@platecms/delta-client 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/README.md +148 -0
  2. package/package.json +58 -0
  3. package/src/__generated__/fragment-masking.d.ts +19 -0
  4. package/src/__generated__/fragment-masking.js +22 -0
  5. package/src/__generated__/fragment-masking.js.map +1 -0
  6. package/src/__generated__/gql.d.ts +3 -0
  7. package/src/__generated__/gql.js +8 -0
  8. package/src/__generated__/gql.js.map +1 -0
  9. package/src/__generated__/graphql.d.ts +1821 -0
  10. package/src/__generated__/graphql.js +57 -0
  11. package/src/__generated__/graphql.js.map +1 -0
  12. package/src/__generated__/index.d.ts +2 -0
  13. package/src/__generated__/index.js +6 -0
  14. package/src/__generated__/index.js.map +1 -0
  15. package/src/api/index.d.ts +2 -0
  16. package/src/api/index.js +4 -0
  17. package/src/api/index.js.map +1 -0
  18. package/src/apollo/index.d.ts +7 -0
  19. package/src/apollo/index.js +35 -0
  20. package/src/apollo/index.js.map +1 -0
  21. package/src/index.d.ts +1 -0
  22. package/src/index.js +3 -0
  23. package/src/index.js.map +1 -0
  24. package/src/schema/index.d.ts +2 -0
  25. package/src/schema/index.js +8 -0
  26. package/src/schema/index.js.map +1 -0
  27. package/src/schema/lib/nodes.d.ts +46 -0
  28. package/src/schema/lib/nodes.js +14 -0
  29. package/src/schema/lib/nodes.js.map +1 -0
  30. package/src/schema/lib/parser.d.ts +12 -0
  31. package/src/schema/lib/parser.js +49 -0
  32. package/src/schema/lib/parser.js.map +1 -0
  33. package/src/schema/lib/schema.d.ts +17 -0
  34. package/src/schema/lib/schema.js +65 -0
  35. package/src/schema/lib/schema.js.map +1 -0
  36. package/src/schema/lib/utils.d.ts +12 -0
  37. package/src/schema/lib/utils.js +61 -0
  38. package/src/schema/lib/utils.js.map +1 -0
  39. package/src/slate/index.d.ts +55 -0
  40. package/src/slate/index.js +3 -0
  41. package/src/slate/index.js.map +1 -0
  42. package/src/utils/index.d.ts +6 -0
  43. package/src/utils/index.js +6 -0
  44. package/src/utils/index.js.map +1 -0
  45. package/src/utils/lib/connectors/BaseConnector.d.ts +16 -0
  46. package/src/utils/lib/connectors/BaseConnector.js +17 -0
  47. package/src/utils/lib/connectors/BaseConnector.js.map +1 -0
  48. package/src/utils/lib/connectors/WindowConnector.d.ts +10 -0
  49. package/src/utils/lib/connectors/WindowConnector.js +53 -0
  50. package/src/utils/lib/connectors/WindowConnector.js.map +1 -0
  51. package/src/utils/lib/events/ConnectorEvents.d.ts +63 -0
  52. package/src/utils/lib/events/ConnectorEvents.js +24 -0
  53. package/src/utils/lib/events/ConnectorEvents.js.map +1 -0
  54. package/src/utils/lib/events/EventEmitter.d.ts +7 -0
  55. package/src/utils/lib/events/EventEmitter.js +21 -0
  56. package/src/utils/lib/events/EventEmitter.js.map +1 -0
@@ -0,0 +1,1821 @@
1
+ export type Maybe<T> = T | null;
2
+ export type InputMaybe<T> = Maybe<T>;
3
+ export type Exact<T extends {
4
+ [key: string]: unknown;
5
+ }> = {
6
+ [K in keyof T]: T[K];
7
+ };
8
+ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
9
+ [SubKey in K]?: Maybe<T[SubKey]>;
10
+ };
11
+ export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
12
+ [SubKey in K]: Maybe<T[SubKey]>;
13
+ };
14
+ export type MakeEmpty<T extends {
15
+ [key: string]: unknown;
16
+ }, K extends keyof T> = {
17
+ [_ in K]?: never;
18
+ };
19
+ export type Incremental<T> = T | {
20
+ [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never;
21
+ };
22
+ export type Scalars = {
23
+ ID: {
24
+ input: string;
25
+ output: string;
26
+ };
27
+ String: {
28
+ input: string;
29
+ output: string;
30
+ };
31
+ Boolean: {
32
+ input: boolean;
33
+ output: boolean;
34
+ };
35
+ Int: {
36
+ input: number;
37
+ output: number;
38
+ };
39
+ Float: {
40
+ input: number;
41
+ output: number;
42
+ };
43
+ CAST: {
44
+ input: any;
45
+ output: any;
46
+ };
47
+ ContentValueType: {
48
+ input: any;
49
+ output: any;
50
+ };
51
+ DateTime: {
52
+ input: any;
53
+ output: any;
54
+ };
55
+ PRN: {
56
+ input: any;
57
+ output: any;
58
+ };
59
+ PrimitiveValue: {
60
+ input: any;
61
+ output: any;
62
+ };
63
+ };
64
+ export type AllowedValuesContentValidationRuleSettings = {
65
+ __typename?: 'AllowedValuesContentValidationRuleSettings';
66
+ allowedValues: Array<Scalars['ContentValueType']['output']>;
67
+ };
68
+ export type AllowedValuesContentValidationRuleSettingsInput = {
69
+ allowedValues: Array<Scalars['ContentValueType']['input']>;
70
+ };
71
+ export type ApiToken = {
72
+ __typename?: 'ApiToken';
73
+ channel: Channel;
74
+ createdAt: Scalars['DateTime']['output'];
75
+ name: Scalars['String']['output'];
76
+ prn: Scalars['PRN']['output'];
77
+ stage: Stage;
78
+ updatedAt: Scalars['DateTime']['output'];
79
+ };
80
+ export type Asset = {
81
+ __typename?: 'Asset';
82
+ createdAt: Scalars['DateTime']['output'];
83
+ fileName: Scalars['String']['output'];
84
+ fileSize: Scalars['Int']['output'];
85
+ mimeType: Scalars['String']['output'];
86
+ prn: Scalars['PRN']['output'];
87
+ updatedAt: Scalars['DateTime']['output'];
88
+ url?: Maybe<Scalars['String']['output']>;
89
+ };
90
+ export type Blueprint = {
91
+ __typename?: 'Blueprint';
92
+ channel: Channel;
93
+ createdAt: Scalars['DateTime']['output'];
94
+ definedBy: ExperienceComponent;
95
+ isFixed: Scalars['Boolean']['output'];
96
+ name: Scalars['String']['output'];
97
+ organization?: Maybe<Organization>;
98
+ preview?: Maybe<Asset>;
99
+ prn: Scalars['PRN']['output'];
100
+ stage: Stage;
101
+ updatedAt: Scalars['DateTime']['output'];
102
+ };
103
+ export type BlueprintEdge = {
104
+ __typename?: 'BlueprintEdge';
105
+ cursor: Scalars['String']['output'];
106
+ node: Blueprint;
107
+ };
108
+ export type BlueprintsConnection = {
109
+ __typename?: 'BlueprintsConnection';
110
+ edges: Array<BlueprintEdge>;
111
+ pageInfo: PageInfo;
112
+ totalCount: Scalars['Int']['output'];
113
+ };
114
+ export type BlueprintsFilterInput = {
115
+ _not?: InputMaybe<Array<BlueprintsFilterInput>>;
116
+ createdAt?: InputMaybe<Array<DateFilter>>;
117
+ isFixed?: InputMaybe<Array<BooleanFilter>>;
118
+ name?: InputMaybe<Array<StringFilter>>;
119
+ prn?: InputMaybe<Array<PrnFilter>>;
120
+ updatedAt?: InputMaybe<Array<DateFilter>>;
121
+ };
122
+ export type BooleanFilter = {
123
+ _eq?: InputMaybe<Scalars['Boolean']['input']>;
124
+ _is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
125
+ _is_null?: InputMaybe<Scalars['Boolean']['input']>;
126
+ _neq?: InputMaybe<Scalars['Boolean']['input']>;
127
+ };
128
+ export type BuildingBlock = {
129
+ __typename?: 'BuildingBlock';
130
+ buildingBlockFields: Array<BuildingBlockField>;
131
+ createdAt: Scalars['DateTime']['output'];
132
+ experienceComponents: Array<ExperienceComponent>;
133
+ gridDefinition?: Maybe<GridDefinition>;
134
+ next?: Maybe<BuildingBlock>;
135
+ organization?: Maybe<Organization>;
136
+ preview?: Maybe<Asset>;
137
+ previous?: Maybe<BuildingBlock>;
138
+ prn: Scalars['PRN']['output'];
139
+ slug: Scalars['String']['output'];
140
+ theme: Theme;
141
+ title: Scalars['String']['output'];
142
+ updatedAt: Scalars['DateTime']['output'];
143
+ };
144
+ export type BuildingBlockBuildingBlockFieldsArgs = {
145
+ where?: InputMaybe<Array<BuildingBlockFieldsFilterInput>>;
146
+ };
147
+ export type BuildingBlockExperienceComponentsArgs = {
148
+ where?: InputMaybe<Array<ExperienceComponentsFilterInput>>;
149
+ };
150
+ export type BuildingBlockField = {
151
+ __typename?: 'BuildingBlockField';
152
+ buildingBlock: BuildingBlock;
153
+ createdAt: Scalars['DateTime']['output'];
154
+ fieldTypes: Array<ContentValueTypeNames>;
155
+ maxCount?: Maybe<Scalars['Int']['output']>;
156
+ minCount: Scalars['Int']['output'];
157
+ next?: Maybe<BuildingBlockField>;
158
+ organization?: Maybe<Organization>;
159
+ previous?: Maybe<BuildingBlockField>;
160
+ prn: Scalars['PRN']['output'];
161
+ slug: Scalars['String']['output'];
162
+ title: Scalars['String']['output'];
163
+ updatedAt: Scalars['DateTime']['output'];
164
+ };
165
+ export type BuildingBlockFieldEdge = {
166
+ __typename?: 'BuildingBlockFieldEdge';
167
+ cursor: Scalars['String']['output'];
168
+ node: BuildingBlockField;
169
+ };
170
+ export type BuildingBlockFieldFulfillment = {
171
+ __typename?: 'BuildingBlockFieldFulfillment';
172
+ blueprintedBy?: Maybe<BuildingBlockFieldFulfillment>;
173
+ blueprintedInstances?: Maybe<Array<BuildingBlockFieldFulfillment>>;
174
+ buildingBlockField: BuildingBlockField;
175
+ contentValue: ContentValue;
176
+ createdAt: Scalars['DateTime']['output'];
177
+ experienceComponent: ExperienceComponent;
178
+ next?: Maybe<BuildingBlockFieldFulfillment>;
179
+ organization?: Maybe<Organization>;
180
+ previous?: Maybe<BuildingBlockFieldFulfillment>;
181
+ prn: Scalars['PRN']['output'];
182
+ stage: Stage;
183
+ updatedAt: Scalars['DateTime']['output'];
184
+ };
185
+ export type BuildingBlockFieldFulfillmentBlueprintedInstancesArgs = {
186
+ where?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
187
+ };
188
+ export type BuildingBlockFieldFulfillmentContentValueArgs = {
189
+ where?: InputMaybe<Array<ContentValuesFilterInput>>;
190
+ };
191
+ export type BuildingBlockFieldFulfillmentEdge = {
192
+ __typename?: 'BuildingBlockFieldFulfillmentEdge';
193
+ cursor: Scalars['String']['output'];
194
+ node: BuildingBlockFieldFulfillment;
195
+ };
196
+ export type BuildingBlockFieldFulfillmentsConnection = {
197
+ __typename?: 'BuildingBlockFieldFulfillmentsConnection';
198
+ edges: Array<BuildingBlockFieldFulfillmentEdge>;
199
+ pageInfo: PageInfo;
200
+ totalCount: Scalars['Int']['output'];
201
+ };
202
+ export type BuildingBlockFieldFulfillmentsFilterInput = {
203
+ _not?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
204
+ createdAt?: InputMaybe<Array<DateFilter>>;
205
+ prn?: InputMaybe<Array<PrnFilter>>;
206
+ updatedAt?: InputMaybe<Array<DateFilter>>;
207
+ };
208
+ export type BuildingBlockFieldsConnection = {
209
+ __typename?: 'BuildingBlockFieldsConnection';
210
+ edges: Array<BuildingBlockFieldEdge>;
211
+ pageInfo: PageInfo;
212
+ totalCount: Scalars['Int']['output'];
213
+ };
214
+ export type BuildingBlockFieldsFilterInput = {
215
+ _not?: InputMaybe<Array<BuildingBlockFieldsFilterInput>>;
216
+ createdAt?: InputMaybe<Array<DateFilter>>;
217
+ maxCount?: InputMaybe<Array<IntFilter>>;
218
+ minCount?: InputMaybe<Array<IntFilter>>;
219
+ prn?: InputMaybe<Array<PrnFilter>>;
220
+ slug?: InputMaybe<Array<StringFilter>>;
221
+ title?: InputMaybe<Array<StringFilter>>;
222
+ updatedAt?: InputMaybe<Array<DateFilter>>;
223
+ };
224
+ export type BuildingBlocksFilterInput = {
225
+ _not?: InputMaybe<Array<BuildingBlocksFilterInput>>;
226
+ createdAt?: InputMaybe<Array<DateFilter>>;
227
+ prn?: InputMaybe<Array<PrnFilter>>;
228
+ slug?: InputMaybe<Array<StringFilter>>;
229
+ title?: InputMaybe<Array<StringFilter>>;
230
+ updatedAt?: InputMaybe<Array<DateFilter>>;
231
+ };
232
+ export type Channel = {
233
+ __typename?: 'Channel';
234
+ apiTokens: Array<ApiToken>;
235
+ blueprints: Array<Blueprint>;
236
+ createdAt: Scalars['DateTime']['output'];
237
+ defaultBlueprint?: Maybe<Blueprint>;
238
+ domain: Scalars['String']['output'];
239
+ name: Scalars['String']['output'];
240
+ organization?: Maybe<Organization>;
241
+ pathParts: Array<PathPart>;
242
+ prn: Scalars['PRN']['output'];
243
+ rootPathPart: PathPart;
244
+ slug: Scalars['String']['output'];
245
+ stage: Stage;
246
+ theme: Theme;
247
+ updatedAt: Scalars['DateTime']['output'];
248
+ };
249
+ export type ChannelPathPartsArgs = {
250
+ where?: InputMaybe<Array<PathPartsFilterInput>>;
251
+ };
252
+ export type ChannelEdge = {
253
+ __typename?: 'ChannelEdge';
254
+ cursor: Scalars['String']['output'];
255
+ node: Channel;
256
+ };
257
+ export type ChannelsConnection = {
258
+ __typename?: 'ChannelsConnection';
259
+ edges: Array<ChannelEdge>;
260
+ pageInfo: PageInfo;
261
+ totalCount: Scalars['Int']['output'];
262
+ };
263
+ export type ChannelsFilterInput = {
264
+ _not?: InputMaybe<Array<ChannelsFilterInput>>;
265
+ createdAt?: InputMaybe<Array<DateFilter>>;
266
+ domain?: InputMaybe<Array<StringFilter>>;
267
+ name?: InputMaybe<Array<StringFilter>>;
268
+ prn?: InputMaybe<Array<PrnFilter>>;
269
+ slug?: InputMaybe<Array<StringFilter>>;
270
+ updatedAt?: InputMaybe<Array<DateFilter>>;
271
+ };
272
+ export type ConnectContentValueInput = {
273
+ contentField: Scalars['PRN']['input'];
274
+ contentValue: Scalars['PRN']['input'];
275
+ };
276
+ export type ContentExperience = {
277
+ __typename?: 'ContentExperience';
278
+ createdAt: Scalars['DateTime']['output'];
279
+ experienceComponent: ExperienceComponent;
280
+ organization?: Maybe<Organization>;
281
+ pathPart: PathPart;
282
+ preview?: Maybe<Asset>;
283
+ prn: Scalars['PRN']['output'];
284
+ slug: Scalars['String']['output'];
285
+ stage: Stage;
286
+ title: Scalars['String']['output'];
287
+ updatedAt: Scalars['DateTime']['output'];
288
+ };
289
+ export type ContentExperienceEdge = {
290
+ __typename?: 'ContentExperienceEdge';
291
+ cursor: Scalars['String']['output'];
292
+ node: ContentExperience;
293
+ };
294
+ export type ContentExperiencesConnection = {
295
+ __typename?: 'ContentExperiencesConnection';
296
+ edges: Array<ContentExperienceEdge>;
297
+ pageInfo: PageInfo;
298
+ totalCount: Scalars['Int']['output'];
299
+ };
300
+ export type ContentExperiencesFilterInput = {
301
+ _not?: InputMaybe<Array<ContentExperiencesFilterInput>>;
302
+ createdAt?: InputMaybe<Array<DateFilter>>;
303
+ prn?: InputMaybe<Array<PrnFilter>>;
304
+ slug?: InputMaybe<Array<StringFilter>>;
305
+ title?: InputMaybe<Array<StringFilter>>;
306
+ updatedAt?: InputMaybe<Array<DateFilter>>;
307
+ };
308
+ export type ContentField = {
309
+ __typename?: 'ContentField';
310
+ contentType: ContentType;
311
+ contentValidationRules: Array<ContentValidationRule>;
312
+ contentValues: Array<ContentValue>;
313
+ createdAt: Scalars['DateTime']['output'];
314
+ name: Scalars['String']['output'];
315
+ next?: Maybe<ContentField>;
316
+ organization?: Maybe<Organization>;
317
+ previous?: Maybe<ContentField>;
318
+ prn: Scalars['PRN']['output'];
319
+ updatedAt: Scalars['DateTime']['output'];
320
+ };
321
+ export type ContentFieldContentValidationRulesArgs = {
322
+ where?: InputMaybe<Array<ContentValidationRulesFilterInput>>;
323
+ };
324
+ export type ContentFieldContentValuesArgs = {
325
+ where?: InputMaybe<Array<ContentValuesFilterInput>>;
326
+ };
327
+ export type ContentFieldEdge = {
328
+ __typename?: 'ContentFieldEdge';
329
+ cursor: Scalars['String']['output'];
330
+ node: ContentField;
331
+ };
332
+ export type ContentFieldsConnection = {
333
+ __typename?: 'ContentFieldsConnection';
334
+ edges: Array<ContentFieldEdge>;
335
+ pageInfo: PageInfo;
336
+ totalCount: Scalars['Int']['output'];
337
+ };
338
+ export type ContentFieldsFilterInput = {
339
+ _not?: InputMaybe<Array<ContentFieldsFilterInput>>;
340
+ createdAt?: InputMaybe<Array<DateFilter>>;
341
+ name?: InputMaybe<Array<StringFilter>>;
342
+ prn?: InputMaybe<Array<PrnFilter>>;
343
+ updatedAt?: InputMaybe<Array<DateFilter>>;
344
+ };
345
+ export type ContentItem = {
346
+ __typename?: 'ContentItem';
347
+ contentType: ContentType;
348
+ contentValues: Array<ContentValue>;
349
+ createdAt: Scalars['DateTime']['output'];
350
+ displayImage?: Maybe<Asset>;
351
+ displayName: Scalars['String']['output'];
352
+ isDraft: Scalars['Boolean']['output'];
353
+ organization?: Maybe<Organization>;
354
+ prn: Scalars['PRN']['output'];
355
+ relatingContentValues: Array<ContentValue>;
356
+ stage: Stage;
357
+ updatedAt: Scalars['DateTime']['output'];
358
+ };
359
+ export type ContentItemContentValuesArgs = {
360
+ where?: InputMaybe<Array<ContentValuesFilterInput>>;
361
+ };
362
+ export type ContentItemRelatingContentValuesArgs = {
363
+ where?: InputMaybe<Array<ContentValuesFilterInput>>;
364
+ };
365
+ export type ContentItemEdge = {
366
+ __typename?: 'ContentItemEdge';
367
+ cursor: Scalars['String']['output'];
368
+ node: ContentItem;
369
+ };
370
+ export type ContentItemsConnection = {
371
+ __typename?: 'ContentItemsConnection';
372
+ edges: Array<ContentItemEdge>;
373
+ pageInfo: PageInfo;
374
+ totalCount: Scalars['Int']['output'];
375
+ };
376
+ export type ContentItemsFilterInput = {
377
+ _not?: InputMaybe<Array<ContentItemsFilterInput>>;
378
+ createdAt?: InputMaybe<Array<DateFilter>>;
379
+ isDraft?: InputMaybe<Array<BooleanFilter>>;
380
+ prn?: InputMaybe<Array<PrnFilter>>;
381
+ updatedAt?: InputMaybe<Array<DateFilter>>;
382
+ };
383
+ export type ContentType = {
384
+ __typename?: 'ContentType';
385
+ contentFields: Array<ContentField>;
386
+ contentItems: Array<ContentItem>;
387
+ createdAt: Scalars['DateTime']['output'];
388
+ displayImageField?: Maybe<ContentField>;
389
+ displayNameTemplate: Scalars['String']['output'];
390
+ name: Scalars['String']['output'];
391
+ organization?: Maybe<Organization>;
392
+ prn: Scalars['PRN']['output'];
393
+ updatedAt: Scalars['DateTime']['output'];
394
+ };
395
+ export type ContentTypeContentFieldsArgs = {
396
+ where?: InputMaybe<Array<ContentFieldsFilterInput>>;
397
+ };
398
+ export type ContentTypeContentItemsArgs = {
399
+ where?: InputMaybe<Array<ContentItemsFilterInput>>;
400
+ };
401
+ export type ContentTypeEdge = {
402
+ __typename?: 'ContentTypeEdge';
403
+ cursor: Scalars['String']['output'];
404
+ node: ContentType;
405
+ };
406
+ export type ContentTypesConnection = {
407
+ __typename?: 'ContentTypesConnection';
408
+ edges: Array<ContentTypeEdge>;
409
+ pageInfo: PageInfo;
410
+ totalCount: Scalars['Int']['output'];
411
+ };
412
+ export type ContentTypesFilterInput = {
413
+ _not?: InputMaybe<Array<ContentTypesFilterInput>>;
414
+ createdAt?: InputMaybe<Array<DateFilter>>;
415
+ displayNameTemplate?: InputMaybe<Array<StringFilter>>;
416
+ name?: InputMaybe<Array<StringFilter>>;
417
+ prn?: InputMaybe<Array<PrnFilter>>;
418
+ updatedAt?: InputMaybe<Array<DateFilter>>;
419
+ };
420
+ export type ContentValidationRule = {
421
+ __typename?: 'ContentValidationRule';
422
+ contentField: ContentField;
423
+ createdAt: Scalars['DateTime']['output'];
424
+ organization?: Maybe<Organization>;
425
+ prn: Scalars['PRN']['output'];
426
+ ruleType: RuleType;
427
+ settings: ExistingContentValidationRulesSettings;
428
+ updatedAt: Scalars['DateTime']['output'];
429
+ };
430
+ export type ContentValidationRulesFilterInput = {
431
+ _not?: InputMaybe<Array<ContentValidationRulesFilterInput>>;
432
+ createdAt?: InputMaybe<Array<DateFilter>>;
433
+ prn?: InputMaybe<Array<PrnFilter>>;
434
+ updatedAt?: InputMaybe<Array<DateFilter>>;
435
+ };
436
+ export type ContentValue = {
437
+ __typename?: 'ContentValue';
438
+ buildingBlockFieldFulfillments: Array<BuildingBlockFieldFulfillment>;
439
+ contentField?: Maybe<ContentField>;
440
+ contentItem?: Maybe<ContentItem>;
441
+ createdAt: Scalars['DateTime']['output'];
442
+ interpolatedSmartText?: Maybe<Scalars['CAST']['output']>;
443
+ linkedGridPlacement?: Maybe<GridPlacement>;
444
+ linkedPathPart?: Maybe<PathPart>;
445
+ next?: Maybe<ContentValue>;
446
+ organization?: Maybe<Organization>;
447
+ plainText?: Maybe<Scalars['String']['output']>;
448
+ previous?: Maybe<ContentValue>;
449
+ primitiveValue?: Maybe<Scalars['PrimitiveValue']['output']>;
450
+ prn: Scalars['PRN']['output'];
451
+ referencedBy: Array<ContentValue>;
452
+ referencedContentValues: Array<ContentValue>;
453
+ relatedAsset?: Maybe<Asset>;
454
+ relatedContentItem?: Maybe<ContentItem>;
455
+ smartText?: Maybe<Scalars['CAST']['output']>;
456
+ stage: Stage;
457
+ updatedAt: Scalars['DateTime']['output'];
458
+ };
459
+ export type ContentValueBuildingBlockFieldFulfillmentsArgs = {
460
+ where?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
461
+ };
462
+ export type ContentValueEdge = {
463
+ __typename?: 'ContentValueEdge';
464
+ cursor: Scalars['String']['output'];
465
+ node: ContentValue;
466
+ };
467
+ export declare enum ContentValueTypeNames {
468
+ Asset = "ASSET",
469
+ Boolean = "BOOLEAN",
470
+ ContentItem = "CONTENT_ITEM",
471
+ Date = "DATE",
472
+ GridPlacement = "GRID_PLACEMENT",
473
+ Number = "NUMBER",
474
+ PathPart = "PATH_PART",
475
+ SmartText = "SMART_TEXT",
476
+ String = "STRING"
477
+ }
478
+ export type ContentValuesConnection = {
479
+ __typename?: 'ContentValuesConnection';
480
+ edges: Array<ContentValueEdge>;
481
+ pageInfo: PageInfo;
482
+ totalCount: Scalars['Int']['output'];
483
+ };
484
+ export type ContentValuesFilterInput = {
485
+ _not?: InputMaybe<Array<ContentValuesFilterInput>>;
486
+ createdAt?: InputMaybe<Array<DateFilter>>;
487
+ plainText?: InputMaybe<Array<StringFilter>>;
488
+ primitiveValue?: InputMaybe<Array<StringFilter>>;
489
+ prn?: InputMaybe<Array<PrnFilter>>;
490
+ updatedAt?: InputMaybe<Array<DateFilter>>;
491
+ };
492
+ export type CopyBlueprintInput = {
493
+ name: Scalars['String']['input'];
494
+ preview?: InputMaybe<Scalars['PRN']['input']>;
495
+ prn: Scalars['PRN']['input'];
496
+ };
497
+ export type CountContentValidationRuleSettings = {
498
+ __typename?: 'CountContentValidationRuleSettings';
499
+ max: Scalars['Int']['output'];
500
+ min: Scalars['Int']['output'];
501
+ };
502
+ export type CountContentValidationRuleSettingsInput = {
503
+ max: Scalars['Int']['input'];
504
+ min: Scalars['Int']['input'];
505
+ };
506
+ export type CreateAllowedValuesContentValidationRuleInput = {
507
+ contentField: Scalars['PRN']['input'];
508
+ settings: AllowedValuesContentValidationRuleSettingsInput;
509
+ };
510
+ export type CreateApiTokenInput = {
511
+ channel: Scalars['PRN']['input'];
512
+ name: Scalars['String']['input'];
513
+ };
514
+ export type CreateApiTokenResponse = {
515
+ __typename?: 'CreateApiTokenResponse';
516
+ channel: Channel;
517
+ createdAt: Scalars['DateTime']['output'];
518
+ name: Scalars['String']['output'];
519
+ prn: Scalars['PRN']['output'];
520
+ stage: Stage;
521
+ token: Scalars['String']['output'];
522
+ updatedAt: Scalars['DateTime']['output'];
523
+ };
524
+ export type CreateBlueprintFromContentExperienceInput = {
525
+ contentExperience: Scalars['PRN']['input'];
526
+ isFixed: Scalars['Boolean']['input'];
527
+ name: Scalars['String']['input'];
528
+ preview?: InputMaybe<Scalars['PRN']['input']>;
529
+ };
530
+ export type CreateBlueprintInput = {
531
+ channel: Scalars['PRN']['input'];
532
+ initialRowCount?: Scalars['Int']['input'];
533
+ isFixed: Scalars['Boolean']['input'];
534
+ name: Scalars['String']['input'];
535
+ preview?: InputMaybe<Scalars['PRN']['input']>;
536
+ };
537
+ export type CreateBuildingBlockFieldForBuildingBlockInput = {
538
+ fieldTypes: Array<ContentValueTypeNames>;
539
+ maxCount?: InputMaybe<Scalars['Int']['input']>;
540
+ minCount: Scalars['Int']['input'];
541
+ next?: InputMaybe<Scalars['PRN']['input']>;
542
+ slug: Scalars['String']['input'];
543
+ title: Scalars['String']['input'];
544
+ };
545
+ export type CreateBuildingBlockFieldFulfillmentForExperienceComponentInput = {
546
+ buildingBlockField: Scalars['PRN']['input'];
547
+ contentValue: Scalars['PRN']['input'];
548
+ next?: InputMaybe<Scalars['PRN']['input']>;
549
+ };
550
+ export type CreateBuildingBlockFieldFulfillmentInput = {
551
+ buildingBlockField: Scalars['PRN']['input'];
552
+ contentValue: Scalars['PRN']['input'];
553
+ experienceComponent: Scalars['PRN']['input'];
554
+ next?: InputMaybe<Scalars['PRN']['input']>;
555
+ };
556
+ export type CreateBuildingBlockFieldInput = {
557
+ buildingBlock: Scalars['PRN']['input'];
558
+ fieldTypes: Array<ContentValueTypeNames>;
559
+ maxCount?: InputMaybe<Scalars['Int']['input']>;
560
+ minCount: Scalars['Int']['input'];
561
+ next?: InputMaybe<Scalars['PRN']['input']>;
562
+ slug: Scalars['String']['input'];
563
+ title: Scalars['String']['input'];
564
+ };
565
+ export type CreateBuildingBlockForThemeInput = {
566
+ buildingBlockFields: Array<CreateBuildingBlockFieldForBuildingBlockInput>;
567
+ gridDefinition?: InputMaybe<CreateGridDefinitionInput>;
568
+ next?: InputMaybe<Scalars['PRN']['input']>;
569
+ preview?: InputMaybe<Scalars['PRN']['input']>;
570
+ slug: Scalars['String']['input'];
571
+ title: Scalars['String']['input'];
572
+ };
573
+ export type CreateBuildingBlockInput = {
574
+ buildingBlockFields: Array<CreateBuildingBlockFieldForBuildingBlockInput>;
575
+ gridDefinition?: InputMaybe<CreateGridDefinitionInput>;
576
+ next?: InputMaybe<Scalars['PRN']['input']>;
577
+ preview?: InputMaybe<Scalars['PRN']['input']>;
578
+ slug: Scalars['String']['input'];
579
+ theme: Scalars['PRN']['input'];
580
+ title: Scalars['String']['input'];
581
+ };
582
+ export type CreateChannelInput = {
583
+ domain: Scalars['String']['input'];
584
+ name: Scalars['String']['input'];
585
+ slug: Scalars['String']['input'];
586
+ theme: Scalars['PRN']['input'];
587
+ };
588
+ export type CreateContentExperienceWithExistingPathPartInput = {
589
+ fromBlueprint?: InputMaybe<Scalars['PRN']['input']>;
590
+ initialRowCount?: InputMaybe<Scalars['Int']['input']>;
591
+ pathPart: Scalars['PRN']['input'];
592
+ preview?: InputMaybe<Scalars['PRN']['input']>;
593
+ slug: Scalars['String']['input'];
594
+ title: Scalars['String']['input'];
595
+ };
596
+ export type CreateContentExperienceWithNewPathPartInput = {
597
+ createPathPartFromParent?: InputMaybe<CreatePathPartFromParentInput>;
598
+ createPathPartFromPath?: InputMaybe<CreatePathPartFromPathInput>;
599
+ fromBlueprint?: InputMaybe<Scalars['PRN']['input']>;
600
+ initialRowCount?: InputMaybe<Scalars['Int']['input']>;
601
+ preview?: InputMaybe<Scalars['PRN']['input']>;
602
+ slug: Scalars['String']['input'];
603
+ title: Scalars['String']['input'];
604
+ };
605
+ export type CreateContentFieldForContentTypeInput = {
606
+ name: Scalars['String']['input'];
607
+ next?: InputMaybe<Scalars['PRN']['input']>;
608
+ };
609
+ export type CreateContentFieldInput = {
610
+ contentType: Scalars['PRN']['input'];
611
+ name: Scalars['String']['input'];
612
+ next?: InputMaybe<Scalars['PRN']['input']>;
613
+ };
614
+ export type CreateContentItemInput = {
615
+ contentType: Scalars['PRN']['input'];
616
+ contentValuesToConnect?: InputMaybe<Array<ConnectContentValueInput>>;
617
+ contentValuesToCreate?: InputMaybe<Array<CreateContentValueForContentItemInput>>;
618
+ isDraft: Scalars['Boolean']['input'];
619
+ };
620
+ export type CreateContentTypeInput = {
621
+ contentFields?: Array<CreateContentFieldForContentTypeInput>;
622
+ displayImageField?: InputMaybe<Scalars['PRN']['input']>;
623
+ displayNameTemplate: Scalars['String']['input'];
624
+ name: Scalars['String']['input'];
625
+ };
626
+ export type CreateContentValueForContentItemInput = {
627
+ contentField: Scalars['PRN']['input'];
628
+ linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
629
+ linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
630
+ next?: InputMaybe<Scalars['PRN']['input']>;
631
+ primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
632
+ relatedAsset?: InputMaybe<Scalars['PRN']['input']>;
633
+ relatedContentItem?: InputMaybe<Scalars['PRN']['input']>;
634
+ smartText?: InputMaybe<Scalars['CAST']['input']>;
635
+ };
636
+ export type CreateContentValueInput = {
637
+ contentField?: InputMaybe<Scalars['PRN']['input']>;
638
+ contentItem?: InputMaybe<Scalars['PRN']['input']>;
639
+ linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
640
+ linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
641
+ next?: InputMaybe<Scalars['PRN']['input']>;
642
+ primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
643
+ relatedAsset?: InputMaybe<Scalars['PRN']['input']>;
644
+ relatedContentItem?: InputMaybe<Scalars['PRN']['input']>;
645
+ smartText?: InputMaybe<Scalars['CAST']['input']>;
646
+ };
647
+ export type CreateCountContentValidationRuleInput = {
648
+ contentField: Scalars['PRN']['input'];
649
+ settings: CountContentValidationRuleSettingsInput;
650
+ };
651
+ export type CreateDateBetweenContentValidationRuleInput = {
652
+ contentField: Scalars['PRN']['input'];
653
+ settings: DateBetweenContentValidationRuleSettingsInput;
654
+ };
655
+ export type CreateDecimalCountContentValidationRuleInput = {
656
+ contentField: Scalars['PRN']['input'];
657
+ settings: DecimalCountContentValidationRuleSettingsInput;
658
+ };
659
+ export type CreateExperienceComponentInput = {
660
+ buildingBlock: Scalars['PRN']['input'];
661
+ buildingBlockFieldFulfillments: Array<CreateBuildingBlockFieldFulfillmentForExperienceComponentInput>;
662
+ grid?: InputMaybe<CreateGridInput>;
663
+ gridPlacement?: InputMaybe<CreateGridPlacementInput>;
664
+ isDraft: Scalars['Boolean']['input'];
665
+ preview?: InputMaybe<Scalars['PRN']['input']>;
666
+ };
667
+ export type CreateGlobalExperienceComponentInput = {
668
+ buildingBlock: Scalars['PRN']['input'];
669
+ buildingBlockFieldFulfillments: Array<CreateBuildingBlockFieldFulfillmentForExperienceComponentInput>;
670
+ grid?: InputMaybe<CreateGridInput>;
671
+ gridPlacement?: InputMaybe<CreateGridPlacementInput>;
672
+ isDraft: Scalars['Boolean']['input'];
673
+ name: Scalars['String']['input'];
674
+ preview?: InputMaybe<Scalars['PRN']['input']>;
675
+ };
676
+ export type CreateGridDefinitionInput = {
677
+ buildingBlock?: InputMaybe<Scalars['PRN']['input']>;
678
+ maxRows: Scalars['Int']['input'];
679
+ };
680
+ export type CreateGridInput = {
681
+ experienceComponent?: InputMaybe<Scalars['PRN']['input']>;
682
+ gridDefinition: Scalars['PRN']['input'];
683
+ rows: Scalars['Int']['input'];
684
+ };
685
+ export type CreateGridPlacementInput = {
686
+ experienceComponent?: InputMaybe<Scalars['PRN']['input']>;
687
+ grid: Scalars['PRN']['input'];
688
+ row: Scalars['Int']['input'];
689
+ };
690
+ export type CreateInvitationInput = {
691
+ role: Scalars['PRN']['input'];
692
+ userEmail: Scalars['String']['input'];
693
+ };
694
+ export type CreateNumberBetweenContentValidationRuleInput = {
695
+ contentField: Scalars['PRN']['input'];
696
+ settings: NumberBetweenContentValidationRuleSettingsInput;
697
+ };
698
+ export type CreateOrganizationInput = {
699
+ logoUrl?: InputMaybe<Scalars['String']['input']>;
700
+ name: Scalars['String']['input'];
701
+ slug: Scalars['String']['input'];
702
+ };
703
+ export type CreatePathPartFromParentInput = {
704
+ parent: Scalars['String']['input'];
705
+ slug: Scalars['String']['input'];
706
+ };
707
+ export type CreatePathPartFromPathInput = {
708
+ channel: Scalars['PRN']['input'];
709
+ path: Scalars['String']['input'];
710
+ };
711
+ export type CreateRelatableContentTypesContentValidationRuleInput = {
712
+ contentField: Scalars['PRN']['input'];
713
+ settings: RelatableContentTypesContentValidationRuleSettingsInput;
714
+ };
715
+ export type CreateStringFormatContentValidationRuleInput = {
716
+ contentField: Scalars['PRN']['input'];
717
+ settings: StringFormatContentValidationRuleSettingsInput;
718
+ };
719
+ export type CreateThemeInput = {
720
+ buildingBlocks?: InputMaybe<Array<CreateBuildingBlockForThemeInput>>;
721
+ name: Scalars['String']['input'];
722
+ repositoryUrl: Scalars['String']['input'];
723
+ };
724
+ export type CreateValueTypeContentValidationRuleInput = {
725
+ contentField: Scalars['PRN']['input'];
726
+ settings: ValueTypeContentValidationRuleSettingsInput;
727
+ };
728
+ export type DateBetweenContentValidationRuleSettings = {
729
+ __typename?: 'DateBetweenContentValidationRuleSettings';
730
+ max: Scalars['String']['output'];
731
+ min: Scalars['String']['output'];
732
+ };
733
+ export type DateBetweenContentValidationRuleSettingsInput = {
734
+ max: Scalars['String']['input'];
735
+ min: Scalars['String']['input'];
736
+ };
737
+ export type DateFilter = {
738
+ _eq?: InputMaybe<Scalars['DateTime']['input']>;
739
+ _gt?: InputMaybe<Scalars['DateTime']['input']>;
740
+ _gte?: InputMaybe<Scalars['DateTime']['input']>;
741
+ _in?: InputMaybe<Array<Scalars['DateTime']['input']>>;
742
+ _is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
743
+ _is_null?: InputMaybe<Scalars['Boolean']['input']>;
744
+ _lt?: InputMaybe<Scalars['DateTime']['input']>;
745
+ _lte?: InputMaybe<Scalars['DateTime']['input']>;
746
+ _neq?: InputMaybe<Scalars['DateTime']['input']>;
747
+ _nin?: InputMaybe<Array<Scalars['DateTime']['input']>>;
748
+ };
749
+ export type DecimalCountContentValidationRuleSettings = {
750
+ __typename?: 'DecimalCountContentValidationRuleSettings';
751
+ max: Scalars['Int']['output'];
752
+ };
753
+ export type DecimalCountContentValidationRuleSettingsInput = {
754
+ max: Scalars['Int']['input'];
755
+ };
756
+ export declare enum DefaultRoleName {
757
+ Admin = "ADMIN",
758
+ ContentEditor = "CONTENT_EDITOR"
759
+ }
760
+ export type ExistingContentValidationRulesSettings = AllowedValuesContentValidationRuleSettings | CountContentValidationRuleSettings | DateBetweenContentValidationRuleSettings | DecimalCountContentValidationRuleSettings | NumberBetweenContentValidationRuleSettings | RelatableContentTypesContentValidationRuleSettings | StringFormatContentValidationRuleSettings | ValueTypeContentValidationRuleSettings;
761
+ export type ExperienceComponent = {
762
+ __typename?: 'ExperienceComponent';
763
+ blueprint?: Maybe<Blueprint>;
764
+ blueprintedBy?: Maybe<ExperienceComponent>;
765
+ blueprintedInstances?: Maybe<Array<ExperienceComponent>>;
766
+ buildingBlock: BuildingBlock;
767
+ buildingBlockFieldFulfillments: Array<BuildingBlockFieldFulfillment>;
768
+ contentExperience?: Maybe<ContentExperience>;
769
+ createdAt: Scalars['DateTime']['output'];
770
+ grid?: Maybe<Grid>;
771
+ gridPlacements: Array<GridPlacement>;
772
+ isDraft: Scalars['Boolean']['output'];
773
+ isGlobal: Scalars['Boolean']['output'];
774
+ name?: Maybe<Scalars['String']['output']>;
775
+ organization?: Maybe<Organization>;
776
+ preview?: Maybe<Asset>;
777
+ prn: Scalars['PRN']['output'];
778
+ stage: Stage;
779
+ updatedAt: Scalars['DateTime']['output'];
780
+ };
781
+ export type ExperienceComponentBlueprintedInstancesArgs = {
782
+ where?: InputMaybe<Array<ExperienceComponentsFilterInput>>;
783
+ };
784
+ export type ExperienceComponentBuildingBlockFieldFulfillmentsArgs = {
785
+ where?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
786
+ };
787
+ export type ExperienceComponentGridPlacementsArgs = {
788
+ where?: InputMaybe<Array<GridPlacementsFilterInput>>;
789
+ };
790
+ export type ExperienceComponentEdge = {
791
+ __typename?: 'ExperienceComponentEdge';
792
+ cursor: Scalars['String']['output'];
793
+ node: ExperienceComponent;
794
+ };
795
+ export type ExperienceComponentsConnection = {
796
+ __typename?: 'ExperienceComponentsConnection';
797
+ edges: Array<ExperienceComponentEdge>;
798
+ pageInfo: PageInfo;
799
+ totalCount: Scalars['Int']['output'];
800
+ };
801
+ export type ExperienceComponentsFilterInput = {
802
+ _not?: InputMaybe<Array<ExperienceComponentsFilterInput>>;
803
+ createdAt?: InputMaybe<Array<DateFilter>>;
804
+ isDraft?: InputMaybe<Array<BooleanFilter>>;
805
+ isGlobal?: InputMaybe<Array<BooleanFilter>>;
806
+ name?: InputMaybe<Array<StringFilter>>;
807
+ prn?: InputMaybe<Array<PrnFilter>>;
808
+ updatedAt?: InputMaybe<Array<DateFilter>>;
809
+ };
810
+ export type FindPathPartByPathInput = {
811
+ channel: Scalars['PRN']['input'];
812
+ path: Scalars['String']['input'];
813
+ };
814
+ export type GenerateAssetUploadUrlInput = {
815
+ fileName: Scalars['String']['input'];
816
+ fileSize: Scalars['Int']['input'];
817
+ mimeType?: Scalars['String']['input'];
818
+ };
819
+ export type GeneratedUploadUrl = {
820
+ __typename?: 'GeneratedUploadUrl';
821
+ prn: Scalars['PRN']['output'];
822
+ url: Scalars['String']['output'];
823
+ };
824
+ export type Grid = {
825
+ __typename?: 'Grid';
826
+ blueprintedBy?: Maybe<Grid>;
827
+ blueprintedInstances?: Maybe<Grid>;
828
+ createdAt: Scalars['DateTime']['output'];
829
+ experienceComponent: ExperienceComponent;
830
+ gridDefinition: GridDefinition;
831
+ gridPlacements: Array<GridPlacement>;
832
+ organization?: Maybe<Organization>;
833
+ prn: Scalars['PRN']['output'];
834
+ rows: Scalars['Int']['output'];
835
+ stage: Stage;
836
+ updatedAt: Scalars['DateTime']['output'];
837
+ };
838
+ export type GridBlueprintedInstancesArgs = {
839
+ where?: InputMaybe<Array<GridsFilterInput>>;
840
+ };
841
+ export type GridGridPlacementsArgs = {
842
+ where?: InputMaybe<Array<GridPlacementsFilterInput>>;
843
+ };
844
+ export type GridDefinition = {
845
+ __typename?: 'GridDefinition';
846
+ buildingBlock: BuildingBlock;
847
+ createdAt: Scalars['DateTime']['output'];
848
+ maxRows: Scalars['Int']['output'];
849
+ organization?: Maybe<Organization>;
850
+ prn: Scalars['PRN']['output'];
851
+ updatedAt: Scalars['DateTime']['output'];
852
+ };
853
+ export type GridPlacement = {
854
+ __typename?: 'GridPlacement';
855
+ blueprintedBy?: Maybe<GridPlacement>;
856
+ blueprintedInstances?: Maybe<Array<GridPlacement>>;
857
+ createdAt: Scalars['DateTime']['output'];
858
+ experienceComponent: ExperienceComponent;
859
+ grid: Grid;
860
+ organization?: Maybe<Organization>;
861
+ prn: Scalars['PRN']['output'];
862
+ row: Scalars['Int']['output'];
863
+ stage: Stage;
864
+ updatedAt: Scalars['DateTime']['output'];
865
+ };
866
+ export type GridPlacementBlueprintedInstancesArgs = {
867
+ where?: InputMaybe<Array<GridPlacementsFilterInput>>;
868
+ };
869
+ export type GridPlacementEdge = {
870
+ __typename?: 'GridPlacementEdge';
871
+ cursor: Scalars['String']['output'];
872
+ node: GridPlacement;
873
+ };
874
+ export type GridPlacementsConnection = {
875
+ __typename?: 'GridPlacementsConnection';
876
+ edges: Array<GridPlacementEdge>;
877
+ pageInfo: PageInfo;
878
+ totalCount: Scalars['Int']['output'];
879
+ };
880
+ export type GridPlacementsFilterInput = {
881
+ _not?: InputMaybe<Array<GridPlacementsFilterInput>>;
882
+ createdAt?: InputMaybe<Array<DateFilter>>;
883
+ prn?: InputMaybe<Array<PrnFilter>>;
884
+ row?: InputMaybe<Array<IntFilter>>;
885
+ updatedAt?: InputMaybe<Array<DateFilter>>;
886
+ };
887
+ export type GridsFilterInput = {
888
+ _not?: InputMaybe<Array<GridsFilterInput>>;
889
+ createdAt?: InputMaybe<Array<DateFilter>>;
890
+ prn?: InputMaybe<Array<PrnFilter>>;
891
+ rows?: InputMaybe<Array<IntFilter>>;
892
+ updatedAt?: InputMaybe<Array<DateFilter>>;
893
+ };
894
+ export type HandleInvitationInput = {
895
+ prn: Scalars['PRN']['input'];
896
+ };
897
+ export type IntFilter = {
898
+ _eq?: InputMaybe<Scalars['Int']['input']>;
899
+ _gt?: InputMaybe<Scalars['Int']['input']>;
900
+ _gte?: InputMaybe<Scalars['Int']['input']>;
901
+ _in?: InputMaybe<Array<Scalars['Int']['input']>>;
902
+ _is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
903
+ _is_null?: InputMaybe<Scalars['Boolean']['input']>;
904
+ _lt?: InputMaybe<Scalars['Int']['input']>;
905
+ _lte?: InputMaybe<Scalars['Int']['input']>;
906
+ _neq?: InputMaybe<Scalars['Int']['input']>;
907
+ _nin?: InputMaybe<Array<Scalars['Int']['input']>>;
908
+ };
909
+ export type Invitation = {
910
+ __typename?: 'Invitation';
911
+ createdAt: Scalars['DateTime']['output'];
912
+ prn: Scalars['PRN']['output'];
913
+ role: Role;
914
+ updatedAt: Scalars['DateTime']['output'];
915
+ userEmail: Scalars['String']['output'];
916
+ };
917
+ export type Mutation = {
918
+ __typename?: 'Mutation';
919
+ acceptInvitation: RoleAssignment;
920
+ addPlateMaintainer: Subject;
921
+ confirmAssetUpload: Array<Asset>;
922
+ copyBlueprint: Array<Blueprint>;
923
+ createAllowedValuesContentValidationRule: ContentValidationRule;
924
+ createApiToken: Array<CreateApiTokenResponse>;
925
+ createBlueprint: Array<Blueprint>;
926
+ createBlueprintFromContentExperience: Array<Blueprint>;
927
+ createBuildingBlock: Array<BuildingBlock>;
928
+ createBuildingBlockField: Array<BuildingBlockField>;
929
+ createBuildingBlockFieldFulfillment: Array<BuildingBlockFieldFulfillment>;
930
+ createChannel: Array<Channel>;
931
+ createContentExperienceWithExistingPathPart: Array<ContentExperience>;
932
+ createContentExperienceWithNewPathPart: Array<ContentExperience>;
933
+ createContentField: Array<ContentField>;
934
+ createContentItem: Array<ContentItem>;
935
+ createContentType: Array<ContentType>;
936
+ createContentValue: Array<ContentValue>;
937
+ createCountContentValidationRule: ContentValidationRule;
938
+ createDateBetweenContentValidationRule: ContentValidationRule;
939
+ createDecimalCountContentValidationRule: ContentValidationRule;
940
+ createExperienceComponent: Array<ExperienceComponent>;
941
+ createGlobalExperienceComponent: Array<ExperienceComponent>;
942
+ createGrid: Array<Grid>;
943
+ createGridDefinition: Array<GridDefinition>;
944
+ createGridPlacement: Array<GridPlacement>;
945
+ createInvitation: Array<Invitation>;
946
+ createNumberBetweenContentValidationRule: ContentValidationRule;
947
+ createOrganization: Organization;
948
+ createPathPartFromParent: Array<PathPart>;
949
+ createPathPartFromPath: Array<PathPart>;
950
+ createRelatableContentTypesContentValidationRule: ContentValidationRule;
951
+ createStringFormatContentValidationRule: ContentValidationRule;
952
+ createTheme: Array<Theme>;
953
+ createValueTypeContentValidationRule: ContentValidationRule;
954
+ declineInvitation: Invitation;
955
+ generateAssetUploadUrl: Array<GeneratedUploadUrl>;
956
+ regenerateApiToken: Array<CreateApiTokenResponse>;
957
+ removeApiToken: Array<ApiToken>;
958
+ removeBlueprint: Array<Blueprint>;
959
+ removeBuildingBlock: Array<BuildingBlock>;
960
+ removeBuildingBlockField: Array<BuildingBlockField>;
961
+ removeBuildingBlockFieldFulfillment: Array<BuildingBlockFieldFulfillment>;
962
+ removeChannel: Array<Channel>;
963
+ removeContentExperience: Array<ContentExperience>;
964
+ removeContentField: Array<ContentField>;
965
+ removeContentItem: Array<ContentItem>;
966
+ removeContentType: Array<ContentType>;
967
+ removeContentValidationRule: Array<ContentValidationRule>;
968
+ removeContentValue: Array<ContentValue>;
969
+ removeExperienceComponent: Array<ExperienceComponent>;
970
+ removeGrid: Array<Grid>;
971
+ removeGridDefinition: Array<GridDefinition>;
972
+ removeGridPlacement: Array<GridPlacement>;
973
+ removeInvitation: Array<Invitation>;
974
+ removeOrganization: Array<Organization>;
975
+ removePathPart: Array<PathPart>;
976
+ removePlateMaintainer: Subject;
977
+ removeRoleAssignment: Array<RoleAssignment>;
978
+ removeTheme: Array<Theme>;
979
+ runSeeder: Scalars['Boolean']['output'];
980
+ syncBlueprint: Scalars['Boolean']['output'];
981
+ updateAllowedValuesContentValidationRule: ContentValidationRule;
982
+ updateApiToken: Array<ApiToken>;
983
+ updateAsset: Array<Asset>;
984
+ updateBlueprint: Array<Blueprint>;
985
+ updateBuildingBlock: Array<BuildingBlock>;
986
+ updateBuildingBlockField: Array<BuildingBlockField>;
987
+ updateBuildingBlockFieldFulfillment: Array<BuildingBlockFieldFulfillment>;
988
+ updateChannel: Array<Channel>;
989
+ updateContentExperience: Array<ContentExperience>;
990
+ updateContentField: Array<ContentField>;
991
+ updateContentItem: Array<ContentItem>;
992
+ updateContentType: Array<ContentType>;
993
+ updateContentValue: Array<ContentValue>;
994
+ updateCountContentValidationRule: ContentValidationRule;
995
+ updateDateBetweenContentValidationRule: ContentValidationRule;
996
+ updateDecimalCountContentValidationRule: ContentValidationRule;
997
+ updateExperienceComponent: Array<ExperienceComponent>;
998
+ updateGrid: Array<Grid>;
999
+ updateGridDefinition: Array<GridDefinition>;
1000
+ updateGridPlacement: Array<GridPlacement>;
1001
+ updateNumberBetweenContentValidationRule: ContentValidationRule;
1002
+ updateOrganization: Array<Organization>;
1003
+ updatePathPart: Array<PathPart>;
1004
+ updatePathPartFromPath: Array<PathPart>;
1005
+ updateRelatableContentTypesContentValidationRule: ContentValidationRule;
1006
+ updateStringFormatContentValidationRule: ContentValidationRule;
1007
+ updateTheme: Array<Theme>;
1008
+ updateValueTypeContentValidationRule: ContentValidationRule;
1009
+ };
1010
+ export type MutationAcceptInvitationArgs = {
1011
+ input: HandleInvitationInput;
1012
+ };
1013
+ export type MutationAddPlateMaintainerArgs = {
1014
+ email: Scalars['String']['input'];
1015
+ };
1016
+ export type MutationConfirmAssetUploadArgs = {
1017
+ prn: Array<Scalars['PRN']['input']>;
1018
+ };
1019
+ export type MutationCopyBlueprintArgs = {
1020
+ input: Array<CopyBlueprintInput>;
1021
+ };
1022
+ export type MutationCreateAllowedValuesContentValidationRuleArgs = {
1023
+ input: CreateAllowedValuesContentValidationRuleInput;
1024
+ };
1025
+ export type MutationCreateApiTokenArgs = {
1026
+ input: Array<CreateApiTokenInput>;
1027
+ };
1028
+ export type MutationCreateBlueprintArgs = {
1029
+ input: Array<CreateBlueprintInput>;
1030
+ };
1031
+ export type MutationCreateBlueprintFromContentExperienceArgs = {
1032
+ input: Array<CreateBlueprintFromContentExperienceInput>;
1033
+ };
1034
+ export type MutationCreateBuildingBlockArgs = {
1035
+ input: Array<CreateBuildingBlockInput>;
1036
+ };
1037
+ export type MutationCreateBuildingBlockFieldArgs = {
1038
+ input: Array<CreateBuildingBlockFieldInput>;
1039
+ };
1040
+ export type MutationCreateBuildingBlockFieldFulfillmentArgs = {
1041
+ input: Array<CreateBuildingBlockFieldFulfillmentInput>;
1042
+ };
1043
+ export type MutationCreateChannelArgs = {
1044
+ input: Array<CreateChannelInput>;
1045
+ };
1046
+ export type MutationCreateContentExperienceWithExistingPathPartArgs = {
1047
+ input: Array<CreateContentExperienceWithExistingPathPartInput>;
1048
+ };
1049
+ export type MutationCreateContentExperienceWithNewPathPartArgs = {
1050
+ input: Array<CreateContentExperienceWithNewPathPartInput>;
1051
+ };
1052
+ export type MutationCreateContentFieldArgs = {
1053
+ input: Array<CreateContentFieldInput>;
1054
+ };
1055
+ export type MutationCreateContentItemArgs = {
1056
+ input: Array<CreateContentItemInput>;
1057
+ };
1058
+ export type MutationCreateContentTypeArgs = {
1059
+ input: Array<CreateContentTypeInput>;
1060
+ };
1061
+ export type MutationCreateContentValueArgs = {
1062
+ input: Array<CreateContentValueInput>;
1063
+ };
1064
+ export type MutationCreateCountContentValidationRuleArgs = {
1065
+ input: CreateCountContentValidationRuleInput;
1066
+ };
1067
+ export type MutationCreateDateBetweenContentValidationRuleArgs = {
1068
+ input: CreateDateBetweenContentValidationRuleInput;
1069
+ };
1070
+ export type MutationCreateDecimalCountContentValidationRuleArgs = {
1071
+ input: CreateDecimalCountContentValidationRuleInput;
1072
+ };
1073
+ export type MutationCreateExperienceComponentArgs = {
1074
+ input: Array<CreateExperienceComponentInput>;
1075
+ };
1076
+ export type MutationCreateGlobalExperienceComponentArgs = {
1077
+ input: Array<CreateGlobalExperienceComponentInput>;
1078
+ };
1079
+ export type MutationCreateGridArgs = {
1080
+ input: Array<CreateGridInput>;
1081
+ };
1082
+ export type MutationCreateGridDefinitionArgs = {
1083
+ input: Array<CreateGridDefinitionInput>;
1084
+ };
1085
+ export type MutationCreateGridPlacementArgs = {
1086
+ input: Array<CreateGridPlacementInput>;
1087
+ };
1088
+ export type MutationCreateInvitationArgs = {
1089
+ input: Array<CreateInvitationInput>;
1090
+ };
1091
+ export type MutationCreateNumberBetweenContentValidationRuleArgs = {
1092
+ input: CreateNumberBetweenContentValidationRuleInput;
1093
+ };
1094
+ export type MutationCreateOrganizationArgs = {
1095
+ input: CreateOrganizationInput;
1096
+ };
1097
+ export type MutationCreatePathPartFromParentArgs = {
1098
+ input: Array<CreatePathPartFromParentInput>;
1099
+ };
1100
+ export type MutationCreatePathPartFromPathArgs = {
1101
+ input: Array<CreatePathPartFromPathInput>;
1102
+ };
1103
+ export type MutationCreateRelatableContentTypesContentValidationRuleArgs = {
1104
+ input: CreateRelatableContentTypesContentValidationRuleInput;
1105
+ };
1106
+ export type MutationCreateStringFormatContentValidationRuleArgs = {
1107
+ input: CreateStringFormatContentValidationRuleInput;
1108
+ };
1109
+ export type MutationCreateThemeArgs = {
1110
+ input: Array<CreateThemeInput>;
1111
+ };
1112
+ export type MutationCreateValueTypeContentValidationRuleArgs = {
1113
+ input: CreateValueTypeContentValidationRuleInput;
1114
+ };
1115
+ export type MutationDeclineInvitationArgs = {
1116
+ input: HandleInvitationInput;
1117
+ };
1118
+ export type MutationGenerateAssetUploadUrlArgs = {
1119
+ input: Array<GenerateAssetUploadUrlInput>;
1120
+ };
1121
+ export type MutationRegenerateApiTokenArgs = {
1122
+ prn: Array<Scalars['PRN']['input']>;
1123
+ };
1124
+ export type MutationRemoveApiTokenArgs = {
1125
+ prn: Array<Scalars['PRN']['input']>;
1126
+ };
1127
+ export type MutationRemoveBlueprintArgs = {
1128
+ input: Array<RemoveBlueprintInput>;
1129
+ };
1130
+ export type MutationRemoveBuildingBlockArgs = {
1131
+ prn: Array<Scalars['PRN']['input']>;
1132
+ };
1133
+ export type MutationRemoveBuildingBlockFieldArgs = {
1134
+ prn: Array<Scalars['PRN']['input']>;
1135
+ };
1136
+ export type MutationRemoveBuildingBlockFieldFulfillmentArgs = {
1137
+ prn: Array<Scalars['PRN']['input']>;
1138
+ };
1139
+ export type MutationRemoveChannelArgs = {
1140
+ prn: Array<Scalars['PRN']['input']>;
1141
+ };
1142
+ export type MutationRemoveContentExperienceArgs = {
1143
+ prn: Array<Scalars['PRN']['input']>;
1144
+ };
1145
+ export type MutationRemoveContentFieldArgs = {
1146
+ prn: Array<Scalars['PRN']['input']>;
1147
+ };
1148
+ export type MutationRemoveContentItemArgs = {
1149
+ prn: Array<Scalars['PRN']['input']>;
1150
+ };
1151
+ export type MutationRemoveContentTypeArgs = {
1152
+ prn: Array<Scalars['PRN']['input']>;
1153
+ };
1154
+ export type MutationRemoveContentValidationRuleArgs = {
1155
+ prn: Array<Scalars['PRN']['input']>;
1156
+ };
1157
+ export type MutationRemoveContentValueArgs = {
1158
+ prn: Array<Scalars['PRN']['input']>;
1159
+ };
1160
+ export type MutationRemoveExperienceComponentArgs = {
1161
+ prn: Array<Scalars['PRN']['input']>;
1162
+ };
1163
+ export type MutationRemoveGridArgs = {
1164
+ prn: Array<Scalars['PRN']['input']>;
1165
+ };
1166
+ export type MutationRemoveGridDefinitionArgs = {
1167
+ prn: Array<Scalars['PRN']['input']>;
1168
+ };
1169
+ export type MutationRemoveGridPlacementArgs = {
1170
+ prn: Array<Scalars['PRN']['input']>;
1171
+ };
1172
+ export type MutationRemoveInvitationArgs = {
1173
+ prn: Array<Scalars['PRN']['input']>;
1174
+ };
1175
+ export type MutationRemoveOrganizationArgs = {
1176
+ prn: Array<Scalars['PRN']['input']>;
1177
+ };
1178
+ export type MutationRemovePathPartArgs = {
1179
+ prn: Array<Scalars['PRN']['input']>;
1180
+ };
1181
+ export type MutationRemovePlateMaintainerArgs = {
1182
+ id: Scalars['String']['input'];
1183
+ };
1184
+ export type MutationRemoveRoleAssignmentArgs = {
1185
+ prn: Array<Scalars['PRN']['input']>;
1186
+ };
1187
+ export type MutationRemoveThemeArgs = {
1188
+ prn: Array<Scalars['PRN']['input']>;
1189
+ };
1190
+ export type MutationRunSeederArgs = {
1191
+ seedType: SeedType;
1192
+ };
1193
+ export type MutationSyncBlueprintArgs = {
1194
+ prn: Array<Scalars['PRN']['input']>;
1195
+ };
1196
+ export type MutationUpdateAllowedValuesContentValidationRuleArgs = {
1197
+ input: UpdateAllowedValuesContentValidationRuleInput;
1198
+ };
1199
+ export type MutationUpdateApiTokenArgs = {
1200
+ input: Array<UpdateApiTokenInput>;
1201
+ };
1202
+ export type MutationUpdateAssetArgs = {
1203
+ input: Array<UpdateAssetInput>;
1204
+ };
1205
+ export type MutationUpdateBlueprintArgs = {
1206
+ input: Array<UpdateBlueprintInput>;
1207
+ };
1208
+ export type MutationUpdateBuildingBlockArgs = {
1209
+ input: Array<UpdateBuildingBlockInput>;
1210
+ };
1211
+ export type MutationUpdateBuildingBlockFieldArgs = {
1212
+ input: Array<UpdateBuildingBlockFieldInput>;
1213
+ };
1214
+ export type MutationUpdateBuildingBlockFieldFulfillmentArgs = {
1215
+ input: Array<UpdateBuildingBlockFieldFulfillmentInput>;
1216
+ };
1217
+ export type MutationUpdateChannelArgs = {
1218
+ input: Array<UpdateChannelInput>;
1219
+ };
1220
+ export type MutationUpdateContentExperienceArgs = {
1221
+ input: Array<UpdateContentExperienceInput>;
1222
+ };
1223
+ export type MutationUpdateContentFieldArgs = {
1224
+ input: Array<UpdateContentFieldInput>;
1225
+ };
1226
+ export type MutationUpdateContentItemArgs = {
1227
+ input: Array<UpdateContentItemInput>;
1228
+ };
1229
+ export type MutationUpdateContentTypeArgs = {
1230
+ input: Array<UpdateContentTypeInput>;
1231
+ };
1232
+ export type MutationUpdateContentValueArgs = {
1233
+ input: Array<UpdateContentValueInput>;
1234
+ };
1235
+ export type MutationUpdateCountContentValidationRuleArgs = {
1236
+ input: UpdateCountContentValidationRuleInput;
1237
+ };
1238
+ export type MutationUpdateDateBetweenContentValidationRuleArgs = {
1239
+ input: UpdateDateBetweenContentValidationRuleInput;
1240
+ };
1241
+ export type MutationUpdateDecimalCountContentValidationRuleArgs = {
1242
+ input: UpdateDecimalCountContentValidationRuleInput;
1243
+ };
1244
+ export type MutationUpdateExperienceComponentArgs = {
1245
+ input: Array<UpdateExperienceComponentInput>;
1246
+ };
1247
+ export type MutationUpdateGridArgs = {
1248
+ input: Array<UpdateGridInput>;
1249
+ };
1250
+ export type MutationUpdateGridDefinitionArgs = {
1251
+ input: Array<UpdateGridDefinitionInput>;
1252
+ };
1253
+ export type MutationUpdateGridPlacementArgs = {
1254
+ input: Array<UpdateGridPlacementInput>;
1255
+ };
1256
+ export type MutationUpdateNumberBetweenContentValidationRuleArgs = {
1257
+ input: UpdateNumberBetweenContentValidationRuleInput;
1258
+ };
1259
+ export type MutationUpdateOrganizationArgs = {
1260
+ input: Array<UpdateOrganizationInput>;
1261
+ };
1262
+ export type MutationUpdatePathPartArgs = {
1263
+ input: Array<UpdatePathPartInput>;
1264
+ };
1265
+ export type MutationUpdatePathPartFromPathArgs = {
1266
+ input: Array<UpdatePathPartByPathInput>;
1267
+ };
1268
+ export type MutationUpdateRelatableContentTypesContentValidationRuleArgs = {
1269
+ input: UpdateRelatableContentTypesContentValidationRuleInput;
1270
+ };
1271
+ export type MutationUpdateStringFormatContentValidationRuleArgs = {
1272
+ input: UpdateStringFormatContentValidationRuleInput;
1273
+ };
1274
+ export type MutationUpdateThemeArgs = {
1275
+ input: Array<UpdateThemeInput>;
1276
+ };
1277
+ export type MutationUpdateValueTypeContentValidationRuleArgs = {
1278
+ input: UpdateValueTypeContentValidationRuleInput;
1279
+ };
1280
+ export type Name = {
1281
+ __typename?: 'Name';
1282
+ first: Scalars['String']['output'];
1283
+ last: Scalars['String']['output'];
1284
+ };
1285
+ export type NumberBetweenContentValidationRuleSettings = {
1286
+ __typename?: 'NumberBetweenContentValidationRuleSettings';
1287
+ max: Scalars['Int']['output'];
1288
+ min: Scalars['Int']['output'];
1289
+ };
1290
+ export type NumberBetweenContentValidationRuleSettingsInput = {
1291
+ max: Scalars['Int']['input'];
1292
+ min: Scalars['Int']['input'];
1293
+ };
1294
+ export type OrderOptionsInput = {
1295
+ direction?: InputMaybe<SortingDirection>;
1296
+ key?: InputMaybe<Scalars['String']['input']>;
1297
+ };
1298
+ export type Organization = {
1299
+ __typename?: 'Organization';
1300
+ createdAt: Scalars['DateTime']['output'];
1301
+ logo?: Maybe<Asset>;
1302
+ logoUrl?: Maybe<Scalars['String']['output']>;
1303
+ name: Scalars['String']['output'];
1304
+ prn: Scalars['PRN']['output'];
1305
+ roles: Array<Role>;
1306
+ seedStatus: SeedStatus;
1307
+ slug: Scalars['String']['output'];
1308
+ updatedAt: Scalars['DateTime']['output'];
1309
+ };
1310
+ export type PageInfo = {
1311
+ __typename?: 'PageInfo';
1312
+ endCursor?: Maybe<Scalars['String']['output']>;
1313
+ hasNextPage: Scalars['Boolean']['output'];
1314
+ hasPreviousPage: Scalars['Boolean']['output'];
1315
+ startCursor?: Maybe<Scalars['String']['output']>;
1316
+ };
1317
+ export type PaginationOptionsInput = {
1318
+ after?: InputMaybe<Scalars['String']['input']>;
1319
+ before?: InputMaybe<Scalars['String']['input']>;
1320
+ first?: InputMaybe<Scalars['Int']['input']>;
1321
+ last?: InputMaybe<Scalars['Int']['input']>;
1322
+ };
1323
+ export type PathPart = {
1324
+ __typename?: 'PathPart';
1325
+ channel: Channel;
1326
+ children: Array<PathPart>;
1327
+ contentExperience?: Maybe<ContentExperience>;
1328
+ createdAt: Scalars['DateTime']['output'];
1329
+ organization?: Maybe<Organization>;
1330
+ parent?: Maybe<PathPart>;
1331
+ path: Scalars['String']['output'];
1332
+ prn: Scalars['PRN']['output'];
1333
+ slug: Scalars['String']['output'];
1334
+ stage: Stage;
1335
+ updatedAt: Scalars['DateTime']['output'];
1336
+ };
1337
+ export type PathPartChildrenArgs = {
1338
+ where?: InputMaybe<Array<PathPartsFilterInput>>;
1339
+ };
1340
+ export type PathPartEdge = {
1341
+ __typename?: 'PathPartEdge';
1342
+ cursor: Scalars['String']['output'];
1343
+ node: PathPart;
1344
+ };
1345
+ export type PathPartsConnection = {
1346
+ __typename?: 'PathPartsConnection';
1347
+ edges: Array<PathPartEdge>;
1348
+ pageInfo: PageInfo;
1349
+ totalCount: Scalars['Int']['output'];
1350
+ };
1351
+ export type PathPartsFilterInput = {
1352
+ _not?: InputMaybe<Array<PathPartsFilterInput>>;
1353
+ createdAt?: InputMaybe<Array<DateFilter>>;
1354
+ prn?: InputMaybe<Array<PrnFilter>>;
1355
+ slug?: InputMaybe<Array<StringFilter>>;
1356
+ updatedAt?: InputMaybe<Array<DateFilter>>;
1357
+ };
1358
+ export type PrnFilter = {
1359
+ _eq?: InputMaybe<Scalars['PRN']['input']>;
1360
+ _in?: InputMaybe<Array<Scalars['PRN']['input']>>;
1361
+ _is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
1362
+ _is_null?: InputMaybe<Scalars['Boolean']['input']>;
1363
+ _neq?: InputMaybe<Scalars['PRN']['input']>;
1364
+ _nin?: InputMaybe<Array<Scalars['PRN']['input']>>;
1365
+ };
1366
+ export type Query = {
1367
+ __typename?: 'Query';
1368
+ apiToken: Array<ApiToken>;
1369
+ apiTokens: Array<ApiToken>;
1370
+ blueprint: Array<Blueprint>;
1371
+ blueprints: BlueprintsConnection;
1372
+ buildingBlock: Array<BuildingBlock>;
1373
+ buildingBlockField: Array<BuildingBlockField>;
1374
+ buildingBlockFieldFulfillment: Array<BuildingBlockFieldFulfillment>;
1375
+ buildingBlockFieldFulfillments: BuildingBlockFieldFulfillmentsConnection;
1376
+ buildingBlockFields: BuildingBlockFieldsConnection;
1377
+ channel: Array<Channel>;
1378
+ channels: ChannelsConnection;
1379
+ contentExperience: Array<ContentExperience>;
1380
+ contentExperienceByPath: Array<ContentExperience>;
1381
+ contentExperiences: ContentExperiencesConnection;
1382
+ contentField: Array<ContentField>;
1383
+ contentFields: ContentFieldsConnection;
1384
+ contentItem: Array<ContentItem>;
1385
+ contentItems: ContentItemsConnection;
1386
+ contentType: Array<ContentType>;
1387
+ contentTypes: ContentTypesConnection;
1388
+ contentValue: Array<ContentValue>;
1389
+ contentValues: ContentValuesConnection;
1390
+ currentSubject: Subject;
1391
+ experienceComponent: Array<ExperienceComponent>;
1392
+ experienceComponents: ExperienceComponentsConnection;
1393
+ grid: Array<Grid>;
1394
+ gridDefinition: Array<GridDefinition>;
1395
+ gridPlacement: Array<GridPlacement>;
1396
+ gridPlacements: GridPlacementsConnection;
1397
+ invitation: Array<Invitation>;
1398
+ invitationsForCurrentSubject: Array<Invitation>;
1399
+ invitationsForOrganization: Array<Invitation>;
1400
+ organization: Array<Organization>;
1401
+ pathPart: Array<PathPart>;
1402
+ pathPartByPath: Array<PathPart>;
1403
+ pathParts: PathPartsConnection;
1404
+ plateMaintainers: Array<Subject>;
1405
+ roleAssignmentsForCurrentSubject: Array<RoleAssignment>;
1406
+ roleAssignmentsForOrganization: Array<RoleAssignment>;
1407
+ theme: Array<Theme>;
1408
+ themes: ThemesConnection;
1409
+ };
1410
+ export type QueryApiTokenArgs = {
1411
+ prn: Array<Scalars['PRN']['input']>;
1412
+ };
1413
+ export type QueryApiTokensArgs = {
1414
+ orderBy?: InputMaybe<OrderOptionsInput>;
1415
+ };
1416
+ export type QueryBlueprintArgs = {
1417
+ prn: Array<Scalars['PRN']['input']>;
1418
+ };
1419
+ export type QueryBlueprintsArgs = {
1420
+ orderBy?: InputMaybe<OrderOptionsInput>;
1421
+ paginate: PaginationOptionsInput;
1422
+ where?: InputMaybe<Array<BlueprintsFilterInput>>;
1423
+ };
1424
+ export type QueryBuildingBlockArgs = {
1425
+ prn: Array<Scalars['PRN']['input']>;
1426
+ };
1427
+ export type QueryBuildingBlockFieldArgs = {
1428
+ prn: Array<Scalars['PRN']['input']>;
1429
+ };
1430
+ export type QueryBuildingBlockFieldFulfillmentArgs = {
1431
+ prn: Array<Scalars['PRN']['input']>;
1432
+ };
1433
+ export type QueryBuildingBlockFieldFulfillmentsArgs = {
1434
+ orderBy?: InputMaybe<OrderOptionsInput>;
1435
+ paginate: PaginationOptionsInput;
1436
+ where?: InputMaybe<Array<BuildingBlockFieldFulfillmentsFilterInput>>;
1437
+ };
1438
+ export type QueryBuildingBlockFieldsArgs = {
1439
+ orderBy?: InputMaybe<OrderOptionsInput>;
1440
+ paginate: PaginationOptionsInput;
1441
+ where?: InputMaybe<Array<BuildingBlockFieldsFilterInput>>;
1442
+ };
1443
+ export type QueryChannelArgs = {
1444
+ prn: Array<Scalars['PRN']['input']>;
1445
+ };
1446
+ export type QueryChannelsArgs = {
1447
+ orderBy?: InputMaybe<OrderOptionsInput>;
1448
+ paginate: PaginationOptionsInput;
1449
+ where?: InputMaybe<Array<ChannelsFilterInput>>;
1450
+ };
1451
+ export type QueryContentExperienceArgs = {
1452
+ prn: Array<Scalars['PRN']['input']>;
1453
+ };
1454
+ export type QueryContentExperienceByPathArgs = {
1455
+ input: Array<FindPathPartByPathInput>;
1456
+ };
1457
+ export type QueryContentExperiencesArgs = {
1458
+ orderBy?: InputMaybe<OrderOptionsInput>;
1459
+ paginate: PaginationOptionsInput;
1460
+ where?: InputMaybe<Array<ContentExperiencesFilterInput>>;
1461
+ };
1462
+ export type QueryContentFieldArgs = {
1463
+ prn: Array<Scalars['PRN']['input']>;
1464
+ };
1465
+ export type QueryContentFieldsArgs = {
1466
+ orderBy?: InputMaybe<OrderOptionsInput>;
1467
+ paginate: PaginationOptionsInput;
1468
+ where?: InputMaybe<Array<ContentFieldsFilterInput>>;
1469
+ };
1470
+ export type QueryContentItemArgs = {
1471
+ prn: Array<Scalars['PRN']['input']>;
1472
+ };
1473
+ export type QueryContentItemsArgs = {
1474
+ orderBy?: InputMaybe<OrderOptionsInput>;
1475
+ paginate: PaginationOptionsInput;
1476
+ where?: InputMaybe<Array<ContentItemsFilterInput>>;
1477
+ };
1478
+ export type QueryContentTypeArgs = {
1479
+ prn: Array<Scalars['PRN']['input']>;
1480
+ };
1481
+ export type QueryContentTypesArgs = {
1482
+ orderBy?: InputMaybe<OrderOptionsInput>;
1483
+ paginate: PaginationOptionsInput;
1484
+ where?: InputMaybe<Array<ContentTypesFilterInput>>;
1485
+ };
1486
+ export type QueryContentValueArgs = {
1487
+ prn: Array<Scalars['PRN']['input']>;
1488
+ };
1489
+ export type QueryContentValuesArgs = {
1490
+ orderBy?: InputMaybe<OrderOptionsInput>;
1491
+ paginate: PaginationOptionsInput;
1492
+ where?: InputMaybe<Array<ContentValuesFilterInput>>;
1493
+ };
1494
+ export type QueryExperienceComponentArgs = {
1495
+ prn: Array<Scalars['PRN']['input']>;
1496
+ };
1497
+ export type QueryExperienceComponentsArgs = {
1498
+ orderBy?: InputMaybe<OrderOptionsInput>;
1499
+ paginate: PaginationOptionsInput;
1500
+ where?: InputMaybe<Array<ExperienceComponentsFilterInput>>;
1501
+ };
1502
+ export type QueryGridArgs = {
1503
+ prn: Array<Scalars['PRN']['input']>;
1504
+ };
1505
+ export type QueryGridDefinitionArgs = {
1506
+ prn: Array<Scalars['PRN']['input']>;
1507
+ };
1508
+ export type QueryGridPlacementArgs = {
1509
+ prn: Array<Scalars['PRN']['input']>;
1510
+ };
1511
+ export type QueryGridPlacementsArgs = {
1512
+ orderBy?: InputMaybe<OrderOptionsInput>;
1513
+ paginate: PaginationOptionsInput;
1514
+ where?: InputMaybe<Array<GridPlacementsFilterInput>>;
1515
+ };
1516
+ export type QueryInvitationArgs = {
1517
+ prn: Array<Scalars['PRN']['input']>;
1518
+ };
1519
+ export type QueryOrganizationArgs = {
1520
+ prn: Array<Scalars['PRN']['input']>;
1521
+ };
1522
+ export type QueryPathPartArgs = {
1523
+ prn: Array<Scalars['PRN']['input']>;
1524
+ };
1525
+ export type QueryPathPartByPathArgs = {
1526
+ input: Array<FindPathPartByPathInput>;
1527
+ };
1528
+ export type QueryPathPartsArgs = {
1529
+ orderBy?: InputMaybe<OrderOptionsInput>;
1530
+ paginate: PaginationOptionsInput;
1531
+ where?: InputMaybe<Array<PathPartsFilterInput>>;
1532
+ };
1533
+ export type QueryThemeArgs = {
1534
+ prn: Array<Scalars['PRN']['input']>;
1535
+ };
1536
+ export type QueryThemesArgs = {
1537
+ orderBy?: InputMaybe<OrderOptionsInput>;
1538
+ paginate: PaginationOptionsInput;
1539
+ where?: InputMaybe<Array<ThemesFilterInput>>;
1540
+ };
1541
+ export type RelatableContentTypesContentValidationRuleSettings = {
1542
+ __typename?: 'RelatableContentTypesContentValidationRuleSettings';
1543
+ allowedContentTypes: Array<Scalars['PRN']['output']>;
1544
+ };
1545
+ export type RelatableContentTypesContentValidationRuleSettingsInput = {
1546
+ allowedContentTypes: Array<Scalars['PRN']['input']>;
1547
+ };
1548
+ export type RemoveBlueprintInput = {
1549
+ prn: Scalars['PRN']['input'];
1550
+ removeBlueprintInstanceMode?: InputMaybe<RemoveBlueprintInstanceMode>;
1551
+ };
1552
+ export declare enum RemoveBlueprintInstanceMode {
1553
+ Disconnect = "DISCONNECT",
1554
+ Remove = "REMOVE"
1555
+ }
1556
+ export type Role = {
1557
+ __typename?: 'Role';
1558
+ createdAt: Scalars['DateTime']['output'];
1559
+ invitations: Array<Invitation>;
1560
+ name: DefaultRoleName;
1561
+ organization: Organization;
1562
+ prn: Scalars['PRN']['output'];
1563
+ roleAssignments: Array<RoleAssignment>;
1564
+ updatedAt: Scalars['DateTime']['output'];
1565
+ };
1566
+ export type RoleAssignment = {
1567
+ __typename?: 'RoleAssignment';
1568
+ createdAt: Scalars['DateTime']['output'];
1569
+ prn: Scalars['PRN']['output'];
1570
+ role: Role;
1571
+ subject: Subject;
1572
+ updatedAt: Scalars['DateTime']['output'];
1573
+ };
1574
+ export declare enum RuleType {
1575
+ AllowedValues = "ALLOWED_VALUES",
1576
+ Count = "COUNT",
1577
+ DateBetween = "DATE_BETWEEN",
1578
+ DecimalCount = "DECIMAL_COUNT",
1579
+ NumberBetween = "NUMBER_BETWEEN",
1580
+ RelatableContentTypes = "RELATABLE_CONTENT_TYPES",
1581
+ StringFormat = "STRING_FORMAT",
1582
+ ValueType = "VALUE_TYPE"
1583
+ }
1584
+ export declare enum SeedStatus {
1585
+ Completed = "COMPLETED",
1586
+ InProgress = "IN_PROGRESS",
1587
+ NotStarted = "NOT_STARTED"
1588
+ }
1589
+ export declare enum SeedType {
1590
+ Hotel = "HOTEL"
1591
+ }
1592
+ export declare enum SortingDirection {
1593
+ Asc = "ASC",
1594
+ Desc = "DESC"
1595
+ }
1596
+ export declare enum Stage {
1597
+ Development = "DEVELOPMENT",
1598
+ Production = "PRODUCTION"
1599
+ }
1600
+ export type StringFilter = {
1601
+ _eq?: InputMaybe<Scalars['String']['input']>;
1602
+ _ilike?: InputMaybe<Scalars['String']['input']>;
1603
+ _in?: InputMaybe<Array<Scalars['String']['input']>>;
1604
+ _is_not_null?: InputMaybe<Scalars['Boolean']['input']>;
1605
+ _is_null?: InputMaybe<Scalars['Boolean']['input']>;
1606
+ _like?: InputMaybe<Scalars['String']['input']>;
1607
+ _neq?: InputMaybe<Scalars['String']['input']>;
1608
+ _nin?: InputMaybe<Array<Scalars['String']['input']>>;
1609
+ };
1610
+ export type StringFormatContentValidationRuleSettings = {
1611
+ __typename?: 'StringFormatContentValidationRuleSettings';
1612
+ allowedFormat: Scalars['String']['output'];
1613
+ };
1614
+ export type StringFormatContentValidationRuleSettingsInput = {
1615
+ allowedFormat: Scalars['String']['input'];
1616
+ };
1617
+ export type Subject = {
1618
+ __typename?: 'Subject';
1619
+ email: Scalars['String']['output'];
1620
+ id: Scalars['String']['output'];
1621
+ isPlateMaintainer: Scalars['Boolean']['output'];
1622
+ language: Scalars['String']['output'];
1623
+ name: Name;
1624
+ roleAssignments: Array<RoleAssignment>;
1625
+ };
1626
+ export type Theme = {
1627
+ __typename?: 'Theme';
1628
+ buildingBlocks: Array<BuildingBlock>;
1629
+ channels: Array<Channel>;
1630
+ createdAt: Scalars['DateTime']['output'];
1631
+ name: Scalars['String']['output'];
1632
+ organization?: Maybe<Organization>;
1633
+ prn: Scalars['PRN']['output'];
1634
+ repositoryUrl: Scalars['String']['output'];
1635
+ updatedAt: Scalars['DateTime']['output'];
1636
+ };
1637
+ export type ThemeBuildingBlocksArgs = {
1638
+ where?: InputMaybe<Array<BuildingBlocksFilterInput>>;
1639
+ };
1640
+ export type ThemeChannelsArgs = {
1641
+ where?: InputMaybe<Array<ChannelsFilterInput>>;
1642
+ };
1643
+ export type ThemeEdge = {
1644
+ __typename?: 'ThemeEdge';
1645
+ cursor: Scalars['String']['output'];
1646
+ node: Theme;
1647
+ };
1648
+ export type ThemesConnection = {
1649
+ __typename?: 'ThemesConnection';
1650
+ edges: Array<ThemeEdge>;
1651
+ pageInfo: PageInfo;
1652
+ totalCount: Scalars['Int']['output'];
1653
+ };
1654
+ export type ThemesFilterInput = {
1655
+ _not?: InputMaybe<Array<ThemesFilterInput>>;
1656
+ createdAt?: InputMaybe<Array<DateFilter>>;
1657
+ name?: InputMaybe<Array<StringFilter>>;
1658
+ prn?: InputMaybe<Array<PrnFilter>>;
1659
+ repositoryUrl?: InputMaybe<Array<StringFilter>>;
1660
+ updatedAt?: InputMaybe<Array<DateFilter>>;
1661
+ };
1662
+ export type UpdateAllowedValuesContentValidationRuleInput = {
1663
+ prn: Scalars['PRN']['input'];
1664
+ settings: AllowedValuesContentValidationRuleSettingsInput;
1665
+ };
1666
+ export type UpdateApiTokenInput = {
1667
+ name: Scalars['String']['input'];
1668
+ prn: Scalars['PRN']['input'];
1669
+ };
1670
+ export type UpdateAssetInput = {
1671
+ fileName?: InputMaybe<Scalars['String']['input']>;
1672
+ prn: Scalars['PRN']['input'];
1673
+ };
1674
+ export type UpdateBlueprintInput = {
1675
+ channel?: InputMaybe<Scalars['PRN']['input']>;
1676
+ name?: InputMaybe<Scalars['String']['input']>;
1677
+ preview?: InputMaybe<Scalars['PRN']['input']>;
1678
+ prn: Scalars['PRN']['input'];
1679
+ };
1680
+ export type UpdateBuildingBlockFieldFulfillmentInput = {
1681
+ contentValue?: InputMaybe<Scalars['PRN']['input']>;
1682
+ next?: InputMaybe<Scalars['PRN']['input']>;
1683
+ prn: Scalars['PRN']['input'];
1684
+ };
1685
+ export type UpdateBuildingBlockFieldInput = {
1686
+ fieldTypes?: InputMaybe<Array<ContentValueTypeNames>>;
1687
+ maxCount?: InputMaybe<Scalars['Int']['input']>;
1688
+ minCount?: InputMaybe<Scalars['Int']['input']>;
1689
+ next?: InputMaybe<Scalars['PRN']['input']>;
1690
+ prn: Scalars['PRN']['input'];
1691
+ slug?: InputMaybe<Scalars['String']['input']>;
1692
+ title?: InputMaybe<Scalars['String']['input']>;
1693
+ };
1694
+ export type UpdateBuildingBlockInput = {
1695
+ next?: InputMaybe<Scalars['PRN']['input']>;
1696
+ preview?: InputMaybe<Scalars['PRN']['input']>;
1697
+ prn: Scalars['PRN']['input'];
1698
+ slug?: InputMaybe<Scalars['String']['input']>;
1699
+ title?: InputMaybe<Scalars['String']['input']>;
1700
+ };
1701
+ export type UpdateChannelInput = {
1702
+ defaultBlueprint?: InputMaybe<Scalars['PRN']['input']>;
1703
+ domain?: InputMaybe<Scalars['String']['input']>;
1704
+ name?: InputMaybe<Scalars['String']['input']>;
1705
+ prn: Scalars['PRN']['input'];
1706
+ slug?: InputMaybe<Scalars['String']['input']>;
1707
+ };
1708
+ export type UpdateContentExperienceInput = {
1709
+ createPathPartFromParent?: InputMaybe<CreatePathPartFromParentInput>;
1710
+ createPathPartFromPath?: InputMaybe<CreatePathPartFromPathInput>;
1711
+ fromBlueprint?: InputMaybe<Scalars['PRN']['input']>;
1712
+ pathPart?: InputMaybe<Scalars['PRN']['input']>;
1713
+ preview?: InputMaybe<Scalars['PRN']['input']>;
1714
+ prn: Scalars['PRN']['input'];
1715
+ slug?: InputMaybe<Scalars['String']['input']>;
1716
+ title?: InputMaybe<Scalars['String']['input']>;
1717
+ };
1718
+ export type UpdateContentFieldInput = {
1719
+ name?: InputMaybe<Scalars['String']['input']>;
1720
+ next?: InputMaybe<Scalars['PRN']['input']>;
1721
+ prn: Scalars['PRN']['input'];
1722
+ };
1723
+ export type UpdateContentItemInput = {
1724
+ contentValuesToConnect?: InputMaybe<Array<ConnectContentValueInput>>;
1725
+ contentValuesToCreate?: InputMaybe<Array<CreateContentValueForContentItemInput>>;
1726
+ isDraft?: InputMaybe<Scalars['Boolean']['input']>;
1727
+ prn: Scalars['PRN']['input'];
1728
+ };
1729
+ export type UpdateContentTypeInput = {
1730
+ displayImageField?: InputMaybe<Scalars['PRN']['input']>;
1731
+ displayNameTemplate?: InputMaybe<Scalars['String']['input']>;
1732
+ name?: InputMaybe<Scalars['String']['input']>;
1733
+ prn: Scalars['PRN']['input'];
1734
+ };
1735
+ export type UpdateContentValueInput = {
1736
+ contentField?: InputMaybe<Scalars['PRN']['input']>;
1737
+ contentItem?: InputMaybe<Scalars['PRN']['input']>;
1738
+ linkedGridPlacement?: InputMaybe<Scalars['PRN']['input']>;
1739
+ linkedPathPart?: InputMaybe<Scalars['PRN']['input']>;
1740
+ next?: InputMaybe<Scalars['PRN']['input']>;
1741
+ primitiveValue?: InputMaybe<Scalars['PrimitiveValue']['input']>;
1742
+ prn: Scalars['PRN']['input'];
1743
+ relatedAsset?: InputMaybe<Scalars['PRN']['input']>;
1744
+ relatedContentItem?: InputMaybe<Scalars['PRN']['input']>;
1745
+ smartText?: InputMaybe<Scalars['CAST']['input']>;
1746
+ };
1747
+ export type UpdateCountContentValidationRuleInput = {
1748
+ prn: Scalars['PRN']['input'];
1749
+ settings: CountContentValidationRuleSettingsInput;
1750
+ };
1751
+ export type UpdateDateBetweenContentValidationRuleInput = {
1752
+ prn: Scalars['PRN']['input'];
1753
+ settings: DateBetweenContentValidationRuleSettingsInput;
1754
+ };
1755
+ export type UpdateDecimalCountContentValidationRuleInput = {
1756
+ prn: Scalars['PRN']['input'];
1757
+ settings: DecimalCountContentValidationRuleSettingsInput;
1758
+ };
1759
+ export type UpdateExperienceComponentInput = {
1760
+ buildingBlock?: InputMaybe<Scalars['PRN']['input']>;
1761
+ isDraft?: InputMaybe<Scalars['Boolean']['input']>;
1762
+ name?: InputMaybe<Scalars['String']['input']>;
1763
+ preview?: InputMaybe<Scalars['PRN']['input']>;
1764
+ prn: Scalars['PRN']['input'];
1765
+ };
1766
+ export type UpdateGridDefinitionInput = {
1767
+ maxRows?: InputMaybe<Scalars['Int']['input']>;
1768
+ prn: Scalars['PRN']['input'];
1769
+ };
1770
+ export type UpdateGridInput = {
1771
+ prn: Scalars['PRN']['input'];
1772
+ rows?: InputMaybe<Scalars['Int']['input']>;
1773
+ };
1774
+ export type UpdateGridPlacementInput = {
1775
+ prn: Scalars['PRN']['input'];
1776
+ row?: InputMaybe<Scalars['Int']['input']>;
1777
+ };
1778
+ export type UpdateNumberBetweenContentValidationRuleInput = {
1779
+ prn: Scalars['PRN']['input'];
1780
+ settings: NumberBetweenContentValidationRuleSettingsInput;
1781
+ };
1782
+ export type UpdateOrganizationInput = {
1783
+ logo?: InputMaybe<Scalars['PRN']['input']>;
1784
+ logoUrl?: InputMaybe<Scalars['String']['input']>;
1785
+ name?: InputMaybe<Scalars['String']['input']>;
1786
+ prn: Scalars['PRN']['input'];
1787
+ slug?: InputMaybe<Scalars['String']['input']>;
1788
+ };
1789
+ export type UpdatePathPartByPathInput = {
1790
+ path: Scalars['String']['input'];
1791
+ prn: Scalars['PRN']['input'];
1792
+ };
1793
+ export type UpdatePathPartInput = {
1794
+ parent?: InputMaybe<Scalars['String']['input']>;
1795
+ prn: Scalars['PRN']['input'];
1796
+ slug?: InputMaybe<Scalars['String']['input']>;
1797
+ };
1798
+ export type UpdateRelatableContentTypesContentValidationRuleInput = {
1799
+ prn: Scalars['PRN']['input'];
1800
+ settings: RelatableContentTypesContentValidationRuleSettingsInput;
1801
+ };
1802
+ export type UpdateStringFormatContentValidationRuleInput = {
1803
+ prn: Scalars['PRN']['input'];
1804
+ settings: StringFormatContentValidationRuleSettingsInput;
1805
+ };
1806
+ export type UpdateThemeInput = {
1807
+ name?: InputMaybe<Scalars['String']['input']>;
1808
+ prn: Scalars['PRN']['input'];
1809
+ repositoryUrl?: InputMaybe<Scalars['String']['input']>;
1810
+ };
1811
+ export type UpdateValueTypeContentValidationRuleInput = {
1812
+ prn: Scalars['PRN']['input'];
1813
+ settings: ValueTypeContentValidationRuleSettingsInput;
1814
+ };
1815
+ export type ValueTypeContentValidationRuleSettings = {
1816
+ __typename?: 'ValueTypeContentValidationRuleSettings';
1817
+ allowedTypes: Array<ContentValueTypeNames>;
1818
+ };
1819
+ export type ValueTypeContentValidationRuleSettingsInput = {
1820
+ allowedTypes: Array<ContentValueTypeNames>;
1821
+ };