Add Apple IAP product IDs to subscription options
All checks were successful
Tests / Tests (pull_request) Successful in 10s
All checks were successful
Tests / Tests (pull_request) Successful in 10s
This commit is contained in:
@@ -83,6 +83,7 @@ export type AppleIapSubscriptionOptionsGql = {
|
||||
__typename?: "AppleIapSubscriptionOptionsGQL";
|
||||
enabled: Scalars["Boolean"]["output"];
|
||||
proMonthlyProductId?: Maybe<Scalars["String"]["output"]>;
|
||||
productIds: Array<Scalars["String"]["output"]>;
|
||||
};
|
||||
|
||||
export type BankFeaturesGql = {
|
||||
@@ -5057,6 +5058,12 @@ export type GetAvailableSubscriptionOptionsQuery = {
|
||||
active: boolean;
|
||||
}>;
|
||||
}>;
|
||||
appleIap: {
|
||||
__typename?: "AppleIapSubscriptionOptionsGQL";
|
||||
enabled: boolean;
|
||||
proMonthlyProductId?: string | null;
|
||||
productIds: Array<string>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -10661,6 +10668,11 @@ export const GetAvailableSubscriptionOptionsDocument = gql`
|
||||
active
|
||||
}
|
||||
}
|
||||
appleIap {
|
||||
enabled
|
||||
proMonthlyProductId
|
||||
productIds
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
@@ -44,6 +44,11 @@ query GetAvailableSubscriptionOptions {
|
||||
active
|
||||
}
|
||||
}
|
||||
appleIap {
|
||||
enabled
|
||||
proMonthlyProductId
|
||||
productIds
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1034,6 +1034,7 @@ type StripePriceGQL {
|
||||
type AppleIapSubscriptionOptionsGQL {
|
||||
enabled: Boolean!
|
||||
proMonthlyProductId: String
|
||||
productIds: [String!]!
|
||||
}
|
||||
|
||||
type UserSubscriptionStatusGQL {
|
||||
|
||||
Reference in New Issue
Block a user