@supernova-studio/model 0.47.16 → 0.47.18
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/dist/index.d.mts +614 -317
- package/dist/index.d.ts +614 -317
- package/dist/index.js +94 -40
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +157 -103
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/export/export-destinations.ts +29 -19
- package/src/export/export-jobs.ts +9 -1
- package/src/export/exporter.ts +6 -3
- package/src/export/index.ts +1 -1
- package/src/export/pipeline.ts +33 -0
- package/src/integrations/git.ts +10 -0
- package/src/integrations/integration.ts +16 -1
- package/src/utils/common.ts +10 -0
- package/src/export/export-schedule.ts +0 -25
package/dist/index.d.mts
CHANGED
|
@@ -2538,6 +2538,7 @@ type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
|
|
|
2538
2538
|
declare function forceUnwrapNullish<T>(value: Nullish<T>): T;
|
|
2539
2539
|
declare function trimLeadingSlash(string: string): string;
|
|
2540
2540
|
declare function trimTrailingSlash(string: string): string;
|
|
2541
|
+
declare function tryParseUrl(url: string): URL | null;
|
|
2541
2542
|
declare function parseUrl(url: string): URL;
|
|
2542
2543
|
declare function mapByUnique<V, K>(items: V[], keyFn: (item: V) => K): Map<K, V>;
|
|
2543
2544
|
declare function groupBy<V, K>(items: V[], keyFn: (item: V) => K): Map<K, V[]>;
|
|
@@ -98211,86 +98212,89 @@ type ExporterDestinationDocs = z.infer<typeof ExporterDestinationDocs>;
|
|
|
98211
98212
|
declare const ExporterDestinationS3: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
98212
98213
|
type ExporterDestinationS3 = z.infer<typeof ExporterDestinationS3>;
|
|
98213
98214
|
declare const ExporterDestinationGithub: z.ZodObject<{
|
|
98215
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98214
98216
|
url: z.ZodString;
|
|
98215
98217
|
branch: z.ZodString;
|
|
98216
|
-
|
|
98217
|
-
connectionId: z.ZodString;
|
|
98218
|
-
relativePath: z.ZodString;
|
|
98218
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98219
98219
|
}, "strip", z.ZodTypeAny, {
|
|
98220
98220
|
url: string;
|
|
98221
|
-
userId: string;
|
|
98222
98221
|
branch: string;
|
|
98223
|
-
|
|
98224
|
-
relativePath
|
|
98222
|
+
credentialId?: string | undefined;
|
|
98223
|
+
relativePath?: string | undefined;
|
|
98225
98224
|
}, {
|
|
98226
98225
|
url: string;
|
|
98227
|
-
userId: string;
|
|
98228
98226
|
branch: string;
|
|
98229
|
-
|
|
98230
|
-
relativePath
|
|
98227
|
+
credentialId?: string | undefined;
|
|
98228
|
+
relativePath?: string | null | undefined;
|
|
98231
98229
|
}>;
|
|
98232
98230
|
type ExporterDestinationGithub = z.infer<typeof ExporterDestinationGithub>;
|
|
98233
98231
|
declare const ExporterDestinationAzure: z.ZodObject<{
|
|
98234
|
-
|
|
98232
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98235
98233
|
organizationId: z.ZodString;
|
|
98236
98234
|
projectId: z.ZodString;
|
|
98237
98235
|
repositoryId: z.ZodString;
|
|
98238
98236
|
branch: z.ZodString;
|
|
98239
|
-
relativePath: z.
|
|
98237
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98238
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98240
98239
|
}, "strip", z.ZodTypeAny, {
|
|
98241
98240
|
branch: string;
|
|
98242
|
-
connectionId: string;
|
|
98243
|
-
relativePath: string;
|
|
98244
98241
|
organizationId: string;
|
|
98245
98242
|
projectId: string;
|
|
98246
98243
|
repositoryId: string;
|
|
98244
|
+
url?: string | undefined;
|
|
98245
|
+
credentialId?: string | undefined;
|
|
98246
|
+
relativePath?: string | undefined;
|
|
98247
98247
|
}, {
|
|
98248
98248
|
branch: string;
|
|
98249
|
-
connectionId: string;
|
|
98250
|
-
relativePath: string;
|
|
98251
98249
|
organizationId: string;
|
|
98252
98250
|
projectId: string;
|
|
98253
98251
|
repositoryId: string;
|
|
98252
|
+
url?: string | null | undefined;
|
|
98253
|
+
credentialId?: string | undefined;
|
|
98254
|
+
relativePath?: string | null | undefined;
|
|
98254
98255
|
}>;
|
|
98255
98256
|
type ExporterDestinationAzure = z.infer<typeof ExporterDestinationAzure>;
|
|
98256
98257
|
declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
98257
|
-
|
|
98258
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98258
98259
|
projectId: z.ZodString;
|
|
98259
98260
|
branch: z.ZodString;
|
|
98260
|
-
relativePath: z.
|
|
98261
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98262
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98261
98263
|
}, "strip", z.ZodTypeAny, {
|
|
98262
98264
|
branch: string;
|
|
98263
|
-
connectionId: string;
|
|
98264
|
-
relativePath: string;
|
|
98265
98265
|
projectId: string;
|
|
98266
|
+
url?: string | undefined;
|
|
98267
|
+
credentialId?: string | undefined;
|
|
98268
|
+
relativePath?: string | undefined;
|
|
98266
98269
|
}, {
|
|
98267
98270
|
branch: string;
|
|
98268
|
-
connectionId: string;
|
|
98269
|
-
relativePath: string;
|
|
98270
98271
|
projectId: string;
|
|
98272
|
+
url?: string | null | undefined;
|
|
98273
|
+
credentialId?: string | undefined;
|
|
98274
|
+
relativePath?: string | null | undefined;
|
|
98271
98275
|
}>;
|
|
98272
98276
|
type ExporterDestinationGitlab = z.infer<typeof ExporterDestinationGitlab>;
|
|
98273
98277
|
declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
98274
|
-
|
|
98278
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98275
98279
|
workspaceSlug: z.ZodString;
|
|
98276
98280
|
projectKey: z.ZodString;
|
|
98277
98281
|
repoSlug: z.ZodString;
|
|
98278
98282
|
branch: z.ZodString;
|
|
98279
|
-
relativePath: z.
|
|
98283
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98280
98284
|
}, "strip", z.ZodTypeAny, {
|
|
98281
98285
|
branch: string;
|
|
98282
|
-
connectionId: string;
|
|
98283
|
-
relativePath: string;
|
|
98284
98286
|
workspaceSlug: string;
|
|
98285
98287
|
projectKey: string;
|
|
98286
98288
|
repoSlug: string;
|
|
98289
|
+
credentialId?: string | undefined;
|
|
98290
|
+
relativePath?: string | undefined;
|
|
98287
98291
|
}, {
|
|
98288
98292
|
branch: string;
|
|
98289
|
-
connectionId: string;
|
|
98290
|
-
relativePath: string;
|
|
98291
98293
|
workspaceSlug: string;
|
|
98292
98294
|
projectKey: string;
|
|
98293
98295
|
repoSlug: string;
|
|
98296
|
+
credentialId?: string | undefined;
|
|
98297
|
+
relativePath?: string | null | undefined;
|
|
98294
98298
|
}>;
|
|
98295
98299
|
type ExporterDestinationBitbucket = z.infer<typeof ExporterDestinationBitbucket>;
|
|
98296
98300
|
declare const ExportDestinationsMap: z.ZodObject<{
|
|
@@ -98304,83 +98308,86 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98304
98308
|
}>>;
|
|
98305
98309
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
98306
98310
|
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
98311
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98307
98312
|
url: z.ZodString;
|
|
98308
98313
|
branch: z.ZodString;
|
|
98309
|
-
|
|
98310
|
-
connectionId: z.ZodString;
|
|
98311
|
-
relativePath: z.ZodString;
|
|
98314
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98312
98315
|
}, "strip", z.ZodTypeAny, {
|
|
98313
98316
|
url: string;
|
|
98314
|
-
userId: string;
|
|
98315
98317
|
branch: string;
|
|
98316
|
-
|
|
98317
|
-
relativePath
|
|
98318
|
+
credentialId?: string | undefined;
|
|
98319
|
+
relativePath?: string | undefined;
|
|
98318
98320
|
}, {
|
|
98319
98321
|
url: string;
|
|
98320
|
-
userId: string;
|
|
98321
98322
|
branch: string;
|
|
98322
|
-
|
|
98323
|
-
relativePath
|
|
98323
|
+
credentialId?: string | undefined;
|
|
98324
|
+
relativePath?: string | null | undefined;
|
|
98324
98325
|
}>>;
|
|
98325
98326
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
98326
|
-
|
|
98327
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98327
98328
|
organizationId: z.ZodString;
|
|
98328
98329
|
projectId: z.ZodString;
|
|
98329
98330
|
repositoryId: z.ZodString;
|
|
98330
98331
|
branch: z.ZodString;
|
|
98331
|
-
relativePath: z.
|
|
98332
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98333
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98332
98334
|
}, "strip", z.ZodTypeAny, {
|
|
98333
98335
|
branch: string;
|
|
98334
|
-
connectionId: string;
|
|
98335
|
-
relativePath: string;
|
|
98336
98336
|
organizationId: string;
|
|
98337
98337
|
projectId: string;
|
|
98338
98338
|
repositoryId: string;
|
|
98339
|
+
url?: string | undefined;
|
|
98340
|
+
credentialId?: string | undefined;
|
|
98341
|
+
relativePath?: string | undefined;
|
|
98339
98342
|
}, {
|
|
98340
98343
|
branch: string;
|
|
98341
|
-
connectionId: string;
|
|
98342
|
-
relativePath: string;
|
|
98343
98344
|
organizationId: string;
|
|
98344
98345
|
projectId: string;
|
|
98345
98346
|
repositoryId: string;
|
|
98347
|
+
url?: string | null | undefined;
|
|
98348
|
+
credentialId?: string | undefined;
|
|
98349
|
+
relativePath?: string | null | undefined;
|
|
98346
98350
|
}>>;
|
|
98347
98351
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
98348
|
-
|
|
98352
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98349
98353
|
projectId: z.ZodString;
|
|
98350
98354
|
branch: z.ZodString;
|
|
98351
|
-
relativePath: z.
|
|
98355
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98356
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98352
98357
|
}, "strip", z.ZodTypeAny, {
|
|
98353
98358
|
branch: string;
|
|
98354
|
-
connectionId: string;
|
|
98355
|
-
relativePath: string;
|
|
98356
98359
|
projectId: string;
|
|
98360
|
+
url?: string | undefined;
|
|
98361
|
+
credentialId?: string | undefined;
|
|
98362
|
+
relativePath?: string | undefined;
|
|
98357
98363
|
}, {
|
|
98358
98364
|
branch: string;
|
|
98359
|
-
connectionId: string;
|
|
98360
|
-
relativePath: string;
|
|
98361
98365
|
projectId: string;
|
|
98366
|
+
url?: string | null | undefined;
|
|
98367
|
+
credentialId?: string | undefined;
|
|
98368
|
+
relativePath?: string | null | undefined;
|
|
98362
98369
|
}>>;
|
|
98363
98370
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
98364
|
-
|
|
98371
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98365
98372
|
workspaceSlug: z.ZodString;
|
|
98366
98373
|
projectKey: z.ZodString;
|
|
98367
98374
|
repoSlug: z.ZodString;
|
|
98368
98375
|
branch: z.ZodString;
|
|
98369
|
-
relativePath: z.
|
|
98376
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98370
98377
|
}, "strip", z.ZodTypeAny, {
|
|
98371
98378
|
branch: string;
|
|
98372
|
-
connectionId: string;
|
|
98373
|
-
relativePath: string;
|
|
98374
98379
|
workspaceSlug: string;
|
|
98375
98380
|
projectKey: string;
|
|
98376
98381
|
repoSlug: string;
|
|
98382
|
+
credentialId?: string | undefined;
|
|
98383
|
+
relativePath?: string | undefined;
|
|
98377
98384
|
}, {
|
|
98378
98385
|
branch: string;
|
|
98379
|
-
connectionId: string;
|
|
98380
|
-
relativePath: string;
|
|
98381
98386
|
workspaceSlug: string;
|
|
98382
98387
|
projectKey: string;
|
|
98383
98388
|
repoSlug: string;
|
|
98389
|
+
credentialId?: string | undefined;
|
|
98390
|
+
relativePath?: string | null | undefined;
|
|
98384
98391
|
}>>;
|
|
98385
98392
|
}, "strip", z.ZodTypeAny, {
|
|
98386
98393
|
webhookUrl?: string | undefined;
|
|
@@ -98390,32 +98397,33 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98390
98397
|
destinationS3?: {} | undefined;
|
|
98391
98398
|
destinationGithub?: {
|
|
98392
98399
|
url: string;
|
|
98393
|
-
userId: string;
|
|
98394
98400
|
branch: string;
|
|
98395
|
-
|
|
98396
|
-
relativePath
|
|
98401
|
+
credentialId?: string | undefined;
|
|
98402
|
+
relativePath?: string | undefined;
|
|
98397
98403
|
} | undefined;
|
|
98398
98404
|
destinationAzure?: {
|
|
98399
98405
|
branch: string;
|
|
98400
|
-
connectionId: string;
|
|
98401
|
-
relativePath: string;
|
|
98402
98406
|
organizationId: string;
|
|
98403
98407
|
projectId: string;
|
|
98404
98408
|
repositoryId: string;
|
|
98409
|
+
url?: string | undefined;
|
|
98410
|
+
credentialId?: string | undefined;
|
|
98411
|
+
relativePath?: string | undefined;
|
|
98405
98412
|
} | undefined;
|
|
98406
98413
|
destinationGitlab?: {
|
|
98407
98414
|
branch: string;
|
|
98408
|
-
connectionId: string;
|
|
98409
|
-
relativePath: string;
|
|
98410
98415
|
projectId: string;
|
|
98416
|
+
url?: string | undefined;
|
|
98417
|
+
credentialId?: string | undefined;
|
|
98418
|
+
relativePath?: string | undefined;
|
|
98411
98419
|
} | undefined;
|
|
98412
98420
|
destinationBitbucket?: {
|
|
98413
98421
|
branch: string;
|
|
98414
|
-
connectionId: string;
|
|
98415
|
-
relativePath: string;
|
|
98416
98422
|
workspaceSlug: string;
|
|
98417
98423
|
projectKey: string;
|
|
98418
98424
|
repoSlug: string;
|
|
98425
|
+
credentialId?: string | undefined;
|
|
98426
|
+
relativePath?: string | undefined;
|
|
98419
98427
|
} | undefined;
|
|
98420
98428
|
}, {
|
|
98421
98429
|
webhookUrl?: string | undefined;
|
|
@@ -98425,37 +98433,38 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98425
98433
|
destinationS3?: {} | undefined;
|
|
98426
98434
|
destinationGithub?: {
|
|
98427
98435
|
url: string;
|
|
98428
|
-
userId: string;
|
|
98429
98436
|
branch: string;
|
|
98430
|
-
|
|
98431
|
-
relativePath
|
|
98437
|
+
credentialId?: string | undefined;
|
|
98438
|
+
relativePath?: string | null | undefined;
|
|
98432
98439
|
} | undefined;
|
|
98433
98440
|
destinationAzure?: {
|
|
98434
98441
|
branch: string;
|
|
98435
|
-
connectionId: string;
|
|
98436
|
-
relativePath: string;
|
|
98437
98442
|
organizationId: string;
|
|
98438
98443
|
projectId: string;
|
|
98439
98444
|
repositoryId: string;
|
|
98445
|
+
url?: string | null | undefined;
|
|
98446
|
+
credentialId?: string | undefined;
|
|
98447
|
+
relativePath?: string | null | undefined;
|
|
98440
98448
|
} | undefined;
|
|
98441
98449
|
destinationGitlab?: {
|
|
98442
98450
|
branch: string;
|
|
98443
|
-
connectionId: string;
|
|
98444
|
-
relativePath: string;
|
|
98445
98451
|
projectId: string;
|
|
98452
|
+
url?: string | null | undefined;
|
|
98453
|
+
credentialId?: string | undefined;
|
|
98454
|
+
relativePath?: string | null | undefined;
|
|
98446
98455
|
} | undefined;
|
|
98447
98456
|
destinationBitbucket?: {
|
|
98448
98457
|
branch: string;
|
|
98449
|
-
connectionId: string;
|
|
98450
|
-
relativePath: string;
|
|
98451
98458
|
workspaceSlug: string;
|
|
98452
98459
|
projectKey: string;
|
|
98453
98460
|
repoSlug: string;
|
|
98461
|
+
credentialId?: string | undefined;
|
|
98462
|
+
relativePath?: string | null | undefined;
|
|
98454
98463
|
} | undefined;
|
|
98455
98464
|
}>;
|
|
98456
98465
|
type ExportDestinationsMap = z.infer<typeof ExportDestinationsMap>;
|
|
98457
98466
|
|
|
98458
|
-
declare const ExportJobDestinationType: z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>;
|
|
98467
|
+
declare const ExportJobDestinationType: z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab", "bitbucket"]>;
|
|
98459
98468
|
type ExportJobDestinationType = z.infer<typeof ExportJobDestinationType>;
|
|
98460
98469
|
declare const ExportJobStatus: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
98461
98470
|
type ExportJobStatus = z.infer<typeof ExportJobStatus>;
|
|
@@ -98623,83 +98632,86 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98623
98632
|
}>>;
|
|
98624
98633
|
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
98625
98634
|
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
98635
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98626
98636
|
url: z.ZodString;
|
|
98627
98637
|
branch: z.ZodString;
|
|
98628
|
-
|
|
98629
|
-
connectionId: z.ZodString;
|
|
98630
|
-
relativePath: z.ZodString;
|
|
98638
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98631
98639
|
}, "strip", z.ZodTypeAny, {
|
|
98632
98640
|
url: string;
|
|
98633
|
-
userId: string;
|
|
98634
98641
|
branch: string;
|
|
98635
|
-
|
|
98636
|
-
relativePath
|
|
98642
|
+
credentialId?: string | undefined;
|
|
98643
|
+
relativePath?: string | undefined;
|
|
98637
98644
|
}, {
|
|
98638
98645
|
url: string;
|
|
98639
|
-
userId: string;
|
|
98640
98646
|
branch: string;
|
|
98641
|
-
|
|
98642
|
-
relativePath
|
|
98647
|
+
credentialId?: string | undefined;
|
|
98648
|
+
relativePath?: string | null | undefined;
|
|
98643
98649
|
}>>;
|
|
98644
98650
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
98645
|
-
|
|
98651
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98646
98652
|
organizationId: z.ZodString;
|
|
98647
98653
|
projectId: z.ZodString;
|
|
98648
98654
|
repositoryId: z.ZodString;
|
|
98649
98655
|
branch: z.ZodString;
|
|
98650
|
-
relativePath: z.
|
|
98656
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98657
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98651
98658
|
}, "strip", z.ZodTypeAny, {
|
|
98652
98659
|
branch: string;
|
|
98653
|
-
connectionId: string;
|
|
98654
|
-
relativePath: string;
|
|
98655
98660
|
organizationId: string;
|
|
98656
98661
|
projectId: string;
|
|
98657
98662
|
repositoryId: string;
|
|
98663
|
+
url?: string | undefined;
|
|
98664
|
+
credentialId?: string | undefined;
|
|
98665
|
+
relativePath?: string | undefined;
|
|
98658
98666
|
}, {
|
|
98659
98667
|
branch: string;
|
|
98660
|
-
connectionId: string;
|
|
98661
|
-
relativePath: string;
|
|
98662
98668
|
organizationId: string;
|
|
98663
98669
|
projectId: string;
|
|
98664
98670
|
repositoryId: string;
|
|
98671
|
+
url?: string | null | undefined;
|
|
98672
|
+
credentialId?: string | undefined;
|
|
98673
|
+
relativePath?: string | null | undefined;
|
|
98665
98674
|
}>>;
|
|
98666
98675
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
98667
|
-
|
|
98676
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98668
98677
|
projectId: z.ZodString;
|
|
98669
98678
|
branch: z.ZodString;
|
|
98670
|
-
relativePath: z.
|
|
98679
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98680
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98671
98681
|
}, "strip", z.ZodTypeAny, {
|
|
98672
98682
|
branch: string;
|
|
98673
|
-
connectionId: string;
|
|
98674
|
-
relativePath: string;
|
|
98675
98683
|
projectId: string;
|
|
98684
|
+
url?: string | undefined;
|
|
98685
|
+
credentialId?: string | undefined;
|
|
98686
|
+
relativePath?: string | undefined;
|
|
98676
98687
|
}, {
|
|
98677
98688
|
branch: string;
|
|
98678
|
-
connectionId: string;
|
|
98679
|
-
relativePath: string;
|
|
98680
98689
|
projectId: string;
|
|
98690
|
+
url?: string | null | undefined;
|
|
98691
|
+
credentialId?: string | undefined;
|
|
98692
|
+
relativePath?: string | null | undefined;
|
|
98681
98693
|
}>>;
|
|
98682
98694
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
98683
|
-
|
|
98695
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
98684
98696
|
workspaceSlug: z.ZodString;
|
|
98685
98697
|
projectKey: z.ZodString;
|
|
98686
98698
|
repoSlug: z.ZodString;
|
|
98687
98699
|
branch: z.ZodString;
|
|
98688
|
-
relativePath: z.
|
|
98700
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98689
98701
|
}, "strip", z.ZodTypeAny, {
|
|
98690
98702
|
branch: string;
|
|
98691
|
-
connectionId: string;
|
|
98692
|
-
relativePath: string;
|
|
98693
98703
|
workspaceSlug: string;
|
|
98694
98704
|
projectKey: string;
|
|
98695
98705
|
repoSlug: string;
|
|
98706
|
+
credentialId?: string | undefined;
|
|
98707
|
+
relativePath?: string | undefined;
|
|
98696
98708
|
}, {
|
|
98697
98709
|
branch: string;
|
|
98698
|
-
connectionId: string;
|
|
98699
|
-
relativePath: string;
|
|
98700
98710
|
workspaceSlug: string;
|
|
98701
98711
|
projectKey: string;
|
|
98702
98712
|
repoSlug: string;
|
|
98713
|
+
credentialId?: string | undefined;
|
|
98714
|
+
relativePath?: string | null | undefined;
|
|
98703
98715
|
}>>;
|
|
98704
98716
|
id: z.ZodString;
|
|
98705
98717
|
createdAt: z.ZodDate;
|
|
@@ -98832,32 +98844,33 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98832
98844
|
destinationS3?: {} | undefined;
|
|
98833
98845
|
destinationGithub?: {
|
|
98834
98846
|
url: string;
|
|
98835
|
-
userId: string;
|
|
98836
98847
|
branch: string;
|
|
98837
|
-
|
|
98838
|
-
relativePath
|
|
98848
|
+
credentialId?: string | undefined;
|
|
98849
|
+
relativePath?: string | undefined;
|
|
98839
98850
|
} | undefined;
|
|
98840
98851
|
destinationAzure?: {
|
|
98841
98852
|
branch: string;
|
|
98842
|
-
connectionId: string;
|
|
98843
|
-
relativePath: string;
|
|
98844
98853
|
organizationId: string;
|
|
98845
98854
|
projectId: string;
|
|
98846
98855
|
repositoryId: string;
|
|
98856
|
+
url?: string | undefined;
|
|
98857
|
+
credentialId?: string | undefined;
|
|
98858
|
+
relativePath?: string | undefined;
|
|
98847
98859
|
} | undefined;
|
|
98848
98860
|
destinationGitlab?: {
|
|
98849
98861
|
branch: string;
|
|
98850
|
-
connectionId: string;
|
|
98851
|
-
relativePath: string;
|
|
98852
98862
|
projectId: string;
|
|
98863
|
+
url?: string | undefined;
|
|
98864
|
+
credentialId?: string | undefined;
|
|
98865
|
+
relativePath?: string | undefined;
|
|
98853
98866
|
} | undefined;
|
|
98854
98867
|
destinationBitbucket?: {
|
|
98855
98868
|
branch: string;
|
|
98856
|
-
connectionId: string;
|
|
98857
|
-
relativePath: string;
|
|
98858
98869
|
workspaceSlug: string;
|
|
98859
98870
|
projectKey: string;
|
|
98860
98871
|
repoSlug: string;
|
|
98872
|
+
credentialId?: string | undefined;
|
|
98873
|
+
relativePath?: string | undefined;
|
|
98861
98874
|
} | undefined;
|
|
98862
98875
|
finishedAt?: Date | undefined;
|
|
98863
98876
|
scheduleId?: string | null | undefined;
|
|
@@ -98904,32 +98917,33 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98904
98917
|
destinationS3?: {} | undefined;
|
|
98905
98918
|
destinationGithub?: {
|
|
98906
98919
|
url: string;
|
|
98907
|
-
userId: string;
|
|
98908
98920
|
branch: string;
|
|
98909
|
-
|
|
98910
|
-
relativePath
|
|
98921
|
+
credentialId?: string | undefined;
|
|
98922
|
+
relativePath?: string | null | undefined;
|
|
98911
98923
|
} | undefined;
|
|
98912
98924
|
destinationAzure?: {
|
|
98913
98925
|
branch: string;
|
|
98914
|
-
connectionId: string;
|
|
98915
|
-
relativePath: string;
|
|
98916
98926
|
organizationId: string;
|
|
98917
98927
|
projectId: string;
|
|
98918
98928
|
repositoryId: string;
|
|
98929
|
+
url?: string | null | undefined;
|
|
98930
|
+
credentialId?: string | undefined;
|
|
98931
|
+
relativePath?: string | null | undefined;
|
|
98919
98932
|
} | undefined;
|
|
98920
98933
|
destinationGitlab?: {
|
|
98921
98934
|
branch: string;
|
|
98922
|
-
connectionId: string;
|
|
98923
|
-
relativePath: string;
|
|
98924
98935
|
projectId: string;
|
|
98936
|
+
url?: string | null | undefined;
|
|
98937
|
+
credentialId?: string | undefined;
|
|
98938
|
+
relativePath?: string | null | undefined;
|
|
98925
98939
|
} | undefined;
|
|
98926
98940
|
destinationBitbucket?: {
|
|
98927
98941
|
branch: string;
|
|
98928
|
-
connectionId: string;
|
|
98929
|
-
relativePath: string;
|
|
98930
98942
|
workspaceSlug: string;
|
|
98931
98943
|
projectKey: string;
|
|
98932
98944
|
repoSlug: string;
|
|
98945
|
+
credentialId?: string | undefined;
|
|
98946
|
+
relativePath?: string | null | undefined;
|
|
98933
98947
|
} | undefined;
|
|
98934
98948
|
finishedAt?: Date | undefined;
|
|
98935
98949
|
scheduleId?: string | null | undefined;
|
|
@@ -98971,7 +98985,7 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
98971
98985
|
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98972
98986
|
exporterId: z.ZodOptional<z.ZodString>;
|
|
98973
98987
|
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
98974
|
-
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
|
|
98988
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab", "bitbucket"]>, "many">>;
|
|
98975
98989
|
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
98976
98990
|
}, "strip", z.ZodTypeAny, {
|
|
98977
98991
|
status?: "InProgress" | "Timeout" | "Success" | "Failed" | undefined;
|
|
@@ -98982,7 +98996,7 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
98982
98996
|
themeId?: string | undefined;
|
|
98983
98997
|
exporterId?: string | undefined;
|
|
98984
98998
|
scheduleId?: string | null | undefined;
|
|
98985
|
-
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
98999
|
+
destinations?: ("github" | "azure" | "gitlab" | "bitbucket" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
98986
99000
|
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
98987
99001
|
}, {
|
|
98988
99002
|
status?: "InProgress" | "Timeout" | "Success" | "Failed" | undefined;
|
|
@@ -98993,202 +99007,11 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
98993
99007
|
themeId?: string | undefined;
|
|
98994
99008
|
exporterId?: string | undefined;
|
|
98995
99009
|
scheduleId?: string | null | undefined;
|
|
98996
|
-
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
99010
|
+
destinations?: ("github" | "azure" | "gitlab" | "bitbucket" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
98997
99011
|
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
98998
99012
|
}>;
|
|
98999
99013
|
type ExportJobFindByFilter = z.infer<typeof ExportJobFindByFilter>;
|
|
99000
99014
|
|
|
99001
|
-
declare const ExporterScheduleEventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
99002
|
-
type ExporterScheduleEventType = z.infer<typeof ExporterScheduleEventType>;
|
|
99003
|
-
declare const ExporterSchedule: z.ZodObject<{
|
|
99004
|
-
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
99005
|
-
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
99006
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99007
|
-
}, "strip", z.ZodTypeAny, {
|
|
99008
|
-
environment: "Live" | "Preview";
|
|
99009
|
-
}, {
|
|
99010
|
-
environment: "Live" | "Preview";
|
|
99011
|
-
}>>;
|
|
99012
|
-
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
99013
|
-
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
99014
|
-
url: z.ZodString;
|
|
99015
|
-
branch: z.ZodString;
|
|
99016
|
-
userId: z.ZodString;
|
|
99017
|
-
connectionId: z.ZodString;
|
|
99018
|
-
relativePath: z.ZodString;
|
|
99019
|
-
}, "strip", z.ZodTypeAny, {
|
|
99020
|
-
url: string;
|
|
99021
|
-
userId: string;
|
|
99022
|
-
branch: string;
|
|
99023
|
-
connectionId: string;
|
|
99024
|
-
relativePath: string;
|
|
99025
|
-
}, {
|
|
99026
|
-
url: string;
|
|
99027
|
-
userId: string;
|
|
99028
|
-
branch: string;
|
|
99029
|
-
connectionId: string;
|
|
99030
|
-
relativePath: string;
|
|
99031
|
-
}>>;
|
|
99032
|
-
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
99033
|
-
connectionId: z.ZodString;
|
|
99034
|
-
organizationId: z.ZodString;
|
|
99035
|
-
projectId: z.ZodString;
|
|
99036
|
-
repositoryId: z.ZodString;
|
|
99037
|
-
branch: z.ZodString;
|
|
99038
|
-
relativePath: z.ZodString;
|
|
99039
|
-
}, "strip", z.ZodTypeAny, {
|
|
99040
|
-
branch: string;
|
|
99041
|
-
connectionId: string;
|
|
99042
|
-
relativePath: string;
|
|
99043
|
-
organizationId: string;
|
|
99044
|
-
projectId: string;
|
|
99045
|
-
repositoryId: string;
|
|
99046
|
-
}, {
|
|
99047
|
-
branch: string;
|
|
99048
|
-
connectionId: string;
|
|
99049
|
-
relativePath: string;
|
|
99050
|
-
organizationId: string;
|
|
99051
|
-
projectId: string;
|
|
99052
|
-
repositoryId: string;
|
|
99053
|
-
}>>;
|
|
99054
|
-
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
99055
|
-
connectionId: z.ZodString;
|
|
99056
|
-
projectId: z.ZodString;
|
|
99057
|
-
branch: z.ZodString;
|
|
99058
|
-
relativePath: z.ZodString;
|
|
99059
|
-
}, "strip", z.ZodTypeAny, {
|
|
99060
|
-
branch: string;
|
|
99061
|
-
connectionId: string;
|
|
99062
|
-
relativePath: string;
|
|
99063
|
-
projectId: string;
|
|
99064
|
-
}, {
|
|
99065
|
-
branch: string;
|
|
99066
|
-
connectionId: string;
|
|
99067
|
-
relativePath: string;
|
|
99068
|
-
projectId: string;
|
|
99069
|
-
}>>;
|
|
99070
|
-
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
99071
|
-
connectionId: z.ZodString;
|
|
99072
|
-
workspaceSlug: z.ZodString;
|
|
99073
|
-
projectKey: z.ZodString;
|
|
99074
|
-
repoSlug: z.ZodString;
|
|
99075
|
-
branch: z.ZodString;
|
|
99076
|
-
relativePath: z.ZodString;
|
|
99077
|
-
}, "strip", z.ZodTypeAny, {
|
|
99078
|
-
branch: string;
|
|
99079
|
-
connectionId: string;
|
|
99080
|
-
relativePath: string;
|
|
99081
|
-
workspaceSlug: string;
|
|
99082
|
-
projectKey: string;
|
|
99083
|
-
repoSlug: string;
|
|
99084
|
-
}, {
|
|
99085
|
-
branch: string;
|
|
99086
|
-
connectionId: string;
|
|
99087
|
-
relativePath: string;
|
|
99088
|
-
workspaceSlug: string;
|
|
99089
|
-
projectKey: string;
|
|
99090
|
-
repoSlug: string;
|
|
99091
|
-
}>>;
|
|
99092
|
-
id: z.ZodString;
|
|
99093
|
-
name: z.ZodString;
|
|
99094
|
-
eventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
99095
|
-
isEnabled: z.ZodBoolean;
|
|
99096
|
-
workspaceId: z.ZodString;
|
|
99097
|
-
designSystemId: z.ZodString;
|
|
99098
|
-
exporterId: z.ZodString;
|
|
99099
|
-
brandId: z.ZodOptional<z.ZodString>;
|
|
99100
|
-
themeId: z.ZodOptional<z.ZodString>;
|
|
99101
|
-
}, "strip", z.ZodTypeAny, {
|
|
99102
|
-
id: string;
|
|
99103
|
-
name: string;
|
|
99104
|
-
designSystemId: string;
|
|
99105
|
-
isEnabled: boolean;
|
|
99106
|
-
workspaceId: string;
|
|
99107
|
-
exporterId: string;
|
|
99108
|
-
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
99109
|
-
brandId?: string | undefined;
|
|
99110
|
-
themeId?: string | undefined;
|
|
99111
|
-
webhookUrl?: string | undefined;
|
|
99112
|
-
destinationSnDocs?: {
|
|
99113
|
-
environment: "Live" | "Preview";
|
|
99114
|
-
} | undefined;
|
|
99115
|
-
destinationS3?: {} | undefined;
|
|
99116
|
-
destinationGithub?: {
|
|
99117
|
-
url: string;
|
|
99118
|
-
userId: string;
|
|
99119
|
-
branch: string;
|
|
99120
|
-
connectionId: string;
|
|
99121
|
-
relativePath: string;
|
|
99122
|
-
} | undefined;
|
|
99123
|
-
destinationAzure?: {
|
|
99124
|
-
branch: string;
|
|
99125
|
-
connectionId: string;
|
|
99126
|
-
relativePath: string;
|
|
99127
|
-
organizationId: string;
|
|
99128
|
-
projectId: string;
|
|
99129
|
-
repositoryId: string;
|
|
99130
|
-
} | undefined;
|
|
99131
|
-
destinationGitlab?: {
|
|
99132
|
-
branch: string;
|
|
99133
|
-
connectionId: string;
|
|
99134
|
-
relativePath: string;
|
|
99135
|
-
projectId: string;
|
|
99136
|
-
} | undefined;
|
|
99137
|
-
destinationBitbucket?: {
|
|
99138
|
-
branch: string;
|
|
99139
|
-
connectionId: string;
|
|
99140
|
-
relativePath: string;
|
|
99141
|
-
workspaceSlug: string;
|
|
99142
|
-
projectKey: string;
|
|
99143
|
-
repoSlug: string;
|
|
99144
|
-
} | undefined;
|
|
99145
|
-
}, {
|
|
99146
|
-
id: string;
|
|
99147
|
-
name: string;
|
|
99148
|
-
designSystemId: string;
|
|
99149
|
-
isEnabled: boolean;
|
|
99150
|
-
workspaceId: string;
|
|
99151
|
-
exporterId: string;
|
|
99152
|
-
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
99153
|
-
brandId?: string | undefined;
|
|
99154
|
-
themeId?: string | undefined;
|
|
99155
|
-
webhookUrl?: string | undefined;
|
|
99156
|
-
destinationSnDocs?: {
|
|
99157
|
-
environment: "Live" | "Preview";
|
|
99158
|
-
} | undefined;
|
|
99159
|
-
destinationS3?: {} | undefined;
|
|
99160
|
-
destinationGithub?: {
|
|
99161
|
-
url: string;
|
|
99162
|
-
userId: string;
|
|
99163
|
-
branch: string;
|
|
99164
|
-
connectionId: string;
|
|
99165
|
-
relativePath: string;
|
|
99166
|
-
} | undefined;
|
|
99167
|
-
destinationAzure?: {
|
|
99168
|
-
branch: string;
|
|
99169
|
-
connectionId: string;
|
|
99170
|
-
relativePath: string;
|
|
99171
|
-
organizationId: string;
|
|
99172
|
-
projectId: string;
|
|
99173
|
-
repositoryId: string;
|
|
99174
|
-
} | undefined;
|
|
99175
|
-
destinationGitlab?: {
|
|
99176
|
-
branch: string;
|
|
99177
|
-
connectionId: string;
|
|
99178
|
-
relativePath: string;
|
|
99179
|
-
projectId: string;
|
|
99180
|
-
} | undefined;
|
|
99181
|
-
destinationBitbucket?: {
|
|
99182
|
-
branch: string;
|
|
99183
|
-
connectionId: string;
|
|
99184
|
-
relativePath: string;
|
|
99185
|
-
workspaceSlug: string;
|
|
99186
|
-
projectKey: string;
|
|
99187
|
-
repoSlug: string;
|
|
99188
|
-
} | undefined;
|
|
99189
|
-
}>;
|
|
99190
|
-
type ExporterSchedule = z.infer<typeof ExporterSchedule>;
|
|
99191
|
-
|
|
99192
99015
|
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
99193
99016
|
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
99194
99017
|
|
|
@@ -99226,7 +99049,255 @@ declare const ExporterSource: z.ZodEnum<["git", "upload"]>;
|
|
|
99226
99049
|
type ExporterSource = z.infer<typeof ExporterSource>;
|
|
99227
99050
|
declare const ExporterTag: z.ZodString;
|
|
99228
99051
|
type ExporterTag = z.infer<typeof ExporterTag>;
|
|
99229
|
-
declare const
|
|
99052
|
+
declare const ExporterPulsarDetails: z.ZodObject<{
|
|
99053
|
+
description: z.ZodString;
|
|
99054
|
+
version: z.ZodString;
|
|
99055
|
+
routingVersion: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99056
|
+
author: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99057
|
+
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99058
|
+
homepage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99059
|
+
readme: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99060
|
+
tags: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>>;
|
|
99061
|
+
packageId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99062
|
+
iconURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99063
|
+
configurationProperties: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
99064
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99065
|
+
category: string;
|
|
99066
|
+
key: string;
|
|
99067
|
+
label: string;
|
|
99068
|
+
values?: string[] | null | undefined;
|
|
99069
|
+
description?: string | null | undefined;
|
|
99070
|
+
default?: string | number | boolean | null | undefined;
|
|
99071
|
+
inputType?: "code" | "plain" | undefined;
|
|
99072
|
+
isMultiline?: boolean | null | undefined;
|
|
99073
|
+
}[], z.ZodTypeDef, {
|
|
99074
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99075
|
+
category: string;
|
|
99076
|
+
key: string;
|
|
99077
|
+
label: string;
|
|
99078
|
+
values?: string[] | null | undefined;
|
|
99079
|
+
description?: string | null | undefined;
|
|
99080
|
+
default?: string | number | boolean | null | undefined;
|
|
99081
|
+
inputType?: "code" | "plain" | undefined;
|
|
99082
|
+
isMultiline?: boolean | null | undefined;
|
|
99083
|
+
}[]>>>, {
|
|
99084
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99085
|
+
category: string;
|
|
99086
|
+
key: string;
|
|
99087
|
+
label: string;
|
|
99088
|
+
values?: string[] | null | undefined;
|
|
99089
|
+
description?: string | null | undefined;
|
|
99090
|
+
default?: string | number | boolean | null | undefined;
|
|
99091
|
+
inputType?: "code" | "plain" | undefined;
|
|
99092
|
+
isMultiline?: boolean | null | undefined;
|
|
99093
|
+
}[] | undefined, {
|
|
99094
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99095
|
+
category: string;
|
|
99096
|
+
key: string;
|
|
99097
|
+
label: string;
|
|
99098
|
+
values?: string[] | null | undefined;
|
|
99099
|
+
description?: string | null | undefined;
|
|
99100
|
+
default?: string | number | boolean | null | undefined;
|
|
99101
|
+
inputType?: "code" | "plain" | undefined;
|
|
99102
|
+
isMultiline?: boolean | null | undefined;
|
|
99103
|
+
}[] | null | undefined>>;
|
|
99104
|
+
customBlocks: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
99105
|
+
properties: {
|
|
99106
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99107
|
+
key: string;
|
|
99108
|
+
label: string;
|
|
99109
|
+
values?: string[] | null | undefined;
|
|
99110
|
+
description?: string | null | undefined;
|
|
99111
|
+
default?: string | number | boolean | null | undefined;
|
|
99112
|
+
inputType?: "code" | "plain" | undefined;
|
|
99113
|
+
isMultiline?: boolean | null | undefined;
|
|
99114
|
+
}[];
|
|
99115
|
+
key: string;
|
|
99116
|
+
description?: string | undefined;
|
|
99117
|
+
category?: string | undefined;
|
|
99118
|
+
title?: string | undefined;
|
|
99119
|
+
iconURL?: string | undefined;
|
|
99120
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
99121
|
+
}[], z.ZodTypeDef, {
|
|
99122
|
+
key: string;
|
|
99123
|
+
description?: string | null | undefined;
|
|
99124
|
+
category?: string | null | undefined;
|
|
99125
|
+
properties?: {
|
|
99126
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99127
|
+
key: string;
|
|
99128
|
+
label: string;
|
|
99129
|
+
values?: string[] | null | undefined;
|
|
99130
|
+
description?: string | null | undefined;
|
|
99131
|
+
default?: string | number | boolean | null | undefined;
|
|
99132
|
+
inputType?: "code" | "plain" | undefined;
|
|
99133
|
+
isMultiline?: boolean | null | undefined;
|
|
99134
|
+
}[] | null | undefined;
|
|
99135
|
+
title?: string | null | undefined;
|
|
99136
|
+
iconURL?: string | null | undefined;
|
|
99137
|
+
mode?: "array" | "block" | null | undefined;
|
|
99138
|
+
}[]>>>, {
|
|
99139
|
+
properties: {
|
|
99140
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99141
|
+
key: string;
|
|
99142
|
+
label: string;
|
|
99143
|
+
values?: string[] | null | undefined;
|
|
99144
|
+
description?: string | null | undefined;
|
|
99145
|
+
default?: string | number | boolean | null | undefined;
|
|
99146
|
+
inputType?: "code" | "plain" | undefined;
|
|
99147
|
+
isMultiline?: boolean | null | undefined;
|
|
99148
|
+
}[];
|
|
99149
|
+
key: string;
|
|
99150
|
+
description?: string | undefined;
|
|
99151
|
+
category?: string | undefined;
|
|
99152
|
+
title?: string | undefined;
|
|
99153
|
+
iconURL?: string | undefined;
|
|
99154
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
99155
|
+
}[] | undefined, {
|
|
99156
|
+
key: string;
|
|
99157
|
+
description?: string | null | undefined;
|
|
99158
|
+
category?: string | null | undefined;
|
|
99159
|
+
properties?: {
|
|
99160
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99161
|
+
key: string;
|
|
99162
|
+
label: string;
|
|
99163
|
+
values?: string[] | null | undefined;
|
|
99164
|
+
description?: string | null | undefined;
|
|
99165
|
+
default?: string | number | boolean | null | undefined;
|
|
99166
|
+
inputType?: "code" | "plain" | undefined;
|
|
99167
|
+
isMultiline?: boolean | null | undefined;
|
|
99168
|
+
}[] | null | undefined;
|
|
99169
|
+
title?: string | null | undefined;
|
|
99170
|
+
iconURL?: string | null | undefined;
|
|
99171
|
+
mode?: "array" | "block" | null | undefined;
|
|
99172
|
+
}[] | null | undefined>>;
|
|
99173
|
+
blockVariants: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
|
|
99174
|
+
name: string;
|
|
99175
|
+
key: string;
|
|
99176
|
+
description?: string | undefined;
|
|
99177
|
+
isDefault?: boolean | undefined;
|
|
99178
|
+
thumbnailURL?: string | undefined;
|
|
99179
|
+
}[]>, z.ZodTypeDef, Record<string, {
|
|
99180
|
+
name: string;
|
|
99181
|
+
key: string;
|
|
99182
|
+
description?: string | null | undefined;
|
|
99183
|
+
isDefault?: boolean | null | undefined;
|
|
99184
|
+
thumbnailURL?: string | null | undefined;
|
|
99185
|
+
}[]>>>>, Record<string, {
|
|
99186
|
+
name: string;
|
|
99187
|
+
key: string;
|
|
99188
|
+
description?: string | undefined;
|
|
99189
|
+
isDefault?: boolean | undefined;
|
|
99190
|
+
thumbnailURL?: string | undefined;
|
|
99191
|
+
}[]> | undefined, Record<string, {
|
|
99192
|
+
name: string;
|
|
99193
|
+
key: string;
|
|
99194
|
+
description?: string | null | undefined;
|
|
99195
|
+
isDefault?: boolean | null | undefined;
|
|
99196
|
+
thumbnailURL?: string | null | undefined;
|
|
99197
|
+
}[]> | null | undefined>>;
|
|
99198
|
+
usesBrands: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
99199
|
+
usesThemes: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
99200
|
+
}, "strip", z.ZodTypeAny, {
|
|
99201
|
+
description: string;
|
|
99202
|
+
version: string;
|
|
99203
|
+
tags: string[];
|
|
99204
|
+
configurationProperties: {
|
|
99205
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99206
|
+
category: string;
|
|
99207
|
+
key: string;
|
|
99208
|
+
label: string;
|
|
99209
|
+
values?: string[] | null | undefined;
|
|
99210
|
+
description?: string | null | undefined;
|
|
99211
|
+
default?: string | number | boolean | null | undefined;
|
|
99212
|
+
inputType?: "code" | "plain" | undefined;
|
|
99213
|
+
isMultiline?: boolean | null | undefined;
|
|
99214
|
+
}[];
|
|
99215
|
+
customBlocks: {
|
|
99216
|
+
properties: {
|
|
99217
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99218
|
+
key: string;
|
|
99219
|
+
label: string;
|
|
99220
|
+
values?: string[] | null | undefined;
|
|
99221
|
+
description?: string | null | undefined;
|
|
99222
|
+
default?: string | number | boolean | null | undefined;
|
|
99223
|
+
inputType?: "code" | "plain" | undefined;
|
|
99224
|
+
isMultiline?: boolean | null | undefined;
|
|
99225
|
+
}[];
|
|
99226
|
+
key: string;
|
|
99227
|
+
description?: string | undefined;
|
|
99228
|
+
category?: string | undefined;
|
|
99229
|
+
title?: string | undefined;
|
|
99230
|
+
iconURL?: string | undefined;
|
|
99231
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
99232
|
+
}[];
|
|
99233
|
+
blockVariants: Record<string, {
|
|
99234
|
+
name: string;
|
|
99235
|
+
key: string;
|
|
99236
|
+
description?: string | undefined;
|
|
99237
|
+
isDefault?: boolean | undefined;
|
|
99238
|
+
thumbnailURL?: string | undefined;
|
|
99239
|
+
}[]>;
|
|
99240
|
+
usesBrands: boolean;
|
|
99241
|
+
usesThemes: boolean;
|
|
99242
|
+
homepage?: string | undefined;
|
|
99243
|
+
organization?: string | undefined;
|
|
99244
|
+
readme?: string | undefined;
|
|
99245
|
+
packageId?: string | undefined;
|
|
99246
|
+
routingVersion?: string | undefined;
|
|
99247
|
+
iconURL?: string | undefined;
|
|
99248
|
+
author?: string | undefined;
|
|
99249
|
+
}, {
|
|
99250
|
+
description: string;
|
|
99251
|
+
version: string;
|
|
99252
|
+
homepage?: string | null | undefined;
|
|
99253
|
+
organization?: string | null | undefined;
|
|
99254
|
+
readme?: string | null | undefined;
|
|
99255
|
+
packageId?: string | null | undefined;
|
|
99256
|
+
routingVersion?: string | null | undefined;
|
|
99257
|
+
iconURL?: string | null | undefined;
|
|
99258
|
+
author?: string | null | undefined;
|
|
99259
|
+
tags?: string[] | null | undefined;
|
|
99260
|
+
configurationProperties?: {
|
|
99261
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99262
|
+
category: string;
|
|
99263
|
+
key: string;
|
|
99264
|
+
label: string;
|
|
99265
|
+
values?: string[] | null | undefined;
|
|
99266
|
+
description?: string | null | undefined;
|
|
99267
|
+
default?: string | number | boolean | null | undefined;
|
|
99268
|
+
inputType?: "code" | "plain" | undefined;
|
|
99269
|
+
isMultiline?: boolean | null | undefined;
|
|
99270
|
+
}[] | null | undefined;
|
|
99271
|
+
customBlocks?: {
|
|
99272
|
+
key: string;
|
|
99273
|
+
description?: string | null | undefined;
|
|
99274
|
+
category?: string | null | undefined;
|
|
99275
|
+
properties?: {
|
|
99276
|
+
type: "string" | "number" | "boolean" | "image" | "color" | "tokenType" | "enum" | "typography" | "component" | "componentProperties" | "tokenProperties";
|
|
99277
|
+
key: string;
|
|
99278
|
+
label: string;
|
|
99279
|
+
values?: string[] | null | undefined;
|
|
99280
|
+
description?: string | null | undefined;
|
|
99281
|
+
default?: string | number | boolean | null | undefined;
|
|
99282
|
+
inputType?: "code" | "plain" | undefined;
|
|
99283
|
+
isMultiline?: boolean | null | undefined;
|
|
99284
|
+
}[] | null | undefined;
|
|
99285
|
+
title?: string | null | undefined;
|
|
99286
|
+
iconURL?: string | null | undefined;
|
|
99287
|
+
mode?: "array" | "block" | null | undefined;
|
|
99288
|
+
}[] | null | undefined;
|
|
99289
|
+
blockVariants?: Record<string, {
|
|
99290
|
+
name: string;
|
|
99291
|
+
key: string;
|
|
99292
|
+
description?: string | null | undefined;
|
|
99293
|
+
isDefault?: boolean | null | undefined;
|
|
99294
|
+
thumbnailURL?: string | null | undefined;
|
|
99295
|
+
}[]> | null | undefined;
|
|
99296
|
+
usesBrands?: boolean | null | undefined;
|
|
99297
|
+
usesThemes?: boolean | null | undefined;
|
|
99298
|
+
}>;
|
|
99299
|
+
type ExporterPulsarDetails = z.infer<typeof ExporterPulsarDetails>;
|
|
99300
|
+
declare const ExporterDetails: z.ZodObject<z.objectUtil.extendShape<{
|
|
99230
99301
|
description: z.ZodString;
|
|
99231
99302
|
version: z.ZodString;
|
|
99232
99303
|
routingVersion: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -99374,12 +99445,13 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
99374
99445
|
}[]> | null | undefined>>;
|
|
99375
99446
|
usesBrands: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
99376
99447
|
usesThemes: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
99448
|
+
}, {
|
|
99377
99449
|
source: z.ZodEnum<["git", "upload"]>;
|
|
99378
99450
|
gitProvider: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<GitProviderNames, z.ZodTypeDef, GitProviderNames>>>, NonNullable<GitProviderNames> | undefined, GitProviderNames | null | undefined>;
|
|
99379
99451
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99380
99452
|
gitBranch: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99381
99453
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99382
|
-
}
|
|
99454
|
+
}>, "strip", z.ZodTypeAny, {
|
|
99383
99455
|
description: string;
|
|
99384
99456
|
source: "upload" | "git";
|
|
99385
99457
|
version: string;
|
|
@@ -99494,7 +99566,7 @@ declare const Exporter: z.ZodObject<{
|
|
|
99494
99566
|
createdAt: z.ZodDate;
|
|
99495
99567
|
name: z.ZodString;
|
|
99496
99568
|
isPrivate: z.ZodBoolean;
|
|
99497
|
-
details: z.ZodObject<{
|
|
99569
|
+
details: z.ZodObject<z.objectUtil.extendShape<{
|
|
99498
99570
|
description: z.ZodString;
|
|
99499
99571
|
version: z.ZodString;
|
|
99500
99572
|
routingVersion: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -99642,12 +99714,13 @@ declare const Exporter: z.ZodObject<{
|
|
|
99642
99714
|
}[]> | null | undefined>>;
|
|
99643
99715
|
usesBrands: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
99644
99716
|
usesThemes: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>>;
|
|
99717
|
+
}, {
|
|
99645
99718
|
source: z.ZodEnum<["git", "upload"]>;
|
|
99646
99719
|
gitProvider: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<GitProviderNames, z.ZodTypeDef, GitProviderNames>>>, NonNullable<GitProviderNames> | undefined, GitProviderNames | null | undefined>;
|
|
99647
99720
|
gitUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99648
99721
|
gitBranch: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99649
99722
|
gitDirectory: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99650
|
-
}
|
|
99723
|
+
}>, "strip", z.ZodTypeAny, {
|
|
99651
99724
|
description: string;
|
|
99652
99725
|
source: "upload" | "git";
|
|
99653
99726
|
version: string;
|
|
@@ -99885,6 +99958,208 @@ declare const Exporter: z.ZodObject<{
|
|
|
99885
99958
|
}>;
|
|
99886
99959
|
type Exporter = z.infer<typeof Exporter>;
|
|
99887
99960
|
|
|
99961
|
+
declare const PipelineEventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
99962
|
+
type PipelineEventType = z.infer<typeof PipelineEventType>;
|
|
99963
|
+
declare const PipelineDestinationGitType: z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
99964
|
+
type PipelineDestinationGitType = z.infer<typeof PipelineDestinationGitType>;
|
|
99965
|
+
declare const PipelineDestinationExtraType: z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>;
|
|
99966
|
+
type PipelineDestinationExtraType = z.infer<typeof PipelineDestinationExtraType>;
|
|
99967
|
+
declare const PipelineDestinationType: z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>;
|
|
99968
|
+
type PipelineDestinationType = z.infer<typeof PipelineDestinationType>;
|
|
99969
|
+
declare const Pipeline: z.ZodObject<{
|
|
99970
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
99971
|
+
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
99972
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99973
|
+
}, "strip", z.ZodTypeAny, {
|
|
99974
|
+
environment: "Live" | "Preview";
|
|
99975
|
+
}, {
|
|
99976
|
+
environment: "Live" | "Preview";
|
|
99977
|
+
}>>;
|
|
99978
|
+
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
99979
|
+
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
99980
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
99981
|
+
url: z.ZodString;
|
|
99982
|
+
branch: z.ZodString;
|
|
99983
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99984
|
+
}, "strip", z.ZodTypeAny, {
|
|
99985
|
+
url: string;
|
|
99986
|
+
branch: string;
|
|
99987
|
+
credentialId?: string | undefined;
|
|
99988
|
+
relativePath?: string | undefined;
|
|
99989
|
+
}, {
|
|
99990
|
+
url: string;
|
|
99991
|
+
branch: string;
|
|
99992
|
+
credentialId?: string | undefined;
|
|
99993
|
+
relativePath?: string | null | undefined;
|
|
99994
|
+
}>>;
|
|
99995
|
+
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
99996
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
99997
|
+
organizationId: z.ZodString;
|
|
99998
|
+
projectId: z.ZodString;
|
|
99999
|
+
repositoryId: z.ZodString;
|
|
100000
|
+
branch: z.ZodString;
|
|
100001
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100002
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100003
|
+
}, "strip", z.ZodTypeAny, {
|
|
100004
|
+
branch: string;
|
|
100005
|
+
organizationId: string;
|
|
100006
|
+
projectId: string;
|
|
100007
|
+
repositoryId: string;
|
|
100008
|
+
url?: string | undefined;
|
|
100009
|
+
credentialId?: string | undefined;
|
|
100010
|
+
relativePath?: string | undefined;
|
|
100011
|
+
}, {
|
|
100012
|
+
branch: string;
|
|
100013
|
+
organizationId: string;
|
|
100014
|
+
projectId: string;
|
|
100015
|
+
repositoryId: string;
|
|
100016
|
+
url?: string | null | undefined;
|
|
100017
|
+
credentialId?: string | undefined;
|
|
100018
|
+
relativePath?: string | null | undefined;
|
|
100019
|
+
}>>;
|
|
100020
|
+
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
100021
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
100022
|
+
projectId: z.ZodString;
|
|
100023
|
+
branch: z.ZodString;
|
|
100024
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100025
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100026
|
+
}, "strip", z.ZodTypeAny, {
|
|
100027
|
+
branch: string;
|
|
100028
|
+
projectId: string;
|
|
100029
|
+
url?: string | undefined;
|
|
100030
|
+
credentialId?: string | undefined;
|
|
100031
|
+
relativePath?: string | undefined;
|
|
100032
|
+
}, {
|
|
100033
|
+
branch: string;
|
|
100034
|
+
projectId: string;
|
|
100035
|
+
url?: string | null | undefined;
|
|
100036
|
+
credentialId?: string | undefined;
|
|
100037
|
+
relativePath?: string | null | undefined;
|
|
100038
|
+
}>>;
|
|
100039
|
+
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
100040
|
+
credentialId: z.ZodOptional<z.ZodString>;
|
|
100041
|
+
workspaceSlug: z.ZodString;
|
|
100042
|
+
projectKey: z.ZodString;
|
|
100043
|
+
repoSlug: z.ZodString;
|
|
100044
|
+
branch: z.ZodString;
|
|
100045
|
+
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100046
|
+
}, "strip", z.ZodTypeAny, {
|
|
100047
|
+
branch: string;
|
|
100048
|
+
workspaceSlug: string;
|
|
100049
|
+
projectKey: string;
|
|
100050
|
+
repoSlug: string;
|
|
100051
|
+
credentialId?: string | undefined;
|
|
100052
|
+
relativePath?: string | undefined;
|
|
100053
|
+
}, {
|
|
100054
|
+
branch: string;
|
|
100055
|
+
workspaceSlug: string;
|
|
100056
|
+
projectKey: string;
|
|
100057
|
+
repoSlug: string;
|
|
100058
|
+
credentialId?: string | undefined;
|
|
100059
|
+
relativePath?: string | null | undefined;
|
|
100060
|
+
}>>;
|
|
100061
|
+
id: z.ZodString;
|
|
100062
|
+
name: z.ZodString;
|
|
100063
|
+
eventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
100064
|
+
isEnabled: z.ZodBoolean;
|
|
100065
|
+
workspaceId: z.ZodString;
|
|
100066
|
+
designSystemId: z.ZodString;
|
|
100067
|
+
exporterId: z.ZodString;
|
|
100068
|
+
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
100069
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
100070
|
+
}, "strip", z.ZodTypeAny, {
|
|
100071
|
+
id: string;
|
|
100072
|
+
name: string;
|
|
100073
|
+
designSystemId: string;
|
|
100074
|
+
isEnabled: boolean;
|
|
100075
|
+
workspaceId: string;
|
|
100076
|
+
exporterId: string;
|
|
100077
|
+
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
100078
|
+
brandPersistentId?: string | undefined;
|
|
100079
|
+
themePersistentId?: string | undefined;
|
|
100080
|
+
webhookUrl?: string | undefined;
|
|
100081
|
+
destinationSnDocs?: {
|
|
100082
|
+
environment: "Live" | "Preview";
|
|
100083
|
+
} | undefined;
|
|
100084
|
+
destinationS3?: {} | undefined;
|
|
100085
|
+
destinationGithub?: {
|
|
100086
|
+
url: string;
|
|
100087
|
+
branch: string;
|
|
100088
|
+
credentialId?: string | undefined;
|
|
100089
|
+
relativePath?: string | undefined;
|
|
100090
|
+
} | undefined;
|
|
100091
|
+
destinationAzure?: {
|
|
100092
|
+
branch: string;
|
|
100093
|
+
organizationId: string;
|
|
100094
|
+
projectId: string;
|
|
100095
|
+
repositoryId: string;
|
|
100096
|
+
url?: string | undefined;
|
|
100097
|
+
credentialId?: string | undefined;
|
|
100098
|
+
relativePath?: string | undefined;
|
|
100099
|
+
} | undefined;
|
|
100100
|
+
destinationGitlab?: {
|
|
100101
|
+
branch: string;
|
|
100102
|
+
projectId: string;
|
|
100103
|
+
url?: string | undefined;
|
|
100104
|
+
credentialId?: string | undefined;
|
|
100105
|
+
relativePath?: string | undefined;
|
|
100106
|
+
} | undefined;
|
|
100107
|
+
destinationBitbucket?: {
|
|
100108
|
+
branch: string;
|
|
100109
|
+
workspaceSlug: string;
|
|
100110
|
+
projectKey: string;
|
|
100111
|
+
repoSlug: string;
|
|
100112
|
+
credentialId?: string | undefined;
|
|
100113
|
+
relativePath?: string | undefined;
|
|
100114
|
+
} | undefined;
|
|
100115
|
+
}, {
|
|
100116
|
+
id: string;
|
|
100117
|
+
name: string;
|
|
100118
|
+
designSystemId: string;
|
|
100119
|
+
isEnabled: boolean;
|
|
100120
|
+
workspaceId: string;
|
|
100121
|
+
exporterId: string;
|
|
100122
|
+
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated";
|
|
100123
|
+
brandPersistentId?: string | undefined;
|
|
100124
|
+
themePersistentId?: string | undefined;
|
|
100125
|
+
webhookUrl?: string | undefined;
|
|
100126
|
+
destinationSnDocs?: {
|
|
100127
|
+
environment: "Live" | "Preview";
|
|
100128
|
+
} | undefined;
|
|
100129
|
+
destinationS3?: {} | undefined;
|
|
100130
|
+
destinationGithub?: {
|
|
100131
|
+
url: string;
|
|
100132
|
+
branch: string;
|
|
100133
|
+
credentialId?: string | undefined;
|
|
100134
|
+
relativePath?: string | null | undefined;
|
|
100135
|
+
} | undefined;
|
|
100136
|
+
destinationAzure?: {
|
|
100137
|
+
branch: string;
|
|
100138
|
+
organizationId: string;
|
|
100139
|
+
projectId: string;
|
|
100140
|
+
repositoryId: string;
|
|
100141
|
+
url?: string | null | undefined;
|
|
100142
|
+
credentialId?: string | undefined;
|
|
100143
|
+
relativePath?: string | null | undefined;
|
|
100144
|
+
} | undefined;
|
|
100145
|
+
destinationGitlab?: {
|
|
100146
|
+
branch: string;
|
|
100147
|
+
projectId: string;
|
|
100148
|
+
url?: string | null | undefined;
|
|
100149
|
+
credentialId?: string | undefined;
|
|
100150
|
+
relativePath?: string | null | undefined;
|
|
100151
|
+
} | undefined;
|
|
100152
|
+
destinationBitbucket?: {
|
|
100153
|
+
branch: string;
|
|
100154
|
+
workspaceSlug: string;
|
|
100155
|
+
projectKey: string;
|
|
100156
|
+
repoSlug: string;
|
|
100157
|
+
credentialId?: string | undefined;
|
|
100158
|
+
relativePath?: string | null | undefined;
|
|
100159
|
+
} | undefined;
|
|
100160
|
+
}>;
|
|
100161
|
+
type Pipeline = z.infer<typeof Pipeline>;
|
|
100162
|
+
|
|
99888
100163
|
declare const PulsarContributionVariant: z.ZodObject<{
|
|
99889
100164
|
key: z.ZodString;
|
|
99890
100165
|
name: z.ZodString;
|
|
@@ -100125,6 +100400,26 @@ declare const ExternalOAuthRequest: z.ZodObject<{
|
|
|
100125
100400
|
}>;
|
|
100126
100401
|
type ExternalOAuthRequest = z.infer<typeof ExternalOAuthRequest>;
|
|
100127
100402
|
|
|
100403
|
+
declare const GitObjectsQuery: z.ZodObject<{
|
|
100404
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
100405
|
+
project: z.ZodOptional<z.ZodString>;
|
|
100406
|
+
repository: z.ZodOptional<z.ZodString>;
|
|
100407
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
100408
|
+
user: z.ZodOptional<z.ZodString>;
|
|
100409
|
+
}, "strip", z.ZodTypeAny, {
|
|
100410
|
+
organization?: string | undefined;
|
|
100411
|
+
project?: string | undefined;
|
|
100412
|
+
repository?: string | undefined;
|
|
100413
|
+
user?: string | undefined;
|
|
100414
|
+
branch?: string | undefined;
|
|
100415
|
+
}, {
|
|
100416
|
+
organization?: string | undefined;
|
|
100417
|
+
project?: string | undefined;
|
|
100418
|
+
repository?: string | undefined;
|
|
100419
|
+
user?: string | undefined;
|
|
100420
|
+
branch?: string | undefined;
|
|
100421
|
+
}>;
|
|
100422
|
+
type GitObjectsQuery = z.infer<typeof GitObjectsQuery>;
|
|
100128
100423
|
declare const GitOrganization: z.ZodObject<{
|
|
100129
100424
|
id: z.ZodString;
|
|
100130
100425
|
name: z.ZodString;
|
|
@@ -100338,6 +100633,8 @@ declare const ExtendedIntegrationType: z.ZodEnum<["Figma", "Github", "Gitlab", "
|
|
|
100338
100633
|
type ExtendedIntegrationType = z.infer<typeof ExtendedIntegrationType>;
|
|
100339
100634
|
declare const IntegrationType: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
100340
100635
|
type IntegrationType = z.infer<typeof IntegrationType>;
|
|
100636
|
+
declare const GitIntegrationType: z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
100637
|
+
type GitIntegrationType = z.infer<typeof GitIntegrationType>;
|
|
100341
100638
|
declare const Integration: z.ZodObject<{
|
|
100342
100639
|
id: z.ZodString;
|
|
100343
100640
|
workspaceId: z.ZodString;
|
|
@@ -118507,4 +118804,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118507
118804
|
}>;
|
|
118508
118805
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
118509
118806
|
|
|
118510
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSchedule, ExporterScheduleEventType, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
118807
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, zodCreateInputOmit, zodUpdateInputOmit };
|