@wirechunk/cli 0.0.6 → 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.
- package/build/main.js +26242 -21975
- package/package.json +9 -8
- package/src/commands/create-extension-version.ts +0 -2
- package/src/commands/create-user.ts +10 -1
- package/src/commands/ext-dev/init-db.ts +4 -3
- package/src/core-api/api.ts +2018 -407
- package/src/util.ts +1 -1
- package/tsconfig.json +1 -0
package/src/core-api/api.ts
CHANGED
|
@@ -50,13 +50,19 @@ export type ActiveCampaignTag = {
|
|
|
50
50
|
tag: Scalars['String']['output'];
|
|
51
51
|
};
|
|
52
52
|
|
|
53
|
-
export type
|
|
54
|
-
__typename?: '
|
|
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
|
|
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 = {
|
|
@@ -113,17 +119,109 @@ export type AgreementsList = {
|
|
|
113
119
|
totalCount: Scalars['Int']['output'];
|
|
114
120
|
};
|
|
115
121
|
|
|
116
|
-
export type
|
|
117
|
-
|
|
118
|
-
|
|
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>;
|
|
119
165
|
};
|
|
120
166
|
|
|
121
|
-
export
|
|
122
|
-
|
|
123
|
-
|
|
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',
|
|
124
182
|
} as const;
|
|
125
183
|
|
|
126
|
-
export type
|
|
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
|
+
|
|
127
225
|
export type ApiToken = PersonalApiToken | PlatformApiToken;
|
|
128
226
|
|
|
129
227
|
export type ApplyCustomPromoCodeResult = ApplyCustomPromoCodeSuccessResult | InternalError;
|
|
@@ -143,6 +241,13 @@ export type ArchiveComponentSuccessResult = {
|
|
|
143
241
|
component: Component;
|
|
144
242
|
};
|
|
145
243
|
|
|
244
|
+
export type ArchiveProductResult = ArchiveProductSuccessResult | UserError;
|
|
245
|
+
|
|
246
|
+
export type ArchiveProductSuccessResult = {
|
|
247
|
+
__typename?: 'ArchiveProductSuccessResult';
|
|
248
|
+
product: Product;
|
|
249
|
+
};
|
|
250
|
+
|
|
146
251
|
export type Asset = {
|
|
147
252
|
__typename?: 'Asset';
|
|
148
253
|
/** Alternative text when displayed on web pages. */
|
|
@@ -196,6 +301,7 @@ export type AssetType = (typeof AssetType)[keyof typeof AssetType];
|
|
|
196
301
|
export type AssetVariant = {
|
|
197
302
|
__typename?: 'AssetVariant';
|
|
198
303
|
archived: Scalars['Boolean']['output'];
|
|
304
|
+
asset: Asset;
|
|
199
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. */
|
|
200
306
|
file?: Maybe<File>;
|
|
201
307
|
/** The format to output the variant in. Set only when mode is Convert. */
|
|
@@ -205,11 +311,12 @@ export type AssetVariant = {
|
|
|
205
311
|
/** Determined automatically but also manually set only when mode is Resize. */
|
|
206
312
|
heightPx?: Maybe<Scalars['Int']['output']>;
|
|
207
313
|
id: Scalars['String']['output'];
|
|
314
|
+
latestVersion?: Maybe<AssetVariantVersion>;
|
|
208
315
|
/** The manually provided URL of the asset variant. Applicable only when mode is ManualUrl. */
|
|
209
316
|
manualUrl?: Maybe<Scalars['String']['output']>;
|
|
210
317
|
mode: AssetVariantMode;
|
|
211
318
|
name: Scalars['String']['output'];
|
|
212
|
-
/** A percentage 0–100. When null or 100, the quality is the same as the original. */
|
|
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. */
|
|
213
320
|
quality?: Maybe<Scalars['Int']['output']>;
|
|
214
321
|
/**
|
|
215
322
|
* The variant to use as the source for producing the variant. Users can change this at any time.
|
|
@@ -354,9 +461,25 @@ export type AuthorizationError = Error & {
|
|
|
354
461
|
message: Scalars['String']['output'];
|
|
355
462
|
};
|
|
356
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
|
+
|
|
357
480
|
export type BodyStylesUpdate = {
|
|
358
|
-
/** A JSON
|
|
359
|
-
value
|
|
481
|
+
/** A JSON array. */
|
|
482
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
360
483
|
};
|
|
361
484
|
|
|
362
485
|
export type BooleanUpdate = {
|
|
@@ -378,15 +501,69 @@ export type BuiltInComponent = {
|
|
|
378
501
|
name: Scalars['String']['output'];
|
|
379
502
|
};
|
|
380
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
|
+
|
|
381
557
|
export type Component = {
|
|
382
558
|
__typename?: 'Component';
|
|
559
|
+
aiGenerationStatus?: Maybe<AiGenerationStatus>;
|
|
383
560
|
archived: Scalars['Boolean']['output'];
|
|
384
561
|
components: Scalars['String']['output'];
|
|
385
562
|
createdAt: Scalars['Date']['output'];
|
|
386
563
|
id: Scalars['String']['output'];
|
|
387
564
|
name: Scalars['String']['output'];
|
|
388
565
|
previewProps?: Maybe<Scalars['String']['output']>;
|
|
389
|
-
|
|
566
|
+
propsFormComponents?: Maybe<Scalars['String']['output']>;
|
|
390
567
|
};
|
|
391
568
|
|
|
392
569
|
export type ComponentsList = ListResult & {
|
|
@@ -410,6 +587,35 @@ export const ConfirmationAction = {
|
|
|
410
587
|
} as const;
|
|
411
588
|
|
|
412
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
|
+
|
|
413
619
|
export type Course = {
|
|
414
620
|
__typename?: 'Course';
|
|
415
621
|
archived: Scalars['Boolean']['output'];
|
|
@@ -490,7 +696,7 @@ export type CreateAdminUserInput = {
|
|
|
490
696
|
email: Scalars['String']['input'];
|
|
491
697
|
firstName: Scalars['String']['input'];
|
|
492
698
|
lastName: Scalars['String']['input'];
|
|
493
|
-
|
|
699
|
+
permissions: Array<PermissionInput>;
|
|
494
700
|
platformId: Scalars['String']['input'];
|
|
495
701
|
};
|
|
496
702
|
|
|
@@ -509,18 +715,46 @@ export type CreateAssetInput = {
|
|
|
509
715
|
roles?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
510
716
|
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
511
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']>;
|
|
512
735
|
};
|
|
513
736
|
|
|
514
|
-
export type CreateAssetResult =
|
|
737
|
+
export type CreateAssetResult =
|
|
738
|
+
| AuthorizationError
|
|
739
|
+
| CreateAssetSuccessResult
|
|
740
|
+
| InternalError
|
|
741
|
+
| UserError;
|
|
515
742
|
|
|
516
743
|
export type CreateAssetSuccessResult = {
|
|
517
744
|
__typename?: 'CreateAssetSuccessResult';
|
|
518
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']>;
|
|
519
752
|
};
|
|
520
753
|
|
|
521
754
|
export type CreateAssetVariantInput = {
|
|
522
755
|
assetId: Scalars['String']['input'];
|
|
523
756
|
format?: InputMaybe<AssetVariantFormat>;
|
|
757
|
+
generateCount?: InputMaybe<Scalars['Int']['input']>;
|
|
524
758
|
generatePrompt?: InputMaybe<Scalars['String']['input']>;
|
|
525
759
|
heightPx?: InputMaybe<Scalars['Int']['input']>;
|
|
526
760
|
manualUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -530,6 +764,8 @@ export type CreateAssetVariantInput = {
|
|
|
530
764
|
sourceAssetVariantId?: InputMaybe<Scalars['String']['input']>;
|
|
531
765
|
/** If mode is ManualUpload, this is the name of the file to upload. */
|
|
532
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']>;
|
|
533
769
|
/** If mode is ManualUpload, this is the MIME type of the file to upload. */
|
|
534
770
|
uploadMimeType?: InputMaybe<Scalars['String']['input']>;
|
|
535
771
|
widthPx?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -547,6 +783,8 @@ export type CreateAssetVariantSuccessResult = {
|
|
|
547
783
|
assetVariant: AssetVariant;
|
|
548
784
|
/** The AssetVariantVersion that was created. */
|
|
549
785
|
assetVariantVersion: AssetVariantVersion;
|
|
786
|
+
/** The AssetVariantVersions that were created. */
|
|
787
|
+
assetVariantVersions: Array<AssetVariantVersion>;
|
|
550
788
|
/** If mode is ManualUpload, this is the signed URL to use to upload the file. */
|
|
551
789
|
signedUploadUrl?: Maybe<Scalars['String']['output']>;
|
|
552
790
|
};
|
|
@@ -576,21 +814,21 @@ export type CreateCourseSuccessResult = {
|
|
|
576
814
|
course: Course;
|
|
577
815
|
};
|
|
578
816
|
|
|
579
|
-
export type
|
|
817
|
+
export type CreateCustomFieldsFormVersionInput = {
|
|
580
818
|
components: Scalars['String']['input'];
|
|
581
819
|
customTableId: Scalars['String']['input'];
|
|
582
820
|
setAsCurrent?: Scalars['Boolean']['input'];
|
|
583
821
|
};
|
|
584
822
|
|
|
585
|
-
export type
|
|
823
|
+
export type CreateCustomFieldsFormVersionResult =
|
|
586
824
|
| AuthorizationError
|
|
587
|
-
|
|
|
825
|
+
| CreateCustomFieldsFormVersionSuccessResult
|
|
588
826
|
| UserError;
|
|
589
827
|
|
|
590
|
-
export type
|
|
591
|
-
__typename?: '
|
|
828
|
+
export type CreateCustomFieldsFormVersionSuccessResult = {
|
|
829
|
+
__typename?: 'CreateCustomFieldsFormVersionSuccessResult';
|
|
592
830
|
customTable: CustomTable;
|
|
593
|
-
customTableEditorFormVersion:
|
|
831
|
+
customTableEditorFormVersion: CustomFieldsFormVersion;
|
|
594
832
|
};
|
|
595
833
|
|
|
596
834
|
export type CreateExtensionInput = {
|
|
@@ -637,10 +875,60 @@ export type CreateExtensionVersionSuccessResult = {
|
|
|
637
875
|
signedUrl: Scalars['String']['output'];
|
|
638
876
|
};
|
|
639
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
|
+
|
|
640
927
|
export type CreateLayoutInput = {
|
|
928
|
+
autoMatch: Scalars['Boolean']['input'];
|
|
641
929
|
components: Scalars['String']['input'];
|
|
642
930
|
name: Scalars['String']['input'];
|
|
643
|
-
pathPrefix
|
|
931
|
+
pathPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
644
932
|
siteId: Scalars['String']['input'];
|
|
645
933
|
};
|
|
646
934
|
|
|
@@ -695,6 +983,46 @@ export type CreateLessonUserSuccessResult = {
|
|
|
695
983
|
lessonUser: LessonUser;
|
|
696
984
|
};
|
|
697
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
|
+
|
|
698
1026
|
export type CreatePersonalApiTokenInput = {
|
|
699
1027
|
name: Scalars['String']['input'];
|
|
700
1028
|
};
|
|
@@ -740,7 +1068,7 @@ export type CreateProductResult = CreateProductSuccessResult | UserError;
|
|
|
740
1068
|
|
|
741
1069
|
export type CreateProductSuccessResult = {
|
|
742
1070
|
__typename?: 'CreateProductSuccessResult';
|
|
743
|
-
product:
|
|
1071
|
+
product: Product;
|
|
744
1072
|
};
|
|
745
1073
|
|
|
746
1074
|
export type CreateSequenceInput = {
|
|
@@ -756,10 +1084,79 @@ export type CreateSequenceSuccessResult = {
|
|
|
756
1084
|
sequence: Sequence;
|
|
757
1085
|
};
|
|
758
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
|
+
|
|
759
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>;
|
|
760
1156
|
customFields?: InputMaybe<Array<KeyValueInput>>;
|
|
761
1157
|
/** If domain is not provided, a domain will have to be generated by an extension. */
|
|
762
1158
|
domain?: InputMaybe<Scalars['String']['input']>;
|
|
1159
|
+
googleTagId?: InputMaybe<Scalars['String']['input']>;
|
|
763
1160
|
googleTagManagerId?: InputMaybe<Scalars['String']['input']>;
|
|
764
1161
|
logoIconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
765
1162
|
logoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -772,6 +1169,23 @@ export type CreateSiteInput = {
|
|
|
772
1169
|
zendeskChatKey?: InputMaybe<Scalars['String']['input']>;
|
|
773
1170
|
};
|
|
774
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
|
+
|
|
775
1189
|
export type CreateSiteResult =
|
|
776
1190
|
| AuthorizationError
|
|
777
1191
|
| CreateSiteSuccessResult
|
|
@@ -797,12 +1211,19 @@ export type CreateSiteTemplateLayoutTemplatesSuccessResult = {
|
|
|
797
1211
|
siteTemplate: SiteTemplate;
|
|
798
1212
|
};
|
|
799
1213
|
|
|
800
|
-
export type
|
|
801
|
-
|
|
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
|
|
802
1223
|
| UserError;
|
|
803
1224
|
|
|
804
|
-
export type
|
|
805
|
-
__typename?: '
|
|
1225
|
+
export type CreateSiteTemplatePageTemplateSuccessResult = {
|
|
1226
|
+
__typename?: 'CreateSiteTemplatePageTemplateSuccessResult';
|
|
806
1227
|
siteTemplate: SiteTemplate;
|
|
807
1228
|
};
|
|
808
1229
|
|
|
@@ -921,6 +1342,21 @@ export type CustomFieldVersionsList = ListResult & {
|
|
|
921
1342
|
totalCount: Scalars['Int']['output'];
|
|
922
1343
|
};
|
|
923
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
|
+
|
|
924
1360
|
export type CustomFieldsList = ListResult & {
|
|
925
1361
|
__typename?: 'CustomFieldsList';
|
|
926
1362
|
customFields: Array<CustomField>;
|
|
@@ -930,9 +1366,9 @@ export type CustomFieldsList = ListResult & {
|
|
|
930
1366
|
|
|
931
1367
|
export type CustomTable = {
|
|
932
1368
|
__typename?: 'CustomTable';
|
|
933
|
-
|
|
934
|
-
editorFormVersions: CustomTableEditorFormVersionsList;
|
|
1369
|
+
currentFieldsFormVersion?: Maybe<CustomFieldsFormVersion>;
|
|
935
1370
|
fields: CustomFieldsList;
|
|
1371
|
+
fieldsFormVersions: CustomFieldsFormVersionsList;
|
|
936
1372
|
id: Scalars['String']['output'];
|
|
937
1373
|
object?: Maybe<CustomTableObject>;
|
|
938
1374
|
/** The table's versions, sorted descending by createdAt. */
|
|
@@ -949,21 +1385,6 @@ export type CustomTableVersionsArgs = {
|
|
|
949
1385
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
950
1386
|
};
|
|
951
1387
|
|
|
952
|
-
export type CustomTableEditorFormVersion = {
|
|
953
|
-
__typename?: 'CustomTableEditorFormVersion';
|
|
954
|
-
byUser: UserProfile;
|
|
955
|
-
components: Scalars['String']['output'];
|
|
956
|
-
createdAt: Scalars['Date']['output'];
|
|
957
|
-
id: Scalars['String']['output'];
|
|
958
|
-
};
|
|
959
|
-
|
|
960
|
-
export type CustomTableEditorFormVersionsList = ListResult & {
|
|
961
|
-
__typename?: 'CustomTableEditorFormVersionsList';
|
|
962
|
-
customTableEditorFormVersions: Array<CustomTableEditorFormVersion>;
|
|
963
|
-
limit: Scalars['Int']['output'];
|
|
964
|
-
totalCount: Scalars['Int']['output'];
|
|
965
|
-
};
|
|
966
|
-
|
|
967
1388
|
export const CustomTableObject = {
|
|
968
1389
|
Form: 'Form',
|
|
969
1390
|
FormTemplate: 'FormTemplate',
|
|
@@ -1037,6 +1458,19 @@ export type CustomTablesList = ListResult & {
|
|
|
1037
1458
|
totalCount: Scalars['Int']['output'];
|
|
1038
1459
|
};
|
|
1039
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];
|
|
1040
1474
|
export type DeleteExtensionVersionResult =
|
|
1041
1475
|
| AuthorizationError
|
|
1042
1476
|
| DeleteExtensionVersionSuccessResult
|
|
@@ -1047,6 +1481,18 @@ export type DeleteExtensionVersionSuccessResult = {
|
|
|
1047
1481
|
extension: Extension;
|
|
1048
1482
|
};
|
|
1049
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
|
+
|
|
1050
1496
|
export type DeleteSiteTemplateLayoutTemplatesResult =
|
|
1051
1497
|
| DeleteSiteTemplateLayoutTemplatesSuccessResult
|
|
1052
1498
|
| UserError;
|
|
@@ -1071,6 +1517,45 @@ export type Delta = {
|
|
|
1071
1517
|
delta: Scalars['String']['output'];
|
|
1072
1518
|
};
|
|
1073
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];
|
|
1074
1559
|
export type Document = {
|
|
1075
1560
|
__typename?: 'Document';
|
|
1076
1561
|
currentVersion?: Maybe<File>;
|
|
@@ -1081,7 +1566,7 @@ export type Document = {
|
|
|
1081
1566
|
roles: Array<Scalars['String']['output']>;
|
|
1082
1567
|
stamp: Scalars['Boolean']['output'];
|
|
1083
1568
|
status: PublishStatus;
|
|
1084
|
-
/** All of the document's versions. Accessible only to users with
|
|
1569
|
+
/** All of the document's versions. Accessible only to users with Platform:view on the document's platform. */
|
|
1085
1570
|
versions: Array<File>;
|
|
1086
1571
|
};
|
|
1087
1572
|
|
|
@@ -1147,6 +1632,21 @@ export type DuplicateSequenceSuccessResult = {
|
|
|
1147
1632
|
sequence: Sequence;
|
|
1148
1633
|
};
|
|
1149
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
|
+
|
|
1150
1650
|
export type EditAssetInput = {
|
|
1151
1651
|
alt?: InputMaybe<OptionalStringUpdate>;
|
|
1152
1652
|
archived?: InputMaybe<BooleanUpdate>;
|
|
@@ -1171,6 +1671,7 @@ export type EditAssetSuccessResult = {
|
|
|
1171
1671
|
export type EditAssetVariantInput = {
|
|
1172
1672
|
archived?: InputMaybe<BooleanUpdate>;
|
|
1173
1673
|
format?: InputMaybe<AssetVariantFormatUpdate>;
|
|
1674
|
+
generateCount?: InputMaybe<Scalars['Int']['input']>;
|
|
1174
1675
|
generatePrompt?: InputMaybe<StringUpdate>;
|
|
1175
1676
|
/** Optional because it should be possible to clear it manually when mode is ManualUrl. */
|
|
1176
1677
|
heightPx?: InputMaybe<OptionalIntUpdate>;
|
|
@@ -1178,11 +1679,14 @@ export type EditAssetVariantInput = {
|
|
|
1178
1679
|
manualUrl?: InputMaybe<StringUpdate>;
|
|
1179
1680
|
name?: InputMaybe<StringUpdate>;
|
|
1180
1681
|
quality?: InputMaybe<IntUpdate>;
|
|
1181
|
-
|
|
1682
|
+
/** For ManualUpload mode only. */
|
|
1683
|
+
replaceFile?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1182
1684
|
sourceAssetVariantId?: InputMaybe<StringUpdate>;
|
|
1183
1685
|
/** Required if replaceFile is true. Otherwise must not be provided. */
|
|
1184
1686
|
uploadFileName?: InputMaybe<Scalars['String']['input']>;
|
|
1185
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. */
|
|
1186
1690
|
uploadMimeType?: InputMaybe<Scalars['String']['input']>;
|
|
1187
1691
|
/** Optional because it should be possible to clear it manually when mode is ManualUrl. */
|
|
1188
1692
|
widthPx?: InputMaybe<OptionalIntUpdate>;
|
|
@@ -1200,16 +1704,19 @@ export type EditAssetVariantSuccessResult = {
|
|
|
1200
1704
|
assetVariant: AssetVariant;
|
|
1201
1705
|
/** The AssetVariantVersion that was created. This field is null if the edit did not produce any changes. */
|
|
1202
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>;
|
|
1203
1709
|
/** If mode is ManualUpload, this is the signed URL to use to upload the file. */
|
|
1204
1710
|
signedUploadUrl?: Maybe<Scalars['String']['output']>;
|
|
1205
1711
|
};
|
|
1206
1712
|
|
|
1207
1713
|
export type EditComponentInput = {
|
|
1714
|
+
archived?: InputMaybe<BooleanUpdate>;
|
|
1208
1715
|
components?: InputMaybe<OptionalComponentsUpdate>;
|
|
1209
1716
|
id: Scalars['String']['input'];
|
|
1210
1717
|
name?: InputMaybe<OptionalStringUpdate>;
|
|
1211
1718
|
previewProps?: InputMaybe<OptionalExpressionDataUpdate>;
|
|
1212
|
-
|
|
1719
|
+
propsFormComponents?: InputMaybe<OptionalComponentsUpdate>;
|
|
1213
1720
|
};
|
|
1214
1721
|
|
|
1215
1722
|
export type EditComponentResult = EditComponentSuccessResult | UserError;
|
|
@@ -1243,7 +1750,7 @@ export type EditCustomTableInput = {
|
|
|
1243
1750
|
* accidentally overwrite changes made asynchronously.
|
|
1244
1751
|
*/
|
|
1245
1752
|
consistencyKeyCurrentTableVersionId?: InputMaybe<Scalars['String']['input']>;
|
|
1246
|
-
|
|
1753
|
+
currentFieldsFormVersionId?: InputMaybe<StringUpdate>;
|
|
1247
1754
|
/** The new set of fields. If null or omitted, no changes are made to the fields. */
|
|
1248
1755
|
fields?: InputMaybe<Array<CustomFieldInput>>;
|
|
1249
1756
|
object: CustomTableObject;
|
|
@@ -1272,6 +1779,42 @@ export type EditExtensionSuccessResult = {
|
|
|
1272
1779
|
extension: Extension;
|
|
1273
1780
|
};
|
|
1274
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
|
+
|
|
1275
1818
|
export type EditFormStepPositionResult =
|
|
1276
1819
|
| AuthorizationError
|
|
1277
1820
|
| EditFormStepPositionSuccessResult
|
|
@@ -1283,6 +1826,40 @@ export type EditFormStepPositionSuccessResult = {
|
|
|
1283
1826
|
formStep: FormStep;
|
|
1284
1827
|
};
|
|
1285
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
|
+
|
|
1286
1863
|
export type EditFormTemplateEmailTemplateInput = {
|
|
1287
1864
|
emailBodyTemplate?: InputMaybe<OptionalStringUpdate>;
|
|
1288
1865
|
formTemplateId: Scalars['String']['input'];
|
|
@@ -1300,6 +1877,10 @@ export type EditFormTemplateEmailTemplateSuccessResult = {
|
|
|
1300
1877
|
|
|
1301
1878
|
export type EditFormTemplateInput = {
|
|
1302
1879
|
components?: InputMaybe<ComponentsUpdate>;
|
|
1880
|
+
confirmationAction?: InputMaybe<ConfirmationActionUpdate>;
|
|
1881
|
+
confirmationMessageComponents?: InputMaybe<ComponentsUpdate>;
|
|
1882
|
+
confirmationRedirectUrl?: InputMaybe<OptionalStringUpdate>;
|
|
1883
|
+
confirmationRedirectUrlParameters?: InputMaybe<FormConfirmationRedirectUrlParametersUpdate>;
|
|
1303
1884
|
emailBodyTemplate?: InputMaybe<OptionalStringUpdate>;
|
|
1304
1885
|
emailSubjectTemplate?: InputMaybe<OptionalStringUpdate>;
|
|
1305
1886
|
id: Scalars['String']['input'];
|
|
@@ -1311,16 +1892,35 @@ export type EditFormTemplateInput = {
|
|
|
1311
1892
|
|
|
1312
1893
|
export type EditFormTemplateResult = AuthorizationError | EditFormTemplateSuccessResult | UserError;
|
|
1313
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
|
+
};
|
|
1912
|
+
|
|
1314
1913
|
export type EditFormTemplateSuccessResult = {
|
|
1315
1914
|
__typename?: 'EditFormTemplateSuccessResult';
|
|
1316
1915
|
formTemplate: FormTemplate;
|
|
1317
1916
|
};
|
|
1318
1917
|
|
|
1319
1918
|
export type EditLayoutInput = {
|
|
1919
|
+
autoMatch?: InputMaybe<BooleanUpdate>;
|
|
1320
1920
|
components?: InputMaybe<ComponentsUpdate>;
|
|
1321
1921
|
id: Scalars['String']['input'];
|
|
1322
1922
|
name?: InputMaybe<StringUpdate>;
|
|
1323
|
-
pathPrefix?: InputMaybe<
|
|
1923
|
+
pathPrefix?: InputMaybe<OptionalStringUpdate>;
|
|
1324
1924
|
status?: InputMaybe<PublishStatusUpdate>;
|
|
1325
1925
|
};
|
|
1326
1926
|
|
|
@@ -1400,24 +2000,33 @@ export type EditOrgPrimaryUserSuccessResult = {
|
|
|
1400
2000
|
};
|
|
1401
2001
|
|
|
1402
2002
|
export type EditPageInput = {
|
|
2003
|
+
autoSelectFeaturedImage?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2004
|
+
blogPostingMarkupMode?: InputMaybe<BlogPostingMarkupModeUpdate>;
|
|
1403
2005
|
bodyStyles?: InputMaybe<BodyStylesUpdate>;
|
|
1404
2006
|
components?: InputMaybe<ComponentsUpdate>;
|
|
2007
|
+
enableLayout?: InputMaybe<BooleanUpdate>;
|
|
2008
|
+
featuredImageAssetVariantId?: InputMaybe<OptionalStringUpdate>;
|
|
2009
|
+
featuredImageSource?: InputMaybe<ImageSettingSourceUpdate>;
|
|
2010
|
+
featuredImageUrl?: InputMaybe<OptionalStringUpdate>;
|
|
1405
2011
|
id: Scalars['String']['input'];
|
|
1406
2012
|
layoutId?: InputMaybe<OptionalStringUpdate>;
|
|
1407
2013
|
metaDescription?: InputMaybe<OptionalStringUpdate>;
|
|
2014
|
+
metaImageAssetVariantId?: InputMaybe<OptionalStringUpdate>;
|
|
1408
2015
|
metaImageUrl?: InputMaybe<OptionalStringUpdate>;
|
|
1409
2016
|
metaRobots?: InputMaybe<StringListUpdate>;
|
|
1410
2017
|
metaTitle?: InputMaybe<OptionalStringUpdate>;
|
|
1411
2018
|
pageTemplateId?: InputMaybe<OptionalStringUpdate>;
|
|
1412
2019
|
path?: InputMaybe<StringUpdate>;
|
|
1413
2020
|
productItem?: InputMaybe<OptionalStringUpdate>;
|
|
2021
|
+
props?: InputMaybe<OptionalStringUpdate>;
|
|
1414
2022
|
public?: InputMaybe<BooleanUpdate>;
|
|
2023
|
+
publishedAt?: InputMaybe<OptionalDateUpdate>;
|
|
1415
2024
|
roles?: InputMaybe<StringListUpdate>;
|
|
1416
2025
|
status?: InputMaybe<PublishStatusUpdate>;
|
|
1417
2026
|
title?: InputMaybe<StringUpdate>;
|
|
1418
2027
|
};
|
|
1419
2028
|
|
|
1420
|
-
export type EditPageResult = AuthorizationError | EditPageSuccessResult | UserError;
|
|
2029
|
+
export type EditPageResult = AuthorizationError | EditPageSuccessResult | InternalError | UserError;
|
|
1421
2030
|
|
|
1422
2031
|
export type EditPageSuccessResult = {
|
|
1423
2032
|
__typename?: 'EditPageSuccessResult';
|
|
@@ -1425,15 +2034,14 @@ export type EditPageSuccessResult = {
|
|
|
1425
2034
|
};
|
|
1426
2035
|
|
|
1427
2036
|
export type EditPageTemplateInput = {
|
|
1428
|
-
bodyStyles?: InputMaybe<
|
|
1429
|
-
components?: InputMaybe<
|
|
2037
|
+
bodyStyles?: InputMaybe<BodyStylesUpdate>;
|
|
2038
|
+
components?: InputMaybe<ComponentsUpdate>;
|
|
1430
2039
|
description?: InputMaybe<OptionalStringUpdate>;
|
|
1431
2040
|
id: Scalars['String']['input'];
|
|
1432
2041
|
metaDescription?: InputMaybe<OptionalStringUpdate>;
|
|
1433
2042
|
metaImageUrl?: InputMaybe<OptionalStringUpdate>;
|
|
1434
2043
|
metaRobots?: InputMaybe<StringListUpdate>;
|
|
1435
2044
|
metaTitle?: InputMaybe<OptionalStringUpdate>;
|
|
1436
|
-
path?: InputMaybe<StringUpdate>;
|
|
1437
2045
|
previewImageUrl?: InputMaybe<OptionalStringUpdate>;
|
|
1438
2046
|
previewProps?: InputMaybe<OptionalExpressionDataUpdate>;
|
|
1439
2047
|
propsSetupComponents?: InputMaybe<OptionalComponentsUpdate>;
|
|
@@ -1466,13 +2074,20 @@ export type EditPlatformAdminUserSuccessResult = {
|
|
|
1466
2074
|
};
|
|
1467
2075
|
|
|
1468
2076
|
export type EditPlatformInput = {
|
|
2077
|
+
activeCampaignApiToken?: InputMaybe<OptionalStringUpdate>;
|
|
2078
|
+
activeCampaignApiUrl?: InputMaybe<OptionalStringUpdate>;
|
|
2079
|
+
activeCampaignTagsSyncConfig?: InputMaybe<OptionalActiveCampaignTagsSyncConfigUpdate>;
|
|
1469
2080
|
emailReplyToAddress?: InputMaybe<OptionalStringUpdate>;
|
|
1470
|
-
emailSendFromAddress?: InputMaybe<
|
|
2081
|
+
emailSendFromAddress?: InputMaybe<OptionalStringUpdate>;
|
|
1471
2082
|
id: Scalars['String']['input'];
|
|
2083
|
+
name?: InputMaybe<StringUpdate>;
|
|
1472
2084
|
roles?: InputMaybe<RolesUpdate>;
|
|
1473
2085
|
sendGridApiKey?: InputMaybe<OptionalStringUpdate>;
|
|
1474
2086
|
stripeSecretKey?: InputMaybe<OptionalStringUpdate>;
|
|
1475
2087
|
stripeWebhookSigningSecret?: InputMaybe<OptionalStringUpdate>;
|
|
2088
|
+
webhookHelpTicketCreatedUrl?: InputMaybe<OptionalStringUpdate>;
|
|
2089
|
+
webhookOrgPeerUserCreatedUrl?: InputMaybe<OptionalStringUpdate>;
|
|
2090
|
+
webhookSubscriptionActivatedUrl?: InputMaybe<OptionalStringUpdate>;
|
|
1476
2091
|
};
|
|
1477
2092
|
|
|
1478
2093
|
export type EditPlatformResult = EditPlatformSuccessResult | UserError;
|
|
@@ -1486,7 +2101,7 @@ export type EditProductResult = EditProductSuccessResult | UserError;
|
|
|
1486
2101
|
|
|
1487
2102
|
export type EditProductSuccessResult = {
|
|
1488
2103
|
__typename?: 'EditProductSuccessResult';
|
|
1489
|
-
product:
|
|
2104
|
+
product: Product;
|
|
1490
2105
|
};
|
|
1491
2106
|
|
|
1492
2107
|
export type EditSequenceResult = EditSequenceSuccessResult | UserError;
|
|
@@ -1509,18 +2124,62 @@ export type EditSequenceUserSuccessResult = {
|
|
|
1509
2124
|
sequenceUser: SequenceUser;
|
|
1510
2125
|
};
|
|
1511
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
|
+
|
|
1512
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>;
|
|
1513
2160
|
/** The custom fields to edit. An empty list has no effect. */
|
|
1514
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. */
|
|
1515
2164
|
domain?: InputMaybe<StringUpdate>;
|
|
2165
|
+
generalInfo?: InputMaybe<OptionalStringUpdate>;
|
|
2166
|
+
googleTagId?: InputMaybe<OptionalStringUpdate>;
|
|
1516
2167
|
googleTagManagerId?: InputMaybe<OptionalStringUpdate>;
|
|
2168
|
+
grayColorName?: InputMaybe<OptionalStringUpdate>;
|
|
1517
2169
|
id: Scalars['String']['input'];
|
|
2170
|
+
localBusinessProfile?: InputMaybe<SiteLocalBusinessProfileUpdate>;
|
|
2171
|
+
logoAssetVariantId?: InputMaybe<OptionalStringUpdate>;
|
|
2172
|
+
logoIconAssetVariantId?: InputMaybe<OptionalStringUpdate>;
|
|
2173
|
+
logoIconSource?: InputMaybe<ImageSettingSourceUpdate>;
|
|
1518
2174
|
logoIconUrl?: InputMaybe<OptionalStringUpdate>;
|
|
2175
|
+
logoSource?: InputMaybe<ImageSettingSourceUpdate>;
|
|
1519
2176
|
logoUrl?: InputMaybe<OptionalStringUpdate>;
|
|
1520
2177
|
metaPixelId?: InputMaybe<OptionalStringUpdate>;
|
|
1521
2178
|
mixpanelToken?: InputMaybe<OptionalStringUpdate>;
|
|
1522
2179
|
name?: InputMaybe<StringUpdate>;
|
|
2180
|
+
pendingDomain?: InputMaybe<OptionalStringUpdate>;
|
|
1523
2181
|
privacyPolicy?: InputMaybe<RichTextInput>;
|
|
2182
|
+
secondaryColor?: InputMaybe<StringUpdate>;
|
|
1524
2183
|
siteTemplateId?: InputMaybe<OptionalStringUpdate>;
|
|
1525
2184
|
stripePublishableKey?: InputMaybe<OptionalStringUpdate>;
|
|
1526
2185
|
termsOfUse?: InputMaybe<RichTextInput>;
|
|
@@ -1537,8 +2196,10 @@ export type EditSiteSuccessResult = {
|
|
|
1537
2196
|
export type EditUserInput = {
|
|
1538
2197
|
/** The custom fields to edit. An empty list has no effect. */
|
|
1539
2198
|
customFields?: InputMaybe<Array<KeyValueInput>>;
|
|
2199
|
+
email?: InputMaybe<StringUpdate>;
|
|
1540
2200
|
expiresAt?: InputMaybe<OptionalDateUpdate>;
|
|
1541
2201
|
id: Scalars['String']['input'];
|
|
2202
|
+
role?: InputMaybe<StringUpdate>;
|
|
1542
2203
|
status?: InputMaybe<UserStatusUpdate>;
|
|
1543
2204
|
};
|
|
1544
2205
|
|
|
@@ -1582,6 +2243,11 @@ export type ExtensionServerLogsArgs = {
|
|
|
1582
2243
|
to?: InputMaybe<Scalars['Date']['input']>;
|
|
1583
2244
|
};
|
|
1584
2245
|
|
|
2246
|
+
export type ExtensionVersionsArgs = {
|
|
2247
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2248
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
2249
|
+
};
|
|
2250
|
+
|
|
1585
2251
|
export type ExtensionServerLog = {
|
|
1586
2252
|
__typename?: 'ExtensionServerLog';
|
|
1587
2253
|
id: Scalars['String']['output'];
|
|
@@ -1671,44 +2337,42 @@ export const FileStatus = {
|
|
|
1671
2337
|
export type FileStatus = (typeof FileStatus)[keyof typeof FileStatus];
|
|
1672
2338
|
export type FindOrCreateStripeSubscriptionActiveResult = {
|
|
1673
2339
|
__typename?: 'FindOrCreateStripeSubscriptionActiveResult';
|
|
1674
|
-
id: Scalars['String']['output'];
|
|
1675
2340
|
stripeSubscriptionId: Scalars['String']['output'];
|
|
1676
2341
|
};
|
|
1677
2342
|
|
|
1678
|
-
export type FindOrCreateStripeSubscriptionErrorResult = {
|
|
1679
|
-
__typename?: 'FindOrCreateStripeSubscriptionErrorResult';
|
|
1680
|
-
message: Scalars['String']['output'];
|
|
1681
|
-
};
|
|
1682
|
-
|
|
1683
2343
|
export type FindOrCreateStripeSubscriptionIncompleteResult = {
|
|
1684
2344
|
__typename?: 'FindOrCreateStripeSubscriptionIncompleteResult';
|
|
1685
|
-
|
|
1686
|
-
|
|
2345
|
+
paymentIntentClientSecret?: Maybe<Scalars['String']['output']>;
|
|
2346
|
+
setupIntentClientSecret?: Maybe<Scalars['String']['output']>;
|
|
1687
2347
|
stripeSubscriptionId: Scalars['String']['output'];
|
|
1688
2348
|
};
|
|
1689
2349
|
|
|
1690
2350
|
export type FindOrCreateStripeSubscriptionResult =
|
|
1691
2351
|
| FindOrCreateStripeSubscriptionActiveResult
|
|
1692
|
-
| FindOrCreateStripeSubscriptionErrorResult
|
|
1693
2352
|
| FindOrCreateStripeSubscriptionIncompleteResult
|
|
1694
|
-
| FindOrCreateStripeSubscriptionUpdatedResult
|
|
2353
|
+
| FindOrCreateStripeSubscriptionUpdatedResult
|
|
2354
|
+
| InternalError
|
|
2355
|
+
| UserError;
|
|
1695
2356
|
|
|
1696
2357
|
export type FindOrCreateStripeSubscriptionUpdatedResult = {
|
|
1697
2358
|
__typename?: 'FindOrCreateStripeSubscriptionUpdatedResult';
|
|
1698
|
-
|
|
2359
|
+
/** The updated subscription. */
|
|
2360
|
+
subscription: Sub;
|
|
1699
2361
|
};
|
|
1700
2362
|
|
|
1701
2363
|
export type Form = {
|
|
1702
2364
|
__typename?: 'Form';
|
|
2365
|
+
aiGenerationStatus?: Maybe<AiGenerationStatus>;
|
|
1703
2366
|
components: Scalars['String']['output'];
|
|
1704
2367
|
confirmationAction: ConfirmationAction;
|
|
1705
2368
|
confirmationMessageComponents?: Maybe<Scalars['String']['output']>;
|
|
1706
|
-
confirmationRedirectParameters: Array<FormConfirmationRedirectUrlParameter>;
|
|
1707
2369
|
confirmationRedirectUrl?: Maybe<Scalars['String']['output']>;
|
|
2370
|
+
confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameter>;
|
|
1708
2371
|
emailBodyTemplate?: Maybe<Scalars['String']['output']>;
|
|
1709
2372
|
emailSubjectTemplate?: Maybe<Scalars['String']['output']>;
|
|
1710
2373
|
entriesTotalCount: Scalars['Int']['output'];
|
|
1711
2374
|
id: Scalars['String']['output'];
|
|
2375
|
+
site: Site;
|
|
1712
2376
|
steps: Array<FormStep>;
|
|
1713
2377
|
submissionActions: Array<FormSubmissionAction>;
|
|
1714
2378
|
title: Scalars['String']['output'];
|
|
@@ -1732,10 +2396,13 @@ export type FormConfirmationRedirectUrlParameter = {
|
|
|
1732
2396
|
|
|
1733
2397
|
export type FormConfirmationRedirectUrlParameterInput = {
|
|
1734
2398
|
componentName: Scalars['String']['input'];
|
|
1735
|
-
id: Scalars['String']['input'];
|
|
1736
2399
|
parameter: Scalars['String']['input'];
|
|
1737
2400
|
};
|
|
1738
2401
|
|
|
2402
|
+
export type FormConfirmationRedirectUrlParametersUpdate = {
|
|
2403
|
+
value: Array<FormConfirmationRedirectUrlParameterInput>;
|
|
2404
|
+
};
|
|
2405
|
+
|
|
1739
2406
|
export type FormEntriesList = ListResult & {
|
|
1740
2407
|
__typename?: 'FormEntriesList';
|
|
1741
2408
|
entries: Array<FormEntry>;
|
|
@@ -1750,6 +2417,7 @@ export type FormEntry = {
|
|
|
1750
2417
|
formId: Scalars['String']['output'];
|
|
1751
2418
|
formTitle: Scalars['String']['output'];
|
|
1752
2419
|
id: Scalars['String']['output'];
|
|
2420
|
+
spam?: Maybe<Scalars['Boolean']['output']>;
|
|
1753
2421
|
submissionPageUrl: Scalars['String']['output'];
|
|
1754
2422
|
user?: Maybe<UserProfile>;
|
|
1755
2423
|
};
|
|
@@ -1759,6 +2427,7 @@ export type FormStep = {
|
|
|
1759
2427
|
components: Scalars['String']['output'];
|
|
1760
2428
|
edited: Scalars['Boolean']['output'];
|
|
1761
2429
|
enabled: Scalars['Boolean']['output'];
|
|
2430
|
+
form: Form;
|
|
1762
2431
|
id: Scalars['String']['output'];
|
|
1763
2432
|
name: Scalars['String']['output'];
|
|
1764
2433
|
/** A lexicographical sorting key. */
|
|
@@ -1767,17 +2436,26 @@ export type FormStep = {
|
|
|
1767
2436
|
|
|
1768
2437
|
export type FormSubmissionAction = {
|
|
1769
2438
|
__typename?: 'FormSubmissionAction';
|
|
2439
|
+
/** A JSON object representing a boolean expression. */
|
|
2440
|
+
condition?: Maybe<Scalars['String']['output']>;
|
|
1770
2441
|
createdAt: Scalars['Date']['output'];
|
|
1771
2442
|
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
1772
2443
|
emailSubject?: Maybe<Scalars['String']['output']>;
|
|
2444
|
+
emailToName?: Maybe<Scalars['String']['output']>;
|
|
1773
2445
|
formId: Scalars['String']['output'];
|
|
1774
2446
|
id: Scalars['String']['output'];
|
|
2447
|
+
/** A JSON object. Only set for integration actions. */
|
|
2448
|
+
integrationData?: Maybe<Scalars['String']['output']>;
|
|
1775
2449
|
type: FormSubmissionActionType;
|
|
1776
2450
|
webhookUrl?: Maybe<Scalars['String']['output']>;
|
|
1777
2451
|
};
|
|
1778
2452
|
|
|
1779
2453
|
export const FormSubmissionActionType = {
|
|
1780
2454
|
Email: 'Email',
|
|
2455
|
+
IntegrationAgencyMvp: 'IntegrationAgencyMvp',
|
|
2456
|
+
IntegrationAgencyZoom: 'IntegrationAgencyZoom',
|
|
2457
|
+
IntegrationHighLevel: 'IntegrationHighLevel',
|
|
2458
|
+
IntegrationRicochet360: 'IntegrationRicochet360',
|
|
1781
2459
|
Webhook: 'Webhook',
|
|
1782
2460
|
} as const;
|
|
1783
2461
|
|
|
@@ -1788,8 +2466,8 @@ export type FormTemplate = {
|
|
|
1788
2466
|
components: Scalars['String']['output'];
|
|
1789
2467
|
confirmationAction: ConfirmationAction;
|
|
1790
2468
|
confirmationMessageComponents?: Maybe<Scalars['String']['output']>;
|
|
1791
|
-
confirmationRedirectParameters: Array<FormConfirmationRedirectUrlParameter>;
|
|
1792
2469
|
confirmationRedirectUrl?: Maybe<Scalars['String']['output']>;
|
|
2470
|
+
confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameter>;
|
|
1793
2471
|
emailBodyTemplate?: Maybe<Scalars['String']['output']>;
|
|
1794
2472
|
emailSubjectTemplate?: Maybe<Scalars['String']['output']>;
|
|
1795
2473
|
id: Scalars['String']['output'];
|
|
@@ -1885,43 +2563,106 @@ export const GCloudCertificateState = {
|
|
|
1885
2563
|
|
|
1886
2564
|
export type GCloudCertificateState =
|
|
1887
2565
|
(typeof GCloudCertificateState)[keyof typeof GCloudCertificateState];
|
|
1888
|
-
export type
|
|
1889
|
-
|
|
1890
|
-
|
|
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'];
|
|
1891
2574
|
};
|
|
1892
2575
|
|
|
1893
|
-
export type
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
2576
|
+
export type GeneratePageMetaDescriptionResult =
|
|
2577
|
+
| AuthorizationError
|
|
2578
|
+
| GeneratePageMetaDescriptionSuccessResult
|
|
2579
|
+
| InternalError
|
|
2580
|
+
| UserError;
|
|
1897
2581
|
|
|
1898
|
-
export type
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
/** The title of the object for which we are generating, such as 'Home' or 'Contact Us'. */
|
|
1902
|
-
objectTitle: Scalars['String']['input'];
|
|
1903
|
-
/** The type of object for which we are generating. */
|
|
1904
|
-
objectType: VisualDesignerObjectType;
|
|
1905
|
-
platformId: Scalars['String']['input'];
|
|
1906
|
-
prompt: Scalars['String']['input'];
|
|
1907
|
-
/** If generating for a site, the site’s ID. */
|
|
1908
|
-
siteId?: InputMaybe<Scalars['String']['input']>;
|
|
1909
|
-
startingComponents: Scalars['String']['input'];
|
|
2582
|
+
export type GeneratePageMetaDescriptionSuccessResult = {
|
|
2583
|
+
__typename?: 'GeneratePageMetaDescriptionSuccessResult';
|
|
2584
|
+
metaDescription: Scalars['String']['output'];
|
|
1910
2585
|
};
|
|
1911
2586
|
|
|
1912
|
-
export
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
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
|
+
};
|
|
1916
2594
|
|
|
1917
|
-
export type
|
|
1918
|
-
|
|
1919
|
-
export type GenerateComponentsResult =
|
|
1920
|
-
| GenerateComponentsAskSuccessResult
|
|
1921
|
-
| GenerateComponentsDesignSuccessResult
|
|
2595
|
+
export type GenerateSiteOutlineResult =
|
|
2596
|
+
| GenerateSiteOutlineSuccessResult
|
|
1922
2597
|
| InternalError
|
|
1923
2598
|
| UserError;
|
|
1924
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'];
|
|
2664
|
+
};
|
|
2665
|
+
|
|
1925
2666
|
export type HelpTicket = {
|
|
1926
2667
|
__typename?: 'HelpTicket';
|
|
1927
2668
|
createdAt: Scalars['Date']['output'];
|
|
@@ -1969,6 +2710,18 @@ export const IdFilterOperator = {
|
|
|
1969
2710
|
} as const;
|
|
1970
2711
|
|
|
1971
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
|
+
|
|
1972
2725
|
export type InitialFormData = {
|
|
1973
2726
|
__typename?: 'InitialFormData';
|
|
1974
2727
|
/** A JSON object. */
|
|
@@ -1993,9 +2746,11 @@ export type InvalidateApiTokenSuccessResult = {
|
|
|
1993
2746
|
|
|
1994
2747
|
export const InvoiceFrequency = {
|
|
1995
2748
|
Annually: 'Annually',
|
|
2749
|
+
Daily: 'Daily',
|
|
1996
2750
|
Monthly: 'Monthly',
|
|
1997
2751
|
Quarterly: 'Quarterly',
|
|
1998
2752
|
SemiAnnually: 'SemiAnnually',
|
|
2753
|
+
Weekly: 'Weekly',
|
|
1999
2754
|
} as const;
|
|
2000
2755
|
|
|
2001
2756
|
export type InvoiceFrequency = (typeof InvoiceFrequency)[keyof typeof InvoiceFrequency];
|
|
@@ -2005,13 +2760,166 @@ export type KeyValueInput = {
|
|
|
2005
2760
|
value: Scalars['String']['input'];
|
|
2006
2761
|
};
|
|
2007
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
|
+
|
|
2008
2913
|
export type Layout = {
|
|
2009
2914
|
__typename?: 'Layout';
|
|
2915
|
+
aiGenerationStatus?: Maybe<AiGenerationStatus>;
|
|
2916
|
+
autoMatch: Scalars['Boolean']['output'];
|
|
2010
2917
|
components: Scalars['String']['output'];
|
|
2011
2918
|
id: Scalars['String']['output'];
|
|
2012
2919
|
layoutTemplate?: Maybe<LayoutTemplate>;
|
|
2013
2920
|
name: Scalars['String']['output'];
|
|
2014
|
-
pathPrefix
|
|
2921
|
+
pathPrefix?: Maybe<Scalars['String']['output']>;
|
|
2922
|
+
site: Site;
|
|
2015
2923
|
status: PublishStatus;
|
|
2016
2924
|
};
|
|
2017
2925
|
|
|
@@ -2151,6 +3059,61 @@ export type ListResult = {
|
|
|
2151
3059
|
totalCount: Scalars['Int']['output'];
|
|
2152
3060
|
};
|
|
2153
3061
|
|
|
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
|
+
};
|
|
3116
|
+
|
|
2154
3117
|
export type MoveUserToOrgResult = MoveUserToOrgSuccessResult | UserError;
|
|
2155
3118
|
|
|
2156
3119
|
export type MoveUserToOrgSuccessResult = {
|
|
@@ -2166,8 +3129,15 @@ export type MoveUserToOrgSuccessResult = {
|
|
|
2166
3129
|
export type Mutation = {
|
|
2167
3130
|
__typename?: 'Mutation';
|
|
2168
3131
|
archiveComponent: ArchiveComponentResult;
|
|
3132
|
+
archiveProduct: ArchiveProductResult;
|
|
3133
|
+
cancelAiDesignerChatUserMessage: CancelAiDesignerChatUserMessageResult;
|
|
3134
|
+
cancelKeywordResearchJob: CancelKeywordResearchJobResult;
|
|
3135
|
+
cancelSubscription: CancelSubscriptionResult;
|
|
2169
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;
|
|
2170
3139
|
consentToAgreement: User;
|
|
3140
|
+
convertSubscription: ConvertSubscriptionResult;
|
|
2171
3141
|
/**
|
|
2172
3142
|
* Creates a platform admin user. If a user with the specified email address already exists, the user is added as an admin.
|
|
2173
3143
|
* Requires the requesting user to be an owner of the platform.
|
|
@@ -2177,33 +3147,39 @@ export type Mutation = {
|
|
|
2177
3147
|
createAssetVariant: CreateAssetVariantResult;
|
|
2178
3148
|
createComponent: CreateComponentResult;
|
|
2179
3149
|
createCourse: CreateCourseResult;
|
|
2180
|
-
|
|
3150
|
+
createCustomFieldsFormVersion: CreateCustomFieldsFormVersionResult;
|
|
2181
3151
|
createDocument: Document;
|
|
2182
3152
|
createDocumentDownloadPrompt: DocumentDownloadPrompt;
|
|
2183
3153
|
createExtension: CreateExtensionResult;
|
|
2184
3154
|
createExtensionVersion: CreateExtensionVersionResult;
|
|
2185
3155
|
createForm: Form;
|
|
2186
3156
|
createFormStep: FormStep;
|
|
2187
|
-
createFormSubmissionAction:
|
|
3157
|
+
createFormSubmissionAction: CreateFormSubmissionActionResult;
|
|
3158
|
+
createFormSubmissionAction2: CreateFormSubmissionActionResult;
|
|
2188
3159
|
createFormTemplate: FormTemplate;
|
|
2189
3160
|
createFormTemplateStep: FormTemplateStep;
|
|
2190
3161
|
createHelpTicket: HelpTicket;
|
|
3162
|
+
createKeywordResearchJob: CreateKeywordResearchJobResult;
|
|
2191
3163
|
createLayout: CreateLayoutResult;
|
|
2192
3164
|
createLayoutTemplate: CreateLayoutTemplateResult;
|
|
2193
3165
|
createLesson: CreateLessonResult;
|
|
2194
3166
|
createLessonUser: CreateLessonUserResult;
|
|
2195
|
-
createPage:
|
|
3167
|
+
createPage: CreatePageResult;
|
|
2196
3168
|
createPageFromTemplate: Page;
|
|
2197
3169
|
createPageTemplate: PageTemplate;
|
|
3170
|
+
createPaymentMethodChangeSetupIntent: CreatePaymentMethodChangeSetupIntentResult;
|
|
2198
3171
|
createPersonalApiToken: CreatePersonalApiTokenResult;
|
|
2199
3172
|
createPlatform: CreatePlatformResult;
|
|
2200
3173
|
createPlatformApiToken: CreatePlatformApiTokenResult;
|
|
2201
3174
|
createProduct: CreateProductResult;
|
|
2202
3175
|
createSequence: CreateSequenceResult;
|
|
2203
3176
|
createSite: CreateSiteResult;
|
|
3177
|
+
createSiteBuildServiceRequest: CreateSiteBuildServiceRequestResult;
|
|
3178
|
+
createSiteClimberSubscription: CreateSiteClimberSubscriptionResult;
|
|
3179
|
+
createSiteProcessGeneralInfo: CreateSiteProcessGeneralInfoResult;
|
|
2204
3180
|
createSiteTemplate: CreateSiteTemplateResult;
|
|
2205
3181
|
createSiteTemplateLayoutTemplates: CreateSiteTemplateLayoutTemplatesResult;
|
|
2206
|
-
|
|
3182
|
+
createSiteTemplatePageTemplate: CreateSiteTemplatePageTemplateResult;
|
|
2207
3183
|
createStage: Stage;
|
|
2208
3184
|
createStageBlueprint: StageBlueprint;
|
|
2209
3185
|
createSubscription: SubscriptionOrganization;
|
|
@@ -2220,16 +3196,15 @@ export type Mutation = {
|
|
|
2220
3196
|
* Currently the requester needs to have the OrganizationOwner role, but that will become configurable.
|
|
2221
3197
|
*/
|
|
2222
3198
|
createUser: CreateUserResult;
|
|
2223
|
-
createUser2: CreateUserResult;
|
|
2224
3199
|
deleteExtensionVersion: DeleteExtensionVersionResult;
|
|
2225
3200
|
deleteFormStep: Scalars['Boolean']['output'];
|
|
2226
|
-
deleteFormSubmissionAction:
|
|
3201
|
+
deleteFormSubmissionAction: DeleteFormSubmissionActionResult;
|
|
3202
|
+
deleteFormSubmissionAction2: DeleteFormSubmissionActionResult;
|
|
2227
3203
|
deleteFormTemplateStep: Scalars['Boolean']['output'];
|
|
2228
3204
|
deleteSiteTemplateLayoutTemplates: DeleteSiteTemplateLayoutTemplatesResult;
|
|
2229
3205
|
deleteSiteTemplatePageTemplates: DeleteSiteTemplatePageTemplatesResult;
|
|
2230
3206
|
deleteStageBlueprint: Scalars['Boolean']['output'];
|
|
2231
3207
|
deleteSubscriptionOrg: Scalars['Boolean']['output'];
|
|
2232
|
-
deleteSubscriptionPlan: Scalars['Boolean']['output'];
|
|
2233
3208
|
deleteTlsCertificate: Scalars['Boolean']['output'];
|
|
2234
3209
|
duplicateComponent: DuplicateComponentResult;
|
|
2235
3210
|
duplicateCourse: DuplicateCourseResult;
|
|
@@ -2240,6 +3215,7 @@ export type Mutation = {
|
|
|
2240
3215
|
duplicatePageTemplate: PageTemplate;
|
|
2241
3216
|
duplicateSequence: DuplicateSequenceResult;
|
|
2242
3217
|
duplicateStageBlueprint: StageBlueprint;
|
|
3218
|
+
editAiTrainingSample: EditAiTrainingSampleResult;
|
|
2243
3219
|
editAsset: EditAssetResult;
|
|
2244
3220
|
editAssetVariant: EditAssetVariantResult;
|
|
2245
3221
|
editComponent: EditComponentResult;
|
|
@@ -2250,17 +3226,15 @@ export type Mutation = {
|
|
|
2250
3226
|
editDocumentCurrentVersion: Document;
|
|
2251
3227
|
editDocumentDownloadPrompt: DocumentDownloadPrompt;
|
|
2252
3228
|
editExtension: EditExtensionResult;
|
|
3229
|
+
editExtensionVersion: EditExtensionVersionResult;
|
|
2253
3230
|
editFile: File;
|
|
2254
|
-
editForm:
|
|
2255
|
-
editFormStep:
|
|
3231
|
+
editForm: EditFormResult;
|
|
3232
|
+
editFormStep: EditFormStepResult;
|
|
2256
3233
|
editFormStepPosition: EditFormStepPositionResult;
|
|
2257
|
-
editFormSubmissionAction:
|
|
2258
|
-
editFormTemplate:
|
|
2259
|
-
editFormTemplate2: EditFormTemplateResult;
|
|
2260
|
-
editFormTemplateConfirmation: FormTemplate;
|
|
3234
|
+
editFormSubmissionAction: EditFormSubmissionActionResult;
|
|
3235
|
+
editFormTemplate: EditFormTemplateResult;
|
|
2261
3236
|
editFormTemplateEmailTemplate: EditFormTemplateEmailTemplateResult;
|
|
2262
|
-
editFormTemplateStep:
|
|
2263
|
-
editFormTemplateStepPosition: FormTemplateStep;
|
|
3237
|
+
editFormTemplateStep: EditFormTemplateStepResult;
|
|
2264
3238
|
editHelpTicketStatus: HelpTicket;
|
|
2265
3239
|
editLayout: EditLayoutResult;
|
|
2266
3240
|
editLayoutTemplate: EditLayoutTemplateResult;
|
|
@@ -2269,7 +3243,6 @@ export type Mutation = {
|
|
|
2269
3243
|
editOrgPrimaryUser: EditOrgPrimaryUserResult;
|
|
2270
3244
|
editOrganization: Org;
|
|
2271
3245
|
editPage: EditPageResult;
|
|
2272
|
-
editPage2: EditPageResult;
|
|
2273
3246
|
editPageMetadata: Page;
|
|
2274
3247
|
editPageProps: Page;
|
|
2275
3248
|
editPageStatus: Page;
|
|
@@ -2281,6 +3254,7 @@ export type Mutation = {
|
|
|
2281
3254
|
editSequence: EditSequenceResult;
|
|
2282
3255
|
editSequenceUser: EditSequenceUserResult;
|
|
2283
3256
|
editSite: EditSiteResult;
|
|
3257
|
+
editSiteClimberSubscription: EditSiteClimberSubscriptionResult;
|
|
2284
3258
|
editStageBlueprintCompletionSpec: StageBlueprint;
|
|
2285
3259
|
editStageBlueprintComponents: StageBlueprint;
|
|
2286
3260
|
editStageBlueprintMetaData: StageBlueprint;
|
|
@@ -2288,55 +3262,92 @@ export type Mutation = {
|
|
|
2288
3262
|
editSubscription: Sub;
|
|
2289
3263
|
editSubscriptionOrg: SubscriptionOrganization;
|
|
2290
3264
|
editUser: EditUserResult;
|
|
2291
|
-
editUserEmail: User;
|
|
2292
3265
|
editUserName: User;
|
|
2293
3266
|
editUserPlan: UserPlan;
|
|
2294
|
-
editUserRole: User;
|
|
2295
|
-
/** @deprecated Use editUser instead. */
|
|
2296
|
-
editUserStatus: User;
|
|
2297
3267
|
/** Finds or creates a Stripe customer for the current user. */
|
|
2298
3268
|
findOrCreateStripeCustomer: StripeCustomer;
|
|
2299
3269
|
/** Finds or creates a Stripe subscription for the current user. An existing subscription is returned only if it is active. */
|
|
2300
3270
|
findOrCreateStripeSubscription: FindOrCreateStripeSubscriptionResult;
|
|
2301
|
-
|
|
3271
|
+
generatePageMetaDescription: GeneratePageMetaDescriptionResult;
|
|
3272
|
+
generateSiteOutline: GenerateSiteOutlineResult;
|
|
2302
3273
|
invalidateApiToken: InvalidateApiTokenResult;
|
|
2303
3274
|
moveUserToOrg: MoveUserToOrgResult;
|
|
3275
|
+
pauseKeywordResearchJob: PauseKeywordResearchJobResult;
|
|
3276
|
+
postAiDesignerChatUserMessage: PostAiDesignerChatUserMessageResult;
|
|
3277
|
+
publishAssetVariantVersion: PublishAssetVariantVersionResult;
|
|
2304
3278
|
refreshSession: Scalars['Boolean']['output'];
|
|
2305
3279
|
requestPasswordReset: Scalars['Boolean']['output'];
|
|
2306
|
-
resetPassword:
|
|
3280
|
+
resetPassword: ResetPasswordResult;
|
|
3281
|
+
resetPassword2: ResetPasswordResult;
|
|
2307
3282
|
restoreCourseVersionChanges: RestoreCourseVersionChangesResult;
|
|
2308
3283
|
restoreFormVersionChanges: RestoreFormVersionChangesResult;
|
|
2309
3284
|
restoreLessonVersionChanges: RestoreLessonVersionChangesResult;
|
|
2310
3285
|
restorePageVersionChanges: RestorePageVersionChangesResult;
|
|
3286
|
+
resumeKeywordResearchJob: ResumeKeywordResearchJobResult;
|
|
3287
|
+
retryKeywordResearchSeedKeywords: RetryKeywordResearchSeedKeywordsResult;
|
|
2311
3288
|
sendVerificationEmail: Scalars['Boolean']['output'];
|
|
2312
3289
|
signIn: User;
|
|
3290
|
+
signIn2: SignInResult;
|
|
3291
|
+
signInWithGoogle: SignInResult;
|
|
2313
3292
|
signOut: Scalars['Boolean']['output'];
|
|
3293
|
+
signUp: SignUpResult;
|
|
2314
3294
|
splitUserToNewOrg: SplitUserToNewOrgResult;
|
|
3295
|
+
startKeywordResearchClustering: StartKeywordResearchClusteringResult;
|
|
2315
3296
|
submitForm: SubmitFormResult;
|
|
3297
|
+
submitForm2: SubmitFormResult;
|
|
2316
3298
|
submitReview: Scalars['Boolean']['output'];
|
|
3299
|
+
syncAiTrainingPlatforms: SyncAiTrainingPlatformsResult;
|
|
2317
3300
|
syncFormTemplateToForms: Scalars['Boolean']['output'];
|
|
2318
3301
|
/** Sync a layout template to the layouts that were created from the template. Only draft and published layouts are synced. */
|
|
2319
3302
|
syncLayoutTemplateToLayouts: SyncLayoutTemplateToLayoutsResult;
|
|
2320
3303
|
/** Sync a page template to the pages that were created from the template. Only draft and published pages are synced. */
|
|
2321
3304
|
syncPageTemplateToPages: SyncPageTemplateToPagesResult;
|
|
3305
|
+
updateKeywordResearchKeywordsManualReview: UpdateKeywordResearchKeywordsManualReviewResult;
|
|
3306
|
+
updateKeywordResearchTopicsStatus: UpdateKeywordResearchTopicsStatusResult;
|
|
2322
3307
|
uploadFile: UploadFileResult;
|
|
3308
|
+
validateAiTrainingSamples: ValidateAiTrainingSamplesResult;
|
|
2323
3309
|
verifyEmailAddress: User;
|
|
3310
|
+
verifyEmailAddress2: VerifyEmailAddressResult;
|
|
2324
3311
|
};
|
|
2325
3312
|
|
|
2326
3313
|
export type MutationArchiveComponentArgs = {
|
|
2327
3314
|
id: Scalars['String']['input'];
|
|
2328
3315
|
};
|
|
2329
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
|
+
|
|
2330
3333
|
export type MutationChangePasswordArgs = {
|
|
2331
3334
|
currentPassword: Scalars['String']['input'];
|
|
2332
3335
|
newPassword: Scalars['String']['input'];
|
|
2333
3336
|
};
|
|
2334
3337
|
|
|
3338
|
+
export type MutationClonePlatformArgs = {
|
|
3339
|
+
input: ClonePlatformInput;
|
|
3340
|
+
};
|
|
3341
|
+
|
|
2335
3342
|
export type MutationConsentToAgreementArgs = {
|
|
2336
3343
|
agreementId: Scalars['String']['input'];
|
|
2337
3344
|
userName: Scalars['String']['input'];
|
|
2338
3345
|
};
|
|
2339
3346
|
|
|
3347
|
+
export type MutationConvertSubscriptionArgs = {
|
|
3348
|
+
input: ConvertSubscriptionInput;
|
|
3349
|
+
};
|
|
3350
|
+
|
|
2340
3351
|
export type MutationCreateAdminUserArgs = {
|
|
2341
3352
|
input: CreateAdminUserInput;
|
|
2342
3353
|
};
|
|
@@ -2357,8 +3368,8 @@ export type MutationCreateCourseArgs = {
|
|
|
2357
3368
|
input: CreateCourseInput;
|
|
2358
3369
|
};
|
|
2359
3370
|
|
|
2360
|
-
export type
|
|
2361
|
-
input:
|
|
3371
|
+
export type MutationCreateCustomFieldsFormVersionArgs = {
|
|
3372
|
+
input: CreateCustomFieldsFormVersionInput;
|
|
2362
3373
|
};
|
|
2363
3374
|
|
|
2364
3375
|
export type MutationCreateDocumentArgs = {
|
|
@@ -2394,11 +3405,11 @@ export type MutationCreateFormStepArgs = {
|
|
|
2394
3405
|
};
|
|
2395
3406
|
|
|
2396
3407
|
export type MutationCreateFormSubmissionActionArgs = {
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
3408
|
+
input: CreateFormSubmissionActionInput;
|
|
3409
|
+
};
|
|
3410
|
+
|
|
3411
|
+
export type MutationCreateFormSubmissionAction2Args = {
|
|
3412
|
+
input: CreateFormSubmissionActionInput;
|
|
2402
3413
|
};
|
|
2403
3414
|
|
|
2404
3415
|
export type MutationCreateFormTemplateArgs = {
|
|
@@ -2421,6 +3432,10 @@ export type MutationCreateHelpTicketArgs = {
|
|
|
2421
3432
|
type: Scalars['String']['input'];
|
|
2422
3433
|
};
|
|
2423
3434
|
|
|
3435
|
+
export type MutationCreateKeywordResearchJobArgs = {
|
|
3436
|
+
input: CreateKeywordResearchJobInput;
|
|
3437
|
+
};
|
|
3438
|
+
|
|
2424
3439
|
export type MutationCreateLayoutArgs = {
|
|
2425
3440
|
input: CreateLayoutInput;
|
|
2426
3441
|
};
|
|
@@ -2438,9 +3453,7 @@ export type MutationCreateLessonUserArgs = {
|
|
|
2438
3453
|
};
|
|
2439
3454
|
|
|
2440
3455
|
export type MutationCreatePageArgs = {
|
|
2441
|
-
|
|
2442
|
-
siteId: Scalars['String']['input'];
|
|
2443
|
-
title: Scalars['String']['input'];
|
|
3456
|
+
input: CreatePageInput;
|
|
2444
3457
|
};
|
|
2445
3458
|
|
|
2446
3459
|
export type MutationCreatePageFromTemplateArgs = {
|
|
@@ -2450,11 +3463,14 @@ export type MutationCreatePageFromTemplateArgs = {
|
|
|
2450
3463
|
};
|
|
2451
3464
|
|
|
2452
3465
|
export type MutationCreatePageTemplateArgs = {
|
|
2453
|
-
path: Scalars['String']['input'];
|
|
2454
3466
|
platformId: Scalars['String']['input'];
|
|
2455
3467
|
title: Scalars['String']['input'];
|
|
2456
3468
|
};
|
|
2457
3469
|
|
|
3470
|
+
export type MutationCreatePaymentMethodChangeSetupIntentArgs = {
|
|
3471
|
+
input: CreatePaymentMethodChangeSetupIntentInput;
|
|
3472
|
+
};
|
|
3473
|
+
|
|
2458
3474
|
export type MutationCreatePersonalApiTokenArgs = {
|
|
2459
3475
|
input: CreatePersonalApiTokenInput;
|
|
2460
3476
|
};
|
|
@@ -2490,6 +3506,18 @@ export type MutationCreateSiteArgs = {
|
|
|
2490
3506
|
input: CreateSiteInput;
|
|
2491
3507
|
};
|
|
2492
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
|
+
|
|
2493
3521
|
export type MutationCreateSiteTemplateArgs = {
|
|
2494
3522
|
input: CreateSiteTemplateInput;
|
|
2495
3523
|
};
|
|
@@ -2498,8 +3526,8 @@ export type MutationCreateSiteTemplateLayoutTemplatesArgs = {
|
|
|
2498
3526
|
input: SiteTemplateLayoutTemplatesInput;
|
|
2499
3527
|
};
|
|
2500
3528
|
|
|
2501
|
-
export type
|
|
2502
|
-
input:
|
|
3529
|
+
export type MutationCreateSiteTemplatePageTemplateArgs = {
|
|
3530
|
+
input: CreateSiteTemplatePageTemplateInput;
|
|
2503
3531
|
};
|
|
2504
3532
|
|
|
2505
3533
|
export type MutationCreateStageArgs = {
|
|
@@ -2543,10 +3571,6 @@ export type MutationCreateUserArgs = {
|
|
|
2543
3571
|
input: CreateUserInput;
|
|
2544
3572
|
};
|
|
2545
3573
|
|
|
2546
|
-
export type MutationCreateUser2Args = {
|
|
2547
|
-
input: CreateUserInput;
|
|
2548
|
-
};
|
|
2549
|
-
|
|
2550
3574
|
export type MutationDeleteExtensionVersionArgs = {
|
|
2551
3575
|
id: Scalars['String']['input'];
|
|
2552
3576
|
};
|
|
@@ -2556,7 +3580,11 @@ export type MutationDeleteFormStepArgs = {
|
|
|
2556
3580
|
};
|
|
2557
3581
|
|
|
2558
3582
|
export type MutationDeleteFormSubmissionActionArgs = {
|
|
2559
|
-
|
|
3583
|
+
id: Scalars['String']['input'];
|
|
3584
|
+
};
|
|
3585
|
+
|
|
3586
|
+
export type MutationDeleteFormSubmissionAction2Args = {
|
|
3587
|
+
id: Scalars['String']['input'];
|
|
2560
3588
|
};
|
|
2561
3589
|
|
|
2562
3590
|
export type MutationDeleteFormTemplateStepArgs = {
|
|
@@ -2580,10 +3608,6 @@ export type MutationDeleteSubscriptionOrgArgs = {
|
|
|
2580
3608
|
notes: Scalars['String']['input'];
|
|
2581
3609
|
};
|
|
2582
3610
|
|
|
2583
|
-
export type MutationDeleteSubscriptionPlanArgs = {
|
|
2584
|
-
id: Scalars['String']['input'];
|
|
2585
|
-
};
|
|
2586
|
-
|
|
2587
3611
|
export type MutationDeleteTlsCertificateArgs = {
|
|
2588
3612
|
certificateName: Scalars['String']['input'];
|
|
2589
3613
|
};
|
|
@@ -2627,6 +3651,10 @@ export type MutationDuplicateStageBlueprintArgs = {
|
|
|
2627
3651
|
position: Scalars['Int']['input'];
|
|
2628
3652
|
};
|
|
2629
3653
|
|
|
3654
|
+
export type MutationEditAiTrainingSampleArgs = {
|
|
3655
|
+
input: EditAiTrainingSampleInput;
|
|
3656
|
+
};
|
|
3657
|
+
|
|
2630
3658
|
export type MutationEditAssetArgs = {
|
|
2631
3659
|
input: EditAssetInput;
|
|
2632
3660
|
};
|
|
@@ -2676,27 +3704,21 @@ export type MutationEditExtensionArgs = {
|
|
|
2676
3704
|
input: EditExtensionInput;
|
|
2677
3705
|
};
|
|
2678
3706
|
|
|
2679
|
-
export type
|
|
3707
|
+
export type MutationEditExtensionVersionArgs = {
|
|
3708
|
+
input: EditExtensionVersionInput;
|
|
3709
|
+
};
|
|
3710
|
+
|
|
3711
|
+
export type MutationEditFileArgs = {
|
|
2680
3712
|
downloadName: Scalars['String']['input'];
|
|
2681
3713
|
id: Scalars['String']['input'];
|
|
2682
3714
|
};
|
|
2683
3715
|
|
|
2684
3716
|
export type MutationEditFormArgs = {
|
|
2685
|
-
|
|
2686
|
-
confirmationAction: ConfirmationAction;
|
|
2687
|
-
confirmationMessageComponents?: InputMaybe<Scalars['String']['input']>;
|
|
2688
|
-
confirmationRedirectUrl?: InputMaybe<Scalars['String']['input']>;
|
|
2689
|
-
confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameterInput>;
|
|
2690
|
-
id: Scalars['String']['input'];
|
|
2691
|
-
title: Scalars['String']['input'];
|
|
3717
|
+
input: EditFormInput;
|
|
2692
3718
|
};
|
|
2693
3719
|
|
|
2694
3720
|
export type MutationEditFormStepArgs = {
|
|
2695
|
-
|
|
2696
|
-
enabled: Scalars['Boolean']['input'];
|
|
2697
|
-
id: Scalars['String']['input'];
|
|
2698
|
-
name: Scalars['String']['input'];
|
|
2699
|
-
position: Scalars['String']['input'];
|
|
3721
|
+
input: EditFormStepInput;
|
|
2700
3722
|
};
|
|
2701
3723
|
|
|
2702
3724
|
export type MutationEditFormStepPositionArgs = {
|
|
@@ -2705,47 +3727,19 @@ export type MutationEditFormStepPositionArgs = {
|
|
|
2705
3727
|
};
|
|
2706
3728
|
|
|
2707
3729
|
export type MutationEditFormSubmissionActionArgs = {
|
|
2708
|
-
|
|
2709
|
-
emailSubject?: InputMaybe<Scalars['String']['input']>;
|
|
2710
|
-
submissionActionId: Scalars['String']['input'];
|
|
2711
|
-
type: FormSubmissionActionType;
|
|
2712
|
-
webhookUrl?: InputMaybe<Scalars['String']['input']>;
|
|
3730
|
+
input: EditFormSubmissionActionInput;
|
|
2713
3731
|
};
|
|
2714
3732
|
|
|
2715
3733
|
export type MutationEditFormTemplateArgs = {
|
|
2716
|
-
components: Scalars['String']['input'];
|
|
2717
|
-
id: Scalars['String']['input'];
|
|
2718
|
-
status: PublishStatus;
|
|
2719
|
-
title: Scalars['String']['input'];
|
|
2720
|
-
};
|
|
2721
|
-
|
|
2722
|
-
export type MutationEditFormTemplate2Args = {
|
|
2723
3734
|
input: EditFormTemplateInput;
|
|
2724
3735
|
};
|
|
2725
3736
|
|
|
2726
|
-
export type MutationEditFormTemplateConfirmationArgs = {
|
|
2727
|
-
confirmationAction: ConfirmationAction;
|
|
2728
|
-
confirmationMessageComponents?: InputMaybe<Scalars['String']['input']>;
|
|
2729
|
-
confirmationRedirectUrl?: InputMaybe<Scalars['String']['input']>;
|
|
2730
|
-
confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameterInput>;
|
|
2731
|
-
id: Scalars['String']['input'];
|
|
2732
|
-
};
|
|
2733
|
-
|
|
2734
3737
|
export type MutationEditFormTemplateEmailTemplateArgs = {
|
|
2735
3738
|
input: EditFormTemplateEmailTemplateInput;
|
|
2736
3739
|
};
|
|
2737
3740
|
|
|
2738
3741
|
export type MutationEditFormTemplateStepArgs = {
|
|
2739
|
-
|
|
2740
|
-
enabled: Scalars['Boolean']['input'];
|
|
2741
|
-
id: Scalars['String']['input'];
|
|
2742
|
-
name: Scalars['String']['input'];
|
|
2743
|
-
position: Scalars['String']['input'];
|
|
2744
|
-
};
|
|
2745
|
-
|
|
2746
|
-
export type MutationEditFormTemplateStepPositionArgs = {
|
|
2747
|
-
id: Scalars['String']['input'];
|
|
2748
|
-
position: Scalars['String']['input'];
|
|
3742
|
+
input: EditFormTemplateStepInput;
|
|
2749
3743
|
};
|
|
2750
3744
|
|
|
2751
3745
|
export type MutationEditHelpTicketStatusArgs = {
|
|
@@ -2782,10 +3776,6 @@ export type MutationEditPageArgs = {
|
|
|
2782
3776
|
input: EditPageInput;
|
|
2783
3777
|
};
|
|
2784
3778
|
|
|
2785
|
-
export type MutationEditPage2Args = {
|
|
2786
|
-
input: EditPageInput;
|
|
2787
|
-
};
|
|
2788
|
-
|
|
2789
3779
|
export type MutationEditPageMetadataArgs = {
|
|
2790
3780
|
metaTitle?: InputMaybe<Scalars['String']['input']>;
|
|
2791
3781
|
pageId: Scalars['String']['input'];
|
|
@@ -2849,6 +3839,10 @@ export type MutationEditSiteArgs = {
|
|
|
2849
3839
|
input: EditSiteInput;
|
|
2850
3840
|
};
|
|
2851
3841
|
|
|
3842
|
+
export type MutationEditSiteClimberSubscriptionArgs = {
|
|
3843
|
+
input: EditSiteClimberSubscriptionInput;
|
|
3844
|
+
};
|
|
3845
|
+
|
|
2852
3846
|
export type MutationEditStageBlueprintCompletionSpecArgs = {
|
|
2853
3847
|
completionSpec: Scalars['String']['input'];
|
|
2854
3848
|
id: Scalars['String']['input'];
|
|
@@ -2892,11 +3886,6 @@ export type MutationEditUserArgs = {
|
|
|
2892
3886
|
input: EditUserInput;
|
|
2893
3887
|
};
|
|
2894
3888
|
|
|
2895
|
-
export type MutationEditUserEmailArgs = {
|
|
2896
|
-
email: Scalars['String']['input'];
|
|
2897
|
-
id: Scalars['String']['input'];
|
|
2898
|
-
};
|
|
2899
|
-
|
|
2900
3889
|
export type MutationEditUserNameArgs = {
|
|
2901
3890
|
firstName: Scalars['String']['input'];
|
|
2902
3891
|
id: Scalars['String']['input'];
|
|
@@ -2909,16 +3898,6 @@ export type MutationEditUserPlanArgs = {
|
|
|
2909
3898
|
userId: Scalars['String']['input'];
|
|
2910
3899
|
};
|
|
2911
3900
|
|
|
2912
|
-
export type MutationEditUserRoleArgs = {
|
|
2913
|
-
role: Scalars['String']['input'];
|
|
2914
|
-
userId: Scalars['String']['input'];
|
|
2915
|
-
};
|
|
2916
|
-
|
|
2917
|
-
export type MutationEditUserStatusArgs = {
|
|
2918
|
-
status: UserStatus;
|
|
2919
|
-
userId: Scalars['String']['input'];
|
|
2920
|
-
};
|
|
2921
|
-
|
|
2922
3901
|
export type MutationFindOrCreateStripeCustomerArgs = {
|
|
2923
3902
|
address?: InputMaybe<AddressInput>;
|
|
2924
3903
|
};
|
|
@@ -2927,15 +3906,20 @@ export type MutationFindOrCreateStripeSubscriptionArgs = {
|
|
|
2927
3906
|
address: AddressInput;
|
|
2928
3907
|
email: Scalars['String']['input'];
|
|
2929
3908
|
firstName: Scalars['String']['input'];
|
|
3909
|
+
hostManagedPlatformId?: InputMaybe<Scalars['String']['input']>;
|
|
2930
3910
|
lastName: Scalars['String']['input'];
|
|
2931
|
-
phone
|
|
3911
|
+
phone?: InputMaybe<Scalars['String']['input']>;
|
|
2932
3912
|
promoCode?: InputMaybe<Scalars['String']['input']>;
|
|
2933
3913
|
promoCodeType?: InputMaybe<PromoCodeType>;
|
|
2934
3914
|
subscriptionPlanId: Scalars['String']['input'];
|
|
2935
3915
|
};
|
|
2936
3916
|
|
|
2937
|
-
export type
|
|
2938
|
-
input:
|
|
3917
|
+
export type MutationGeneratePageMetaDescriptionArgs = {
|
|
3918
|
+
input: GeneratePageMetaDescriptionInput;
|
|
3919
|
+
};
|
|
3920
|
+
|
|
3921
|
+
export type MutationGenerateSiteOutlineArgs = {
|
|
3922
|
+
input: GenerateSiteOutlineInput;
|
|
2939
3923
|
};
|
|
2940
3924
|
|
|
2941
3925
|
export type MutationInvalidateApiTokenArgs = {
|
|
@@ -2948,13 +3932,28 @@ export type MutationMoveUserToOrgArgs = {
|
|
|
2948
3932
|
userId: Scalars['String']['input'];
|
|
2949
3933
|
};
|
|
2950
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
|
+
|
|
2951
3947
|
export type MutationRequestPasswordResetArgs = {
|
|
2952
3948
|
email: Scalars['String']['input'];
|
|
2953
3949
|
};
|
|
2954
3950
|
|
|
2955
3951
|
export type MutationResetPasswordArgs = {
|
|
2956
|
-
|
|
2957
|
-
|
|
3952
|
+
input: ResetPasswordInput;
|
|
3953
|
+
};
|
|
3954
|
+
|
|
3955
|
+
export type MutationResetPassword2Args = {
|
|
3956
|
+
input: ResetPasswordInput;
|
|
2958
3957
|
};
|
|
2959
3958
|
|
|
2960
3959
|
export type MutationRestoreCourseVersionChangesArgs = {
|
|
@@ -2973,22 +3972,47 @@ export type MutationRestorePageVersionChangesArgs = {
|
|
|
2973
3972
|
input: RestorePageVersionChangesInput;
|
|
2974
3973
|
};
|
|
2975
3974
|
|
|
3975
|
+
export type MutationResumeKeywordResearchJobArgs = {
|
|
3976
|
+
id: Scalars['String']['input'];
|
|
3977
|
+
};
|
|
3978
|
+
|
|
3979
|
+
export type MutationRetryKeywordResearchSeedKeywordsArgs = {
|
|
3980
|
+
jobId: Scalars['String']['input'];
|
|
3981
|
+
};
|
|
3982
|
+
|
|
2976
3983
|
export type MutationSignInArgs = {
|
|
2977
3984
|
email: Scalars['String']['input'];
|
|
2978
3985
|
password: Scalars['String']['input'];
|
|
2979
3986
|
};
|
|
2980
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
|
+
|
|
2981
4001
|
export type MutationSplitUserToNewOrgArgs = {
|
|
2982
4002
|
notes?: InputMaybe<Scalars['String']['input']>;
|
|
2983
4003
|
userId: Scalars['String']['input'];
|
|
2984
4004
|
};
|
|
2985
4005
|
|
|
4006
|
+
export type MutationStartKeywordResearchClusteringArgs = {
|
|
4007
|
+
input: StartKeywordResearchClusteringInput;
|
|
4008
|
+
};
|
|
4009
|
+
|
|
2986
4010
|
export type MutationSubmitFormArgs = {
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
4011
|
+
input: SubmitFormInput;
|
|
4012
|
+
};
|
|
4013
|
+
|
|
4014
|
+
export type MutationSubmitForm2Args = {
|
|
4015
|
+
input: SubmitFormInput;
|
|
2992
4016
|
};
|
|
2993
4017
|
|
|
2994
4018
|
export type MutationSubmitReviewArgs = {
|
|
@@ -3009,6 +4033,14 @@ export type MutationSyncPageTemplateToPagesArgs = {
|
|
|
3009
4033
|
input: SyncPageTemplateToPagesInput;
|
|
3010
4034
|
};
|
|
3011
4035
|
|
|
4036
|
+
export type MutationUpdateKeywordResearchKeywordsManualReviewArgs = {
|
|
4037
|
+
input: UpdateKeywordResearchKeywordsManualReviewInput;
|
|
4038
|
+
};
|
|
4039
|
+
|
|
4040
|
+
export type MutationUpdateKeywordResearchTopicsStatusArgs = {
|
|
4041
|
+
input: UpdateKeywordResearchTopicsStatusInput;
|
|
4042
|
+
};
|
|
4043
|
+
|
|
3012
4044
|
export type MutationUploadFileArgs = {
|
|
3013
4045
|
input: UploadFileInput;
|
|
3014
4046
|
};
|
|
@@ -3017,6 +4049,14 @@ export type MutationVerifyEmailAddressArgs = {
|
|
|
3017
4049
|
key: Scalars['String']['input'];
|
|
3018
4050
|
};
|
|
3019
4051
|
|
|
4052
|
+
export type MutationVerifyEmailAddress2Args = {
|
|
4053
|
+
key: Scalars['String']['input'];
|
|
4054
|
+
};
|
|
4055
|
+
|
|
4056
|
+
export type OptionalActiveCampaignTagsSyncConfigUpdate = {
|
|
4057
|
+
value?: InputMaybe<Array<ActiveCampaignTagSyncConfigInput>>;
|
|
4058
|
+
};
|
|
4059
|
+
|
|
3020
4060
|
/**
|
|
3021
4061
|
* An input type for optionally updating an array of components. Although the interface is the same as that
|
|
3022
4062
|
* of OptionalStringUpdate, semantically this is different and is parsed differently.
|
|
@@ -3065,6 +4105,10 @@ export type OptionalIntUpdate = {
|
|
|
3065
4105
|
value?: InputMaybe<Scalars['Int']['input']>;
|
|
3066
4106
|
};
|
|
3067
4107
|
|
|
4108
|
+
export type OptionalSchemaOrgEntityUpdate = {
|
|
4109
|
+
value?: InputMaybe<SchemaOrgEntityInput>;
|
|
4110
|
+
};
|
|
4111
|
+
|
|
3068
4112
|
/**
|
|
3069
4113
|
* A filter for an optional string field. Either exists or filter must be provided but not both.
|
|
3070
4114
|
* A value exists if it is not null. An empty string is considered to exist.
|
|
@@ -3084,6 +4128,12 @@ export type OptionalStringUpdate = {
|
|
|
3084
4128
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
3085
4129
|
};
|
|
3086
4130
|
|
|
4131
|
+
export const OrderDirection = {
|
|
4132
|
+
Asc: 'Asc',
|
|
4133
|
+
Desc: 'Desc',
|
|
4134
|
+
} as const;
|
|
4135
|
+
|
|
4136
|
+
export type OrderDirection = (typeof OrderDirection)[keyof typeof OrderDirection];
|
|
3087
4137
|
export type Org = {
|
|
3088
4138
|
__typename?: 'Org';
|
|
3089
4139
|
id: Scalars['String']['output'];
|
|
@@ -3116,16 +4166,24 @@ export type OrgsList = ListResult & {
|
|
|
3116
4166
|
|
|
3117
4167
|
export type Page = {
|
|
3118
4168
|
__typename?: 'Page';
|
|
3119
|
-
|
|
4169
|
+
aiGenerationStatus?: Maybe<AiGenerationStatus>;
|
|
4170
|
+
blogPostingMarkupMode: BlogPostingMarkupMode;
|
|
4171
|
+
bodyStyles?: Maybe<Scalars['String']['output']>;
|
|
3120
4172
|
components: Scalars['String']['output'];
|
|
3121
4173
|
/**
|
|
3122
4174
|
* The fields that have been edited since the last time the page was synced with its template.
|
|
3123
4175
|
* This field is set for every page, even if a page does not come from a page template.
|
|
3124
4176
|
*/
|
|
3125
4177
|
editsToPageTemplate: Array<PageTemplateSyncedField>;
|
|
4178
|
+
enableLayout: Scalars['Boolean']['output'];
|
|
4179
|
+
featuredImageAssetVariant?: Maybe<AssetVariant>;
|
|
4180
|
+
featuredImageSource: ImageSettingSource;
|
|
4181
|
+
featuredImageUrl?: Maybe<Scalars['String']['output']>;
|
|
3126
4182
|
id: Scalars['String']['output'];
|
|
3127
4183
|
layout?: Maybe<Layout>;
|
|
4184
|
+
layoutId?: Maybe<Scalars['String']['output']>;
|
|
3128
4185
|
metaDescription?: Maybe<Scalars['String']['output']>;
|
|
4186
|
+
metaImageAssetVariant?: Maybe<AssetVariant>;
|
|
3129
4187
|
metaRobots: Array<Scalars['String']['output']>;
|
|
3130
4188
|
metaTitle?: Maybe<Scalars['String']['output']>;
|
|
3131
4189
|
pageTemplate?: Maybe<PageTemplate>;
|
|
@@ -3134,9 +4192,14 @@ export type Page = {
|
|
|
3134
4192
|
productItem?: Maybe<Scalars['String']['output']>;
|
|
3135
4193
|
props?: Maybe<Scalars['String']['output']>;
|
|
3136
4194
|
public: Scalars['Boolean']['output'];
|
|
3137
|
-
|
|
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
|
+
*/
|
|
3138
4200
|
resolvedLayout?: Maybe<Layout>;
|
|
3139
4201
|
roles: Array<Scalars['String']['output']>;
|
|
4202
|
+
site: Site;
|
|
3140
4203
|
status: PublishStatus;
|
|
3141
4204
|
title: Scalars['String']['output'];
|
|
3142
4205
|
versions: PageVersionsList;
|
|
@@ -3148,17 +4211,25 @@ export type PageVersionsArgs = {
|
|
|
3148
4211
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3149
4212
|
};
|
|
3150
4213
|
|
|
4214
|
+
export type PagePreviewTokenResult = PagePreviewTokenSuccessResult | UserError;
|
|
4215
|
+
|
|
4216
|
+
export type PagePreviewTokenSuccessResult = {
|
|
4217
|
+
__typename?: 'PagePreviewTokenSuccessResult';
|
|
4218
|
+
token: Scalars['String']['output'];
|
|
4219
|
+
};
|
|
4220
|
+
|
|
3151
4221
|
export type PageTemplate = {
|
|
3152
4222
|
__typename?: 'PageTemplate';
|
|
3153
4223
|
activatedAsPages: Array<Page>;
|
|
3154
|
-
bodyStyles
|
|
4224
|
+
bodyStyles?: Maybe<Scalars['String']['output']>;
|
|
3155
4225
|
components: Scalars['String']['output'];
|
|
3156
4226
|
description?: Maybe<Scalars['String']['output']>;
|
|
3157
4227
|
id: Scalars['String']['output'];
|
|
3158
4228
|
metaDescription?: Maybe<Scalars['String']['output']>;
|
|
4229
|
+
metaImageAssetVariantId?: Maybe<Scalars['String']['output']>;
|
|
3159
4230
|
metaRobots: Array<Scalars['String']['output']>;
|
|
3160
4231
|
metaTitle?: Maybe<Scalars['String']['output']>;
|
|
3161
|
-
path
|
|
4232
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
3162
4233
|
previewImageUrl?: Maybe<Scalars['String']['output']>;
|
|
3163
4234
|
previewProps?: Maybe<Scalars['String']['output']>;
|
|
3164
4235
|
propsSetupComponents?: Maybe<Scalars['String']['output']>;
|
|
@@ -3175,11 +4246,10 @@ export const PageTemplateSyncedField = {
|
|
|
3175
4246
|
BodyStyles: 'BodyStyles',
|
|
3176
4247
|
Components: 'Components',
|
|
3177
4248
|
MetaDescription: 'MetaDescription',
|
|
4249
|
+
MetaImageAssetVariantId: 'MetaImageAssetVariantId',
|
|
3178
4250
|
MetaImageUrl: 'MetaImageUrl',
|
|
3179
4251
|
MetaRobots: 'MetaRobots',
|
|
3180
4252
|
MetaTitle: 'MetaTitle',
|
|
3181
|
-
Path: 'Path',
|
|
3182
|
-
Title: 'Title',
|
|
3183
4253
|
} as const;
|
|
3184
4254
|
|
|
3185
4255
|
export type PageTemplateSyncedField =
|
|
@@ -3194,14 +4264,21 @@ export type PageTemplatesList = ListResult & {
|
|
|
3194
4264
|
|
|
3195
4265
|
export type PageVersion = {
|
|
3196
4266
|
__typename?: 'PageVersion';
|
|
4267
|
+
blogPostingMarkupMode?: Maybe<BlogPostingMarkupMode>;
|
|
3197
4268
|
bodyStyles?: Maybe<Scalars['String']['output']>;
|
|
3198
4269
|
byUser: UserProfile;
|
|
3199
4270
|
changes: Array<PageVersionChange>;
|
|
3200
4271
|
components?: Maybe<Scalars['String']['output']>;
|
|
3201
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']>;
|
|
3202
4277
|
id: Scalars['String']['output'];
|
|
3203
4278
|
layout?: Maybe<Layout>;
|
|
3204
4279
|
metaDescription?: Maybe<Scalars['String']['output']>;
|
|
4280
|
+
metaImageAssetVariant?: Maybe<AssetVariant>;
|
|
4281
|
+
metaImageAssetVariantId?: Maybe<Scalars['String']['output']>;
|
|
3205
4282
|
metaImageUrl?: Maybe<Scalars['String']['output']>;
|
|
3206
4283
|
metaRobots?: Maybe<Array<Scalars['String']['output']>>;
|
|
3207
4284
|
metaTitle?: Maybe<Scalars['String']['output']>;
|
|
@@ -3210,17 +4287,23 @@ export type PageVersion = {
|
|
|
3210
4287
|
productItem?: Maybe<Scalars['String']['output']>;
|
|
3211
4288
|
props?: Maybe<Scalars['String']['output']>;
|
|
3212
4289
|
public?: Maybe<Scalars['Boolean']['output']>;
|
|
4290
|
+
publishedAt?: Maybe<Scalars['Date']['output']>;
|
|
3213
4291
|
roles?: Maybe<Array<Scalars['String']['output']>>;
|
|
3214
4292
|
status?: Maybe<PublishStatus>;
|
|
3215
4293
|
title?: Maybe<Scalars['String']['output']>;
|
|
3216
4294
|
};
|
|
3217
4295
|
|
|
3218
4296
|
export const PageVersionChange = {
|
|
4297
|
+
BlogPostingMarkupMode: 'BlogPostingMarkupMode',
|
|
3219
4298
|
BodyStyles: 'BodyStyles',
|
|
3220
4299
|
Components: 'Components',
|
|
3221
4300
|
CustomFields: 'CustomFields',
|
|
4301
|
+
EnableLayout: 'EnableLayout',
|
|
4302
|
+
/** If set, then version has the updated featuredImageSource, featuredImageAssetVariantId, or featuredImageUrl. */
|
|
4303
|
+
FeaturedImage: 'FeaturedImage',
|
|
3222
4304
|
LayoutId: 'LayoutId',
|
|
3223
4305
|
MetaDescription: 'MetaDescription',
|
|
4306
|
+
MetaImageAssetVariantId: 'MetaImageAssetVariantId',
|
|
3224
4307
|
MetaImageUrl: 'MetaImageUrl',
|
|
3225
4308
|
MetaRobots: 'MetaRobots',
|
|
3226
4309
|
MetaTitle: 'MetaTitle',
|
|
@@ -3229,6 +4312,7 @@ export const PageVersionChange = {
|
|
|
3229
4312
|
ProductItem: 'ProductItem',
|
|
3230
4313
|
Props: 'Props',
|
|
3231
4314
|
Public: 'Public',
|
|
4315
|
+
PublishedAt: 'PublishedAt',
|
|
3232
4316
|
Roles: 'Roles',
|
|
3233
4317
|
Status: 'Status',
|
|
3234
4318
|
Title: 'Title',
|
|
@@ -3249,9 +4333,12 @@ export type PagesList = ListResult & {
|
|
|
3249
4333
|
totalCount: Scalars['Int']['output'];
|
|
3250
4334
|
};
|
|
3251
4335
|
|
|
3252
|
-
export type
|
|
3253
|
-
|
|
3254
|
-
|
|
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'];
|
|
3255
4342
|
};
|
|
3256
4343
|
|
|
3257
4344
|
export const PasswordStatus = {
|
|
@@ -3262,6 +4349,33 @@ export const PasswordStatus = {
|
|
|
3262
4349
|
} as const;
|
|
3263
4350
|
|
|
3264
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];
|
|
3265
4379
|
export type Permission = {
|
|
3266
4380
|
__typename?: 'Permission';
|
|
3267
4381
|
action: Scalars['String']['output'];
|
|
@@ -3278,85 +4392,6 @@ export type PermissionListUpdate = {
|
|
|
3278
4392
|
value: Array<PermissionInput>;
|
|
3279
4393
|
};
|
|
3280
4394
|
|
|
3281
|
-
/** Temporary for the rename. */
|
|
3282
|
-
export const PermissionName = {
|
|
3283
|
-
/** Create (i.e., add) extensions. */
|
|
3284
|
-
CreateExtension: 'CreateExtension',
|
|
3285
|
-
/** Create extension versions for existing extensions. This includes deploying new code. */
|
|
3286
|
-
CreateExtensionVersion: 'CreateExtensionVersion',
|
|
3287
|
-
/** Create sites. */
|
|
3288
|
-
CreateSite: 'CreateSite',
|
|
3289
|
-
/** Create page and form templates. */
|
|
3290
|
-
CreateTemplate: 'CreateTemplate',
|
|
3291
|
-
/** Create a user in any org. */
|
|
3292
|
-
CreateUser: 'CreateUser',
|
|
3293
|
-
/** Edit or manage everything else not covered by other permissions. */
|
|
3294
|
-
Edit: 'Edit',
|
|
3295
|
-
/** Edit assets, including creating and deleting any asset or asset variant. */
|
|
3296
|
-
EditAsset: 'EditAsset',
|
|
3297
|
-
/** Edit, including creating and deleting, any component. */
|
|
3298
|
-
EditComponent: 'EditComponent',
|
|
3299
|
-
/** Edit, including creating and deleting, any course. */
|
|
3300
|
-
EditCourse: 'EditCourse',
|
|
3301
|
-
/** Edit, including creating and deleting, any custom component. */
|
|
3302
|
-
EditCustomComponent: 'EditCustomComponent',
|
|
3303
|
-
/** Edit, including creating and deleting, any custom field. */
|
|
3304
|
-
EditCustomField: 'EditCustomField',
|
|
3305
|
-
/** Edit any customer site, including its pages and forms, but not necessarily domain. */
|
|
3306
|
-
EditCustomerSite: 'EditCustomerSite',
|
|
3307
|
-
/** Edit any extension. This does not include creating extension versions (i.e., deploying new code). */
|
|
3308
|
-
EditExtension: 'EditExtension',
|
|
3309
|
-
/** Edit any help ticket's status. */
|
|
3310
|
-
EditHelpTicketStatus: 'EditHelpTicketStatus',
|
|
3311
|
-
/** Edit any platform site, including its pages and forms, but not necessarily domain. */
|
|
3312
|
-
EditPlatformSite: 'EditPlatformSite',
|
|
3313
|
-
/** Edit, including creating and deleting, any sequence. */
|
|
3314
|
-
EditSequence: 'EditSequence',
|
|
3315
|
-
/** Edit any user's position in a sequence. */
|
|
3316
|
-
EditSequenceUser: 'EditSequenceUser',
|
|
3317
|
-
/** Edit any site's settings, pages, forms, and layouts. */
|
|
3318
|
-
EditSite: 'EditSite',
|
|
3319
|
-
/** Edit any site's domain. */
|
|
3320
|
-
EditSiteDomain: 'EditSiteDomain',
|
|
3321
|
-
/** Edit any site's TLS certificate, including creating and deleting certificates. Does not including editing TLS certificates. */
|
|
3322
|
-
EditSiteTlsCertificate: 'EditSiteTlsCertificate',
|
|
3323
|
-
/** Edit any subscription. */
|
|
3324
|
-
EditSubscription: 'EditSubscription',
|
|
3325
|
-
/** Edit any page and form template. */
|
|
3326
|
-
EditTemplate: 'EditTemplate',
|
|
3327
|
-
/** Edit any custom field of any user. */
|
|
3328
|
-
EditUserCustomFields: 'EditUserCustomFields',
|
|
3329
|
-
/** Edit any user's email address. */
|
|
3330
|
-
EditUserEmail: 'EditUserEmail',
|
|
3331
|
-
/** Edit which org any user is in and whether a user is an org owner. */
|
|
3332
|
-
EditUserOrg: 'EditUserOrg',
|
|
3333
|
-
/** Edit any user's first and last name. */
|
|
3334
|
-
EditUserProfile: 'EditUserProfile',
|
|
3335
|
-
/** Edit any user's role. */
|
|
3336
|
-
EditUserRole: 'EditUserRole',
|
|
3337
|
-
/** Edit any user's status. */
|
|
3338
|
-
EditUserStatus: 'EditUserStatus',
|
|
3339
|
-
/** Sync any form template to forms. */
|
|
3340
|
-
SyncFormTemplateToForms: 'SyncFormTemplateToForms',
|
|
3341
|
-
/** Sync any page template to pages. */
|
|
3342
|
-
SyncPageTemplateToPages: 'SyncPageTemplateToPages',
|
|
3343
|
-
/** Upload files as an extension. */
|
|
3344
|
-
UploadFileAsExtension: 'UploadFileAsExtension',
|
|
3345
|
-
/** View anything except for sites. */
|
|
3346
|
-
View: 'View',
|
|
3347
|
-
/** View any asset including its variants and versions. */
|
|
3348
|
-
ViewAsset: 'ViewAsset',
|
|
3349
|
-
/** View any course. */
|
|
3350
|
-
ViewCourse: 'ViewCourse',
|
|
3351
|
-
/** View any extension, including its versions, configuration, and logs. */
|
|
3352
|
-
ViewExtension: 'ViewExtension',
|
|
3353
|
-
/** View any site, including pages, forms, and layouts, and components. */
|
|
3354
|
-
ViewSite: 'ViewSite',
|
|
3355
|
-
/** View any page or form template. */
|
|
3356
|
-
ViewTemplate: 'ViewTemplate',
|
|
3357
|
-
} as const;
|
|
3358
|
-
|
|
3359
|
-
export type PermissionName = (typeof PermissionName)[keyof typeof PermissionName];
|
|
3360
4395
|
export type PersonalApiToken = {
|
|
3361
4396
|
__typename?: 'PersonalApiToken';
|
|
3362
4397
|
createdAt: Scalars['Date']['output'];
|
|
@@ -3377,25 +4412,35 @@ export type Platform = {
|
|
|
3377
4412
|
activeCampaignApi?: Maybe<ActiveCampaignApi>;
|
|
3378
4413
|
activeCampaignApiToken?: Maybe<Scalars['String']['output']>;
|
|
3379
4414
|
activeCampaignApiUrl?: Maybe<Scalars['String']['output']>;
|
|
3380
|
-
activeCampaignTagsSyncConfig?: Maybe<Array<
|
|
4415
|
+
activeCampaignTagsSyncConfig?: Maybe<Array<ActiveCampaignTagSyncConfig>>;
|
|
4416
|
+
/** All admins, including active and inactive. */
|
|
3381
4417
|
admins: PlatformAdminUsersList;
|
|
3382
4418
|
apiTokens: PlatformApiTokensList;
|
|
3383
|
-
defaultFormNotificationEmailBodyTemplate
|
|
4419
|
+
defaultFormNotificationEmailBodyTemplate?: Maybe<Scalars['String']['output']>;
|
|
3384
4420
|
emailReplyToAddress?: Maybe<Scalars['String']['output']>;
|
|
3385
|
-
emailSendFromAddress
|
|
3386
|
-
enableOrgSites: Scalars['Boolean']['output'];
|
|
4421
|
+
emailSendFromAddress?: Maybe<Scalars['String']['output']>;
|
|
3387
4422
|
featureFlags: Array<Scalars['String']['output']>;
|
|
3388
4423
|
handle: Scalars['String']['output'];
|
|
3389
4424
|
id: Scalars['String']['output'];
|
|
4425
|
+
industryDomain?: Maybe<Scalars['String']['output']>;
|
|
3390
4426
|
mainSiteId?: Maybe<Scalars['String']['output']>;
|
|
3391
4427
|
mixpanelToken?: Maybe<Scalars['String']['output']>;
|
|
3392
4428
|
name: Scalars['String']['output'];
|
|
3393
4429
|
roles: Array<Role>;
|
|
3394
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>;
|
|
3395
4438
|
stripeSecretKey?: Maybe<Scalars['String']['output']>;
|
|
3396
4439
|
stripeWebhookSigningSecret?: Maybe<Scalars['String']['output']>;
|
|
4440
|
+
subscriptions: SubscriptionsList;
|
|
3397
4441
|
webhookHelpTicketCreatedUrl?: Maybe<Scalars['String']['output']>;
|
|
3398
|
-
|
|
4442
|
+
webhookOrgPeerUserCreatedUrl?: Maybe<Scalars['String']['output']>;
|
|
4443
|
+
/** @deprecated No longer supported for new platforms. */
|
|
3399
4444
|
webhookRegisterUserSecret?: Maybe<Scalars['String']['output']>;
|
|
3400
4445
|
webhookSubscriptionActivatedUrl?: Maybe<Scalars['String']['output']>;
|
|
3401
4446
|
zendeskApiToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -3407,6 +4452,10 @@ export type Platform = {
|
|
|
3407
4452
|
zendeskWebhookSigningSecret?: Maybe<Scalars['String']['output']>;
|
|
3408
4453
|
};
|
|
3409
4454
|
|
|
4455
|
+
export type PlatformSubscriptionsArgs = {
|
|
4456
|
+
status?: InputMaybe<Array<SubscriptionStatus>>;
|
|
4457
|
+
};
|
|
4458
|
+
|
|
3410
4459
|
/** An object linking a platform and an admin user. */
|
|
3411
4460
|
export type PlatformAdminUser = {
|
|
3412
4461
|
__typename?: 'PlatformAdminUser';
|
|
@@ -3441,6 +4490,68 @@ export type PlatformApiTokensList = ListResult & {
|
|
|
3441
4490
|
totalCount: Scalars['Int']['output'];
|
|
3442
4491
|
};
|
|
3443
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
|
+
|
|
3444
4555
|
export type PreviewStripeCoupon = {
|
|
3445
4556
|
__typename?: 'PreviewStripeCoupon';
|
|
3446
4557
|
amountOff?: Maybe<Scalars['String']['output']>;
|
|
@@ -3455,18 +4566,21 @@ export type PreviewStripeCoupon = {
|
|
|
3455
4566
|
|
|
3456
4567
|
export type PreviewStripePromoCode = {
|
|
3457
4568
|
__typename?: 'PreviewStripePromoCode';
|
|
4569
|
+
active: Scalars['Boolean']['output'];
|
|
3458
4570
|
coupon: PreviewStripeCoupon;
|
|
3459
|
-
valid: Scalars['Boolean']['output'];
|
|
3460
4571
|
};
|
|
3461
4572
|
|
|
3462
|
-
|
|
3463
|
-
|
|
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';
|
|
3464
4576
|
message: Scalars['String']['output'];
|
|
3465
4577
|
};
|
|
3466
4578
|
|
|
3467
4579
|
export type PreviewStripeUpcomingInvoiceResult =
|
|
3468
|
-
|
|
|
3469
|
-
|
|
|
4580
|
+
| InternalError
|
|
4581
|
+
| PreviewStripeUpcomingInvoicePromoCodeErrorResult
|
|
4582
|
+
| PreviewStripeUpcomingInvoiceSuccessResult
|
|
4583
|
+
| UserError;
|
|
3470
4584
|
|
|
3471
4585
|
export type PreviewStripeUpcomingInvoiceSuccessResult = {
|
|
3472
4586
|
__typename?: 'PreviewStripeUpcomingInvoiceSuccessResult';
|
|
@@ -3479,6 +4593,24 @@ export type PreviewStripeUpcomingInvoiceSuccessResult = {
|
|
|
3479
4593
|
total: Scalars['String']['output'];
|
|
3480
4594
|
};
|
|
3481
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
|
+
|
|
3482
4614
|
export type ProductItemOccurrences = {
|
|
3483
4615
|
__typename?: 'ProductItemOccurrences';
|
|
3484
4616
|
documents: DocumentsList;
|
|
@@ -3502,10 +4634,20 @@ export type ProductItemPicklist = ListResult & {
|
|
|
3502
4634
|
totalCount: Scalars['Int']['output'];
|
|
3503
4635
|
};
|
|
3504
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
|
+
|
|
3505
4647
|
export type ProductsList = ListResult & {
|
|
3506
4648
|
__typename?: 'ProductsList';
|
|
3507
4649
|
limit: Scalars['Int']['output'];
|
|
3508
|
-
products: Array<
|
|
4650
|
+
products: Array<Product>;
|
|
3509
4651
|
totalCount: Scalars['Int']['output'];
|
|
3510
4652
|
};
|
|
3511
4653
|
|
|
@@ -3535,19 +4677,27 @@ export const PromoCodeType = {
|
|
|
3535
4677
|
} as const;
|
|
3536
4678
|
|
|
3537
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
|
+
|
|
3538
4688
|
export type PublicSite = {
|
|
3539
4689
|
__typename?: 'PublicSite';
|
|
3540
4690
|
custom: CustomFieldValuesList;
|
|
3541
4691
|
domain: Scalars['String']['output'];
|
|
3542
|
-
form
|
|
4692
|
+
form?: Maybe<PublicSiteForm>;
|
|
3543
4693
|
id: Scalars['String']['output'];
|
|
3544
4694
|
latestAgreement?: Maybe<Agreement>;
|
|
3545
|
-
/** 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. */
|
|
3546
4696
|
layoutForPath?: Maybe<Layout>;
|
|
3547
|
-
|
|
4697
|
+
/** The resolved featured logo URL. */
|
|
3548
4698
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
3549
4699
|
name: Scalars['String']['output'];
|
|
3550
|
-
/** Get a published page by path. */
|
|
4700
|
+
/** Get a published page by path. The path must not have leading or trailing slashes. */
|
|
3551
4701
|
page?: Maybe<PublicSitePage>;
|
|
3552
4702
|
/** Get published pages, optionally filtering by a path prefix. */
|
|
3553
4703
|
pages: PublicSitePagesList;
|
|
@@ -3572,6 +4722,7 @@ export type PublicSitePageArgs = {
|
|
|
3572
4722
|
|
|
3573
4723
|
export type PublicSitePagesArgs = {
|
|
3574
4724
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
4725
|
+
orderBy?: InputMaybe<Array<SitePagesOrder>>;
|
|
3575
4726
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3576
4727
|
pathPrefix?: InputMaybe<Scalars['String']['input']>;
|
|
3577
4728
|
};
|
|
@@ -3581,23 +4732,30 @@ export type PublicSiteForm = {
|
|
|
3581
4732
|
components: Scalars['String']['output'];
|
|
3582
4733
|
confirmationAction: ConfirmationAction;
|
|
3583
4734
|
confirmationMessageComponents?: Maybe<Scalars['String']['output']>;
|
|
3584
|
-
confirmationRedirectParameters: Array<FormConfirmationRedirectUrlParameter>;
|
|
3585
4735
|
confirmationRedirectUrl?: Maybe<Scalars['String']['output']>;
|
|
4736
|
+
confirmationRedirectUrlParameters: Array<FormConfirmationRedirectUrlParameter>;
|
|
3586
4737
|
id: Scalars['String']['output'];
|
|
3587
4738
|
/** Only the enabled steps. */
|
|
3588
4739
|
steps: Array<FormStep>;
|
|
4740
|
+
trackSubmissionAsLead: Scalars['Boolean']['output'];
|
|
3589
4741
|
};
|
|
3590
4742
|
|
|
3591
4743
|
export type PublicSitePage = {
|
|
3592
4744
|
__typename?: 'PublicSitePage';
|
|
3593
|
-
bodyStyles
|
|
4745
|
+
bodyStyles?: Maybe<Scalars['String']['output']>;
|
|
3594
4746
|
components: Scalars['String']['output'];
|
|
4747
|
+
/** The resolved featured image’s URL. */
|
|
4748
|
+
featuredImageUrl?: Maybe<Scalars['String']['output']>;
|
|
3595
4749
|
id: Scalars['String']['output'];
|
|
3596
4750
|
metaDescription?: Maybe<Scalars['String']['output']>;
|
|
4751
|
+
/** The resolved meta image URL. */
|
|
4752
|
+
metaImageUrl?: Maybe<Scalars['String']['output']>;
|
|
3597
4753
|
metaRobots: Array<Scalars['String']['output']>;
|
|
3598
4754
|
metaTitle?: Maybe<Scalars['String']['output']>;
|
|
3599
4755
|
path: Scalars['String']['output'];
|
|
3600
4756
|
props?: Maybe<Scalars['String']['output']>;
|
|
4757
|
+
publishedAt: Scalars['Date']['output'];
|
|
4758
|
+
/** Resolved the same way as for the Page type. */
|
|
3601
4759
|
resolvedLayout?: Maybe<Layout>;
|
|
3602
4760
|
title: Scalars['String']['output'];
|
|
3603
4761
|
};
|
|
@@ -3609,6 +4767,20 @@ export type PublicSitePagesList = ListResult & {
|
|
|
3609
4767
|
totalCount: Scalars['Int']['output'];
|
|
3610
4768
|
};
|
|
3611
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
|
+
|
|
3612
4784
|
export const PublishStatus = {
|
|
3613
4785
|
Archived: 'Archived',
|
|
3614
4786
|
Draft: 'Draft',
|
|
@@ -3623,6 +4795,9 @@ export type PublishStatusUpdate = {
|
|
|
3623
4795
|
export type Query = {
|
|
3624
4796
|
__typename?: 'Query';
|
|
3625
4797
|
adminMe?: Maybe<AdminUser>;
|
|
4798
|
+
aiDesignerChatThread?: Maybe<AiDesignerChatThread>;
|
|
4799
|
+
aiTrainingSample?: Maybe<AiTrainingSample>;
|
|
4800
|
+
aiTrainingSamples: AiTrainingSamplesList;
|
|
3626
4801
|
applyCustomPromoCode: ApplyCustomPromoCodeResult;
|
|
3627
4802
|
asset?: Maybe<Asset>;
|
|
3628
4803
|
assetVariant?: Maybe<AssetVariant>;
|
|
@@ -3631,15 +4806,17 @@ export type Query = {
|
|
|
3631
4806
|
/**
|
|
3632
4807
|
* Get active components that can be used for the visual builder on a platform. Results include built-in,
|
|
3633
4808
|
* custom, and remote extension-provided components.
|
|
4809
|
+
* TODO: objectType is optional temporarily.
|
|
3634
4810
|
*/
|
|
3635
4811
|
builderComponents: BuilderComponentsList;
|
|
3636
|
-
component
|
|
4812
|
+
component?: Maybe<Component>;
|
|
3637
4813
|
components: ComponentsList;
|
|
3638
4814
|
course: Course;
|
|
3639
4815
|
courses: CoursesList;
|
|
3640
4816
|
customTable?: Maybe<CustomTable>;
|
|
3641
4817
|
customTables: CustomTablesList;
|
|
3642
|
-
|
|
4818
|
+
designerObjects: Array<DesignerObject>;
|
|
4819
|
+
document?: Maybe<Document>;
|
|
3643
4820
|
documentDownloadPrompts: Array<DocumentDownloadPrompt>;
|
|
3644
4821
|
documents: Array<Document>;
|
|
3645
4822
|
extension: Extension;
|
|
@@ -3654,6 +4831,7 @@ export type Query = {
|
|
|
3654
4831
|
* Get help tickets. For a user without the View permission on the specified platform, only the user’s own
|
|
3655
4832
|
* help tickets are returned (and platformId needs to be the user’s own platform ID).
|
|
3656
4833
|
*/
|
|
4834
|
+
googleFonts: GoogleFontsList;
|
|
3657
4835
|
helpTickets: HelpTicketsList;
|
|
3658
4836
|
/**
|
|
3659
4837
|
* Get an object with the form data with which to initialize the specified form. The result factors
|
|
@@ -3661,6 +4839,12 @@ export type Query = {
|
|
|
3661
4839
|
* which the form is being shown.
|
|
3662
4840
|
*/
|
|
3663
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;
|
|
3664
4848
|
layout: Layout;
|
|
3665
4849
|
layoutTemplate: LayoutTemplate;
|
|
3666
4850
|
layouts: LayoutsList;
|
|
@@ -3671,24 +4855,27 @@ export type Query = {
|
|
|
3671
4855
|
multiOrgView: Array<Org>;
|
|
3672
4856
|
organization: Org;
|
|
3673
4857
|
organizations: OrgsList;
|
|
3674
|
-
page
|
|
4858
|
+
page?: Maybe<Page>;
|
|
4859
|
+
pagePreviewToken: PagePreviewTokenResult;
|
|
3675
4860
|
/** Get a page template. For unauthenticated requests, a template is returned only if it's published. */
|
|
3676
4861
|
pageTemplate: PageTemplate;
|
|
3677
4862
|
pageTemplates: PageTemplatesList;
|
|
3678
|
-
|
|
3679
|
-
passwordResetInfo: PasswordResetInfo;
|
|
4863
|
+
passwordResetInfo: PasswordResetInfoResult;
|
|
3680
4864
|
platform: Platform;
|
|
4865
|
+
platforms: PlatformsList;
|
|
3681
4866
|
previewStripeUpcomingInvoice: PreviewStripeUpcomingInvoiceResult;
|
|
3682
4867
|
productItemOccurrences: ProductItemOccurrences;
|
|
3683
4868
|
productItemPicklist: ProductItemPicklist;
|
|
3684
4869
|
products: ProductsList;
|
|
3685
4870
|
promoCodePicklist: PromoCodePicklist;
|
|
3686
|
-
|
|
3687
|
-
|
|
4871
|
+
publicDocument?: Maybe<PublicDocument>;
|
|
4872
|
+
publicSite?: Maybe<PublicSite>;
|
|
4873
|
+
remoteComponent?: Maybe<RemoteComponent>;
|
|
3688
4874
|
reviews: ReviewsList;
|
|
3689
4875
|
sequence: Sequence;
|
|
3690
4876
|
sequences: SequencesList;
|
|
3691
|
-
site
|
|
4877
|
+
site?: Maybe<Site>;
|
|
4878
|
+
siteClimberSubscriptions: SiteClimberSubscriptionListResult;
|
|
3692
4879
|
siteTemplate: SiteTemplate;
|
|
3693
4880
|
siteTemplates: SiteTemplatesList;
|
|
3694
4881
|
sites: SitesList;
|
|
@@ -3700,13 +4887,21 @@ export type Query = {
|
|
|
3700
4887
|
* as the input IDs.
|
|
3701
4888
|
*/
|
|
3702
4889
|
subscriptionCheckoutOptions: Array<SubscriptionCheckoutOption>;
|
|
3703
|
-
subscriptionPlan:
|
|
4890
|
+
subscriptionPlan: Product;
|
|
3704
4891
|
subscriptions: SubscriptionsList;
|
|
3705
4892
|
user: User;
|
|
3706
4893
|
userAuditLogs: UserAuditLogsList;
|
|
3707
4894
|
users: UsersList;
|
|
3708
4895
|
};
|
|
3709
4896
|
|
|
4897
|
+
export type QueryAiDesignerChatThreadArgs = {
|
|
4898
|
+
id: Scalars['String']['input'];
|
|
4899
|
+
};
|
|
4900
|
+
|
|
4901
|
+
export type QueryAiTrainingSampleArgs = {
|
|
4902
|
+
id: Scalars['String']['input'];
|
|
4903
|
+
};
|
|
4904
|
+
|
|
3710
4905
|
export type QueryApplyCustomPromoCodeArgs = {
|
|
3711
4906
|
promoCode: Scalars['String']['input'];
|
|
3712
4907
|
subscriptionPlanId: Scalars['String']['input'];
|
|
@@ -3725,9 +4920,11 @@ export type QueryAssetsArgs = {
|
|
|
3725
4920
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3726
4921
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3727
4922
|
platformId: Scalars['String']['input'];
|
|
4923
|
+
type?: InputMaybe<AssetType>;
|
|
3728
4924
|
};
|
|
3729
4925
|
|
|
3730
4926
|
export type QueryBuilderComponentsArgs = {
|
|
4927
|
+
objectType: DesignerObjectType;
|
|
3731
4928
|
platformId: Scalars['String']['input'];
|
|
3732
4929
|
};
|
|
3733
4930
|
|
|
@@ -3762,6 +4959,11 @@ export type QueryCustomTablesArgs = {
|
|
|
3762
4959
|
platformId: Scalars['String']['input'];
|
|
3763
4960
|
};
|
|
3764
4961
|
|
|
4962
|
+
export type QueryDesignerObjectsArgs = {
|
|
4963
|
+
ids: Array<DesignerObjectIdInput>;
|
|
4964
|
+
platformId: Scalars['String']['input'];
|
|
4965
|
+
};
|
|
4966
|
+
|
|
3765
4967
|
export type QueryDocumentArgs = {
|
|
3766
4968
|
id: Scalars['String']['input'];
|
|
3767
4969
|
};
|
|
@@ -3798,6 +5000,7 @@ export type QueryFormEntriesArgs = {
|
|
|
3798
5000
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
3799
5001
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
3800
5002
|
siteId: Scalars['String']['input'];
|
|
5003
|
+
spam?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3801
5004
|
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
3802
5005
|
};
|
|
3803
5006
|
|
|
@@ -3826,6 +5029,36 @@ export type QueryInitialFormDataArgs = {
|
|
|
3826
5029
|
pageUrl: Scalars['String']['input'];
|
|
3827
5030
|
};
|
|
3828
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
|
+
|
|
3829
5062
|
export type QueryLayoutArgs = {
|
|
3830
5063
|
id: Scalars['String']['input'];
|
|
3831
5064
|
};
|
|
@@ -3867,6 +5100,10 @@ export type QueryPageArgs = {
|
|
|
3867
5100
|
id: Scalars['String']['input'];
|
|
3868
5101
|
};
|
|
3869
5102
|
|
|
5103
|
+
export type QueryPagePreviewTokenArgs = {
|
|
5104
|
+
pageId: Scalars['String']['input'];
|
|
5105
|
+
};
|
|
5106
|
+
|
|
3870
5107
|
export type QueryPageTemplateArgs = {
|
|
3871
5108
|
id: Scalars['String']['input'];
|
|
3872
5109
|
};
|
|
@@ -3878,13 +5115,6 @@ export type QueryPageTemplatesArgs = {
|
|
|
3878
5115
|
status?: InputMaybe<Array<PublishStatus>>;
|
|
3879
5116
|
};
|
|
3880
5117
|
|
|
3881
|
-
export type QueryPageTemplates2Args = {
|
|
3882
|
-
id?: InputMaybe<IdFilter>;
|
|
3883
|
-
platformId: Scalars['String']['input'];
|
|
3884
|
-
siteTemplateId?: InputMaybe<StringListFilter>;
|
|
3885
|
-
status?: InputMaybe<Array<PublishStatus>>;
|
|
3886
|
-
};
|
|
3887
|
-
|
|
3888
5118
|
export type QueryPasswordResetInfoArgs = {
|
|
3889
5119
|
key: Scalars['String']['input'];
|
|
3890
5120
|
};
|
|
@@ -3893,7 +5123,14 @@ export type QueryPlatformArgs = {
|
|
|
3893
5123
|
id: Scalars['String']['input'];
|
|
3894
5124
|
};
|
|
3895
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
|
+
|
|
3896
5132
|
export type QueryPreviewStripeUpcomingInvoiceArgs = {
|
|
5133
|
+
hostManagedPlatformId?: InputMaybe<Scalars['String']['input']>;
|
|
3897
5134
|
promoCode?: InputMaybe<Scalars['String']['input']>;
|
|
3898
5135
|
subscriptionPlanId: Scalars['String']['input'];
|
|
3899
5136
|
};
|
|
@@ -3919,6 +5156,10 @@ export type QueryPromoCodePicklistArgs = {
|
|
|
3919
5156
|
platformId: Scalars['String']['input'];
|
|
3920
5157
|
};
|
|
3921
5158
|
|
|
5159
|
+
export type QueryPublicDocumentArgs = {
|
|
5160
|
+
id: Scalars['String']['input'];
|
|
5161
|
+
};
|
|
5162
|
+
|
|
3922
5163
|
export type QueryPublicSiteArgs = {
|
|
3923
5164
|
id: Scalars['String']['input'];
|
|
3924
5165
|
};
|
|
@@ -3946,6 +5187,11 @@ export type QuerySiteArgs = {
|
|
|
3946
5187
|
id: Scalars['String']['input'];
|
|
3947
5188
|
};
|
|
3948
5189
|
|
|
5190
|
+
export type QuerySiteClimberSubscriptionsArgs = {
|
|
5191
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
5192
|
+
page?: InputMaybe<Scalars['Int']['input']>;
|
|
5193
|
+
};
|
|
5194
|
+
|
|
3949
5195
|
export type QuerySiteTemplateArgs = {
|
|
3950
5196
|
id: Scalars['String']['input'];
|
|
3951
5197
|
};
|
|
@@ -4032,6 +5278,18 @@ export type RemoteComponent = {
|
|
|
4032
5278
|
url: Scalars['String']['output'];
|
|
4033
5279
|
};
|
|
4034
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
|
+
|
|
4035
5293
|
export type RestoreCourseVersionChangesInput = {
|
|
4036
5294
|
changes: Array<CourseVersionChange>;
|
|
4037
5295
|
courseVersionId: Scalars['String']['input'];
|
|
@@ -4095,6 +5353,22 @@ export type RestorePageVersionChangesSuccessResult = {
|
|
|
4095
5353
|
page: Page;
|
|
4096
5354
|
};
|
|
4097
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
|
+
|
|
4098
5372
|
export type Review = {
|
|
4099
5373
|
__typename?: 'Review';
|
|
4100
5374
|
createdAt: Scalars['Date']['output'];
|
|
@@ -4134,6 +5408,25 @@ export type RolesUpdate = {
|
|
|
4134
5408
|
value: Array<RoleInput>;
|
|
4135
5409
|
};
|
|
4136
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']>;
|
|
5422
|
+
};
|
|
5423
|
+
|
|
5424
|
+
export const SchemaOrgEntityType = {
|
|
5425
|
+
Organization: 'Organization',
|
|
5426
|
+
Person: 'Person',
|
|
5427
|
+
} as const;
|
|
5428
|
+
|
|
5429
|
+
export type SchemaOrgEntityType = (typeof SchemaOrgEntityType)[keyof typeof SchemaOrgEntityType];
|
|
4137
5430
|
export type Sequence = {
|
|
4138
5431
|
__typename?: 'Sequence';
|
|
4139
5432
|
id: Scalars['String']['output'];
|
|
@@ -4165,19 +5458,91 @@ export type SequencesList = ListResult & {
|
|
|
4165
5458
|
totalCount: Scalars['Int']['output'];
|
|
4166
5459
|
};
|
|
4167
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
|
+
|
|
4168
5520
|
export type Site = {
|
|
4169
5521
|
__typename?: 'Site';
|
|
5522
|
+
accentColor?: Maybe<Scalars['String']['output']>;
|
|
4170
5523
|
agreements: AgreementsList;
|
|
5524
|
+
blogPostingSchemaDefaultAuthor: Array<SchemaOrgEntity>;
|
|
5525
|
+
blogPostingSchemaEnabled: Scalars['Boolean']['output'];
|
|
5526
|
+
blogPostingSchemaPathPrefixes: Array<Scalars['String']['output']>;
|
|
5527
|
+
blogPostingSchemaPublisher?: Maybe<SchemaOrgEntity>;
|
|
4171
5528
|
bodyEndCode?: Maybe<Scalars['String']['output']>;
|
|
5529
|
+
category: SiteCategory;
|
|
4172
5530
|
custom: CustomFieldValuesList;
|
|
5531
|
+
defaultFont: GoogleFontSelection;
|
|
4173
5532
|
domain: Scalars['String']['output'];
|
|
4174
|
-
|
|
4175
|
-
|
|
5533
|
+
generalInfo?: Maybe<Scalars['String']['output']>;
|
|
5534
|
+
googleTagId?: Maybe<Scalars['String']['output']>;
|
|
4176
5535
|
googleTagManagerId?: Maybe<Scalars['String']['output']>;
|
|
5536
|
+
grayColorName?: Maybe<Scalars['String']['output']>;
|
|
4177
5537
|
headEndCode?: Maybe<Scalars['String']['output']>;
|
|
4178
5538
|
id: Scalars['String']['output'];
|
|
4179
|
-
|
|
5539
|
+
initialGenerating: Scalars['Boolean']['output'];
|
|
5540
|
+
localBusinessProfile?: Maybe<SiteLocalBusinessProfile>;
|
|
5541
|
+
logoAssetVariant?: Maybe<AssetVariant>;
|
|
5542
|
+
logoIconAssetVariant?: Maybe<AssetVariant>;
|
|
5543
|
+
logoIconSource: ImageSettingSource;
|
|
4180
5544
|
logoIconUrl?: Maybe<Scalars['String']['output']>;
|
|
5545
|
+
logoSource: ImageSettingSource;
|
|
4181
5546
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
4182
5547
|
metaPixelId?: Maybe<Scalars['String']['output']>;
|
|
4183
5548
|
mixpanelToken?: Maybe<Scalars['String']['output']>;
|
|
@@ -4186,8 +5551,12 @@ export type Site = {
|
|
|
4186
5551
|
org?: Maybe<Org>;
|
|
4187
5552
|
orgId?: Maybe<Scalars['String']['output']>;
|
|
4188
5553
|
pages: PagesList;
|
|
4189
|
-
|
|
5554
|
+
pendingDomain?: Maybe<Scalars['String']['output']>;
|
|
5555
|
+
pendingDomainDnsLastCheckedAt?: Maybe<Scalars['Date']['output']>;
|
|
5556
|
+
pendingDomainFailureReason?: Maybe<Scalars['String']['output']>;
|
|
5557
|
+
pendingDomainStatus?: Maybe<PendingDomainStatus>;
|
|
4190
5558
|
platformId: Scalars['String']['output'];
|
|
5559
|
+
secondaryColor?: Maybe<Scalars['String']['output']>;
|
|
4191
5560
|
siteTemplate?: Maybe<SiteTemplate>;
|
|
4192
5561
|
siteTemplateId?: Maybe<Scalars['String']['output']>;
|
|
4193
5562
|
stripePublishableKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -4197,20 +5566,158 @@ export type Site = {
|
|
|
4197
5566
|
|
|
4198
5567
|
export type SitePagesArgs = {
|
|
4199
5568
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
5569
|
+
orderBy?: InputMaybe<Array<SitePagesOrder>>;
|
|
4200
5570
|
page?: InputMaybe<Scalars['Int']['input']>;
|
|
4201
5571
|
pageTemplateId?: InputMaybe<OptionalIdFilter>;
|
|
5572
|
+
path?: InputMaybe<StringFilter>;
|
|
5573
|
+
publishedAt?: InputMaybe<DateFilter>;
|
|
4202
5574
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
4203
5575
|
status?: InputMaybe<Array<PublishStatus>>;
|
|
4204
5576
|
};
|
|
4205
5577
|
|
|
4206
|
-
export type
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
status
|
|
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;
|
|
4212
5621
|
};
|
|
4213
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;
|
|
5713
|
+
};
|
|
5714
|
+
|
|
5715
|
+
export const SitePagesOrderField = {
|
|
5716
|
+
PublishedAt: 'PublishedAt',
|
|
5717
|
+
Title: 'Title',
|
|
5718
|
+
} as const;
|
|
5719
|
+
|
|
5720
|
+
export type SitePagesOrderField = (typeof SitePagesOrderField)[keyof typeof SitePagesOrderField];
|
|
4214
5721
|
export type SiteTemplate = {
|
|
4215
5722
|
__typename?: 'SiteTemplate';
|
|
4216
5723
|
id: Scalars['String']['output'];
|
|
@@ -4295,6 +5802,19 @@ export const StageBlueprintStatus = {
|
|
|
4295
5802
|
} as const;
|
|
4296
5803
|
|
|
4297
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
|
+
|
|
4298
5818
|
export type StringFilter = {
|
|
4299
5819
|
operator: StringFilterOperator;
|
|
4300
5820
|
value: Scalars['String']['input'];
|
|
@@ -4305,6 +5825,7 @@ export const StringFilterOperator = {
|
|
|
4305
5825
|
Equals: 'Equals',
|
|
4306
5826
|
NotContains: 'NotContains',
|
|
4307
5827
|
NotEquals: 'NotEquals',
|
|
5828
|
+
StartsWith: 'StartsWith',
|
|
4308
5829
|
} as const;
|
|
4309
5830
|
|
|
4310
5831
|
export type StringFilterOperator = (typeof StringFilterOperator)[keyof typeof StringFilterOperator];
|
|
@@ -4343,6 +5864,13 @@ export type StringUpdate = {
|
|
|
4343
5864
|
value: Scalars['String']['input'];
|
|
4344
5865
|
};
|
|
4345
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
|
+
|
|
4346
5874
|
/** The supported coupon duration types. */
|
|
4347
5875
|
export const StripeCouponDuration = {
|
|
4348
5876
|
Forever: 'Forever',
|
|
@@ -4358,8 +5886,36 @@ export type StripeCustomer = {
|
|
|
4358
5886
|
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
4359
5887
|
};
|
|
4360
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
|
+
|
|
4361
5913
|
export type Sub = {
|
|
4362
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']>;
|
|
4363
5919
|
endAt?: Maybe<Scalars['Date']['output']>;
|
|
4364
5920
|
id: Scalars['String']['output'];
|
|
4365
5921
|
invoiceFrequency?: Maybe<InvoiceFrequency>;
|
|
@@ -4367,13 +5923,18 @@ export type Sub = {
|
|
|
4367
5923
|
managerOrganization?: Maybe<OrgProfile>;
|
|
4368
5924
|
notes: Array<SubscriptionNote>;
|
|
4369
5925
|
ownerOrg?: Maybe<OrgProfile>;
|
|
4370
|
-
|
|
5926
|
+
paymentMethod?: Maybe<StripePaymentMethod>;
|
|
5927
|
+
plan: Product;
|
|
4371
5928
|
planId: Scalars['String']['output'];
|
|
4372
|
-
planProfile:
|
|
5929
|
+
planProfile: ProductProfile;
|
|
4373
5930
|
price: Scalars['String']['output'];
|
|
5931
|
+
product: Product;
|
|
5932
|
+
productId: Scalars['String']['output'];
|
|
5933
|
+
productProfile: ProductProfile;
|
|
4374
5934
|
promoCode?: Maybe<Scalars['String']['output']>;
|
|
4375
5935
|
startAt: Scalars['Date']['output'];
|
|
4376
5936
|
status: SubscriptionStatus;
|
|
5937
|
+
stripeCustomer?: Maybe<StripeApiCustomer>;
|
|
4377
5938
|
stripeSubscriptionId?: Maybe<Scalars['String']['output']>;
|
|
4378
5939
|
/**
|
|
4379
5940
|
* The SubscriptionOrganizations connecting this subscription to the orgs that are included in it.
|
|
@@ -4382,16 +5943,31 @@ export type Sub = {
|
|
|
4382
5943
|
subscriptionOrganizations: Array<SubscriptionOrganization>;
|
|
4383
5944
|
};
|
|
4384
5945
|
|
|
4385
|
-
export type
|
|
4386
|
-
|
|
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']>;
|
|
5952
|
+
};
|
|
5953
|
+
|
|
5954
|
+
export type SubmitFormResult = InternalError | SubmitFormSuccessResult | UserError;
|
|
5955
|
+
|
|
5956
|
+
export type SubmitFormSuccessResult = {
|
|
5957
|
+
__typename?: 'SubmitFormSuccessResult';
|
|
4387
5958
|
sessionId: Scalars['String']['output'];
|
|
4388
5959
|
};
|
|
4389
5960
|
|
|
4390
5961
|
export type Subscription = {
|
|
4391
5962
|
__typename?: 'Subscription';
|
|
5963
|
+
aiDesignerAssistantMessageAdded?: Maybe<AiDesignerChatMessage>;
|
|
4392
5964
|
stageUpdated?: Maybe<Stage>;
|
|
4393
5965
|
};
|
|
4394
5966
|
|
|
5967
|
+
export type SubscriptionAiDesignerAssistantMessageAddedArgs = {
|
|
5968
|
+
threadId: Scalars['String']['input'];
|
|
5969
|
+
};
|
|
5970
|
+
|
|
4395
5971
|
export type SubscriptionStageUpdatedArgs = {
|
|
4396
5972
|
id: Scalars['String']['input'];
|
|
4397
5973
|
};
|
|
@@ -4424,6 +6000,38 @@ export type SubscriptionCheckoutOption = {
|
|
|
4424
6000
|
price: Scalars['String']['output'];
|
|
4425
6001
|
};
|
|
4426
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
|
+
|
|
4427
6035
|
export type SubscriptionNote = {
|
|
4428
6036
|
__typename?: 'SubscriptionNote';
|
|
4429
6037
|
byUser: UserProfile;
|
|
@@ -4442,32 +6050,6 @@ export type SubscriptionOrganization = {
|
|
|
4442
6050
|
subscriptionOwner: Scalars['Boolean']['output'];
|
|
4443
6051
|
};
|
|
4444
6052
|
|
|
4445
|
-
export type SubscriptionPlan = {
|
|
4446
|
-
__typename?: 'SubscriptionPlan';
|
|
4447
|
-
alternativeStripePriceIds: Array<Scalars['String']['output']>;
|
|
4448
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
4449
|
-
displayName?: Maybe<Scalars['String']['output']>;
|
|
4450
|
-
durationDays?: Maybe<Scalars['Int']['output']>;
|
|
4451
|
-
endAt?: Maybe<Scalars['Date']['output']>;
|
|
4452
|
-
id: Scalars['String']['output'];
|
|
4453
|
-
/** The invoice frequency for this plan. This will be null for plans that have a price of 0. */
|
|
4454
|
-
invoiceFrequency?: Maybe<InvoiceFrequency>;
|
|
4455
|
-
items: Array<Scalars['String']['output']>;
|
|
4456
|
-
name: Scalars['String']['output'];
|
|
4457
|
-
price: Scalars['String']['output'];
|
|
4458
|
-
promoCodes: Array<PromoCode>;
|
|
4459
|
-
stripePriceId?: Maybe<Scalars['String']['output']>;
|
|
4460
|
-
};
|
|
4461
|
-
|
|
4462
|
-
/** This type limits the type of data that can be queried from a SubscriptionPlan. */
|
|
4463
|
-
export type SubscriptionPlanProfile = {
|
|
4464
|
-
__typename?: 'SubscriptionPlanProfile';
|
|
4465
|
-
displayName?: Maybe<Scalars['String']['output']>;
|
|
4466
|
-
/** The ID of a SubscriptionPlan. */
|
|
4467
|
-
id: Scalars['String']['output'];
|
|
4468
|
-
name: Scalars['String']['output'];
|
|
4469
|
-
};
|
|
4470
|
-
|
|
4471
6053
|
export const SubscriptionStatus = {
|
|
4472
6054
|
Active: 'Active',
|
|
4473
6055
|
Canceled: 'Canceled',
|
|
@@ -4488,6 +6070,16 @@ export type SubscriptionsList = ListResult & {
|
|
|
4488
6070
|
totalCount: Scalars['Int']['output'];
|
|
4489
6071
|
};
|
|
4490
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
|
+
|
|
4491
6083
|
export type SyncLayoutTemplateToLayoutsInput = {
|
|
4492
6084
|
layoutId: Scalars['String']['input'];
|
|
4493
6085
|
layoutTemplateId: Scalars['String']['input'];
|
|
@@ -4539,13 +6131,14 @@ export type SyncPageTemplateToPagesSelection =
|
|
|
4539
6131
|
(typeof SyncPageTemplateToPagesSelection)[keyof typeof SyncPageTemplateToPagesSelection];
|
|
4540
6132
|
export type SyncPageTemplateToPagesSuccessResult = {
|
|
4541
6133
|
__typename?: 'SyncPageTemplateToPagesSuccessResult';
|
|
4542
|
-
/** 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. */
|
|
4543
|
-
duplicatePathNotSyncedPages: PagesList;
|
|
4544
6134
|
/** Error messages for pages that could not be synced due to an internal or misconfiguration issue. */
|
|
4545
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;
|
|
4546
6138
|
/** Pages that did not have any changes to apply. */
|
|
4547
|
-
|
|
4548
|
-
|
|
6139
|
+
unchangedPages: PagesList;
|
|
6140
|
+
/** Pages that were updated fully. */
|
|
6141
|
+
updatedPages: PagesList;
|
|
4549
6142
|
};
|
|
4550
6143
|
|
|
4551
6144
|
/**
|
|
@@ -4565,6 +6158,35 @@ export type TlsCertificate = {
|
|
|
4565
6158
|
state: GCloudCertificateState;
|
|
4566
6159
|
};
|
|
4567
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
|
+
|
|
4568
6190
|
export type UploadFileInput = {
|
|
4569
6191
|
mimeType: Scalars['String']['input'];
|
|
4570
6192
|
name: Scalars['String']['input'];
|
|
@@ -4642,11 +6264,6 @@ export type User = {
|
|
|
4642
6264
|
passwordStatus: PasswordStatus;
|
|
4643
6265
|
planProgress: Array<UserPlanProgress>;
|
|
4644
6266
|
plans: Array<UserPlan>;
|
|
4645
|
-
/**
|
|
4646
|
-
* This user’s platforms where the user is an admin.
|
|
4647
|
-
* @deprecated Use adminMe instead.
|
|
4648
|
-
*/
|
|
4649
|
-
platformAdminUsers: Array<PlatformAdminUser>;
|
|
4650
6267
|
/** All product items from all of the active subscriptions of the user's org. */
|
|
4651
6268
|
productItems: Array<Scalars['String']['output']>;
|
|
4652
6269
|
role: Scalars['String']['output'];
|
|
@@ -4783,25 +6400,19 @@ export type UsersList = ListResult & {
|
|
|
4783
6400
|
users: Array<User>;
|
|
4784
6401
|
};
|
|
4785
6402
|
|
|
4786
|
-
export
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
FormTemplateStep: 'FormTemplateStep',
|
|
4796
|
-
Layout: 'Layout',
|
|
4797
|
-
LayoutTemplate: 'LayoutTemplate',
|
|
4798
|
-
Lesson: 'Lesson',
|
|
4799
|
-
Page: 'Page',
|
|
4800
|
-
PageTemplate: 'PageTemplate',
|
|
4801
|
-
PageTemplatePropsSetup: 'PageTemplatePropsSetup',
|
|
4802
|
-
PageVersion: 'PageVersion',
|
|
4803
|
-
Stage: 'Stage',
|
|
4804
|
-
} as const;
|
|
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
|
+
};
|
|
4805
6412
|
|
|
4806
|
-
export type
|
|
4807
|
-
|
|
6413
|
+
export type VerifyEmailAddressResult = UserError | VerifyEmailAddressSuccessResult;
|
|
6414
|
+
|
|
6415
|
+
export type VerifyEmailAddressSuccessResult = {
|
|
6416
|
+
__typename?: 'VerifyEmailAddressSuccessResult';
|
|
6417
|
+
user: User;
|
|
6418
|
+
};
|