@hminnovations/graphql-types
Advanced tools
Comparing version 3.7.0 to 3.8.0
@@ -307,13 +307,4 @@ export declare type Maybe<T> = T | null; | ||
participantId?: Maybe<string>; | ||
role?: Maybe<Role>; | ||
role?: Maybe<string>; | ||
} | ||
export interface Role { | ||
id: string; | ||
title: string; | ||
widgets?: Maybe<Widget[]>; | ||
} | ||
export interface Widget { | ||
id: string; | ||
title: string; | ||
} | ||
export interface Cohort { | ||
@@ -698,2 +689,11 @@ id: string; | ||
} | ||
export interface Role { | ||
id: string; | ||
title: string; | ||
widgets?: Maybe<string[]>; | ||
} | ||
export interface Widget { | ||
id: string; | ||
title: string; | ||
} | ||
export interface GetIdentityQueryArgs { | ||
@@ -700,0 +700,0 @@ creds: IdentityCreds; |
{ | ||
"name": "@hminnovations/graphql-types", | ||
"version": "3.7.0", | ||
"version": "3.8.0", | ||
"scripts": { | ||
@@ -25,3 +25,3 @@ "build": "composite-raw-gql && tsc", | ||
"license": "None", | ||
"gitHead": "c54358898da7a04878fde83379fc8e594d8b6fe6" | ||
"gitHead": "aa54b19b750097647da7c1cafc23945abf446c3f" | ||
} |
26105