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