@hminnovations/graphql-types
Advanced tools
Comparing version 3.6.0 to 3.7.0
@@ -272,10 +272,2 @@ export declare type Maybe<T> = T | null; | ||
} | ||
export interface UserRoleInput { | ||
title: string; | ||
widgets?: Maybe<string[]>; | ||
} | ||
export interface UserWidgetInput { | ||
id: string; | ||
title: string; | ||
} | ||
export declare enum CohortStatus { | ||
@@ -316,3 +308,13 @@ Active = "ACTIVE", | ||
participantId?: Maybe<string>; | ||
role?: Maybe<Role>; | ||
} | ||
export interface Role { | ||
id: string; | ||
title: string; | ||
widgets?: Maybe<Widget[]>; | ||
} | ||
export interface Widget { | ||
id: string; | ||
title: string; | ||
} | ||
export interface Cohort { | ||
@@ -697,11 +699,2 @@ id: string; | ||
} | ||
export interface UserRole { | ||
id: string; | ||
title: string; | ||
widgets?: Maybe<string[]>; | ||
} | ||
export interface UserWidget { | ||
id: string; | ||
title: string; | ||
} | ||
export interface GetIdentityQueryArgs { | ||
@@ -708,0 +701,0 @@ creds: IdentityCreds; |
{ | ||
"name": "@hminnovations/graphql-types", | ||
"version": "3.6.0", | ||
"version": "3.7.0", | ||
"scripts": { | ||
@@ -25,3 +25,3 @@ "build": "composite-raw-gql && tsc", | ||
"license": "None", | ||
"gitHead": "54b444bfb7093f9aa343cbe6609c0cf59fc6e0cb" | ||
"gitHead": "c54358898da7a04878fde83379fc8e594d8b6fe6" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26103
866