@hminnovations/graphql-types
Advanced tools
Comparing version
@@ -234,2 +234,7 @@ export declare type Maybe<T> = T | null; | ||
} | ||
export interface PremiumSubscriptionInput { | ||
productId: string; | ||
createdOn: string; | ||
txReceipt: string; | ||
} | ||
export interface PathInput { | ||
@@ -240,7 +245,2 @@ publicUri: string; | ||
} | ||
export interface PremiumSubscriptionInput { | ||
productId: string; | ||
createdOn: string; | ||
txReceipt: string; | ||
} | ||
export interface LearnStatsStateInput { | ||
@@ -279,2 +279,3 @@ generatedStats: GeneratedLearnStatsInput; | ||
getUser?: Maybe<User>; | ||
getUserPremiumSubscription?: Maybe<PremiumSubscription>; | ||
/** Invitation Code Queries */ | ||
@@ -536,2 +537,8 @@ getInvitationCode?: Maybe<InvitationCode>; | ||
} | ||
export interface PremiumSubscription { | ||
userId: string; | ||
productId: string; | ||
createdOn: string; | ||
txReceipt: string; | ||
} | ||
export interface InvitationCode { | ||
@@ -570,2 +577,3 @@ code: string; | ||
addMigrationReceiptToUser: MigrationReceiptOutput; | ||
updateUserPremiumSubscription?: Maybe<PremiumSubscription>; | ||
} | ||
@@ -646,8 +654,2 @@ export interface PathProgressOutput extends Subscribable { | ||
} | ||
export interface PremiumSubscription { | ||
userId: string; | ||
productId: string; | ||
createdOn: string; | ||
txReceipt: string; | ||
} | ||
export interface GetIdentityQueryArgs { | ||
@@ -668,2 +670,5 @@ creds: IdentityCreds; | ||
} | ||
export interface GetUserPremiumSubscriptionQueryArgs { | ||
creds: UserItemCreds; | ||
} | ||
export interface GetInvitationCodeQueryArgs { | ||
@@ -761,2 +766,6 @@ creds: InvitationCodeCreds; | ||
} | ||
export interface UpdateUserPremiumSubscriptionMutationArgs { | ||
creds: UserItemCreds; | ||
input?: Maybe<PremiumSubscriptionInput>; | ||
} | ||
export interface NewPathProgressSubscriptionArgs { | ||
@@ -763,0 +772,0 @@ userId: string; |
{ | ||
"name": "@hminnovations/graphql-types", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"scripts": { | ||
@@ -25,3 +25,3 @@ "build": "composite-raw-gql && tsc", | ||
"license": "None", | ||
"gitHead": "d399992e9bce6811030028edbc1dba72a42aa6c5" | ||
"gitHead": "029020f582e897e47a507c70fb1e5c1e5a38c5ee" | ||
} |
24547
1.41%811
1.12%