Add Apple IAP product config 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:
@@ -5012,6 +5012,11 @@ export type GetAvailableSubscriptionOptionsQuery = {
|
||||
getAvailableSubscriptionOptions: {
|
||||
__typename?: "StripeSubscriptionOptionsGQL";
|
||||
trialPeriodDays?: number | null;
|
||||
appleIap: {
|
||||
__typename?: "AppleIapSubscriptionOptionsGQL";
|
||||
enabled: boolean;
|
||||
proMonthlyProductId?: string | null;
|
||||
};
|
||||
products: Array<{
|
||||
__typename?: "StripeProductGQL";
|
||||
id: string;
|
||||
@@ -10632,6 +10637,10 @@ export const GetAvailableSubscriptionOptionsDocument = gql`
|
||||
query GetAvailableSubscriptionOptions {
|
||||
getAvailableSubscriptionOptions {
|
||||
trialPeriodDays
|
||||
appleIap {
|
||||
enabled
|
||||
proMonthlyProductId
|
||||
}
|
||||
products {
|
||||
id
|
||||
name
|
||||
|
||||
@@ -29,6 +29,10 @@ mutation CreateCustomerPortalSession {
|
||||
query GetAvailableSubscriptionOptions {
|
||||
getAvailableSubscriptionOptions {
|
||||
trialPeriodDays
|
||||
appleIap {
|
||||
enabled
|
||||
proMonthlyProductId
|
||||
}
|
||||
products {
|
||||
id
|
||||
name
|
||||
|
||||
Reference in New Issue
Block a user