@@ -34,6 +34,7 @@ export type Achievement = {
3434 imageCompleted : Scalars [ 'String' ] [ 'output' ] ;
3535 imagePending : Scalars [ 'String' ] [ 'output' ] ;
3636 name : Scalars [ 'String' ] [ 'output' ] ;
37+ notificationText : Scalars [ 'String' ] [ 'output' ] ;
3738 points : Scalars [ 'Int' ] [ 'output' ] ;
3839 project : Project ;
3940} ;
@@ -261,6 +262,7 @@ export type ContentAchievement = Achievement & {
261262 items : Array < ContentItem > ;
262263 name : Scalars [ 'String' ] [ 'output' ] ;
263264 nextItem ?: Maybe < ContentItem > ;
265+ notificationText : Scalars [ 'String' ] [ 'output' ] ;
264266 points : Scalars [ 'Int' ] [ 'output' ] ;
265267 project : Project ;
266268 totalItems : Scalars [ 'Int' ] [ 'output' ] ;
@@ -322,6 +324,7 @@ export type CreateContentAchievementInput = {
322324 imagePending : Scalars [ 'String' ] [ 'input' ] ;
323325 items : Array < ContentItemInput > ;
324326 name : Scalars [ 'String' ] [ 'input' ] ;
327+ notificationText : Scalars [ 'String' ] [ 'input' ] ;
325328 points : Scalars [ 'Int' ] [ 'input' ] ;
326329 projectId : Scalars [ 'ID' ] [ 'input' ] ;
327330} ;
@@ -357,6 +360,7 @@ export type CreateQuizAchievementInput = {
357360 imagePending : Scalars [ 'String' ] [ 'input' ] ;
358361 minScorePercentage ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
359362 name : Scalars [ 'String' ] [ 'input' ] ;
363+ notificationText : Scalars [ 'String' ] [ 'input' ] ;
360364 points : Scalars [ 'Int' ] [ 'input' ] ;
361365 projectId : Scalars [ 'ID' ] [ 'input' ] ;
362366 quizId : Scalars [ 'ID' ] [ 'input' ] ;
@@ -408,6 +412,7 @@ export type CreateSimpleAchievementInput = {
408412 imageCompleted : Scalars [ 'String' ] [ 'input' ] ;
409413 imagePending : Scalars [ 'String' ] [ 'input' ] ;
410414 name : Scalars [ 'String' ] [ 'input' ] ;
415+ notificationText : Scalars [ 'String' ] [ 'input' ] ;
411416 points : Scalars [ 'Int' ] [ 'input' ] ;
412417 projectId : Scalars [ 'ID' ] [ 'input' ] ;
413418} ;
@@ -422,6 +427,7 @@ export type CreateStreakAchievementInput = {
422427 imagePending : Scalars [ 'String' ] [ 'input' ] ;
423428 name : Scalars [ 'String' ] [ 'input' ] ;
424429 neededStreak : Scalars [ 'Int' ] [ 'input' ] ;
430+ notificationText : Scalars [ 'String' ] [ 'input' ] ;
425431 points : Scalars [ 'Int' ] [ 'input' ] ;
426432 projectId : Scalars [ 'ID' ] [ 'input' ] ;
427433 streakId : Scalars [ 'ID' ] [ 'input' ] ;
@@ -1689,6 +1695,7 @@ export type QuizAchievement = Achievement & {
16891695 imagePending : Scalars [ 'String' ] [ 'output' ] ;
16901696 minScorePercentage ?: Maybe < Scalars [ 'Int' ] [ 'output' ] > ;
16911697 name : Scalars [ 'String' ] [ 'output' ] ;
1698+ notificationText : Scalars [ 'String' ] [ 'output' ] ;
16921699 points : Scalars [ 'Int' ] [ 'output' ] ;
16931700 project : Project ;
16941701 quiz : Quiz ;
@@ -1887,6 +1894,7 @@ export type SimpleAchievement = Achievement & {
18871894 imageCompleted : Scalars [ 'String' ] [ 'output' ] ;
18881895 imagePending : Scalars [ 'String' ] [ 'output' ] ;
18891896 name : Scalars [ 'String' ] [ 'output' ] ;
1897+ notificationText : Scalars [ 'String' ] [ 'output' ] ;
18901898 points : Scalars [ 'Int' ] [ 'output' ] ;
18911899 project : Project ;
18921900} ;
@@ -1940,6 +1948,7 @@ export type StreakAchievement = Achievement & {
19401948 imagePending : Scalars [ 'String' ] [ 'output' ] ;
19411949 name : Scalars [ 'String' ] [ 'output' ] ;
19421950 neededStreak : Scalars [ 'Int' ] [ 'output' ] ;
1951+ notificationText : Scalars [ 'String' ] [ 'output' ] ;
19431952 points : Scalars [ 'Int' ] [ 'output' ] ;
19441953 project : Project ;
19451954 streak : Streak ;
@@ -2071,6 +2080,7 @@ export type UpdateAchievementInput = {
20712080 imageCompleted ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
20722081 imagePending ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
20732082 name ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
2083+ notificationText ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
20742084 points ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
20752085} ;
20762086
@@ -2105,6 +2115,7 @@ export type UpdateContentAchievementInput = {
21052115 imagePending ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
21062116 items ?: InputMaybe < Array < ContentItemInput > > ;
21072117 name ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
2118+ notificationText ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
21082119 points ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
21092120} ;
21102121
@@ -2158,6 +2169,7 @@ export type UpdateStreakAchievementInput = {
21582169 imagePending ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
21592170 name ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
21602171 neededStreak ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
2172+ notificationText ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
21612173 points ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
21622174 streakId ?: InputMaybe < Scalars [ 'ID' ] [ 'input' ] > ;
21632175} ;
@@ -2610,7 +2622,7 @@ export type ChallengesPageQuery = { __typename?: 'Query', myCurrentProject: { __
26102622export type ProfilePageQueryVariables = Exact < { [ key : string ] : never ; } > ;
26112623
26122624
2613- export type ProfilePageQuery = { __typename ?: 'Query' , me : { __typename ?: 'User' , id : string , name : string , consentStatus : { __typename ?: 'ConsentStatus' , pendingConsents : Array < { __typename : 'Consent' , id : string , key : string , version : number , title : string , url ?: string | null , managementType : ConsentManagementType , managedBy ?: string | null , body : { __typename ?: 'MarkdownText' , html : string } } > } } , myCurrentProject : { __typename ?: 'Project' , id : string , name : string , achievements : Array <
2625+ export type ProfilePageQuery = { __typename ?: 'Query' , me : { __typename ?: 'User' , id : string , name : string , consentStatus : { __typename ?: 'ConsentStatus' , pendingConsents : Array < { __typename : 'Consent' , id : string , key : string , version : number , title : string , shortText : string , url ?: string | null , managementType : ConsentManagementType , managedBy ?: string | null , body : { __typename ?: 'MarkdownText' , html : string } } > } } , myCurrentProject : { __typename ?: 'Project' , id : string , name : string , achievements : Array <
26142626 | { __typename ?: 'ContentAchievement' , id : string , name : string , descriptionPending : string , descriptionCompleted : string , imagePending : string , imageCompleted : string , hidden : boolean , achievedAt ?: any | null , points : number }
26152627 | { __typename ?: 'QuizAchievement' , id : string , name : string , descriptionPending : string , descriptionCompleted : string , imagePending : string , imageCompleted : string , hidden : boolean , achievedAt ?: any | null , points : number }
26162628 | { __typename ?: 'SimpleAchievement' , id : string , name : string , descriptionPending : string , descriptionCompleted : string , imagePending : string , imageCompleted : string , hidden : boolean , achievedAt ?: any | null , points : number }
@@ -2620,7 +2632,7 @@ export type ProfilePageQuery = { __typename?: 'Query', me: { __typename?: 'User'
26202632export type ConsentsPageQueryVariables = Exact < { [ key : string ] : never ; } > ;
26212633
26222634
2623- export type ConsentsPageQuery = { __typename ?: 'Query' , me : { __typename ?: 'User' , consentStatus : { __typename ?: 'ConsentStatus' , pendingConsents : Array < { __typename : 'Consent' , id : string , key : string , version : number , title : string , publishedAt ?: any | null , managedBy ?: string | null , managementType : ConsentManagementType , url ?: string | null , body : { __typename ?: 'MarkdownText' , html : string } } > , acceptedConsents : Array < { __typename : 'UserConsent' , id : string , action : ConsentAction , actionDate : any , consent : { __typename ?: 'Consent' , id : string , title : string , managedBy ?: string | null , managementType : ConsentManagementType , url ?: string | null , body : { __typename ?: 'MarkdownText' , html : string } } } > , rejectedConsents : Array < { __typename : 'UserConsent' , id : string , action : ConsentAction , actionDate : any , consent : { __typename ?: 'Consent' , id : string , title : string , managedBy ?: string | null , managementType : ConsentManagementType , url ?: string | null , body : { __typename ?: 'MarkdownText' , html : string } } } > } } } ;
2635+ export type ConsentsPageQuery = { __typename ?: 'Query' , me : { __typename ?: 'User' , consentStatus : { __typename ?: 'ConsentStatus' , pendingConsents : Array < { __typename : 'Consent' , id : string , key : string , version : number , title : string , shortText : string , publishedAt ?: any | null , managedBy ?: string | null , managementType : ConsentManagementType , url ?: string | null , body : { __typename ?: 'MarkdownText' , html : string } } > , acceptedConsents : Array < { __typename : 'UserConsent' , id : string , action : ConsentAction , actionDate : any , consent : { __typename ?: 'Consent' , id : string , title : string , shortText : string , managedBy ?: string | null , managementType : ConsentManagementType , url ?: string | null , body : { __typename ?: 'MarkdownText' , html : string } } } > , rejectedConsents : Array < { __typename : 'UserConsent' , id : string , action : ConsentAction , actionDate : any , consent : { __typename ?: 'Consent' , id : string , title : string , shortText : string , managedBy ?: string | null , managementType : ConsentManagementType , url ?: string | null , body : { __typename ?: 'MarkdownText' , html : string } } } > } } } ;
26242636
26252637export type StandingsGlobalPageQueryVariables = Exact < {
26262638 entityType : LeaderboardEntityType ;
@@ -3423,6 +3435,7 @@ export const ProfilePageDocument = gql`
34233435 body {
34243436 html
34253437 }
3438+ shortText
34263439 url
34273440 managementType
34283441 managedBy
@@ -3469,6 +3482,7 @@ export const ConsentsPageDocument = gql`
34693482 body {
34703483 html
34713484 }
3485+ shortText
34723486 publishedAt
34733487 managedBy
34743488 managementType
@@ -3483,6 +3497,7 @@ export const ConsentsPageDocument = gql`
34833497 body {
34843498 html
34853499 }
3500+ shortText
34863501 managedBy
34873502 managementType
34883503 url
@@ -3499,6 +3514,7 @@ export const ConsentsPageDocument = gql`
34993514 body {
35003515 html
35013516 }
3517+ shortText
35023518 managedBy
35033519 managementType
35043520 url
0 commit comments