@hminnovations/graphql-types
Advanced tools
Comparing version 4.0.3 to 4.0.5
@@ -65,2 +65,3 @@ export declare type Maybe<T> = T | null; | ||
externalSurveyHistory?: Maybe<ExternalSurveySessionInput[]>; | ||
userRole?: Maybe<UserRoleInput[]>; | ||
} | ||
@@ -279,2 +280,5 @@ export interface PathProgressInput { | ||
} | ||
export interface UserRoleInput { | ||
role: string; | ||
} | ||
export interface PathInput { | ||
@@ -381,2 +385,3 @@ publicUri: string; | ||
externalSurveyHistory?: Maybe<ExternalSurveySession[]>; | ||
userRole?: Maybe<UserRole[]>; | ||
} | ||
@@ -641,2 +646,5 @@ export interface PathProgress { | ||
} | ||
export interface UserRole extends Subscribable { | ||
role?: Maybe<string>; | ||
} | ||
export interface InvitationCode { | ||
@@ -666,2 +674,3 @@ code: string; | ||
addExternalSurveySessionToUser: ExternalSurveySessionOutput; | ||
addUserRoleToUser: UserRoleOutput; | ||
addReflectionToUser: ReflectionOutput; | ||
@@ -712,2 +721,5 @@ updateUserInfo?: Maybe<UserInfo>; | ||
} | ||
export interface UserRoleOutput extends Subscribable { | ||
userRoles: UserRole[]; | ||
} | ||
export interface ReflectionOutput extends Subscribable { | ||
@@ -749,2 +761,3 @@ subscriptionToken?: Maybe<string>; | ||
newExternalSurveySession?: Maybe<ExternalSurveySessionOutput>; | ||
newUserRole?: Maybe<UserRoleOutput>; | ||
newReflection?: Maybe<ReflectionOutput>; | ||
@@ -848,2 +861,6 @@ newLearnAction?: Maybe<LearnActionOutput>; | ||
} | ||
export interface AddUserRoleToUserMutationArgs { | ||
creds: UserItemCreds; | ||
input: UserRoleInput[]; | ||
} | ||
export interface AddReflectionToUserMutationArgs { | ||
@@ -918,2 +935,5 @@ creds: UserItemCreds; | ||
} | ||
export interface NewUserRoleSubscriptionArgs { | ||
userId: string; | ||
} | ||
export interface NewReflectionSubscriptionArgs { | ||
@@ -920,0 +940,0 @@ userId: string; |
{ | ||
"name": "@hminnovations/graphql-types", | ||
"version": "4.0.3", | ||
"version": "4.0.5", | ||
"scripts": { | ||
@@ -25,3 +25,3 @@ "build": "composite-raw-gql && tsc", | ||
"license": "None", | ||
"gitHead": "f01ccb9ff44d4bed10aee419a273cd57187ea166" | ||
"gitHead": "da6efcae0ce197f95614a65482a47dbd19065107" | ||
} |
Sorry, the diff of this file is not supported yet
28876
960