@wirechunk/cli 0.0.5 → 0.0.7

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.
@@ -16,7 +16,7 @@ export type Scalars = {
16
16
  Boolean: { input: boolean; output: boolean };
17
17
  Int: { input: number; output: number };
18
18
  Float: { input: number; output: number };
19
- /** A timestamp in ISO 8601 format */
19
+ /** A timestamp in ISO 8601 format with the date, time, and timezone. */
20
20
  Date: { input: string | Date; output: string };
21
21
  };
22
22
 
@@ -50,13 +50,19 @@ export type ActiveCampaignTag = {
50
50
  tag: Scalars['String']['output'];
51
51
  };
52
52
 
53
- export type ActiveCampaignTagsSyncConfig = {
54
- __typename?: 'ActiveCampaignTagsSyncConfig';
53
+ export type ActiveCampaignTagSyncConfig = {
54
+ __typename?: 'ActiveCampaignTagSyncConfig';
55
55
  activeCampaignTagId: Scalars['String']['output'];
56
56
  id: Scalars['String']['output'];
57
57
  subscriptionPlanIds: Array<Scalars['String']['output']>;
58
58
  };
59
59
 
60
+ export type ActiveCampaignTagSyncConfigInput = {
61
+ activeCampaignTagId: Scalars['String']['input'];
62
+ id: Scalars['String']['input'];
63
+ subscriptionPlanIds: Array<Scalars['String']['input']>;
64
+ };
65
+
60
66
  export type Address = {
61
67
  __typename?: 'Address';
62
68
  city?: Maybe<Scalars['String']['output']>;
@@ -82,12 +88,12 @@ export type AdminUser = {
82
88
  apiTokens: PersonalApiTokensList;
83
89
  displayName: Scalars['String']['output'];
84
90
  email: Scalars['String']['output'];
85
- emailVerified: Scalars['Boolean']['output'];
86
91
  firstName: Scalars['String']['output'];
87
92
  id: Scalars['String']['output'];
88
93
  lastName: Scalars['String']['output'];
89
- /** This user’s platforms where the user is an admin (possible inactive). */
94
+ /** This user’s platforms where the user is an active admin. */
90
95
  platformAdminUsers: Array<PlatformAdminUser>;
96
+ superAdmin: Scalars['Boolean']['output'];
91
97
  };
92
98
 
93
99
  export type Agreement = {
@@ -100,6 +106,7 @@ export type Agreement = {
100
106
  };
101
107
 
102
108
  export const AgreementType = {
109
+ CookiePolicy: 'CookiePolicy',
103
110
  PrivacyPolicy: 'PrivacyPolicy',
104
111
  TermsOfUse: 'TermsOfUse',
105
112
  } as const;
@@ -112,6 +119,109 @@ export type AgreementsList = {
112
119
  totalCount: Scalars['Int']['output'];
113
120
  };
114
121
 
122
+ export type AiDesignerChatMessage = {
123
+ __typename?: 'AiDesignerChatMessage';
124
+ attachmentUrls: Array<Scalars['String']['output']>;
125
+ focusedComponentName?: Maybe<Scalars['String']['output']>;
126
+ id: Scalars['String']['output'];
127
+ textContent?: Maybe<Scalars['String']['output']>;
128
+ type: AiDesignerChatMessageType;
129
+ };
130
+
131
+ export const AiDesignerChatMessageType = {
132
+ AskModeResponse: 'AskModeResponse',
133
+ AssistantOpening: 'AssistantOpening',
134
+ ComponentsGenerationCanceled: 'ComponentsGenerationCanceled',
135
+ ComponentsGenerationFailure: 'ComponentsGenerationFailure',
136
+ ComponentsGenerationPartialFailure: 'ComponentsGenerationPartialFailure',
137
+ ComponentsGenerationSuccess: 'ComponentsGenerationSuccess',
138
+ PromptAnalyzerHandleQuestionResponse: 'PromptAnalyzerHandleQuestionResponse',
139
+ PromptAnalyzerHandleRequestFeedback: 'PromptAnalyzerHandleRequestFeedback',
140
+ PromptAnalyzerRejectResponse: 'PromptAnalyzerRejectResponse',
141
+ UserMessage: 'UserMessage',
142
+ } as const;
143
+
144
+ export type AiDesignerChatMessageType =
145
+ (typeof AiDesignerChatMessageType)[keyof typeof AiDesignerChatMessageType];
146
+ export const AiDesignerChatMessageUserMode = {
147
+ /** The user is asking the AI some question or questions. */
148
+ Ask: 'Ask',
149
+ /** The user is asking the AI to produce a design. */
150
+ Design: 'Design',
151
+ } as const;
152
+
153
+ export type AiDesignerChatMessageUserMode =
154
+ (typeof AiDesignerChatMessageUserMode)[keyof typeof AiDesignerChatMessageUserMode];
155
+ /**
156
+ * A list of messages in a thread. Always sorted descending by createdAt.
157
+ * This type does not implement ListResult and uses cursor pagination on
158
+ * the createdAt field. We do not return a total count for performance reasons,
159
+ * since we query for messages frequently.
160
+ */
161
+ export type AiDesignerChatMessagesList = {
162
+ __typename?: 'AiDesignerChatMessagesList';
163
+ limit: Scalars['Int']['output'];
164
+ messages: Array<AiDesignerChatMessage>;
165
+ };
166
+
167
+ export type AiDesignerChatThread = {
168
+ __typename?: 'AiDesignerChatThread';
169
+ id: Scalars['String']['output'];
170
+ messages: AiDesignerChatMessagesList;
171
+ };
172
+
173
+ export type AiDesignerChatThreadMessagesArgs = {
174
+ beforeTimestamp?: InputMaybe<Scalars['String']['input']>;
175
+ limit?: InputMaybe<Scalars['Int']['input']>;
176
+ };
177
+
178
+ export const AiGenerationStatus = {
179
+ Failed: 'Failed',
180
+ Generating: 'Generating',
181
+ Succeeded: 'Succeeded',
182
+ } as const;
183
+
184
+ export type AiGenerationStatus = (typeof AiGenerationStatus)[keyof typeof AiGenerationStatus];
185
+ export type AiTrainingPlatform = {
186
+ __typename?: 'AiTrainingPlatform';
187
+ id: Scalars['String']['output'];
188
+ name: Scalars['String']['output'];
189
+ };
190
+
191
+ export type AiTrainingSample = {
192
+ __typename?: 'AiTrainingSample';
193
+ components: Scalars['String']['output'];
194
+ id: Scalars['String']['output'];
195
+ name: Scalars['String']['output'];
196
+ objectType: DesignerObjectType;
197
+ platform: AiTrainingPlatform;
198
+ prompt: Scalars['String']['output'];
199
+ site?: Maybe<AiTrainingSite>;
200
+ };
201
+
202
+ export type AiTrainingSampleValidationError = {
203
+ __typename?: 'AiTrainingSampleValidationError';
204
+ componentsError?: Maybe<Scalars['String']['output']>;
205
+ id: Scalars['String']['output'];
206
+ manifestError?: Maybe<Scalars['String']['output']>;
207
+ };
208
+
209
+ export type AiTrainingSamplesList = ListResult & {
210
+ __typename?: 'AiTrainingSamplesList';
211
+ limit: Scalars['Int']['output'];
212
+ samples: Array<AiTrainingSample>;
213
+ totalCount: Scalars['Int']['output'];
214
+ };
215
+
216
+ export type AiTrainingSite = {
217
+ __typename?: 'AiTrainingSite';
218
+ category: SiteCategory;
219
+ generalInfo?: Maybe<Scalars['String']['output']>;
220
+ id: Scalars['String']['output'];
221
+ name: Scalars['String']['output'];
222
+ platform: AiTrainingPlatform;
223
+ };
224
+
115
225
  export type ApiToken = PersonalApiToken | PlatformApiToken;
116
226
 
117
227
  export type ApplyCustomPromoCodeResult = ApplyCustomPromoCodeSuccessResult | InternalError;
@@ -131,14 +241,245 @@ export type ArchiveComponentSuccessResult = {
131
241
  component: Component;
132
242
  };
133
243
 
244
+ export type ArchiveProductResult = ArchiveProductSuccessResult | UserError;
245
+
246
+ export type ArchiveProductSuccessResult = {
247
+ __typename?: 'ArchiveProductSuccessResult';
248
+ product: Product;
249
+ };
250
+
251
+ export type Asset = {
252
+ __typename?: 'Asset';
253
+ /** Alternative text when displayed on web pages. */
254
+ alt?: Maybe<Scalars['String']['output']>;
255
+ archived: Scalars['Boolean']['output'];
256
+ createdAt: Scalars['Date']['output'];
257
+ /** The duration for video and audio assets. */
258
+ durationSeconds?: Maybe<Scalars['Int']['output']>;
259
+ id: Scalars['String']['output'];
260
+ name: Scalars['String']['output'];
261
+ /**
262
+ * Optionally require a user to be signed in and have the specified product item in an active subscription
263
+ * to be allowed to access the asset. If null or an empty string, no product item is required.
264
+ */
265
+ productItem?: Maybe<Scalars['String']['output']>;
266
+ /**
267
+ * Optionally require a user to be signed in and have one of the specified roles to be allowed to access the asset.
268
+ * If empty, a user can have any role.
269
+ */
270
+ roles: Array<Scalars['String']['output']>;
271
+ /** A simple list of strings to help with retrieval. */
272
+ tags: Array<Scalars['String']['output']>;
273
+ type: AssetType;
274
+ updatedAt: Scalars['Date']['output'];
275
+ /** The asset’s variants. Variants are sorted ascending by name. */
276
+ variants: AssetVariantsList;
277
+ /** Requires the admin Asset:view permission. */
278
+ versions: AssetVersionsList;
279
+ };
280
+
281
+ export type AssetVariantsArgs = {
282
+ archived?: InputMaybe<Scalars['Boolean']['input']>;
283
+ limit?: InputMaybe<Scalars['Int']['input']>;
284
+ page?: InputMaybe<Scalars['Int']['input']>;
285
+ };
286
+
287
+ export type AssetVersionsArgs = {
288
+ limit?: InputMaybe<Scalars['Int']['input']>;
289
+ page?: InputMaybe<Scalars['Int']['input']>;
290
+ };
291
+
292
+ export const AssetType = {
293
+ Audio: 'Audio',
294
+ Document: 'Document',
295
+ Image: 'Image',
296
+ Other: 'Other',
297
+ Video: 'Video',
298
+ } as const;
299
+
300
+ export type AssetType = (typeof AssetType)[keyof typeof AssetType];
301
+ export type AssetVariant = {
302
+ __typename?: 'AssetVariant';
303
+ archived: Scalars['Boolean']['output'];
304
+ asset: Asset;
305
+ /** Applicable only when mode is not ManualUrl. For public assets, the file will have its url field set. For non-public assets, this file’s getUrl field can be used to get a signed URL to access the file. */
306
+ file?: Maybe<File>;
307
+ /** The format to output the variant in. Set only when mode is Convert. */
308
+ format?: Maybe<AssetVariantFormat>;
309
+ /** When mode is Generate, this is the prompt used to generate the variant. */
310
+ generatePrompt?: Maybe<Scalars['String']['output']>;
311
+ /** Determined automatically but also manually set only when mode is Resize. */
312
+ heightPx?: Maybe<Scalars['Int']['output']>;
313
+ id: Scalars['String']['output'];
314
+ latestVersion?: Maybe<AssetVariantVersion>;
315
+ /** The manually provided URL of the asset variant. Applicable only when mode is ManualUrl. */
316
+ manualUrl?: Maybe<Scalars['String']['output']>;
317
+ mode: AssetVariantMode;
318
+ name: Scalars['String']['output'];
319
+ /** A percentage 0–100. When null or 100, the quality is the same as the original. Only for the Optimize, ResizeAndOptimize, and Generate modes. */
320
+ quality?: Maybe<Scalars['Int']['output']>;
321
+ /**
322
+ * The variant to use as the source for producing the variant. Users can change this at any time.
323
+ * Applicable only when not manually uploading or manually providing a URL.
324
+ */
325
+ sourceVariant?: Maybe<AssetVariant>;
326
+ /** The variant version that was used as the source for the variant. */
327
+ sourceVariantVersion?: Maybe<AssetVariantVersion>;
328
+ versions: AssetVariantVersionsList;
329
+ /** Determined automatically but also manually set only when mode is Resize. */
330
+ widthPx?: Maybe<Scalars['Int']['output']>;
331
+ };
332
+
333
+ export type AssetVariantVersionsArgs = {
334
+ limit?: InputMaybe<Scalars['Int']['input']>;
335
+ page?: InputMaybe<Scalars['Int']['input']>;
336
+ };
337
+
338
+ export const AssetVariantFormat = {
339
+ Avif: 'Avif',
340
+ Gif: 'Gif',
341
+ Jpeg: 'Jpeg',
342
+ Png: 'Png',
343
+ Webp: 'Webp',
344
+ } as const;
345
+
346
+ export type AssetVariantFormat = (typeof AssetVariantFormat)[keyof typeof AssetVariantFormat];
347
+ export type AssetVariantFormatUpdate = {
348
+ format: AssetVariantFormat;
349
+ };
350
+
351
+ export const AssetVariantMode = {
352
+ /** Convert the source variant to a different format. */
353
+ Convert: 'Convert',
354
+ /** Crop the source variant. */
355
+ Crop: 'Crop',
356
+ /** Generate a variant using AI. Can reference a source variant but does not require it. */
357
+ Generate: 'Generate',
358
+ /** Users manually upload the asset variant file. */
359
+ ManualUpload: 'ManualUpload',
360
+ /** Users manually provide a URL for the asset variant. */
361
+ ManualUrl: 'ManualUrl',
362
+ /** Optimize the source variant. */
363
+ Optimize: 'Optimize',
364
+ /** Resize the source variant to the specified width and height. */
365
+ Resize: 'Resize',
366
+ /** Resize and optimize the source variant. */
367
+ ResizeAndOptimize: 'ResizeAndOptimize',
368
+ } as const;
369
+
370
+ export type AssetVariantMode = (typeof AssetVariantMode)[keyof typeof AssetVariantMode];
371
+ export type AssetVariantVersion = {
372
+ __typename?: 'AssetVariantVersion';
373
+ archived?: Maybe<Scalars['Boolean']['output']>;
374
+ assetVariantId: Scalars['String']['output'];
375
+ byUser: UserProfile;
376
+ changes: Array<AssetVariantVersionChange>;
377
+ createdAt: Scalars['Date']['output'];
378
+ failureReason?: Maybe<Scalars['String']['output']>;
379
+ file?: Maybe<File>;
380
+ format?: Maybe<AssetVariantFormat>;
381
+ generatePrompt?: Maybe<Scalars['String']['output']>;
382
+ heightPx?: Maybe<Scalars['Int']['output']>;
383
+ id: Scalars['String']['output'];
384
+ manualUrl?: Maybe<Scalars['String']['output']>;
385
+ name?: Maybe<Scalars['String']['output']>;
386
+ quality?: Maybe<Scalars['Int']['output']>;
387
+ sourceAssetVariant?: Maybe<AssetVariant>;
388
+ sourceAssetVariantVersion?: Maybe<AssetVariantVersion>;
389
+ widthPx?: Maybe<Scalars['Int']['output']>;
390
+ };
391
+
392
+ export const AssetVariantVersionChange = {
393
+ Archived: 'Archived',
394
+ FileId: 'FileId',
395
+ Format: 'Format',
396
+ GeneratePrompt: 'GeneratePrompt',
397
+ HeightPx: 'HeightPx',
398
+ ManualUrl: 'ManualUrl',
399
+ Name: 'Name',
400
+ Quality: 'Quality',
401
+ SourceAssetVariantId: 'SourceAssetVariantId',
402
+ WidthPx: 'WidthPx',
403
+ } as const;
404
+
405
+ export type AssetVariantVersionChange =
406
+ (typeof AssetVariantVersionChange)[keyof typeof AssetVariantVersionChange];
407
+ export type AssetVariantVersionsList = ListResult & {
408
+ __typename?: 'AssetVariantVersionsList';
409
+ assetVariantVersions: Array<AssetVariantVersion>;
410
+ limit: Scalars['Int']['output'];
411
+ totalCount: Scalars['Int']['output'];
412
+ };
413
+
414
+ export type AssetVariantsList = ListResult & {
415
+ __typename?: 'AssetVariantsList';
416
+ assetVariants: Array<AssetVariant>;
417
+ limit: Scalars['Int']['output'];
418
+ totalCount: Scalars['Int']['output'];
419
+ };
420
+
421
+ export type AssetVersion = {
422
+ __typename?: 'AssetVersion';
423
+ alt?: Maybe<Scalars['String']['output']>;
424
+ archived?: Maybe<Scalars['Boolean']['output']>;
425
+ byUser: UserProfile;
426
+ changes: Array<AssetVersionChange>;
427
+ createdAt: Scalars['Date']['output'];
428
+ id: Scalars['String']['output'];
429
+ name?: Maybe<Scalars['String']['output']>;
430
+ productItem?: Maybe<Scalars['String']['output']>;
431
+ roles?: Maybe<Array<Scalars['String']['output']>>;
432
+ tags: Array<Scalars['String']['output']>;
433
+ };
434
+
435
+ export const AssetVersionChange = {
436
+ Alt: 'Alt',
437
+ Archived: 'Archived',
438
+ Name: 'Name',
439
+ ProductItem: 'ProductItem',
440
+ Roles: 'Roles',
441
+ Tags: 'Tags',
442
+ } as const;
443
+
444
+ export type AssetVersionChange = (typeof AssetVersionChange)[keyof typeof AssetVersionChange];
445
+ export type AssetVersionsList = ListResult & {
446
+ __typename?: 'AssetVersionsList';
447
+ assetVersions: Array<AssetVersion>;
448
+ limit: Scalars['Int']['output'];
449
+ totalCount: Scalars['Int']['output'];
450
+ };
451
+
452
+ export type AssetsList = ListResult & {
453
+ __typename?: 'AssetsList';
454
+ assets: Array<Asset>;
455
+ limit: Scalars['Int']['output'];
456
+ totalCount: Scalars['Int']['output'];
457
+ };
458
+
134
459
  export type AuthorizationError = Error & {
135
460
  __typename?: 'AuthorizationError';
136
461
  message: Scalars['String']['output'];
137
462
  };
138
463
 
464
+ export type BlogPostingEntitiesUpdate = {
465
+ value: Array<SchemaOrgEntityInput>;
466
+ };
467
+
468
+ export const BlogPostingMarkupMode = {
469
+ Disabled: 'Disabled',
470
+ Enabled: 'Enabled',
471
+ Inherit: 'Inherit',
472
+ } as const;
473
+
474
+ export type BlogPostingMarkupMode =
475
+ (typeof BlogPostingMarkupMode)[keyof typeof BlogPostingMarkupMode];
476
+ export type BlogPostingMarkupModeUpdate = {
477
+ value: BlogPostingMarkupMode;
478
+ };
479
+
139
480
  export type BodyStylesUpdate = {
140
- /** A JSON object. */
141
- value: Scalars['String']['input'];
481
+ /** A JSON array. */
482
+ value?: InputMaybe<Scalars['String']['input']>;
142
483
  };
143
484
 
144
485
  export type BooleanUpdate = {
@@ -160,15 +501,69 @@ export type BuiltInComponent = {
160
501
  name: Scalars['String']['output'];
161
502
  };
162
503
 
504
+ export type CancelAiDesignerChatUserMessageInput = {
505
+ messageId: Scalars['String']['input'];
506
+ };
507
+
508
+ export type CancelAiDesignerChatUserMessageResult =
509
+ | CancelAiDesignerChatUserMessageSuccessResult
510
+ | InternalError
511
+ | UserError;
512
+
513
+ export type CancelAiDesignerChatUserMessageSuccessResult = {
514
+ __typename?: 'CancelAiDesignerChatUserMessageSuccessResult';
515
+ thread: AiDesignerChatThread;
516
+ };
517
+
518
+ export type CancelKeywordResearchJobResult = CancelKeywordResearchJobSuccessResult | UserError;
519
+
520
+ export type CancelKeywordResearchJobSuccessResult = {
521
+ __typename?: 'CancelKeywordResearchJobSuccessResult';
522
+ keywordResearchJob: KeywordResearchJob;
523
+ };
524
+
525
+ export type CancelSubscriptionInput = {
526
+ feedback: Scalars['String']['input'];
527
+ /** The ID of the subscription to cancel. */
528
+ id: Scalars['String']['input'];
529
+ };
530
+
531
+ export type CancelSubscriptionResult =
532
+ | AuthorizationError
533
+ | CancelSubscriptionSuccessResult
534
+ | UserError;
535
+
536
+ export type CancelSubscriptionSuccessResult = {
537
+ __typename?: 'CancelSubscriptionSuccessResult';
538
+ subscription: Sub;
539
+ };
540
+
541
+ export type ClonePlatformInput = {
542
+ destinationPlatformId: Scalars['String']['input'];
543
+ newName: Scalars['String']['input'];
544
+ platformId: Scalars['String']['input'];
545
+ };
546
+
547
+ export type ClonePlatformResult = AuthorizationError | ClonePlatformSuccessResult | UserError;
548
+
549
+ export type ClonePlatformSuccessResult = {
550
+ __typename?: 'ClonePlatformSuccessResult';
551
+ /** The updated platform. */
552
+ platform: Platform;
553
+ /** The cloned site. */
554
+ site: Site;
555
+ };
556
+
163
557
  export type Component = {
164
558
  __typename?: 'Component';
559
+ aiGenerationStatus?: Maybe<AiGenerationStatus>;
165
560
  archived: Scalars['Boolean']['output'];
166
561
  components: Scalars['String']['output'];
167
562
  createdAt: Scalars['Date']['output'];
168
563
  id: Scalars['String']['output'];
169
564
  name: Scalars['String']['output'];
170
565
  previewProps?: Maybe<Scalars['String']['output']>;
171
- propsSetupComponents?: Maybe<Scalars['String']['output']>;
566
+ propsFormComponents?: Maybe<Scalars['String']['output']>;
172
567
  };
173
568
 
174
569
  export type ComponentsList = ListResult & {
@@ -192,6 +587,35 @@ export const ConfirmationAction = {
192
587
  } as const;
193
588
 
194
589
  export type ConfirmationAction = (typeof ConfirmationAction)[keyof typeof ConfirmationAction];
590
+ export type ConfirmationActionUpdate = {
591
+ value: ConfirmationAction;
592
+ };
593
+
594
+ export type ConvertSubscriptionInput = {
595
+ /** For platform admins, this is the subscribing platform's ID. */
596
+ hostManagedPlatformId?: InputMaybe<Scalars['String']['input']>;
597
+ /** The new product to convert to. */
598
+ productId: Scalars['String']['input'];
599
+ /** Must be a Stripe promo code (i.e., not a custom promo code). */
600
+ promoCode?: InputMaybe<Scalars['String']['input']>;
601
+ subscriptionId: Scalars['String']['input'];
602
+ };
603
+
604
+ export type ConvertSubscriptionResult =
605
+ | AuthorizationError
606
+ | ConvertSubscriptionSuccessResult
607
+ | UserError;
608
+
609
+ export type ConvertSubscriptionSuccessResult = {
610
+ __typename?: 'ConvertSubscriptionSuccessResult';
611
+ /**
612
+ * The old subscription. Note that when the mutation resolver for convertSubscription returns, this
613
+ * subscription may be exactly as it was before because it will be updated async and the new replacement
614
+ * subscription will be created async.
615
+ */
616
+ subscription: Sub;
617
+ };
618
+
195
619
  export type Course = {
196
620
  __typename?: 'Course';
197
621
  archived: Scalars['Boolean']['output'];
@@ -272,7 +696,7 @@ export type CreateAdminUserInput = {
272
696
  email: Scalars['String']['input'];
273
697
  firstName: Scalars['String']['input'];
274
698
  lastName: Scalars['String']['input'];
275
- permissionNames?: InputMaybe<Array<PermissionName>>;
699
+ permissions: Array<PermissionInput>;
276
700
  platformId: Scalars['String']['input'];
277
701
  };
278
702
 
@@ -283,6 +707,88 @@ export type CreateAdminUserSuccessResult = {
283
707
  platformAdminUser: PlatformAdminUser;
284
708
  };
285
709
 
710
+ export type CreateAssetInput = {
711
+ alt?: InputMaybe<Scalars['String']['input']>;
712
+ name: Scalars['String']['input'];
713
+ platformId: Scalars['String']['input'];
714
+ productItem?: InputMaybe<Scalars['String']['input']>;
715
+ roles?: InputMaybe<Array<Scalars['String']['input']>>;
716
+ tags?: InputMaybe<Array<Scalars['String']['input']>>;
717
+ type: AssetType;
718
+ variant?: InputMaybe<CreateAssetInputVariantInput>;
719
+ };
720
+
721
+ export type CreateAssetInputVariantInput = {
722
+ generateCount?: InputMaybe<Scalars['Int']['input']>;
723
+ generatePrompt?: InputMaybe<Scalars['String']['input']>;
724
+ manualUrl?: InputMaybe<Scalars['String']['input']>;
725
+ mode: AssetVariantMode;
726
+ name: Scalars['String']['input'];
727
+ /** Only for the Generate mode. */
728
+ quality?: InputMaybe<Scalars['Int']['input']>;
729
+ /** If mode is ManualUpload, this is the name of the file to upload. */
730
+ uploadFileName?: InputMaybe<Scalars['String']['input']>;
731
+ /** If mode is ManualUpload, this is the size of the file to upload in bytes. */
732
+ uploadFileSizeBytes?: InputMaybe<Scalars['Int']['input']>;
733
+ /** If mode is ManualUpload, this is the MIME type of the file to upload. */
734
+ uploadMimeType?: InputMaybe<Scalars['String']['input']>;
735
+ };
736
+
737
+ export type CreateAssetResult =
738
+ | AuthorizationError
739
+ | CreateAssetSuccessResult
740
+ | InternalError
741
+ | UserError;
742
+
743
+ export type CreateAssetSuccessResult = {
744
+ __typename?: 'CreateAssetSuccessResult';
745
+ asset: Asset;
746
+ /** The AssetVariant that was created. This will be set only if the mutation input had specified a variant to create. */
747
+ assetVariant?: Maybe<AssetVariant>;
748
+ /** The AssetVariantVersions that were created. This will have an object only if the mutation input had specified a variant to create. */
749
+ assetVariantVersions: Array<AssetVariantVersion>;
750
+ /** If mode is ManualUpload, this is the signed URL to use to upload the file. This will be set only if the mutation input had specified a variant to create. */
751
+ signedUploadUrl?: Maybe<Scalars['String']['output']>;
752
+ };
753
+
754
+ export type CreateAssetVariantInput = {
755
+ assetId: Scalars['String']['input'];
756
+ format?: InputMaybe<AssetVariantFormat>;
757
+ generateCount?: InputMaybe<Scalars['Int']['input']>;
758
+ generatePrompt?: InputMaybe<Scalars['String']['input']>;
759
+ heightPx?: InputMaybe<Scalars['Int']['input']>;
760
+ manualUrl?: InputMaybe<Scalars['String']['input']>;
761
+ mode: AssetVariantMode;
762
+ name: Scalars['String']['input'];
763
+ quality?: InputMaybe<Scalars['Int']['input']>;
764
+ sourceAssetVariantId?: InputMaybe<Scalars['String']['input']>;
765
+ /** If mode is ManualUpload, this is the name of the file to upload. */
766
+ uploadFileName?: InputMaybe<Scalars['String']['input']>;
767
+ /** If mode is ManualUpload, this is the size of the file to upload in bytes. */
768
+ uploadFileSizeBytes?: InputMaybe<Scalars['Int']['input']>;
769
+ /** If mode is ManualUpload, this is the MIME type of the file to upload. */
770
+ uploadMimeType?: InputMaybe<Scalars['String']['input']>;
771
+ widthPx?: InputMaybe<Scalars['Int']['input']>;
772
+ };
773
+
774
+ export type CreateAssetVariantResult =
775
+ | AuthorizationError
776
+ | CreateAssetVariantSuccessResult
777
+ | InternalError
778
+ | UserError;
779
+
780
+ export type CreateAssetVariantSuccessResult = {
781
+ __typename?: 'CreateAssetVariantSuccessResult';
782
+ /** The AssetVariant that was created. */
783
+ assetVariant: AssetVariant;
784
+ /** The AssetVariantVersion that was created. */
785
+ assetVariantVersion: AssetVariantVersion;
786
+ /** The AssetVariantVersions that were created. */
787
+ assetVariantVersions: Array<AssetVariantVersion>;
788
+ /** If mode is ManualUpload, this is the signed URL to use to upload the file. */
789
+ signedUploadUrl?: Maybe<Scalars['String']['output']>;
790
+ };
791
+
286
792
  export type CreateComponentInput = {
287
793
  components?: InputMaybe<Scalars['String']['input']>;
288
794
  name: Scalars['String']['input'];
@@ -308,21 +814,21 @@ export type CreateCourseSuccessResult = {
308
814
  course: Course;
309
815
  };
310
816
 
311
- export type CreateCustomTableEditorFormVersionInput = {
817
+ export type CreateCustomFieldsFormVersionInput = {
312
818
  components: Scalars['String']['input'];
313
819
  customTableId: Scalars['String']['input'];
314
820
  setAsCurrent?: Scalars['Boolean']['input'];
315
821
  };
316
822
 
317
- export type CreateCustomTableEditorFormVersionResult =
823
+ export type CreateCustomFieldsFormVersionResult =
318
824
  | AuthorizationError
319
- | CreateCustomTableEditorFormVersionSuccessResult
825
+ | CreateCustomFieldsFormVersionSuccessResult
320
826
  | UserError;
321
827
 
322
- export type CreateCustomTableEditorFormVersionSuccessResult = {
323
- __typename?: 'CreateCustomTableEditorFormVersionSuccessResult';
828
+ export type CreateCustomFieldsFormVersionSuccessResult = {
829
+ __typename?: 'CreateCustomFieldsFormVersionSuccessResult';
324
830
  customTable: CustomTable;
325
- customTableEditorFormVersion: CustomTableEditorFormVersion;
831
+ customTableEditorFormVersion: CustomFieldsFormVersion;
326
832
  };
327
833
 
328
834
  export type CreateExtensionInput = {
@@ -369,10 +875,60 @@ export type CreateExtensionVersionSuccessResult = {
369
875
  signedUrl: Scalars['String']['output'];
370
876
  };
371
877
 
878
+ export type CreateFormSubmissionActionInput = {
879
+ /** A JSON-serialized boolean expression. If set, the action will only run when the condition evaluates to true. */
880
+ condition?: InputMaybe<Scalars['String']['input']>;
881
+ /** Applicable only for email actions. Must not be set otherwise. */
882
+ emailAddress?: InputMaybe<Scalars['String']['input']>;
883
+ /** Applicable only for email actions. Must not be set otherwise. */
884
+ emailSubject?: InputMaybe<Scalars['String']['input']>;
885
+ /** Applicable only for email actions. Must not be set otherwise. */
886
+ emailToName?: InputMaybe<Scalars['String']['input']>;
887
+ formId: Scalars['String']['input'];
888
+ /** A JSON object. Applicable only for integration actions. Must not be set otherwise. */
889
+ integrationData?: InputMaybe<Scalars['String']['input']>;
890
+ type: FormSubmissionActionType;
891
+ /** Applicable only for webhook actions. Must not be set otherwise. */
892
+ webhookUrl?: InputMaybe<Scalars['String']['input']>;
893
+ };
894
+
895
+ export type CreateFormSubmissionActionResult =
896
+ | AuthorizationError
897
+ | CreateFormSubmissionActionSuccessResult
898
+ | InternalError
899
+ | UserError;
900
+
901
+ export type CreateFormSubmissionActionSuccessResult = {
902
+ __typename?: 'CreateFormSubmissionActionSuccessResult';
903
+ /** The updated form. */
904
+ form: Form;
905
+ formSubmissionAction: FormSubmissionAction;
906
+ };
907
+
908
+ export type CreateKeywordResearchJobInput = {
909
+ companyAbout: Scalars['String']['input'];
910
+ companyCoreValues: Scalars['String']['input'];
911
+ companyIdealCustomer: Scalars['String']['input'];
912
+ companyMissionStatement: Scalars['String']['input'];
913
+ companyName: Scalars['String']['input'];
914
+ companyStrengthsDifferentiators: Scalars['String']['input'];
915
+ companyType: Scalars['String']['input'];
916
+ siteId: Scalars['String']['input'];
917
+ targetArea: Scalars['String']['input'];
918
+ };
919
+
920
+ export type CreateKeywordResearchJobResult = CreateKeywordResearchJobSuccessResult | UserError;
921
+
922
+ export type CreateKeywordResearchJobSuccessResult = {
923
+ __typename?: 'CreateKeywordResearchJobSuccessResult';
924
+ keywordResearchJob: KeywordResearchJob;
925
+ };
926
+
372
927
  export type CreateLayoutInput = {
928
+ autoMatch: Scalars['Boolean']['input'];
373
929
  components: Scalars['String']['input'];
374
930
  name: Scalars['String']['input'];
375
- pathPrefix: Scalars['String']['input'];
931
+ pathPrefix?: InputMaybe<Scalars['String']['input']>;
376
932
  siteId: Scalars['String']['input'];
377
933
  };
378
934
 
@@ -427,6 +983,46 @@ export type CreateLessonUserSuccessResult = {
427
983
  lessonUser: LessonUser;
428
984
  };
429
985
 
986
+ export type CreatePageInput = {
987
+ autoSelectFeaturedImage?: InputMaybe<Scalars['Boolean']['input']>;
988
+ /** If set, componentsTextMarkdown must not be set. */
989
+ components?: InputMaybe<Scalars['String']['input']>;
990
+ /** Create the page with one Text component containing the provided Markdown text. If set, components must not be set. */
991
+ componentsTextMarkdown?: InputMaybe<Scalars['String']['input']>;
992
+ metaDescription?: InputMaybe<Scalars['String']['input']>;
993
+ metaTitle?: InputMaybe<Scalars['String']['input']>;
994
+ pageTemplateId?: InputMaybe<Scalars['String']['input']>;
995
+ path: Scalars['String']['input'];
996
+ props?: InputMaybe<Scalars['String']['input']>;
997
+ siteId: Scalars['String']['input'];
998
+ status?: InputMaybe<PublishStatus>;
999
+ title: Scalars['String']['input'];
1000
+ };
1001
+
1002
+ export type CreatePageResult =
1003
+ | AuthorizationError
1004
+ | CreatePageSuccessResult
1005
+ | InternalError
1006
+ | UserError;
1007
+
1008
+ export type CreatePageSuccessResult = {
1009
+ __typename?: 'CreatePageSuccessResult';
1010
+ page: Page;
1011
+ };
1012
+
1013
+ export type CreatePaymentMethodChangeSetupIntentInput = {
1014
+ subscriptionId: Scalars['String']['input'];
1015
+ };
1016
+
1017
+ export type CreatePaymentMethodChangeSetupIntentResult =
1018
+ | CreatePaymentMethodChangeSetupIntentSuccessResult
1019
+ | UserError;
1020
+
1021
+ export type CreatePaymentMethodChangeSetupIntentSuccessResult = {
1022
+ __typename?: 'CreatePaymentMethodChangeSetupIntentSuccessResult';
1023
+ setupIntentClientSecret: Scalars['String']['output'];
1024
+ };
1025
+
430
1026
  export type CreatePersonalApiTokenInput = {
431
1027
  name: Scalars['String']['input'];
432
1028
  };
@@ -472,7 +1068,7 @@ export type CreateProductResult = CreateProductSuccessResult | UserError;
472
1068
 
473
1069
  export type CreateProductSuccessResult = {
474
1070
  __typename?: 'CreateProductSuccessResult';
475
- product: SubscriptionPlan;
1071
+ product: Product;
476
1072
  };
477
1073
 
478
1074
  export type CreateSequenceInput = {
@@ -488,10 +1084,79 @@ export type CreateSequenceSuccessResult = {
488
1084
  sequence: Sequence;
489
1085
  };
490
1086
 
1087
+ export type CreateSiteAiGenerateFollowUpQuestionInput = {
1088
+ answer: Scalars['String']['input'];
1089
+ question: Scalars['String']['input'];
1090
+ };
1091
+
1092
+ export type CreateSiteAiGenerateInput = {
1093
+ designPreferences: Scalars['String']['input'];
1094
+ followUpQuestions: Array<CreateSiteAiGenerateFollowUpQuestionInput>;
1095
+ generalInfo: Scalars['String']['input'];
1096
+ /** Must not be empty. */
1097
+ outline: Array<SiteOutlinePageInput>;
1098
+ };
1099
+
1100
+ export type CreateSiteBuildServiceRequestFollowUpQuestionInput = {
1101
+ answer: Scalars['String']['input'];
1102
+ question: Scalars['String']['input'];
1103
+ };
1104
+
1105
+ export type CreateSiteBuildServiceRequestInput = {
1106
+ category: SiteCategory;
1107
+ designPreferences: Scalars['String']['input'];
1108
+ followUpQuestions: Array<CreateSiteBuildServiceRequestFollowUpQuestionInput>;
1109
+ generalInfo: Scalars['String']['input'];
1110
+ platformId: Scalars['String']['input'];
1111
+ siteName: Scalars['String']['input'];
1112
+ };
1113
+
1114
+ export type CreateSiteBuildServiceRequestResult =
1115
+ | AuthorizationError
1116
+ | CreateSiteBuildServiceRequestSuccessResult
1117
+ | InternalError
1118
+ | UserError;
1119
+
1120
+ export type CreateSiteBuildServiceRequestSuccessResult = {
1121
+ __typename?: 'CreateSiteBuildServiceRequestSuccessResult';
1122
+ siteBuildServiceRequest: SiteBuildServiceRequest;
1123
+ };
1124
+
1125
+ export type CreateSiteClimberSubscriptionInput = {
1126
+ active: Scalars['Boolean']['input'];
1127
+ articlePageTemplateId: Scalars['String']['input'];
1128
+ companyAbout: Scalars['String']['input'];
1129
+ companyBasedIn: Scalars['String']['input'];
1130
+ companyCoreValues: Scalars['String']['input'];
1131
+ companyIdealCustomer: Scalars['String']['input'];
1132
+ companyMissionStatement: Scalars['String']['input'];
1133
+ companyName: Scalars['String']['input'];
1134
+ companyStrengthsDifferentiators: Scalars['String']['input'];
1135
+ companyType: Scalars['String']['input'];
1136
+ cta: Scalars['String']['input'];
1137
+ monthlyVolume: Scalars['Int']['input'];
1138
+ siteId: Scalars['String']['input'];
1139
+ };
1140
+
1141
+ export type CreateSiteClimberSubscriptionResult =
1142
+ | AuthorizationError
1143
+ | CreateSiteClimberSubscriptionSuccessResult
1144
+ | UserError;
1145
+
1146
+ export type CreateSiteClimberSubscriptionSuccessResult = {
1147
+ __typename?: 'CreateSiteClimberSubscriptionSuccessResult';
1148
+ subscription: SiteClimberSubscription;
1149
+ };
1150
+
491
1151
  export type CreateSiteInput = {
1152
+ /** If provided, this data will be used to generate the site, including potentially pages, forms, etc. */
1153
+ aiGenerate?: InputMaybe<CreateSiteAiGenerateInput>;
1154
+ /** Defaults to Business. Temporarily optional. */
1155
+ category?: InputMaybe<SiteCategory>;
492
1156
  customFields?: InputMaybe<Array<KeyValueInput>>;
493
1157
  /** If domain is not provided, a domain will have to be generated by an extension. */
494
1158
  domain?: InputMaybe<Scalars['String']['input']>;
1159
+ googleTagId?: InputMaybe<Scalars['String']['input']>;
495
1160
  googleTagManagerId?: InputMaybe<Scalars['String']['input']>;
496
1161
  logoIconUrl?: InputMaybe<Scalars['String']['input']>;
497
1162
  logoUrl?: InputMaybe<Scalars['String']['input']>;
@@ -504,6 +1169,23 @@ export type CreateSiteInput = {
504
1169
  zendeskChatKey?: InputMaybe<Scalars['String']['input']>;
505
1170
  };
506
1171
 
1172
+ export type CreateSiteProcessGeneralInfoInput = {
1173
+ category: SiteCategory;
1174
+ generalInfo: Scalars['String']['input'];
1175
+ };
1176
+
1177
+ export type CreateSiteProcessGeneralInfoResult =
1178
+ | CreateSiteProcessGeneralInfoSuccessResult
1179
+ | InternalError
1180
+ | UserError;
1181
+
1182
+ export type CreateSiteProcessGeneralInfoSuccessResult = {
1183
+ __typename?: 'CreateSiteProcessGeneralInfoSuccessResult';
1184
+ extractedSiteName?: Maybe<Scalars['String']['output']>;
1185
+ followUpQuestion1: Scalars['String']['output'];
1186
+ followUpQuestion2: Scalars['String']['output'];
1187
+ };
1188
+
507
1189
  export type CreateSiteResult =
508
1190
  | AuthorizationError
509
1191
  | CreateSiteSuccessResult
@@ -529,12 +1211,19 @@ export type CreateSiteTemplateLayoutTemplatesSuccessResult = {
529
1211
  siteTemplate: SiteTemplate;
530
1212
  };
531
1213
 
532
- export type CreateSiteTemplatePageTemplatesResult =
533
- | CreateSiteTemplatePageTemplatesSuccessResult
1214
+ export type CreateSiteTemplatePageTemplateInput = {
1215
+ pagePath: Scalars['String']['input'];
1216
+ pageTemplateId: Scalars['String']['input'];
1217
+ pageTitle: Scalars['String']['input'];
1218
+ siteTemplateId: Scalars['String']['input'];
1219
+ };
1220
+
1221
+ export type CreateSiteTemplatePageTemplateResult =
1222
+ | CreateSiteTemplatePageTemplateSuccessResult
534
1223
  | UserError;
535
1224
 
536
- export type CreateSiteTemplatePageTemplatesSuccessResult = {
537
- __typename?: 'CreateSiteTemplatePageTemplatesSuccessResult';
1225
+ export type CreateSiteTemplatePageTemplateSuccessResult = {
1226
+ __typename?: 'CreateSiteTemplatePageTemplateSuccessResult';
538
1227
  siteTemplate: SiteTemplate;
539
1228
  };
540
1229
 
@@ -653,6 +1342,21 @@ export type CustomFieldVersionsList = ListResult & {
653
1342
  totalCount: Scalars['Int']['output'];
654
1343
  };
655
1344
 
1345
+ export type CustomFieldsFormVersion = {
1346
+ __typename?: 'CustomFieldsFormVersion';
1347
+ byUser: UserProfile;
1348
+ components: Scalars['String']['output'];
1349
+ createdAt: Scalars['Date']['output'];
1350
+ id: Scalars['String']['output'];
1351
+ };
1352
+
1353
+ export type CustomFieldsFormVersionsList = ListResult & {
1354
+ __typename?: 'CustomFieldsFormVersionsList';
1355
+ customFieldsFormVersions: Array<CustomFieldsFormVersion>;
1356
+ limit: Scalars['Int']['output'];
1357
+ totalCount: Scalars['Int']['output'];
1358
+ };
1359
+
656
1360
  export type CustomFieldsList = ListResult & {
657
1361
  __typename?: 'CustomFieldsList';
658
1362
  customFields: Array<CustomField>;
@@ -662,9 +1366,9 @@ export type CustomFieldsList = ListResult & {
662
1366
 
663
1367
  export type CustomTable = {
664
1368
  __typename?: 'CustomTable';
665
- currentEditorFormVersion?: Maybe<CustomTableEditorFormVersion>;
666
- editorFormVersions: CustomTableEditorFormVersionsList;
1369
+ currentFieldsFormVersion?: Maybe<CustomFieldsFormVersion>;
667
1370
  fields: CustomFieldsList;
1371
+ fieldsFormVersions: CustomFieldsFormVersionsList;
668
1372
  id: Scalars['String']['output'];
669
1373
  object?: Maybe<CustomTableObject>;
670
1374
  /** The table's versions, sorted descending by createdAt. */
@@ -681,21 +1385,6 @@ export type CustomTableVersionsArgs = {
681
1385
  page?: InputMaybe<Scalars['Int']['input']>;
682
1386
  };
683
1387
 
684
- export type CustomTableEditorFormVersion = {
685
- __typename?: 'CustomTableEditorFormVersion';
686
- byUser: UserProfile;
687
- components: Scalars['String']['output'];
688
- createdAt: Scalars['Date']['output'];
689
- id: Scalars['String']['output'];
690
- };
691
-
692
- export type CustomTableEditorFormVersionsList = ListResult & {
693
- __typename?: 'CustomTableEditorFormVersionsList';
694
- customTableEditorFormVersions: Array<CustomTableEditorFormVersion>;
695
- limit: Scalars['Int']['output'];
696
- totalCount: Scalars['Int']['output'];
697
- };
698
-
699
1388
  export const CustomTableObject = {
700
1389
  Form: 'Form',
701
1390
  FormTemplate: 'FormTemplate',
@@ -769,6 +1458,19 @@ export type CustomTablesList = ListResult & {
769
1458
  totalCount: Scalars['Int']['output'];
770
1459
  };
771
1460
 
1461
+ export type DateFilter = {
1462
+ operator: DateFilterOperator;
1463
+ value: Scalars['Date']['input'];
1464
+ };
1465
+
1466
+ export const DateFilterOperator = {
1467
+ After: 'After',
1468
+ Before: 'Before',
1469
+ Equals: 'Equals',
1470
+ NotEquals: 'NotEquals',
1471
+ } as const;
1472
+
1473
+ export type DateFilterOperator = (typeof DateFilterOperator)[keyof typeof DateFilterOperator];
772
1474
  export type DeleteExtensionVersionResult =
773
1475
  | AuthorizationError
774
1476
  | DeleteExtensionVersionSuccessResult
@@ -779,6 +1481,18 @@ export type DeleteExtensionVersionSuccessResult = {
779
1481
  extension: Extension;
780
1482
  };
781
1483
 
1484
+ export type DeleteFormSubmissionActionResult =
1485
+ | AuthorizationError
1486
+ | DeleteFormSubmissionActionSuccessResult
1487
+ | InternalError
1488
+ | UserError;
1489
+
1490
+ export type DeleteFormSubmissionActionSuccessResult = {
1491
+ __typename?: 'DeleteFormSubmissionActionSuccessResult';
1492
+ /** The updated form. */
1493
+ form: Form;
1494
+ };
1495
+
782
1496
  export type DeleteSiteTemplateLayoutTemplatesResult =
783
1497
  | DeleteSiteTemplateLayoutTemplatesSuccessResult
784
1498
  | UserError;
@@ -803,6 +1517,45 @@ export type Delta = {
803
1517
  delta: Scalars['String']['output'];
804
1518
  };
805
1519
 
1520
+ export type DesignerObject =
1521
+ | Component
1522
+ | CustomTable
1523
+ | Form
1524
+ | FormStep
1525
+ | FormTemplate
1526
+ | FormTemplateStep
1527
+ | Layout
1528
+ | LayoutTemplate
1529
+ | Lesson
1530
+ | Page
1531
+ | PageTemplate
1532
+ | StageBlueprint;
1533
+
1534
+ export type DesignerObjectIdInput = {
1535
+ id: Scalars['String']['input'];
1536
+ type: DesignerObjectType;
1537
+ };
1538
+
1539
+ export const DesignerObjectType = {
1540
+ Component: 'Component',
1541
+ ComponentPropsForm: 'ComponentPropsForm',
1542
+ CustomFieldsForm: 'CustomFieldsForm',
1543
+ Form: 'Form',
1544
+ FormConfirmationMessage: 'FormConfirmationMessage',
1545
+ FormStep: 'FormStep',
1546
+ FormTemplate: 'FormTemplate',
1547
+ FormTemplateConfirmationMessage: 'FormTemplateConfirmationMessage',
1548
+ FormTemplateStep: 'FormTemplateStep',
1549
+ Layout: 'Layout',
1550
+ LayoutTemplate: 'LayoutTemplate',
1551
+ Lesson: 'Lesson',
1552
+ Page: 'Page',
1553
+ PageTemplate: 'PageTemplate',
1554
+ PageTemplatePropsForm: 'PageTemplatePropsForm',
1555
+ Stage: 'Stage',
1556
+ } as const;
1557
+
1558
+ export type DesignerObjectType = (typeof DesignerObjectType)[keyof typeof DesignerObjectType];
806
1559
  export type Document = {
807
1560
  __typename?: 'Document';
808
1561
  currentVersion?: Maybe<File>;
@@ -813,7 +1566,7 @@ export type Document = {
813
1566
  roles: Array<Scalars['String']['output']>;
814
1567
  stamp: Scalars['Boolean']['output'];
815
1568
  status: PublishStatus;
816
- /** All of the document's versions. Accessible only to users with PermissionName.View on the document's platform. */
1569
+ /** All of the document's versions. Accessible only to users with Platform:view on the document's platform. */
817
1570
  versions: Array<File>;
818
1571
  };
819
1572
 
@@ -879,12 +1632,91 @@ export type DuplicateSequenceSuccessResult = {
879
1632
  sequence: Sequence;
880
1633
  };
881
1634
 
1635
+ export type EditAiTrainingSampleInput = {
1636
+ components?: InputMaybe<ComponentsUpdate>;
1637
+ id: Scalars['String']['input'];
1638
+ };
1639
+
1640
+ export type EditAiTrainingSampleResult =
1641
+ | AuthorizationError
1642
+ | EditAiTrainingSampleSuccessResult
1643
+ | UserError;
1644
+
1645
+ export type EditAiTrainingSampleSuccessResult = {
1646
+ __typename?: 'EditAiTrainingSampleSuccessResult';
1647
+ sample: AiTrainingSample;
1648
+ };
1649
+
1650
+ export type EditAssetInput = {
1651
+ alt?: InputMaybe<OptionalStringUpdate>;
1652
+ archived?: InputMaybe<BooleanUpdate>;
1653
+ id: Scalars['String']['input'];
1654
+ name?: InputMaybe<StringUpdate>;
1655
+ productItem?: InputMaybe<OptionalStringUpdate>;
1656
+ roles?: InputMaybe<StringListUpdate>;
1657
+ tags?: InputMaybe<StringListUpdate>;
1658
+ };
1659
+
1660
+ export type EditAssetResult = AuthorizationError | EditAssetSuccessResult | UserError;
1661
+
1662
+ export type EditAssetSuccessResult = {
1663
+ __typename?: 'EditAssetSuccessResult';
1664
+ asset: Asset;
1665
+ };
1666
+
1667
+ /**
1668
+ * The input for editing an asset variant. An asset variant's mode cannot be changed to
1669
+ * avoid potential bad states.
1670
+ */
1671
+ export type EditAssetVariantInput = {
1672
+ archived?: InputMaybe<BooleanUpdate>;
1673
+ format?: InputMaybe<AssetVariantFormatUpdate>;
1674
+ generateCount?: InputMaybe<Scalars['Int']['input']>;
1675
+ generatePrompt?: InputMaybe<StringUpdate>;
1676
+ /** Optional because it should be possible to clear it manually when mode is ManualUrl. */
1677
+ heightPx?: InputMaybe<OptionalIntUpdate>;
1678
+ id: Scalars['String']['input'];
1679
+ manualUrl?: InputMaybe<StringUpdate>;
1680
+ name?: InputMaybe<StringUpdate>;
1681
+ quality?: InputMaybe<IntUpdate>;
1682
+ /** For ManualUpload mode only. */
1683
+ replaceFile?: InputMaybe<Scalars['Boolean']['input']>;
1684
+ sourceAssetVariantId?: InputMaybe<StringUpdate>;
1685
+ /** Required if replaceFile is true. Otherwise must not be provided. */
1686
+ uploadFileName?: InputMaybe<Scalars['String']['input']>;
1687
+ /** Required if replaceFile is true. Otherwise must not be provided. */
1688
+ uploadFileSizeBytes?: InputMaybe<Scalars['Int']['input']>;
1689
+ /** Required if replaceFile is true. Otherwise must not be provided. */
1690
+ uploadMimeType?: InputMaybe<Scalars['String']['input']>;
1691
+ /** Optional because it should be possible to clear it manually when mode is ManualUrl. */
1692
+ widthPx?: InputMaybe<OptionalIntUpdate>;
1693
+ };
1694
+
1695
+ export type EditAssetVariantResult =
1696
+ | AuthorizationError
1697
+ | EditAssetVariantSuccessResult
1698
+ | InternalError
1699
+ | UserError;
1700
+
1701
+ export type EditAssetVariantSuccessResult = {
1702
+ __typename?: 'EditAssetVariantSuccessResult';
1703
+ /** The edited AssetVariant. */
1704
+ assetVariant: AssetVariant;
1705
+ /** The AssetVariantVersion that was created. This field is null if the edit did not produce any changes. */
1706
+ assetVariantVersion?: Maybe<AssetVariantVersion>;
1707
+ /** The AssetVariantVersions that were created. This field is empty if the edit did not produce any changes. */
1708
+ assetVariantVersions: Array<AssetVariantVersion>;
1709
+ /** If mode is ManualUpload, this is the signed URL to use to upload the file. */
1710
+ signedUploadUrl?: Maybe<Scalars['String']['output']>;
1711
+ };
1712
+
882
1713
  export type EditComponentInput = {
1714
+ archived?: InputMaybe<BooleanUpdate>;
883
1715
  components?: InputMaybe<OptionalComponentsUpdate>;
884
1716
  id: Scalars['String']['input'];
885
1717
  name?: InputMaybe<OptionalStringUpdate>;
886
1718
  previewProps?: InputMaybe<OptionalExpressionDataUpdate>;
887
- propsSetupComponents?: InputMaybe<OptionalComponentsUpdate>;
1719
+ propsFormComponents?: InputMaybe<OptionalComponentsUpdate>;
888
1720
  };
889
1721
 
890
1722
  export type EditComponentResult = EditComponentSuccessResult | UserError;
@@ -918,7 +1750,7 @@ export type EditCustomTableInput = {
918
1750
  * accidentally overwrite changes made asynchronously.
919
1751
  */
920
1752
  consistencyKeyCurrentTableVersionId?: InputMaybe<Scalars['String']['input']>;
921
- currentEditorFormVersionId?: InputMaybe<StringUpdate>;
1753
+ currentFieldsFormVersionId?: InputMaybe<StringUpdate>;
922
1754
  /** The new set of fields. If null or omitted, no changes are made to the fields. */
923
1755
  fields?: InputMaybe<Array<CustomFieldInput>>;
924
1756
  object: CustomTableObject;
@@ -947,6 +1779,42 @@ export type EditExtensionSuccessResult = {
947
1779
  extension: Extension;
948
1780
  };
949
1781
 
1782
+ export type EditExtensionVersionInput = {
1783
+ /** A JSON object. */
1784
+ config?: InputMaybe<StringUpdate>;
1785
+ id: Scalars['String']['input'];
1786
+ };
1787
+
1788
+ export type EditExtensionVersionResult =
1789
+ | AuthorizationError
1790
+ | EditExtensionVersionSuccessResult
1791
+ | UserError;
1792
+
1793
+ export type EditExtensionVersionSuccessResult = {
1794
+ __typename?: 'EditExtensionVersionSuccessResult';
1795
+ extensionVersion: ExtensionVersion;
1796
+ };
1797
+
1798
+ export type EditFormInput = {
1799
+ components?: InputMaybe<ComponentsUpdate>;
1800
+ confirmationAction?: InputMaybe<ConfirmationActionUpdate>;
1801
+ confirmationMessageComponents?: InputMaybe<ComponentsUpdate>;
1802
+ confirmationRedirectUrl?: InputMaybe<OptionalStringUpdate>;
1803
+ confirmationRedirectUrlParameters?: InputMaybe<FormConfirmationRedirectUrlParametersUpdate>;
1804
+ id: Scalars['String']['input'];
1805
+ title?: InputMaybe<StringUpdate>;
1806
+ };
1807
+
1808
+ export type EditFormResult = AuthorizationError | EditFormSuccessResult | InternalError | UserError;
1809
+
1810
+ export type EditFormStepInput = {
1811
+ components?: InputMaybe<ComponentsUpdate>;
1812
+ enabled?: InputMaybe<BooleanUpdate>;
1813
+ id: Scalars['String']['input'];
1814
+ name?: InputMaybe<StringUpdate>;
1815
+ position?: InputMaybe<StringUpdate>;
1816
+ };
1817
+
950
1818
  export type EditFormStepPositionResult =
951
1819
  | AuthorizationError
952
1820
  | EditFormStepPositionSuccessResult
@@ -958,6 +1826,40 @@ export type EditFormStepPositionSuccessResult = {
958
1826
  formStep: FormStep;
959
1827
  };
960
1828
 
1829
+ export type EditFormStepResult = AuthorizationError | EditFormStepSuccessResult | UserError;
1830
+
1831
+ export type EditFormStepSuccessResult = {
1832
+ __typename?: 'EditFormStepSuccessResult';
1833
+ formStep: FormStep;
1834
+ };
1835
+
1836
+ /** Note, type cannot be changed. */
1837
+ export type EditFormSubmissionActionInput = {
1838
+ condition?: InputMaybe<OptionalStringUpdate>;
1839
+ emailAddress?: InputMaybe<StringUpdate>;
1840
+ emailSubject?: InputMaybe<StringUpdate>;
1841
+ emailToName?: InputMaybe<StringUpdate>;
1842
+ id: Scalars['String']['input'];
1843
+ integrationData?: InputMaybe<StringUpdate>;
1844
+ webhookUrl?: InputMaybe<StringUpdate>;
1845
+ };
1846
+
1847
+ export type EditFormSubmissionActionResult =
1848
+ | AuthorizationError
1849
+ | EditFormSubmissionActionSuccessResult
1850
+ | InternalError
1851
+ | UserError;
1852
+
1853
+ export type EditFormSubmissionActionSuccessResult = {
1854
+ __typename?: 'EditFormSubmissionActionSuccessResult';
1855
+ formSubmissionAction: FormSubmissionAction;
1856
+ };
1857
+
1858
+ export type EditFormSuccessResult = {
1859
+ __typename?: 'EditFormSuccessResult';
1860
+ form: Form;
1861
+ };
1862
+
961
1863
  export type EditFormTemplateEmailTemplateInput = {
962
1864
  emailBodyTemplate?: InputMaybe<OptionalStringUpdate>;
963
1865
  formTemplateId: Scalars['String']['input'];
@@ -975,6 +1877,10 @@ export type EditFormTemplateEmailTemplateSuccessResult = {
975
1877
 
976
1878
  export type EditFormTemplateInput = {
977
1879
  components?: InputMaybe<ComponentsUpdate>;
1880
+ confirmationAction?: InputMaybe<ConfirmationActionUpdate>;
1881
+ confirmationMessageComponents?: InputMaybe<ComponentsUpdate>;
1882
+ confirmationRedirectUrl?: InputMaybe<OptionalStringUpdate>;
1883
+ confirmationRedirectUrlParameters?: InputMaybe<FormConfirmationRedirectUrlParametersUpdate>;
978
1884
  emailBodyTemplate?: InputMaybe<OptionalStringUpdate>;
979
1885
  emailSubjectTemplate?: InputMaybe<OptionalStringUpdate>;
980
1886
  id: Scalars['String']['input'];
@@ -984,7 +1890,25 @@ export type EditFormTemplateInput = {
984
1890
  useEmailSubjectTemplate?: InputMaybe<BooleanUpdate>;
985
1891
  };
986
1892
 
987
- export type EditFormTemplateResult = AuthorizationError | EditFormTemplateSuccessResult | UserError;
1893
+ export type EditFormTemplateResult = AuthorizationError | EditFormTemplateSuccessResult | UserError;
1894
+
1895
+ export type EditFormTemplateStepInput = {
1896
+ components?: InputMaybe<ComponentsUpdate>;
1897
+ enabled?: InputMaybe<BooleanUpdate>;
1898
+ id: Scalars['String']['input'];
1899
+ name?: InputMaybe<StringUpdate>;
1900
+ position?: InputMaybe<StringUpdate>;
1901
+ };
1902
+
1903
+ export type EditFormTemplateStepResult =
1904
+ | AuthorizationError
1905
+ | EditFormTemplateStepSuccessResult
1906
+ | UserError;
1907
+
1908
+ export type EditFormTemplateStepSuccessResult = {
1909
+ __typename?: 'EditFormTemplateStepSuccessResult';
1910
+ formTemplateStep: FormTemplateStep;
1911
+ };
988
1912
 
989
1913
  export type EditFormTemplateSuccessResult = {
990
1914
  __typename?: 'EditFormTemplateSuccessResult';
@@ -992,10 +1916,11 @@ export type EditFormTemplateSuccessResult = {
992
1916
  };
993
1917
 
994
1918
  export type EditLayoutInput = {
1919
+ autoMatch?: InputMaybe<BooleanUpdate>;
995
1920
  components?: InputMaybe<ComponentsUpdate>;
996
1921
  id: Scalars['String']['input'];
997
1922
  name?: InputMaybe<StringUpdate>;
998
- pathPrefix?: InputMaybe<StringUpdate>;
1923
+ pathPrefix?: InputMaybe<OptionalStringUpdate>;
999
1924
  status?: InputMaybe<PublishStatusUpdate>;
1000
1925
  };
1001
1926
 
@@ -1075,24 +2000,33 @@ export type EditOrgPrimaryUserSuccessResult = {
1075
2000
  };
1076
2001
 
1077
2002
  export type EditPageInput = {
2003
+ autoSelectFeaturedImage?: InputMaybe<Scalars['Boolean']['input']>;
2004
+ blogPostingMarkupMode?: InputMaybe<BlogPostingMarkupModeUpdate>;
1078
2005
  bodyStyles?: InputMaybe<BodyStylesUpdate>;
1079
2006
  components?: InputMaybe<ComponentsUpdate>;
2007
+ enableLayout?: InputMaybe<BooleanUpdate>;
2008
+ featuredImageAssetVariantId?: InputMaybe<OptionalStringUpdate>;
2009
+ featuredImageSource?: InputMaybe<ImageSettingSourceUpdate>;
2010
+ featuredImageUrl?: InputMaybe<OptionalStringUpdate>;
1080
2011
  id: Scalars['String']['input'];
1081
2012
  layoutId?: InputMaybe<OptionalStringUpdate>;
1082
2013
  metaDescription?: InputMaybe<OptionalStringUpdate>;
2014
+ metaImageAssetVariantId?: InputMaybe<OptionalStringUpdate>;
1083
2015
  metaImageUrl?: InputMaybe<OptionalStringUpdate>;
1084
2016
  metaRobots?: InputMaybe<StringListUpdate>;
1085
2017
  metaTitle?: InputMaybe<OptionalStringUpdate>;
1086
2018
  pageTemplateId?: InputMaybe<OptionalStringUpdate>;
1087
2019
  path?: InputMaybe<StringUpdate>;
1088
2020
  productItem?: InputMaybe<OptionalStringUpdate>;
2021
+ props?: InputMaybe<OptionalStringUpdate>;
1089
2022
  public?: InputMaybe<BooleanUpdate>;
2023
+ publishedAt?: InputMaybe<OptionalDateUpdate>;
1090
2024
  roles?: InputMaybe<StringListUpdate>;
1091
2025
  status?: InputMaybe<PublishStatusUpdate>;
1092
2026
  title?: InputMaybe<StringUpdate>;
1093
2027
  };
1094
2028
 
1095
- export type EditPageResult = AuthorizationError | EditPageSuccessResult | UserError;
2029
+ export type EditPageResult = AuthorizationError | EditPageSuccessResult | InternalError | UserError;
1096
2030
 
1097
2031
  export type EditPageSuccessResult = {
1098
2032
  __typename?: 'EditPageSuccessResult';
@@ -1100,15 +2034,14 @@ export type EditPageSuccessResult = {
1100
2034
  };
1101
2035
 
1102
2036
  export type EditPageTemplateInput = {
1103
- bodyStyles?: InputMaybe<StringUpdate>;
1104
- components?: InputMaybe<OptionalComponentsUpdate>;
2037
+ bodyStyles?: InputMaybe<BodyStylesUpdate>;
2038
+ components?: InputMaybe<ComponentsUpdate>;
1105
2039
  description?: InputMaybe<OptionalStringUpdate>;
1106
2040
  id: Scalars['String']['input'];
1107
2041
  metaDescription?: InputMaybe<OptionalStringUpdate>;
1108
2042
  metaImageUrl?: InputMaybe<OptionalStringUpdate>;
1109
2043
  metaRobots?: InputMaybe<StringListUpdate>;
1110
2044
  metaTitle?: InputMaybe<OptionalStringUpdate>;
1111
- path?: InputMaybe<StringUpdate>;
1112
2045
  previewImageUrl?: InputMaybe<OptionalStringUpdate>;
1113
2046
  previewProps?: InputMaybe<OptionalExpressionDataUpdate>;
1114
2047
  propsSetupComponents?: InputMaybe<OptionalComponentsUpdate>;
@@ -1141,12 +2074,20 @@ export type EditPlatformAdminUserSuccessResult = {
1141
2074
  };
1142
2075
 
1143
2076
  export type EditPlatformInput = {
2077
+ activeCampaignApiToken?: InputMaybe<OptionalStringUpdate>;
2078
+ activeCampaignApiUrl?: InputMaybe<OptionalStringUpdate>;
2079
+ activeCampaignTagsSyncConfig?: InputMaybe<OptionalActiveCampaignTagsSyncConfigUpdate>;
1144
2080
  emailReplyToAddress?: InputMaybe<OptionalStringUpdate>;
1145
- emailSendFromAddress?: InputMaybe<StringUpdate>;
2081
+ emailSendFromAddress?: InputMaybe<OptionalStringUpdate>;
1146
2082
  id: Scalars['String']['input'];
2083
+ name?: InputMaybe<StringUpdate>;
2084
+ roles?: InputMaybe<RolesUpdate>;
1147
2085
  sendGridApiKey?: InputMaybe<OptionalStringUpdate>;
1148
2086
  stripeSecretKey?: InputMaybe<OptionalStringUpdate>;
1149
2087
  stripeWebhookSigningSecret?: InputMaybe<OptionalStringUpdate>;
2088
+ webhookHelpTicketCreatedUrl?: InputMaybe<OptionalStringUpdate>;
2089
+ webhookOrgPeerUserCreatedUrl?: InputMaybe<OptionalStringUpdate>;
2090
+ webhookSubscriptionActivatedUrl?: InputMaybe<OptionalStringUpdate>;
1150
2091
  };
1151
2092
 
1152
2093
  export type EditPlatformResult = EditPlatformSuccessResult | UserError;
@@ -1160,7 +2101,7 @@ export type EditProductResult = EditProductSuccessResult | UserError;
1160
2101
 
1161
2102
  export type EditProductSuccessResult = {
1162
2103
  __typename?: 'EditProductSuccessResult';
1163
- product: SubscriptionPlan;
2104
+ product: Product;
1164
2105
  };
1165
2106
 
1166
2107
  export type EditSequenceResult = EditSequenceSuccessResult | UserError;
@@ -1183,18 +2124,62 @@ export type EditSequenceUserSuccessResult = {
1183
2124
  sequenceUser: SequenceUser;
1184
2125
  };
1185
2126
 
2127
+ export type EditSiteClimberSubscriptionInput = {
2128
+ active?: InputMaybe<BooleanUpdate>;
2129
+ articlePageTemplateId?: InputMaybe<StringUpdate>;
2130
+ companyAbout?: InputMaybe<StringUpdate>;
2131
+ companyBasedIn?: InputMaybe<StringUpdate>;
2132
+ companyCoreValues?: InputMaybe<StringUpdate>;
2133
+ companyIdealCustomer?: InputMaybe<StringUpdate>;
2134
+ companyMissionStatement?: InputMaybe<StringUpdate>;
2135
+ companyName?: InputMaybe<StringUpdate>;
2136
+ companyStrengthsDifferentiators?: InputMaybe<StringUpdate>;
2137
+ companyType?: InputMaybe<StringUpdate>;
2138
+ cta?: InputMaybe<StringUpdate>;
2139
+ id: Scalars['String']['input'];
2140
+ monthlyVolume?: InputMaybe<IntUpdate>;
2141
+ };
2142
+
2143
+ export type EditSiteClimberSubscriptionResult =
2144
+ | AuthorizationError
2145
+ | EditSiteClimberSubscriptionSuccessResult
2146
+ | UserError;
2147
+
2148
+ export type EditSiteClimberSubscriptionSuccessResult = {
2149
+ __typename?: 'EditSiteClimberSubscriptionSuccessResult';
2150
+ subscription: SiteClimberSubscription;
2151
+ };
2152
+
1186
2153
  export type EditSiteInput = {
2154
+ accentColor?: InputMaybe<StringUpdate>;
2155
+ blogPostingSchemaDefaultAuthor?: InputMaybe<BlogPostingEntitiesUpdate>;
2156
+ blogPostingSchemaEnabled?: InputMaybe<BooleanUpdate>;
2157
+ blogPostingSchemaPathPrefixes?: InputMaybe<StringListUpdate>;
2158
+ blogPostingSchemaPublisher?: InputMaybe<OptionalSchemaOrgEntityUpdate>;
2159
+ category?: InputMaybe<SiteCategoryUpdate>;
1187
2160
  /** The custom fields to edit. An empty list has no effect. */
1188
2161
  customFields?: InputMaybe<Array<KeyValueInput>>;
2162
+ defaultFont?: InputMaybe<GoogleFontSelectionUpdate>;
2163
+ /** Force set a specific domain. May only be used by users with super-admin privileges. */
1189
2164
  domain?: InputMaybe<StringUpdate>;
2165
+ generalInfo?: InputMaybe<OptionalStringUpdate>;
2166
+ googleTagId?: InputMaybe<OptionalStringUpdate>;
1190
2167
  googleTagManagerId?: InputMaybe<OptionalStringUpdate>;
2168
+ grayColorName?: InputMaybe<OptionalStringUpdate>;
1191
2169
  id: Scalars['String']['input'];
2170
+ localBusinessProfile?: InputMaybe<SiteLocalBusinessProfileUpdate>;
2171
+ logoAssetVariantId?: InputMaybe<OptionalStringUpdate>;
2172
+ logoIconAssetVariantId?: InputMaybe<OptionalStringUpdate>;
2173
+ logoIconSource?: InputMaybe<ImageSettingSourceUpdate>;
1192
2174
  logoIconUrl?: InputMaybe<OptionalStringUpdate>;
2175
+ logoSource?: InputMaybe<ImageSettingSourceUpdate>;
1193
2176
  logoUrl?: InputMaybe<OptionalStringUpdate>;
1194
2177
  metaPixelId?: InputMaybe<OptionalStringUpdate>;
1195
2178
  mixpanelToken?: InputMaybe<OptionalStringUpdate>;
1196
2179
  name?: InputMaybe<StringUpdate>;
2180
+ pendingDomain?: InputMaybe<OptionalStringUpdate>;
1197
2181
  privacyPolicy?: InputMaybe<RichTextInput>;
2182
+ secondaryColor?: InputMaybe<StringUpdate>;
1198
2183
  siteTemplateId?: InputMaybe<OptionalStringUpdate>;
1199
2184
  stripePublishableKey?: InputMaybe<OptionalStringUpdate>;
1200
2185
  termsOfUse?: InputMaybe<RichTextInput>;
@@ -1211,8 +2196,10 @@ export type EditSiteSuccessResult = {
1211
2196
  export type EditUserInput = {
1212
2197
  /** The custom fields to edit. An empty list has no effect. */
1213
2198
  customFields?: InputMaybe<Array<KeyValueInput>>;
2199
+ email?: InputMaybe<StringUpdate>;
1214
2200
  expiresAt?: InputMaybe<OptionalDateUpdate>;
1215
2201
  id: Scalars['String']['input'];
2202
+ role?: InputMaybe<StringUpdate>;
1216
2203
  status?: InputMaybe<UserStatusUpdate>;
1217
2204
  };
1218
2205
 
@@ -1232,13 +2219,51 @@ export type Extension = {
1232
2219
  __typename?: 'Extension';
1233
2220
  /** A JSON object. This object will not have the current version's config merged in. */
1234
2221
  config: Scalars['String']['output'];
2222
+ cpuLimit?: Maybe<Scalars['String']['output']>;
2223
+ cpuRequest?: Maybe<Scalars['String']['output']>;
1235
2224
  currentVersion?: Maybe<ExtensionVersion>;
1236
2225
  enabled: Scalars['Boolean']['output'];
1237
2226
  id: Scalars['String']['output'];
2227
+ memoryLimit?: Maybe<Scalars['String']['output']>;
2228
+ memoryRequest?: Maybe<Scalars['String']['output']>;
1238
2229
  name: Scalars['String']['output'];
2230
+ /**
2231
+ * The server logs for the extension, collected from the standard output and standard error streams.
2232
+ * The entries are sorted ascending by timestamp, and only the first 1,000 entries are returned.
2233
+ * By default, the to date is the current timestamp.
2234
+ * The filter argument can be any expression supported by Google Cloud Logging.
2235
+ */
2236
+ serverLogs: ExtensionServerLogsList;
1239
2237
  versions: ExtensionVersionsList;
1240
2238
  };
1241
2239
 
2240
+ export type ExtensionServerLogsArgs = {
2241
+ filter?: InputMaybe<Scalars['String']['input']>;
2242
+ from: Scalars['Date']['input'];
2243
+ to?: InputMaybe<Scalars['Date']['input']>;
2244
+ };
2245
+
2246
+ export type ExtensionVersionsArgs = {
2247
+ limit?: InputMaybe<Scalars['Int']['input']>;
2248
+ page?: InputMaybe<Scalars['Int']['input']>;
2249
+ };
2250
+
2251
+ export type ExtensionServerLog = {
2252
+ __typename?: 'ExtensionServerLog';
2253
+ id: Scalars['String']['output'];
2254
+ /** A JSON object. */
2255
+ jsonPayload?: Maybe<Scalars['String']['output']>;
2256
+ severity?: Maybe<Scalars['String']['output']>;
2257
+ /** A string with the log message. */
2258
+ textPayload?: Maybe<Scalars['String']['output']>;
2259
+ timestamp: Scalars['Date']['output'];
2260
+ };
2261
+
2262
+ export type ExtensionServerLogsList = {
2263
+ __typename?: 'ExtensionServerLogsList';
2264
+ extensionServerLogs: Array<ExtensionServerLog>;
2265
+ };
2266
+
1242
2267
  export type ExtensionVersion = {
1243
2268
  __typename?: 'ExtensionVersion';
1244
2269
  componentsBuildStage: ExtensionVersionBuildStage;
@@ -1289,10 +2314,13 @@ export type File = {
1289
2314
  __typename?: 'File';
1290
2315
  createdAt: Scalars['Date']['output'];
1291
2316
  downloadName: Scalars['String']['output'];
2317
+ /** For non-public files, the signed URL to perform a GET request on the file. */
1292
2318
  getUrl: Scalars['String']['output'];
1293
2319
  id: Scalars['String']['output'];
1294
2320
  mimeType: Scalars['String']['output'];
1295
2321
  status: FileStatus;
2322
+ /** The publicly accessible URL for the associated file. */
2323
+ url?: Maybe<Scalars['String']['output']>;
1296
2324
  };
1297
2325
 
1298
2326
  export type FileGetUrlArgs = {
@@ -1309,49 +2337,54 @@ export const FileStatus = {
1309
2337
  export type FileStatus = (typeof FileStatus)[keyof typeof FileStatus];
1310
2338
  export type FindOrCreateStripeSubscriptionActiveResult = {
1311
2339
  __typename?: 'FindOrCreateStripeSubscriptionActiveResult';
1312
- id: Scalars['String']['output'];
1313
2340
  stripeSubscriptionId: Scalars['String']['output'];
1314
2341
  };
1315
2342
 
1316
- export type FindOrCreateStripeSubscriptionErrorResult = {
1317
- __typename?: 'FindOrCreateStripeSubscriptionErrorResult';
1318
- message: Scalars['String']['output'];
1319
- };
1320
-
1321
2343
  export type FindOrCreateStripeSubscriptionIncompleteResult = {
1322
2344
  __typename?: 'FindOrCreateStripeSubscriptionIncompleteResult';
1323
- id: Scalars['String']['output'];
1324
- paymentIntentClientSecret: Scalars['String']['output'];
2345
+ paymentIntentClientSecret?: Maybe<Scalars['String']['output']>;
2346
+ setupIntentClientSecret?: Maybe<Scalars['String']['output']>;
1325
2347
  stripeSubscriptionId: Scalars['String']['output'];
1326
2348
  };
1327
2349
 
1328
2350
  export type FindOrCreateStripeSubscriptionResult =
1329
2351
  | FindOrCreateStripeSubscriptionActiveResult
1330
- | FindOrCreateStripeSubscriptionErrorResult
1331
2352
  | FindOrCreateStripeSubscriptionIncompleteResult
1332
- | FindOrCreateStripeSubscriptionUpdatedResult;
2353
+ | FindOrCreateStripeSubscriptionUpdatedResult
2354
+ | InternalError
2355
+ | UserError;
1333
2356
 
1334
2357
  export type FindOrCreateStripeSubscriptionUpdatedResult = {
1335
2358
  __typename?: 'FindOrCreateStripeSubscriptionUpdatedResult';
1336
- subscriptionPlanId: Scalars['String']['output'];
2359
+ /** The updated subscription. */
2360
+ subscription: Sub;
1337
2361
  };
1338
2362
 
1339
2363
  export type Form = {
1340
2364
  __typename?: 'Form';
2365
+ aiGenerationStatus?: Maybe<AiGenerationStatus>;
1341
2366
  components: Scalars['String']['output'];
1342
2367
  confirmationAction: ConfirmationAction;
1343
2368
  confirmationMessageComponents?: Maybe<Scalars['String']['output']>;
1344
- confirmationRedirectParameters: Array<FormConfirmationRedirectUrlParameter>;
1345
2369
  confirmationRedirectUrl?: Maybe<Scalars['String']['output']>;
2370
+ confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameter>;
1346
2371
  emailBodyTemplate?: Maybe<Scalars['String']['output']>;
1347
2372
  emailSubjectTemplate?: Maybe<Scalars['String']['output']>;
1348
2373
  entriesTotalCount: Scalars['Int']['output'];
1349
2374
  id: Scalars['String']['output'];
2375
+ site: Site;
1350
2376
  steps: Array<FormStep>;
1351
2377
  submissionActions: Array<FormSubmissionAction>;
1352
2378
  title: Scalars['String']['output'];
1353
2379
  useEmailBodyTemplate: Scalars['Boolean']['output'];
1354
2380
  useEmailSubjectTemplate: Scalars['Boolean']['output'];
2381
+ versions: FormVersionsList;
2382
+ };
2383
+
2384
+ export type FormVersionsArgs = {
2385
+ byUserId?: InputMaybe<Scalars['String']['input']>;
2386
+ limit?: InputMaybe<Scalars['Int']['input']>;
2387
+ page?: InputMaybe<Scalars['Int']['input']>;
1355
2388
  };
1356
2389
 
1357
2390
  export type FormConfirmationRedirectUrlParameter = {
@@ -1363,10 +2396,13 @@ export type FormConfirmationRedirectUrlParameter = {
1363
2396
 
1364
2397
  export type FormConfirmationRedirectUrlParameterInput = {
1365
2398
  componentName: Scalars['String']['input'];
1366
- id: Scalars['String']['input'];
1367
2399
  parameter: Scalars['String']['input'];
1368
2400
  };
1369
2401
 
2402
+ export type FormConfirmationRedirectUrlParametersUpdate = {
2403
+ value: Array<FormConfirmationRedirectUrlParameterInput>;
2404
+ };
2405
+
1370
2406
  export type FormEntriesList = ListResult & {
1371
2407
  __typename?: 'FormEntriesList';
1372
2408
  entries: Array<FormEntry>;
@@ -1381,6 +2417,7 @@ export type FormEntry = {
1381
2417
  formId: Scalars['String']['output'];
1382
2418
  formTitle: Scalars['String']['output'];
1383
2419
  id: Scalars['String']['output'];
2420
+ spam?: Maybe<Scalars['Boolean']['output']>;
1384
2421
  submissionPageUrl: Scalars['String']['output'];
1385
2422
  user?: Maybe<UserProfile>;
1386
2423
  };
@@ -1390,6 +2427,7 @@ export type FormStep = {
1390
2427
  components: Scalars['String']['output'];
1391
2428
  edited: Scalars['Boolean']['output'];
1392
2429
  enabled: Scalars['Boolean']['output'];
2430
+ form: Form;
1393
2431
  id: Scalars['String']['output'];
1394
2432
  name: Scalars['String']['output'];
1395
2433
  /** A lexicographical sorting key. */
@@ -1398,17 +2436,26 @@ export type FormStep = {
1398
2436
 
1399
2437
  export type FormSubmissionAction = {
1400
2438
  __typename?: 'FormSubmissionAction';
2439
+ /** A JSON object representing a boolean expression. */
2440
+ condition?: Maybe<Scalars['String']['output']>;
1401
2441
  createdAt: Scalars['Date']['output'];
1402
2442
  emailAddress?: Maybe<Scalars['String']['output']>;
1403
2443
  emailSubject?: Maybe<Scalars['String']['output']>;
2444
+ emailToName?: Maybe<Scalars['String']['output']>;
1404
2445
  formId: Scalars['String']['output'];
1405
2446
  id: Scalars['String']['output'];
2447
+ /** A JSON object. Only set for integration actions. */
2448
+ integrationData?: Maybe<Scalars['String']['output']>;
1406
2449
  type: FormSubmissionActionType;
1407
2450
  webhookUrl?: Maybe<Scalars['String']['output']>;
1408
2451
  };
1409
2452
 
1410
2453
  export const FormSubmissionActionType = {
1411
2454
  Email: 'Email',
2455
+ IntegrationAgencyMvp: 'IntegrationAgencyMvp',
2456
+ IntegrationAgencyZoom: 'IntegrationAgencyZoom',
2457
+ IntegrationHighLevel: 'IntegrationHighLevel',
2458
+ IntegrationRicochet360: 'IntegrationRicochet360',
1412
2459
  Webhook: 'Webhook',
1413
2460
  } as const;
1414
2461
 
@@ -1419,8 +2466,8 @@ export type FormTemplate = {
1419
2466
  components: Scalars['String']['output'];
1420
2467
  confirmationAction: ConfirmationAction;
1421
2468
  confirmationMessageComponents?: Maybe<Scalars['String']['output']>;
1422
- confirmationRedirectParameters: Array<FormConfirmationRedirectUrlParameter>;
1423
2469
  confirmationRedirectUrl?: Maybe<Scalars['String']['output']>;
2470
+ confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameter>;
1424
2471
  emailBodyTemplate?: Maybe<Scalars['String']['output']>;
1425
2472
  emailSubjectTemplate?: Maybe<Scalars['String']['output']>;
1426
2473
  id: Scalars['String']['output'];
@@ -1441,6 +2488,64 @@ export type FormTemplateStep = {
1441
2488
  position: Scalars['String']['output'];
1442
2489
  };
1443
2490
 
2491
+ export type FormVersion = {
2492
+ __typename?: 'FormVersion';
2493
+ byUser: UserProfile;
2494
+ changes: Array<FormVersionChange>;
2495
+ components?: Maybe<Scalars['String']['output']>;
2496
+ confirmationAction?: Maybe<ConfirmationAction>;
2497
+ confirmationMessageComponents?: Maybe<Scalars['String']['output']>;
2498
+ confirmationRedirectUrl?: Maybe<Scalars['String']['output']>;
2499
+ confirmationRedirectUrlParameters: Array<FormVersionConfirmationRedirectUrlParameter>;
2500
+ createdAt: Scalars['Date']['output'];
2501
+ emailBodyTemplate?: Maybe<Scalars['String']['output']>;
2502
+ emailSubjectTemplate?: Maybe<Scalars['String']['output']>;
2503
+ formTemplate?: Maybe<FormTemplate>;
2504
+ id: Scalars['String']['output'];
2505
+ steps: Array<FormVersionStep>;
2506
+ title?: Maybe<Scalars['String']['output']>;
2507
+ useEmailBodyTemplate?: Maybe<Scalars['Boolean']['output']>;
2508
+ useEmailSubjectTemplate?: Maybe<Scalars['Boolean']['output']>;
2509
+ };
2510
+
2511
+ export const FormVersionChange = {
2512
+ Components: 'Components',
2513
+ ConfirmationAction: 'ConfirmationAction',
2514
+ ConfirmationMessageComponents: 'ConfirmationMessageComponents',
2515
+ ConfirmationRedirectUrl: 'ConfirmationRedirectUrl',
2516
+ ConfirmationRedirectUrlParameters: 'ConfirmationRedirectUrlParameters',
2517
+ EmailBodyTemplate: 'EmailBodyTemplate',
2518
+ EmailSubjectTemplate: 'EmailSubjectTemplate',
2519
+ FormTemplateId: 'FormTemplateId',
2520
+ Title: 'Title',
2521
+ UseEmailBodyTemplate: 'UseEmailBodyTemplate',
2522
+ UseEmailSubjectTemplate: 'UseEmailSubjectTemplate',
2523
+ } as const;
2524
+
2525
+ export type FormVersionChange = (typeof FormVersionChange)[keyof typeof FormVersionChange];
2526
+ export type FormVersionConfirmationRedirectUrlParameter = {
2527
+ __typename?: 'FormVersionConfirmationRedirectUrlParameter';
2528
+ componentName: Scalars['String']['output'];
2529
+ id: Scalars['String']['output'];
2530
+ parameter: Scalars['String']['output'];
2531
+ };
2532
+
2533
+ export type FormVersionStep = {
2534
+ __typename?: 'FormVersionStep';
2535
+ components: Scalars['String']['output'];
2536
+ enabled: Scalars['Boolean']['output'];
2537
+ id: Scalars['String']['output'];
2538
+ name: Scalars['String']['output'];
2539
+ position: Scalars['String']['output'];
2540
+ };
2541
+
2542
+ export type FormVersionsList = ListResult & {
2543
+ __typename?: 'FormVersionsList';
2544
+ formVersions: Array<FormVersion>;
2545
+ limit: Scalars['Int']['output'];
2546
+ totalCount: Scalars['Int']['output'];
2547
+ };
2548
+
1444
2549
  export const GCloudCertificateMapEntryState = {
1445
2550
  Active: 'Active',
1446
2551
  Pending: 'Pending',
@@ -1458,17 +2563,104 @@ export const GCloudCertificateState = {
1458
2563
 
1459
2564
  export type GCloudCertificateState =
1460
2565
  (typeof GCloudCertificateState)[keyof typeof GCloudCertificateState];
1461
- export type GenerateComponentsInput = {
1462
- platformId: Scalars['String']['input'];
1463
- prompt: Scalars['String']['input'];
1464
- startingComponents: Scalars['String']['input'];
2566
+ export type GeneratePageMetaDescriptionInput = {
2567
+ pageId: Scalars['String']['input'];
2568
+ /** The unsaved page meta title if the user is editing it. Otherwise the saved page meta title. */
2569
+ pageMetaTitle: Scalars['String']['input'];
2570
+ /** The unsaved page path if the user is editing it. Otherwise the saved page path. */
2571
+ pagePath: Scalars['String']['input'];
2572
+ /** The unsaved page title if the user is editing it. Otherwise the saved page title. */
2573
+ pageTitle: Scalars['String']['input'];
1465
2574
  };
1466
2575
 
1467
- export type GenerateComponentsResult = GenerateComponentsSuccessResult | InternalError | UserError;
2576
+ export type GeneratePageMetaDescriptionResult =
2577
+ | AuthorizationError
2578
+ | GeneratePageMetaDescriptionSuccessResult
2579
+ | InternalError
2580
+ | UserError;
2581
+
2582
+ export type GeneratePageMetaDescriptionSuccessResult = {
2583
+ __typename?: 'GeneratePageMetaDescriptionSuccessResult';
2584
+ metaDescription: Scalars['String']['output'];
2585
+ };
1468
2586
 
1469
- export type GenerateComponentsSuccessResult = {
1470
- __typename?: 'GenerateComponentsSuccessResult';
1471
- components: Scalars['String']['output'];
2587
+ export type GenerateSiteOutlineInput = {
2588
+ category: SiteCategory;
2589
+ designPreferences: Scalars['String']['input'];
2590
+ followUpQuestions: Array<CreateSiteAiGenerateFollowUpQuestionInput>;
2591
+ generalInfo: Scalars['String']['input'];
2592
+ name: Scalars['String']['input'];
2593
+ };
2594
+
2595
+ export type GenerateSiteOutlineResult =
2596
+ | GenerateSiteOutlineSuccessResult
2597
+ | InternalError
2598
+ | UserError;
2599
+
2600
+ export type GenerateSiteOutlineSuccessResult = {
2601
+ __typename?: 'GenerateSiteOutlineSuccessResult';
2602
+ pages: Array<SiteOutlinePage>;
2603
+ };
2604
+
2605
+ export type GoogleFont = {
2606
+ __typename?: 'GoogleFont';
2607
+ axes?: Maybe<Array<GoogleFontAxis>>;
2608
+ family: Scalars['String']['output'];
2609
+ variants: Array<Scalars['String']['output']>;
2610
+ };
2611
+
2612
+ export type GoogleFontAxis = {
2613
+ __typename?: 'GoogleFontAxis';
2614
+ end: Scalars['Float']['output'];
2615
+ start: Scalars['Float']['output'];
2616
+ tag: Scalars['String']['output'];
2617
+ };
2618
+
2619
+ export type GoogleFontSelection = {
2620
+ __typename?: 'GoogleFontSelection';
2621
+ axes?: Maybe<Array<GoogleFontAxis>>;
2622
+ familyName: Scalars['String']['output'];
2623
+ fonts?: Maybe<Array<GoogleFontsFont>>;
2624
+ source: Scalars['String']['output'];
2625
+ variable: Scalars['Boolean']['output'];
2626
+ };
2627
+
2628
+ export type GoogleFontSelectionAxisInput = {
2629
+ end: Scalars['Float']['input'];
2630
+ start: Scalars['Float']['input'];
2631
+ tag: Scalars['String']['input'];
2632
+ };
2633
+
2634
+ export type GoogleFontSelectionFontInput = {
2635
+ italic: Scalars['Boolean']['input'];
2636
+ opticalSize?: InputMaybe<Scalars['Int']['input']>;
2637
+ weight: Scalars['Int']['input'];
2638
+ };
2639
+
2640
+ export type GoogleFontSelectionInput = {
2641
+ axes?: InputMaybe<Array<GoogleFontSelectionAxisInput>>;
2642
+ familyName: Scalars['String']['input'];
2643
+ fonts?: InputMaybe<Array<GoogleFontSelectionFontInput>>;
2644
+ source: Scalars['String']['input'];
2645
+ variable: Scalars['Boolean']['input'];
2646
+ };
2647
+
2648
+ export type GoogleFontSelectionUpdate = {
2649
+ value: GoogleFontSelectionInput;
2650
+ };
2651
+
2652
+ export type GoogleFontsFont = {
2653
+ __typename?: 'GoogleFontsFont';
2654
+ italic: Scalars['Boolean']['output'];
2655
+ opticalSize?: Maybe<Scalars['Int']['output']>;
2656
+ weight: Scalars['Int']['output'];
2657
+ };
2658
+
2659
+ export type GoogleFontsList = ListResult & {
2660
+ __typename?: 'GoogleFontsList';
2661
+ items: Array<GoogleFont>;
2662
+ limit: Scalars['Int']['output'];
2663
+ totalCount: Scalars['Int']['output'];
1472
2664
  };
1473
2665
 
1474
2666
  export type HelpTicket = {
@@ -1518,6 +2710,18 @@ export const IdFilterOperator = {
1518
2710
  } as const;
1519
2711
 
1520
2712
  export type IdFilterOperator = (typeof IdFilterOperator)[keyof typeof IdFilterOperator];
2713
+ export const ImageSettingSource = {
2714
+ /** The image is set with an asset variant ID. */
2715
+ AssetVariant: 'AssetVariant',
2716
+ /** The image is set with a fixed URL. */
2717
+ Url: 'Url',
2718
+ } as const;
2719
+
2720
+ export type ImageSettingSource = (typeof ImageSettingSource)[keyof typeof ImageSettingSource];
2721
+ export type ImageSettingSourceUpdate = {
2722
+ value: ImageSettingSource;
2723
+ };
2724
+
1521
2725
  export type InitialFormData = {
1522
2726
  __typename?: 'InitialFormData';
1523
2727
  /** A JSON object. */
@@ -1542,9 +2746,11 @@ export type InvalidateApiTokenSuccessResult = {
1542
2746
 
1543
2747
  export const InvoiceFrequency = {
1544
2748
  Annually: 'Annually',
2749
+ Daily: 'Daily',
1545
2750
  Monthly: 'Monthly',
1546
2751
  Quarterly: 'Quarterly',
1547
2752
  SemiAnnually: 'SemiAnnually',
2753
+ Weekly: 'Weekly',
1548
2754
  } as const;
1549
2755
 
1550
2756
  export type InvoiceFrequency = (typeof InvoiceFrequency)[keyof typeof InvoiceFrequency];
@@ -1554,13 +2760,166 @@ export type KeyValueInput = {
1554
2760
  value: Scalars['String']['input'];
1555
2761
  };
1556
2762
 
2763
+ export type KeywordResearchClusteringJob = {
2764
+ __typename?: 'KeywordResearchClusteringJob';
2765
+ completedAt?: Maybe<Scalars['Date']['output']>;
2766
+ createdAt: Scalars['Date']['output'];
2767
+ error?: Maybe<Scalars['String']['output']>;
2768
+ id: Scalars['String']['output'];
2769
+ keywordResearchJobId: Scalars['String']['output'];
2770
+ status: KeywordResearchClusteringJobStatus;
2771
+ };
2772
+
2773
+ export const KeywordResearchClusteringJobStatus = {
2774
+ Clustering: 'Clustering',
2775
+ Completed: 'Completed',
2776
+ Failed: 'Failed',
2777
+ Pending: 'Pending',
2778
+ } as const;
2779
+
2780
+ export type KeywordResearchClusteringJobStatus =
2781
+ (typeof KeywordResearchClusteringJobStatus)[keyof typeof KeywordResearchClusteringJobStatus];
2782
+ export type KeywordResearchJob = {
2783
+ __typename?: 'KeywordResearchJob';
2784
+ companyAbout: Scalars['String']['output'];
2785
+ companyCoreValues: Scalars['String']['output'];
2786
+ companyIdealCustomer: Scalars['String']['output'];
2787
+ companyMissionStatement: Scalars['String']['output'];
2788
+ companyName: Scalars['String']['output'];
2789
+ companyStrengthsDifferentiators: Scalars['String']['output'];
2790
+ companyType: Scalars['String']['output'];
2791
+ completedAt?: Maybe<Scalars['Date']['output']>;
2792
+ createdAt: Scalars['Date']['output'];
2793
+ error?: Maybe<Scalars['String']['output']>;
2794
+ id: Scalars['String']['output'];
2795
+ keywordsFiltered: Scalars['Int']['output'];
2796
+ keywordsFound: Scalars['Int']['output'];
2797
+ seedKeywordsCompleted: Scalars['Int']['output'];
2798
+ seedKeywordsCount: Scalars['Int']['output'];
2799
+ siteId: Scalars['String']['output'];
2800
+ status: KeywordResearchJobStatus;
2801
+ targetArea: Scalars['String']['output'];
2802
+ };
2803
+
2804
+ export const KeywordResearchJobStatus = {
2805
+ Canceled: 'Canceled',
2806
+ Completed: 'Completed',
2807
+ Failed: 'Failed',
2808
+ FilteringKeywords: 'FilteringKeywords',
2809
+ GeneratingSeedKeywords: 'GeneratingSeedKeywords',
2810
+ Paused: 'Paused',
2811
+ Pending: 'Pending',
2812
+ ResearchingKeywords: 'ResearchingKeywords',
2813
+ } as const;
2814
+
2815
+ export type KeywordResearchJobStatus =
2816
+ (typeof KeywordResearchJobStatus)[keyof typeof KeywordResearchJobStatus];
2817
+ export type KeywordResearchKeyword = {
2818
+ __typename?: 'KeywordResearchKeyword';
2819
+ competition?: Maybe<Scalars['Float']['output']>;
2820
+ competitionLevel?: Maybe<Scalars['String']['output']>;
2821
+ cpc?: Maybe<Scalars['Float']['output']>;
2822
+ filterReason?: Maybe<Scalars['String']['output']>;
2823
+ id: Scalars['String']['output'];
2824
+ keyword: Scalars['String']['output'];
2825
+ manualReview?: Maybe<KeywordResearchKeywordManualReview>;
2826
+ priority?: Maybe<Scalars['Int']['output']>;
2827
+ relevanceScore?: Maybe<KeywordResearchKeywordRelevanceScore>;
2828
+ searchVolume?: Maybe<Scalars['Int']['output']>;
2829
+ };
2830
+
2831
+ export const KeywordResearchKeywordManualReview = {
2832
+ Default: 'Default',
2833
+ Priority: 'Priority',
2834
+ Reject: 'Reject',
2835
+ } as const;
2836
+
2837
+ export type KeywordResearchKeywordManualReview =
2838
+ (typeof KeywordResearchKeywordManualReview)[keyof typeof KeywordResearchKeywordManualReview];
2839
+ export const KeywordResearchKeywordRelevanceScore = {
2840
+ High: 'High',
2841
+ Low: 'Low',
2842
+ Medium: 'Medium',
2843
+ } as const;
2844
+
2845
+ export type KeywordResearchKeywordRelevanceScore =
2846
+ (typeof KeywordResearchKeywordRelevanceScore)[keyof typeof KeywordResearchKeywordRelevanceScore];
2847
+ export type KeywordResearchKeywordsList = {
2848
+ __typename?: 'KeywordResearchKeywordsList';
2849
+ items: Array<KeywordResearchKeyword>;
2850
+ totalCount: Scalars['Int']['output'];
2851
+ };
2852
+
2853
+ export type KeywordResearchSeedKeyword = {
2854
+ __typename?: 'KeywordResearchSeedKeyword';
2855
+ depth: Scalars['Int']['output'];
2856
+ distinctKeywordsFound: Scalars['Int']['output'];
2857
+ id: Scalars['String']['output'];
2858
+ keyword: Scalars['String']['output'];
2859
+ status: KeywordResearchSeedKeywordStatus;
2860
+ };
2861
+
2862
+ export const KeywordResearchSeedKeywordStatus = {
2863
+ Completed: 'Completed',
2864
+ Failed: 'Failed',
2865
+ Pending: 'Pending',
2866
+ Researching: 'Researching',
2867
+ } as const;
2868
+
2869
+ export type KeywordResearchSeedKeywordStatus =
2870
+ (typeof KeywordResearchSeedKeywordStatus)[keyof typeof KeywordResearchSeedKeywordStatus];
2871
+ export type KeywordResearchTopic = {
2872
+ __typename?: 'KeywordResearchTopic';
2873
+ createdAt: Scalars['Date']['output'];
2874
+ description?: Maybe<Scalars['String']['output']>;
2875
+ hubSequence?: Maybe<Scalars['Int']['output']>;
2876
+ id: Scalars['String']['output'];
2877
+ keywords: Array<KeywordResearchKeyword>;
2878
+ pageId?: Maybe<Scalars['String']['output']>;
2879
+ parentTopic?: Maybe<KeywordResearchTopic>;
2880
+ parentTopicId?: Maybe<Scalars['String']['output']>;
2881
+ publishedAt?: Maybe<Scalars['Date']['output']>;
2882
+ siteId: Scalars['String']['output'];
2883
+ status: KeywordResearchTopicStatus;
2884
+ subTopics: Array<KeywordResearchTopic>;
2885
+ title: Scalars['String']['output'];
2886
+ type: KeywordResearchTopicType;
2887
+ };
2888
+
2889
+ export const KeywordResearchTopicStatus = {
2890
+ Approved: 'Approved',
2891
+ Pending: 'Pending',
2892
+ Published: 'Published',
2893
+ Rejected: 'Rejected',
2894
+ } as const;
2895
+
2896
+ export type KeywordResearchTopicStatus =
2897
+ (typeof KeywordResearchTopicStatus)[keyof typeof KeywordResearchTopicStatus];
2898
+ export const KeywordResearchTopicType = {
2899
+ Cluster: 'Cluster',
2900
+ Pillar: 'Pillar',
2901
+ } as const;
2902
+
2903
+ export type KeywordResearchTopicType =
2904
+ (typeof KeywordResearchTopicType)[keyof typeof KeywordResearchTopicType];
2905
+ export type KeywordResearchTopicsList = {
2906
+ __typename?: 'KeywordResearchTopicsList';
2907
+ items: Array<KeywordResearchTopic>;
2908
+ limit: Scalars['Int']['output'];
2909
+ page: Scalars['Int']['output'];
2910
+ totalCount: Scalars['Int']['output'];
2911
+ };
2912
+
1557
2913
  export type Layout = {
1558
2914
  __typename?: 'Layout';
2915
+ aiGenerationStatus?: Maybe<AiGenerationStatus>;
2916
+ autoMatch: Scalars['Boolean']['output'];
1559
2917
  components: Scalars['String']['output'];
1560
2918
  id: Scalars['String']['output'];
1561
2919
  layoutTemplate?: Maybe<LayoutTemplate>;
1562
2920
  name: Scalars['String']['output'];
1563
- pathPrefix: Scalars['String']['output'];
2921
+ pathPrefix?: Maybe<Scalars['String']['output']>;
2922
+ site: Site;
1564
2923
  status: PublishStatus;
1565
2924
  };
1566
2925
 
@@ -1700,7 +3059,60 @@ export type ListResult = {
1700
3059
  totalCount: Scalars['Int']['output'];
1701
3060
  };
1702
3061
 
1703
- export type Me = AdminUser | User;
3062
+ export type LocalBusinessAddress = {
3063
+ __typename?: 'LocalBusinessAddress';
3064
+ city?: Maybe<Scalars['String']['output']>;
3065
+ country?: Maybe<Scalars['String']['output']>;
3066
+ line1?: Maybe<Scalars['String']['output']>;
3067
+ line2?: Maybe<Scalars['String']['output']>;
3068
+ postalCode?: Maybe<Scalars['String']['output']>;
3069
+ state?: Maybe<Scalars['String']['output']>;
3070
+ };
3071
+
3072
+ export type LocalBusinessAddressInput = {
3073
+ city?: InputMaybe<Scalars['String']['input']>;
3074
+ country?: InputMaybe<Scalars['String']['input']>;
3075
+ line1?: InputMaybe<Scalars['String']['input']>;
3076
+ line2?: InputMaybe<Scalars['String']['input']>;
3077
+ postalCode?: InputMaybe<Scalars['String']['input']>;
3078
+ state?: InputMaybe<Scalars['String']['input']>;
3079
+ };
3080
+
3081
+ export type LocalBusinessCoordinates = {
3082
+ __typename?: 'LocalBusinessCoordinates';
3083
+ latitude: Scalars['Float']['output'];
3084
+ longitude: Scalars['Float']['output'];
3085
+ };
3086
+
3087
+ export type LocalBusinessCoordinatesInput = {
3088
+ latitude: Scalars['Float']['input'];
3089
+ longitude: Scalars['Float']['input'];
3090
+ };
3091
+
3092
+ export const LocalBusinessDayOfWeek = {
3093
+ Friday: 'Friday',
3094
+ Monday: 'Monday',
3095
+ Saturday: 'Saturday',
3096
+ Sunday: 'Sunday',
3097
+ Thursday: 'Thursday',
3098
+ Tuesday: 'Tuesday',
3099
+ Wednesday: 'Wednesday',
3100
+ } as const;
3101
+
3102
+ export type LocalBusinessDayOfWeek =
3103
+ (typeof LocalBusinessDayOfWeek)[keyof typeof LocalBusinessDayOfWeek];
3104
+ export type LocalBusinessOpeningHours = {
3105
+ __typename?: 'LocalBusinessOpeningHours';
3106
+ closes: Scalars['String']['output'];
3107
+ day: LocalBusinessDayOfWeek;
3108
+ opens: Scalars['String']['output'];
3109
+ };
3110
+
3111
+ export type LocalBusinessOpeningHoursInput = {
3112
+ closes: Scalars['String']['input'];
3113
+ day: LocalBusinessDayOfWeek;
3114
+ opens: Scalars['String']['input'];
3115
+ };
1704
3116
 
1705
3117
  export type MoveUserToOrgResult = MoveUserToOrgSuccessResult | UserError;
1706
3118
 
@@ -1717,42 +3129,57 @@ export type MoveUserToOrgSuccessResult = {
1717
3129
  export type Mutation = {
1718
3130
  __typename?: 'Mutation';
1719
3131
  archiveComponent: ArchiveComponentResult;
3132
+ archiveProduct: ArchiveProductResult;
3133
+ cancelAiDesignerChatUserMessage: CancelAiDesignerChatUserMessageResult;
3134
+ cancelKeywordResearchJob: CancelKeywordResearchJobResult;
3135
+ cancelSubscription: CancelSubscriptionResult;
1720
3136
  changePassword: Scalars['Boolean']['output'];
3137
+ /** Clone a platform. The source platform must have exactly one site, and the destination platform must not have any sites. */
3138
+ clonePlatform: ClonePlatformResult;
1721
3139
  consentToAgreement: User;
3140
+ convertSubscription: ConvertSubscriptionResult;
1722
3141
  /**
1723
3142
  * Creates a platform admin user. If a user with the specified email address already exists, the user is added as an admin.
1724
3143
  * Requires the requesting user to be an owner of the platform.
1725
3144
  */
1726
3145
  createAdminUser: CreateAdminUserResult;
3146
+ createAsset: CreateAssetResult;
3147
+ createAssetVariant: CreateAssetVariantResult;
1727
3148
  createComponent: CreateComponentResult;
1728
3149
  createCourse: CreateCourseResult;
1729
- createCustomTableEditorFormVersion: CreateCustomTableEditorFormVersionResult;
3150
+ createCustomFieldsFormVersion: CreateCustomFieldsFormVersionResult;
1730
3151
  createDocument: Document;
1731
3152
  createDocumentDownloadPrompt: DocumentDownloadPrompt;
1732
3153
  createExtension: CreateExtensionResult;
1733
3154
  createExtensionVersion: CreateExtensionVersionResult;
1734
3155
  createForm: Form;
1735
3156
  createFormStep: FormStep;
1736
- createFormSubmissionAction: FormSubmissionAction;
3157
+ createFormSubmissionAction: CreateFormSubmissionActionResult;
3158
+ createFormSubmissionAction2: CreateFormSubmissionActionResult;
1737
3159
  createFormTemplate: FormTemplate;
1738
3160
  createFormTemplateStep: FormTemplateStep;
1739
3161
  createHelpTicket: HelpTicket;
3162
+ createKeywordResearchJob: CreateKeywordResearchJobResult;
1740
3163
  createLayout: CreateLayoutResult;
1741
3164
  createLayoutTemplate: CreateLayoutTemplateResult;
1742
3165
  createLesson: CreateLessonResult;
1743
3166
  createLessonUser: CreateLessonUserResult;
1744
- createPage: Page;
3167
+ createPage: CreatePageResult;
1745
3168
  createPageFromTemplate: Page;
1746
3169
  createPageTemplate: PageTemplate;
3170
+ createPaymentMethodChangeSetupIntent: CreatePaymentMethodChangeSetupIntentResult;
1747
3171
  createPersonalApiToken: CreatePersonalApiTokenResult;
1748
3172
  createPlatform: CreatePlatformResult;
1749
3173
  createPlatformApiToken: CreatePlatformApiTokenResult;
1750
3174
  createProduct: CreateProductResult;
1751
3175
  createSequence: CreateSequenceResult;
1752
3176
  createSite: CreateSiteResult;
3177
+ createSiteBuildServiceRequest: CreateSiteBuildServiceRequestResult;
3178
+ createSiteClimberSubscription: CreateSiteClimberSubscriptionResult;
3179
+ createSiteProcessGeneralInfo: CreateSiteProcessGeneralInfoResult;
1753
3180
  createSiteTemplate: CreateSiteTemplateResult;
1754
3181
  createSiteTemplateLayoutTemplates: CreateSiteTemplateLayoutTemplatesResult;
1755
- createSiteTemplatePageTemplates: CreateSiteTemplatePageTemplatesResult;
3182
+ createSiteTemplatePageTemplate: CreateSiteTemplatePageTemplateResult;
1756
3183
  createStage: Stage;
1757
3184
  createStageBlueprint: StageBlueprint;
1758
3185
  createSubscription: SubscriptionOrganization;
@@ -1769,16 +3196,15 @@ export type Mutation = {
1769
3196
  * Currently the requester needs to have the OrganizationOwner role, but that will become configurable.
1770
3197
  */
1771
3198
  createUser: CreateUserResult;
1772
- createUser2: CreateUserResult;
1773
3199
  deleteExtensionVersion: DeleteExtensionVersionResult;
1774
3200
  deleteFormStep: Scalars['Boolean']['output'];
1775
- deleteFormSubmissionAction: Scalars['Boolean']['output'];
3201
+ deleteFormSubmissionAction: DeleteFormSubmissionActionResult;
3202
+ deleteFormSubmissionAction2: DeleteFormSubmissionActionResult;
1776
3203
  deleteFormTemplateStep: Scalars['Boolean']['output'];
1777
3204
  deleteSiteTemplateLayoutTemplates: DeleteSiteTemplateLayoutTemplatesResult;
1778
3205
  deleteSiteTemplatePageTemplates: DeleteSiteTemplatePageTemplatesResult;
1779
3206
  deleteStageBlueprint: Scalars['Boolean']['output'];
1780
3207
  deleteSubscriptionOrg: Scalars['Boolean']['output'];
1781
- deleteSubscriptionPlan: Scalars['Boolean']['output'];
1782
3208
  deleteTlsCertificate: Scalars['Boolean']['output'];
1783
3209
  duplicateComponent: DuplicateComponentResult;
1784
3210
  duplicateCourse: DuplicateCourseResult;
@@ -1789,6 +3215,9 @@ export type Mutation = {
1789
3215
  duplicatePageTemplate: PageTemplate;
1790
3216
  duplicateSequence: DuplicateSequenceResult;
1791
3217
  duplicateStageBlueprint: StageBlueprint;
3218
+ editAiTrainingSample: EditAiTrainingSampleResult;
3219
+ editAsset: EditAssetResult;
3220
+ editAssetVariant: EditAssetVariantResult;
1792
3221
  editComponent: EditComponentResult;
1793
3222
  editCourse: EditCourseResult;
1794
3223
  /** Edit the custom table (i.e., custom fields) of a specific target object. */
@@ -1797,17 +3226,15 @@ export type Mutation = {
1797
3226
  editDocumentCurrentVersion: Document;
1798
3227
  editDocumentDownloadPrompt: DocumentDownloadPrompt;
1799
3228
  editExtension: EditExtensionResult;
3229
+ editExtensionVersion: EditExtensionVersionResult;
1800
3230
  editFile: File;
1801
- editForm: Form;
1802
- editFormStep: FormStep;
3231
+ editForm: EditFormResult;
3232
+ editFormStep: EditFormStepResult;
1803
3233
  editFormStepPosition: EditFormStepPositionResult;
1804
- editFormSubmissionAction: FormSubmissionAction;
1805
- editFormTemplate: FormTemplate;
1806
- editFormTemplate2: EditFormTemplateResult;
1807
- editFormTemplateConfirmation: FormTemplate;
3234
+ editFormSubmissionAction: EditFormSubmissionActionResult;
3235
+ editFormTemplate: EditFormTemplateResult;
1808
3236
  editFormTemplateEmailTemplate: EditFormTemplateEmailTemplateResult;
1809
- editFormTemplateStep: FormTemplateStep;
1810
- editFormTemplateStepPosition: FormTemplateStep;
3237
+ editFormTemplateStep: EditFormTemplateStepResult;
1811
3238
  editHelpTicketStatus: HelpTicket;
1812
3239
  editLayout: EditLayoutResult;
1813
3240
  editLayoutTemplate: EditLayoutTemplateResult;
@@ -1816,7 +3243,6 @@ export type Mutation = {
1816
3243
  editOrgPrimaryUser: EditOrgPrimaryUserResult;
1817
3244
  editOrganization: Org;
1818
3245
  editPage: EditPageResult;
1819
- editPage2: EditPageResult;
1820
3246
  editPageMetadata: Page;
1821
3247
  editPageProps: Page;
1822
3248
  editPageStatus: Page;
@@ -1825,10 +3251,10 @@ export type Mutation = {
1825
3251
  editPlatformAdminUser: EditPlatformAdminUserResult;
1826
3252
  editPlatformOptions: Platform;
1827
3253
  editProduct: EditProductResult;
1828
- editScoreMyCallEntryStatus?: Maybe<ScoreMyCallEntry>;
1829
3254
  editSequence: EditSequenceResult;
1830
3255
  editSequenceUser: EditSequenceUserResult;
1831
3256
  editSite: EditSiteResult;
3257
+ editSiteClimberSubscription: EditSiteClimberSubscriptionResult;
1832
3258
  editStageBlueprintCompletionSpec: StageBlueprint;
1833
3259
  editStageBlueprintComponents: StageBlueprint;
1834
3260
  editStageBlueprintMetaData: StageBlueprint;
@@ -1836,59 +3262,104 @@ export type Mutation = {
1836
3262
  editSubscription: Sub;
1837
3263
  editSubscriptionOrg: SubscriptionOrganization;
1838
3264
  editUser: EditUserResult;
1839
- editUserEmail: User;
1840
3265
  editUserName: User;
1841
3266
  editUserPlan: UserPlan;
1842
- editUserRole: User;
1843
- /** @deprecated Use editUser instead. */
1844
- editUserStatus: User;
1845
3267
  /** Finds or creates a Stripe customer for the current user. */
1846
3268
  findOrCreateStripeCustomer: StripeCustomer;
1847
3269
  /** Finds or creates a Stripe subscription for the current user. An existing subscription is returned only if it is active. */
1848
3270
  findOrCreateStripeSubscription: FindOrCreateStripeSubscriptionResult;
1849
- generateComponents: GenerateComponentsResult;
3271
+ generatePageMetaDescription: GeneratePageMetaDescriptionResult;
3272
+ generateSiteOutline: GenerateSiteOutlineResult;
1850
3273
  invalidateApiToken: InvalidateApiTokenResult;
1851
3274
  moveUserToOrg: MoveUserToOrgResult;
3275
+ pauseKeywordResearchJob: PauseKeywordResearchJobResult;
3276
+ postAiDesignerChatUserMessage: PostAiDesignerChatUserMessageResult;
3277
+ publishAssetVariantVersion: PublishAssetVariantVersionResult;
1852
3278
  refreshSession: Scalars['Boolean']['output'];
1853
3279
  requestPasswordReset: Scalars['Boolean']['output'];
1854
- resetPassword: Scalars['Boolean']['output'];
3280
+ resetPassword: ResetPasswordResult;
3281
+ resetPassword2: ResetPasswordResult;
1855
3282
  restoreCourseVersionChanges: RestoreCourseVersionChangesResult;
3283
+ restoreFormVersionChanges: RestoreFormVersionChangesResult;
1856
3284
  restoreLessonVersionChanges: RestoreLessonVersionChangesResult;
1857
3285
  restorePageVersionChanges: RestorePageVersionChangesResult;
3286
+ resumeKeywordResearchJob: ResumeKeywordResearchJobResult;
3287
+ retryKeywordResearchSeedKeywords: RetryKeywordResearchSeedKeywordsResult;
1858
3288
  sendVerificationEmail: Scalars['Boolean']['output'];
1859
3289
  signIn: User;
3290
+ signIn2: SignInResult;
3291
+ signInWithGoogle: SignInResult;
1860
3292
  signOut: Scalars['Boolean']['output'];
3293
+ signUp: SignUpResult;
1861
3294
  splitUserToNewOrg: SplitUserToNewOrgResult;
3295
+ startKeywordResearchClustering: StartKeywordResearchClusteringResult;
1862
3296
  submitForm: SubmitFormResult;
3297
+ submitForm2: SubmitFormResult;
1863
3298
  submitReview: Scalars['Boolean']['output'];
1864
- submitScoreMyCallEntry: SubmitScoreMyCallEntryResult;
3299
+ syncAiTrainingPlatforms: SyncAiTrainingPlatformsResult;
1865
3300
  syncFormTemplateToForms: Scalars['Boolean']['output'];
1866
3301
  /** Sync a layout template to the layouts that were created from the template. Only draft and published layouts are synced. */
1867
3302
  syncLayoutTemplateToLayouts: SyncLayoutTemplateToLayoutsResult;
1868
3303
  /** Sync a page template to the pages that were created from the template. Only draft and published pages are synced. */
1869
3304
  syncPageTemplateToPages: SyncPageTemplateToPagesResult;
3305
+ updateKeywordResearchKeywordsManualReview: UpdateKeywordResearchKeywordsManualReviewResult;
3306
+ updateKeywordResearchTopicsStatus: UpdateKeywordResearchTopicsStatusResult;
1870
3307
  uploadFile: UploadFileResult;
3308
+ validateAiTrainingSamples: ValidateAiTrainingSamplesResult;
1871
3309
  verifyEmailAddress: User;
3310
+ verifyEmailAddress2: VerifyEmailAddressResult;
1872
3311
  };
1873
3312
 
1874
3313
  export type MutationArchiveComponentArgs = {
1875
3314
  id: Scalars['String']['input'];
1876
3315
  };
1877
3316
 
3317
+ export type MutationArchiveProductArgs = {
3318
+ id: Scalars['String']['input'];
3319
+ };
3320
+
3321
+ export type MutationCancelAiDesignerChatUserMessageArgs = {
3322
+ input: CancelAiDesignerChatUserMessageInput;
3323
+ };
3324
+
3325
+ export type MutationCancelKeywordResearchJobArgs = {
3326
+ id: Scalars['String']['input'];
3327
+ };
3328
+
3329
+ export type MutationCancelSubscriptionArgs = {
3330
+ input: CancelSubscriptionInput;
3331
+ };
3332
+
1878
3333
  export type MutationChangePasswordArgs = {
1879
3334
  currentPassword: Scalars['String']['input'];
1880
3335
  newPassword: Scalars['String']['input'];
1881
3336
  };
1882
3337
 
3338
+ export type MutationClonePlatformArgs = {
3339
+ input: ClonePlatformInput;
3340
+ };
3341
+
1883
3342
  export type MutationConsentToAgreementArgs = {
1884
3343
  agreementId: Scalars['String']['input'];
1885
3344
  userName: Scalars['String']['input'];
1886
3345
  };
1887
3346
 
3347
+ export type MutationConvertSubscriptionArgs = {
3348
+ input: ConvertSubscriptionInput;
3349
+ };
3350
+
1888
3351
  export type MutationCreateAdminUserArgs = {
1889
3352
  input: CreateAdminUserInput;
1890
3353
  };
1891
3354
 
3355
+ export type MutationCreateAssetArgs = {
3356
+ input: CreateAssetInput;
3357
+ };
3358
+
3359
+ export type MutationCreateAssetVariantArgs = {
3360
+ input: CreateAssetVariantInput;
3361
+ };
3362
+
1892
3363
  export type MutationCreateComponentArgs = {
1893
3364
  input: CreateComponentInput;
1894
3365
  };
@@ -1897,8 +3368,8 @@ export type MutationCreateCourseArgs = {
1897
3368
  input: CreateCourseInput;
1898
3369
  };
1899
3370
 
1900
- export type MutationCreateCustomTableEditorFormVersionArgs = {
1901
- input: CreateCustomTableEditorFormVersionInput;
3371
+ export type MutationCreateCustomFieldsFormVersionArgs = {
3372
+ input: CreateCustomFieldsFormVersionInput;
1902
3373
  };
1903
3374
 
1904
3375
  export type MutationCreateDocumentArgs = {
@@ -1934,11 +3405,11 @@ export type MutationCreateFormStepArgs = {
1934
3405
  };
1935
3406
 
1936
3407
  export type MutationCreateFormSubmissionActionArgs = {
1937
- emailAddress?: InputMaybe<Scalars['String']['input']>;
1938
- emailSubject?: InputMaybe<Scalars['String']['input']>;
1939
- formId: Scalars['String']['input'];
1940
- type: FormSubmissionActionType;
1941
- webhookUrl?: InputMaybe<Scalars['String']['input']>;
3408
+ input: CreateFormSubmissionActionInput;
3409
+ };
3410
+
3411
+ export type MutationCreateFormSubmissionAction2Args = {
3412
+ input: CreateFormSubmissionActionInput;
1942
3413
  };
1943
3414
 
1944
3415
  export type MutationCreateFormTemplateArgs = {
@@ -1961,6 +3432,10 @@ export type MutationCreateHelpTicketArgs = {
1961
3432
  type: Scalars['String']['input'];
1962
3433
  };
1963
3434
 
3435
+ export type MutationCreateKeywordResearchJobArgs = {
3436
+ input: CreateKeywordResearchJobInput;
3437
+ };
3438
+
1964
3439
  export type MutationCreateLayoutArgs = {
1965
3440
  input: CreateLayoutInput;
1966
3441
  };
@@ -1978,9 +3453,7 @@ export type MutationCreateLessonUserArgs = {
1978
3453
  };
1979
3454
 
1980
3455
  export type MutationCreatePageArgs = {
1981
- path: Scalars['String']['input'];
1982
- siteId: Scalars['String']['input'];
1983
- title: Scalars['String']['input'];
3456
+ input: CreatePageInput;
1984
3457
  };
1985
3458
 
1986
3459
  export type MutationCreatePageFromTemplateArgs = {
@@ -1990,11 +3463,14 @@ export type MutationCreatePageFromTemplateArgs = {
1990
3463
  };
1991
3464
 
1992
3465
  export type MutationCreatePageTemplateArgs = {
1993
- path: Scalars['String']['input'];
1994
3466
  platformId: Scalars['String']['input'];
1995
3467
  title: Scalars['String']['input'];
1996
3468
  };
1997
3469
 
3470
+ export type MutationCreatePaymentMethodChangeSetupIntentArgs = {
3471
+ input: CreatePaymentMethodChangeSetupIntentInput;
3472
+ };
3473
+
1998
3474
  export type MutationCreatePersonalApiTokenArgs = {
1999
3475
  input: CreatePersonalApiTokenInput;
2000
3476
  };
@@ -2030,6 +3506,18 @@ export type MutationCreateSiteArgs = {
2030
3506
  input: CreateSiteInput;
2031
3507
  };
2032
3508
 
3509
+ export type MutationCreateSiteBuildServiceRequestArgs = {
3510
+ input: CreateSiteBuildServiceRequestInput;
3511
+ };
3512
+
3513
+ export type MutationCreateSiteClimberSubscriptionArgs = {
3514
+ input: CreateSiteClimberSubscriptionInput;
3515
+ };
3516
+
3517
+ export type MutationCreateSiteProcessGeneralInfoArgs = {
3518
+ input: CreateSiteProcessGeneralInfoInput;
3519
+ };
3520
+
2033
3521
  export type MutationCreateSiteTemplateArgs = {
2034
3522
  input: CreateSiteTemplateInput;
2035
3523
  };
@@ -2038,8 +3526,8 @@ export type MutationCreateSiteTemplateLayoutTemplatesArgs = {
2038
3526
  input: SiteTemplateLayoutTemplatesInput;
2039
3527
  };
2040
3528
 
2041
- export type MutationCreateSiteTemplatePageTemplatesArgs = {
2042
- input: SiteTemplatePageTemplatesInput;
3529
+ export type MutationCreateSiteTemplatePageTemplateArgs = {
3530
+ input: CreateSiteTemplatePageTemplateInput;
2043
3531
  };
2044
3532
 
2045
3533
  export type MutationCreateStageArgs = {
@@ -2083,10 +3571,6 @@ export type MutationCreateUserArgs = {
2083
3571
  input: CreateUserInput;
2084
3572
  };
2085
3573
 
2086
- export type MutationCreateUser2Args = {
2087
- input: CreateUserInput;
2088
- };
2089
-
2090
3574
  export type MutationDeleteExtensionVersionArgs = {
2091
3575
  id: Scalars['String']['input'];
2092
3576
  };
@@ -2096,7 +3580,11 @@ export type MutationDeleteFormStepArgs = {
2096
3580
  };
2097
3581
 
2098
3582
  export type MutationDeleteFormSubmissionActionArgs = {
2099
- submissionActionId: Scalars['String']['input'];
3583
+ id: Scalars['String']['input'];
3584
+ };
3585
+
3586
+ export type MutationDeleteFormSubmissionAction2Args = {
3587
+ id: Scalars['String']['input'];
2100
3588
  };
2101
3589
 
2102
3590
  export type MutationDeleteFormTemplateStepArgs = {
@@ -2120,10 +3608,6 @@ export type MutationDeleteSubscriptionOrgArgs = {
2120
3608
  notes: Scalars['String']['input'];
2121
3609
  };
2122
3610
 
2123
- export type MutationDeleteSubscriptionPlanArgs = {
2124
- id: Scalars['String']['input'];
2125
- };
2126
-
2127
3611
  export type MutationDeleteTlsCertificateArgs = {
2128
3612
  certificateName: Scalars['String']['input'];
2129
3613
  };
@@ -2167,6 +3651,18 @@ export type MutationDuplicateStageBlueprintArgs = {
2167
3651
  position: Scalars['Int']['input'];
2168
3652
  };
2169
3653
 
3654
+ export type MutationEditAiTrainingSampleArgs = {
3655
+ input: EditAiTrainingSampleInput;
3656
+ };
3657
+
3658
+ export type MutationEditAssetArgs = {
3659
+ input: EditAssetInput;
3660
+ };
3661
+
3662
+ export type MutationEditAssetVariantArgs = {
3663
+ input: EditAssetVariantInput;
3664
+ };
3665
+
2170
3666
  export type MutationEditComponentArgs = {
2171
3667
  input: EditComponentInput;
2172
3668
  };
@@ -2208,27 +3704,21 @@ export type MutationEditExtensionArgs = {
2208
3704
  input: EditExtensionInput;
2209
3705
  };
2210
3706
 
3707
+ export type MutationEditExtensionVersionArgs = {
3708
+ input: EditExtensionVersionInput;
3709
+ };
3710
+
2211
3711
  export type MutationEditFileArgs = {
2212
3712
  downloadName: Scalars['String']['input'];
2213
3713
  id: Scalars['String']['input'];
2214
3714
  };
2215
3715
 
2216
3716
  export type MutationEditFormArgs = {
2217
- components: Scalars['String']['input'];
2218
- confirmationAction: ConfirmationAction;
2219
- confirmationMessageComponents?: InputMaybe<Scalars['String']['input']>;
2220
- confirmationRedirectUrl?: InputMaybe<Scalars['String']['input']>;
2221
- confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameterInput>;
2222
- id: Scalars['String']['input'];
2223
- title: Scalars['String']['input'];
3717
+ input: EditFormInput;
2224
3718
  };
2225
3719
 
2226
3720
  export type MutationEditFormStepArgs = {
2227
- components: Scalars['String']['input'];
2228
- enabled: Scalars['Boolean']['input'];
2229
- id: Scalars['String']['input'];
2230
- name: Scalars['String']['input'];
2231
- position: Scalars['String']['input'];
3721
+ input: EditFormStepInput;
2232
3722
  };
2233
3723
 
2234
3724
  export type MutationEditFormStepPositionArgs = {
@@ -2237,47 +3727,19 @@ export type MutationEditFormStepPositionArgs = {
2237
3727
  };
2238
3728
 
2239
3729
  export type MutationEditFormSubmissionActionArgs = {
2240
- emailAddress?: InputMaybe<Scalars['String']['input']>;
2241
- emailSubject?: InputMaybe<Scalars['String']['input']>;
2242
- submissionActionId: Scalars['String']['input'];
2243
- type: FormSubmissionActionType;
2244
- webhookUrl?: InputMaybe<Scalars['String']['input']>;
3730
+ input: EditFormSubmissionActionInput;
2245
3731
  };
2246
3732
 
2247
3733
  export type MutationEditFormTemplateArgs = {
2248
- components: Scalars['String']['input'];
2249
- id: Scalars['String']['input'];
2250
- status: PublishStatus;
2251
- title: Scalars['String']['input'];
2252
- };
2253
-
2254
- export type MutationEditFormTemplate2Args = {
2255
3734
  input: EditFormTemplateInput;
2256
3735
  };
2257
3736
 
2258
- export type MutationEditFormTemplateConfirmationArgs = {
2259
- confirmationAction: ConfirmationAction;
2260
- confirmationMessageComponents?: InputMaybe<Scalars['String']['input']>;
2261
- confirmationRedirectUrl?: InputMaybe<Scalars['String']['input']>;
2262
- confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameterInput>;
2263
- id: Scalars['String']['input'];
2264
- };
2265
-
2266
3737
  export type MutationEditFormTemplateEmailTemplateArgs = {
2267
3738
  input: EditFormTemplateEmailTemplateInput;
2268
3739
  };
2269
3740
 
2270
3741
  export type MutationEditFormTemplateStepArgs = {
2271
- components: Scalars['String']['input'];
2272
- enabled: Scalars['Boolean']['input'];
2273
- id: Scalars['String']['input'];
2274
- name: Scalars['String']['input'];
2275
- position: Scalars['String']['input'];
2276
- };
2277
-
2278
- export type MutationEditFormTemplateStepPositionArgs = {
2279
- id: Scalars['String']['input'];
2280
- position: Scalars['String']['input'];
3742
+ input: EditFormTemplateStepInput;
2281
3743
  };
2282
3744
 
2283
3745
  export type MutationEditHelpTicketStatusArgs = {
@@ -2314,10 +3776,6 @@ export type MutationEditPageArgs = {
2314
3776
  input: EditPageInput;
2315
3777
  };
2316
3778
 
2317
- export type MutationEditPage2Args = {
2318
- input: EditPageInput;
2319
- };
2320
-
2321
3779
  export type MutationEditPageMetadataArgs = {
2322
3780
  metaTitle?: InputMaybe<Scalars['String']['input']>;
2323
3781
  pageId: Scalars['String']['input'];
@@ -2367,11 +3825,6 @@ export type MutationEditProductArgs = {
2367
3825
  stripePriceId?: InputMaybe<OptionalStringUpdate>;
2368
3826
  };
2369
3827
 
2370
- export type MutationEditScoreMyCallEntryStatusArgs = {
2371
- id: Scalars['String']['input'];
2372
- status: ScoreMyCallEntryStatus;
2373
- };
2374
-
2375
3828
  export type MutationEditSequenceArgs = {
2376
3829
  id: Scalars['String']['input'];
2377
3830
  loopStages: Scalars['Boolean']['input'];
@@ -2386,6 +3839,10 @@ export type MutationEditSiteArgs = {
2386
3839
  input: EditSiteInput;
2387
3840
  };
2388
3841
 
3842
+ export type MutationEditSiteClimberSubscriptionArgs = {
3843
+ input: EditSiteClimberSubscriptionInput;
3844
+ };
3845
+
2389
3846
  export type MutationEditStageBlueprintCompletionSpecArgs = {
2390
3847
  completionSpec: Scalars['String']['input'];
2391
3848
  id: Scalars['String']['input'];
@@ -2429,11 +3886,6 @@ export type MutationEditUserArgs = {
2429
3886
  input: EditUserInput;
2430
3887
  };
2431
3888
 
2432
- export type MutationEditUserEmailArgs = {
2433
- email: Scalars['String']['input'];
2434
- id: Scalars['String']['input'];
2435
- };
2436
-
2437
3889
  export type MutationEditUserNameArgs = {
2438
3890
  firstName: Scalars['String']['input'];
2439
3891
  id: Scalars['String']['input'];
@@ -2446,16 +3898,6 @@ export type MutationEditUserPlanArgs = {
2446
3898
  userId: Scalars['String']['input'];
2447
3899
  };
2448
3900
 
2449
- export type MutationEditUserRoleArgs = {
2450
- role: Scalars['String']['input'];
2451
- userId: Scalars['String']['input'];
2452
- };
2453
-
2454
- export type MutationEditUserStatusArgs = {
2455
- status: UserStatus;
2456
- userId: Scalars['String']['input'];
2457
- };
2458
-
2459
3901
  export type MutationFindOrCreateStripeCustomerArgs = {
2460
3902
  address?: InputMaybe<AddressInput>;
2461
3903
  };
@@ -2464,15 +3906,20 @@ export type MutationFindOrCreateStripeSubscriptionArgs = {
2464
3906
  address: AddressInput;
2465
3907
  email: Scalars['String']['input'];
2466
3908
  firstName: Scalars['String']['input'];
3909
+ hostManagedPlatformId?: InputMaybe<Scalars['String']['input']>;
2467
3910
  lastName: Scalars['String']['input'];
2468
- phone: Scalars['String']['input'];
3911
+ phone?: InputMaybe<Scalars['String']['input']>;
2469
3912
  promoCode?: InputMaybe<Scalars['String']['input']>;
2470
3913
  promoCodeType?: InputMaybe<PromoCodeType>;
2471
3914
  subscriptionPlanId: Scalars['String']['input'];
2472
3915
  };
2473
3916
 
2474
- export type MutationGenerateComponentsArgs = {
2475
- input: GenerateComponentsInput;
3917
+ export type MutationGeneratePageMetaDescriptionArgs = {
3918
+ input: GeneratePageMetaDescriptionInput;
3919
+ };
3920
+
3921
+ export type MutationGenerateSiteOutlineArgs = {
3922
+ input: GenerateSiteOutlineInput;
2476
3923
  };
2477
3924
 
2478
3925
  export type MutationInvalidateApiTokenArgs = {
@@ -2485,19 +3932,38 @@ export type MutationMoveUserToOrgArgs = {
2485
3932
  userId: Scalars['String']['input'];
2486
3933
  };
2487
3934
 
3935
+ export type MutationPauseKeywordResearchJobArgs = {
3936
+ id: Scalars['String']['input'];
3937
+ };
3938
+
3939
+ export type MutationPostAiDesignerChatUserMessageArgs = {
3940
+ input: PostAiDesignerChatUserMessageInput;
3941
+ };
3942
+
3943
+ export type MutationPublishAssetVariantVersionArgs = {
3944
+ input: PublishAssetVariantVersionInput;
3945
+ };
3946
+
2488
3947
  export type MutationRequestPasswordResetArgs = {
2489
3948
  email: Scalars['String']['input'];
2490
3949
  };
2491
3950
 
2492
3951
  export type MutationResetPasswordArgs = {
2493
- key: Scalars['String']['input'];
2494
- password: Scalars['String']['input'];
3952
+ input: ResetPasswordInput;
3953
+ };
3954
+
3955
+ export type MutationResetPassword2Args = {
3956
+ input: ResetPasswordInput;
2495
3957
  };
2496
3958
 
2497
3959
  export type MutationRestoreCourseVersionChangesArgs = {
2498
3960
  input: RestoreCourseVersionChangesInput;
2499
3961
  };
2500
3962
 
3963
+ export type MutationRestoreFormVersionChangesArgs = {
3964
+ input: RestoreFormVersionChangesInput;
3965
+ };
3966
+
2501
3967
  export type MutationRestoreLessonVersionChangesArgs = {
2502
3968
  input: RestoreLessonVersionChangesInput;
2503
3969
  };
@@ -2506,22 +3972,47 @@ export type MutationRestorePageVersionChangesArgs = {
2506
3972
  input: RestorePageVersionChangesInput;
2507
3973
  };
2508
3974
 
3975
+ export type MutationResumeKeywordResearchJobArgs = {
3976
+ id: Scalars['String']['input'];
3977
+ };
3978
+
3979
+ export type MutationRetryKeywordResearchSeedKeywordsArgs = {
3980
+ jobId: Scalars['String']['input'];
3981
+ };
3982
+
2509
3983
  export type MutationSignInArgs = {
2510
3984
  email: Scalars['String']['input'];
2511
3985
  password: Scalars['String']['input'];
2512
3986
  };
2513
3987
 
3988
+ export type MutationSignIn2Args = {
3989
+ email: Scalars['String']['input'];
3990
+ password: Scalars['String']['input'];
3991
+ };
3992
+
3993
+ export type MutationSignInWithGoogleArgs = {
3994
+ input: SignInWithGoogleInput;
3995
+ };
3996
+
3997
+ export type MutationSignUpArgs = {
3998
+ input: SignUpInput;
3999
+ };
4000
+
2514
4001
  export type MutationSplitUserToNewOrgArgs = {
2515
4002
  notes?: InputMaybe<Scalars['String']['input']>;
2516
4003
  userId: Scalars['String']['input'];
2517
4004
  };
2518
4005
 
4006
+ export type MutationStartKeywordResearchClusteringArgs = {
4007
+ input: StartKeywordResearchClusteringInput;
4008
+ };
4009
+
2519
4010
  export type MutationSubmitFormArgs = {
2520
- formData: Scalars['String']['input'];
2521
- formId: Scalars['String']['input'];
2522
- pageUrl: Scalars['String']['input'];
2523
- sessionId?: InputMaybe<Scalars['String']['input']>;
2524
- stepId?: InputMaybe<Scalars['String']['input']>;
4011
+ input: SubmitFormInput;
4012
+ };
4013
+
4014
+ export type MutationSubmitForm2Args = {
4015
+ input: SubmitFormInput;
2525
4016
  };
2526
4017
 
2527
4018
  export type MutationSubmitReviewArgs = {
@@ -2530,14 +4021,6 @@ export type MutationSubmitReviewArgs = {
2530
4021
  submitterName?: InputMaybe<Scalars['String']['input']>;
2531
4022
  };
2532
4023
 
2533
- export type MutationSubmitScoreMyCallEntryArgs = {
2534
- fileName: Scalars['String']['input'];
2535
- fileType: Scalars['String']['input'];
2536
- formData: Scalars['String']['input'];
2537
- prospectName: Scalars['String']['input'];
2538
- shareRecording: Scalars['Boolean']['input'];
2539
- };
2540
-
2541
4024
  export type MutationSyncFormTemplateToFormsArgs = {
2542
4025
  formTemplateId: Scalars['String']['input'];
2543
4026
  };
@@ -2550,6 +4033,14 @@ export type MutationSyncPageTemplateToPagesArgs = {
2550
4033
  input: SyncPageTemplateToPagesInput;
2551
4034
  };
2552
4035
 
4036
+ export type MutationUpdateKeywordResearchKeywordsManualReviewArgs = {
4037
+ input: UpdateKeywordResearchKeywordsManualReviewInput;
4038
+ };
4039
+
4040
+ export type MutationUpdateKeywordResearchTopicsStatusArgs = {
4041
+ input: UpdateKeywordResearchTopicsStatusInput;
4042
+ };
4043
+
2553
4044
  export type MutationUploadFileArgs = {
2554
4045
  input: UploadFileInput;
2555
4046
  };
@@ -2558,6 +4049,14 @@ export type MutationVerifyEmailAddressArgs = {
2558
4049
  key: Scalars['String']['input'];
2559
4050
  };
2560
4051
 
4052
+ export type MutationVerifyEmailAddress2Args = {
4053
+ key: Scalars['String']['input'];
4054
+ };
4055
+
4056
+ export type OptionalActiveCampaignTagsSyncConfigUpdate = {
4057
+ value?: InputMaybe<Array<ActiveCampaignTagSyncConfigInput>>;
4058
+ };
4059
+
2561
4060
  /**
2562
4061
  * An input type for optionally updating an array of components. Although the interface is the same as that
2563
4062
  * of OptionalStringUpdate, semantically this is different and is parsed differently.
@@ -2602,6 +4101,14 @@ export const OptionalIdFilterOperator = {
2602
4101
 
2603
4102
  export type OptionalIdFilterOperator =
2604
4103
  (typeof OptionalIdFilterOperator)[keyof typeof OptionalIdFilterOperator];
4104
+ export type OptionalIntUpdate = {
4105
+ value?: InputMaybe<Scalars['Int']['input']>;
4106
+ };
4107
+
4108
+ export type OptionalSchemaOrgEntityUpdate = {
4109
+ value?: InputMaybe<SchemaOrgEntityInput>;
4110
+ };
4111
+
2605
4112
  /**
2606
4113
  * A filter for an optional string field. Either exists or filter must be provided but not both.
2607
4114
  * A value exists if it is not null. An empty string is considered to exist.
@@ -2621,6 +4128,12 @@ export type OptionalStringUpdate = {
2621
4128
  value?: InputMaybe<Scalars['String']['input']>;
2622
4129
  };
2623
4130
 
4131
+ export const OrderDirection = {
4132
+ Asc: 'Asc',
4133
+ Desc: 'Desc',
4134
+ } as const;
4135
+
4136
+ export type OrderDirection = (typeof OrderDirection)[keyof typeof OrderDirection];
2624
4137
  export type Org = {
2625
4138
  __typename?: 'Org';
2626
4139
  id: Scalars['String']['output'];
@@ -2653,16 +4166,24 @@ export type OrgsList = ListResult & {
2653
4166
 
2654
4167
  export type Page = {
2655
4168
  __typename?: 'Page';
2656
- bodyStyles: Scalars['String']['output'];
4169
+ aiGenerationStatus?: Maybe<AiGenerationStatus>;
4170
+ blogPostingMarkupMode: BlogPostingMarkupMode;
4171
+ bodyStyles?: Maybe<Scalars['String']['output']>;
2657
4172
  components: Scalars['String']['output'];
2658
4173
  /**
2659
4174
  * The fields that have been edited since the last time the page was synced with its template.
2660
4175
  * This field is set for every page, even if a page does not come from a page template.
2661
4176
  */
2662
4177
  editsToPageTemplate: Array<PageTemplateSyncedField>;
4178
+ enableLayout: Scalars['Boolean']['output'];
4179
+ featuredImageAssetVariant?: Maybe<AssetVariant>;
4180
+ featuredImageSource: ImageSettingSource;
4181
+ featuredImageUrl?: Maybe<Scalars['String']['output']>;
2663
4182
  id: Scalars['String']['output'];
2664
4183
  layout?: Maybe<Layout>;
4184
+ layoutId?: Maybe<Scalars['String']['output']>;
2665
4185
  metaDescription?: Maybe<Scalars['String']['output']>;
4186
+ metaImageAssetVariant?: Maybe<AssetVariant>;
2666
4187
  metaRobots: Array<Scalars['String']['output']>;
2667
4188
  metaTitle?: Maybe<Scalars['String']['output']>;
2668
4189
  pageTemplate?: Maybe<PageTemplate>;
@@ -2671,9 +4192,14 @@ export type Page = {
2671
4192
  productItem?: Maybe<Scalars['String']['output']>;
2672
4193
  props?: Maybe<Scalars['String']['output']>;
2673
4194
  public: Scalars['Boolean']['output'];
2674
- /** Either the same as layout if a layout is set, or the automatically matching layout based on path. */
4195
+ publishedAt?: Maybe<Scalars['Date']['output']>;
4196
+ /**
4197
+ * Either the same as layout if a layout is set and is published, or the automatically matching layout based on
4198
+ * this path and the layout's path prefix. This will only be a published layout.
4199
+ */
2675
4200
  resolvedLayout?: Maybe<Layout>;
2676
4201
  roles: Array<Scalars['String']['output']>;
4202
+ site: Site;
2677
4203
  status: PublishStatus;
2678
4204
  title: Scalars['String']['output'];
2679
4205
  versions: PageVersionsList;
@@ -2685,17 +4211,25 @@ export type PageVersionsArgs = {
2685
4211
  page?: InputMaybe<Scalars['Int']['input']>;
2686
4212
  };
2687
4213
 
4214
+ export type PagePreviewTokenResult = PagePreviewTokenSuccessResult | UserError;
4215
+
4216
+ export type PagePreviewTokenSuccessResult = {
4217
+ __typename?: 'PagePreviewTokenSuccessResult';
4218
+ token: Scalars['String']['output'];
4219
+ };
4220
+
2688
4221
  export type PageTemplate = {
2689
4222
  __typename?: 'PageTemplate';
2690
4223
  activatedAsPages: Array<Page>;
2691
- bodyStyles: Scalars['String']['output'];
4224
+ bodyStyles?: Maybe<Scalars['String']['output']>;
2692
4225
  components: Scalars['String']['output'];
2693
4226
  description?: Maybe<Scalars['String']['output']>;
2694
4227
  id: Scalars['String']['output'];
2695
4228
  metaDescription?: Maybe<Scalars['String']['output']>;
4229
+ metaImageAssetVariantId?: Maybe<Scalars['String']['output']>;
2696
4230
  metaRobots: Array<Scalars['String']['output']>;
2697
4231
  metaTitle?: Maybe<Scalars['String']['output']>;
2698
- path: Scalars['String']['output'];
4232
+ path?: Maybe<Scalars['String']['output']>;
2699
4233
  previewImageUrl?: Maybe<Scalars['String']['output']>;
2700
4234
  previewProps?: Maybe<Scalars['String']['output']>;
2701
4235
  propsSetupComponents?: Maybe<Scalars['String']['output']>;
@@ -2712,11 +4246,10 @@ export const PageTemplateSyncedField = {
2712
4246
  BodyStyles: 'BodyStyles',
2713
4247
  Components: 'Components',
2714
4248
  MetaDescription: 'MetaDescription',
4249
+ MetaImageAssetVariantId: 'MetaImageAssetVariantId',
2715
4250
  MetaImageUrl: 'MetaImageUrl',
2716
4251
  MetaRobots: 'MetaRobots',
2717
4252
  MetaTitle: 'MetaTitle',
2718
- Path: 'Path',
2719
- Title: 'Title',
2720
4253
  } as const;
2721
4254
 
2722
4255
  export type PageTemplateSyncedField =
@@ -2731,14 +4264,21 @@ export type PageTemplatesList = ListResult & {
2731
4264
 
2732
4265
  export type PageVersion = {
2733
4266
  __typename?: 'PageVersion';
4267
+ blogPostingMarkupMode?: Maybe<BlogPostingMarkupMode>;
2734
4268
  bodyStyles?: Maybe<Scalars['String']['output']>;
2735
4269
  byUser: UserProfile;
2736
4270
  changes: Array<PageVersionChange>;
2737
4271
  components?: Maybe<Scalars['String']['output']>;
2738
4272
  createdAt: Scalars['Date']['output'];
4273
+ enableLayout?: Maybe<Scalars['Boolean']['output']>;
4274
+ featuredImageAssetVariant?: Maybe<AssetVariant>;
4275
+ featuredImageSource?: Maybe<ImageSettingSource>;
4276
+ featuredImageUrl?: Maybe<Scalars['String']['output']>;
2739
4277
  id: Scalars['String']['output'];
2740
4278
  layout?: Maybe<Layout>;
2741
4279
  metaDescription?: Maybe<Scalars['String']['output']>;
4280
+ metaImageAssetVariant?: Maybe<AssetVariant>;
4281
+ metaImageAssetVariantId?: Maybe<Scalars['String']['output']>;
2742
4282
  metaImageUrl?: Maybe<Scalars['String']['output']>;
2743
4283
  metaRobots?: Maybe<Array<Scalars['String']['output']>>;
2744
4284
  metaTitle?: Maybe<Scalars['String']['output']>;
@@ -2747,17 +4287,23 @@ export type PageVersion = {
2747
4287
  productItem?: Maybe<Scalars['String']['output']>;
2748
4288
  props?: Maybe<Scalars['String']['output']>;
2749
4289
  public?: Maybe<Scalars['Boolean']['output']>;
4290
+ publishedAt?: Maybe<Scalars['Date']['output']>;
2750
4291
  roles?: Maybe<Array<Scalars['String']['output']>>;
2751
4292
  status?: Maybe<PublishStatus>;
2752
4293
  title?: Maybe<Scalars['String']['output']>;
2753
4294
  };
2754
4295
 
2755
4296
  export const PageVersionChange = {
4297
+ BlogPostingMarkupMode: 'BlogPostingMarkupMode',
2756
4298
  BodyStyles: 'BodyStyles',
2757
4299
  Components: 'Components',
2758
4300
  CustomFields: 'CustomFields',
4301
+ EnableLayout: 'EnableLayout',
4302
+ /** If set, then version has the updated featuredImageSource, featuredImageAssetVariantId, or featuredImageUrl. */
4303
+ FeaturedImage: 'FeaturedImage',
2759
4304
  LayoutId: 'LayoutId',
2760
4305
  MetaDescription: 'MetaDescription',
4306
+ MetaImageAssetVariantId: 'MetaImageAssetVariantId',
2761
4307
  MetaImageUrl: 'MetaImageUrl',
2762
4308
  MetaRobots: 'MetaRobots',
2763
4309
  MetaTitle: 'MetaTitle',
@@ -2766,6 +4312,7 @@ export const PageVersionChange = {
2766
4312
  ProductItem: 'ProductItem',
2767
4313
  Props: 'Props',
2768
4314
  Public: 'Public',
4315
+ PublishedAt: 'PublishedAt',
2769
4316
  Roles: 'Roles',
2770
4317
  Status: 'Status',
2771
4318
  Title: 'Title',
@@ -2786,9 +4333,12 @@ export type PagesList = ListResult & {
2786
4333
  totalCount: Scalars['Int']['output'];
2787
4334
  };
2788
4335
 
2789
- export type PasswordResetInfo = {
2790
- __typename?: 'PasswordResetInfo';
2791
- name: Scalars['String']['output'];
4336
+ export type PasswordResetInfoResult = PasswordResetInfoSuccessResult | UserError;
4337
+
4338
+ export type PasswordResetInfoSuccessResult = {
4339
+ __typename?: 'PasswordResetInfoSuccessResult';
4340
+ /** The user's first name. */
4341
+ firstName: Scalars['String']['output'];
2792
4342
  };
2793
4343
 
2794
4344
  export const PasswordStatus = {
@@ -2799,6 +4349,33 @@ export const PasswordStatus = {
2799
4349
  } as const;
2800
4350
 
2801
4351
  export type PasswordStatus = (typeof PasswordStatus)[keyof typeof PasswordStatus];
4352
+ export type PauseKeywordResearchJobResult = PauseKeywordResearchJobSuccessResult | UserError;
4353
+
4354
+ export type PauseKeywordResearchJobSuccessResult = {
4355
+ __typename?: 'PauseKeywordResearchJobSuccessResult';
4356
+ keywordResearchJob: KeywordResearchJob;
4357
+ };
4358
+
4359
+ export const PendingDomainStatus = {
4360
+ /** The domain's DNS records are still being checked. */
4361
+ CheckingDns: 'CheckingDns',
4362
+ /** The DNS check step has timed out. */
4363
+ CheckingDnsTimedOut: 'CheckingDnsTimedOut',
4364
+ /** The domain is verified but cannot be promoted because the domain is already in use by another site. */
4365
+ Duplicate: 'Duplicate',
4366
+ /** The domain check or TLS certificate provisioning failed. */
4367
+ Failed: 'Failed',
4368
+ /** The domain is verified but cannot be promoted because the site requires payment. */
4369
+ PaymentRequired: 'PaymentRequired',
4370
+ /** The subscription check step has timed out. */
4371
+ PaymentRequiredCheckTimedOut: 'PaymentRequiredCheckTimedOut',
4372
+ /** A TLS certificate is provisioning. */
4373
+ ProvisioningTls: 'ProvisioningTls',
4374
+ /** The TLS certificate provisioning step has timed out. */
4375
+ ProvisioningTlsTimedOut: 'ProvisioningTlsTimedOut',
4376
+ } as const;
4377
+
4378
+ export type PendingDomainStatus = (typeof PendingDomainStatus)[keyof typeof PendingDomainStatus];
2802
4379
  export type Permission = {
2803
4380
  __typename?: 'Permission';
2804
4381
  action: Scalars['String']['output'];
@@ -2815,79 +4392,6 @@ export type PermissionListUpdate = {
2815
4392
  value: Array<PermissionInput>;
2816
4393
  };
2817
4394
 
2818
- /** Temporary for the rename. */
2819
- export const PermissionName = {
2820
- /** Create (i.e., add) extensions. */
2821
- CreateExtension: 'CreateExtension',
2822
- /** Create extension versions for existing extensions. This includes deploying new code. */
2823
- CreateExtensionVersion: 'CreateExtensionVersion',
2824
- /** Create sites. */
2825
- CreateSite: 'CreateSite',
2826
- /** Create page and form templates. */
2827
- CreateTemplate: 'CreateTemplate',
2828
- /** Create a user in any org. */
2829
- CreateUser: 'CreateUser',
2830
- /** Edit or manage everything else not covered by other permissions. */
2831
- Edit: 'Edit',
2832
- /** Edit, including creating and deleting, any component. */
2833
- EditComponent: 'EditComponent',
2834
- /** Edit, including creating and deleting, any course. */
2835
- EditCourse: 'EditCourse',
2836
- /** Edit, including creating and deleting, any custom component. */
2837
- EditCustomComponent: 'EditCustomComponent',
2838
- /** Edit, including creating and deleting, any custom field. */
2839
- EditCustomField: 'EditCustomField',
2840
- /** Edit any customer site, including its pages and forms, but not necessarily domain. */
2841
- EditCustomerSite: 'EditCustomerSite',
2842
- /** Edit any extension. This does not include creating extension versions (i.e., deploying new code). */
2843
- EditExtension: 'EditExtension',
2844
- /** Edit any help ticket's status. */
2845
- EditHelpTicketStatus: 'EditHelpTicketStatus',
2846
- /** Edit any platform site, including its pages and forms, but not necessarily domain. */
2847
- EditPlatformSite: 'EditPlatformSite',
2848
- /** Edit, including creating and deleting, any sequence. */
2849
- EditSequence: 'EditSequence',
2850
- /** Edit any user's position in a sequence. */
2851
- EditSequenceUser: 'EditSequenceUser',
2852
- /** Edit any site's settings, pages, forms, and layouts. */
2853
- EditSite: 'EditSite',
2854
- /** Edit any site's domain. */
2855
- EditSiteDomain: 'EditSiteDomain',
2856
- /** Edit any site's TLS certificate, including creating and deleting certificates. Does not including editing TLS certificates. */
2857
- EditSiteTlsCertificate: 'EditSiteTlsCertificate',
2858
- /** Edit any subscription. */
2859
- EditSubscription: 'EditSubscription',
2860
- /** Edit any page and form template. */
2861
- EditTemplate: 'EditTemplate',
2862
- /** Edit any custom field of any user. */
2863
- EditUserCustomFields: 'EditUserCustomFields',
2864
- /** Edit any user's email address. */
2865
- EditUserEmail: 'EditUserEmail',
2866
- /** Edit which org any user is in and whether a user is an org owner. */
2867
- EditUserOrg: 'EditUserOrg',
2868
- /** Edit any user's first and last name. */
2869
- EditUserProfile: 'EditUserProfile',
2870
- /** Edit any user's role. */
2871
- EditUserRole: 'EditUserRole',
2872
- /** Edit any user's status. */
2873
- EditUserStatus: 'EditUserStatus',
2874
- /** Sync any form template to forms. */
2875
- SyncFormTemplateToForms: 'SyncFormTemplateToForms',
2876
- /** Sync any page template to pages. */
2877
- SyncPageTemplateToPages: 'SyncPageTemplateToPages',
2878
- /** View anything except for sites. */
2879
- View: 'View',
2880
- /** View any course. */
2881
- ViewCourse: 'ViewCourse',
2882
- /** View any extension. */
2883
- ViewExtension: 'ViewExtension',
2884
- /** View any site, including pages, forms, and layouts, and components. */
2885
- ViewSite: 'ViewSite',
2886
- /** View any page or form template. */
2887
- ViewTemplate: 'ViewTemplate',
2888
- } as const;
2889
-
2890
- export type PermissionName = (typeof PermissionName)[keyof typeof PermissionName];
2891
4395
  export type PersonalApiToken = {
2892
4396
  __typename?: 'PersonalApiToken';
2893
4397
  createdAt: Scalars['Date']['output'];
@@ -2908,23 +4412,35 @@ export type Platform = {
2908
4412
  activeCampaignApi?: Maybe<ActiveCampaignApi>;
2909
4413
  activeCampaignApiToken?: Maybe<Scalars['String']['output']>;
2910
4414
  activeCampaignApiUrl?: Maybe<Scalars['String']['output']>;
2911
- activeCampaignTagsSyncConfig?: Maybe<Array<ActiveCampaignTagsSyncConfig>>;
4415
+ activeCampaignTagsSyncConfig?: Maybe<Array<ActiveCampaignTagSyncConfig>>;
4416
+ /** All admins, including active and inactive. */
2912
4417
  admins: PlatformAdminUsersList;
2913
4418
  apiTokens: PlatformApiTokensList;
2914
- defaultFormNotificationEmailBodyTemplate: Scalars['String']['output'];
4419
+ defaultFormNotificationEmailBodyTemplate?: Maybe<Scalars['String']['output']>;
2915
4420
  emailReplyToAddress?: Maybe<Scalars['String']['output']>;
2916
- emailSendFromAddress: Scalars['String']['output'];
2917
- enableScoreMyCall: Scalars['Boolean']['output'];
4421
+ emailSendFromAddress?: Maybe<Scalars['String']['output']>;
4422
+ featureFlags: Array<Scalars['String']['output']>;
2918
4423
  handle: Scalars['String']['output'];
2919
4424
  id: Scalars['String']['output'];
4425
+ industryDomain?: Maybe<Scalars['String']['output']>;
2920
4426
  mainSiteId?: Maybe<Scalars['String']['output']>;
2921
4427
  mixpanelToken?: Maybe<Scalars['String']['output']>;
2922
4428
  name: Scalars['String']['output'];
4429
+ roles: Array<Role>;
2923
4430
  sendGridApiKey?: Maybe<Scalars['String']['output']>;
4431
+ siteBuildServiceRequests: SiteBuildServiceRequestsList;
4432
+ sitesCount: Scalars['Int']['output'];
4433
+ /**
4434
+ * The platform's sites product subscription status. Prefers an active status if there is one.
4435
+ * Will not return Canceled or Replaced statuses. Instead of those will return null.
4436
+ */
4437
+ sitesSubscriptionStatus?: Maybe<SubscriptionStatus>;
2924
4438
  stripeSecretKey?: Maybe<Scalars['String']['output']>;
2925
4439
  stripeWebhookSigningSecret?: Maybe<Scalars['String']['output']>;
4440
+ subscriptions: SubscriptionsList;
2926
4441
  webhookHelpTicketCreatedUrl?: Maybe<Scalars['String']['output']>;
2927
- webhookOrganizationPeerUserCreatedUrl?: Maybe<Scalars['String']['output']>;
4442
+ webhookOrgPeerUserCreatedUrl?: Maybe<Scalars['String']['output']>;
4443
+ /** @deprecated No longer supported for new platforms. */
2928
4444
  webhookRegisterUserSecret?: Maybe<Scalars['String']['output']>;
2929
4445
  webhookSubscriptionActivatedUrl?: Maybe<Scalars['String']['output']>;
2930
4446
  zendeskApiToken?: Maybe<Scalars['String']['output']>;
@@ -2936,6 +4452,10 @@ export type Platform = {
2936
4452
  zendeskWebhookSigningSecret?: Maybe<Scalars['String']['output']>;
2937
4453
  };
2938
4454
 
4455
+ export type PlatformSubscriptionsArgs = {
4456
+ status?: InputMaybe<Array<SubscriptionStatus>>;
4457
+ };
4458
+
2939
4459
  /** An object linking a platform and an admin user. */
2940
4460
  export type PlatformAdminUser = {
2941
4461
  __typename?: 'PlatformAdminUser';
@@ -2970,6 +4490,68 @@ export type PlatformApiTokensList = ListResult & {
2970
4490
  totalCount: Scalars['Int']['output'];
2971
4491
  };
2972
4492
 
4493
+ export type PlatformsList = ListResult & {
4494
+ __typename?: 'PlatformsList';
4495
+ limit: Scalars['Int']['output'];
4496
+ platforms: Array<Platform>;
4497
+ totalCount: Scalars['Int']['output'];
4498
+ };
4499
+
4500
+ export type PostAiDesignerChatUserMessageAbortedResult = {
4501
+ __typename?: 'PostAiDesignerChatUserMessageAbortedResult';
4502
+ /** The ID of the message that was aborted. */
4503
+ messageId: Scalars['String']['output'];
4504
+ /** The updated thread at the time the request was aborted. */
4505
+ thread?: Maybe<AiDesignerChatThread>;
4506
+ };
4507
+
4508
+ export type PostAiDesignerChatUserMessageFocusedComponentInput = {
4509
+ id: Scalars['String']['input'];
4510
+ name: Scalars['String']['input'];
4511
+ };
4512
+
4513
+ export type PostAiDesignerChatUserMessageInput = {
4514
+ attachmentUrls?: InputMaybe<Array<Scalars['String']['input']>>;
4515
+ focusedComponent?: InputMaybe<PostAiDesignerChatUserMessageFocusedComponentInput>;
4516
+ /** A client-generated ID using Wirechunk’s clean small ID format. */
4517
+ messageId: Scalars['String']['input'];
4518
+ mode: AiDesignerChatMessageUserMode;
4519
+ objectId: Scalars['String']['input'];
4520
+ /** The title of the object for which we are generating, such as 'Home' or 'Contact Us'. */
4521
+ objectTitle: Scalars['String']['input'];
4522
+ /**
4523
+ * The type of object for which we are generating.
4524
+ * This field is assumed to not change for a thread.
4525
+ */
4526
+ objectType: DesignerObjectType;
4527
+ platformId: Scalars['String']['input'];
4528
+ /**
4529
+ * When provided, this field is used to determine the site being designed. If not provided, the
4530
+ * site is determined based on the objectType and objectId. If no site can be identified, the AI
4531
+ * will not have a site in context.
4532
+ */
4533
+ siteId?: InputMaybe<Scalars['String']['input']>;
4534
+ /** A JSON array. */
4535
+ startingComponents: Scalars['String']['input'];
4536
+ textContent: Scalars['String']['input'];
4537
+ /** A client-generated ID using Wirechunk’s clean small ID format. */
4538
+ threadId: Scalars['String']['input'];
4539
+ };
4540
+
4541
+ export type PostAiDesignerChatUserMessageResult =
4542
+ | AuthorizationError
4543
+ | InternalError
4544
+ | PostAiDesignerChatUserMessageAbortedResult
4545
+ | PostAiDesignerChatUserMessageSuccessResult
4546
+ | UserError;
4547
+
4548
+ export type PostAiDesignerChatUserMessageSuccessResult = {
4549
+ __typename?: 'PostAiDesignerChatUserMessageSuccessResult';
4550
+ /** A JSON array of components. */
4551
+ outputComponents?: Maybe<Scalars['String']['output']>;
4552
+ thread: AiDesignerChatThread;
4553
+ };
4554
+
2973
4555
  export type PreviewStripeCoupon = {
2974
4556
  __typename?: 'PreviewStripeCoupon';
2975
4557
  amountOff?: Maybe<Scalars['String']['output']>;
@@ -2984,18 +4566,21 @@ export type PreviewStripeCoupon = {
2984
4566
 
2985
4567
  export type PreviewStripePromoCode = {
2986
4568
  __typename?: 'PreviewStripePromoCode';
4569
+ active: Scalars['Boolean']['output'];
2987
4570
  coupon: PreviewStripeCoupon;
2988
- valid: Scalars['Boolean']['output'];
2989
4571
  };
2990
4572
 
2991
- export type PreviewStripeUpcomingInvoiceErrorResult = {
2992
- __typename?: 'PreviewStripeUpcomingInvoiceErrorResult';
4573
+ /** Also possibly user error, but more precise so that the UI can show a better error message. */
4574
+ export type PreviewStripeUpcomingInvoicePromoCodeErrorResult = {
4575
+ __typename?: 'PreviewStripeUpcomingInvoicePromoCodeErrorResult';
2993
4576
  message: Scalars['String']['output'];
2994
4577
  };
2995
4578
 
2996
4579
  export type PreviewStripeUpcomingInvoiceResult =
2997
- | PreviewStripeUpcomingInvoiceErrorResult
2998
- | PreviewStripeUpcomingInvoiceSuccessResult;
4580
+ | InternalError
4581
+ | PreviewStripeUpcomingInvoicePromoCodeErrorResult
4582
+ | PreviewStripeUpcomingInvoiceSuccessResult
4583
+ | UserError;
2999
4584
 
3000
4585
  export type PreviewStripeUpcomingInvoiceSuccessResult = {
3001
4586
  __typename?: 'PreviewStripeUpcomingInvoiceSuccessResult';
@@ -3008,6 +4593,24 @@ export type PreviewStripeUpcomingInvoiceSuccessResult = {
3008
4593
  total: Scalars['String']['output'];
3009
4594
  };
3010
4595
 
4596
+ export type Product = {
4597
+ __typename?: 'Product';
4598
+ alternativeStripePriceIds: Array<Scalars['String']['output']>;
4599
+ archived: Scalars['Boolean']['output'];
4600
+ description?: Maybe<Scalars['String']['output']>;
4601
+ displayName?: Maybe<Scalars['String']['output']>;
4602
+ durationDays?: Maybe<Scalars['Int']['output']>;
4603
+ endAt?: Maybe<Scalars['Date']['output']>;
4604
+ id: Scalars['String']['output'];
4605
+ /** The invoice frequency for this plan. This will be null for plans that have a price of 0. */
4606
+ invoiceFrequency?: Maybe<InvoiceFrequency>;
4607
+ items: Array<Scalars['String']['output']>;
4608
+ name: Scalars['String']['output'];
4609
+ price: Scalars['String']['output'];
4610
+ promoCodes: Array<PromoCode>;
4611
+ stripePriceId?: Maybe<Scalars['String']['output']>;
4612
+ };
4613
+
3011
4614
  export type ProductItemOccurrences = {
3012
4615
  __typename?: 'ProductItemOccurrences';
3013
4616
  documents: DocumentsList;
@@ -3031,10 +4634,20 @@ export type ProductItemPicklist = ListResult & {
3031
4634
  totalCount: Scalars['Int']['output'];
3032
4635
  };
3033
4636
 
4637
+ /** This type limits the type of data that can be queried from a Product. */
4638
+ export type ProductProfile = {
4639
+ __typename?: 'ProductProfile';
4640
+ displayName?: Maybe<Scalars['String']['output']>;
4641
+ /** The ID of a Product. */
4642
+ id: Scalars['String']['output'];
4643
+ items: Array<Scalars['String']['output']>;
4644
+ name: Scalars['String']['output'];
4645
+ };
4646
+
3034
4647
  export type ProductsList = ListResult & {
3035
4648
  __typename?: 'ProductsList';
3036
4649
  limit: Scalars['Int']['output'];
3037
- products: Array<SubscriptionPlan>;
4650
+ products: Array<Product>;
3038
4651
  totalCount: Scalars['Int']['output'];
3039
4652
  };
3040
4653
 
@@ -3064,35 +4677,31 @@ export const PromoCodeType = {
3064
4677
  } as const;
3065
4678
 
3066
4679
  export type PromoCodeType = (typeof PromoCodeType)[keyof typeof PromoCodeType];
4680
+ export type PublicDocument = {
4681
+ __typename?: 'PublicDocument';
4682
+ currentVersion?: Maybe<File>;
4683
+ downloadPrompt?: Maybe<DocumentDownloadPrompt>;
4684
+ id: Scalars['String']['output'];
4685
+ name: Scalars['String']['output'];
4686
+ };
4687
+
3067
4688
  export type PublicSite = {
3068
4689
  __typename?: 'PublicSite';
3069
- addressCity?: Maybe<Scalars['String']['output']>;
3070
- addressLine1?: Maybe<Scalars['String']['output']>;
3071
- addressLine2?: Maybe<Scalars['String']['output']>;
3072
- addressState?: Maybe<Scalars['String']['output']>;
3073
- addressZip?: Maybe<Scalars['String']['output']>;
3074
- agencyPrimaryPhone?: Maybe<Scalars['String']['output']>;
3075
- agentFirstName?: Maybe<Scalars['String']['output']>;
3076
- agentLastName?: Maybe<Scalars['String']['output']>;
3077
- agentPhotoUrl?: Maybe<Scalars['String']['output']>;
3078
4690
  custom: CustomFieldValuesList;
3079
4691
  domain: Scalars['String']['output'];
3080
- form: PublicSiteForm;
3081
- googlePlaceId?: Maybe<Scalars['String']['output']>;
4692
+ form?: Maybe<PublicSiteForm>;
3082
4693
  id: Scalars['String']['output'];
3083
4694
  latestAgreement?: Maybe<Agreement>;
3084
- /** The layout with the longest pathPrefix that matches the specified path. */
4695
+ /** The layout with the longest pathPrefix that matches the specified path. The path must not have leading or trailing slashes. */
3085
4696
  layoutForPath?: Maybe<Layout>;
3086
- logoIconUrl?: Maybe<Scalars['String']['output']>;
4697
+ /** The resolved featured logo URL. */
3087
4698
  logoUrl?: Maybe<Scalars['String']['output']>;
3088
4699
  name: Scalars['String']['output'];
3089
- /** Get a published page by path. */
4700
+ /** Get a published page by path. The path must not have leading or trailing slashes. */
3090
4701
  page?: Maybe<PublicSitePage>;
3091
4702
  /** Get published pages, optionally filtering by a path prefix. */
3092
4703
  pages: PublicSitePagesList;
3093
4704
  platformId: Scalars['String']['output'];
3094
- useCustomPrivacyPolicy: Scalars['Boolean']['output'];
3095
- useCustomTermsOfUse: Scalars['Boolean']['output'];
3096
4705
  };
3097
4706
 
3098
4707
  export type PublicSiteFormArgs = {
@@ -3113,6 +4722,7 @@ export type PublicSitePageArgs = {
3113
4722
 
3114
4723
  export type PublicSitePagesArgs = {
3115
4724
  limit?: InputMaybe<Scalars['Int']['input']>;
4725
+ orderBy?: InputMaybe<Array<SitePagesOrder>>;
3116
4726
  page?: InputMaybe<Scalars['Int']['input']>;
3117
4727
  pathPrefix?: InputMaybe<Scalars['String']['input']>;
3118
4728
  };
@@ -3122,23 +4732,30 @@ export type PublicSiteForm = {
3122
4732
  components: Scalars['String']['output'];
3123
4733
  confirmationAction: ConfirmationAction;
3124
4734
  confirmationMessageComponents?: Maybe<Scalars['String']['output']>;
3125
- confirmationRedirectParameters: Array<FormConfirmationRedirectUrlParameter>;
3126
4735
  confirmationRedirectUrl?: Maybe<Scalars['String']['output']>;
4736
+ confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameter>;
3127
4737
  id: Scalars['String']['output'];
3128
4738
  /** Only the enabled steps. */
3129
4739
  steps: Array<FormStep>;
4740
+ trackSubmissionAsLead: Scalars['Boolean']['output'];
3130
4741
  };
3131
4742
 
3132
4743
  export type PublicSitePage = {
3133
4744
  __typename?: 'PublicSitePage';
3134
- bodyStyles: Scalars['String']['output'];
4745
+ bodyStyles?: Maybe<Scalars['String']['output']>;
3135
4746
  components: Scalars['String']['output'];
4747
+ /** The resolved featured image’s URL. */
4748
+ featuredImageUrl?: Maybe<Scalars['String']['output']>;
3136
4749
  id: Scalars['String']['output'];
3137
4750
  metaDescription?: Maybe<Scalars['String']['output']>;
4751
+ /** The resolved meta image URL. */
4752
+ metaImageUrl?: Maybe<Scalars['String']['output']>;
3138
4753
  metaRobots: Array<Scalars['String']['output']>;
3139
4754
  metaTitle?: Maybe<Scalars['String']['output']>;
3140
4755
  path: Scalars['String']['output'];
3141
4756
  props?: Maybe<Scalars['String']['output']>;
4757
+ publishedAt: Scalars['Date']['output'];
4758
+ /** Resolved the same way as for the Page type. */
3142
4759
  resolvedLayout?: Maybe<Layout>;
3143
4760
  title: Scalars['String']['output'];
3144
4761
  };
@@ -3150,9 +4767,22 @@ export type PublicSitePagesList = ListResult & {
3150
4767
  totalCount: Scalars['Int']['output'];
3151
4768
  };
3152
4769
 
4770
+ export type PublishAssetVariantVersionInput = {
4771
+ id: Scalars['String']['input'];
4772
+ };
4773
+
4774
+ export type PublishAssetVariantVersionResult =
4775
+ | AuthorizationError
4776
+ | PublishAssetVariantVersionSuccessResult
4777
+ | UserError;
4778
+
4779
+ export type PublishAssetVariantVersionSuccessResult = {
4780
+ __typename?: 'PublishAssetVariantVersionSuccessResult';
4781
+ assetVariant: AssetVariant;
4782
+ };
4783
+
3153
4784
  export const PublishStatus = {
3154
- /** TODO: Replace Deleted with Archived. */
3155
- Deleted: 'Deleted',
4785
+ Archived: 'Archived',
3156
4786
  Draft: 'Draft',
3157
4787
  Published: 'Published',
3158
4788
  } as const;
@@ -3165,23 +4795,33 @@ export type PublishStatusUpdate = {
3165
4795
  export type Query = {
3166
4796
  __typename?: 'Query';
3167
4797
  adminMe?: Maybe<AdminUser>;
4798
+ aiDesignerChatThread?: Maybe<AiDesignerChatThread>;
4799
+ aiTrainingSample?: Maybe<AiTrainingSample>;
4800
+ aiTrainingSamples: AiTrainingSamplesList;
3168
4801
  applyCustomPromoCode: ApplyCustomPromoCodeResult;
4802
+ asset?: Maybe<Asset>;
4803
+ assetVariant?: Maybe<AssetVariant>;
4804
+ /** List assets. Requires the admin Asset:view permission. */
4805
+ assets: AssetsList;
3169
4806
  /**
3170
4807
  * Get active components that can be used for the visual builder on a platform. Results include built-in,
3171
4808
  * custom, and remote extension-provided components.
4809
+ * TODO: objectType is optional temporarily.
3172
4810
  */
3173
4811
  builderComponents: BuilderComponentsList;
3174
- component: Component;
4812
+ component?: Maybe<Component>;
3175
4813
  components: ComponentsList;
3176
4814
  course: Course;
3177
4815
  courses: CoursesList;
3178
4816
  customTable?: Maybe<CustomTable>;
3179
4817
  customTables: CustomTablesList;
3180
- document: Document;
4818
+ designerObjects: Array<DesignerObject>;
4819
+ document?: Maybe<Document>;
3181
4820
  documentDownloadPrompts: Array<DocumentDownloadPrompt>;
3182
4821
  documents: Array<Document>;
4822
+ extension: Extension;
3183
4823
  extensions: ExtensionsList;
3184
- file: File;
4824
+ file?: Maybe<File>;
3185
4825
  form: Form;
3186
4826
  formEntries: FormEntriesList;
3187
4827
  formTemplate: FormTemplate;
@@ -3191,6 +4831,7 @@ export type Query = {
3191
4831
  * Get help tickets. For a user without the View permission on the specified platform, only the user’s own
3192
4832
  * help tickets are returned (and platformId needs to be the user’s own platform ID).
3193
4833
  */
4834
+ googleFonts: GoogleFontsList;
3194
4835
  helpTickets: HelpTicketsList;
3195
4836
  /**
3196
4837
  * Get an object with the form data with which to initialize the specified form. The result factors
@@ -3198,6 +4839,12 @@ export type Query = {
3198
4839
  * which the form is being shown.
3199
4840
  */
3200
4841
  initialFormData: InitialFormData;
4842
+ keywordResearchClusteringJobs: Array<KeywordResearchClusteringJob>;
4843
+ keywordResearchJob?: Maybe<KeywordResearchJob>;
4844
+ keywordResearchJobs: Array<KeywordResearchJob>;
4845
+ keywordResearchKeywords: KeywordResearchKeywordsList;
4846
+ keywordResearchSeedKeywords: Array<KeywordResearchSeedKeyword>;
4847
+ keywordResearchTopics: KeywordResearchTopicsList;
3201
4848
  layout: Layout;
3202
4849
  layoutTemplate: LayoutTemplate;
3203
4850
  layouts: LayoutsList;
@@ -3208,26 +4855,27 @@ export type Query = {
3208
4855
  multiOrgView: Array<Org>;
3209
4856
  organization: Org;
3210
4857
  organizations: OrgsList;
3211
- page: Page;
4858
+ page?: Maybe<Page>;
4859
+ pagePreviewToken: PagePreviewTokenResult;
3212
4860
  /** Get a page template. For unauthenticated requests, a template is returned only if it's published. */
3213
4861
  pageTemplate: PageTemplate;
3214
4862
  pageTemplates: PageTemplatesList;
3215
- pageTemplates2: PageTemplatesList;
3216
- passwordResetInfo: PasswordResetInfo;
4863
+ passwordResetInfo: PasswordResetInfoResult;
3217
4864
  platform: Platform;
4865
+ platforms: PlatformsList;
3218
4866
  previewStripeUpcomingInvoice: PreviewStripeUpcomingInvoiceResult;
3219
4867
  productItemOccurrences: ProductItemOccurrences;
3220
4868
  productItemPicklist: ProductItemPicklist;
3221
4869
  products: ProductsList;
3222
4870
  promoCodePicklist: PromoCodePicklist;
3223
- publicSite: PublicSite;
3224
- remoteComponent: RemoteComponent;
4871
+ publicDocument?: Maybe<PublicDocument>;
4872
+ publicSite?: Maybe<PublicSite>;
4873
+ remoteComponent?: Maybe<RemoteComponent>;
3225
4874
  reviews: ReviewsList;
3226
- scoreMyCallEntries: Array<ScoreMyCallEntry>;
3227
- scoreMyCallEntryFileUrl: Scalars['String']['output'];
3228
4875
  sequence: Sequence;
3229
4876
  sequences: SequencesList;
3230
- site: Site;
4877
+ site?: Maybe<Site>;
4878
+ siteClimberSubscriptions: SiteClimberSubscriptionListResult;
3231
4879
  siteTemplate: SiteTemplate;
3232
4880
  siteTemplates: SiteTemplatesList;
3233
4881
  sites: SitesList;
@@ -3239,19 +4887,44 @@ export type Query = {
3239
4887
  * as the input IDs.
3240
4888
  */
3241
4889
  subscriptionCheckoutOptions: Array<SubscriptionCheckoutOption>;
3242
- subscriptionPlan: SubscriptionPlan;
4890
+ subscriptionPlan: Product;
3243
4891
  subscriptions: SubscriptionsList;
3244
4892
  user: User;
3245
4893
  userAuditLogs: UserAuditLogsList;
3246
4894
  users: UsersList;
3247
4895
  };
3248
4896
 
4897
+ export type QueryAiDesignerChatThreadArgs = {
4898
+ id: Scalars['String']['input'];
4899
+ };
4900
+
4901
+ export type QueryAiTrainingSampleArgs = {
4902
+ id: Scalars['String']['input'];
4903
+ };
4904
+
3249
4905
  export type QueryApplyCustomPromoCodeArgs = {
3250
4906
  promoCode: Scalars['String']['input'];
3251
4907
  subscriptionPlanId: Scalars['String']['input'];
3252
4908
  };
3253
4909
 
4910
+ export type QueryAssetArgs = {
4911
+ id: Scalars['String']['input'];
4912
+ };
4913
+
4914
+ export type QueryAssetVariantArgs = {
4915
+ id: Scalars['String']['input'];
4916
+ };
4917
+
4918
+ export type QueryAssetsArgs = {
4919
+ archived?: InputMaybe<Scalars['Boolean']['input']>;
4920
+ limit?: InputMaybe<Scalars['Int']['input']>;
4921
+ page?: InputMaybe<Scalars['Int']['input']>;
4922
+ platformId: Scalars['String']['input'];
4923
+ type?: InputMaybe<AssetType>;
4924
+ };
4925
+
3254
4926
  export type QueryBuilderComponentsArgs = {
4927
+ objectType: DesignerObjectType;
3255
4928
  platformId: Scalars['String']['input'];
3256
4929
  };
3257
4930
 
@@ -3286,6 +4959,11 @@ export type QueryCustomTablesArgs = {
3286
4959
  platformId: Scalars['String']['input'];
3287
4960
  };
3288
4961
 
4962
+ export type QueryDesignerObjectsArgs = {
4963
+ ids: Array<DesignerObjectIdInput>;
4964
+ platformId: Scalars['String']['input'];
4965
+ };
4966
+
3289
4967
  export type QueryDocumentArgs = {
3290
4968
  id: Scalars['String']['input'];
3291
4969
  };
@@ -3298,6 +4976,10 @@ export type QueryDocumentsArgs = {
3298
4976
  platformId: Scalars['String']['input'];
3299
4977
  };
3300
4978
 
4979
+ export type QueryExtensionArgs = {
4980
+ id: Scalars['String']['input'];
4981
+ };
4982
+
3301
4983
  export type QueryExtensionsArgs = {
3302
4984
  limit?: InputMaybe<Scalars['Int']['input']>;
3303
4985
  page?: InputMaybe<Scalars['Int']['input']>;
@@ -3318,6 +5000,7 @@ export type QueryFormEntriesArgs = {
3318
5000
  limit?: InputMaybe<Scalars['Int']['input']>;
3319
5001
  page?: InputMaybe<Scalars['Int']['input']>;
3320
5002
  siteId: Scalars['String']['input'];
5003
+ spam?: InputMaybe<Scalars['Boolean']['input']>;
3321
5004
  toDate?: InputMaybe<Scalars['Date']['input']>;
3322
5005
  };
3323
5006
 
@@ -3335,8 +5018,8 @@ export type QueryFormsArgs = {
3335
5018
  };
3336
5019
 
3337
5020
  export type QueryHelpTicketsArgs = {
3338
- limit?: Scalars['Int']['input'];
3339
- page?: Scalars['Int']['input'];
5021
+ limit?: InputMaybe<Scalars['Int']['input']>;
5022
+ page?: InputMaybe<Scalars['Int']['input']>;
3340
5023
  platformId: Scalars['String']['input'];
3341
5024
  };
3342
5025
 
@@ -3346,6 +5029,36 @@ export type QueryInitialFormDataArgs = {
3346
5029
  pageUrl: Scalars['String']['input'];
3347
5030
  };
3348
5031
 
5032
+ export type QueryKeywordResearchClusteringJobsArgs = {
5033
+ keywordResearchJobId: Scalars['String']['input'];
5034
+ };
5035
+
5036
+ export type QueryKeywordResearchJobArgs = {
5037
+ id: Scalars['String']['input'];
5038
+ };
5039
+
5040
+ export type QueryKeywordResearchJobsArgs = {
5041
+ siteId: Scalars['String']['input'];
5042
+ };
5043
+
5044
+ export type QueryKeywordResearchKeywordsArgs = {
5045
+ jobId: Scalars['String']['input'];
5046
+ limit?: InputMaybe<Scalars['Int']['input']>;
5047
+ onlyRelevant?: InputMaybe<Scalars['Boolean']['input']>;
5048
+ page?: InputMaybe<Scalars['Int']['input']>;
5049
+ search?: InputMaybe<Scalars['String']['input']>;
5050
+ };
5051
+
5052
+ export type QueryKeywordResearchSeedKeywordsArgs = {
5053
+ jobId: Scalars['String']['input'];
5054
+ };
5055
+
5056
+ export type QueryKeywordResearchTopicsArgs = {
5057
+ limit?: InputMaybe<Scalars['Int']['input']>;
5058
+ page?: InputMaybe<Scalars['Int']['input']>;
5059
+ sourceKeywordResearchJobId: Scalars['String']['input'];
5060
+ };
5061
+
3349
5062
  export type QueryLayoutArgs = {
3350
5063
  id: Scalars['String']['input'];
3351
5064
  };
@@ -3387,6 +5100,10 @@ export type QueryPageArgs = {
3387
5100
  id: Scalars['String']['input'];
3388
5101
  };
3389
5102
 
5103
+ export type QueryPagePreviewTokenArgs = {
5104
+ pageId: Scalars['String']['input'];
5105
+ };
5106
+
3390
5107
  export type QueryPageTemplateArgs = {
3391
5108
  id: Scalars['String']['input'];
3392
5109
  };
@@ -3398,13 +5115,6 @@ export type QueryPageTemplatesArgs = {
3398
5115
  status?: InputMaybe<Array<PublishStatus>>;
3399
5116
  };
3400
5117
 
3401
- export type QueryPageTemplates2Args = {
3402
- id?: InputMaybe<IdFilter>;
3403
- platformId: Scalars['String']['input'];
3404
- siteTemplateId?: InputMaybe<StringListFilter>;
3405
- status?: InputMaybe<Array<PublishStatus>>;
3406
- };
3407
-
3408
5118
  export type QueryPasswordResetInfoArgs = {
3409
5119
  key: Scalars['String']['input'];
3410
5120
  };
@@ -3413,7 +5123,14 @@ export type QueryPlatformArgs = {
3413
5123
  id: Scalars['String']['input'];
3414
5124
  };
3415
5125
 
5126
+ export type QueryPlatformsArgs = {
5127
+ limit?: InputMaybe<Scalars['Int']['input']>;
5128
+ page?: InputMaybe<Scalars['Int']['input']>;
5129
+ search?: InputMaybe<Scalars['String']['input']>;
5130
+ };
5131
+
3416
5132
  export type QueryPreviewStripeUpcomingInvoiceArgs = {
5133
+ hostManagedPlatformId?: InputMaybe<Scalars['String']['input']>;
3417
5134
  promoCode?: InputMaybe<Scalars['String']['input']>;
3418
5135
  subscriptionPlanId: Scalars['String']['input'];
3419
5136
  };
@@ -3430,8 +5147,8 @@ export type QueryProductItemPicklistArgs = {
3430
5147
  };
3431
5148
 
3432
5149
  export type QueryProductsArgs = {
3433
- limit?: Scalars['Int']['input'];
3434
- page?: Scalars['Int']['input'];
5150
+ limit?: InputMaybe<Scalars['Int']['input']>;
5151
+ page?: InputMaybe<Scalars['Int']['input']>;
3435
5152
  platformId: Scalars['String']['input'];
3436
5153
  };
3437
5154
 
@@ -3439,6 +5156,10 @@ export type QueryPromoCodePicklistArgs = {
3439
5156
  platformId: Scalars['String']['input'];
3440
5157
  };
3441
5158
 
5159
+ export type QueryPublicDocumentArgs = {
5160
+ id: Scalars['String']['input'];
5161
+ };
5162
+
3442
5163
  export type QueryPublicSiteArgs = {
3443
5164
  id: Scalars['String']['input'];
3444
5165
  };
@@ -3454,16 +5175,6 @@ export type QueryReviewsArgs = {
3454
5175
  siteId: Scalars['String']['input'];
3455
5176
  };
3456
5177
 
3457
- export type QueryScoreMyCallEntriesArgs = {
3458
- platformId: Scalars['String']['input'];
3459
- shareRecording?: InputMaybe<Scalars['Boolean']['input']>;
3460
- };
3461
-
3462
- export type QueryScoreMyCallEntryFileUrlArgs = {
3463
- download?: InputMaybe<Scalars['Boolean']['input']>;
3464
- entryId: Scalars['String']['input'];
3465
- };
3466
-
3467
5178
  export type QuerySequenceArgs = {
3468
5179
  id: Scalars['String']['input'];
3469
5180
  };
@@ -3476,6 +5187,11 @@ export type QuerySiteArgs = {
3476
5187
  id: Scalars['String']['input'];
3477
5188
  };
3478
5189
 
5190
+ export type QuerySiteClimberSubscriptionsArgs = {
5191
+ limit?: InputMaybe<Scalars['Int']['input']>;
5192
+ page?: InputMaybe<Scalars['Int']['input']>;
5193
+ };
5194
+
3479
5195
  export type QuerySiteTemplateArgs = {
3480
5196
  id: Scalars['String']['input'];
3481
5197
  };
@@ -3562,6 +5278,18 @@ export type RemoteComponent = {
3562
5278
  url: Scalars['String']['output'];
3563
5279
  };
3564
5280
 
5281
+ export type ResetPasswordInput = {
5282
+ key: Scalars['String']['input'];
5283
+ password: Scalars['String']['input'];
5284
+ };
5285
+
5286
+ export type ResetPasswordResult = ResetPasswordSuccessResult | UserError;
5287
+
5288
+ export type ResetPasswordSuccessResult = {
5289
+ __typename?: 'ResetPasswordSuccessResult';
5290
+ user: User;
5291
+ };
5292
+
3565
5293
  export type RestoreCourseVersionChangesInput = {
3566
5294
  changes: Array<CourseVersionChange>;
3567
5295
  courseVersionId: Scalars['String']['input'];
@@ -3578,6 +5306,21 @@ export type RestoreCourseVersionChangesSuccessResult = {
3578
5306
  course: Course;
3579
5307
  };
3580
5308
 
5309
+ export type RestoreFormVersionChangesInput = {
5310
+ changes: Array<FormVersionChange>;
5311
+ formVersionId: Scalars['String']['input'];
5312
+ };
5313
+
5314
+ export type RestoreFormVersionChangesResult =
5315
+ | InternalError
5316
+ | RestoreFormVersionChangesSuccessResult
5317
+ | UserError;
5318
+
5319
+ export type RestoreFormVersionChangesSuccessResult = {
5320
+ __typename?: 'RestoreFormVersionChangesSuccessResult';
5321
+ form: Form;
5322
+ };
5323
+
3581
5324
  export type RestoreLessonVersionChangesInput = {
3582
5325
  changes: Array<LessonVersionChange>;
3583
5326
  lessonVersionId: Scalars['String']['input'];
@@ -3610,6 +5353,22 @@ export type RestorePageVersionChangesSuccessResult = {
3610
5353
  page: Page;
3611
5354
  };
3612
5355
 
5356
+ export type ResumeKeywordResearchJobResult = ResumeKeywordResearchJobSuccessResult | UserError;
5357
+
5358
+ export type ResumeKeywordResearchJobSuccessResult = {
5359
+ __typename?: 'ResumeKeywordResearchJobSuccessResult';
5360
+ keywordResearchJob: KeywordResearchJob;
5361
+ };
5362
+
5363
+ export type RetryKeywordResearchSeedKeywordsResult =
5364
+ | RetryKeywordResearchSeedKeywordsSuccessResult
5365
+ | UserError;
5366
+
5367
+ export type RetryKeywordResearchSeedKeywordsSuccessResult = {
5368
+ __typename?: 'RetryKeywordResearchSeedKeywordsSuccessResult';
5369
+ keywordResearchJob: KeywordResearchJob;
5370
+ };
5371
+
3613
5372
  export type Review = {
3614
5373
  __typename?: 'Review';
3615
5374
  createdAt: Scalars['Date']['output'];
@@ -3632,25 +5391,42 @@ export type RichTextInput = {
3632
5391
  delta: Scalars['String']['input'];
3633
5392
  };
3634
5393
 
3635
- export type ScoreMyCallEntry = {
3636
- __typename?: 'ScoreMyCallEntry';
3637
- createdAt: Scalars['Date']['output'];
3638
- formData: Scalars['String']['output'];
5394
+ export type Role = {
5395
+ __typename?: 'Role';
5396
+ default: Scalars['Boolean']['output'];
3639
5397
  id: Scalars['String']['output'];
3640
- prospectName?: Maybe<Scalars['String']['output']>;
3641
- shareRecording: Scalars['Boolean']['output'];
3642
- status: ScoreMyCallEntryStatus;
3643
- user: User;
3644
- userId: Scalars['String']['output'];
5398
+ name: Scalars['String']['output'];
5399
+ };
5400
+
5401
+ export type RoleInput = {
5402
+ default: Scalars['Boolean']['input'];
5403
+ id: Scalars['String']['input'];
5404
+ name: Scalars['String']['input'];
5405
+ };
5406
+
5407
+ export type RolesUpdate = {
5408
+ value: Array<RoleInput>;
5409
+ };
5410
+
5411
+ export type SchemaOrgEntity = {
5412
+ __typename?: 'SchemaOrgEntity';
5413
+ name: Scalars['String']['output'];
5414
+ type: SchemaOrgEntityType;
5415
+ url?: Maybe<Scalars['String']['output']>;
5416
+ };
5417
+
5418
+ export type SchemaOrgEntityInput = {
5419
+ name: Scalars['String']['input'];
5420
+ type: SchemaOrgEntityType;
5421
+ url?: InputMaybe<Scalars['String']['input']>;
3645
5422
  };
3646
5423
 
3647
- export const ScoreMyCallEntryStatus = {
3648
- NotReviewed: 'NotReviewed',
3649
- Reviewed: 'Reviewed',
5424
+ export const SchemaOrgEntityType = {
5425
+ Organization: 'Organization',
5426
+ Person: 'Person',
3650
5427
  } as const;
3651
5428
 
3652
- export type ScoreMyCallEntryStatus =
3653
- (typeof ScoreMyCallEntryStatus)[keyof typeof ScoreMyCallEntryStatus];
5429
+ export type SchemaOrgEntityType = (typeof SchemaOrgEntityType)[keyof typeof SchemaOrgEntityType];
3654
5430
  export type Sequence = {
3655
5431
  __typename?: 'Sequence';
3656
5432
  id: Scalars['String']['output'];
@@ -3682,29 +5458,91 @@ export type SequencesList = ListResult & {
3682
5458
  totalCount: Scalars['Int']['output'];
3683
5459
  };
3684
5460
 
5461
+ export type SignInAlreadySignedInResult = {
5462
+ __typename?: 'SignInAlreadySignedInResult';
5463
+ user: User;
5464
+ };
5465
+
5466
+ export type SignInEmailNotFoundResult = {
5467
+ __typename?: 'SignInEmailNotFoundResult';
5468
+ message: Scalars['String']['output'];
5469
+ };
5470
+
5471
+ export type SignInNoPasswordResult = {
5472
+ __typename?: 'SignInNoPasswordResult';
5473
+ message: Scalars['String']['output'];
5474
+ };
5475
+
5476
+ export type SignInResult =
5477
+ | SignInAlreadySignedInResult
5478
+ | SignInEmailNotFoundResult
5479
+ | SignInNoPasswordResult
5480
+ | SignInSuccessResult
5481
+ | UserError;
5482
+
5483
+ export type SignInSuccessResult = {
5484
+ __typename?: 'SignInSuccessResult';
5485
+ user: User;
5486
+ };
5487
+
5488
+ export type SignInWithGoogleInput = {
5489
+ credential: Scalars['String']['input'];
5490
+ };
5491
+
5492
+ export type SignUpAlreadySignedInResult = {
5493
+ __typename?: 'SignUpAlreadySignedInResult';
5494
+ user: User;
5495
+ };
5496
+
5497
+ export type SignUpEmailAlreadyExistsResult = {
5498
+ __typename?: 'SignUpEmailAlreadyExistsResult';
5499
+ message: Scalars['String']['output'];
5500
+ };
5501
+
5502
+ export type SignUpInput = {
5503
+ email: Scalars['String']['input'];
5504
+ firstName: Scalars['String']['input'];
5505
+ lastName: Scalars['String']['input'];
5506
+ password: Scalars['String']['input'];
5507
+ };
5508
+
5509
+ export type SignUpResult =
5510
+ | SignUpAlreadySignedInResult
5511
+ | SignUpEmailAlreadyExistsResult
5512
+ | SignUpSuccessResult
5513
+ | UserError;
5514
+
5515
+ export type SignUpSuccessResult = {
5516
+ __typename?: 'SignUpSuccessResult';
5517
+ user: User;
5518
+ };
5519
+
3685
5520
  export type Site = {
3686
5521
  __typename?: 'Site';
3687
- addressCity?: Maybe<Scalars['String']['output']>;
3688
- addressLine1?: Maybe<Scalars['String']['output']>;
3689
- addressLine2?: Maybe<Scalars['String']['output']>;
3690
- addressState?: Maybe<Scalars['String']['output']>;
3691
- addressZip?: Maybe<Scalars['String']['output']>;
3692
- agencyPrimaryPhone?: Maybe<Scalars['String']['output']>;
3693
- agentFirstName?: Maybe<Scalars['String']['output']>;
3694
- agentLastName?: Maybe<Scalars['String']['output']>;
3695
- agentPhotoUrl?: Maybe<Scalars['String']['output']>;
5522
+ accentColor?: Maybe<Scalars['String']['output']>;
3696
5523
  agreements: AgreementsList;
5524
+ blogPostingSchemaDefaultAuthor: Array<SchemaOrgEntity>;
5525
+ blogPostingSchemaEnabled: Scalars['Boolean']['output'];
5526
+ blogPostingSchemaPathPrefixes: Array<Scalars['String']['output']>;
5527
+ blogPostingSchemaPublisher?: Maybe<SchemaOrgEntity>;
3697
5528
  bodyEndCode?: Maybe<Scalars['String']['output']>;
5529
+ category: SiteCategory;
3698
5530
  custom: CustomFieldValuesList;
5531
+ defaultFont: GoogleFontSelection;
3699
5532
  domain: Scalars['String']['output'];
3700
- fontFamily: Scalars['String']['output'];
3701
- globalCss?: Maybe<Scalars['String']['output']>;
3702
- googlePlaceId?: Maybe<Scalars['String']['output']>;
5533
+ generalInfo?: Maybe<Scalars['String']['output']>;
5534
+ googleTagId?: Maybe<Scalars['String']['output']>;
3703
5535
  googleTagManagerId?: Maybe<Scalars['String']['output']>;
5536
+ grayColorName?: Maybe<Scalars['String']['output']>;
3704
5537
  headEndCode?: Maybe<Scalars['String']['output']>;
3705
5538
  id: Scalars['String']['output'];
3706
- inputFieldFontFamily: Scalars['String']['output'];
5539
+ initialGenerating: Scalars['Boolean']['output'];
5540
+ localBusinessProfile?: Maybe<SiteLocalBusinessProfile>;
5541
+ logoAssetVariant?: Maybe<AssetVariant>;
5542
+ logoIconAssetVariant?: Maybe<AssetVariant>;
5543
+ logoIconSource: ImageSettingSource;
3707
5544
  logoIconUrl?: Maybe<Scalars['String']['output']>;
5545
+ logoSource: ImageSettingSource;
3708
5546
  logoUrl?: Maybe<Scalars['String']['output']>;
3709
5547
  metaPixelId?: Maybe<Scalars['String']['output']>;
3710
5548
  mixpanelToken?: Maybe<Scalars['String']['output']>;
@@ -3713,33 +5551,173 @@ export type Site = {
3713
5551
  org?: Maybe<Org>;
3714
5552
  orgId?: Maybe<Scalars['String']['output']>;
3715
5553
  pages: PagesList;
3716
- pages2: PagesList;
5554
+ pendingDomain?: Maybe<Scalars['String']['output']>;
5555
+ pendingDomainDnsLastCheckedAt?: Maybe<Scalars['Date']['output']>;
5556
+ pendingDomainFailureReason?: Maybe<Scalars['String']['output']>;
5557
+ pendingDomainStatus?: Maybe<PendingDomainStatus>;
3717
5558
  platformId: Scalars['String']['output'];
5559
+ secondaryColor?: Maybe<Scalars['String']['output']>;
3718
5560
  siteTemplate?: Maybe<SiteTemplate>;
3719
5561
  siteTemplateId?: Maybe<Scalars['String']['output']>;
3720
5562
  stripePublishableKey?: Maybe<Scalars['String']['output']>;
3721
5563
  tlsCertificates: Array<TlsCertificate>;
3722
- useCustomPrivacyPolicy: Scalars['Boolean']['output'];
3723
- useCustomTermsOfUse: Scalars['Boolean']['output'];
3724
5564
  zendeskChatKey?: Maybe<Scalars['String']['output']>;
3725
5565
  };
3726
5566
 
3727
5567
  export type SitePagesArgs = {
3728
5568
  limit?: InputMaybe<Scalars['Int']['input']>;
5569
+ orderBy?: InputMaybe<Array<SitePagesOrder>>;
3729
5570
  page?: InputMaybe<Scalars['Int']['input']>;
3730
5571
  pageTemplateId?: InputMaybe<OptionalIdFilter>;
5572
+ path?: InputMaybe<StringFilter>;
5573
+ publishedAt?: InputMaybe<DateFilter>;
3731
5574
  search?: InputMaybe<Scalars['String']['input']>;
3732
5575
  status?: InputMaybe<Array<PublishStatus>>;
3733
5576
  };
3734
5577
 
3735
- export type SitePages2Args = {
3736
- limit?: InputMaybe<Scalars['Int']['input']>;
3737
- page?: InputMaybe<Scalars['Int']['input']>;
3738
- pageTemplateId?: InputMaybe<OptionalIdFilter>;
3739
- search?: InputMaybe<Scalars['String']['input']>;
3740
- status?: InputMaybe<Array<PublishStatus>>;
5578
+ export type SiteBuildServiceRequest = {
5579
+ __typename?: 'SiteBuildServiceRequest';
5580
+ createdAt: Scalars['Date']['output'];
5581
+ id: Scalars['String']['output'];
5582
+ siteName: Scalars['String']['output'];
5583
+ status: SiteBuildServiceRequestStatus;
5584
+ };
5585
+
5586
+ export const SiteBuildServiceRequestStatus = {
5587
+ Done: 'Done',
5588
+ InProgress: 'InProgress',
5589
+ Pending: 'Pending',
5590
+ } as const;
5591
+
5592
+ export type SiteBuildServiceRequestStatus =
5593
+ (typeof SiteBuildServiceRequestStatus)[keyof typeof SiteBuildServiceRequestStatus];
5594
+ export type SiteBuildServiceRequestsList = ListResult & {
5595
+ __typename?: 'SiteBuildServiceRequestsList';
5596
+ limit: Scalars['Int']['output'];
5597
+ siteBuildServiceRequests: Array<SiteBuildServiceRequest>;
5598
+ totalCount: Scalars['Int']['output'];
5599
+ };
5600
+
5601
+ export const SiteCategory = {
5602
+ /** Share articles, news, tutorials, or helpful resources */
5603
+ BlogOrInformational: 'BlogOrInformational',
5604
+ /** Promote services, sell products, or generate leads */
5605
+ Business: 'Business',
5606
+ /** Connect members, enable discussions, or share resources */
5607
+ Community: 'Community',
5608
+ /** Announce a gathering, manage sign-ups, or share details */
5609
+ Event: 'Event',
5610
+ /** Provide official information, civic resources, or services */
5611
+ GovernmentOrPublicService: 'GovernmentOrPublicService',
5612
+ /** Advance a cause, engage supporters, or accept donations */
5613
+ NonProfitOrCharity: 'NonProfitOrCharity',
5614
+ /** Showcase projects, highlight skills, or introduce yourself */
5615
+ PortfolioOrPersonal: 'PortfolioOrPersonal',
5616
+ } as const;
5617
+
5618
+ export type SiteCategory = (typeof SiteCategory)[keyof typeof SiteCategory];
5619
+ export type SiteCategoryUpdate = {
5620
+ value: SiteCategory;
5621
+ };
5622
+
5623
+ export type SiteClimberSubscription = {
5624
+ __typename?: 'SiteClimberSubscription';
5625
+ active: Scalars['Boolean']['output'];
5626
+ articlePageTemplateId: Scalars['String']['output'];
5627
+ companyAbout: Scalars['String']['output'];
5628
+ companyBasedIn: Scalars['String']['output'];
5629
+ companyCoreValues: Scalars['String']['output'];
5630
+ companyIdealCustomer: Scalars['String']['output'];
5631
+ companyMissionStatement: Scalars['String']['output'];
5632
+ companyName: Scalars['String']['output'];
5633
+ companyStrengthsDifferentiators: Scalars['String']['output'];
5634
+ companyType: Scalars['String']['output'];
5635
+ cta: Scalars['String']['output'];
5636
+ id: Scalars['String']['output'];
5637
+ monthlyVolume: Scalars['Int']['output'];
5638
+ site: Site;
5639
+ };
5640
+
5641
+ export type SiteClimberSubscriptionListResult = ListResult & {
5642
+ __typename?: 'SiteClimberSubscriptionListResult';
5643
+ items: Array<SiteClimberSubscription>;
5644
+ limit: Scalars['Int']['output'];
5645
+ page: Scalars['Int']['output'];
5646
+ totalCount: Scalars['Int']['output'];
5647
+ };
5648
+
5649
+ export type SiteLocalBusinessProfile = {
5650
+ __typename?: 'SiteLocalBusinessProfile';
5651
+ address?: Maybe<LocalBusinessAddress>;
5652
+ aggregateRating?: Maybe<Scalars['Float']['output']>;
5653
+ areaServed?: Maybe<Array<Scalars['String']['output']>>;
5654
+ bestRating?: Maybe<Scalars['Int']['output']>;
5655
+ description?: Maybe<Scalars['String']['output']>;
5656
+ email?: Maybe<Scalars['String']['output']>;
5657
+ enabled: Scalars['Boolean']['output'];
5658
+ id: Scalars['String']['output'];
5659
+ image: Array<Scalars['String']['output']>;
5660
+ location?: Maybe<LocalBusinessCoordinates>;
5661
+ openingHours?: Maybe<Array<LocalBusinessOpeningHours>>;
5662
+ phoneNumber?: Maybe<Scalars['String']['output']>;
5663
+ photo: Array<Scalars['String']['output']>;
5664
+ priceRange?: Maybe<Scalars['String']['output']>;
5665
+ reviewCount?: Maybe<Scalars['Int']['output']>;
5666
+ sameAs: Array<Scalars['String']['output']>;
5667
+ type: Scalars['String']['output'];
5668
+ worstRating?: Maybe<Scalars['Int']['output']>;
5669
+ };
5670
+
5671
+ export type SiteLocalBusinessProfileInput = {
5672
+ address?: InputMaybe<LocalBusinessAddressInput>;
5673
+ aggregateRating?: InputMaybe<Scalars['Float']['input']>;
5674
+ areaServed?: InputMaybe<Array<Scalars['String']['input']>>;
5675
+ bestRating?: InputMaybe<Scalars['Int']['input']>;
5676
+ description?: InputMaybe<Scalars['String']['input']>;
5677
+ email?: InputMaybe<Scalars['String']['input']>;
5678
+ enabled: Scalars['Boolean']['input'];
5679
+ image?: InputMaybe<Array<Scalars['String']['input']>>;
5680
+ location?: InputMaybe<LocalBusinessCoordinatesInput>;
5681
+ openingHours?: InputMaybe<Array<LocalBusinessOpeningHoursInput>>;
5682
+ phoneNumber?: InputMaybe<Scalars['String']['input']>;
5683
+ photo?: InputMaybe<Array<Scalars['String']['input']>>;
5684
+ priceRange?: InputMaybe<Scalars['String']['input']>;
5685
+ reviewCount?: InputMaybe<Scalars['Int']['input']>;
5686
+ sameAs?: InputMaybe<Array<Scalars['String']['input']>>;
5687
+ type: Scalars['String']['input'];
5688
+ worstRating?: InputMaybe<Scalars['Int']['input']>;
5689
+ };
5690
+
5691
+ export type SiteLocalBusinessProfileUpdate = {
5692
+ value?: InputMaybe<SiteLocalBusinessProfileInput>;
5693
+ };
5694
+
5695
+ export type SiteOutlinePage = {
5696
+ __typename?: 'SiteOutlinePage';
5697
+ description: Scalars['String']['output'];
5698
+ id: Scalars['String']['output'];
5699
+ path: Scalars['String']['output'];
5700
+ title: Scalars['String']['output'];
5701
+ };
5702
+
5703
+ export type SiteOutlinePageInput = {
5704
+ description: Scalars['String']['input'];
5705
+ id: Scalars['String']['input'];
5706
+ path: Scalars['String']['input'];
5707
+ title: Scalars['String']['input'];
5708
+ };
5709
+
5710
+ export type SitePagesOrder = {
5711
+ direction: OrderDirection;
5712
+ field: SitePagesOrderField;
3741
5713
  };
3742
5714
 
5715
+ export const SitePagesOrderField = {
5716
+ PublishedAt: 'PublishedAt',
5717
+ Title: 'Title',
5718
+ } as const;
5719
+
5720
+ export type SitePagesOrderField = (typeof SitePagesOrderField)[keyof typeof SitePagesOrderField];
3743
5721
  export type SiteTemplate = {
3744
5722
  __typename?: 'SiteTemplate';
3745
5723
  id: Scalars['String']['output'];
@@ -3824,6 +5802,19 @@ export const StageBlueprintStatus = {
3824
5802
  } as const;
3825
5803
 
3826
5804
  export type StageBlueprintStatus = (typeof StageBlueprintStatus)[keyof typeof StageBlueprintStatus];
5805
+ export type StartKeywordResearchClusteringInput = {
5806
+ keywordResearchJobId: Scalars['String']['input'];
5807
+ };
5808
+
5809
+ export type StartKeywordResearchClusteringResult =
5810
+ | StartKeywordResearchClusteringSuccessResult
5811
+ | UserError;
5812
+
5813
+ export type StartKeywordResearchClusteringSuccessResult = {
5814
+ __typename?: 'StartKeywordResearchClusteringSuccessResult';
5815
+ clusteringJob: KeywordResearchClusteringJob;
5816
+ };
5817
+
3827
5818
  export type StringFilter = {
3828
5819
  operator: StringFilterOperator;
3829
5820
  value: Scalars['String']['input'];
@@ -3834,6 +5825,7 @@ export const StringFilterOperator = {
3834
5825
  Equals: 'Equals',
3835
5826
  NotContains: 'NotContains',
3836
5827
  NotEquals: 'NotEquals',
5828
+ StartsWith: 'StartsWith',
3837
5829
  } as const;
3838
5830
 
3839
5831
  export type StringFilterOperator = (typeof StringFilterOperator)[keyof typeof StringFilterOperator];
@@ -3872,6 +5864,13 @@ export type StringUpdate = {
3872
5864
  value: Scalars['String']['input'];
3873
5865
  };
3874
5866
 
5867
+ export type StripeApiCustomer = {
5868
+ __typename?: 'StripeApiCustomer';
5869
+ address?: Maybe<Address>;
5870
+ id: Scalars['String']['output'];
5871
+ name?: Maybe<Scalars['String']['output']>;
5872
+ };
5873
+
3875
5874
  /** The supported coupon duration types. */
3876
5875
  export const StripeCouponDuration = {
3877
5876
  Forever: 'Forever',
@@ -3887,8 +5886,36 @@ export type StripeCustomer = {
3887
5886
  phoneNumber?: Maybe<Scalars['String']['output']>;
3888
5887
  };
3889
5888
 
5889
+ export type StripePaymentMethod =
5890
+ | StripePaymentMethodAccount
5891
+ | StripePaymentMethodBankAccount
5892
+ | StripePaymentMethodCard;
5893
+
5894
+ export type StripePaymentMethodAccount = {
5895
+ __typename?: 'StripePaymentMethodAccount';
5896
+ id: Scalars['String']['output'];
5897
+ };
5898
+
5899
+ export type StripePaymentMethodBankAccount = {
5900
+ __typename?: 'StripePaymentMethodBankAccount';
5901
+ id: Scalars['String']['output'];
5902
+ };
5903
+
5904
+ export type StripePaymentMethodCard = {
5905
+ __typename?: 'StripePaymentMethodCard';
5906
+ brand: Scalars['String']['output'];
5907
+ expMonth: Scalars['Int']['output'];
5908
+ expYear: Scalars['Int']['output'];
5909
+ id: Scalars['String']['output'];
5910
+ last4: Scalars['String']['output'];
5911
+ };
5912
+
3890
5913
  export type Sub = {
3891
5914
  __typename?: 'Sub';
5915
+ /** Active discounts on this subscription from Stripe. */
5916
+ discounts?: Maybe<Array<SubscriptionDiscount>>;
5917
+ /** The actual price after all discounts are applied. If null, no discounts are active. */
5918
+ effectivePrice?: Maybe<Scalars['String']['output']>;
3892
5919
  endAt?: Maybe<Scalars['Date']['output']>;
3893
5920
  id: Scalars['String']['output'];
3894
5921
  invoiceFrequency?: Maybe<InvoiceFrequency>;
@@ -3896,13 +5923,18 @@ export type Sub = {
3896
5923
  managerOrganization?: Maybe<OrgProfile>;
3897
5924
  notes: Array<SubscriptionNote>;
3898
5925
  ownerOrg?: Maybe<OrgProfile>;
3899
- plan: SubscriptionPlan;
5926
+ paymentMethod?: Maybe<StripePaymentMethod>;
5927
+ plan: Product;
3900
5928
  planId: Scalars['String']['output'];
3901
- planProfile: SubscriptionPlanProfile;
5929
+ planProfile: ProductProfile;
3902
5930
  price: Scalars['String']['output'];
5931
+ product: Product;
5932
+ productId: Scalars['String']['output'];
5933
+ productProfile: ProductProfile;
3903
5934
  promoCode?: Maybe<Scalars['String']['output']>;
3904
5935
  startAt: Scalars['Date']['output'];
3905
5936
  status: SubscriptionStatus;
5937
+ stripeCustomer?: Maybe<StripeApiCustomer>;
3906
5938
  stripeSubscriptionId?: Maybe<Scalars['String']['output']>;
3907
5939
  /**
3908
5940
  * The SubscriptionOrganizations connecting this subscription to the orgs that are included in it.
@@ -3911,21 +5943,31 @@ export type Sub = {
3911
5943
  subscriptionOrganizations: Array<SubscriptionOrganization>;
3912
5944
  };
3913
5945
 
3914
- export type SubmitFormResult = {
3915
- __typename?: 'SubmitFormResult';
3916
- sessionId: Scalars['String']['output'];
5946
+ export type SubmitFormInput = {
5947
+ formData: Scalars['String']['input'];
5948
+ formId: Scalars['String']['input'];
5949
+ pageUrl: Scalars['String']['input'];
5950
+ sessionId: Scalars['String']['input'];
5951
+ stepId?: InputMaybe<Scalars['String']['input']>;
3917
5952
  };
3918
5953
 
3919
- export type SubmitScoreMyCallEntryResult = {
3920
- __typename?: 'SubmitScoreMyCallEntryResult';
3921
- signedUploadUrl: Scalars['String']['output'];
5954
+ export type SubmitFormResult = InternalError | SubmitFormSuccessResult | UserError;
5955
+
5956
+ export type SubmitFormSuccessResult = {
5957
+ __typename?: 'SubmitFormSuccessResult';
5958
+ sessionId: Scalars['String']['output'];
3922
5959
  };
3923
5960
 
3924
5961
  export type Subscription = {
3925
5962
  __typename?: 'Subscription';
5963
+ aiDesignerAssistantMessageAdded?: Maybe<AiDesignerChatMessage>;
3926
5964
  stageUpdated?: Maybe<Stage>;
3927
5965
  };
3928
5966
 
5967
+ export type SubscriptionAiDesignerAssistantMessageAddedArgs = {
5968
+ threadId: Scalars['String']['input'];
5969
+ };
5970
+
3929
5971
  export type SubscriptionStageUpdatedArgs = {
3930
5972
  id: Scalars['String']['input'];
3931
5973
  };
@@ -3958,6 +6000,38 @@ export type SubscriptionCheckoutOption = {
3958
6000
  price: Scalars['String']['output'];
3959
6001
  };
3960
6002
 
6003
+ export type SubscriptionDiscount = {
6004
+ __typename?: 'SubscriptionDiscount';
6005
+ /** The coupon that created this discount. */
6006
+ coupon: SubscriptionDiscountCoupon;
6007
+ /** If the coupon has a duration of repeating, the date that this discount will end. If the coupon has a duration of once or forever, this will be null. */
6008
+ end?: Maybe<Scalars['Date']['output']>;
6009
+ /** The ID of the discount object from Stripe. */
6010
+ id: Scalars['String']['output'];
6011
+ /** Date that the coupon was applied. */
6012
+ start: Scalars['Date']['output'];
6013
+ /** The subscription that this coupon is applied to. */
6014
+ subscriptionId: Scalars['String']['output'];
6015
+ };
6016
+
6017
+ export type SubscriptionDiscountCoupon = {
6018
+ __typename?: 'SubscriptionDiscountCoupon';
6019
+ /** Amount (in dollars) that will be taken off the subtotal of any invoices for this customer. */
6020
+ amountOff?: Maybe<Scalars['String']['output']>;
6021
+ /** The currency of the amount_off. */
6022
+ currency?: Maybe<Scalars['String']['output']>;
6023
+ /** One of forever, once, or repeating. Describes how long a customer who applies this coupon will get the discount. */
6024
+ duration: StripeCouponDuration;
6025
+ /** If duration is repeating, the number of months the coupon applies. Null if coupon duration is forever or once. */
6026
+ durationInMonths?: Maybe<Scalars['Int']['output']>;
6027
+ /** Unique identifier for the coupon. */
6028
+ id: Scalars['String']['output'];
6029
+ /** Name of the coupon displayed to customers. */
6030
+ name?: Maybe<Scalars['String']['output']>;
6031
+ /** Percent that will be taken off the subtotal of any invoices for this customer for the duration of the coupon. */
6032
+ percentOff?: Maybe<Scalars['Float']['output']>;
6033
+ };
6034
+
3961
6035
  export type SubscriptionNote = {
3962
6036
  __typename?: 'SubscriptionNote';
3963
6037
  byUser: UserProfile;
@@ -3976,32 +6050,6 @@ export type SubscriptionOrganization = {
3976
6050
  subscriptionOwner: Scalars['Boolean']['output'];
3977
6051
  };
3978
6052
 
3979
- export type SubscriptionPlan = {
3980
- __typename?: 'SubscriptionPlan';
3981
- alternativeStripePriceIds: Array<Scalars['String']['output']>;
3982
- description?: Maybe<Scalars['String']['output']>;
3983
- displayName?: Maybe<Scalars['String']['output']>;
3984
- durationDays?: Maybe<Scalars['Int']['output']>;
3985
- endAt?: Maybe<Scalars['Date']['output']>;
3986
- id: Scalars['String']['output'];
3987
- /** The invoice frequency for this plan. This will be null for plans that have a price of 0. */
3988
- invoiceFrequency?: Maybe<InvoiceFrequency>;
3989
- items: Array<Scalars['String']['output']>;
3990
- name: Scalars['String']['output'];
3991
- price: Scalars['String']['output'];
3992
- promoCodes: Array<PromoCode>;
3993
- stripePriceId?: Maybe<Scalars['String']['output']>;
3994
- };
3995
-
3996
- /** This type limits the type of data that can be queried from a SubscriptionPlan. */
3997
- export type SubscriptionPlanProfile = {
3998
- __typename?: 'SubscriptionPlanProfile';
3999
- displayName?: Maybe<Scalars['String']['output']>;
4000
- /** The ID of a SubscriptionPlan. */
4001
- id: Scalars['String']['output'];
4002
- name: Scalars['String']['output'];
4003
- };
4004
-
4005
6053
  export const SubscriptionStatus = {
4006
6054
  Active: 'Active',
4007
6055
  Canceled: 'Canceled',
@@ -4022,6 +6070,16 @@ export type SubscriptionsList = ListResult & {
4022
6070
  totalCount: Scalars['Int']['output'];
4023
6071
  };
4024
6072
 
6073
+ export type SyncAiTrainingPlatformsResult =
6074
+ | AuthorizationError
6075
+ | InternalError
6076
+ | SyncAiTrainingPlatformsSuccessResult;
6077
+
6078
+ export type SyncAiTrainingPlatformsSuccessResult = {
6079
+ __typename?: 'SyncAiTrainingPlatformsSuccessResult';
6080
+ platforms: Array<AiTrainingPlatform>;
6081
+ };
6082
+
4025
6083
  export type SyncLayoutTemplateToLayoutsInput = {
4026
6084
  layoutId: Scalars['String']['input'];
4027
6085
  layoutTemplateId: Scalars['String']['input'];
@@ -4073,13 +6131,14 @@ export type SyncPageTemplateToPagesSelection =
4073
6131
  (typeof SyncPageTemplateToPagesSelection)[keyof typeof SyncPageTemplateToPagesSelection];
4074
6132
  export type SyncPageTemplateToPagesSuccessResult = {
4075
6133
  __typename?: 'SyncPageTemplateToPagesSuccessResult';
4076
- /** The pages that were not synced because the page’s site already has a page with the template’s path. Applies only if syncPaths is true. */
4077
- duplicatePathNotSyncedPages: PagesList;
4078
6134
  /** Error messages for pages that could not be synced due to an internal or misconfiguration issue. */
4079
6135
  errorMessages: Array<Scalars['String']['output']>;
6136
+ /** Pages that were updated partially because there were manual edits that were not forced to be synced. */
6137
+ partiallyUpdatedPages: PagesList;
4080
6138
  /** Pages that did not have any changes to apply. */
4081
- noChangePages: PagesList;
4082
- syncedPages: PagesList;
6139
+ unchangedPages: PagesList;
6140
+ /** Pages that were updated fully. */
6141
+ updatedPages: PagesList;
4083
6142
  };
4084
6143
 
4085
6144
  /**
@@ -4099,6 +6158,35 @@ export type TlsCertificate = {
4099
6158
  state: GCloudCertificateState;
4100
6159
  };
4101
6160
 
6161
+ export type UpdateKeywordResearchKeywordsManualReviewInput = {
6162
+ jobId: Scalars['String']['input'];
6163
+ keywords: Array<Scalars['String']['input']>;
6164
+ manualReview: KeywordResearchKeywordManualReview;
6165
+ };
6166
+
6167
+ export type UpdateKeywordResearchKeywordsManualReviewResult =
6168
+ | UpdateKeywordResearchKeywordsManualReviewSuccessResult
6169
+ | UserError;
6170
+
6171
+ export type UpdateKeywordResearchKeywordsManualReviewSuccessResult = {
6172
+ __typename?: 'UpdateKeywordResearchKeywordsManualReviewSuccessResult';
6173
+ success: Scalars['Boolean']['output'];
6174
+ };
6175
+
6176
+ export type UpdateKeywordResearchTopicsStatusInput = {
6177
+ status: KeywordResearchTopicStatus;
6178
+ topicIds: Array<Scalars['String']['input']>;
6179
+ };
6180
+
6181
+ export type UpdateKeywordResearchTopicsStatusResult =
6182
+ | UpdateKeywordResearchTopicsStatusSuccessResult
6183
+ | UserError;
6184
+
6185
+ export type UpdateKeywordResearchTopicsStatusSuccessResult = {
6186
+ __typename?: 'UpdateKeywordResearchTopicsStatusSuccessResult';
6187
+ topics: Array<KeywordResearchTopic>;
6188
+ };
6189
+
4102
6190
  export type UploadFileInput = {
4103
6191
  mimeType: Scalars['String']['input'];
4104
6192
  name: Scalars['String']['input'];
@@ -4109,6 +6197,7 @@ export type UploadFileInput = {
4109
6197
  export type UploadFilePurpose = {
4110
6198
  customField?: InputMaybe<UploadFilePurposeCustomField>;
4111
6199
  document?: InputMaybe<UploadFilePurposeDocument>;
6200
+ extension?: InputMaybe<UploadFilePurposeExtension>;
4112
6201
  sequenceStageUser?: InputMaybe<UploadFilePurposeSequenceStageUser>;
4113
6202
  siteLogo?: InputMaybe<UploadFilePurposeSiteLogo>;
4114
6203
  };
@@ -4127,6 +6216,13 @@ export type UploadFilePurposeDocument = {
4127
6216
  setAsCurrentVersion: Scalars['Boolean']['input'];
4128
6217
  };
4129
6218
 
6219
+ export type UploadFilePurposeExtension = {
6220
+ extensionName: Scalars['String']['input'];
6221
+ /** Some string for uniquely identifying the file within the extension. */
6222
+ objectName: Scalars['String']['input'];
6223
+ platformId: Scalars['String']['input'];
6224
+ };
6225
+
4130
6226
  export type UploadFilePurposeSequenceStageUser = {
4131
6227
  sequenceStageUserId: Scalars['String']['input'];
4132
6228
  stateProperty: Scalars['String']['input'];
@@ -4168,11 +6264,6 @@ export type User = {
4168
6264
  passwordStatus: PasswordStatus;
4169
6265
  planProgress: Array<UserPlanProgress>;
4170
6266
  plans: Array<UserPlan>;
4171
- /**
4172
- * This user’s platforms where the user is an admin.
4173
- * @deprecated Use adminMe instead.
4174
- */
4175
- platformAdminUsers: Array<PlatformAdminUser>;
4176
6267
  /** All product items from all of the active subscriptions of the user's org. */
4177
6268
  productItems: Array<Scalars['String']['output']>;
4178
6269
  role: Scalars['String']['output'];
@@ -4308,3 +6399,20 @@ export type UsersList = ListResult & {
4308
6399
  totalCount: Scalars['Int']['output'];
4309
6400
  users: Array<User>;
4310
6401
  };
6402
+
6403
+ export type ValidateAiTrainingSamplesResult =
6404
+ | AuthorizationError
6405
+ | ValidateAiTrainingSamplesSuccessResult;
6406
+
6407
+ export type ValidateAiTrainingSamplesSuccessResult = {
6408
+ __typename?: 'ValidateAiTrainingSamplesSuccessResult';
6409
+ invalidSamples: Array<AiTrainingSampleValidationError>;
6410
+ validSampleIds: Array<Scalars['String']['output']>;
6411
+ };
6412
+
6413
+ export type VerifyEmailAddressResult = UserError | VerifyEmailAddressSuccessResult;
6414
+
6415
+ export type VerifyEmailAddressSuccessResult = {
6416
+ __typename?: 'VerifyEmailAddressSuccessResult';
6417
+ user: User;
6418
+ };