@wirechunk/cli 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,7 @@ export type Scalars = {
16
16
  Boolean: { input: boolean; output: boolean };
17
17
  Int: { input: number; output: number };
18
18
  Float: { input: number; output: number };
19
- /** A timestamp in ISO 8601 format */
19
+ /** A timestamp in ISO 8601 format with the date, time, and timezone. */
20
20
  Date: { input: string | Date; output: string };
21
21
  };
22
22
 
@@ -100,6 +100,7 @@ export type Agreement = {
100
100
  };
101
101
 
102
102
  export const AgreementType = {
103
+ CookiePolicy: 'CookiePolicy',
103
104
  PrivacyPolicy: 'PrivacyPolicy',
104
105
  TermsOfUse: 'TermsOfUse',
105
106
  } as const;
@@ -112,6 +113,17 @@ export type AgreementsList = {
112
113
  totalCount: Scalars['Int']['output'];
113
114
  };
114
115
 
116
+ export type AiChatMessage = {
117
+ content: Scalars['String']['input'];
118
+ role: AiChatMessageRole;
119
+ };
120
+
121
+ export const AiChatMessageRole = {
122
+ Assistant: 'Assistant',
123
+ User: 'User',
124
+ } as const;
125
+
126
+ export type AiChatMessageRole = (typeof AiChatMessageRole)[keyof typeof AiChatMessageRole];
115
127
  export type ApiToken = PersonalApiToken | PlatformApiToken;
116
128
 
117
129
  export type ApplyCustomPromoCodeResult = ApplyCustomPromoCodeSuccessResult | InternalError;
@@ -131,6 +143,212 @@ export type ArchiveComponentSuccessResult = {
131
143
  component: Component;
132
144
  };
133
145
 
146
+ export type Asset = {
147
+ __typename?: 'Asset';
148
+ /** Alternative text when displayed on web pages. */
149
+ alt?: Maybe<Scalars['String']['output']>;
150
+ archived: Scalars['Boolean']['output'];
151
+ createdAt: Scalars['Date']['output'];
152
+ /** The duration for video and audio assets. */
153
+ durationSeconds?: Maybe<Scalars['Int']['output']>;
154
+ id: Scalars['String']['output'];
155
+ name: Scalars['String']['output'];
156
+ /**
157
+ * Optionally require a user to be signed in and have the specified product item in an active subscription
158
+ * to be allowed to access the asset. If null or an empty string, no product item is required.
159
+ */
160
+ productItem?: Maybe<Scalars['String']['output']>;
161
+ /**
162
+ * Optionally require a user to be signed in and have one of the specified roles to be allowed to access the asset.
163
+ * If empty, a user can have any role.
164
+ */
165
+ roles: Array<Scalars['String']['output']>;
166
+ /** A simple list of strings to help with retrieval. */
167
+ tags: Array<Scalars['String']['output']>;
168
+ type: AssetType;
169
+ updatedAt: Scalars['Date']['output'];
170
+ /** The asset’s variants. Variants are sorted ascending by name. */
171
+ variants: AssetVariantsList;
172
+ /** Requires the admin Asset:view permission. */
173
+ versions: AssetVersionsList;
174
+ };
175
+
176
+ export type AssetVariantsArgs = {
177
+ archived?: InputMaybe<Scalars['Boolean']['input']>;
178
+ limit?: InputMaybe<Scalars['Int']['input']>;
179
+ page?: InputMaybe<Scalars['Int']['input']>;
180
+ };
181
+
182
+ export type AssetVersionsArgs = {
183
+ limit?: InputMaybe<Scalars['Int']['input']>;
184
+ page?: InputMaybe<Scalars['Int']['input']>;
185
+ };
186
+
187
+ export const AssetType = {
188
+ Audio: 'Audio',
189
+ Document: 'Document',
190
+ Image: 'Image',
191
+ Other: 'Other',
192
+ Video: 'Video',
193
+ } as const;
194
+
195
+ export type AssetType = (typeof AssetType)[keyof typeof AssetType];
196
+ export type AssetVariant = {
197
+ __typename?: 'AssetVariant';
198
+ archived: Scalars['Boolean']['output'];
199
+ /** 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
+ file?: Maybe<File>;
201
+ /** The format to output the variant in. Set only when mode is Convert. */
202
+ format?: Maybe<AssetVariantFormat>;
203
+ /** When mode is Generate, this is the prompt used to generate the variant. */
204
+ generatePrompt?: Maybe<Scalars['String']['output']>;
205
+ /** Determined automatically but also manually set only when mode is Resize. */
206
+ heightPx?: Maybe<Scalars['Int']['output']>;
207
+ id: Scalars['String']['output'];
208
+ /** The manually provided URL of the asset variant. Applicable only when mode is ManualUrl. */
209
+ manualUrl?: Maybe<Scalars['String']['output']>;
210
+ mode: AssetVariantMode;
211
+ name: Scalars['String']['output'];
212
+ /** A percentage 0–100. When null or 100, the quality is the same as the original. */
213
+ quality?: Maybe<Scalars['Int']['output']>;
214
+ /**
215
+ * The variant to use as the source for producing the variant. Users can change this at any time.
216
+ * Applicable only when not manually uploading or manually providing a URL.
217
+ */
218
+ sourceVariant?: Maybe<AssetVariant>;
219
+ /** The variant version that was used as the source for the variant. */
220
+ sourceVariantVersion?: Maybe<AssetVariantVersion>;
221
+ versions: AssetVariantVersionsList;
222
+ /** Determined automatically but also manually set only when mode is Resize. */
223
+ widthPx?: Maybe<Scalars['Int']['output']>;
224
+ };
225
+
226
+ export type AssetVariantVersionsArgs = {
227
+ limit?: InputMaybe<Scalars['Int']['input']>;
228
+ page?: InputMaybe<Scalars['Int']['input']>;
229
+ };
230
+
231
+ export const AssetVariantFormat = {
232
+ Avif: 'Avif',
233
+ Gif: 'Gif',
234
+ Jpeg: 'Jpeg',
235
+ Png: 'Png',
236
+ Webp: 'Webp',
237
+ } as const;
238
+
239
+ export type AssetVariantFormat = (typeof AssetVariantFormat)[keyof typeof AssetVariantFormat];
240
+ export type AssetVariantFormatUpdate = {
241
+ format: AssetVariantFormat;
242
+ };
243
+
244
+ export const AssetVariantMode = {
245
+ /** Convert the source variant to a different format. */
246
+ Convert: 'Convert',
247
+ /** Crop the source variant. */
248
+ Crop: 'Crop',
249
+ /** Generate a variant using AI. Can reference a source variant but does not require it. */
250
+ Generate: 'Generate',
251
+ /** Users manually upload the asset variant file. */
252
+ ManualUpload: 'ManualUpload',
253
+ /** Users manually provide a URL for the asset variant. */
254
+ ManualUrl: 'ManualUrl',
255
+ /** Optimize the source variant. */
256
+ Optimize: 'Optimize',
257
+ /** Resize the source variant to the specified width and height. */
258
+ Resize: 'Resize',
259
+ /** Resize and optimize the source variant. */
260
+ ResizeAndOptimize: 'ResizeAndOptimize',
261
+ } as const;
262
+
263
+ export type AssetVariantMode = (typeof AssetVariantMode)[keyof typeof AssetVariantMode];
264
+ export type AssetVariantVersion = {
265
+ __typename?: 'AssetVariantVersion';
266
+ archived?: Maybe<Scalars['Boolean']['output']>;
267
+ assetVariantId: Scalars['String']['output'];
268
+ byUser: UserProfile;
269
+ changes: Array<AssetVariantVersionChange>;
270
+ createdAt: Scalars['Date']['output'];
271
+ failureReason?: Maybe<Scalars['String']['output']>;
272
+ file?: Maybe<File>;
273
+ format?: Maybe<AssetVariantFormat>;
274
+ generatePrompt?: Maybe<Scalars['String']['output']>;
275
+ heightPx?: Maybe<Scalars['Int']['output']>;
276
+ id: Scalars['String']['output'];
277
+ manualUrl?: Maybe<Scalars['String']['output']>;
278
+ name?: Maybe<Scalars['String']['output']>;
279
+ quality?: Maybe<Scalars['Int']['output']>;
280
+ sourceAssetVariant?: Maybe<AssetVariant>;
281
+ sourceAssetVariantVersion?: Maybe<AssetVariantVersion>;
282
+ widthPx?: Maybe<Scalars['Int']['output']>;
283
+ };
284
+
285
+ export const AssetVariantVersionChange = {
286
+ Archived: 'Archived',
287
+ FileId: 'FileId',
288
+ Format: 'Format',
289
+ GeneratePrompt: 'GeneratePrompt',
290
+ HeightPx: 'HeightPx',
291
+ ManualUrl: 'ManualUrl',
292
+ Name: 'Name',
293
+ Quality: 'Quality',
294
+ SourceAssetVariantId: 'SourceAssetVariantId',
295
+ WidthPx: 'WidthPx',
296
+ } as const;
297
+
298
+ export type AssetVariantVersionChange =
299
+ (typeof AssetVariantVersionChange)[keyof typeof AssetVariantVersionChange];
300
+ export type AssetVariantVersionsList = ListResult & {
301
+ __typename?: 'AssetVariantVersionsList';
302
+ assetVariantVersions: Array<AssetVariantVersion>;
303
+ limit: Scalars['Int']['output'];
304
+ totalCount: Scalars['Int']['output'];
305
+ };
306
+
307
+ export type AssetVariantsList = ListResult & {
308
+ __typename?: 'AssetVariantsList';
309
+ assetVariants: Array<AssetVariant>;
310
+ limit: Scalars['Int']['output'];
311
+ totalCount: Scalars['Int']['output'];
312
+ };
313
+
314
+ export type AssetVersion = {
315
+ __typename?: 'AssetVersion';
316
+ alt?: Maybe<Scalars['String']['output']>;
317
+ archived?: Maybe<Scalars['Boolean']['output']>;
318
+ byUser: UserProfile;
319
+ changes: Array<AssetVersionChange>;
320
+ createdAt: Scalars['Date']['output'];
321
+ id: Scalars['String']['output'];
322
+ name?: Maybe<Scalars['String']['output']>;
323
+ productItem?: Maybe<Scalars['String']['output']>;
324
+ roles?: Maybe<Array<Scalars['String']['output']>>;
325
+ tags: Array<Scalars['String']['output']>;
326
+ };
327
+
328
+ export const AssetVersionChange = {
329
+ Alt: 'Alt',
330
+ Archived: 'Archived',
331
+ Name: 'Name',
332
+ ProductItem: 'ProductItem',
333
+ Roles: 'Roles',
334
+ Tags: 'Tags',
335
+ } as const;
336
+
337
+ export type AssetVersionChange = (typeof AssetVersionChange)[keyof typeof AssetVersionChange];
338
+ export type AssetVersionsList = ListResult & {
339
+ __typename?: 'AssetVersionsList';
340
+ assetVersions: Array<AssetVersion>;
341
+ limit: Scalars['Int']['output'];
342
+ totalCount: Scalars['Int']['output'];
343
+ };
344
+
345
+ export type AssetsList = ListResult & {
346
+ __typename?: 'AssetsList';
347
+ assets: Array<Asset>;
348
+ limit: Scalars['Int']['output'];
349
+ totalCount: Scalars['Int']['output'];
350
+ };
351
+
134
352
  export type AuthorizationError = Error & {
135
353
  __typename?: 'AuthorizationError';
136
354
  message: Scalars['String']['output'];
@@ -283,6 +501,56 @@ export type CreateAdminUserSuccessResult = {
283
501
  platformAdminUser: PlatformAdminUser;
284
502
  };
285
503
 
504
+ export type CreateAssetInput = {
505
+ alt?: InputMaybe<Scalars['String']['input']>;
506
+ name: Scalars['String']['input'];
507
+ platformId: Scalars['String']['input'];
508
+ productItem?: InputMaybe<Scalars['String']['input']>;
509
+ roles?: InputMaybe<Array<Scalars['String']['input']>>;
510
+ tags?: InputMaybe<Array<Scalars['String']['input']>>;
511
+ type: AssetType;
512
+ };
513
+
514
+ export type CreateAssetResult = AuthorizationError | CreateAssetSuccessResult | UserError;
515
+
516
+ export type CreateAssetSuccessResult = {
517
+ __typename?: 'CreateAssetSuccessResult';
518
+ asset: Asset;
519
+ };
520
+
521
+ export type CreateAssetVariantInput = {
522
+ assetId: Scalars['String']['input'];
523
+ format?: InputMaybe<AssetVariantFormat>;
524
+ generatePrompt?: InputMaybe<Scalars['String']['input']>;
525
+ heightPx?: InputMaybe<Scalars['Int']['input']>;
526
+ manualUrl?: InputMaybe<Scalars['String']['input']>;
527
+ mode: AssetVariantMode;
528
+ name: Scalars['String']['input'];
529
+ quality?: InputMaybe<Scalars['Int']['input']>;
530
+ sourceAssetVariantId?: InputMaybe<Scalars['String']['input']>;
531
+ /** If mode is ManualUpload, this is the name of the file to upload. */
532
+ uploadFileName?: InputMaybe<Scalars['String']['input']>;
533
+ /** If mode is ManualUpload, this is the MIME type of the file to upload. */
534
+ uploadMimeType?: InputMaybe<Scalars['String']['input']>;
535
+ widthPx?: InputMaybe<Scalars['Int']['input']>;
536
+ };
537
+
538
+ export type CreateAssetVariantResult =
539
+ | AuthorizationError
540
+ | CreateAssetVariantSuccessResult
541
+ | InternalError
542
+ | UserError;
543
+
544
+ export type CreateAssetVariantSuccessResult = {
545
+ __typename?: 'CreateAssetVariantSuccessResult';
546
+ /** The AssetVariant that was created. */
547
+ assetVariant: AssetVariant;
548
+ /** The AssetVariantVersion that was created. */
549
+ assetVariantVersion: AssetVariantVersion;
550
+ /** If mode is ManualUpload, this is the signed URL to use to upload the file. */
551
+ signedUploadUrl?: Maybe<Scalars['String']['output']>;
552
+ };
553
+
286
554
  export type CreateComponentInput = {
287
555
  components?: InputMaybe<Scalars['String']['input']>;
288
556
  name: Scalars['String']['input'];
@@ -879,6 +1147,63 @@ export type DuplicateSequenceSuccessResult = {
879
1147
  sequence: Sequence;
880
1148
  };
881
1149
 
1150
+ export type EditAssetInput = {
1151
+ alt?: InputMaybe<OptionalStringUpdate>;
1152
+ archived?: InputMaybe<BooleanUpdate>;
1153
+ id: Scalars['String']['input'];
1154
+ name?: InputMaybe<StringUpdate>;
1155
+ productItem?: InputMaybe<OptionalStringUpdate>;
1156
+ roles?: InputMaybe<StringListUpdate>;
1157
+ tags?: InputMaybe<StringListUpdate>;
1158
+ };
1159
+
1160
+ export type EditAssetResult = AuthorizationError | EditAssetSuccessResult | UserError;
1161
+
1162
+ export type EditAssetSuccessResult = {
1163
+ __typename?: 'EditAssetSuccessResult';
1164
+ asset: Asset;
1165
+ };
1166
+
1167
+ /**
1168
+ * The input for editing an asset variant. An asset variant's mode cannot be changed to
1169
+ * avoid potential bad states.
1170
+ */
1171
+ export type EditAssetVariantInput = {
1172
+ archived?: InputMaybe<BooleanUpdate>;
1173
+ format?: InputMaybe<AssetVariantFormatUpdate>;
1174
+ generatePrompt?: InputMaybe<StringUpdate>;
1175
+ /** Optional because it should be possible to clear it manually when mode is ManualUrl. */
1176
+ heightPx?: InputMaybe<OptionalIntUpdate>;
1177
+ id: Scalars['String']['input'];
1178
+ manualUrl?: InputMaybe<StringUpdate>;
1179
+ name?: InputMaybe<StringUpdate>;
1180
+ quality?: InputMaybe<IntUpdate>;
1181
+ replaceFile: Scalars['Boolean']['input'];
1182
+ sourceAssetVariantId?: InputMaybe<StringUpdate>;
1183
+ /** Required if replaceFile is true. Otherwise must not be provided. */
1184
+ uploadFileName?: InputMaybe<Scalars['String']['input']>;
1185
+ /** Required if replaceFile is true. Otherwise must not be provided. */
1186
+ uploadMimeType?: InputMaybe<Scalars['String']['input']>;
1187
+ /** Optional because it should be possible to clear it manually when mode is ManualUrl. */
1188
+ widthPx?: InputMaybe<OptionalIntUpdate>;
1189
+ };
1190
+
1191
+ export type EditAssetVariantResult =
1192
+ | AuthorizationError
1193
+ | EditAssetVariantSuccessResult
1194
+ | InternalError
1195
+ | UserError;
1196
+
1197
+ export type EditAssetVariantSuccessResult = {
1198
+ __typename?: 'EditAssetVariantSuccessResult';
1199
+ /** The edited AssetVariant. */
1200
+ assetVariant: AssetVariant;
1201
+ /** The AssetVariantVersion that was created. This field is null if the edit did not produce any changes. */
1202
+ assetVariantVersion?: Maybe<AssetVariantVersion>;
1203
+ /** If mode is ManualUpload, this is the signed URL to use to upload the file. */
1204
+ signedUploadUrl?: Maybe<Scalars['String']['output']>;
1205
+ };
1206
+
882
1207
  export type EditComponentInput = {
883
1208
  components?: InputMaybe<OptionalComponentsUpdate>;
884
1209
  id: Scalars['String']['input'];
@@ -1144,6 +1469,7 @@ export type EditPlatformInput = {
1144
1469
  emailReplyToAddress?: InputMaybe<OptionalStringUpdate>;
1145
1470
  emailSendFromAddress?: InputMaybe<StringUpdate>;
1146
1471
  id: Scalars['String']['input'];
1472
+ roles?: InputMaybe<RolesUpdate>;
1147
1473
  sendGridApiKey?: InputMaybe<OptionalStringUpdate>;
1148
1474
  stripeSecretKey?: InputMaybe<OptionalStringUpdate>;
1149
1475
  stripeWebhookSigningSecret?: InputMaybe<OptionalStringUpdate>;
@@ -1232,13 +1558,46 @@ export type Extension = {
1232
1558
  __typename?: 'Extension';
1233
1559
  /** A JSON object. This object will not have the current version's config merged in. */
1234
1560
  config: Scalars['String']['output'];
1561
+ cpuLimit?: Maybe<Scalars['String']['output']>;
1562
+ cpuRequest?: Maybe<Scalars['String']['output']>;
1235
1563
  currentVersion?: Maybe<ExtensionVersion>;
1236
1564
  enabled: Scalars['Boolean']['output'];
1237
1565
  id: Scalars['String']['output'];
1566
+ memoryLimit?: Maybe<Scalars['String']['output']>;
1567
+ memoryRequest?: Maybe<Scalars['String']['output']>;
1238
1568
  name: Scalars['String']['output'];
1569
+ /**
1570
+ * The server logs for the extension, collected from the standard output and standard error streams.
1571
+ * The entries are sorted ascending by timestamp, and only the first 1,000 entries are returned.
1572
+ * By default, the to date is the current timestamp.
1573
+ * The filter argument can be any expression supported by Google Cloud Logging.
1574
+ */
1575
+ serverLogs: ExtensionServerLogsList;
1239
1576
  versions: ExtensionVersionsList;
1240
1577
  };
1241
1578
 
1579
+ export type ExtensionServerLogsArgs = {
1580
+ filter?: InputMaybe<Scalars['String']['input']>;
1581
+ from: Scalars['Date']['input'];
1582
+ to?: InputMaybe<Scalars['Date']['input']>;
1583
+ };
1584
+
1585
+ export type ExtensionServerLog = {
1586
+ __typename?: 'ExtensionServerLog';
1587
+ id: Scalars['String']['output'];
1588
+ /** A JSON object. */
1589
+ jsonPayload?: Maybe<Scalars['String']['output']>;
1590
+ severity?: Maybe<Scalars['String']['output']>;
1591
+ /** A string with the log message. */
1592
+ textPayload?: Maybe<Scalars['String']['output']>;
1593
+ timestamp: Scalars['Date']['output'];
1594
+ };
1595
+
1596
+ export type ExtensionServerLogsList = {
1597
+ __typename?: 'ExtensionServerLogsList';
1598
+ extensionServerLogs: Array<ExtensionServerLog>;
1599
+ };
1600
+
1242
1601
  export type ExtensionVersion = {
1243
1602
  __typename?: 'ExtensionVersion';
1244
1603
  componentsBuildStage: ExtensionVersionBuildStage;
@@ -1289,10 +1648,13 @@ export type File = {
1289
1648
  __typename?: 'File';
1290
1649
  createdAt: Scalars['Date']['output'];
1291
1650
  downloadName: Scalars['String']['output'];
1651
+ /** For non-public files, the signed URL to perform a GET request on the file. */
1292
1652
  getUrl: Scalars['String']['output'];
1293
1653
  id: Scalars['String']['output'];
1294
1654
  mimeType: Scalars['String']['output'];
1295
1655
  status: FileStatus;
1656
+ /** The publicly accessible URL for the associated file. */
1657
+ url?: Maybe<Scalars['String']['output']>;
1296
1658
  };
1297
1659
 
1298
1660
  export type FileGetUrlArgs = {
@@ -1352,6 +1714,13 @@ export type Form = {
1352
1714
  title: Scalars['String']['output'];
1353
1715
  useEmailBodyTemplate: Scalars['Boolean']['output'];
1354
1716
  useEmailSubjectTemplate: Scalars['Boolean']['output'];
1717
+ versions: FormVersionsList;
1718
+ };
1719
+
1720
+ export type FormVersionsArgs = {
1721
+ byUserId?: InputMaybe<Scalars['String']['input']>;
1722
+ limit?: InputMaybe<Scalars['Int']['input']>;
1723
+ page?: InputMaybe<Scalars['Int']['input']>;
1355
1724
  };
1356
1725
 
1357
1726
  export type FormConfirmationRedirectUrlParameter = {
@@ -1441,6 +1810,64 @@ export type FormTemplateStep = {
1441
1810
  position: Scalars['String']['output'];
1442
1811
  };
1443
1812
 
1813
+ export type FormVersion = {
1814
+ __typename?: 'FormVersion';
1815
+ byUser: UserProfile;
1816
+ changes: Array<FormVersionChange>;
1817
+ components?: Maybe<Scalars['String']['output']>;
1818
+ confirmationAction?: Maybe<ConfirmationAction>;
1819
+ confirmationMessageComponents?: Maybe<Scalars['String']['output']>;
1820
+ confirmationRedirectUrl?: Maybe<Scalars['String']['output']>;
1821
+ confirmationRedirectUrlParameters: Array<FormVersionConfirmationRedirectUrlParameter>;
1822
+ createdAt: Scalars['Date']['output'];
1823
+ emailBodyTemplate?: Maybe<Scalars['String']['output']>;
1824
+ emailSubjectTemplate?: Maybe<Scalars['String']['output']>;
1825
+ formTemplate?: Maybe<FormTemplate>;
1826
+ id: Scalars['String']['output'];
1827
+ steps: Array<FormVersionStep>;
1828
+ title?: Maybe<Scalars['String']['output']>;
1829
+ useEmailBodyTemplate?: Maybe<Scalars['Boolean']['output']>;
1830
+ useEmailSubjectTemplate?: Maybe<Scalars['Boolean']['output']>;
1831
+ };
1832
+
1833
+ export const FormVersionChange = {
1834
+ Components: 'Components',
1835
+ ConfirmationAction: 'ConfirmationAction',
1836
+ ConfirmationMessageComponents: 'ConfirmationMessageComponents',
1837
+ ConfirmationRedirectUrl: 'ConfirmationRedirectUrl',
1838
+ ConfirmationRedirectUrlParameters: 'ConfirmationRedirectUrlParameters',
1839
+ EmailBodyTemplate: 'EmailBodyTemplate',
1840
+ EmailSubjectTemplate: 'EmailSubjectTemplate',
1841
+ FormTemplateId: 'FormTemplateId',
1842
+ Title: 'Title',
1843
+ UseEmailBodyTemplate: 'UseEmailBodyTemplate',
1844
+ UseEmailSubjectTemplate: 'UseEmailSubjectTemplate',
1845
+ } as const;
1846
+
1847
+ export type FormVersionChange = (typeof FormVersionChange)[keyof typeof FormVersionChange];
1848
+ export type FormVersionConfirmationRedirectUrlParameter = {
1849
+ __typename?: 'FormVersionConfirmationRedirectUrlParameter';
1850
+ componentName: Scalars['String']['output'];
1851
+ id: Scalars['String']['output'];
1852
+ parameter: Scalars['String']['output'];
1853
+ };
1854
+
1855
+ export type FormVersionStep = {
1856
+ __typename?: 'FormVersionStep';
1857
+ components: Scalars['String']['output'];
1858
+ enabled: Scalars['Boolean']['output'];
1859
+ id: Scalars['String']['output'];
1860
+ name: Scalars['String']['output'];
1861
+ position: Scalars['String']['output'];
1862
+ };
1863
+
1864
+ export type FormVersionsList = ListResult & {
1865
+ __typename?: 'FormVersionsList';
1866
+ formVersions: Array<FormVersion>;
1867
+ limit: Scalars['Int']['output'];
1868
+ totalCount: Scalars['Int']['output'];
1869
+ };
1870
+
1444
1871
  export const GCloudCertificateMapEntryState = {
1445
1872
  Active: 'Active',
1446
1873
  Pending: 'Pending',
@@ -1458,18 +1885,42 @@ export const GCloudCertificateState = {
1458
1885
 
1459
1886
  export type GCloudCertificateState =
1460
1887
  (typeof GCloudCertificateState)[keyof typeof GCloudCertificateState];
1888
+ export type GenerateComponentsAskSuccessResult = {
1889
+ __typename?: 'GenerateComponentsAskSuccessResult';
1890
+ response: Scalars['String']['output'];
1891
+ };
1892
+
1893
+ export type GenerateComponentsDesignSuccessResult = {
1894
+ __typename?: 'GenerateComponentsDesignSuccessResult';
1895
+ components: Scalars['String']['output'];
1896
+ };
1897
+
1461
1898
  export type GenerateComponentsInput = {
1899
+ messages?: InputMaybe<Array<AiChatMessage>>;
1900
+ mode: GenerateComponentsMode;
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;
1462
1905
  platformId: Scalars['String']['input'];
1463
1906
  prompt: Scalars['String']['input'];
1907
+ /** If generating for a site, the site’s ID. */
1908
+ siteId?: InputMaybe<Scalars['String']['input']>;
1464
1909
  startingComponents: Scalars['String']['input'];
1465
1910
  };
1466
1911
 
1467
- export type GenerateComponentsResult = GenerateComponentsSuccessResult | InternalError | UserError;
1912
+ export const GenerateComponentsMode = {
1913
+ Ask: 'Ask',
1914
+ Design: 'Design',
1915
+ } as const;
1468
1916
 
1469
- export type GenerateComponentsSuccessResult = {
1470
- __typename?: 'GenerateComponentsSuccessResult';
1471
- components: Scalars['String']['output'];
1472
- };
1917
+ export type GenerateComponentsMode =
1918
+ (typeof GenerateComponentsMode)[keyof typeof GenerateComponentsMode];
1919
+ export type GenerateComponentsResult =
1920
+ | GenerateComponentsAskSuccessResult
1921
+ | GenerateComponentsDesignSuccessResult
1922
+ | InternalError
1923
+ | UserError;
1473
1924
 
1474
1925
  export type HelpTicket = {
1475
1926
  __typename?: 'HelpTicket';
@@ -1700,8 +2151,6 @@ export type ListResult = {
1700
2151
  totalCount: Scalars['Int']['output'];
1701
2152
  };
1702
2153
 
1703
- export type Me = AdminUser | User;
1704
-
1705
2154
  export type MoveUserToOrgResult = MoveUserToOrgSuccessResult | UserError;
1706
2155
 
1707
2156
  export type MoveUserToOrgSuccessResult = {
@@ -1724,6 +2173,8 @@ export type Mutation = {
1724
2173
  * Requires the requesting user to be an owner of the platform.
1725
2174
  */
1726
2175
  createAdminUser: CreateAdminUserResult;
2176
+ createAsset: CreateAssetResult;
2177
+ createAssetVariant: CreateAssetVariantResult;
1727
2178
  createComponent: CreateComponentResult;
1728
2179
  createCourse: CreateCourseResult;
1729
2180
  createCustomTableEditorFormVersion: CreateCustomTableEditorFormVersionResult;
@@ -1789,6 +2240,8 @@ export type Mutation = {
1789
2240
  duplicatePageTemplate: PageTemplate;
1790
2241
  duplicateSequence: DuplicateSequenceResult;
1791
2242
  duplicateStageBlueprint: StageBlueprint;
2243
+ editAsset: EditAssetResult;
2244
+ editAssetVariant: EditAssetVariantResult;
1792
2245
  editComponent: EditComponentResult;
1793
2246
  editCourse: EditCourseResult;
1794
2247
  /** Edit the custom table (i.e., custom fields) of a specific target object. */
@@ -1825,7 +2278,6 @@ export type Mutation = {
1825
2278
  editPlatformAdminUser: EditPlatformAdminUserResult;
1826
2279
  editPlatformOptions: Platform;
1827
2280
  editProduct: EditProductResult;
1828
- editScoreMyCallEntryStatus?: Maybe<ScoreMyCallEntry>;
1829
2281
  editSequence: EditSequenceResult;
1830
2282
  editSequenceUser: EditSequenceUserResult;
1831
2283
  editSite: EditSiteResult;
@@ -1853,6 +2305,7 @@ export type Mutation = {
1853
2305
  requestPasswordReset: Scalars['Boolean']['output'];
1854
2306
  resetPassword: Scalars['Boolean']['output'];
1855
2307
  restoreCourseVersionChanges: RestoreCourseVersionChangesResult;
2308
+ restoreFormVersionChanges: RestoreFormVersionChangesResult;
1856
2309
  restoreLessonVersionChanges: RestoreLessonVersionChangesResult;
1857
2310
  restorePageVersionChanges: RestorePageVersionChangesResult;
1858
2311
  sendVerificationEmail: Scalars['Boolean']['output'];
@@ -1861,7 +2314,6 @@ export type Mutation = {
1861
2314
  splitUserToNewOrg: SplitUserToNewOrgResult;
1862
2315
  submitForm: SubmitFormResult;
1863
2316
  submitReview: Scalars['Boolean']['output'];
1864
- submitScoreMyCallEntry: SubmitScoreMyCallEntryResult;
1865
2317
  syncFormTemplateToForms: Scalars['Boolean']['output'];
1866
2318
  /** Sync a layout template to the layouts that were created from the template. Only draft and published layouts are synced. */
1867
2319
  syncLayoutTemplateToLayouts: SyncLayoutTemplateToLayoutsResult;
@@ -1889,6 +2341,14 @@ export type MutationCreateAdminUserArgs = {
1889
2341
  input: CreateAdminUserInput;
1890
2342
  };
1891
2343
 
2344
+ export type MutationCreateAssetArgs = {
2345
+ input: CreateAssetInput;
2346
+ };
2347
+
2348
+ export type MutationCreateAssetVariantArgs = {
2349
+ input: CreateAssetVariantInput;
2350
+ };
2351
+
1892
2352
  export type MutationCreateComponentArgs = {
1893
2353
  input: CreateComponentInput;
1894
2354
  };
@@ -2167,6 +2627,14 @@ export type MutationDuplicateStageBlueprintArgs = {
2167
2627
  position: Scalars['Int']['input'];
2168
2628
  };
2169
2629
 
2630
+ export type MutationEditAssetArgs = {
2631
+ input: EditAssetInput;
2632
+ };
2633
+
2634
+ export type MutationEditAssetVariantArgs = {
2635
+ input: EditAssetVariantInput;
2636
+ };
2637
+
2170
2638
  export type MutationEditComponentArgs = {
2171
2639
  input: EditComponentInput;
2172
2640
  };
@@ -2367,11 +2835,6 @@ export type MutationEditProductArgs = {
2367
2835
  stripePriceId?: InputMaybe<OptionalStringUpdate>;
2368
2836
  };
2369
2837
 
2370
- export type MutationEditScoreMyCallEntryStatusArgs = {
2371
- id: Scalars['String']['input'];
2372
- status: ScoreMyCallEntryStatus;
2373
- };
2374
-
2375
2838
  export type MutationEditSequenceArgs = {
2376
2839
  id: Scalars['String']['input'];
2377
2840
  loopStages: Scalars['Boolean']['input'];
@@ -2498,6 +2961,10 @@ export type MutationRestoreCourseVersionChangesArgs = {
2498
2961
  input: RestoreCourseVersionChangesInput;
2499
2962
  };
2500
2963
 
2964
+ export type MutationRestoreFormVersionChangesArgs = {
2965
+ input: RestoreFormVersionChangesInput;
2966
+ };
2967
+
2501
2968
  export type MutationRestoreLessonVersionChangesArgs = {
2502
2969
  input: RestoreLessonVersionChangesInput;
2503
2970
  };
@@ -2530,14 +2997,6 @@ export type MutationSubmitReviewArgs = {
2530
2997
  submitterName?: InputMaybe<Scalars['String']['input']>;
2531
2998
  };
2532
2999
 
2533
- export type MutationSubmitScoreMyCallEntryArgs = {
2534
- fileName: Scalars['String']['input'];
2535
- fileType: Scalars['String']['input'];
2536
- formData: Scalars['String']['input'];
2537
- prospectName: Scalars['String']['input'];
2538
- shareRecording: Scalars['Boolean']['input'];
2539
- };
2540
-
2541
3000
  export type MutationSyncFormTemplateToFormsArgs = {
2542
3001
  formTemplateId: Scalars['String']['input'];
2543
3002
  };
@@ -2602,6 +3061,10 @@ export const OptionalIdFilterOperator = {
2602
3061
 
2603
3062
  export type OptionalIdFilterOperator =
2604
3063
  (typeof OptionalIdFilterOperator)[keyof typeof OptionalIdFilterOperator];
3064
+ export type OptionalIntUpdate = {
3065
+ value?: InputMaybe<Scalars['Int']['input']>;
3066
+ };
3067
+
2605
3068
  /**
2606
3069
  * A filter for an optional string field. Either exists or filter must be provided but not both.
2607
3070
  * A value exists if it is not null. An empty string is considered to exist.
@@ -2829,6 +3292,8 @@ export const PermissionName = {
2829
3292
  CreateUser: 'CreateUser',
2830
3293
  /** Edit or manage everything else not covered by other permissions. */
2831
3294
  Edit: 'Edit',
3295
+ /** Edit assets, including creating and deleting any asset or asset variant. */
3296
+ EditAsset: 'EditAsset',
2832
3297
  /** Edit, including creating and deleting, any component. */
2833
3298
  EditComponent: 'EditComponent',
2834
3299
  /** Edit, including creating and deleting, any course. */
@@ -2875,11 +3340,15 @@ export const PermissionName = {
2875
3340
  SyncFormTemplateToForms: 'SyncFormTemplateToForms',
2876
3341
  /** Sync any page template to pages. */
2877
3342
  SyncPageTemplateToPages: 'SyncPageTemplateToPages',
3343
+ /** Upload files as an extension. */
3344
+ UploadFileAsExtension: 'UploadFileAsExtension',
2878
3345
  /** View anything except for sites. */
2879
3346
  View: 'View',
3347
+ /** View any asset including its variants and versions. */
3348
+ ViewAsset: 'ViewAsset',
2880
3349
  /** View any course. */
2881
3350
  ViewCourse: 'ViewCourse',
2882
- /** View any extension. */
3351
+ /** View any extension, including its versions, configuration, and logs. */
2883
3352
  ViewExtension: 'ViewExtension',
2884
3353
  /** View any site, including pages, forms, and layouts, and components. */
2885
3354
  ViewSite: 'ViewSite',
@@ -2914,12 +3383,14 @@ export type Platform = {
2914
3383
  defaultFormNotificationEmailBodyTemplate: Scalars['String']['output'];
2915
3384
  emailReplyToAddress?: Maybe<Scalars['String']['output']>;
2916
3385
  emailSendFromAddress: Scalars['String']['output'];
2917
- enableScoreMyCall: Scalars['Boolean']['output'];
3386
+ enableOrgSites: Scalars['Boolean']['output'];
3387
+ featureFlags: Array<Scalars['String']['output']>;
2918
3388
  handle: Scalars['String']['output'];
2919
3389
  id: Scalars['String']['output'];
2920
3390
  mainSiteId?: Maybe<Scalars['String']['output']>;
2921
3391
  mixpanelToken?: Maybe<Scalars['String']['output']>;
2922
3392
  name: Scalars['String']['output'];
3393
+ roles: Array<Role>;
2923
3394
  sendGridApiKey?: Maybe<Scalars['String']['output']>;
2924
3395
  stripeSecretKey?: Maybe<Scalars['String']['output']>;
2925
3396
  stripeWebhookSigningSecret?: Maybe<Scalars['String']['output']>;
@@ -3066,19 +3537,9 @@ export const PromoCodeType = {
3066
3537
  export type PromoCodeType = (typeof PromoCodeType)[keyof typeof PromoCodeType];
3067
3538
  export type PublicSite = {
3068
3539
  __typename?: 'PublicSite';
3069
- addressCity?: Maybe<Scalars['String']['output']>;
3070
- addressLine1?: Maybe<Scalars['String']['output']>;
3071
- addressLine2?: Maybe<Scalars['String']['output']>;
3072
- addressState?: Maybe<Scalars['String']['output']>;
3073
- addressZip?: Maybe<Scalars['String']['output']>;
3074
- agencyPrimaryPhone?: Maybe<Scalars['String']['output']>;
3075
- agentFirstName?: Maybe<Scalars['String']['output']>;
3076
- agentLastName?: Maybe<Scalars['String']['output']>;
3077
- agentPhotoUrl?: Maybe<Scalars['String']['output']>;
3078
3540
  custom: CustomFieldValuesList;
3079
3541
  domain: Scalars['String']['output'];
3080
3542
  form: PublicSiteForm;
3081
- googlePlaceId?: Maybe<Scalars['String']['output']>;
3082
3543
  id: Scalars['String']['output'];
3083
3544
  latestAgreement?: Maybe<Agreement>;
3084
3545
  /** The layout with the longest pathPrefix that matches the specified path. */
@@ -3091,8 +3552,6 @@ export type PublicSite = {
3091
3552
  /** Get published pages, optionally filtering by a path prefix. */
3092
3553
  pages: PublicSitePagesList;
3093
3554
  platformId: Scalars['String']['output'];
3094
- useCustomPrivacyPolicy: Scalars['Boolean']['output'];
3095
- useCustomTermsOfUse: Scalars['Boolean']['output'];
3096
3555
  };
3097
3556
 
3098
3557
  export type PublicSiteFormArgs = {
@@ -3151,8 +3610,7 @@ export type PublicSitePagesList = ListResult & {
3151
3610
  };
3152
3611
 
3153
3612
  export const PublishStatus = {
3154
- /** TODO: Replace Deleted with Archived. */
3155
- Deleted: 'Deleted',
3613
+ Archived: 'Archived',
3156
3614
  Draft: 'Draft',
3157
3615
  Published: 'Published',
3158
3616
  } as const;
@@ -3166,6 +3624,10 @@ export type Query = {
3166
3624
  __typename?: 'Query';
3167
3625
  adminMe?: Maybe<AdminUser>;
3168
3626
  applyCustomPromoCode: ApplyCustomPromoCodeResult;
3627
+ asset?: Maybe<Asset>;
3628
+ assetVariant?: Maybe<AssetVariant>;
3629
+ /** List assets. Requires the admin Asset:view permission. */
3630
+ assets: AssetsList;
3169
3631
  /**
3170
3632
  * Get active components that can be used for the visual builder on a platform. Results include built-in,
3171
3633
  * custom, and remote extension-provided components.
@@ -3180,8 +3642,9 @@ export type Query = {
3180
3642
  document: Document;
3181
3643
  documentDownloadPrompts: Array<DocumentDownloadPrompt>;
3182
3644
  documents: Array<Document>;
3645
+ extension: Extension;
3183
3646
  extensions: ExtensionsList;
3184
- file: File;
3647
+ file?: Maybe<File>;
3185
3648
  form: Form;
3186
3649
  formEntries: FormEntriesList;
3187
3650
  formTemplate: FormTemplate;
@@ -3223,8 +3686,6 @@ export type Query = {
3223
3686
  publicSite: PublicSite;
3224
3687
  remoteComponent: RemoteComponent;
3225
3688
  reviews: ReviewsList;
3226
- scoreMyCallEntries: Array<ScoreMyCallEntry>;
3227
- scoreMyCallEntryFileUrl: Scalars['String']['output'];
3228
3689
  sequence: Sequence;
3229
3690
  sequences: SequencesList;
3230
3691
  site: Site;
@@ -3251,6 +3712,21 @@ export type QueryApplyCustomPromoCodeArgs = {
3251
3712
  subscriptionPlanId: Scalars['String']['input'];
3252
3713
  };
3253
3714
 
3715
+ export type QueryAssetArgs = {
3716
+ id: Scalars['String']['input'];
3717
+ };
3718
+
3719
+ export type QueryAssetVariantArgs = {
3720
+ id: Scalars['String']['input'];
3721
+ };
3722
+
3723
+ export type QueryAssetsArgs = {
3724
+ archived?: InputMaybe<Scalars['Boolean']['input']>;
3725
+ limit?: InputMaybe<Scalars['Int']['input']>;
3726
+ page?: InputMaybe<Scalars['Int']['input']>;
3727
+ platformId: Scalars['String']['input'];
3728
+ };
3729
+
3254
3730
  export type QueryBuilderComponentsArgs = {
3255
3731
  platformId: Scalars['String']['input'];
3256
3732
  };
@@ -3298,6 +3774,10 @@ export type QueryDocumentsArgs = {
3298
3774
  platformId: Scalars['String']['input'];
3299
3775
  };
3300
3776
 
3777
+ export type QueryExtensionArgs = {
3778
+ id: Scalars['String']['input'];
3779
+ };
3780
+
3301
3781
  export type QueryExtensionsArgs = {
3302
3782
  limit?: InputMaybe<Scalars['Int']['input']>;
3303
3783
  page?: InputMaybe<Scalars['Int']['input']>;
@@ -3335,8 +3815,8 @@ export type QueryFormsArgs = {
3335
3815
  };
3336
3816
 
3337
3817
  export type QueryHelpTicketsArgs = {
3338
- limit?: Scalars['Int']['input'];
3339
- page?: Scalars['Int']['input'];
3818
+ limit?: InputMaybe<Scalars['Int']['input']>;
3819
+ page?: InputMaybe<Scalars['Int']['input']>;
3340
3820
  platformId: Scalars['String']['input'];
3341
3821
  };
3342
3822
 
@@ -3430,8 +3910,8 @@ export type QueryProductItemPicklistArgs = {
3430
3910
  };
3431
3911
 
3432
3912
  export type QueryProductsArgs = {
3433
- limit?: Scalars['Int']['input'];
3434
- page?: Scalars['Int']['input'];
3913
+ limit?: InputMaybe<Scalars['Int']['input']>;
3914
+ page?: InputMaybe<Scalars['Int']['input']>;
3435
3915
  platformId: Scalars['String']['input'];
3436
3916
  };
3437
3917
 
@@ -3454,16 +3934,6 @@ export type QueryReviewsArgs = {
3454
3934
  siteId: Scalars['String']['input'];
3455
3935
  };
3456
3936
 
3457
- export type QueryScoreMyCallEntriesArgs = {
3458
- platformId: Scalars['String']['input'];
3459
- shareRecording?: InputMaybe<Scalars['Boolean']['input']>;
3460
- };
3461
-
3462
- export type QueryScoreMyCallEntryFileUrlArgs = {
3463
- download?: InputMaybe<Scalars['Boolean']['input']>;
3464
- entryId: Scalars['String']['input'];
3465
- };
3466
-
3467
3937
  export type QuerySequenceArgs = {
3468
3938
  id: Scalars['String']['input'];
3469
3939
  };
@@ -3578,6 +4048,21 @@ export type RestoreCourseVersionChangesSuccessResult = {
3578
4048
  course: Course;
3579
4049
  };
3580
4050
 
4051
+ export type RestoreFormVersionChangesInput = {
4052
+ changes: Array<FormVersionChange>;
4053
+ formVersionId: Scalars['String']['input'];
4054
+ };
4055
+
4056
+ export type RestoreFormVersionChangesResult =
4057
+ | InternalError
4058
+ | RestoreFormVersionChangesSuccessResult
4059
+ | UserError;
4060
+
4061
+ export type RestoreFormVersionChangesSuccessResult = {
4062
+ __typename?: 'RestoreFormVersionChangesSuccessResult';
4063
+ form: Form;
4064
+ };
4065
+
3581
4066
  export type RestoreLessonVersionChangesInput = {
3582
4067
  changes: Array<LessonVersionChange>;
3583
4068
  lessonVersionId: Scalars['String']['input'];
@@ -3632,25 +4117,23 @@ export type RichTextInput = {
3632
4117
  delta: Scalars['String']['input'];
3633
4118
  };
3634
4119
 
3635
- export type ScoreMyCallEntry = {
3636
- __typename?: 'ScoreMyCallEntry';
3637
- createdAt: Scalars['Date']['output'];
3638
- formData: Scalars['String']['output'];
4120
+ export type Role = {
4121
+ __typename?: 'Role';
4122
+ default: Scalars['Boolean']['output'];
3639
4123
  id: Scalars['String']['output'];
3640
- prospectName?: Maybe<Scalars['String']['output']>;
3641
- shareRecording: Scalars['Boolean']['output'];
3642
- status: ScoreMyCallEntryStatus;
3643
- user: User;
3644
- userId: Scalars['String']['output'];
4124
+ name: Scalars['String']['output'];
3645
4125
  };
3646
4126
 
3647
- export const ScoreMyCallEntryStatus = {
3648
- NotReviewed: 'NotReviewed',
3649
- Reviewed: 'Reviewed',
3650
- } as const;
4127
+ export type RoleInput = {
4128
+ default: Scalars['Boolean']['input'];
4129
+ id: Scalars['String']['input'];
4130
+ name: Scalars['String']['input'];
4131
+ };
4132
+
4133
+ export type RolesUpdate = {
4134
+ value: Array<RoleInput>;
4135
+ };
3651
4136
 
3652
- export type ScoreMyCallEntryStatus =
3653
- (typeof ScoreMyCallEntryStatus)[keyof typeof ScoreMyCallEntryStatus];
3654
4137
  export type Sequence = {
3655
4138
  __typename?: 'Sequence';
3656
4139
  id: Scalars['String']['output'];
@@ -3684,22 +4167,12 @@ export type SequencesList = ListResult & {
3684
4167
 
3685
4168
  export type Site = {
3686
4169
  __typename?: 'Site';
3687
- addressCity?: Maybe<Scalars['String']['output']>;
3688
- addressLine1?: Maybe<Scalars['String']['output']>;
3689
- addressLine2?: Maybe<Scalars['String']['output']>;
3690
- addressState?: Maybe<Scalars['String']['output']>;
3691
- addressZip?: Maybe<Scalars['String']['output']>;
3692
- agencyPrimaryPhone?: Maybe<Scalars['String']['output']>;
3693
- agentFirstName?: Maybe<Scalars['String']['output']>;
3694
- agentLastName?: Maybe<Scalars['String']['output']>;
3695
- agentPhotoUrl?: Maybe<Scalars['String']['output']>;
3696
4170
  agreements: AgreementsList;
3697
4171
  bodyEndCode?: Maybe<Scalars['String']['output']>;
3698
4172
  custom: CustomFieldValuesList;
3699
4173
  domain: Scalars['String']['output'];
3700
4174
  fontFamily: Scalars['String']['output'];
3701
4175
  globalCss?: Maybe<Scalars['String']['output']>;
3702
- googlePlaceId?: Maybe<Scalars['String']['output']>;
3703
4176
  googleTagManagerId?: Maybe<Scalars['String']['output']>;
3704
4177
  headEndCode?: Maybe<Scalars['String']['output']>;
3705
4178
  id: Scalars['String']['output'];
@@ -3719,8 +4192,6 @@ export type Site = {
3719
4192
  siteTemplateId?: Maybe<Scalars['String']['output']>;
3720
4193
  stripePublishableKey?: Maybe<Scalars['String']['output']>;
3721
4194
  tlsCertificates: Array<TlsCertificate>;
3722
- useCustomPrivacyPolicy: Scalars['Boolean']['output'];
3723
- useCustomTermsOfUse: Scalars['Boolean']['output'];
3724
4195
  zendeskChatKey?: Maybe<Scalars['String']['output']>;
3725
4196
  };
3726
4197
 
@@ -3916,11 +4387,6 @@ export type SubmitFormResult = {
3916
4387
  sessionId: Scalars['String']['output'];
3917
4388
  };
3918
4389
 
3919
- export type SubmitScoreMyCallEntryResult = {
3920
- __typename?: 'SubmitScoreMyCallEntryResult';
3921
- signedUploadUrl: Scalars['String']['output'];
3922
- };
3923
-
3924
4390
  export type Subscription = {
3925
4391
  __typename?: 'Subscription';
3926
4392
  stageUpdated?: Maybe<Stage>;
@@ -4109,6 +4575,7 @@ export type UploadFileInput = {
4109
4575
  export type UploadFilePurpose = {
4110
4576
  customField?: InputMaybe<UploadFilePurposeCustomField>;
4111
4577
  document?: InputMaybe<UploadFilePurposeDocument>;
4578
+ extension?: InputMaybe<UploadFilePurposeExtension>;
4112
4579
  sequenceStageUser?: InputMaybe<UploadFilePurposeSequenceStageUser>;
4113
4580
  siteLogo?: InputMaybe<UploadFilePurposeSiteLogo>;
4114
4581
  };
@@ -4127,6 +4594,13 @@ export type UploadFilePurposeDocument = {
4127
4594
  setAsCurrentVersion: Scalars['Boolean']['input'];
4128
4595
  };
4129
4596
 
4597
+ export type UploadFilePurposeExtension = {
4598
+ extensionName: Scalars['String']['input'];
4599
+ /** Some string for uniquely identifying the file within the extension. */
4600
+ objectName: Scalars['String']['input'];
4601
+ platformId: Scalars['String']['input'];
4602
+ };
4603
+
4130
4604
  export type UploadFilePurposeSequenceStageUser = {
4131
4605
  sequenceStageUserId: Scalars['String']['input'];
4132
4606
  stateProperty: Scalars['String']['input'];
@@ -4308,3 +4782,26 @@ export type UsersList = ListResult & {
4308
4782
  totalCount: Scalars['Int']['output'];
4309
4783
  users: Array<User>;
4310
4784
  };
4785
+
4786
+ export const VisualDesignerObjectType = {
4787
+ Component: 'Component',
4788
+ ComponentPropsSetup: 'ComponentPropsSetup',
4789
+ CustomFieldsForm: 'CustomFieldsForm',
4790
+ Form: 'Form',
4791
+ FormConfirmationMessageComponents: 'FormConfirmationMessageComponents',
4792
+ FormStep: 'FormStep',
4793
+ FormTemplate: 'FormTemplate',
4794
+ FormTemplateConfirmationMessageComponents: 'FormTemplateConfirmationMessageComponents',
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;
4805
+
4806
+ export type VisualDesignerObjectType =
4807
+ (typeof VisualDesignerObjectType)[keyof typeof VisualDesignerObjectType];