@hminnovations/graphql-types
Advanced tools
Comparing version 4.8.2 to 4.8.3
@@ -319,10 +319,18 @@ export declare type Maybe<T> = T | null; | ||
details?: Maybe<string>; | ||
pullSummary?: Maybe<PullSummary>; | ||
pullSummary?: Maybe<PullSummaryInput>; | ||
pushItems?: Maybe<string>; | ||
} | ||
export interface PathInput { | ||
publicUri: string; | ||
definitionUri: string; | ||
notes?: Maybe<string>; | ||
export interface PullSummaryInput { | ||
usageStats?: Maybe<UsageStatsInput>; | ||
pathProgress?: Maybe<PathProgressSummaryInput>; | ||
surveyHistoryCount?: Maybe<number>; | ||
userInfo?: Maybe<UserInfoInput>; | ||
donationHistoryCount?: Maybe<number>; | ||
favoritesCount?: Maybe<number>; | ||
} | ||
export interface UsageStatsInput { | ||
learn: LearnStatsStateInput; | ||
practice: PracticeStatsStateInput; | ||
app: AppStatsStateInput; | ||
} | ||
export interface LearnStatsStateInput { | ||
@@ -340,2 +348,13 @@ generatedStats: GeneratedLearnStatsInput; | ||
} | ||
export interface PathProgressSummaryInput { | ||
currentActivityId?: Maybe<string>; | ||
cohortName: string; | ||
mostRecentlyCompletedActivityId?: Maybe<string>; | ||
activityMetadataCount: number; | ||
} | ||
export interface PathInput { | ||
publicUri: string; | ||
definitionUri: string; | ||
notes?: Maybe<string>; | ||
} | ||
export declare enum CohortStatus { | ||
@@ -826,16 +845,2 @@ Active = "ACTIVE", | ||
} | ||
export interface PullSummary { | ||
usageStats?: Maybe<UsageStats>; | ||
pathProgress?: Maybe<PathProgressSummary>; | ||
surveyHistoryCount?: Maybe<number>; | ||
userInfo?: Maybe<UserInfoInput>; | ||
donationHistoryCount?: Maybe<number>; | ||
favoritesCount?: Maybe<number>; | ||
} | ||
export interface PathProgressSummary { | ||
currentActivityId?: Maybe<string>; | ||
cohortName: string; | ||
mostRecentlyCompletedActivityId?: Maybe<string>; | ||
activityMetadataCount: number; | ||
} | ||
export interface SyncResultOutput extends Subscribable { | ||
@@ -877,2 +882,16 @@ subscriptionToken?: Maybe<string>; | ||
} | ||
export interface PathProgressSummary { | ||
currentActivityId?: Maybe<string>; | ||
cohortName: string; | ||
mostRecentlyCompletedActivityId?: Maybe<string>; | ||
activityMetadataCount: number; | ||
} | ||
export interface PullSummary { | ||
usageStats?: Maybe<UsageStats>; | ||
pathProgress?: Maybe<PathProgressSummary>; | ||
surveyHistoryCount?: Maybe<number>; | ||
userInfo?: Maybe<UserInfo>; | ||
donationHistoryCount?: Maybe<number>; | ||
favoritesCount?: Maybe<number>; | ||
} | ||
export interface SyncResult { | ||
@@ -879,0 +898,0 @@ timestamp: string; |
{ | ||
"name": "@hminnovations/graphql-types", | ||
"version": "4.8.2", | ||
"version": "4.8.3", | ||
"scripts": { | ||
@@ -25,3 +25,3 @@ "build": "composite-raw-gql && tsc", | ||
"license": "None", | ||
"gitHead": "e10e04f50360d9909d04976f57aa40e62adf38de" | ||
"gitHead": "1cfc9ba67cc8633d7947d35ca372e0c948713614" | ||
} |
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
33432
1116