@hminnovations/graphql-types
Advanced tools
Comparing version 4.3.5 to 4.4.0
@@ -231,2 +231,7 @@ export declare type Maybe<T> = T | null; | ||
} | ||
export interface ShareActionInput { | ||
timestamp: string; | ||
activityID: string; | ||
shareResult: string; | ||
} | ||
export interface ActivityMetadatumInput { | ||
@@ -635,2 +640,7 @@ instanceId?: Maybe<string>; | ||
} | ||
export interface ShareAction { | ||
timestamp: string; | ||
activityID: string; | ||
shareResult: string; | ||
} | ||
export interface PremiumSubscription { | ||
@@ -712,2 +722,3 @@ userId: string; | ||
addMigrationReceiptToUser: MigrationReceiptOutput; | ||
addShareActionToUser: Maybe<boolean>; | ||
updateUserPremiumSubscription?: Maybe<PremiumSubscription>; | ||
@@ -944,2 +955,6 @@ updateUserDonationHistory: DonationOutput; | ||
} | ||
export interface AddShareActionToUserMutationArgs { | ||
creds: UserItemCreds; | ||
input: ShareActionInput; | ||
} | ||
export interface UpdateUserPremiumSubscriptionMutationArgs { | ||
@@ -946,0 +961,0 @@ creds: UserItemCreds; |
{ | ||
"name": "@hminnovations/graphql-types", | ||
"version": "4.3.5", | ||
"version": "4.4.0", | ||
"scripts": { | ||
@@ -25,3 +25,3 @@ "build": "composite-raw-gql && tsc", | ||
"license": "None", | ||
"gitHead": "cc231b6df3dcc278c45845028d2e3c4c1febd4b2" | ||
"gitHead": "e83d6078fb3099a3169a7f55f7caaac34703dba2" | ||
} |
Sorry, the diff of this file is not supported yet
30693
1025