@twotaps/site-utils-base 0.0.1

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.
@@ -0,0 +1,1313 @@
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
+ /** All built-in and custom scalars, mapped to their actual values */
15
+ export type Scalars = {
16
+ ID: string;
17
+ String: string;
18
+ Boolean: boolean;
19
+ Int: number;
20
+ Float: number;
21
+ JSON: any;
22
+ JSONObject: any;
23
+ };
24
+ export declare enum AssetType {
25
+ Archive = "Archive",
26
+ Document = "Document",
27
+ Folder = "Folder",
28
+ Html = "Html",
29
+ Image = "Image",
30
+ Video = "Video"
31
+ }
32
+ export declare enum AssetTypeCs {
33
+ Archive = "Archive",
34
+ Document = "Document",
35
+ Folder = "Folder",
36
+ Html = "Html",
37
+ Image = "Image",
38
+ Video = "Video"
39
+ }
40
+ export declare enum BotProtectionType {
41
+ None = "none",
42
+ ReCaptchaV2 = "reCAPTCHA_v2",
43
+ ReCaptchaV2Invisible = "reCAPTCHA_v2_Invisible",
44
+ ReCaptchaV3 = "reCAPTCHA_v3"
45
+ }
46
+ export type CreateAssetInput = {
47
+ accessLevel?: InputMaybe<Scalars['String']>;
48
+ altText?: InputMaybe<Scalars['String']>;
49
+ fileName: Scalars['String'];
50
+ height?: InputMaybe<Scalars['Float']>;
51
+ isAssociated: Scalars['Boolean'];
52
+ sizeInBytes?: InputMaybe<Scalars['Float']>;
53
+ type: AssetType;
54
+ width?: InputMaybe<Scalars['Float']>;
55
+ };
56
+ export type CreateBrandDto = {
57
+ name: Scalars['String'];
58
+ organisationId: Scalars['Int'];
59
+ };
60
+ export type CreateDomainDto = {
61
+ brandId: Scalars['Int'];
62
+ domainName: Scalars['String'];
63
+ siteId: Scalars['Int'];
64
+ };
65
+ export type CreateFormFieldInputDto = {
66
+ config?: InputMaybe<FormFieldConfigInput>;
67
+ fieldIdentifier?: InputMaybe<Scalars['String']>;
68
+ formId: Scalars['Int'];
69
+ helpText?: InputMaybe<Scalars['String']>;
70
+ isRequired?: InputMaybe<Scalars['Boolean']>;
71
+ label?: InputMaybe<Scalars['String']>;
72
+ name: Scalars['String'];
73
+ placeholder: Scalars['String'];
74
+ sortOrder?: InputMaybe<Scalars['Int']>;
75
+ type: FormFieldType;
76
+ };
77
+ export type CreateFormInputDto = {
78
+ botProtection: BotProtectionType;
79
+ enableRecaptcha?: InputMaybe<Scalars['Boolean']>;
80
+ formIdentifier?: InputMaybe<Scalars['String']>;
81
+ name: Scalars['String'];
82
+ siteId: Scalars['Int'];
83
+ submitButtonLabel: Scalars['String'];
84
+ thankYouMessage: Scalars['String'];
85
+ };
86
+ export type CreateFormIntegrationActionDto = {
87
+ dependOnId?: InputMaybe<Scalars['Int']>;
88
+ formIntegrationId: Scalars['Int'];
89
+ integrationId: Scalars['Int'];
90
+ specification: Scalars['JSONObject'];
91
+ };
92
+ export type CreateFormIntegrationActionLogDto = {
93
+ formIntegrationActionId: Scalars['Int'];
94
+ isSuccess: Scalars['Boolean'];
95
+ requestData?: InputMaybe<Scalars['String']>;
96
+ response: Scalars['String'];
97
+ submissionId: Scalars['Int'];
98
+ };
99
+ export type CreateFormIntegrationInputDto = {
100
+ formId: Scalars['Int'];
101
+ pageId?: InputMaybe<Scalars['Int']>;
102
+ };
103
+ export type CreateFormSubmissionInputDto = {
104
+ actionLogs?: InputMaybe<Array<FormSubmissionIntegrationActionLogEntityInputDto>>;
105
+ domain: Scalars['String'];
106
+ formId: Scalars['Int'];
107
+ token?: InputMaybe<Scalars['String']>;
108
+ url: Scalars['String'];
109
+ value: Scalars['JSONObject'];
110
+ };
111
+ export type CreateIntegrationInputDto = {
112
+ name: Scalars['String'];
113
+ organisationId?: InputMaybe<Scalars['Int']>;
114
+ specification?: InputMaybe<Scalars['JSONObject']>;
115
+ type: IntegrationType;
116
+ };
117
+ export type CreateOrganisationDto = {
118
+ name: Scalars['String'];
119
+ };
120
+ export type CreatePageDto = {
121
+ allowCrawling?: InputMaybe<Scalars['Boolean']>;
122
+ customScriptBody?: InputMaybe<Scalars['String']>;
123
+ customScriptHead?: InputMaybe<Scalars['String']>;
124
+ draftRevisionId?: InputMaybe<Scalars['Int']>;
125
+ lang?: InputMaybe<Scalars['String']>;
126
+ metaDescription: Scalars['String'];
127
+ metaTitle: Scalars['String'];
128
+ name: Scalars['String'];
129
+ parentId?: InputMaybe<Scalars['Int']>;
130
+ properties?: InputMaybe<Array<CustomPagePropertiesInput>>;
131
+ publishedRevisionId?: InputMaybe<Scalars['Int']>;
132
+ siteId: Scalars['Int'];
133
+ tags?: InputMaybe<Scalars['String']>;
134
+ templateId?: InputMaybe<Scalars['Int']>;
135
+ ttschemaId?: InputMaybe<Scalars['Int']>;
136
+ urlSegment: Scalars['String'];
137
+ };
138
+ export type CreatePageRevisionInput = {
139
+ pageId?: InputMaybe<Scalars['Int']>;
140
+ publish: Scalars['Boolean'];
141
+ references?: InputMaybe<Scalars['JSON']>;
142
+ schemas?: InputMaybe<Array<PageRevisionSchemaInput>>;
143
+ templateId?: InputMaybe<Scalars['Int']>;
144
+ type: PageRevisionType;
145
+ };
146
+ export type CreatePageRevisionSchemaInput = {
147
+ anchorId?: InputMaybe<Scalars['String']>;
148
+ properties: Array<PageRevisionSchemaPropertiesInput>;
149
+ revisionId: Scalars['Int'];
150
+ sortOrder: Scalars['Int'];
151
+ ttschemaId: Scalars['Int'];
152
+ };
153
+ export type CreateSiteDto = {
154
+ brandId: Scalars['Int'];
155
+ customScriptBody: Scalars['String'];
156
+ customScriptHead: Scalars['String'];
157
+ name: Scalars['String'];
158
+ thumbnailImageUrl?: InputMaybe<Scalars['String']>;
159
+ ttSchemaWrapperId: Scalars['Int'];
160
+ };
161
+ export type CreateTtSchemaFieldDto = {
162
+ description?: InputMaybe<Scalars['String']>;
163
+ displayName: Scalars['String'];
164
+ hasMultipleValues?: InputMaybe<Scalars['Boolean']>;
165
+ helpText?: InputMaybe<Scalars['String']>;
166
+ name: Scalars['String'];
167
+ readOnly?: InputMaybe<Scalars['Boolean']>;
168
+ required?: InputMaybe<Scalars['Boolean']>;
169
+ sortOrder: Scalars['Int'];
170
+ ttschemaId: Scalars['Int'];
171
+ type: TtSchemaFieldType;
172
+ typeDefinition: TypeDefinition;
173
+ };
174
+ export type CreateTtSchemaInput = {
175
+ name: Scalars['String'];
176
+ titlePlural: Scalars['String'];
177
+ titleSingular: Scalars['String'];
178
+ ttschemaWrapperId: Scalars['Int'];
179
+ type: TtSchemaType;
180
+ };
181
+ export type CreateTemplateInput = {
182
+ name: Scalars['String'];
183
+ pageTypeId?: InputMaybe<Scalars['Int']>;
184
+ siteId: Scalars['Int'];
185
+ type: TemplateType;
186
+ };
187
+ export type CreateUserInput = {
188
+ email: Scalars['String'];
189
+ firstName: Scalars['String'];
190
+ lastName: Scalars['String'];
191
+ password: Scalars['String'];
192
+ verified: Scalars['Boolean'];
193
+ };
194
+ export type CreateUserResourceDto = {
195
+ resourceId: Scalars['Int'];
196
+ resourceIdentifier: Scalars['String'];
197
+ roleId: Scalars['Int'];
198
+ userId: Scalars['Int'];
199
+ };
200
+ export type CustomPagePropertiesInput = {
201
+ fieldId: Scalars['Int'];
202
+ name: Scalars['String'];
203
+ value: Array<Scalars['String']>;
204
+ };
205
+ export declare enum ErrorTemplateType {
206
+ Error404 = "Error404",
207
+ Error500 = "Error500"
208
+ }
209
+ export type FormEntityInput = {
210
+ botProtection: BotProtectionType;
211
+ enableRecaptcha?: InputMaybe<Scalars['Boolean']>;
212
+ formIdentifier?: InputMaybe<Scalars['String']>;
213
+ id: Scalars['Int'];
214
+ name: Scalars['String'];
215
+ siteId: Scalars['Int'];
216
+ submitButtonLabel: Scalars['String'];
217
+ thankYouMessage: Scalars['String'];
218
+ };
219
+ export type FormFieldConfigInput = {
220
+ customCss?: InputMaybe<Scalars['String']>;
221
+ defaultValue?: InputMaybe<Scalars['JSON']>;
222
+ info?: InputMaybe<Scalars['String']>;
223
+ options?: InputMaybe<Array<KeyValueInput>>;
224
+ validation?: InputMaybe<FormFieldValidationConfigInput>;
225
+ };
226
+ export declare enum FormFieldConstraintType {
227
+ Required = "REQUIRED",
228
+ StringEmail = "STRING_EMAIL",
229
+ StringLength = "STRING_LENGTH",
230
+ StringMatch = "STRING_MATCH",
231
+ StringMaximumLength = "STRING_MAXIMUM_LENGTH",
232
+ StringMinimumLength = "STRING_MINIMUM_LENGTH"
233
+ }
234
+ export type FormFieldEntityInput = {
235
+ config?: InputMaybe<FormFieldConfigInput>;
236
+ fieldIdentifier?: InputMaybe<Scalars['String']>;
237
+ helpText?: InputMaybe<Scalars['String']>;
238
+ id: Scalars['Int'];
239
+ isRequired?: InputMaybe<Scalars['Boolean']>;
240
+ label?: InputMaybe<Scalars['String']>;
241
+ name: Scalars['String'];
242
+ placeholder: Scalars['String'];
243
+ sortOrder?: InputMaybe<Scalars['Int']>;
244
+ type: FormFieldType;
245
+ };
246
+ export declare enum FormFieldType {
247
+ Consent = "Consent",
248
+ Hidden = "Hidden",
249
+ Info = "Info",
250
+ Select = "Select",
251
+ Text = "Text",
252
+ Textarea = "Textarea"
253
+ }
254
+ export type FormFieldValidationConfigInput = {
255
+ constraints: Array<FormFieldValidationConstraintInput>;
256
+ };
257
+ export type FormFieldValidationConstraintInput = {
258
+ id: Scalars['String'];
259
+ message: Scalars['String'];
260
+ props: Scalars['JSON'];
261
+ type: FormFieldConstraintType;
262
+ };
263
+ export type FormIntegrationActionInputEntity = {
264
+ formIntegration?: InputMaybe<FormIntegrationInputEntityDto>;
265
+ id: Scalars['Int'];
266
+ integration?: InputMaybe<IntegrationInput>;
267
+ specification: Scalars['JSONObject'];
268
+ };
269
+ export type FormIntegrationActionLogInputEntity = {
270
+ formIntegrationAction?: InputMaybe<FormIntegrationActionInputEntity>;
271
+ id: Scalars['Int'];
272
+ isSuccess: Scalars['Boolean'];
273
+ requestData?: InputMaybe<Scalars['String']>;
274
+ response: Scalars['String'];
275
+ submission?: InputMaybe<FormSubmissionEntityInput>;
276
+ };
277
+ export type FormIntegrationInputEntityDto = {
278
+ actions?: InputMaybe<Array<FormIntegrationActionInputEntity>>;
279
+ formId: Scalars['Int'];
280
+ id: Scalars['Int'];
281
+ pageId?: InputMaybe<Scalars['Int']>;
282
+ };
283
+ export type FormSubmissionEntityInput = {
284
+ actionLogs?: InputMaybe<Array<FormSubmissionIntegrationActionLogEntityInputDto>>;
285
+ createdAt: Scalars['String'];
286
+ id: Scalars['Int'];
287
+ redirectURL?: InputMaybe<Scalars['String']>;
288
+ value: Scalars['JSONObject'];
289
+ };
290
+ export type FormSubmissionIntegrationActionLogEntityInputDto = {
291
+ integration?: InputMaybe<FormSubmissionIntegrationEntityInputDto>;
292
+ isSuccess: Scalars['Boolean'];
293
+ requestData?: InputMaybe<Scalars['String']>;
294
+ response: Scalars['String'];
295
+ };
296
+ export type FormSubmissionIntegrationEntityInputDto = {
297
+ name: Scalars['String'];
298
+ };
299
+ export declare enum GlofoxForm {
300
+ Join = "Join",
301
+ Tour = "Tour",
302
+ Trial = "Trial"
303
+ }
304
+ export type GlofoxFormLeadsPaginationParams = {
305
+ conditions?: InputMaybe<Scalars['JSONObject']>;
306
+ count?: InputMaybe<Scalars['Int']>;
307
+ form: GlofoxForm;
308
+ limit?: InputMaybe<Scalars['Int']>;
309
+ offset?: InputMaybe<Scalars['Int']>;
310
+ query?: InputMaybe<Scalars['String']>;
311
+ };
312
+ export type IntegrationDeleteArgs = {
313
+ id: Scalars['Int'];
314
+ };
315
+ export type IntegrationInput = {
316
+ id: Scalars['Int'];
317
+ name: Scalars['String'];
318
+ organisationId?: InputMaybe<Scalars['Int']>;
319
+ specification?: InputMaybe<Scalars['JSONObject']>;
320
+ type: IntegrationType;
321
+ };
322
+ export declare enum IntegrationType {
323
+ Clubwise = "Clubwise",
324
+ GymSales = "GymSales",
325
+ RecaptchaV3 = "RecaptchaV3",
326
+ Sendgrid = "Sendgrid"
327
+ }
328
+ export type KeyValueInput = {
329
+ id: Scalars['String'];
330
+ key: Scalars['String'];
331
+ value: Scalars['String'];
332
+ };
333
+ export declare enum PageOrder {
334
+ CreatedAt = "CREATED_AT",
335
+ Name = "NAME"
336
+ }
337
+ export declare enum PageOrderDirection {
338
+ Ascending = "ASCENDING",
339
+ Descending = "DESCENDING"
340
+ }
341
+ export type PageRevisionSchemaInput = {
342
+ anchorId?: InputMaybe<Scalars['String']>;
343
+ properties: Array<PageRevisionSchemaPropertiesInput>;
344
+ sortOrder: Scalars['Int'];
345
+ templateId?: InputMaybe<Scalars['Int']>;
346
+ ttschemaId?: InputMaybe<Scalars['Int']>;
347
+ };
348
+ export type PageRevisionSchemaPropertiesInput = {
349
+ dynamicReference?: InputMaybe<Scalars['String']>;
350
+ fieldId: Scalars['Int'];
351
+ isDynamic?: InputMaybe<Scalars['Boolean']>;
352
+ name: Scalars['String'];
353
+ value: Scalars['JSON'];
354
+ };
355
+ export declare enum PageRevisionType {
356
+ CustomFields = "CustomFields",
357
+ Page = "Page",
358
+ Template = "Template"
359
+ }
360
+ export declare enum RedirectType {
361
+ Permanent = "Permanent",
362
+ Temporary = "Temporary"
363
+ }
364
+ export declare enum RefreshTokenStatus {
365
+ Expired = "EXPIRED",
366
+ Ok = "OK"
367
+ }
368
+ export type ResetPasswordInputDto = {
369
+ password: Scalars['String'];
370
+ };
371
+ export declare enum TtSchemaFieldType {
372
+ Component = "Component",
373
+ Datetime = "Datetime",
374
+ Form = "Form",
375
+ GmbLocation = "GmbLocation",
376
+ Image = "Image",
377
+ Link = "Link",
378
+ RichText = "RichText",
379
+ Schema = "Schema",
380
+ Text = "Text",
381
+ TextArea = "TextArea",
382
+ TextSelect = "TextSelect"
383
+ }
384
+ export declare enum TtSchemaType {
385
+ Block = "Block",
386
+ Component = "Component",
387
+ Object = "Object",
388
+ Page = "Page",
389
+ Schema = "Schema"
390
+ }
391
+ export type TtSchemaWrapperInput = {
392
+ name: Scalars['String'];
393
+ organisationId: Scalars['Int'];
394
+ };
395
+ export declare enum TemplateType {
396
+ Campaign = "Campaign",
397
+ FixedPageLayout = "FixedPageLayout",
398
+ SiteWideBlock = "SiteWideBlock",
399
+ StarterPageLayout = "StarterPageLayout"
400
+ }
401
+ export type TypeDefinition = {
402
+ assetType?: InputMaybe<AssetTypeCs>;
403
+ maxLength?: InputMaybe<Scalars['Int']>;
404
+ regexValidation?: InputMaybe<Scalars['String']>;
405
+ rows?: InputMaybe<Scalars['Int']>;
406
+ };
407
+ export type UpdateFormFieldInputDto = {
408
+ config?: InputMaybe<FormFieldConfigInput>;
409
+ fieldIdentifier?: InputMaybe<Scalars['String']>;
410
+ helpText?: InputMaybe<Scalars['String']>;
411
+ id: Scalars['Int'];
412
+ isRequired?: InputMaybe<Scalars['Boolean']>;
413
+ label?: InputMaybe<Scalars['String']>;
414
+ name: Scalars['String'];
415
+ placeholder: Scalars['String'];
416
+ siteId: Scalars['Int'];
417
+ sortOrder?: InputMaybe<Scalars['Int']>;
418
+ type: FormFieldType;
419
+ };
420
+ export type UpdateFormFieldSortOrder = {
421
+ siteId: Scalars['Int'];
422
+ sortOrders: Scalars['JSONObject'];
423
+ };
424
+ export type UpdateFormInput = {
425
+ botProtection: BotProtectionType;
426
+ enableRecaptcha?: InputMaybe<Scalars['Boolean']>;
427
+ formIdentifier?: InputMaybe<Scalars['String']>;
428
+ id: Scalars['Int'];
429
+ name: Scalars['String'];
430
+ siteId: Scalars['Int'];
431
+ submitButtonLabel: Scalars['String'];
432
+ thankYouMessage: Scalars['String'];
433
+ };
434
+ export type UpdateFormIntegrationAction = {
435
+ id: Scalars['Int'];
436
+ integration?: InputMaybe<UpdateIntegrationDto>;
437
+ siteId?: InputMaybe<Scalars['Int']>;
438
+ specification?: InputMaybe<Scalars['JSONObject']>;
439
+ };
440
+ export type UpdateIntegrationDto = {
441
+ id: Scalars['Int'];
442
+ name?: InputMaybe<Scalars['String']>;
443
+ organisationId?: InputMaybe<Scalars['Int']>;
444
+ specification?: InputMaybe<Scalars['JSONObject']>;
445
+ type?: InputMaybe<IntegrationType>;
446
+ };
447
+ export type UpdatePageDto = {
448
+ allowCrawling?: InputMaybe<Scalars['Boolean']>;
449
+ customScriptBody?: InputMaybe<Scalars['String']>;
450
+ customScriptHead?: InputMaybe<Scalars['String']>;
451
+ draftRevisionId?: InputMaybe<Scalars['Int']>;
452
+ id: Scalars['Int'];
453
+ lang?: InputMaybe<Scalars['String']>;
454
+ metaDescription: Scalars['String'];
455
+ metaTitle: Scalars['String'];
456
+ name: Scalars['String'];
457
+ parentId?: InputMaybe<Scalars['Int']>;
458
+ properties?: InputMaybe<Array<CustomPagePropertiesInput>>;
459
+ publishedRevisionId?: InputMaybe<Scalars['Int']>;
460
+ siteId?: InputMaybe<Scalars['Int']>;
461
+ tags?: InputMaybe<Scalars['String']>;
462
+ templateId?: InputMaybe<Scalars['Int']>;
463
+ ttschemaId?: InputMaybe<Scalars['Int']>;
464
+ urlSegment: Scalars['String'];
465
+ };
466
+ export type UpdateUserInputDto = {
467
+ firstName: Scalars['String'];
468
+ lastName: Scalars['String'];
469
+ password: Scalars['String'];
470
+ };
471
+ export type UpdateUserResourceDto = {
472
+ id: Scalars['Int'];
473
+ resourceId: Scalars['Int'];
474
+ resourceIdentifier: Scalars['String'];
475
+ roleId: Scalars['Int'];
476
+ userId: Scalars['Int'];
477
+ };
478
+ export declare enum UserVerificationTokenType {
479
+ NewUser = "NEW_USER",
480
+ PasswordReset = "PASSWORD_RESET"
481
+ }
482
+ export type ValidationInputDto = {
483
+ object: Scalars['JSON'];
484
+ typeName: Scalars['String'];
485
+ };
486
+ export type FormQueryVariables = Exact<{
487
+ id: Scalars['Int'];
488
+ }>;
489
+ export type FormQuery = {
490
+ __typename?: 'Query';
491
+ form: {
492
+ __typename?: 'FormEntity';
493
+ id: number;
494
+ name: string;
495
+ submitButtonLabel: string;
496
+ thankYouMessage: string;
497
+ recaptchaSiteToken?: string | null;
498
+ enableRecaptcha: boolean;
499
+ botProtection: BotProtectionType;
500
+ fields: Array<{
501
+ __typename?: 'FormFieldEntity';
502
+ id: number;
503
+ name: string;
504
+ isRequired?: boolean | null;
505
+ label?: string | null;
506
+ placeholder: string;
507
+ type: FormFieldType;
508
+ config?: {
509
+ __typename?: 'FormFieldConfig';
510
+ customCss?: string | null;
511
+ info?: string | null;
512
+ defaultValue?: any | null;
513
+ validation?: {
514
+ __typename?: 'FormFieldValidationConfig';
515
+ constraints: Array<{
516
+ __typename?: 'FormFieldValidationConstraint';
517
+ id: string;
518
+ type: FormFieldConstraintType;
519
+ props: any;
520
+ message: string;
521
+ }>;
522
+ } | null;
523
+ options?: Array<{
524
+ __typename?: 'KeyValue';
525
+ id: string;
526
+ key: string;
527
+ value: string;
528
+ }> | null;
529
+ } | null;
530
+ }>;
531
+ };
532
+ };
533
+ export type FormSubmissionMutationVariables = Exact<{
534
+ submission: CreateFormSubmissionInputDto;
535
+ }>;
536
+ export type FormSubmissionMutation = {
537
+ __typename?: 'Mutation';
538
+ createSubmission: {
539
+ __typename?: 'FormSubmissionEntity';
540
+ id: number;
541
+ redirectURL?: string | null;
542
+ };
543
+ };
544
+ export type DynamicPageFilteringQueryVariables = Exact<{
545
+ latitude?: InputMaybe<Scalars['Float']>;
546
+ longitude?: InputMaybe<Scalars['Float']>;
547
+ pageType: Scalars['String'];
548
+ domain: Scalars['String'];
549
+ limitPageId?: InputMaybe<Array<InputMaybe<Scalars['Int']>> | InputMaybe<Scalars['Int']>>;
550
+ query?: InputMaybe<Scalars['String']>;
551
+ radius?: InputMaybe<Scalars['Float']>;
552
+ limit?: InputMaybe<Scalars['Int']>;
553
+ offset?: InputMaybe<Scalars['Int']>;
554
+ filters?: InputMaybe<Scalars['JSONObject']>;
555
+ fields?: InputMaybe<Array<InputMaybe<Scalars['String']>> | InputMaybe<Scalars['String']>>;
556
+ }>;
557
+ export type DynamicPageFilteringQuery = {
558
+ __typename?: 'Query';
559
+ publicListPages: {
560
+ __typename?: 'PaginatedPublicPageDto';
561
+ total: number;
562
+ items: Array<{
563
+ __typename?: 'PublicPageEntityDto';
564
+ id?: number | null;
565
+ name?: string | null;
566
+ metaTitle?: string | null;
567
+ metaDescription?: string | null;
568
+ allowCrawling?: boolean | null;
569
+ customProperties: any;
570
+ urlPath?: string | null;
571
+ }>;
572
+ };
573
+ };
574
+ export type RevisionSchemaFragmentFragment = {
575
+ __typename?: 'PageRevisionSchemaEntityDto';
576
+ id: number;
577
+ sortOrder: number;
578
+ anchorId?: string | null;
579
+ properties?: Array<{
580
+ __typename?: 'PageRevisionSchemaProperties';
581
+ fieldId: number;
582
+ name: string;
583
+ value: any;
584
+ }> | null;
585
+ ttschema?: {
586
+ __typename?: 'TTSchemaEntityDto';
587
+ id: number;
588
+ name: string;
589
+ titlePlural: string;
590
+ titleSingular: string;
591
+ fields: Array<{
592
+ __typename?: 'TTSchemaFieldEntityDto';
593
+ id: number;
594
+ name: string;
595
+ type: TtSchemaFieldType;
596
+ hasMultipleValues: boolean;
597
+ typeTTSchema?: {
598
+ __typename?: 'TTSchemaEntityDto';
599
+ id: number;
600
+ } | null;
601
+ }>;
602
+ subSchemas: Array<{
603
+ __typename?: 'TTSchemaEntityDto';
604
+ id: number;
605
+ name: string;
606
+ titlePlural: string;
607
+ titleSingular: string;
608
+ fields: Array<{
609
+ __typename?: 'TTSchemaFieldEntityDto';
610
+ id: number;
611
+ name: string;
612
+ type: TtSchemaFieldType;
613
+ hasMultipleValues: boolean;
614
+ typeTTSchema?: {
615
+ __typename?: 'TTSchemaEntityDto';
616
+ id: number;
617
+ } | null;
618
+ }>;
619
+ }>;
620
+ } | null;
621
+ };
622
+ export type RevisionFragmentFragment = {
623
+ __typename?: 'PageRevisionEntityDto';
624
+ id: number;
625
+ schema: Array<{
626
+ __typename?: 'PageRevisionSchemaEntityDto';
627
+ id: number;
628
+ sortOrder: number;
629
+ anchorId?: string | null;
630
+ template?: {
631
+ __typename?: 'TemplateEntityDto';
632
+ id: number;
633
+ name: string;
634
+ publishedRevision?: {
635
+ __typename?: 'PageRevisionEntityDto';
636
+ id: number;
637
+ schema: Array<{
638
+ __typename?: 'PageRevisionSchemaEntityDto';
639
+ id: number;
640
+ sortOrder: number;
641
+ anchorId?: string | null;
642
+ properties?: Array<{
643
+ __typename?: 'PageRevisionSchemaProperties';
644
+ fieldId: number;
645
+ name: string;
646
+ value: any;
647
+ }> | null;
648
+ ttschema?: {
649
+ __typename?: 'TTSchemaEntityDto';
650
+ id: number;
651
+ name: string;
652
+ titlePlural: string;
653
+ titleSingular: string;
654
+ fields: Array<{
655
+ __typename?: 'TTSchemaFieldEntityDto';
656
+ id: number;
657
+ name: string;
658
+ type: TtSchemaFieldType;
659
+ hasMultipleValues: boolean;
660
+ typeTTSchema?: {
661
+ __typename?: 'TTSchemaEntityDto';
662
+ id: number;
663
+ } | null;
664
+ }>;
665
+ subSchemas: Array<{
666
+ __typename?: 'TTSchemaEntityDto';
667
+ id: number;
668
+ name: string;
669
+ titlePlural: string;
670
+ titleSingular: string;
671
+ fields: Array<{
672
+ __typename?: 'TTSchemaFieldEntityDto';
673
+ id: number;
674
+ name: string;
675
+ type: TtSchemaFieldType;
676
+ hasMultipleValues: boolean;
677
+ typeTTSchema?: {
678
+ __typename?: 'TTSchemaEntityDto';
679
+ id: number;
680
+ } | null;
681
+ }>;
682
+ }>;
683
+ } | null;
684
+ }>;
685
+ } | null;
686
+ } | null;
687
+ properties?: Array<{
688
+ __typename?: 'PageRevisionSchemaProperties';
689
+ fieldId: number;
690
+ name: string;
691
+ value: any;
692
+ }> | null;
693
+ ttschema?: {
694
+ __typename?: 'TTSchemaEntityDto';
695
+ id: number;
696
+ name: string;
697
+ titlePlural: string;
698
+ titleSingular: string;
699
+ fields: Array<{
700
+ __typename?: 'TTSchemaFieldEntityDto';
701
+ id: number;
702
+ name: string;
703
+ type: TtSchemaFieldType;
704
+ hasMultipleValues: boolean;
705
+ typeTTSchema?: {
706
+ __typename?: 'TTSchemaEntityDto';
707
+ id: number;
708
+ } | null;
709
+ }>;
710
+ subSchemas: Array<{
711
+ __typename?: 'TTSchemaEntityDto';
712
+ id: number;
713
+ name: string;
714
+ titlePlural: string;
715
+ titleSingular: string;
716
+ fields: Array<{
717
+ __typename?: 'TTSchemaFieldEntityDto';
718
+ id: number;
719
+ name: string;
720
+ type: TtSchemaFieldType;
721
+ hasMultipleValues: boolean;
722
+ typeTTSchema?: {
723
+ __typename?: 'TTSchemaEntityDto';
724
+ id: number;
725
+ } | null;
726
+ }>;
727
+ }>;
728
+ } | null;
729
+ }>;
730
+ };
731
+ export type PageFragmentFragment = {
732
+ __typename?: 'PageEntityDto';
733
+ id: number;
734
+ name: string;
735
+ urlSegment: string;
736
+ metaTitle?: string | null;
737
+ metaDescription?: string | null;
738
+ allowCrawling?: boolean | null;
739
+ lang: string;
740
+ brandId: number;
741
+ sitePath?: string | null;
742
+ site: {
743
+ __typename?: 'SiteEntityDto';
744
+ id: number;
745
+ customScriptHead: string;
746
+ customScriptBody: string;
747
+ };
748
+ };
749
+ export type PageQueryVariables = Exact<{
750
+ slug?: InputMaybe<Scalars['String']>;
751
+ domain: Scalars['String'];
752
+ }>;
753
+ export type PageQuery = {
754
+ __typename?: 'Query';
755
+ page: {
756
+ __typename?: 'PageEntityDto';
757
+ id: number;
758
+ name: string;
759
+ urlSegment: string;
760
+ metaTitle?: string | null;
761
+ metaDescription?: string | null;
762
+ allowCrawling?: boolean | null;
763
+ lang: string;
764
+ brandId: number;
765
+ sitePath?: string | null;
766
+ publishedRevision?: {
767
+ __typename?: 'PageRevisionEntityDto';
768
+ id: number;
769
+ schema: Array<{
770
+ __typename?: 'PageRevisionSchemaEntityDto';
771
+ id: number;
772
+ sortOrder: number;
773
+ anchorId?: string | null;
774
+ template?: {
775
+ __typename?: 'TemplateEntityDto';
776
+ id: number;
777
+ name: string;
778
+ publishedRevision?: {
779
+ __typename?: 'PageRevisionEntityDto';
780
+ id: number;
781
+ schema: Array<{
782
+ __typename?: 'PageRevisionSchemaEntityDto';
783
+ id: number;
784
+ sortOrder: number;
785
+ anchorId?: string | null;
786
+ properties?: Array<{
787
+ __typename?: 'PageRevisionSchemaProperties';
788
+ fieldId: number;
789
+ name: string;
790
+ value: any;
791
+ }> | null;
792
+ ttschema?: {
793
+ __typename?: 'TTSchemaEntityDto';
794
+ id: number;
795
+ name: string;
796
+ titlePlural: string;
797
+ titleSingular: string;
798
+ fields: Array<{
799
+ __typename?: 'TTSchemaFieldEntityDto';
800
+ id: number;
801
+ name: string;
802
+ type: TtSchemaFieldType;
803
+ hasMultipleValues: boolean;
804
+ typeTTSchema?: {
805
+ __typename?: 'TTSchemaEntityDto';
806
+ id: number;
807
+ } | null;
808
+ }>;
809
+ subSchemas: Array<{
810
+ __typename?: 'TTSchemaEntityDto';
811
+ id: number;
812
+ name: string;
813
+ titlePlural: string;
814
+ titleSingular: string;
815
+ fields: Array<{
816
+ __typename?: 'TTSchemaFieldEntityDto';
817
+ id: number;
818
+ name: string;
819
+ type: TtSchemaFieldType;
820
+ hasMultipleValues: boolean;
821
+ typeTTSchema?: {
822
+ __typename?: 'TTSchemaEntityDto';
823
+ id: number;
824
+ } | null;
825
+ }>;
826
+ }>;
827
+ } | null;
828
+ }>;
829
+ } | null;
830
+ } | null;
831
+ properties?: Array<{
832
+ __typename?: 'PageRevisionSchemaProperties';
833
+ fieldId: number;
834
+ name: string;
835
+ value: any;
836
+ }> | null;
837
+ ttschema?: {
838
+ __typename?: 'TTSchemaEntityDto';
839
+ id: number;
840
+ name: string;
841
+ titlePlural: string;
842
+ titleSingular: string;
843
+ fields: Array<{
844
+ __typename?: 'TTSchemaFieldEntityDto';
845
+ id: number;
846
+ name: string;
847
+ type: TtSchemaFieldType;
848
+ hasMultipleValues: boolean;
849
+ typeTTSchema?: {
850
+ __typename?: 'TTSchemaEntityDto';
851
+ id: number;
852
+ } | null;
853
+ }>;
854
+ subSchemas: Array<{
855
+ __typename?: 'TTSchemaEntityDto';
856
+ id: number;
857
+ name: string;
858
+ titlePlural: string;
859
+ titleSingular: string;
860
+ fields: Array<{
861
+ __typename?: 'TTSchemaFieldEntityDto';
862
+ id: number;
863
+ name: string;
864
+ type: TtSchemaFieldType;
865
+ hasMultipleValues: boolean;
866
+ typeTTSchema?: {
867
+ __typename?: 'TTSchemaEntityDto';
868
+ id: number;
869
+ } | null;
870
+ }>;
871
+ }>;
872
+ } | null;
873
+ }>;
874
+ } | null;
875
+ site: {
876
+ __typename?: 'SiteEntityDto';
877
+ id: number;
878
+ customScriptHead: string;
879
+ customScriptBody: string;
880
+ };
881
+ };
882
+ };
883
+ export type ErrorTemplateQueryVariables = Exact<{
884
+ domain: Scalars['String'];
885
+ path: Scalars['String'];
886
+ errorType: ErrorTemplateType;
887
+ }>;
888
+ export type ErrorTemplateQuery = {
889
+ __typename?: 'Query';
890
+ errorTemplate: {
891
+ __typename?: 'TemplateEntityDto';
892
+ publishedRevision?: {
893
+ __typename?: 'PageRevisionEntityDto';
894
+ id: number;
895
+ schema: Array<{
896
+ __typename?: 'PageRevisionSchemaEntityDto';
897
+ id: number;
898
+ sortOrder: number;
899
+ anchorId?: string | null;
900
+ template?: {
901
+ __typename?: 'TemplateEntityDto';
902
+ id: number;
903
+ name: string;
904
+ publishedRevision?: {
905
+ __typename?: 'PageRevisionEntityDto';
906
+ id: number;
907
+ schema: Array<{
908
+ __typename?: 'PageRevisionSchemaEntityDto';
909
+ id: number;
910
+ sortOrder: number;
911
+ anchorId?: string | null;
912
+ properties?: Array<{
913
+ __typename?: 'PageRevisionSchemaProperties';
914
+ fieldId: number;
915
+ name: string;
916
+ value: any;
917
+ }> | null;
918
+ ttschema?: {
919
+ __typename?: 'TTSchemaEntityDto';
920
+ id: number;
921
+ name: string;
922
+ titlePlural: string;
923
+ titleSingular: string;
924
+ fields: Array<{
925
+ __typename?: 'TTSchemaFieldEntityDto';
926
+ id: number;
927
+ name: string;
928
+ type: TtSchemaFieldType;
929
+ hasMultipleValues: boolean;
930
+ typeTTSchema?: {
931
+ __typename?: 'TTSchemaEntityDto';
932
+ id: number;
933
+ } | null;
934
+ }>;
935
+ subSchemas: Array<{
936
+ __typename?: 'TTSchemaEntityDto';
937
+ id: number;
938
+ name: string;
939
+ titlePlural: string;
940
+ titleSingular: string;
941
+ fields: Array<{
942
+ __typename?: 'TTSchemaFieldEntityDto';
943
+ id: number;
944
+ name: string;
945
+ type: TtSchemaFieldType;
946
+ hasMultipleValues: boolean;
947
+ typeTTSchema?: {
948
+ __typename?: 'TTSchemaEntityDto';
949
+ id: number;
950
+ } | null;
951
+ }>;
952
+ }>;
953
+ } | null;
954
+ }>;
955
+ } | null;
956
+ } | null;
957
+ properties?: Array<{
958
+ __typename?: 'PageRevisionSchemaProperties';
959
+ fieldId: number;
960
+ name: string;
961
+ value: any;
962
+ }> | null;
963
+ ttschema?: {
964
+ __typename?: 'TTSchemaEntityDto';
965
+ id: number;
966
+ name: string;
967
+ titlePlural: string;
968
+ titleSingular: string;
969
+ fields: Array<{
970
+ __typename?: 'TTSchemaFieldEntityDto';
971
+ id: number;
972
+ name: string;
973
+ type: TtSchemaFieldType;
974
+ hasMultipleValues: boolean;
975
+ typeTTSchema?: {
976
+ __typename?: 'TTSchemaEntityDto';
977
+ id: number;
978
+ } | null;
979
+ }>;
980
+ subSchemas: Array<{
981
+ __typename?: 'TTSchemaEntityDto';
982
+ id: number;
983
+ name: string;
984
+ titlePlural: string;
985
+ titleSingular: string;
986
+ fields: Array<{
987
+ __typename?: 'TTSchemaFieldEntityDto';
988
+ id: number;
989
+ name: string;
990
+ type: TtSchemaFieldType;
991
+ hasMultipleValues: boolean;
992
+ typeTTSchema?: {
993
+ __typename?: 'TTSchemaEntityDto';
994
+ id: number;
995
+ } | null;
996
+ }>;
997
+ }>;
998
+ } | null;
999
+ }>;
1000
+ } | null;
1001
+ };
1002
+ };
1003
+ export type UrlResolutionQueryVariables = Exact<{
1004
+ slug?: InputMaybe<Scalars['String']>;
1005
+ domain: Scalars['String'];
1006
+ }>;
1007
+ export type UrlResolutionQuery = {
1008
+ __typename?: 'Query';
1009
+ urlResolution: {
1010
+ __typename?: 'UrlResolutionDto';
1011
+ page?: {
1012
+ __typename?: 'PageEntityDto';
1013
+ id: number;
1014
+ name: string;
1015
+ urlSegment: string;
1016
+ metaTitle?: string | null;
1017
+ metaDescription?: string | null;
1018
+ allowCrawling?: boolean | null;
1019
+ lang: string;
1020
+ brandId: number;
1021
+ sitePath?: string | null;
1022
+ publishedRevision?: {
1023
+ __typename?: 'PageRevisionEntityDto';
1024
+ id: number;
1025
+ schema: Array<{
1026
+ __typename?: 'PageRevisionSchemaEntityDto';
1027
+ id: number;
1028
+ sortOrder: number;
1029
+ anchorId?: string | null;
1030
+ template?: {
1031
+ __typename?: 'TemplateEntityDto';
1032
+ id: number;
1033
+ name: string;
1034
+ publishedRevision?: {
1035
+ __typename?: 'PageRevisionEntityDto';
1036
+ id: number;
1037
+ schema: Array<{
1038
+ __typename?: 'PageRevisionSchemaEntityDto';
1039
+ id: number;
1040
+ sortOrder: number;
1041
+ anchorId?: string | null;
1042
+ properties?: Array<{
1043
+ __typename?: 'PageRevisionSchemaProperties';
1044
+ fieldId: number;
1045
+ name: string;
1046
+ value: any;
1047
+ }> | null;
1048
+ ttschema?: {
1049
+ __typename?: 'TTSchemaEntityDto';
1050
+ id: number;
1051
+ name: string;
1052
+ titlePlural: string;
1053
+ titleSingular: string;
1054
+ fields: Array<{
1055
+ __typename?: 'TTSchemaFieldEntityDto';
1056
+ id: number;
1057
+ name: string;
1058
+ type: TtSchemaFieldType;
1059
+ hasMultipleValues: boolean;
1060
+ typeTTSchema?: {
1061
+ __typename?: 'TTSchemaEntityDto';
1062
+ id: number;
1063
+ } | null;
1064
+ }>;
1065
+ subSchemas: Array<{
1066
+ __typename?: 'TTSchemaEntityDto';
1067
+ id: number;
1068
+ name: string;
1069
+ titlePlural: string;
1070
+ titleSingular: string;
1071
+ fields: Array<{
1072
+ __typename?: 'TTSchemaFieldEntityDto';
1073
+ id: number;
1074
+ name: string;
1075
+ type: TtSchemaFieldType;
1076
+ hasMultipleValues: boolean;
1077
+ typeTTSchema?: {
1078
+ __typename?: 'TTSchemaEntityDto';
1079
+ id: number;
1080
+ } | null;
1081
+ }>;
1082
+ }>;
1083
+ } | null;
1084
+ }>;
1085
+ } | null;
1086
+ } | null;
1087
+ properties?: Array<{
1088
+ __typename?: 'PageRevisionSchemaProperties';
1089
+ fieldId: number;
1090
+ name: string;
1091
+ value: any;
1092
+ }> | null;
1093
+ ttschema?: {
1094
+ __typename?: 'TTSchemaEntityDto';
1095
+ id: number;
1096
+ name: string;
1097
+ titlePlural: string;
1098
+ titleSingular: string;
1099
+ fields: Array<{
1100
+ __typename?: 'TTSchemaFieldEntityDto';
1101
+ id: number;
1102
+ name: string;
1103
+ type: TtSchemaFieldType;
1104
+ hasMultipleValues: boolean;
1105
+ typeTTSchema?: {
1106
+ __typename?: 'TTSchemaEntityDto';
1107
+ id: number;
1108
+ } | null;
1109
+ }>;
1110
+ subSchemas: Array<{
1111
+ __typename?: 'TTSchemaEntityDto';
1112
+ id: number;
1113
+ name: string;
1114
+ titlePlural: string;
1115
+ titleSingular: string;
1116
+ fields: Array<{
1117
+ __typename?: 'TTSchemaFieldEntityDto';
1118
+ id: number;
1119
+ name: string;
1120
+ type: TtSchemaFieldType;
1121
+ hasMultipleValues: boolean;
1122
+ typeTTSchema?: {
1123
+ __typename?: 'TTSchemaEntityDto';
1124
+ id: number;
1125
+ } | null;
1126
+ }>;
1127
+ }>;
1128
+ } | null;
1129
+ }>;
1130
+ } | null;
1131
+ site: {
1132
+ __typename?: 'SiteEntityDto';
1133
+ id: number;
1134
+ customScriptHead: string;
1135
+ customScriptBody: string;
1136
+ };
1137
+ } | null;
1138
+ redirect?: {
1139
+ __typename?: 'RedirectEntityDto';
1140
+ target: string;
1141
+ type: RedirectType;
1142
+ } | null;
1143
+ };
1144
+ };
1145
+ export type LayoutRevisionQueryVariables = Exact<{
1146
+ id: Scalars['Int'];
1147
+ pageId: Scalars['Int'];
1148
+ campaignId: Scalars['Int'];
1149
+ draftMode: Scalars['Boolean'];
1150
+ }>;
1151
+ export type LayoutRevisionQuery = {
1152
+ __typename?: 'Query';
1153
+ pageRevision: {
1154
+ __typename?: 'PageRevisionEntityDto';
1155
+ id: number;
1156
+ page?: {
1157
+ __typename?: 'PageEntityDto';
1158
+ id: number;
1159
+ name: string;
1160
+ urlSegment: string;
1161
+ metaTitle?: string | null;
1162
+ metaDescription?: string | null;
1163
+ allowCrawling?: boolean | null;
1164
+ lang: string;
1165
+ brandId: number;
1166
+ sitePath?: string | null;
1167
+ site: {
1168
+ __typename?: 'SiteEntityDto';
1169
+ id: number;
1170
+ customScriptHead: string;
1171
+ customScriptBody: string;
1172
+ };
1173
+ } | null;
1174
+ schema: Array<{
1175
+ __typename?: 'PageRevisionSchemaEntityDto';
1176
+ id: number;
1177
+ sortOrder: number;
1178
+ anchorId?: string | null;
1179
+ template?: {
1180
+ __typename?: 'TemplateEntityDto';
1181
+ id: number;
1182
+ name: string;
1183
+ publishedRevision?: {
1184
+ __typename?: 'PageRevisionEntityDto';
1185
+ id: number;
1186
+ schema: Array<{
1187
+ __typename?: 'PageRevisionSchemaEntityDto';
1188
+ id: number;
1189
+ sortOrder: number;
1190
+ anchorId?: string | null;
1191
+ properties?: Array<{
1192
+ __typename?: 'PageRevisionSchemaProperties';
1193
+ fieldId: number;
1194
+ name: string;
1195
+ value: any;
1196
+ }> | null;
1197
+ ttschema?: {
1198
+ __typename?: 'TTSchemaEntityDto';
1199
+ id: number;
1200
+ name: string;
1201
+ titlePlural: string;
1202
+ titleSingular: string;
1203
+ fields: Array<{
1204
+ __typename?: 'TTSchemaFieldEntityDto';
1205
+ id: number;
1206
+ name: string;
1207
+ type: TtSchemaFieldType;
1208
+ hasMultipleValues: boolean;
1209
+ typeTTSchema?: {
1210
+ __typename?: 'TTSchemaEntityDto';
1211
+ id: number;
1212
+ } | null;
1213
+ }>;
1214
+ subSchemas: Array<{
1215
+ __typename?: 'TTSchemaEntityDto';
1216
+ id: number;
1217
+ name: string;
1218
+ titlePlural: string;
1219
+ titleSingular: string;
1220
+ fields: Array<{
1221
+ __typename?: 'TTSchemaFieldEntityDto';
1222
+ id: number;
1223
+ name: string;
1224
+ type: TtSchemaFieldType;
1225
+ hasMultipleValues: boolean;
1226
+ typeTTSchema?: {
1227
+ __typename?: 'TTSchemaEntityDto';
1228
+ id: number;
1229
+ } | null;
1230
+ }>;
1231
+ }>;
1232
+ } | null;
1233
+ }>;
1234
+ } | null;
1235
+ } | null;
1236
+ properties?: Array<{
1237
+ __typename?: 'PageRevisionSchemaProperties';
1238
+ fieldId: number;
1239
+ name: string;
1240
+ value: any;
1241
+ }> | null;
1242
+ ttschema?: {
1243
+ __typename?: 'TTSchemaEntityDto';
1244
+ id: number;
1245
+ name: string;
1246
+ titlePlural: string;
1247
+ titleSingular: string;
1248
+ fields: Array<{
1249
+ __typename?: 'TTSchemaFieldEntityDto';
1250
+ id: number;
1251
+ name: string;
1252
+ type: TtSchemaFieldType;
1253
+ hasMultipleValues: boolean;
1254
+ typeTTSchema?: {
1255
+ __typename?: 'TTSchemaEntityDto';
1256
+ id: number;
1257
+ } | null;
1258
+ }>;
1259
+ subSchemas: Array<{
1260
+ __typename?: 'TTSchemaEntityDto';
1261
+ id: number;
1262
+ name: string;
1263
+ titlePlural: string;
1264
+ titleSingular: string;
1265
+ fields: Array<{
1266
+ __typename?: 'TTSchemaFieldEntityDto';
1267
+ id: number;
1268
+ name: string;
1269
+ type: TtSchemaFieldType;
1270
+ hasMultipleValues: boolean;
1271
+ typeTTSchema?: {
1272
+ __typename?: 'TTSchemaEntityDto';
1273
+ id: number;
1274
+ } | null;
1275
+ }>;
1276
+ }>;
1277
+ } | null;
1278
+ }>;
1279
+ };
1280
+ };
1281
+ export type AssetListQueryVariables = Exact<{
1282
+ ids: Array<Scalars['Int']> | Scalars['Int'];
1283
+ }>;
1284
+ export type AssetListQuery = {
1285
+ __typename?: 'Query';
1286
+ assetList: Array<{
1287
+ __typename?: 'AssetEntityDto';
1288
+ id: number;
1289
+ url: string;
1290
+ altText?: string | null;
1291
+ accessLevel?: string | null;
1292
+ }>;
1293
+ };
1294
+ export type DomainWithSitemapQueryVariables = Exact<{
1295
+ domain: Scalars['String'];
1296
+ }>;
1297
+ export type DomainWithSitemapQuery = {
1298
+ __typename?: 'Query';
1299
+ domain: {
1300
+ __typename?: 'DomainEntityDto';
1301
+ sitemap: string;
1302
+ };
1303
+ };
1304
+ export type DomainWithRobotQueryVariables = Exact<{
1305
+ domain: Scalars['String'];
1306
+ }>;
1307
+ export type DomainWithRobotQuery = {
1308
+ __typename?: 'Query';
1309
+ domain: {
1310
+ __typename?: 'DomainEntityDto';
1311
+ robots: string;
1312
+ };
1313
+ };