@supernova-studio/model 0.46.13 → 0.47.0
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 +1064 -1009
- package/dist/index.d.ts +1064 -1009
- package/dist/index.js +59 -43
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1591 -1575
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/users/index.ts +1 -0
- package/src/users/user-notification-settings.ts +18 -0
- package/src/workspace/workspace-membership.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -98248,827 +98248,203 @@ declare const VersionCreationJob: z.ZodObject<{
|
|
|
98248
98248
|
}>;
|
|
98249
98249
|
type VersionCreationJob = z.infer<typeof VersionCreationJob>;
|
|
98250
98250
|
|
|
98251
|
-
declare const
|
|
98251
|
+
declare const ExportJobDocumentationContext: z.ZodObject<{
|
|
98252
|
+
isSingleVersionDocs: z.ZodBoolean;
|
|
98253
|
+
versionSlug: z.ZodString;
|
|
98252
98254
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
98253
98255
|
}, "strip", z.ZodTypeAny, {
|
|
98254
98256
|
environment: "Live" | "Preview";
|
|
98257
|
+
isSingleVersionDocs: boolean;
|
|
98258
|
+
versionSlug: string;
|
|
98255
98259
|
}, {
|
|
98256
98260
|
environment: "Live" | "Preview";
|
|
98261
|
+
isSingleVersionDocs: boolean;
|
|
98262
|
+
versionSlug: string;
|
|
98257
98263
|
}>;
|
|
98258
|
-
type
|
|
98259
|
-
declare const
|
|
98260
|
-
|
|
98261
|
-
|
|
98262
|
-
connectionId: z.ZodString;
|
|
98263
|
-
branch: z.ZodString;
|
|
98264
|
-
relativePath: z.ZodString;
|
|
98265
|
-
}, "strip", z.ZodTypeAny, {
|
|
98266
|
-
connectionId: string;
|
|
98267
|
-
branch: string;
|
|
98268
|
-
relativePath: string;
|
|
98269
|
-
}, {
|
|
98270
|
-
connectionId: string;
|
|
98271
|
-
branch: string;
|
|
98272
|
-
relativePath: string;
|
|
98273
|
-
}>;
|
|
98274
|
-
type ExporterDestinationGithub = z.infer<typeof ExporterDestinationGithub>;
|
|
98275
|
-
declare const ExporterDestinationAzure: z.ZodObject<{
|
|
98276
|
-
connectionId: z.ZodString;
|
|
98277
|
-
organizationId: z.ZodString;
|
|
98278
|
-
projectId: z.ZodString;
|
|
98279
|
-
repositoryId: z.ZodString;
|
|
98280
|
-
branch: z.ZodString;
|
|
98281
|
-
relativePath: z.ZodString;
|
|
98282
|
-
}, "strip", z.ZodTypeAny, {
|
|
98283
|
-
connectionId: string;
|
|
98284
|
-
branch: string;
|
|
98285
|
-
relativePath: string;
|
|
98286
|
-
organizationId: string;
|
|
98287
|
-
projectId: string;
|
|
98288
|
-
repositoryId: string;
|
|
98289
|
-
}, {
|
|
98290
|
-
connectionId: string;
|
|
98291
|
-
branch: string;
|
|
98292
|
-
relativePath: string;
|
|
98293
|
-
organizationId: string;
|
|
98294
|
-
projectId: string;
|
|
98295
|
-
repositoryId: string;
|
|
98296
|
-
}>;
|
|
98297
|
-
type ExporterDestinationAzure = z.infer<typeof ExporterDestinationAzure>;
|
|
98298
|
-
declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
98299
|
-
connectionId: z.ZodString;
|
|
98300
|
-
projectId: z.ZodString;
|
|
98301
|
-
branch: z.ZodString;
|
|
98302
|
-
relativePath: z.ZodString;
|
|
98303
|
-
}, "strip", z.ZodTypeAny, {
|
|
98304
|
-
connectionId: string;
|
|
98305
|
-
branch: string;
|
|
98306
|
-
relativePath: string;
|
|
98307
|
-
projectId: string;
|
|
98308
|
-
}, {
|
|
98309
|
-
connectionId: string;
|
|
98310
|
-
branch: string;
|
|
98311
|
-
relativePath: string;
|
|
98312
|
-
projectId: string;
|
|
98313
|
-
}>;
|
|
98314
|
-
type ExporterDestinationGitlab = z.infer<typeof ExporterDestinationGitlab>;
|
|
98315
|
-
declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
98316
|
-
connectionId: z.ZodString;
|
|
98317
|
-
workspaceSlug: z.ZodString;
|
|
98318
|
-
projectKey: z.ZodString;
|
|
98319
|
-
repoSlug: z.ZodString;
|
|
98320
|
-
branch: z.ZodString;
|
|
98321
|
-
relativePath: z.ZodString;
|
|
98322
|
-
}, "strip", z.ZodTypeAny, {
|
|
98323
|
-
connectionId: string;
|
|
98324
|
-
branch: string;
|
|
98325
|
-
relativePath: string;
|
|
98326
|
-
workspaceSlug: string;
|
|
98327
|
-
projectKey: string;
|
|
98328
|
-
repoSlug: string;
|
|
98329
|
-
}, {
|
|
98330
|
-
connectionId: string;
|
|
98331
|
-
branch: string;
|
|
98332
|
-
relativePath: string;
|
|
98333
|
-
workspaceSlug: string;
|
|
98334
|
-
projectKey: string;
|
|
98335
|
-
repoSlug: string;
|
|
98336
|
-
}>;
|
|
98337
|
-
type ExporterDestinationBitbucket = z.infer<typeof ExporterDestinationBitbucket>;
|
|
98338
|
-
declare const ExportDestinationsMap: z.ZodObject<{
|
|
98339
|
-
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
98340
|
-
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
98341
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
98342
|
-
}, "strip", z.ZodTypeAny, {
|
|
98343
|
-
environment: "Live" | "Preview";
|
|
98344
|
-
}, {
|
|
98345
|
-
environment: "Live" | "Preview";
|
|
98346
|
-
}>>;
|
|
98347
|
-
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
98348
|
-
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
98349
|
-
connectionId: z.ZodString;
|
|
98350
|
-
branch: z.ZodString;
|
|
98351
|
-
relativePath: z.ZodString;
|
|
98352
|
-
}, "strip", z.ZodTypeAny, {
|
|
98353
|
-
connectionId: string;
|
|
98354
|
-
branch: string;
|
|
98355
|
-
relativePath: string;
|
|
98356
|
-
}, {
|
|
98357
|
-
connectionId: string;
|
|
98358
|
-
branch: string;
|
|
98359
|
-
relativePath: string;
|
|
98360
|
-
}>>;
|
|
98361
|
-
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
98362
|
-
connectionId: z.ZodString;
|
|
98363
|
-
organizationId: z.ZodString;
|
|
98364
|
-
projectId: z.ZodString;
|
|
98365
|
-
repositoryId: z.ZodString;
|
|
98366
|
-
branch: z.ZodString;
|
|
98367
|
-
relativePath: z.ZodString;
|
|
98368
|
-
}, "strip", z.ZodTypeAny, {
|
|
98369
|
-
connectionId: string;
|
|
98370
|
-
branch: string;
|
|
98371
|
-
relativePath: string;
|
|
98372
|
-
organizationId: string;
|
|
98373
|
-
projectId: string;
|
|
98374
|
-
repositoryId: string;
|
|
98375
|
-
}, {
|
|
98376
|
-
connectionId: string;
|
|
98377
|
-
branch: string;
|
|
98378
|
-
relativePath: string;
|
|
98379
|
-
organizationId: string;
|
|
98380
|
-
projectId: string;
|
|
98381
|
-
repositoryId: string;
|
|
98382
|
-
}>>;
|
|
98383
|
-
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
98384
|
-
connectionId: z.ZodString;
|
|
98385
|
-
projectId: z.ZodString;
|
|
98386
|
-
branch: z.ZodString;
|
|
98387
|
-
relativePath: z.ZodString;
|
|
98388
|
-
}, "strip", z.ZodTypeAny, {
|
|
98389
|
-
connectionId: string;
|
|
98390
|
-
branch: string;
|
|
98391
|
-
relativePath: string;
|
|
98392
|
-
projectId: string;
|
|
98393
|
-
}, {
|
|
98394
|
-
connectionId: string;
|
|
98395
|
-
branch: string;
|
|
98396
|
-
relativePath: string;
|
|
98397
|
-
projectId: string;
|
|
98398
|
-
}>>;
|
|
98399
|
-
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
98400
|
-
connectionId: z.ZodString;
|
|
98401
|
-
workspaceSlug: z.ZodString;
|
|
98402
|
-
projectKey: z.ZodString;
|
|
98403
|
-
repoSlug: z.ZodString;
|
|
98404
|
-
branch: z.ZodString;
|
|
98405
|
-
relativePath: z.ZodString;
|
|
98406
|
-
}, "strip", z.ZodTypeAny, {
|
|
98407
|
-
connectionId: string;
|
|
98408
|
-
branch: string;
|
|
98409
|
-
relativePath: string;
|
|
98410
|
-
workspaceSlug: string;
|
|
98411
|
-
projectKey: string;
|
|
98412
|
-
repoSlug: string;
|
|
98413
|
-
}, {
|
|
98414
|
-
connectionId: string;
|
|
98415
|
-
branch: string;
|
|
98416
|
-
relativePath: string;
|
|
98417
|
-
workspaceSlug: string;
|
|
98418
|
-
projectKey: string;
|
|
98419
|
-
repoSlug: string;
|
|
98420
|
-
}>>;
|
|
98421
|
-
}, "strip", z.ZodTypeAny, {
|
|
98422
|
-
webhookUrl?: string | undefined;
|
|
98423
|
-
destinationSnDocs?: {
|
|
98424
|
-
environment: "Live" | "Preview";
|
|
98425
|
-
} | undefined;
|
|
98426
|
-
destinationS3?: {} | undefined;
|
|
98427
|
-
destinationGithub?: {
|
|
98428
|
-
connectionId: string;
|
|
98429
|
-
branch: string;
|
|
98430
|
-
relativePath: string;
|
|
98431
|
-
} | undefined;
|
|
98432
|
-
destinationAzure?: {
|
|
98433
|
-
connectionId: string;
|
|
98434
|
-
branch: string;
|
|
98435
|
-
relativePath: string;
|
|
98436
|
-
organizationId: string;
|
|
98437
|
-
projectId: string;
|
|
98438
|
-
repositoryId: string;
|
|
98439
|
-
} | undefined;
|
|
98440
|
-
destinationGitlab?: {
|
|
98441
|
-
connectionId: string;
|
|
98442
|
-
branch: string;
|
|
98443
|
-
relativePath: string;
|
|
98444
|
-
projectId: string;
|
|
98445
|
-
} | undefined;
|
|
98446
|
-
destinationBitbucket?: {
|
|
98447
|
-
connectionId: string;
|
|
98448
|
-
branch: string;
|
|
98449
|
-
relativePath: string;
|
|
98450
|
-
workspaceSlug: string;
|
|
98451
|
-
projectKey: string;
|
|
98452
|
-
repoSlug: string;
|
|
98453
|
-
} | undefined;
|
|
98454
|
-
}, {
|
|
98455
|
-
webhookUrl?: string | undefined;
|
|
98456
|
-
destinationSnDocs?: {
|
|
98457
|
-
environment: "Live" | "Preview";
|
|
98458
|
-
} | undefined;
|
|
98459
|
-
destinationS3?: {} | undefined;
|
|
98460
|
-
destinationGithub?: {
|
|
98461
|
-
connectionId: string;
|
|
98462
|
-
branch: string;
|
|
98463
|
-
relativePath: string;
|
|
98464
|
-
} | undefined;
|
|
98465
|
-
destinationAzure?: {
|
|
98466
|
-
connectionId: string;
|
|
98467
|
-
branch: string;
|
|
98468
|
-
relativePath: string;
|
|
98469
|
-
organizationId: string;
|
|
98470
|
-
projectId: string;
|
|
98471
|
-
repositoryId: string;
|
|
98472
|
-
} | undefined;
|
|
98473
|
-
destinationGitlab?: {
|
|
98474
|
-
connectionId: string;
|
|
98475
|
-
branch: string;
|
|
98476
|
-
relativePath: string;
|
|
98477
|
-
projectId: string;
|
|
98478
|
-
} | undefined;
|
|
98479
|
-
destinationBitbucket?: {
|
|
98480
|
-
connectionId: string;
|
|
98481
|
-
branch: string;
|
|
98482
|
-
relativePath: string;
|
|
98483
|
-
workspaceSlug: string;
|
|
98484
|
-
projectKey: string;
|
|
98485
|
-
repoSlug: string;
|
|
98486
|
-
} | undefined;
|
|
98487
|
-
}>;
|
|
98488
|
-
type ExportDestinationsMap = z.infer<typeof ExportDestinationsMap>;
|
|
98489
|
-
|
|
98490
|
-
declare const ExportJobDestinationType: z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>;
|
|
98491
|
-
type ExportJobDestinationType = z.infer<typeof ExportJobDestinationType>;
|
|
98492
|
-
declare const ExportJobStatus: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
98493
|
-
type ExportJobStatus = z.infer<typeof ExportJobStatus>;
|
|
98494
|
-
declare const ExportJobLogEntryType: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
98495
|
-
type ExportJobLogEntryType = z.infer<typeof ExportJobLogEntryType>;
|
|
98496
|
-
declare const ExportJobLogEntry: z.ZodObject<{
|
|
98497
|
-
id: z.ZodOptional<z.ZodString>;
|
|
98498
|
-
time: z.ZodDate;
|
|
98499
|
-
type: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
98500
|
-
message: z.ZodString;
|
|
98501
|
-
}, "strip", z.ZodTypeAny, {
|
|
98502
|
-
message: string;
|
|
98503
|
-
type: "error" | "info" | "user" | "success" | "warning";
|
|
98504
|
-
time: Date;
|
|
98505
|
-
id?: string | undefined;
|
|
98506
|
-
}, {
|
|
98507
|
-
message: string;
|
|
98508
|
-
type: "error" | "info" | "user" | "success" | "warning";
|
|
98509
|
-
time: Date;
|
|
98510
|
-
id?: string | undefined;
|
|
98511
|
-
}>;
|
|
98512
|
-
type ExportJobLogEntry = z.infer<typeof ExportJobLogEntry>;
|
|
98513
|
-
declare const ExportJobPullRequestDestinationResult: z.ZodObject<{
|
|
98514
|
-
pullRequestUrl: z.ZodString;
|
|
98515
|
-
}, "strip", z.ZodTypeAny, {
|
|
98516
|
-
pullRequestUrl: string;
|
|
98517
|
-
}, {
|
|
98518
|
-
pullRequestUrl: string;
|
|
98519
|
-
}>;
|
|
98520
|
-
type ExportJobPullRequestDestinationResult = z.infer<typeof ExportJobPullRequestDestinationResult>;
|
|
98521
|
-
declare const ExportJobS3DestinationResult: z.ZodObject<{
|
|
98522
|
-
bucket: z.ZodString;
|
|
98523
|
-
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
98524
|
-
path: z.ZodString;
|
|
98525
|
-
files: z.ZodArray<z.ZodString, "many">;
|
|
98526
|
-
}, "strip", z.ZodTypeAny, {
|
|
98527
|
-
path: string;
|
|
98528
|
-
files: string[];
|
|
98529
|
-
bucket: string;
|
|
98530
|
-
urlPrefix?: string | undefined;
|
|
98531
|
-
}, {
|
|
98532
|
-
path: string;
|
|
98533
|
-
files: string[];
|
|
98534
|
-
bucket: string;
|
|
98535
|
-
urlPrefix?: string | undefined;
|
|
98536
|
-
}>;
|
|
98537
|
-
type ExportJobS3DestinationResult = z.infer<typeof ExportJobS3DestinationResult>;
|
|
98538
|
-
declare const ExportJobDocsDestinationResult: z.ZodObject<{
|
|
98539
|
-
url: z.ZodString;
|
|
98540
|
-
}, "strip", z.ZodTypeAny, {
|
|
98541
|
-
url: string;
|
|
98542
|
-
}, {
|
|
98543
|
-
url: string;
|
|
98544
|
-
}>;
|
|
98545
|
-
type ExportJobDocsDestinationResult = z.infer<typeof ExportJobDocsDestinationResult>;
|
|
98546
|
-
declare const ExportJobResult: z.ZodObject<{
|
|
98547
|
-
error: z.ZodOptional<z.ZodString>;
|
|
98548
|
-
s3: z.ZodOptional<z.ZodObject<{
|
|
98549
|
-
bucket: z.ZodString;
|
|
98550
|
-
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
98551
|
-
path: z.ZodString;
|
|
98552
|
-
files: z.ZodArray<z.ZodString, "many">;
|
|
98553
|
-
}, "strip", z.ZodTypeAny, {
|
|
98554
|
-
path: string;
|
|
98555
|
-
files: string[];
|
|
98556
|
-
bucket: string;
|
|
98557
|
-
urlPrefix?: string | undefined;
|
|
98558
|
-
}, {
|
|
98559
|
-
path: string;
|
|
98560
|
-
files: string[];
|
|
98561
|
-
bucket: string;
|
|
98562
|
-
urlPrefix?: string | undefined;
|
|
98563
|
-
}>>;
|
|
98564
|
-
github: z.ZodOptional<z.ZodObject<{
|
|
98565
|
-
pullRequestUrl: z.ZodString;
|
|
98566
|
-
}, "strip", z.ZodTypeAny, {
|
|
98567
|
-
pullRequestUrl: string;
|
|
98568
|
-
}, {
|
|
98569
|
-
pullRequestUrl: string;
|
|
98570
|
-
}>>;
|
|
98571
|
-
azure: z.ZodOptional<z.ZodObject<{
|
|
98572
|
-
pullRequestUrl: z.ZodString;
|
|
98573
|
-
}, "strip", z.ZodTypeAny, {
|
|
98574
|
-
pullRequestUrl: string;
|
|
98575
|
-
}, {
|
|
98576
|
-
pullRequestUrl: string;
|
|
98577
|
-
}>>;
|
|
98578
|
-
gitlab: z.ZodOptional<z.ZodObject<{
|
|
98579
|
-
pullRequestUrl: z.ZodString;
|
|
98580
|
-
}, "strip", z.ZodTypeAny, {
|
|
98581
|
-
pullRequestUrl: string;
|
|
98582
|
-
}, {
|
|
98583
|
-
pullRequestUrl: string;
|
|
98584
|
-
}>>;
|
|
98585
|
-
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
98586
|
-
pullRequestUrl: z.ZodString;
|
|
98587
|
-
}, "strip", z.ZodTypeAny, {
|
|
98588
|
-
pullRequestUrl: string;
|
|
98589
|
-
}, {
|
|
98590
|
-
pullRequestUrl: string;
|
|
98591
|
-
}>>;
|
|
98592
|
-
sndocs: z.ZodOptional<z.ZodObject<{
|
|
98593
|
-
url: z.ZodString;
|
|
98594
|
-
}, "strip", z.ZodTypeAny, {
|
|
98595
|
-
url: string;
|
|
98596
|
-
}, {
|
|
98597
|
-
url: string;
|
|
98598
|
-
}>>;
|
|
98599
|
-
}, "strip", z.ZodTypeAny, {
|
|
98600
|
-
error?: string | undefined;
|
|
98601
|
-
s3?: {
|
|
98602
|
-
path: string;
|
|
98603
|
-
files: string[];
|
|
98604
|
-
bucket: string;
|
|
98605
|
-
urlPrefix?: string | undefined;
|
|
98606
|
-
} | undefined;
|
|
98607
|
-
github?: {
|
|
98608
|
-
pullRequestUrl: string;
|
|
98609
|
-
} | undefined;
|
|
98610
|
-
azure?: {
|
|
98611
|
-
pullRequestUrl: string;
|
|
98612
|
-
} | undefined;
|
|
98613
|
-
gitlab?: {
|
|
98614
|
-
pullRequestUrl: string;
|
|
98615
|
-
} | undefined;
|
|
98616
|
-
bitbucket?: {
|
|
98617
|
-
pullRequestUrl: string;
|
|
98618
|
-
} | undefined;
|
|
98619
|
-
sndocs?: {
|
|
98620
|
-
url: string;
|
|
98621
|
-
} | undefined;
|
|
98622
|
-
}, {
|
|
98623
|
-
error?: string | undefined;
|
|
98624
|
-
s3?: {
|
|
98625
|
-
path: string;
|
|
98626
|
-
files: string[];
|
|
98627
|
-
bucket: string;
|
|
98628
|
-
urlPrefix?: string | undefined;
|
|
98629
|
-
} | undefined;
|
|
98630
|
-
github?: {
|
|
98631
|
-
pullRequestUrl: string;
|
|
98632
|
-
} | undefined;
|
|
98633
|
-
azure?: {
|
|
98634
|
-
pullRequestUrl: string;
|
|
98635
|
-
} | undefined;
|
|
98636
|
-
gitlab?: {
|
|
98637
|
-
pullRequestUrl: string;
|
|
98638
|
-
} | undefined;
|
|
98639
|
-
bitbucket?: {
|
|
98640
|
-
pullRequestUrl: string;
|
|
98641
|
-
} | undefined;
|
|
98642
|
-
sndocs?: {
|
|
98643
|
-
url: string;
|
|
98644
|
-
} | undefined;
|
|
98645
|
-
}>;
|
|
98646
|
-
type ExportJobResult = z.infer<typeof ExportJobResult>;
|
|
98647
|
-
declare const ExportJob: z.ZodObject<{
|
|
98648
|
-
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
98649
|
-
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
98650
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
98651
|
-
}, "strip", z.ZodTypeAny, {
|
|
98652
|
-
environment: "Live" | "Preview";
|
|
98653
|
-
}, {
|
|
98654
|
-
environment: "Live" | "Preview";
|
|
98655
|
-
}>>;
|
|
98656
|
-
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
98657
|
-
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
98658
|
-
connectionId: z.ZodString;
|
|
98659
|
-
branch: z.ZodString;
|
|
98660
|
-
relativePath: z.ZodString;
|
|
98661
|
-
}, "strip", z.ZodTypeAny, {
|
|
98662
|
-
connectionId: string;
|
|
98663
|
-
branch: string;
|
|
98664
|
-
relativePath: string;
|
|
98665
|
-
}, {
|
|
98666
|
-
connectionId: string;
|
|
98667
|
-
branch: string;
|
|
98668
|
-
relativePath: string;
|
|
98669
|
-
}>>;
|
|
98670
|
-
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
98671
|
-
connectionId: z.ZodString;
|
|
98672
|
-
organizationId: z.ZodString;
|
|
98673
|
-
projectId: z.ZodString;
|
|
98674
|
-
repositoryId: z.ZodString;
|
|
98675
|
-
branch: z.ZodString;
|
|
98676
|
-
relativePath: z.ZodString;
|
|
98677
|
-
}, "strip", z.ZodTypeAny, {
|
|
98678
|
-
connectionId: string;
|
|
98679
|
-
branch: string;
|
|
98680
|
-
relativePath: string;
|
|
98681
|
-
organizationId: string;
|
|
98682
|
-
projectId: string;
|
|
98683
|
-
repositoryId: string;
|
|
98684
|
-
}, {
|
|
98685
|
-
connectionId: string;
|
|
98686
|
-
branch: string;
|
|
98687
|
-
relativePath: string;
|
|
98688
|
-
organizationId: string;
|
|
98689
|
-
projectId: string;
|
|
98690
|
-
repositoryId: string;
|
|
98691
|
-
}>>;
|
|
98692
|
-
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
98693
|
-
connectionId: z.ZodString;
|
|
98694
|
-
projectId: z.ZodString;
|
|
98695
|
-
branch: z.ZodString;
|
|
98696
|
-
relativePath: z.ZodString;
|
|
98697
|
-
}, "strip", z.ZodTypeAny, {
|
|
98698
|
-
connectionId: string;
|
|
98699
|
-
branch: string;
|
|
98700
|
-
relativePath: string;
|
|
98701
|
-
projectId: string;
|
|
98702
|
-
}, {
|
|
98703
|
-
connectionId: string;
|
|
98704
|
-
branch: string;
|
|
98705
|
-
relativePath: string;
|
|
98706
|
-
projectId: string;
|
|
98707
|
-
}>>;
|
|
98708
|
-
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
98709
|
-
connectionId: z.ZodString;
|
|
98710
|
-
workspaceSlug: z.ZodString;
|
|
98711
|
-
projectKey: z.ZodString;
|
|
98712
|
-
repoSlug: z.ZodString;
|
|
98713
|
-
branch: z.ZodString;
|
|
98714
|
-
relativePath: z.ZodString;
|
|
98715
|
-
}, "strip", z.ZodTypeAny, {
|
|
98716
|
-
connectionId: string;
|
|
98717
|
-
branch: string;
|
|
98718
|
-
relativePath: string;
|
|
98719
|
-
workspaceSlug: string;
|
|
98720
|
-
projectKey: string;
|
|
98721
|
-
repoSlug: string;
|
|
98722
|
-
}, {
|
|
98723
|
-
connectionId: string;
|
|
98724
|
-
branch: string;
|
|
98725
|
-
relativePath: string;
|
|
98726
|
-
workspaceSlug: string;
|
|
98727
|
-
projectKey: string;
|
|
98728
|
-
repoSlug: string;
|
|
98729
|
-
}>>;
|
|
98730
|
-
id: z.ZodString;
|
|
98731
|
-
createdAt: z.ZodDate;
|
|
98732
|
-
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
98264
|
+
type ExportJobDocumentationContext = z.infer<typeof ExportJobDocumentationContext>;
|
|
98265
|
+
declare const ExportJobContext: z.ZodObject<{
|
|
98266
|
+
apiUrl: z.ZodString;
|
|
98267
|
+
accessToken: z.ZodString;
|
|
98733
98268
|
designSystemId: z.ZodString;
|
|
98734
98269
|
designSystemVersionId: z.ZodString;
|
|
98735
|
-
workspaceId: z.ZodString;
|
|
98736
|
-
scheduleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
98737
|
-
exporterId: z.ZodString;
|
|
98738
98270
|
brandId: z.ZodOptional<z.ZodString>;
|
|
98739
|
-
|
|
98740
|
-
|
|
98741
|
-
|
|
98742
|
-
|
|
98743
|
-
|
|
98744
|
-
|
|
98745
|
-
|
|
98746
|
-
|
|
98747
|
-
|
|
98748
|
-
|
|
98749
|
-
|
|
98750
|
-
|
|
98751
|
-
|
|
98752
|
-
|
|
98753
|
-
|
|
98754
|
-
|
|
98755
|
-
|
|
98756
|
-
|
|
98757
|
-
|
|
98758
|
-
|
|
98759
|
-
|
|
98760
|
-
|
|
98761
|
-
|
|
98762
|
-
|
|
98763
|
-
|
|
98764
|
-
|
|
98765
|
-
|
|
98766
|
-
|
|
98767
|
-
|
|
98768
|
-
|
|
98769
|
-
|
|
98770
|
-
|
|
98771
|
-
|
|
98772
|
-
|
|
98773
|
-
|
|
98774
|
-
|
|
98775
|
-
|
|
98776
|
-
|
|
98777
|
-
|
|
98778
|
-
|
|
98779
|
-
|
|
98780
|
-
|
|
98781
|
-
|
|
98782
|
-
|
|
98783
|
-
|
|
98784
|
-
|
|
98785
|
-
|
|
98786
|
-
|
|
98787
|
-
|
|
98788
|
-
|
|
98789
|
-
|
|
98271
|
+
exporterPackageUrl: z.ZodString;
|
|
98272
|
+
exporterPropertyValues: z.ZodArray<z.ZodObject<{
|
|
98273
|
+
key: z.ZodString;
|
|
98274
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodObject<{
|
|
98275
|
+
asset: z.ZodOptional<z.ZodObject<{
|
|
98276
|
+
type: z.ZodEnum<["image", "figmaFrame"]>;
|
|
98277
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98278
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98279
|
+
figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98280
|
+
persistentId: string;
|
|
98281
|
+
sourceId: string;
|
|
98282
|
+
sourceFrameId: string;
|
|
98283
|
+
title?: string | undefined;
|
|
98284
|
+
description?: string | undefined;
|
|
98285
|
+
backgroundColor?: {
|
|
98286
|
+
value: string;
|
|
98287
|
+
} | undefined;
|
|
98288
|
+
origin?: {
|
|
98289
|
+
sourceFileName?: string | undefined;
|
|
98290
|
+
title?: string | undefined;
|
|
98291
|
+
previewUrl?: string | undefined;
|
|
98292
|
+
valid?: boolean | undefined;
|
|
98293
|
+
referenceId?: string | undefined;
|
|
98294
|
+
assetId?: string | undefined;
|
|
98295
|
+
assetScale?: number | undefined;
|
|
98296
|
+
width?: number | undefined;
|
|
98297
|
+
height?: number | undefined;
|
|
98298
|
+
} | undefined;
|
|
98299
|
+
}, z.ZodTypeDef, {
|
|
98300
|
+
persistentId: string;
|
|
98301
|
+
sourceId: string;
|
|
98302
|
+
sourceFrameId: string;
|
|
98303
|
+
title?: string | null | undefined;
|
|
98304
|
+
description?: string | null | undefined;
|
|
98305
|
+
backgroundColor?: {
|
|
98306
|
+
value: string;
|
|
98307
|
+
} | null | undefined;
|
|
98308
|
+
origin?: {
|
|
98309
|
+
sourceFileName?: string | null | undefined;
|
|
98310
|
+
title?: string | null | undefined;
|
|
98311
|
+
previewUrl?: string | null | undefined;
|
|
98312
|
+
valid?: boolean | null | undefined;
|
|
98313
|
+
referenceId?: string | null | undefined;
|
|
98314
|
+
assetId?: string | null | undefined;
|
|
98315
|
+
assetScale?: number | null | undefined;
|
|
98316
|
+
width?: number | null | undefined;
|
|
98317
|
+
height?: number | null | undefined;
|
|
98318
|
+
} | null | undefined;
|
|
98319
|
+
}>>>, {
|
|
98320
|
+
persistentId: string;
|
|
98321
|
+
sourceId: string;
|
|
98322
|
+
sourceFrameId: string;
|
|
98323
|
+
title?: string | undefined;
|
|
98324
|
+
description?: string | undefined;
|
|
98325
|
+
backgroundColor?: {
|
|
98326
|
+
value: string;
|
|
98327
|
+
} | undefined;
|
|
98328
|
+
origin?: {
|
|
98329
|
+
sourceFileName?: string | undefined;
|
|
98330
|
+
title?: string | undefined;
|
|
98331
|
+
previewUrl?: string | undefined;
|
|
98332
|
+
valid?: boolean | undefined;
|
|
98333
|
+
referenceId?: string | undefined;
|
|
98334
|
+
assetId?: string | undefined;
|
|
98335
|
+
assetScale?: number | undefined;
|
|
98336
|
+
width?: number | undefined;
|
|
98337
|
+
height?: number | undefined;
|
|
98338
|
+
} | undefined;
|
|
98339
|
+
} | undefined, {
|
|
98340
|
+
persistentId: string;
|
|
98341
|
+
sourceId: string;
|
|
98342
|
+
sourceFrameId: string;
|
|
98343
|
+
title?: string | null | undefined;
|
|
98344
|
+
description?: string | null | undefined;
|
|
98345
|
+
backgroundColor?: {
|
|
98346
|
+
value: string;
|
|
98347
|
+
} | null | undefined;
|
|
98348
|
+
origin?: {
|
|
98349
|
+
sourceFileName?: string | null | undefined;
|
|
98350
|
+
title?: string | null | undefined;
|
|
98351
|
+
previewUrl?: string | null | undefined;
|
|
98352
|
+
valid?: boolean | null | undefined;
|
|
98353
|
+
referenceId?: string | null | undefined;
|
|
98354
|
+
assetId?: string | null | undefined;
|
|
98355
|
+
assetScale?: number | null | undefined;
|
|
98356
|
+
width?: number | null | undefined;
|
|
98357
|
+
height?: number | null | undefined;
|
|
98358
|
+
} | null | undefined;
|
|
98359
|
+
} | null | undefined>;
|
|
98360
|
+
}, "strip", z.ZodTypeAny, {
|
|
98361
|
+
type: "image" | "figmaFrame";
|
|
98362
|
+
id?: string | undefined;
|
|
98363
|
+
url?: string | undefined;
|
|
98364
|
+
figmaFrame?: {
|
|
98365
|
+
persistentId: string;
|
|
98366
|
+
sourceId: string;
|
|
98367
|
+
sourceFrameId: string;
|
|
98368
|
+
title?: string | undefined;
|
|
98369
|
+
description?: string | undefined;
|
|
98370
|
+
backgroundColor?: {
|
|
98371
|
+
value: string;
|
|
98372
|
+
} | undefined;
|
|
98373
|
+
origin?: {
|
|
98374
|
+
sourceFileName?: string | undefined;
|
|
98375
|
+
title?: string | undefined;
|
|
98376
|
+
previewUrl?: string | undefined;
|
|
98377
|
+
valid?: boolean | undefined;
|
|
98378
|
+
referenceId?: string | undefined;
|
|
98379
|
+
assetId?: string | undefined;
|
|
98380
|
+
assetScale?: number | undefined;
|
|
98381
|
+
width?: number | undefined;
|
|
98382
|
+
height?: number | undefined;
|
|
98383
|
+
} | undefined;
|
|
98384
|
+
} | undefined;
|
|
98385
|
+
}, {
|
|
98386
|
+
type: "image" | "figmaFrame";
|
|
98387
|
+
id?: string | null | undefined;
|
|
98388
|
+
url?: string | null | undefined;
|
|
98389
|
+
figmaFrame?: {
|
|
98390
|
+
persistentId: string;
|
|
98391
|
+
sourceId: string;
|
|
98392
|
+
sourceFrameId: string;
|
|
98393
|
+
title?: string | null | undefined;
|
|
98394
|
+
description?: string | null | undefined;
|
|
98395
|
+
backgroundColor?: {
|
|
98396
|
+
value: string;
|
|
98397
|
+
} | null | undefined;
|
|
98398
|
+
origin?: {
|
|
98399
|
+
sourceFileName?: string | null | undefined;
|
|
98400
|
+
title?: string | null | undefined;
|
|
98401
|
+
previewUrl?: string | null | undefined;
|
|
98402
|
+
valid?: boolean | null | undefined;
|
|
98403
|
+
referenceId?: string | null | undefined;
|
|
98404
|
+
assetId?: string | null | undefined;
|
|
98405
|
+
assetScale?: number | null | undefined;
|
|
98406
|
+
width?: number | null | undefined;
|
|
98407
|
+
height?: number | null | undefined;
|
|
98408
|
+
} | null | undefined;
|
|
98409
|
+
} | null | undefined;
|
|
98410
|
+
}>>;
|
|
98411
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
98412
|
+
assetUrl: z.ZodOptional<z.ZodString>;
|
|
98790
98413
|
}, "strip", z.ZodTypeAny, {
|
|
98791
|
-
|
|
98414
|
+
asset?: {
|
|
98415
|
+
type: "image" | "figmaFrame";
|
|
98416
|
+
id?: string | undefined;
|
|
98417
|
+
url?: string | undefined;
|
|
98418
|
+
figmaFrame?: {
|
|
98419
|
+
persistentId: string;
|
|
98420
|
+
sourceId: string;
|
|
98421
|
+
sourceFrameId: string;
|
|
98422
|
+
title?: string | undefined;
|
|
98423
|
+
description?: string | undefined;
|
|
98424
|
+
backgroundColor?: {
|
|
98425
|
+
value: string;
|
|
98426
|
+
} | undefined;
|
|
98427
|
+
origin?: {
|
|
98428
|
+
sourceFileName?: string | undefined;
|
|
98429
|
+
title?: string | undefined;
|
|
98430
|
+
previewUrl?: string | undefined;
|
|
98431
|
+
valid?: boolean | undefined;
|
|
98432
|
+
referenceId?: string | undefined;
|
|
98433
|
+
assetId?: string | undefined;
|
|
98434
|
+
assetScale?: number | undefined;
|
|
98435
|
+
width?: number | undefined;
|
|
98436
|
+
height?: number | undefined;
|
|
98437
|
+
} | undefined;
|
|
98438
|
+
} | undefined;
|
|
98439
|
+
} | undefined;
|
|
98440
|
+
assetId?: string | undefined;
|
|
98441
|
+
assetUrl?: string | undefined;
|
|
98792
98442
|
}, {
|
|
98793
|
-
|
|
98794
|
-
|
|
98795
|
-
|
|
98796
|
-
|
|
98797
|
-
|
|
98798
|
-
path: string;
|
|
98799
|
-
files: string[];
|
|
98800
|
-
bucket: string;
|
|
98801
|
-
urlPrefix?: string | undefined;
|
|
98802
|
-
} | undefined;
|
|
98803
|
-
github?: {
|
|
98804
|
-
pullRequestUrl: string;
|
|
98805
|
-
} | undefined;
|
|
98806
|
-
azure?: {
|
|
98807
|
-
pullRequestUrl: string;
|
|
98808
|
-
} | undefined;
|
|
98809
|
-
gitlab?: {
|
|
98810
|
-
pullRequestUrl: string;
|
|
98811
|
-
} | undefined;
|
|
98812
|
-
bitbucket?: {
|
|
98813
|
-
pullRequestUrl: string;
|
|
98814
|
-
} | undefined;
|
|
98815
|
-
sndocs?: {
|
|
98816
|
-
url: string;
|
|
98817
|
-
} | undefined;
|
|
98818
|
-
}, {
|
|
98819
|
-
error?: string | undefined;
|
|
98820
|
-
s3?: {
|
|
98821
|
-
path: string;
|
|
98822
|
-
files: string[];
|
|
98823
|
-
bucket: string;
|
|
98824
|
-
urlPrefix?: string | undefined;
|
|
98825
|
-
} | undefined;
|
|
98826
|
-
github?: {
|
|
98827
|
-
pullRequestUrl: string;
|
|
98828
|
-
} | undefined;
|
|
98829
|
-
azure?: {
|
|
98830
|
-
pullRequestUrl: string;
|
|
98831
|
-
} | undefined;
|
|
98832
|
-
gitlab?: {
|
|
98833
|
-
pullRequestUrl: string;
|
|
98834
|
-
} | undefined;
|
|
98835
|
-
bitbucket?: {
|
|
98836
|
-
pullRequestUrl: string;
|
|
98837
|
-
} | undefined;
|
|
98838
|
-
sndocs?: {
|
|
98839
|
-
url: string;
|
|
98840
|
-
} | undefined;
|
|
98841
|
-
}>>;
|
|
98842
|
-
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
98843
|
-
}, "strip", z.ZodTypeAny, {
|
|
98844
|
-
id: string;
|
|
98845
|
-
createdAt: Date;
|
|
98846
|
-
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
98847
|
-
designSystemId: string;
|
|
98848
|
-
designSystemVersionId: string;
|
|
98849
|
-
workspaceId: string;
|
|
98850
|
-
exporterId: string;
|
|
98851
|
-
webhookUrl?: string | undefined;
|
|
98852
|
-
destinationSnDocs?: {
|
|
98853
|
-
environment: "Live" | "Preview";
|
|
98854
|
-
} | undefined;
|
|
98855
|
-
destinationS3?: {} | undefined;
|
|
98856
|
-
destinationGithub?: {
|
|
98857
|
-
connectionId: string;
|
|
98858
|
-
branch: string;
|
|
98859
|
-
relativePath: string;
|
|
98860
|
-
} | undefined;
|
|
98861
|
-
destinationAzure?: {
|
|
98862
|
-
connectionId: string;
|
|
98863
|
-
branch: string;
|
|
98864
|
-
relativePath: string;
|
|
98865
|
-
organizationId: string;
|
|
98866
|
-
projectId: string;
|
|
98867
|
-
repositoryId: string;
|
|
98868
|
-
} | undefined;
|
|
98869
|
-
destinationGitlab?: {
|
|
98870
|
-
connectionId: string;
|
|
98871
|
-
branch: string;
|
|
98872
|
-
relativePath: string;
|
|
98873
|
-
projectId: string;
|
|
98874
|
-
} | undefined;
|
|
98875
|
-
destinationBitbucket?: {
|
|
98876
|
-
connectionId: string;
|
|
98877
|
-
branch: string;
|
|
98878
|
-
relativePath: string;
|
|
98879
|
-
workspaceSlug: string;
|
|
98880
|
-
projectKey: string;
|
|
98881
|
-
repoSlug: string;
|
|
98882
|
-
} | undefined;
|
|
98883
|
-
finishedAt?: Date | undefined;
|
|
98884
|
-
scheduleId?: string | null | undefined;
|
|
98885
|
-
brandId?: string | undefined;
|
|
98886
|
-
themeId?: string | undefined;
|
|
98887
|
-
estimatedExecutionTime?: number | undefined;
|
|
98888
|
-
result?: {
|
|
98889
|
-
error?: string | undefined;
|
|
98890
|
-
s3?: {
|
|
98891
|
-
path: string;
|
|
98892
|
-
files: string[];
|
|
98893
|
-
bucket: string;
|
|
98894
|
-
urlPrefix?: string | undefined;
|
|
98895
|
-
} | undefined;
|
|
98896
|
-
github?: {
|
|
98897
|
-
pullRequestUrl: string;
|
|
98898
|
-
} | undefined;
|
|
98899
|
-
azure?: {
|
|
98900
|
-
pullRequestUrl: string;
|
|
98901
|
-
} | undefined;
|
|
98902
|
-
gitlab?: {
|
|
98903
|
-
pullRequestUrl: string;
|
|
98904
|
-
} | undefined;
|
|
98905
|
-
bitbucket?: {
|
|
98906
|
-
pullRequestUrl: string;
|
|
98907
|
-
} | undefined;
|
|
98908
|
-
sndocs?: {
|
|
98909
|
-
url: string;
|
|
98910
|
-
} | undefined;
|
|
98911
|
-
} | undefined;
|
|
98912
|
-
createdByUserId?: string | undefined;
|
|
98913
|
-
}, {
|
|
98914
|
-
id: string;
|
|
98915
|
-
createdAt: Date;
|
|
98916
|
-
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
98917
|
-
designSystemId: string;
|
|
98918
|
-
designSystemVersionId: string;
|
|
98919
|
-
workspaceId: string;
|
|
98920
|
-
exporterId: string;
|
|
98921
|
-
webhookUrl?: string | undefined;
|
|
98922
|
-
destinationSnDocs?: {
|
|
98923
|
-
environment: "Live" | "Preview";
|
|
98924
|
-
} | undefined;
|
|
98925
|
-
destinationS3?: {} | undefined;
|
|
98926
|
-
destinationGithub?: {
|
|
98927
|
-
connectionId: string;
|
|
98928
|
-
branch: string;
|
|
98929
|
-
relativePath: string;
|
|
98930
|
-
} | undefined;
|
|
98931
|
-
destinationAzure?: {
|
|
98932
|
-
connectionId: string;
|
|
98933
|
-
branch: string;
|
|
98934
|
-
relativePath: string;
|
|
98935
|
-
organizationId: string;
|
|
98936
|
-
projectId: string;
|
|
98937
|
-
repositoryId: string;
|
|
98938
|
-
} | undefined;
|
|
98939
|
-
destinationGitlab?: {
|
|
98940
|
-
connectionId: string;
|
|
98941
|
-
branch: string;
|
|
98942
|
-
relativePath: string;
|
|
98943
|
-
projectId: string;
|
|
98944
|
-
} | undefined;
|
|
98945
|
-
destinationBitbucket?: {
|
|
98946
|
-
connectionId: string;
|
|
98947
|
-
branch: string;
|
|
98948
|
-
relativePath: string;
|
|
98949
|
-
workspaceSlug: string;
|
|
98950
|
-
projectKey: string;
|
|
98951
|
-
repoSlug: string;
|
|
98952
|
-
} | undefined;
|
|
98953
|
-
finishedAt?: Date | undefined;
|
|
98954
|
-
scheduleId?: string | null | undefined;
|
|
98955
|
-
brandId?: string | undefined;
|
|
98956
|
-
themeId?: string | undefined;
|
|
98957
|
-
estimatedExecutionTime?: number | undefined;
|
|
98958
|
-
result?: {
|
|
98959
|
-
error?: string | undefined;
|
|
98960
|
-
s3?: {
|
|
98961
|
-
path: string;
|
|
98962
|
-
files: string[];
|
|
98963
|
-
bucket: string;
|
|
98964
|
-
urlPrefix?: string | undefined;
|
|
98965
|
-
} | undefined;
|
|
98966
|
-
github?: {
|
|
98967
|
-
pullRequestUrl: string;
|
|
98968
|
-
} | undefined;
|
|
98969
|
-
azure?: {
|
|
98970
|
-
pullRequestUrl: string;
|
|
98971
|
-
} | undefined;
|
|
98972
|
-
gitlab?: {
|
|
98973
|
-
pullRequestUrl: string;
|
|
98974
|
-
} | undefined;
|
|
98975
|
-
bitbucket?: {
|
|
98976
|
-
pullRequestUrl: string;
|
|
98977
|
-
} | undefined;
|
|
98978
|
-
sndocs?: {
|
|
98979
|
-
url: string;
|
|
98980
|
-
} | undefined;
|
|
98981
|
-
} | undefined;
|
|
98982
|
-
createdByUserId?: string | undefined;
|
|
98983
|
-
}>;
|
|
98984
|
-
type ExportJob = z.infer<typeof ExportJob>;
|
|
98985
|
-
type CreateExportJob = DbCreateInputOmit<ExportJob>;
|
|
98986
|
-
type UpdateExportJob = Pick<DbUpdate<ExportJob>, "id" | "status" | "result" | "finishedAt">;
|
|
98987
|
-
declare const ExportJobFindByFilter: z.ZodObject<{
|
|
98988
|
-
status: z.ZodOptional<z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>>;
|
|
98989
|
-
designSystemId: z.ZodOptional<z.ZodString>;
|
|
98990
|
-
designSystemVersionId: z.ZodOptional<z.ZodString>;
|
|
98991
|
-
brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98992
|
-
createdByUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98993
|
-
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98994
|
-
exporterId: z.ZodOptional<z.ZodString>;
|
|
98995
|
-
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
98996
|
-
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
|
|
98997
|
-
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
98998
|
-
}, "strip", z.ZodTypeAny, {
|
|
98999
|
-
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
99000
|
-
designSystemId?: string | undefined;
|
|
99001
|
-
designSystemVersionId?: string | undefined;
|
|
99002
|
-
brandId?: string | undefined;
|
|
99003
|
-
createdByUserId?: string | undefined;
|
|
99004
|
-
themeId?: string | undefined;
|
|
99005
|
-
exporterId?: string | undefined;
|
|
99006
|
-
scheduleId?: string | null | undefined;
|
|
99007
|
-
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
99008
|
-
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
99009
|
-
}, {
|
|
99010
|
-
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
99011
|
-
designSystemId?: string | undefined;
|
|
99012
|
-
designSystemVersionId?: string | undefined;
|
|
99013
|
-
brandId?: string | undefined;
|
|
99014
|
-
createdByUserId?: string | undefined;
|
|
99015
|
-
themeId?: string | undefined;
|
|
99016
|
-
exporterId?: string | undefined;
|
|
99017
|
-
scheduleId?: string | null | undefined;
|
|
99018
|
-
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
99019
|
-
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
99020
|
-
}>;
|
|
99021
|
-
type ExportJobFindByFilter = z.infer<typeof ExportJobFindByFilter>;
|
|
99022
|
-
|
|
99023
|
-
declare const ExportJobDocumentationContext: z.ZodObject<{
|
|
99024
|
-
isSingleVersionDocs: z.ZodBoolean;
|
|
99025
|
-
versionSlug: z.ZodString;
|
|
99026
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99027
|
-
}, "strip", z.ZodTypeAny, {
|
|
99028
|
-
environment: "Live" | "Preview";
|
|
99029
|
-
isSingleVersionDocs: boolean;
|
|
99030
|
-
versionSlug: string;
|
|
99031
|
-
}, {
|
|
99032
|
-
environment: "Live" | "Preview";
|
|
99033
|
-
isSingleVersionDocs: boolean;
|
|
99034
|
-
versionSlug: string;
|
|
99035
|
-
}>;
|
|
99036
|
-
type ExportJobDocumentationContext = z.infer<typeof ExportJobDocumentationContext>;
|
|
99037
|
-
declare const ExportJobContext: z.ZodObject<{
|
|
99038
|
-
apiUrl: z.ZodString;
|
|
99039
|
-
accessToken: z.ZodString;
|
|
99040
|
-
designSystemId: z.ZodString;
|
|
99041
|
-
designSystemVersionId: z.ZodString;
|
|
99042
|
-
brandId: z.ZodOptional<z.ZodString>;
|
|
99043
|
-
exporterPackageUrl: z.ZodString;
|
|
99044
|
-
exporterPropertyValues: z.ZodArray<z.ZodObject<{
|
|
99045
|
-
key: z.ZodString;
|
|
99046
|
-
value: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodObject<{
|
|
99047
|
-
asset: z.ZodOptional<z.ZodObject<{
|
|
99048
|
-
type: z.ZodEnum<["image", "figmaFrame"]>;
|
|
99049
|
-
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99050
|
-
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99051
|
-
figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
99052
|
-
persistentId: string;
|
|
99053
|
-
sourceId: string;
|
|
99054
|
-
sourceFrameId: string;
|
|
99055
|
-
title?: string | undefined;
|
|
99056
|
-
description?: string | undefined;
|
|
99057
|
-
backgroundColor?: {
|
|
99058
|
-
value: string;
|
|
99059
|
-
} | undefined;
|
|
99060
|
-
origin?: {
|
|
99061
|
-
sourceFileName?: string | undefined;
|
|
99062
|
-
title?: string | undefined;
|
|
99063
|
-
previewUrl?: string | undefined;
|
|
99064
|
-
valid?: boolean | undefined;
|
|
99065
|
-
referenceId?: string | undefined;
|
|
99066
|
-
assetId?: string | undefined;
|
|
99067
|
-
assetScale?: number | undefined;
|
|
99068
|
-
width?: number | undefined;
|
|
99069
|
-
height?: number | undefined;
|
|
99070
|
-
} | undefined;
|
|
99071
|
-
}, z.ZodTypeDef, {
|
|
98443
|
+
asset?: {
|
|
98444
|
+
type: "image" | "figmaFrame";
|
|
98445
|
+
id?: string | null | undefined;
|
|
98446
|
+
url?: string | null | undefined;
|
|
98447
|
+
figmaFrame?: {
|
|
99072
98448
|
persistentId: string;
|
|
99073
98449
|
sourceId: string;
|
|
99074
98450
|
sourceFrameId: string;
|
|
@@ -99088,166 +98464,18 @@ declare const ExportJobContext: z.ZodObject<{
|
|
|
99088
98464
|
width?: number | null | undefined;
|
|
99089
98465
|
height?: number | null | undefined;
|
|
99090
98466
|
} | null | undefined;
|
|
99091
|
-
}
|
|
99092
|
-
|
|
99093
|
-
|
|
99094
|
-
|
|
99095
|
-
|
|
99096
|
-
|
|
99097
|
-
|
|
99098
|
-
|
|
99099
|
-
|
|
99100
|
-
|
|
99101
|
-
|
|
99102
|
-
|
|
99103
|
-
previewUrl?: string | undefined;
|
|
99104
|
-
valid?: boolean | undefined;
|
|
99105
|
-
referenceId?: string | undefined;
|
|
99106
|
-
assetId?: string | undefined;
|
|
99107
|
-
assetScale?: number | undefined;
|
|
99108
|
-
width?: number | undefined;
|
|
99109
|
-
height?: number | undefined;
|
|
99110
|
-
} | undefined;
|
|
99111
|
-
} | undefined, {
|
|
99112
|
-
persistentId: string;
|
|
99113
|
-
sourceId: string;
|
|
99114
|
-
sourceFrameId: string;
|
|
99115
|
-
title?: string | null | undefined;
|
|
99116
|
-
description?: string | null | undefined;
|
|
99117
|
-
backgroundColor?: {
|
|
99118
|
-
value: string;
|
|
99119
|
-
} | null | undefined;
|
|
99120
|
-
origin?: {
|
|
99121
|
-
sourceFileName?: string | null | undefined;
|
|
99122
|
-
title?: string | null | undefined;
|
|
99123
|
-
previewUrl?: string | null | undefined;
|
|
99124
|
-
valid?: boolean | null | undefined;
|
|
99125
|
-
referenceId?: string | null | undefined;
|
|
99126
|
-
assetId?: string | null | undefined;
|
|
99127
|
-
assetScale?: number | null | undefined;
|
|
99128
|
-
width?: number | null | undefined;
|
|
99129
|
-
height?: number | null | undefined;
|
|
99130
|
-
} | null | undefined;
|
|
99131
|
-
} | null | undefined>;
|
|
99132
|
-
}, "strip", z.ZodTypeAny, {
|
|
99133
|
-
type: "image" | "figmaFrame";
|
|
99134
|
-
id?: string | undefined;
|
|
99135
|
-
url?: string | undefined;
|
|
99136
|
-
figmaFrame?: {
|
|
99137
|
-
persistentId: string;
|
|
99138
|
-
sourceId: string;
|
|
99139
|
-
sourceFrameId: string;
|
|
99140
|
-
title?: string | undefined;
|
|
99141
|
-
description?: string | undefined;
|
|
99142
|
-
backgroundColor?: {
|
|
99143
|
-
value: string;
|
|
99144
|
-
} | undefined;
|
|
99145
|
-
origin?: {
|
|
99146
|
-
sourceFileName?: string | undefined;
|
|
99147
|
-
title?: string | undefined;
|
|
99148
|
-
previewUrl?: string | undefined;
|
|
99149
|
-
valid?: boolean | undefined;
|
|
99150
|
-
referenceId?: string | undefined;
|
|
99151
|
-
assetId?: string | undefined;
|
|
99152
|
-
assetScale?: number | undefined;
|
|
99153
|
-
width?: number | undefined;
|
|
99154
|
-
height?: number | undefined;
|
|
99155
|
-
} | undefined;
|
|
99156
|
-
} | undefined;
|
|
99157
|
-
}, {
|
|
99158
|
-
type: "image" | "figmaFrame";
|
|
99159
|
-
id?: string | null | undefined;
|
|
99160
|
-
url?: string | null | undefined;
|
|
99161
|
-
figmaFrame?: {
|
|
99162
|
-
persistentId: string;
|
|
99163
|
-
sourceId: string;
|
|
99164
|
-
sourceFrameId: string;
|
|
99165
|
-
title?: string | null | undefined;
|
|
99166
|
-
description?: string | null | undefined;
|
|
99167
|
-
backgroundColor?: {
|
|
99168
|
-
value: string;
|
|
99169
|
-
} | null | undefined;
|
|
99170
|
-
origin?: {
|
|
99171
|
-
sourceFileName?: string | null | undefined;
|
|
99172
|
-
title?: string | null | undefined;
|
|
99173
|
-
previewUrl?: string | null | undefined;
|
|
99174
|
-
valid?: boolean | null | undefined;
|
|
99175
|
-
referenceId?: string | null | undefined;
|
|
99176
|
-
assetId?: string | null | undefined;
|
|
99177
|
-
assetScale?: number | null | undefined;
|
|
99178
|
-
width?: number | null | undefined;
|
|
99179
|
-
height?: number | null | undefined;
|
|
99180
|
-
} | null | undefined;
|
|
99181
|
-
} | null | undefined;
|
|
99182
|
-
}>>;
|
|
99183
|
-
assetId: z.ZodOptional<z.ZodString>;
|
|
99184
|
-
assetUrl: z.ZodOptional<z.ZodString>;
|
|
99185
|
-
}, "strip", z.ZodTypeAny, {
|
|
99186
|
-
asset?: {
|
|
99187
|
-
type: "image" | "figmaFrame";
|
|
99188
|
-
id?: string | undefined;
|
|
99189
|
-
url?: string | undefined;
|
|
99190
|
-
figmaFrame?: {
|
|
99191
|
-
persistentId: string;
|
|
99192
|
-
sourceId: string;
|
|
99193
|
-
sourceFrameId: string;
|
|
99194
|
-
title?: string | undefined;
|
|
99195
|
-
description?: string | undefined;
|
|
99196
|
-
backgroundColor?: {
|
|
99197
|
-
value: string;
|
|
99198
|
-
} | undefined;
|
|
99199
|
-
origin?: {
|
|
99200
|
-
sourceFileName?: string | undefined;
|
|
99201
|
-
title?: string | undefined;
|
|
99202
|
-
previewUrl?: string | undefined;
|
|
99203
|
-
valid?: boolean | undefined;
|
|
99204
|
-
referenceId?: string | undefined;
|
|
99205
|
-
assetId?: string | undefined;
|
|
99206
|
-
assetScale?: number | undefined;
|
|
99207
|
-
width?: number | undefined;
|
|
99208
|
-
height?: number | undefined;
|
|
99209
|
-
} | undefined;
|
|
99210
|
-
} | undefined;
|
|
99211
|
-
} | undefined;
|
|
99212
|
-
assetId?: string | undefined;
|
|
99213
|
-
assetUrl?: string | undefined;
|
|
99214
|
-
}, {
|
|
99215
|
-
asset?: {
|
|
99216
|
-
type: "image" | "figmaFrame";
|
|
99217
|
-
id?: string | null | undefined;
|
|
99218
|
-
url?: string | null | undefined;
|
|
99219
|
-
figmaFrame?: {
|
|
99220
|
-
persistentId: string;
|
|
99221
|
-
sourceId: string;
|
|
99222
|
-
sourceFrameId: string;
|
|
99223
|
-
title?: string | null | undefined;
|
|
99224
|
-
description?: string | null | undefined;
|
|
99225
|
-
backgroundColor?: {
|
|
99226
|
-
value: string;
|
|
99227
|
-
} | null | undefined;
|
|
99228
|
-
origin?: {
|
|
99229
|
-
sourceFileName?: string | null | undefined;
|
|
99230
|
-
title?: string | null | undefined;
|
|
99231
|
-
previewUrl?: string | null | undefined;
|
|
99232
|
-
valid?: boolean | null | undefined;
|
|
99233
|
-
referenceId?: string | null | undefined;
|
|
99234
|
-
assetId?: string | null | undefined;
|
|
99235
|
-
assetScale?: number | null | undefined;
|
|
99236
|
-
width?: number | null | undefined;
|
|
99237
|
-
height?: number | null | undefined;
|
|
99238
|
-
} | null | undefined;
|
|
99239
|
-
} | null | undefined;
|
|
99240
|
-
} | undefined;
|
|
99241
|
-
assetId?: string | undefined;
|
|
99242
|
-
assetUrl?: string | undefined;
|
|
99243
|
-
}>, z.ZodObject<{
|
|
99244
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
99245
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
99246
|
-
opacity: {
|
|
99247
|
-
aliasTo?: string | undefined;
|
|
99248
|
-
value?: {
|
|
99249
|
-
unit: "Pixels" | "Raw";
|
|
99250
|
-
measure: number;
|
|
98467
|
+
} | null | undefined;
|
|
98468
|
+
} | undefined;
|
|
98469
|
+
assetId?: string | undefined;
|
|
98470
|
+
assetUrl?: string | undefined;
|
|
98471
|
+
}>, z.ZodObject<{
|
|
98472
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
98473
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
98474
|
+
opacity: {
|
|
98475
|
+
aliasTo?: string | undefined;
|
|
98476
|
+
value?: {
|
|
98477
|
+
unit: "Pixels" | "Raw";
|
|
98478
|
+
measure: number;
|
|
99251
98479
|
} | undefined;
|
|
99252
98480
|
};
|
|
99253
98481
|
color: (string | {
|
|
@@ -100496,28 +99724,800 @@ declare const ExportJobContext: z.ZodObject<{
|
|
|
100496
99724
|
key: string;
|
|
100497
99725
|
}[];
|
|
100498
99726
|
brandId?: string | undefined;
|
|
100499
|
-
documentation?: {
|
|
99727
|
+
documentation?: {
|
|
99728
|
+
environment: "Live" | "Preview";
|
|
99729
|
+
isSingleVersionDocs: boolean;
|
|
99730
|
+
versionSlug: string;
|
|
99731
|
+
} | undefined;
|
|
99732
|
+
}>;
|
|
99733
|
+
type ExportJobContext = z.infer<typeof ExportJobContext>;
|
|
99734
|
+
|
|
99735
|
+
declare const ExporterFunctionPayload: z.ZodObject<{
|
|
99736
|
+
exportJobId: z.ZodString;
|
|
99737
|
+
exportContextId: z.ZodString;
|
|
99738
|
+
designSystemId: z.ZodString;
|
|
99739
|
+
}, "strip", z.ZodTypeAny, {
|
|
99740
|
+
designSystemId: string;
|
|
99741
|
+
exportJobId: string;
|
|
99742
|
+
exportContextId: string;
|
|
99743
|
+
}, {
|
|
99744
|
+
designSystemId: string;
|
|
99745
|
+
exportJobId: string;
|
|
99746
|
+
exportContextId: string;
|
|
99747
|
+
}>;
|
|
99748
|
+
type ExporterFunctionPayload = z.infer<typeof ExporterFunctionPayload>;
|
|
99749
|
+
|
|
99750
|
+
declare const ExporterDestinationDocs: z.ZodObject<{
|
|
99751
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99752
|
+
}, "strip", z.ZodTypeAny, {
|
|
99753
|
+
environment: "Live" | "Preview";
|
|
99754
|
+
}, {
|
|
99755
|
+
environment: "Live" | "Preview";
|
|
99756
|
+
}>;
|
|
99757
|
+
type ExporterDestinationDocs = z.infer<typeof ExporterDestinationDocs>;
|
|
99758
|
+
declare const ExporterDestinationS3: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
99759
|
+
type ExporterDestinationS3 = z.infer<typeof ExporterDestinationS3>;
|
|
99760
|
+
declare const ExporterDestinationGithub: z.ZodObject<{
|
|
99761
|
+
connectionId: z.ZodString;
|
|
99762
|
+
branch: z.ZodString;
|
|
99763
|
+
relativePath: z.ZodString;
|
|
99764
|
+
}, "strip", z.ZodTypeAny, {
|
|
99765
|
+
connectionId: string;
|
|
99766
|
+
branch: string;
|
|
99767
|
+
relativePath: string;
|
|
99768
|
+
}, {
|
|
99769
|
+
connectionId: string;
|
|
99770
|
+
branch: string;
|
|
99771
|
+
relativePath: string;
|
|
99772
|
+
}>;
|
|
99773
|
+
type ExporterDestinationGithub = z.infer<typeof ExporterDestinationGithub>;
|
|
99774
|
+
declare const ExporterDestinationAzure: z.ZodObject<{
|
|
99775
|
+
connectionId: z.ZodString;
|
|
99776
|
+
organizationId: z.ZodString;
|
|
99777
|
+
projectId: z.ZodString;
|
|
99778
|
+
repositoryId: z.ZodString;
|
|
99779
|
+
branch: z.ZodString;
|
|
99780
|
+
relativePath: z.ZodString;
|
|
99781
|
+
}, "strip", z.ZodTypeAny, {
|
|
99782
|
+
connectionId: string;
|
|
99783
|
+
branch: string;
|
|
99784
|
+
relativePath: string;
|
|
99785
|
+
organizationId: string;
|
|
99786
|
+
projectId: string;
|
|
99787
|
+
repositoryId: string;
|
|
99788
|
+
}, {
|
|
99789
|
+
connectionId: string;
|
|
99790
|
+
branch: string;
|
|
99791
|
+
relativePath: string;
|
|
99792
|
+
organizationId: string;
|
|
99793
|
+
projectId: string;
|
|
99794
|
+
repositoryId: string;
|
|
99795
|
+
}>;
|
|
99796
|
+
type ExporterDestinationAzure = z.infer<typeof ExporterDestinationAzure>;
|
|
99797
|
+
declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
99798
|
+
connectionId: z.ZodString;
|
|
99799
|
+
projectId: z.ZodString;
|
|
99800
|
+
branch: z.ZodString;
|
|
99801
|
+
relativePath: z.ZodString;
|
|
99802
|
+
}, "strip", z.ZodTypeAny, {
|
|
99803
|
+
connectionId: string;
|
|
99804
|
+
branch: string;
|
|
99805
|
+
relativePath: string;
|
|
99806
|
+
projectId: string;
|
|
99807
|
+
}, {
|
|
99808
|
+
connectionId: string;
|
|
99809
|
+
branch: string;
|
|
99810
|
+
relativePath: string;
|
|
99811
|
+
projectId: string;
|
|
99812
|
+
}>;
|
|
99813
|
+
type ExporterDestinationGitlab = z.infer<typeof ExporterDestinationGitlab>;
|
|
99814
|
+
declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
99815
|
+
connectionId: z.ZodString;
|
|
99816
|
+
workspaceSlug: z.ZodString;
|
|
99817
|
+
projectKey: z.ZodString;
|
|
99818
|
+
repoSlug: z.ZodString;
|
|
99819
|
+
branch: z.ZodString;
|
|
99820
|
+
relativePath: z.ZodString;
|
|
99821
|
+
}, "strip", z.ZodTypeAny, {
|
|
99822
|
+
connectionId: string;
|
|
99823
|
+
branch: string;
|
|
99824
|
+
relativePath: string;
|
|
99825
|
+
workspaceSlug: string;
|
|
99826
|
+
projectKey: string;
|
|
99827
|
+
repoSlug: string;
|
|
99828
|
+
}, {
|
|
99829
|
+
connectionId: string;
|
|
99830
|
+
branch: string;
|
|
99831
|
+
relativePath: string;
|
|
99832
|
+
workspaceSlug: string;
|
|
99833
|
+
projectKey: string;
|
|
99834
|
+
repoSlug: string;
|
|
99835
|
+
}>;
|
|
99836
|
+
type ExporterDestinationBitbucket = z.infer<typeof ExporterDestinationBitbucket>;
|
|
99837
|
+
declare const ExportDestinationsMap: z.ZodObject<{
|
|
99838
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
99839
|
+
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
99840
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99841
|
+
}, "strip", z.ZodTypeAny, {
|
|
99842
|
+
environment: "Live" | "Preview";
|
|
99843
|
+
}, {
|
|
99844
|
+
environment: "Live" | "Preview";
|
|
99845
|
+
}>>;
|
|
99846
|
+
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
99847
|
+
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
99848
|
+
connectionId: z.ZodString;
|
|
99849
|
+
branch: z.ZodString;
|
|
99850
|
+
relativePath: z.ZodString;
|
|
99851
|
+
}, "strip", z.ZodTypeAny, {
|
|
99852
|
+
connectionId: string;
|
|
99853
|
+
branch: string;
|
|
99854
|
+
relativePath: string;
|
|
99855
|
+
}, {
|
|
99856
|
+
connectionId: string;
|
|
99857
|
+
branch: string;
|
|
99858
|
+
relativePath: string;
|
|
99859
|
+
}>>;
|
|
99860
|
+
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
99861
|
+
connectionId: z.ZodString;
|
|
99862
|
+
organizationId: z.ZodString;
|
|
99863
|
+
projectId: z.ZodString;
|
|
99864
|
+
repositoryId: z.ZodString;
|
|
99865
|
+
branch: z.ZodString;
|
|
99866
|
+
relativePath: z.ZodString;
|
|
99867
|
+
}, "strip", z.ZodTypeAny, {
|
|
99868
|
+
connectionId: string;
|
|
99869
|
+
branch: string;
|
|
99870
|
+
relativePath: string;
|
|
99871
|
+
organizationId: string;
|
|
99872
|
+
projectId: string;
|
|
99873
|
+
repositoryId: string;
|
|
99874
|
+
}, {
|
|
99875
|
+
connectionId: string;
|
|
99876
|
+
branch: string;
|
|
99877
|
+
relativePath: string;
|
|
99878
|
+
organizationId: string;
|
|
99879
|
+
projectId: string;
|
|
99880
|
+
repositoryId: string;
|
|
99881
|
+
}>>;
|
|
99882
|
+
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
99883
|
+
connectionId: z.ZodString;
|
|
99884
|
+
projectId: z.ZodString;
|
|
99885
|
+
branch: z.ZodString;
|
|
99886
|
+
relativePath: z.ZodString;
|
|
99887
|
+
}, "strip", z.ZodTypeAny, {
|
|
99888
|
+
connectionId: string;
|
|
99889
|
+
branch: string;
|
|
99890
|
+
relativePath: string;
|
|
99891
|
+
projectId: string;
|
|
99892
|
+
}, {
|
|
99893
|
+
connectionId: string;
|
|
99894
|
+
branch: string;
|
|
99895
|
+
relativePath: string;
|
|
99896
|
+
projectId: string;
|
|
99897
|
+
}>>;
|
|
99898
|
+
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
99899
|
+
connectionId: z.ZodString;
|
|
99900
|
+
workspaceSlug: z.ZodString;
|
|
99901
|
+
projectKey: z.ZodString;
|
|
99902
|
+
repoSlug: z.ZodString;
|
|
99903
|
+
branch: z.ZodString;
|
|
99904
|
+
relativePath: z.ZodString;
|
|
99905
|
+
}, "strip", z.ZodTypeAny, {
|
|
99906
|
+
connectionId: string;
|
|
99907
|
+
branch: string;
|
|
99908
|
+
relativePath: string;
|
|
99909
|
+
workspaceSlug: string;
|
|
99910
|
+
projectKey: string;
|
|
99911
|
+
repoSlug: string;
|
|
99912
|
+
}, {
|
|
99913
|
+
connectionId: string;
|
|
99914
|
+
branch: string;
|
|
99915
|
+
relativePath: string;
|
|
99916
|
+
workspaceSlug: string;
|
|
99917
|
+
projectKey: string;
|
|
99918
|
+
repoSlug: string;
|
|
99919
|
+
}>>;
|
|
99920
|
+
}, "strip", z.ZodTypeAny, {
|
|
99921
|
+
webhookUrl?: string | undefined;
|
|
99922
|
+
destinationSnDocs?: {
|
|
99923
|
+
environment: "Live" | "Preview";
|
|
99924
|
+
} | undefined;
|
|
99925
|
+
destinationS3?: {} | undefined;
|
|
99926
|
+
destinationGithub?: {
|
|
99927
|
+
connectionId: string;
|
|
99928
|
+
branch: string;
|
|
99929
|
+
relativePath: string;
|
|
99930
|
+
} | undefined;
|
|
99931
|
+
destinationAzure?: {
|
|
99932
|
+
connectionId: string;
|
|
99933
|
+
branch: string;
|
|
99934
|
+
relativePath: string;
|
|
99935
|
+
organizationId: string;
|
|
99936
|
+
projectId: string;
|
|
99937
|
+
repositoryId: string;
|
|
99938
|
+
} | undefined;
|
|
99939
|
+
destinationGitlab?: {
|
|
99940
|
+
connectionId: string;
|
|
99941
|
+
branch: string;
|
|
99942
|
+
relativePath: string;
|
|
99943
|
+
projectId: string;
|
|
99944
|
+
} | undefined;
|
|
99945
|
+
destinationBitbucket?: {
|
|
99946
|
+
connectionId: string;
|
|
99947
|
+
branch: string;
|
|
99948
|
+
relativePath: string;
|
|
99949
|
+
workspaceSlug: string;
|
|
99950
|
+
projectKey: string;
|
|
99951
|
+
repoSlug: string;
|
|
99952
|
+
} | undefined;
|
|
99953
|
+
}, {
|
|
99954
|
+
webhookUrl?: string | undefined;
|
|
99955
|
+
destinationSnDocs?: {
|
|
99956
|
+
environment: "Live" | "Preview";
|
|
99957
|
+
} | undefined;
|
|
99958
|
+
destinationS3?: {} | undefined;
|
|
99959
|
+
destinationGithub?: {
|
|
99960
|
+
connectionId: string;
|
|
99961
|
+
branch: string;
|
|
99962
|
+
relativePath: string;
|
|
99963
|
+
} | undefined;
|
|
99964
|
+
destinationAzure?: {
|
|
99965
|
+
connectionId: string;
|
|
99966
|
+
branch: string;
|
|
99967
|
+
relativePath: string;
|
|
99968
|
+
organizationId: string;
|
|
99969
|
+
projectId: string;
|
|
99970
|
+
repositoryId: string;
|
|
99971
|
+
} | undefined;
|
|
99972
|
+
destinationGitlab?: {
|
|
99973
|
+
connectionId: string;
|
|
99974
|
+
branch: string;
|
|
99975
|
+
relativePath: string;
|
|
99976
|
+
projectId: string;
|
|
99977
|
+
} | undefined;
|
|
99978
|
+
destinationBitbucket?: {
|
|
99979
|
+
connectionId: string;
|
|
99980
|
+
branch: string;
|
|
99981
|
+
relativePath: string;
|
|
99982
|
+
workspaceSlug: string;
|
|
99983
|
+
projectKey: string;
|
|
99984
|
+
repoSlug: string;
|
|
99985
|
+
} | undefined;
|
|
99986
|
+
}>;
|
|
99987
|
+
type ExportDestinationsMap = z.infer<typeof ExportDestinationsMap>;
|
|
99988
|
+
|
|
99989
|
+
declare const ExportJobDestinationType: z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>;
|
|
99990
|
+
type ExportJobDestinationType = z.infer<typeof ExportJobDestinationType>;
|
|
99991
|
+
declare const ExportJobStatus: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
99992
|
+
type ExportJobStatus = z.infer<typeof ExportJobStatus>;
|
|
99993
|
+
declare const ExportJobLogEntryType: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
99994
|
+
type ExportJobLogEntryType = z.infer<typeof ExportJobLogEntryType>;
|
|
99995
|
+
declare const ExportJobLogEntry: z.ZodObject<{
|
|
99996
|
+
id: z.ZodOptional<z.ZodString>;
|
|
99997
|
+
time: z.ZodDate;
|
|
99998
|
+
type: z.ZodEnum<["success", "info", "warning", "error", "user"]>;
|
|
99999
|
+
message: z.ZodString;
|
|
100000
|
+
}, "strip", z.ZodTypeAny, {
|
|
100001
|
+
message: string;
|
|
100002
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
100003
|
+
time: Date;
|
|
100004
|
+
id?: string | undefined;
|
|
100005
|
+
}, {
|
|
100006
|
+
message: string;
|
|
100007
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
100008
|
+
time: Date;
|
|
100009
|
+
id?: string | undefined;
|
|
100010
|
+
}>;
|
|
100011
|
+
type ExportJobLogEntry = z.infer<typeof ExportJobLogEntry>;
|
|
100012
|
+
declare const ExportJobPullRequestDestinationResult: z.ZodObject<{
|
|
100013
|
+
pullRequestUrl: z.ZodString;
|
|
100014
|
+
}, "strip", z.ZodTypeAny, {
|
|
100015
|
+
pullRequestUrl: string;
|
|
100016
|
+
}, {
|
|
100017
|
+
pullRequestUrl: string;
|
|
100018
|
+
}>;
|
|
100019
|
+
type ExportJobPullRequestDestinationResult = z.infer<typeof ExportJobPullRequestDestinationResult>;
|
|
100020
|
+
declare const ExportJobS3DestinationResult: z.ZodObject<{
|
|
100021
|
+
bucket: z.ZodString;
|
|
100022
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
100023
|
+
path: z.ZodString;
|
|
100024
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
100025
|
+
}, "strip", z.ZodTypeAny, {
|
|
100026
|
+
path: string;
|
|
100027
|
+
files: string[];
|
|
100028
|
+
bucket: string;
|
|
100029
|
+
urlPrefix?: string | undefined;
|
|
100030
|
+
}, {
|
|
100031
|
+
path: string;
|
|
100032
|
+
files: string[];
|
|
100033
|
+
bucket: string;
|
|
100034
|
+
urlPrefix?: string | undefined;
|
|
100035
|
+
}>;
|
|
100036
|
+
type ExportJobS3DestinationResult = z.infer<typeof ExportJobS3DestinationResult>;
|
|
100037
|
+
declare const ExportJobDocsDestinationResult: z.ZodObject<{
|
|
100038
|
+
url: z.ZodString;
|
|
100039
|
+
}, "strip", z.ZodTypeAny, {
|
|
100040
|
+
url: string;
|
|
100041
|
+
}, {
|
|
100042
|
+
url: string;
|
|
100043
|
+
}>;
|
|
100044
|
+
type ExportJobDocsDestinationResult = z.infer<typeof ExportJobDocsDestinationResult>;
|
|
100045
|
+
declare const ExportJobResult: z.ZodObject<{
|
|
100046
|
+
error: z.ZodOptional<z.ZodString>;
|
|
100047
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
100048
|
+
bucket: z.ZodString;
|
|
100049
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
100050
|
+
path: z.ZodString;
|
|
100051
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
100052
|
+
}, "strip", z.ZodTypeAny, {
|
|
100053
|
+
path: string;
|
|
100054
|
+
files: string[];
|
|
100055
|
+
bucket: string;
|
|
100056
|
+
urlPrefix?: string | undefined;
|
|
100057
|
+
}, {
|
|
100058
|
+
path: string;
|
|
100059
|
+
files: string[];
|
|
100060
|
+
bucket: string;
|
|
100061
|
+
urlPrefix?: string | undefined;
|
|
100062
|
+
}>>;
|
|
100063
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
100064
|
+
pullRequestUrl: z.ZodString;
|
|
100065
|
+
}, "strip", z.ZodTypeAny, {
|
|
100066
|
+
pullRequestUrl: string;
|
|
100067
|
+
}, {
|
|
100068
|
+
pullRequestUrl: string;
|
|
100069
|
+
}>>;
|
|
100070
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
100071
|
+
pullRequestUrl: z.ZodString;
|
|
100072
|
+
}, "strip", z.ZodTypeAny, {
|
|
100073
|
+
pullRequestUrl: string;
|
|
100074
|
+
}, {
|
|
100075
|
+
pullRequestUrl: string;
|
|
100076
|
+
}>>;
|
|
100077
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
100078
|
+
pullRequestUrl: z.ZodString;
|
|
100079
|
+
}, "strip", z.ZodTypeAny, {
|
|
100080
|
+
pullRequestUrl: string;
|
|
100081
|
+
}, {
|
|
100082
|
+
pullRequestUrl: string;
|
|
100083
|
+
}>>;
|
|
100084
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
100085
|
+
pullRequestUrl: z.ZodString;
|
|
100086
|
+
}, "strip", z.ZodTypeAny, {
|
|
100087
|
+
pullRequestUrl: string;
|
|
100088
|
+
}, {
|
|
100089
|
+
pullRequestUrl: string;
|
|
100090
|
+
}>>;
|
|
100091
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
100092
|
+
url: z.ZodString;
|
|
100093
|
+
}, "strip", z.ZodTypeAny, {
|
|
100094
|
+
url: string;
|
|
100095
|
+
}, {
|
|
100096
|
+
url: string;
|
|
100097
|
+
}>>;
|
|
100098
|
+
}, "strip", z.ZodTypeAny, {
|
|
100099
|
+
error?: string | undefined;
|
|
100100
|
+
s3?: {
|
|
100101
|
+
path: string;
|
|
100102
|
+
files: string[];
|
|
100103
|
+
bucket: string;
|
|
100104
|
+
urlPrefix?: string | undefined;
|
|
100105
|
+
} | undefined;
|
|
100106
|
+
github?: {
|
|
100107
|
+
pullRequestUrl: string;
|
|
100108
|
+
} | undefined;
|
|
100109
|
+
azure?: {
|
|
100110
|
+
pullRequestUrl: string;
|
|
100111
|
+
} | undefined;
|
|
100112
|
+
gitlab?: {
|
|
100113
|
+
pullRequestUrl: string;
|
|
100114
|
+
} | undefined;
|
|
100115
|
+
bitbucket?: {
|
|
100116
|
+
pullRequestUrl: string;
|
|
100117
|
+
} | undefined;
|
|
100118
|
+
sndocs?: {
|
|
100119
|
+
url: string;
|
|
100120
|
+
} | undefined;
|
|
100121
|
+
}, {
|
|
100122
|
+
error?: string | undefined;
|
|
100123
|
+
s3?: {
|
|
100124
|
+
path: string;
|
|
100125
|
+
files: string[];
|
|
100126
|
+
bucket: string;
|
|
100127
|
+
urlPrefix?: string | undefined;
|
|
100128
|
+
} | undefined;
|
|
100129
|
+
github?: {
|
|
100130
|
+
pullRequestUrl: string;
|
|
100131
|
+
} | undefined;
|
|
100132
|
+
azure?: {
|
|
100133
|
+
pullRequestUrl: string;
|
|
100134
|
+
} | undefined;
|
|
100135
|
+
gitlab?: {
|
|
100136
|
+
pullRequestUrl: string;
|
|
100137
|
+
} | undefined;
|
|
100138
|
+
bitbucket?: {
|
|
100139
|
+
pullRequestUrl: string;
|
|
100140
|
+
} | undefined;
|
|
100141
|
+
sndocs?: {
|
|
100142
|
+
url: string;
|
|
100143
|
+
} | undefined;
|
|
100144
|
+
}>;
|
|
100145
|
+
type ExportJobResult = z.infer<typeof ExportJobResult>;
|
|
100146
|
+
declare const ExportJob: z.ZodObject<{
|
|
100147
|
+
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
100148
|
+
destinationSnDocs: z.ZodOptional<z.ZodObject<{
|
|
100149
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
100150
|
+
}, "strip", z.ZodTypeAny, {
|
|
100151
|
+
environment: "Live" | "Preview";
|
|
100152
|
+
}, {
|
|
100153
|
+
environment: "Live" | "Preview";
|
|
100154
|
+
}>>;
|
|
100155
|
+
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
100156
|
+
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
100157
|
+
connectionId: z.ZodString;
|
|
100158
|
+
branch: z.ZodString;
|
|
100159
|
+
relativePath: z.ZodString;
|
|
100160
|
+
}, "strip", z.ZodTypeAny, {
|
|
100161
|
+
connectionId: string;
|
|
100162
|
+
branch: string;
|
|
100163
|
+
relativePath: string;
|
|
100164
|
+
}, {
|
|
100165
|
+
connectionId: string;
|
|
100166
|
+
branch: string;
|
|
100167
|
+
relativePath: string;
|
|
100168
|
+
}>>;
|
|
100169
|
+
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
100170
|
+
connectionId: z.ZodString;
|
|
100171
|
+
organizationId: z.ZodString;
|
|
100172
|
+
projectId: z.ZodString;
|
|
100173
|
+
repositoryId: z.ZodString;
|
|
100174
|
+
branch: z.ZodString;
|
|
100175
|
+
relativePath: z.ZodString;
|
|
100176
|
+
}, "strip", z.ZodTypeAny, {
|
|
100177
|
+
connectionId: string;
|
|
100178
|
+
branch: string;
|
|
100179
|
+
relativePath: string;
|
|
100180
|
+
organizationId: string;
|
|
100181
|
+
projectId: string;
|
|
100182
|
+
repositoryId: string;
|
|
100183
|
+
}, {
|
|
100184
|
+
connectionId: string;
|
|
100185
|
+
branch: string;
|
|
100186
|
+
relativePath: string;
|
|
100187
|
+
organizationId: string;
|
|
100188
|
+
projectId: string;
|
|
100189
|
+
repositoryId: string;
|
|
100190
|
+
}>>;
|
|
100191
|
+
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
100192
|
+
connectionId: z.ZodString;
|
|
100193
|
+
projectId: z.ZodString;
|
|
100194
|
+
branch: z.ZodString;
|
|
100195
|
+
relativePath: z.ZodString;
|
|
100196
|
+
}, "strip", z.ZodTypeAny, {
|
|
100197
|
+
connectionId: string;
|
|
100198
|
+
branch: string;
|
|
100199
|
+
relativePath: string;
|
|
100200
|
+
projectId: string;
|
|
100201
|
+
}, {
|
|
100202
|
+
connectionId: string;
|
|
100203
|
+
branch: string;
|
|
100204
|
+
relativePath: string;
|
|
100205
|
+
projectId: string;
|
|
100206
|
+
}>>;
|
|
100207
|
+
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
100208
|
+
connectionId: z.ZodString;
|
|
100209
|
+
workspaceSlug: z.ZodString;
|
|
100210
|
+
projectKey: z.ZodString;
|
|
100211
|
+
repoSlug: z.ZodString;
|
|
100212
|
+
branch: z.ZodString;
|
|
100213
|
+
relativePath: z.ZodString;
|
|
100214
|
+
}, "strip", z.ZodTypeAny, {
|
|
100215
|
+
connectionId: string;
|
|
100216
|
+
branch: string;
|
|
100217
|
+
relativePath: string;
|
|
100218
|
+
workspaceSlug: string;
|
|
100219
|
+
projectKey: string;
|
|
100220
|
+
repoSlug: string;
|
|
100221
|
+
}, {
|
|
100222
|
+
connectionId: string;
|
|
100223
|
+
branch: string;
|
|
100224
|
+
relativePath: string;
|
|
100225
|
+
workspaceSlug: string;
|
|
100226
|
+
projectKey: string;
|
|
100227
|
+
repoSlug: string;
|
|
100228
|
+
}>>;
|
|
100229
|
+
id: z.ZodString;
|
|
100230
|
+
createdAt: z.ZodDate;
|
|
100231
|
+
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
100232
|
+
designSystemId: z.ZodString;
|
|
100233
|
+
designSystemVersionId: z.ZodString;
|
|
100234
|
+
workspaceId: z.ZodString;
|
|
100235
|
+
scheduleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100236
|
+
exporterId: z.ZodString;
|
|
100237
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
100238
|
+
themeId: z.ZodOptional<z.ZodString>;
|
|
100239
|
+
estimatedExecutionTime: z.ZodOptional<z.ZodNumber>;
|
|
100240
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
100241
|
+
result: z.ZodOptional<z.ZodObject<{
|
|
100242
|
+
error: z.ZodOptional<z.ZodString>;
|
|
100243
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
100244
|
+
bucket: z.ZodString;
|
|
100245
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
100246
|
+
path: z.ZodString;
|
|
100247
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
100248
|
+
}, "strip", z.ZodTypeAny, {
|
|
100249
|
+
path: string;
|
|
100250
|
+
files: string[];
|
|
100251
|
+
bucket: string;
|
|
100252
|
+
urlPrefix?: string | undefined;
|
|
100253
|
+
}, {
|
|
100254
|
+
path: string;
|
|
100255
|
+
files: string[];
|
|
100256
|
+
bucket: string;
|
|
100257
|
+
urlPrefix?: string | undefined;
|
|
100258
|
+
}>>;
|
|
100259
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
100260
|
+
pullRequestUrl: z.ZodString;
|
|
100261
|
+
}, "strip", z.ZodTypeAny, {
|
|
100262
|
+
pullRequestUrl: string;
|
|
100263
|
+
}, {
|
|
100264
|
+
pullRequestUrl: string;
|
|
100265
|
+
}>>;
|
|
100266
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
100267
|
+
pullRequestUrl: z.ZodString;
|
|
100268
|
+
}, "strip", z.ZodTypeAny, {
|
|
100269
|
+
pullRequestUrl: string;
|
|
100270
|
+
}, {
|
|
100271
|
+
pullRequestUrl: string;
|
|
100272
|
+
}>>;
|
|
100273
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
100274
|
+
pullRequestUrl: z.ZodString;
|
|
100275
|
+
}, "strip", z.ZodTypeAny, {
|
|
100276
|
+
pullRequestUrl: string;
|
|
100277
|
+
}, {
|
|
100278
|
+
pullRequestUrl: string;
|
|
100279
|
+
}>>;
|
|
100280
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
100281
|
+
pullRequestUrl: z.ZodString;
|
|
100282
|
+
}, "strip", z.ZodTypeAny, {
|
|
100283
|
+
pullRequestUrl: string;
|
|
100284
|
+
}, {
|
|
100285
|
+
pullRequestUrl: string;
|
|
100286
|
+
}>>;
|
|
100287
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
100288
|
+
url: z.ZodString;
|
|
100289
|
+
}, "strip", z.ZodTypeAny, {
|
|
100290
|
+
url: string;
|
|
100291
|
+
}, {
|
|
100292
|
+
url: string;
|
|
100293
|
+
}>>;
|
|
100294
|
+
}, "strip", z.ZodTypeAny, {
|
|
100295
|
+
error?: string | undefined;
|
|
100296
|
+
s3?: {
|
|
100297
|
+
path: string;
|
|
100298
|
+
files: string[];
|
|
100299
|
+
bucket: string;
|
|
100300
|
+
urlPrefix?: string | undefined;
|
|
100301
|
+
} | undefined;
|
|
100302
|
+
github?: {
|
|
100303
|
+
pullRequestUrl: string;
|
|
100304
|
+
} | undefined;
|
|
100305
|
+
azure?: {
|
|
100306
|
+
pullRequestUrl: string;
|
|
100307
|
+
} | undefined;
|
|
100308
|
+
gitlab?: {
|
|
100309
|
+
pullRequestUrl: string;
|
|
100310
|
+
} | undefined;
|
|
100311
|
+
bitbucket?: {
|
|
100312
|
+
pullRequestUrl: string;
|
|
100313
|
+
} | undefined;
|
|
100314
|
+
sndocs?: {
|
|
100315
|
+
url: string;
|
|
100316
|
+
} | undefined;
|
|
100317
|
+
}, {
|
|
100318
|
+
error?: string | undefined;
|
|
100319
|
+
s3?: {
|
|
100320
|
+
path: string;
|
|
100321
|
+
files: string[];
|
|
100322
|
+
bucket: string;
|
|
100323
|
+
urlPrefix?: string | undefined;
|
|
100324
|
+
} | undefined;
|
|
100325
|
+
github?: {
|
|
100326
|
+
pullRequestUrl: string;
|
|
100327
|
+
} | undefined;
|
|
100328
|
+
azure?: {
|
|
100329
|
+
pullRequestUrl: string;
|
|
100330
|
+
} | undefined;
|
|
100331
|
+
gitlab?: {
|
|
100332
|
+
pullRequestUrl: string;
|
|
100333
|
+
} | undefined;
|
|
100334
|
+
bitbucket?: {
|
|
100335
|
+
pullRequestUrl: string;
|
|
100336
|
+
} | undefined;
|
|
100337
|
+
sndocs?: {
|
|
100338
|
+
url: string;
|
|
100339
|
+
} | undefined;
|
|
100340
|
+
}>>;
|
|
100341
|
+
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
100342
|
+
}, "strip", z.ZodTypeAny, {
|
|
100343
|
+
id: string;
|
|
100344
|
+
createdAt: Date;
|
|
100345
|
+
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
100346
|
+
designSystemId: string;
|
|
100347
|
+
designSystemVersionId: string;
|
|
100348
|
+
workspaceId: string;
|
|
100349
|
+
exporterId: string;
|
|
100350
|
+
webhookUrl?: string | undefined;
|
|
100351
|
+
destinationSnDocs?: {
|
|
100352
|
+
environment: "Live" | "Preview";
|
|
100353
|
+
} | undefined;
|
|
100354
|
+
destinationS3?: {} | undefined;
|
|
100355
|
+
destinationGithub?: {
|
|
100356
|
+
connectionId: string;
|
|
100357
|
+
branch: string;
|
|
100358
|
+
relativePath: string;
|
|
100359
|
+
} | undefined;
|
|
100360
|
+
destinationAzure?: {
|
|
100361
|
+
connectionId: string;
|
|
100362
|
+
branch: string;
|
|
100363
|
+
relativePath: string;
|
|
100364
|
+
organizationId: string;
|
|
100365
|
+
projectId: string;
|
|
100366
|
+
repositoryId: string;
|
|
100367
|
+
} | undefined;
|
|
100368
|
+
destinationGitlab?: {
|
|
100369
|
+
connectionId: string;
|
|
100370
|
+
branch: string;
|
|
100371
|
+
relativePath: string;
|
|
100372
|
+
projectId: string;
|
|
100373
|
+
} | undefined;
|
|
100374
|
+
destinationBitbucket?: {
|
|
100375
|
+
connectionId: string;
|
|
100376
|
+
branch: string;
|
|
100377
|
+
relativePath: string;
|
|
100378
|
+
workspaceSlug: string;
|
|
100379
|
+
projectKey: string;
|
|
100380
|
+
repoSlug: string;
|
|
100381
|
+
} | undefined;
|
|
100382
|
+
finishedAt?: Date | undefined;
|
|
100383
|
+
scheduleId?: string | null | undefined;
|
|
100384
|
+
brandId?: string | undefined;
|
|
100385
|
+
themeId?: string | undefined;
|
|
100386
|
+
estimatedExecutionTime?: number | undefined;
|
|
100387
|
+
result?: {
|
|
100388
|
+
error?: string | undefined;
|
|
100389
|
+
s3?: {
|
|
100390
|
+
path: string;
|
|
100391
|
+
files: string[];
|
|
100392
|
+
bucket: string;
|
|
100393
|
+
urlPrefix?: string | undefined;
|
|
100394
|
+
} | undefined;
|
|
100395
|
+
github?: {
|
|
100396
|
+
pullRequestUrl: string;
|
|
100397
|
+
} | undefined;
|
|
100398
|
+
azure?: {
|
|
100399
|
+
pullRequestUrl: string;
|
|
100400
|
+
} | undefined;
|
|
100401
|
+
gitlab?: {
|
|
100402
|
+
pullRequestUrl: string;
|
|
100403
|
+
} | undefined;
|
|
100404
|
+
bitbucket?: {
|
|
100405
|
+
pullRequestUrl: string;
|
|
100406
|
+
} | undefined;
|
|
100407
|
+
sndocs?: {
|
|
100408
|
+
url: string;
|
|
100409
|
+
} | undefined;
|
|
100410
|
+
} | undefined;
|
|
100411
|
+
createdByUserId?: string | undefined;
|
|
100412
|
+
}, {
|
|
100413
|
+
id: string;
|
|
100414
|
+
createdAt: Date;
|
|
100415
|
+
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
100416
|
+
designSystemId: string;
|
|
100417
|
+
designSystemVersionId: string;
|
|
100418
|
+
workspaceId: string;
|
|
100419
|
+
exporterId: string;
|
|
100420
|
+
webhookUrl?: string | undefined;
|
|
100421
|
+
destinationSnDocs?: {
|
|
100500
100422
|
environment: "Live" | "Preview";
|
|
100501
|
-
isSingleVersionDocs: boolean;
|
|
100502
|
-
versionSlug: string;
|
|
100503
100423
|
} | undefined;
|
|
100424
|
+
destinationS3?: {} | undefined;
|
|
100425
|
+
destinationGithub?: {
|
|
100426
|
+
connectionId: string;
|
|
100427
|
+
branch: string;
|
|
100428
|
+
relativePath: string;
|
|
100429
|
+
} | undefined;
|
|
100430
|
+
destinationAzure?: {
|
|
100431
|
+
connectionId: string;
|
|
100432
|
+
branch: string;
|
|
100433
|
+
relativePath: string;
|
|
100434
|
+
organizationId: string;
|
|
100435
|
+
projectId: string;
|
|
100436
|
+
repositoryId: string;
|
|
100437
|
+
} | undefined;
|
|
100438
|
+
destinationGitlab?: {
|
|
100439
|
+
connectionId: string;
|
|
100440
|
+
branch: string;
|
|
100441
|
+
relativePath: string;
|
|
100442
|
+
projectId: string;
|
|
100443
|
+
} | undefined;
|
|
100444
|
+
destinationBitbucket?: {
|
|
100445
|
+
connectionId: string;
|
|
100446
|
+
branch: string;
|
|
100447
|
+
relativePath: string;
|
|
100448
|
+
workspaceSlug: string;
|
|
100449
|
+
projectKey: string;
|
|
100450
|
+
repoSlug: string;
|
|
100451
|
+
} | undefined;
|
|
100452
|
+
finishedAt?: Date | undefined;
|
|
100453
|
+
scheduleId?: string | null | undefined;
|
|
100454
|
+
brandId?: string | undefined;
|
|
100455
|
+
themeId?: string | undefined;
|
|
100456
|
+
estimatedExecutionTime?: number | undefined;
|
|
100457
|
+
result?: {
|
|
100458
|
+
error?: string | undefined;
|
|
100459
|
+
s3?: {
|
|
100460
|
+
path: string;
|
|
100461
|
+
files: string[];
|
|
100462
|
+
bucket: string;
|
|
100463
|
+
urlPrefix?: string | undefined;
|
|
100464
|
+
} | undefined;
|
|
100465
|
+
github?: {
|
|
100466
|
+
pullRequestUrl: string;
|
|
100467
|
+
} | undefined;
|
|
100468
|
+
azure?: {
|
|
100469
|
+
pullRequestUrl: string;
|
|
100470
|
+
} | undefined;
|
|
100471
|
+
gitlab?: {
|
|
100472
|
+
pullRequestUrl: string;
|
|
100473
|
+
} | undefined;
|
|
100474
|
+
bitbucket?: {
|
|
100475
|
+
pullRequestUrl: string;
|
|
100476
|
+
} | undefined;
|
|
100477
|
+
sndocs?: {
|
|
100478
|
+
url: string;
|
|
100479
|
+
} | undefined;
|
|
100480
|
+
} | undefined;
|
|
100481
|
+
createdByUserId?: string | undefined;
|
|
100504
100482
|
}>;
|
|
100505
|
-
type
|
|
100506
|
-
|
|
100507
|
-
|
|
100508
|
-
|
|
100509
|
-
|
|
100510
|
-
designSystemId: z.ZodString
|
|
100483
|
+
type ExportJob = z.infer<typeof ExportJob>;
|
|
100484
|
+
type CreateExportJob = DbCreateInputOmit<ExportJob>;
|
|
100485
|
+
type UpdateExportJob = Pick<DbUpdate<ExportJob>, "id" | "status" | "result" | "finishedAt">;
|
|
100486
|
+
declare const ExportJobFindByFilter: z.ZodObject<{
|
|
100487
|
+
status: z.ZodOptional<z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>>;
|
|
100488
|
+
designSystemId: z.ZodOptional<z.ZodString>;
|
|
100489
|
+
designSystemVersionId: z.ZodOptional<z.ZodString>;
|
|
100490
|
+
brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
100491
|
+
createdByUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
100492
|
+
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
100493
|
+
exporterId: z.ZodOptional<z.ZodString>;
|
|
100494
|
+
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
100495
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
|
|
100496
|
+
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
100511
100497
|
}, "strip", z.ZodTypeAny, {
|
|
100512
|
-
|
|
100513
|
-
|
|
100514
|
-
|
|
100498
|
+
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
100499
|
+
designSystemId?: string | undefined;
|
|
100500
|
+
designSystemVersionId?: string | undefined;
|
|
100501
|
+
brandId?: string | undefined;
|
|
100502
|
+
createdByUserId?: string | undefined;
|
|
100503
|
+
themeId?: string | undefined;
|
|
100504
|
+
exporterId?: string | undefined;
|
|
100505
|
+
scheduleId?: string | null | undefined;
|
|
100506
|
+
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
100507
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
100515
100508
|
}, {
|
|
100516
|
-
|
|
100517
|
-
|
|
100518
|
-
|
|
100509
|
+
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
100510
|
+
designSystemId?: string | undefined;
|
|
100511
|
+
designSystemVersionId?: string | undefined;
|
|
100512
|
+
brandId?: string | undefined;
|
|
100513
|
+
createdByUserId?: string | undefined;
|
|
100514
|
+
themeId?: string | undefined;
|
|
100515
|
+
exporterId?: string | undefined;
|
|
100516
|
+
scheduleId?: string | null | undefined;
|
|
100517
|
+
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
100518
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
100519
100519
|
}>;
|
|
100520
|
-
type
|
|
100520
|
+
type ExportJobFindByFilter = z.infer<typeof ExportJobFindByFilter>;
|
|
100521
100521
|
|
|
100522
100522
|
declare const ExporterScheduleEventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
100523
100523
|
type ExporterScheduleEventType = z.infer<typeof ExporterScheduleEventType>;
|
|
@@ -100700,6 +100700,28 @@ declare const ExporterSchedule: z.ZodObject<{
|
|
|
100700
100700
|
}>;
|
|
100701
100701
|
type ExporterSchedule = z.infer<typeof ExporterSchedule>;
|
|
100702
100702
|
|
|
100703
|
+
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
100704
|
+
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
100705
|
+
|
|
100706
|
+
declare const ExporterWorkspaceMembership: z.ZodObject<{
|
|
100707
|
+
id: z.ZodString;
|
|
100708
|
+
workspaceId: z.ZodString;
|
|
100709
|
+
exporterId: z.ZodString;
|
|
100710
|
+
role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
100711
|
+
}, "strip", z.ZodTypeAny, {
|
|
100712
|
+
id: string;
|
|
100713
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
100714
|
+
workspaceId: string;
|
|
100715
|
+
exporterId: string;
|
|
100716
|
+
}, {
|
|
100717
|
+
id: string;
|
|
100718
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
100719
|
+
workspaceId: string;
|
|
100720
|
+
exporterId: string;
|
|
100721
|
+
}>;
|
|
100722
|
+
type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
|
|
100723
|
+
type CreateExporterMembership = DbCreateInputOmit<ExporterWorkspaceMembership>;
|
|
100724
|
+
|
|
100703
100725
|
declare enum GitProviderNames {
|
|
100704
100726
|
Azure = "azure",
|
|
100705
100727
|
Github = "github",
|
|
@@ -101374,28 +101396,6 @@ declare const Exporter: z.ZodObject<{
|
|
|
101374
101396
|
}>;
|
|
101375
101397
|
type Exporter = z.infer<typeof Exporter>;
|
|
101376
101398
|
|
|
101377
|
-
declare const ExporterWorkspaceMembership: z.ZodObject<{
|
|
101378
|
-
id: z.ZodString;
|
|
101379
|
-
workspaceId: z.ZodString;
|
|
101380
|
-
exporterId: z.ZodString;
|
|
101381
|
-
role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
101382
|
-
}, "strip", z.ZodTypeAny, {
|
|
101383
|
-
id: string;
|
|
101384
|
-
role: "Owner" | "OwnerArchived" | "User";
|
|
101385
|
-
workspaceId: string;
|
|
101386
|
-
exporterId: string;
|
|
101387
|
-
}, {
|
|
101388
|
-
id: string;
|
|
101389
|
-
role: "Owner" | "OwnerArchived" | "User";
|
|
101390
|
-
workspaceId: string;
|
|
101391
|
-
exporterId: string;
|
|
101392
|
-
}>;
|
|
101393
|
-
type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
|
|
101394
|
-
type CreateExporterMembership = DbCreateInputOmit<ExporterWorkspaceMembership>;
|
|
101395
|
-
|
|
101396
|
-
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
101397
|
-
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
101398
|
-
|
|
101399
101399
|
declare const PulsarContributionVariant: z.ZodObject<{
|
|
101400
101400
|
key: z.ZodString;
|
|
101401
101401
|
name: z.ZodString;
|
|
@@ -114368,6 +114368,34 @@ declare const UserMinified: z.ZodObject<{
|
|
|
114368
114368
|
}>;
|
|
114369
114369
|
type UserMinified = z.infer<typeof UserMinified>;
|
|
114370
114370
|
|
|
114371
|
+
declare const LiveblocksNotificationSettings: z.ZodObject<{
|
|
114372
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
114373
|
+
}, "strip", z.ZodTypeAny, {
|
|
114374
|
+
sendCommentNotificationEmails: boolean;
|
|
114375
|
+
}, {
|
|
114376
|
+
sendCommentNotificationEmails: boolean;
|
|
114377
|
+
}>;
|
|
114378
|
+
type LiveblocksNotificationSettings = z.infer<typeof LiveblocksNotificationSettings>;
|
|
114379
|
+
declare const UserNotificationSettings: z.ZodObject<{
|
|
114380
|
+
liveblocksNotificationSettings: z.ZodObject<{
|
|
114381
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
114382
|
+
}, "strip", z.ZodTypeAny, {
|
|
114383
|
+
sendCommentNotificationEmails: boolean;
|
|
114384
|
+
}, {
|
|
114385
|
+
sendCommentNotificationEmails: boolean;
|
|
114386
|
+
}>;
|
|
114387
|
+
}, "strip", z.ZodTypeAny, {
|
|
114388
|
+
liveblocksNotificationSettings: {
|
|
114389
|
+
sendCommentNotificationEmails: boolean;
|
|
114390
|
+
};
|
|
114391
|
+
}, {
|
|
114392
|
+
liveblocksNotificationSettings: {
|
|
114393
|
+
sendCommentNotificationEmails: boolean;
|
|
114394
|
+
};
|
|
114395
|
+
}>;
|
|
114396
|
+
type UserNotificationSettings = z.infer<typeof UserNotificationSettings>;
|
|
114397
|
+
declare const defaultNotificationSettings: UserNotificationSettings;
|
|
114398
|
+
|
|
114371
114399
|
declare const UserOnboardingDepartment: z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>;
|
|
114372
114400
|
declare const UserOnboardingJobLevel: z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>;
|
|
114373
114401
|
declare const UserOnboarding: z.ZodObject<{
|
|
@@ -115456,16 +115484,43 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
115456
115484
|
userId: z.ZodString;
|
|
115457
115485
|
workspaceId: z.ZodString;
|
|
115458
115486
|
workspaceRole: z.ZodNativeEnum<z.Values<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]>>;
|
|
115487
|
+
notificationSettings: z.ZodObject<{
|
|
115488
|
+
liveblocksNotificationSettings: z.ZodObject<{
|
|
115489
|
+
sendCommentNotificationEmails: z.ZodBoolean;
|
|
115490
|
+
}, "strip", z.ZodTypeAny, {
|
|
115491
|
+
sendCommentNotificationEmails: boolean;
|
|
115492
|
+
}, {
|
|
115493
|
+
sendCommentNotificationEmails: boolean;
|
|
115494
|
+
}>;
|
|
115495
|
+
}, "strip", z.ZodTypeAny, {
|
|
115496
|
+
liveblocksNotificationSettings: {
|
|
115497
|
+
sendCommentNotificationEmails: boolean;
|
|
115498
|
+
};
|
|
115499
|
+
}, {
|
|
115500
|
+
liveblocksNotificationSettings: {
|
|
115501
|
+
sendCommentNotificationEmails: boolean;
|
|
115502
|
+
};
|
|
115503
|
+
}>;
|
|
115459
115504
|
}, "strip", z.ZodTypeAny, {
|
|
115460
115505
|
id: string;
|
|
115461
115506
|
userId: string;
|
|
115462
115507
|
workspaceId: string;
|
|
115463
115508
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
|
|
115509
|
+
notificationSettings: {
|
|
115510
|
+
liveblocksNotificationSettings: {
|
|
115511
|
+
sendCommentNotificationEmails: boolean;
|
|
115512
|
+
};
|
|
115513
|
+
};
|
|
115464
115514
|
}, {
|
|
115465
115515
|
id: string;
|
|
115466
115516
|
userId: string;
|
|
115467
115517
|
workspaceId: string;
|
|
115468
115518
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
|
|
115519
|
+
notificationSettings: {
|
|
115520
|
+
liveblocksNotificationSettings: {
|
|
115521
|
+
sendCommentNotificationEmails: boolean;
|
|
115522
|
+
};
|
|
115523
|
+
};
|
|
115469
115524
|
}>;
|
|
115470
115525
|
type WorkspaceMembership = z.infer<typeof WorkspaceMembership>;
|
|
115471
115526
|
declare const UpdateMembershipRolesInput: z.ZodObject<{
|
|
@@ -119162,4 +119217,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
119162
119217
|
}>;
|
|
119163
119218
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
119164
119219
|
|
|
119165
|
-
export { Address, type AllFields, type ArrayElementType, Asset, 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, 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, GitProvider, GitProviderNames, 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, 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, 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, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, 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 };
|
|
119220
|
+
export { Address, type AllFields, type ArrayElementType, Asset, 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, 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, GitProvider, GitProviderNames, 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, 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, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, 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 };
|