Compare commits
5 Commits
dean/my-dr
...
655209e1c6
| Author | SHA1 | Date | |
|---|---|---|---|
| 655209e1c6 | |||
| c9576cf405 | |||
| 0c0cd7a7bb | |||
| 48b647636e | |||
| 079e4e8719 |
@@ -79,6 +79,12 @@ export enum AlignedIntervalEnum {
|
||||
Year = "YEAR",
|
||||
}
|
||||
|
||||
export type AppleIapSubscriptionOptionsGql = {
|
||||
__typename?: "AppleIapSubscriptionOptionsGQL";
|
||||
enabled: Scalars["Boolean"]["output"];
|
||||
proMonthlyProductId?: Maybe<Scalars["String"]["output"]>;
|
||||
};
|
||||
|
||||
export type BankFeaturesGql = {
|
||||
__typename?: "BankFeaturesGQL";
|
||||
bankAngle: Scalars["Float"]["output"];
|
||||
@@ -3385,6 +3391,7 @@ export type StripeProductGql = {
|
||||
|
||||
export type StripeSubscriptionOptionsGql = {
|
||||
__typename?: "StripeSubscriptionOptionsGQL";
|
||||
appleIap: AppleIapSubscriptionOptionsGql;
|
||||
products: Array<StripeProductGql>;
|
||||
trialPeriodDays?: Maybe<Scalars["Int"]["output"]>;
|
||||
};
|
||||
|
||||
@@ -1001,6 +1001,7 @@ type UserRelationship {
|
||||
type StripeSubscriptionOptionsGQL {
|
||||
products: [StripeProductGQL!]!
|
||||
trialPeriodDays: Int
|
||||
appleIap: AppleIapSubscriptionOptionsGQL!
|
||||
}
|
||||
|
||||
type StripeProductGQL {
|
||||
@@ -1021,6 +1022,11 @@ type StripePriceGQL {
|
||||
active: Boolean!
|
||||
}
|
||||
|
||||
type AppleIapSubscriptionOptionsGQL {
|
||||
enabled: Boolean!
|
||||
proMonthlyProductId: String
|
||||
}
|
||||
|
||||
type UserSubscriptionStatusGQL {
|
||||
hasActiveSubscription: Boolean!
|
||||
entitlementSource: EntitlementSourceTypeEnum
|
||||
|
||||
Reference in New Issue
Block a user