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";
|
__typename?: "AppleIapSubscriptionOptionsGQL";
|
||||||
enabled: Scalars["Boolean"]["output"];
|
enabled: Scalars["Boolean"]["output"];
|
||||||
proMonthlyProductId?: Maybe<Scalars["String"]["output"]>;
|
proMonthlyProductId?: Maybe<Scalars["String"]["output"]>;
|
||||||
|
productIds: Array<Scalars["String"]["output"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type BankFeaturesGql = {
|
export type BankFeaturesGql = {
|
||||||
@@ -5057,6 +5058,12 @@ export type GetAvailableSubscriptionOptionsQuery = {
|
|||||||
active: boolean;
|
active: boolean;
|
||||||
}>;
|
}>;
|
||||||
}>;
|
}>;
|
||||||
|
appleIap: {
|
||||||
|
__typename?: "AppleIapSubscriptionOptionsGQL";
|
||||||
|
enabled: boolean;
|
||||||
|
proMonthlyProductId?: string | null;
|
||||||
|
productIds: Array<string>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -10661,6 +10668,11 @@ export const GetAvailableSubscriptionOptionsDocument = gql`
|
|||||||
active
|
active
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
appleIap {
|
||||||
|
enabled
|
||||||
|
proMonthlyProductId
|
||||||
|
productIds
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -44,6 +44,11 @@ query GetAvailableSubscriptionOptions {
|
|||||||
active
|
active
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
appleIap {
|
||||||
|
enabled
|
||||||
|
proMonthlyProductId
|
||||||
|
productIds
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1034,6 +1034,7 @@ type StripePriceGQL {
|
|||||||
type AppleIapSubscriptionOptionsGQL {
|
type AppleIapSubscriptionOptionsGQL {
|
||||||
enabled: Boolean!
|
enabled: Boolean!
|
||||||
proMonthlyProductId: String
|
proMonthlyProductId: String
|
||||||
|
productIds: [String!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type UserSubscriptionStatusGQL {
|
type UserSubscriptionStatusGQL {
|
||||||
|
|||||||
Reference in New Issue
Block a user