@supernova-studio/model 0.47.28 → 0.47.29
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 +222 -93
- package/dist/index.d.ts +222 -93
- package/dist/index.js +54 -36
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +53 -35
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/export/export-destinations.ts +8 -8
- package/src/export/export-jobs.ts +3 -2
- package/src/export/export-runner/export-context.ts +1 -0
- package/src/integrations/git.ts +14 -4
- package/src/integrations/integration.ts +28 -21
- package/src/utils/common.ts +4 -0
- package/src/utils/errors.ts +5 -0
package/dist/index.d.mts
CHANGED
|
@@ -2551,6 +2551,7 @@ declare function buildConstantEnum<Inferred extends ArrayElementType<Passed>[],
|
|
|
2551
2551
|
};
|
|
2552
2552
|
declare function promiseWithTimeout<T>(timeoutMs: number, promise: () => Promise<T>): Promise<T>;
|
|
2553
2553
|
declare function sleep(ms: number): Promise<void>;
|
|
2554
|
+
declare function uniqueBy<K, V>(items: V[], prop: (v: V) => K): V[];
|
|
2554
2555
|
type Pagination = {
|
|
2555
2556
|
skip?: number;
|
|
2556
2557
|
take?: number;
|
|
@@ -2656,7 +2657,7 @@ declare const ContentLoaderPayload: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
2656
2657
|
}>]>;
|
|
2657
2658
|
type ContentLoaderPayload = z.infer<typeof ContentLoaderPayload>;
|
|
2658
2659
|
|
|
2659
|
-
type SupernovaExceptionType = "AccessDenied" | "ResourceNotFound" | "WrongFormat" | "TooMuchWork" | "Timeout" | "Conflict" | "NotImplemented" | "BadRequest" | "WrongActionOrder" | "InvalidOperation" | "UnexpectedError" | "IPRestricted" | "PlanRestricted" | "MissingWorkspacePermission" | "MissingExporterPermission" | "MissingIntegration" | "NoAccess" | "MissingCredentials" | "ValidationError" | "ThirdPartyError";
|
|
2660
|
+
type SupernovaExceptionType = "AccessDenied" | "ResourceNotFound" | "WrongFormat" | "TooMuchWork" | "Timeout" | "Conflict" | "NotImplemented" | "BadRequest" | "WrongActionOrder" | "InvalidOperation" | "UnexpectedError" | "IPRestricted" | "PlanRestricted" | "MissingWorkspacePermission" | "MissingExporterPermission" | "MissingIntegration" | "MissingIntegrationAccess" | "NoAccess" | "MissingCredentials" | "ValidationError" | "ThirdPartyError";
|
|
2660
2661
|
declare class SupernovaException extends Error {
|
|
2661
2662
|
readonly type: SupernovaExceptionType;
|
|
2662
2663
|
static wrongFormat(message?: string): SupernovaException;
|
|
@@ -2675,6 +2676,7 @@ declare class SupernovaException extends Error {
|
|
|
2675
2676
|
static missingWorkspacePermission(message?: string): SupernovaException;
|
|
2676
2677
|
static missingExporterPermission(message?: string): SupernovaException;
|
|
2677
2678
|
static missingIntegration(message?: string): SupernovaException;
|
|
2679
|
+
static missingIntegrationAccess(message?: string): SupernovaException;
|
|
2678
2680
|
static noAccess(message?: string): SupernovaException;
|
|
2679
2681
|
static missingCredentials(message?: string): SupernovaException;
|
|
2680
2682
|
static thirdPartyError(message?: string): SupernovaException;
|
|
@@ -97296,6 +97298,7 @@ declare const ExportJobContext: z.ZodObject<{
|
|
|
97296
97298
|
apiUrl: z.ZodString;
|
|
97297
97299
|
accessToken: z.ZodString;
|
|
97298
97300
|
designSystemId: z.ZodString;
|
|
97301
|
+
exporterId: z.ZodString;
|
|
97299
97302
|
versionId: z.ZodString;
|
|
97300
97303
|
brandId: z.ZodOptional<z.ZodString>;
|
|
97301
97304
|
themeId: z.ZodOptional<z.ZodString>;
|
|
@@ -98118,6 +98121,7 @@ declare const ExportJobContext: z.ZodObject<{
|
|
|
98118
98121
|
designSystemId: string;
|
|
98119
98122
|
accessToken: string;
|
|
98120
98123
|
versionId: string;
|
|
98124
|
+
exporterId: string;
|
|
98121
98125
|
apiUrl: string;
|
|
98122
98126
|
exporterPackageUrl: string;
|
|
98123
98127
|
exporterPropertyValues: {
|
|
@@ -98233,6 +98237,7 @@ declare const ExportJobContext: z.ZodObject<{
|
|
|
98233
98237
|
designSystemId: string;
|
|
98234
98238
|
accessToken: string;
|
|
98235
98239
|
versionId: string;
|
|
98240
|
+
exporterId: string;
|
|
98236
98241
|
apiUrl: string;
|
|
98237
98242
|
exporterPackageUrl: string;
|
|
98238
98243
|
exporterPropertyValues: {
|
|
@@ -98380,8 +98385,8 @@ declare const ExporterDestinationGithub: z.ZodObject<{
|
|
|
98380
98385
|
url: z.ZodString;
|
|
98381
98386
|
branch: z.ZodString;
|
|
98382
98387
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98383
|
-
connectionId: z.ZodOptional<z.
|
|
98384
|
-
userId: z.ZodOptional<z.
|
|
98388
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98389
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98385
98390
|
}, "strip", z.ZodTypeAny, {
|
|
98386
98391
|
url: string;
|
|
98387
98392
|
branch: string;
|
|
@@ -98392,10 +98397,10 @@ declare const ExporterDestinationGithub: z.ZodObject<{
|
|
|
98392
98397
|
}, {
|
|
98393
98398
|
url: string;
|
|
98394
98399
|
branch: string;
|
|
98395
|
-
userId?: number | undefined;
|
|
98400
|
+
userId?: number | null | undefined;
|
|
98396
98401
|
credentialId?: string | undefined;
|
|
98397
98402
|
relativePath?: string | null | undefined;
|
|
98398
|
-
connectionId?: string | undefined;
|
|
98403
|
+
connectionId?: string | null | undefined;
|
|
98399
98404
|
}>;
|
|
98400
98405
|
type ExporterDestinationGithub = z.infer<typeof ExporterDestinationGithub>;
|
|
98401
98406
|
declare const ExporterDestinationAzure: z.ZodObject<{
|
|
@@ -98406,8 +98411,8 @@ declare const ExporterDestinationAzure: z.ZodObject<{
|
|
|
98406
98411
|
branch: z.ZodString;
|
|
98407
98412
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98408
98413
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98409
|
-
connectionId: z.ZodOptional<z.
|
|
98410
|
-
userId: z.ZodOptional<z.
|
|
98414
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98415
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98411
98416
|
}, "strip", z.ZodTypeAny, {
|
|
98412
98417
|
branch: string;
|
|
98413
98418
|
organizationId: string;
|
|
@@ -98424,10 +98429,10 @@ declare const ExporterDestinationAzure: z.ZodObject<{
|
|
|
98424
98429
|
projectId: string;
|
|
98425
98430
|
repositoryId: string;
|
|
98426
98431
|
url?: string | null | undefined;
|
|
98427
|
-
userId?: number | undefined;
|
|
98432
|
+
userId?: number | null | undefined;
|
|
98428
98433
|
credentialId?: string | undefined;
|
|
98429
98434
|
relativePath?: string | null | undefined;
|
|
98430
|
-
connectionId?: string | undefined;
|
|
98435
|
+
connectionId?: string | null | undefined;
|
|
98431
98436
|
}>;
|
|
98432
98437
|
type ExporterDestinationAzure = z.infer<typeof ExporterDestinationAzure>;
|
|
98433
98438
|
declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
@@ -98436,8 +98441,8 @@ declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
|
98436
98441
|
branch: z.ZodString;
|
|
98437
98442
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98438
98443
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98439
|
-
connectionId: z.ZodOptional<z.
|
|
98440
|
-
userId: z.ZodOptional<z.
|
|
98444
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98445
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98441
98446
|
}, "strip", z.ZodTypeAny, {
|
|
98442
98447
|
branch: string;
|
|
98443
98448
|
projectId: string;
|
|
@@ -98450,10 +98455,10 @@ declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
|
98450
98455
|
branch: string;
|
|
98451
98456
|
projectId: string;
|
|
98452
98457
|
url?: string | null | undefined;
|
|
98453
|
-
userId?: number | undefined;
|
|
98458
|
+
userId?: number | null | undefined;
|
|
98454
98459
|
credentialId?: string | undefined;
|
|
98455
98460
|
relativePath?: string | null | undefined;
|
|
98456
|
-
connectionId?: string | undefined;
|
|
98461
|
+
connectionId?: string | null | undefined;
|
|
98457
98462
|
}>;
|
|
98458
98463
|
type ExporterDestinationGitlab = z.infer<typeof ExporterDestinationGitlab>;
|
|
98459
98464
|
declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
@@ -98463,8 +98468,8 @@ declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
|
98463
98468
|
repoSlug: z.ZodString;
|
|
98464
98469
|
branch: z.ZodString;
|
|
98465
98470
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98466
|
-
connectionId: z.ZodOptional<z.
|
|
98467
|
-
userId: z.ZodOptional<z.
|
|
98471
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98472
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98468
98473
|
}, "strip", z.ZodTypeAny, {
|
|
98469
98474
|
branch: string;
|
|
98470
98475
|
workspaceSlug: string;
|
|
@@ -98479,10 +98484,10 @@ declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
|
98479
98484
|
workspaceSlug: string;
|
|
98480
98485
|
projectKey: string;
|
|
98481
98486
|
repoSlug: string;
|
|
98482
|
-
userId?: number | undefined;
|
|
98487
|
+
userId?: number | null | undefined;
|
|
98483
98488
|
credentialId?: string | undefined;
|
|
98484
98489
|
relativePath?: string | null | undefined;
|
|
98485
|
-
connectionId?: string | undefined;
|
|
98490
|
+
connectionId?: string | null | undefined;
|
|
98486
98491
|
}>;
|
|
98487
98492
|
type ExporterDestinationBitbucket = z.infer<typeof ExporterDestinationBitbucket>;
|
|
98488
98493
|
declare const ExportDestinationsMap: z.ZodObject<{
|
|
@@ -98500,8 +98505,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98500
98505
|
url: z.ZodString;
|
|
98501
98506
|
branch: z.ZodString;
|
|
98502
98507
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98503
|
-
connectionId: z.ZodOptional<z.
|
|
98504
|
-
userId: z.ZodOptional<z.
|
|
98508
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98509
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98505
98510
|
}, "strip", z.ZodTypeAny, {
|
|
98506
98511
|
url: string;
|
|
98507
98512
|
branch: string;
|
|
@@ -98512,10 +98517,10 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98512
98517
|
}, {
|
|
98513
98518
|
url: string;
|
|
98514
98519
|
branch: string;
|
|
98515
|
-
userId?: number | undefined;
|
|
98520
|
+
userId?: number | null | undefined;
|
|
98516
98521
|
credentialId?: string | undefined;
|
|
98517
98522
|
relativePath?: string | null | undefined;
|
|
98518
|
-
connectionId?: string | undefined;
|
|
98523
|
+
connectionId?: string | null | undefined;
|
|
98519
98524
|
}>>;
|
|
98520
98525
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
98521
98526
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -98525,8 +98530,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98525
98530
|
branch: z.ZodString;
|
|
98526
98531
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98527
98532
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98528
|
-
connectionId: z.ZodOptional<z.
|
|
98529
|
-
userId: z.ZodOptional<z.
|
|
98533
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98534
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98530
98535
|
}, "strip", z.ZodTypeAny, {
|
|
98531
98536
|
branch: string;
|
|
98532
98537
|
organizationId: string;
|
|
@@ -98543,10 +98548,10 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98543
98548
|
projectId: string;
|
|
98544
98549
|
repositoryId: string;
|
|
98545
98550
|
url?: string | null | undefined;
|
|
98546
|
-
userId?: number | undefined;
|
|
98551
|
+
userId?: number | null | undefined;
|
|
98547
98552
|
credentialId?: string | undefined;
|
|
98548
98553
|
relativePath?: string | null | undefined;
|
|
98549
|
-
connectionId?: string | undefined;
|
|
98554
|
+
connectionId?: string | null | undefined;
|
|
98550
98555
|
}>>;
|
|
98551
98556
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
98552
98557
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -98554,8 +98559,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98554
98559
|
branch: z.ZodString;
|
|
98555
98560
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98556
98561
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98557
|
-
connectionId: z.ZodOptional<z.
|
|
98558
|
-
userId: z.ZodOptional<z.
|
|
98562
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98563
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98559
98564
|
}, "strip", z.ZodTypeAny, {
|
|
98560
98565
|
branch: string;
|
|
98561
98566
|
projectId: string;
|
|
@@ -98568,10 +98573,10 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98568
98573
|
branch: string;
|
|
98569
98574
|
projectId: string;
|
|
98570
98575
|
url?: string | null | undefined;
|
|
98571
|
-
userId?: number | undefined;
|
|
98576
|
+
userId?: number | null | undefined;
|
|
98572
98577
|
credentialId?: string | undefined;
|
|
98573
98578
|
relativePath?: string | null | undefined;
|
|
98574
|
-
connectionId?: string | undefined;
|
|
98579
|
+
connectionId?: string | null | undefined;
|
|
98575
98580
|
}>>;
|
|
98576
98581
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
98577
98582
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -98580,8 +98585,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98580
98585
|
repoSlug: z.ZodString;
|
|
98581
98586
|
branch: z.ZodString;
|
|
98582
98587
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98583
|
-
connectionId: z.ZodOptional<z.
|
|
98584
|
-
userId: z.ZodOptional<z.
|
|
98588
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98589
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98585
98590
|
}, "strip", z.ZodTypeAny, {
|
|
98586
98591
|
branch: string;
|
|
98587
98592
|
workspaceSlug: string;
|
|
@@ -98596,10 +98601,10 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98596
98601
|
workspaceSlug: string;
|
|
98597
98602
|
projectKey: string;
|
|
98598
98603
|
repoSlug: string;
|
|
98599
|
-
userId?: number | undefined;
|
|
98604
|
+
userId?: number | null | undefined;
|
|
98600
98605
|
credentialId?: string | undefined;
|
|
98601
98606
|
relativePath?: string | null | undefined;
|
|
98602
|
-
connectionId?: string | undefined;
|
|
98607
|
+
connectionId?: string | null | undefined;
|
|
98603
98608
|
}>>;
|
|
98604
98609
|
}, "strip", z.ZodTypeAny, {
|
|
98605
98610
|
webhookUrl?: string | undefined;
|
|
@@ -98654,10 +98659,10 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98654
98659
|
destinationGithub?: {
|
|
98655
98660
|
url: string;
|
|
98656
98661
|
branch: string;
|
|
98657
|
-
userId?: number | undefined;
|
|
98662
|
+
userId?: number | null | undefined;
|
|
98658
98663
|
credentialId?: string | undefined;
|
|
98659
98664
|
relativePath?: string | null | undefined;
|
|
98660
|
-
connectionId?: string | undefined;
|
|
98665
|
+
connectionId?: string | null | undefined;
|
|
98661
98666
|
} | undefined;
|
|
98662
98667
|
destinationAzure?: {
|
|
98663
98668
|
branch: string;
|
|
@@ -98665,29 +98670,29 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
98665
98670
|
projectId: string;
|
|
98666
98671
|
repositoryId: string;
|
|
98667
98672
|
url?: string | null | undefined;
|
|
98668
|
-
userId?: number | undefined;
|
|
98673
|
+
userId?: number | null | undefined;
|
|
98669
98674
|
credentialId?: string | undefined;
|
|
98670
98675
|
relativePath?: string | null | undefined;
|
|
98671
|
-
connectionId?: string | undefined;
|
|
98676
|
+
connectionId?: string | null | undefined;
|
|
98672
98677
|
} | undefined;
|
|
98673
98678
|
destinationGitlab?: {
|
|
98674
98679
|
branch: string;
|
|
98675
98680
|
projectId: string;
|
|
98676
98681
|
url?: string | null | undefined;
|
|
98677
|
-
userId?: number | undefined;
|
|
98682
|
+
userId?: number | null | undefined;
|
|
98678
98683
|
credentialId?: string | undefined;
|
|
98679
98684
|
relativePath?: string | null | undefined;
|
|
98680
|
-
connectionId?: string | undefined;
|
|
98685
|
+
connectionId?: string | null | undefined;
|
|
98681
98686
|
} | undefined;
|
|
98682
98687
|
destinationBitbucket?: {
|
|
98683
98688
|
branch: string;
|
|
98684
98689
|
workspaceSlug: string;
|
|
98685
98690
|
projectKey: string;
|
|
98686
98691
|
repoSlug: string;
|
|
98687
|
-
userId?: number | undefined;
|
|
98692
|
+
userId?: number | null | undefined;
|
|
98688
98693
|
credentialId?: string | undefined;
|
|
98689
98694
|
relativePath?: string | null | undefined;
|
|
98690
|
-
connectionId?: string | undefined;
|
|
98695
|
+
connectionId?: string | null | undefined;
|
|
98691
98696
|
} | undefined;
|
|
98692
98697
|
}>;
|
|
98693
98698
|
type ExportDestinationsMap = z.infer<typeof ExportDestinationsMap>;
|
|
@@ -98816,6 +98821,27 @@ declare const ExportJobResult: z.ZodObject<{
|
|
|
98816
98821
|
} | undefined, {
|
|
98817
98822
|
url: string;
|
|
98818
98823
|
} | null | undefined>;
|
|
98824
|
+
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98825
|
+
message: string;
|
|
98826
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
98827
|
+
time: Date;
|
|
98828
|
+
id?: string | undefined;
|
|
98829
|
+
}[], z.ZodTypeDef, {
|
|
98830
|
+
message: string;
|
|
98831
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
98832
|
+
time: Date;
|
|
98833
|
+
id?: string | undefined;
|
|
98834
|
+
}[]>>>, {
|
|
98835
|
+
message: string;
|
|
98836
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
98837
|
+
time: Date;
|
|
98838
|
+
id?: string | undefined;
|
|
98839
|
+
}[] | undefined, {
|
|
98840
|
+
message: string;
|
|
98841
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
98842
|
+
time: Date;
|
|
98843
|
+
id?: string | undefined;
|
|
98844
|
+
}[] | null | undefined>;
|
|
98819
98845
|
}, "strip", z.ZodTypeAny, {
|
|
98820
98846
|
error?: string | undefined;
|
|
98821
98847
|
github?: {
|
|
@@ -98830,6 +98856,12 @@ declare const ExportJobResult: z.ZodObject<{
|
|
|
98830
98856
|
bitbucket?: {
|
|
98831
98857
|
pullRequestUrl: string;
|
|
98832
98858
|
} | undefined;
|
|
98859
|
+
logs?: {
|
|
98860
|
+
message: string;
|
|
98861
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
98862
|
+
time: Date;
|
|
98863
|
+
id?: string | undefined;
|
|
98864
|
+
}[] | undefined;
|
|
98833
98865
|
s3?: {
|
|
98834
98866
|
path: string;
|
|
98835
98867
|
files: string[];
|
|
@@ -98853,6 +98885,12 @@ declare const ExportJobResult: z.ZodObject<{
|
|
|
98853
98885
|
bitbucket?: {
|
|
98854
98886
|
pullRequestUrl: string;
|
|
98855
98887
|
} | null | undefined;
|
|
98888
|
+
logs?: {
|
|
98889
|
+
message: string;
|
|
98890
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
98891
|
+
time: Date;
|
|
98892
|
+
id?: string | undefined;
|
|
98893
|
+
}[] | null | undefined;
|
|
98856
98894
|
s3?: {
|
|
98857
98895
|
path: string;
|
|
98858
98896
|
files: string[];
|
|
@@ -98879,8 +98917,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98879
98917
|
url: z.ZodString;
|
|
98880
98918
|
branch: z.ZodString;
|
|
98881
98919
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98882
|
-
connectionId: z.ZodOptional<z.
|
|
98883
|
-
userId: z.ZodOptional<z.
|
|
98920
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98921
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98884
98922
|
}, "strip", z.ZodTypeAny, {
|
|
98885
98923
|
url: string;
|
|
98886
98924
|
branch: string;
|
|
@@ -98891,10 +98929,10 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98891
98929
|
}, {
|
|
98892
98930
|
url: string;
|
|
98893
98931
|
branch: string;
|
|
98894
|
-
userId?: number | undefined;
|
|
98932
|
+
userId?: number | null | undefined;
|
|
98895
98933
|
credentialId?: string | undefined;
|
|
98896
98934
|
relativePath?: string | null | undefined;
|
|
98897
|
-
connectionId?: string | undefined;
|
|
98935
|
+
connectionId?: string | null | undefined;
|
|
98898
98936
|
}>>;
|
|
98899
98937
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
98900
98938
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -98904,8 +98942,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98904
98942
|
branch: z.ZodString;
|
|
98905
98943
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98906
98944
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98907
|
-
connectionId: z.ZodOptional<z.
|
|
98908
|
-
userId: z.ZodOptional<z.
|
|
98945
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98946
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98909
98947
|
}, "strip", z.ZodTypeAny, {
|
|
98910
98948
|
branch: string;
|
|
98911
98949
|
organizationId: string;
|
|
@@ -98922,10 +98960,10 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98922
98960
|
projectId: string;
|
|
98923
98961
|
repositoryId: string;
|
|
98924
98962
|
url?: string | null | undefined;
|
|
98925
|
-
userId?: number | undefined;
|
|
98963
|
+
userId?: number | null | undefined;
|
|
98926
98964
|
credentialId?: string | undefined;
|
|
98927
98965
|
relativePath?: string | null | undefined;
|
|
98928
|
-
connectionId?: string | undefined;
|
|
98966
|
+
connectionId?: string | null | undefined;
|
|
98929
98967
|
}>>;
|
|
98930
98968
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
98931
98969
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -98933,8 +98971,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98933
98971
|
branch: z.ZodString;
|
|
98934
98972
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98935
98973
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98936
|
-
connectionId: z.ZodOptional<z.
|
|
98937
|
-
userId: z.ZodOptional<z.
|
|
98974
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98975
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98938
98976
|
}, "strip", z.ZodTypeAny, {
|
|
98939
98977
|
branch: string;
|
|
98940
98978
|
projectId: string;
|
|
@@ -98947,10 +98985,10 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98947
98985
|
branch: string;
|
|
98948
98986
|
projectId: string;
|
|
98949
98987
|
url?: string | null | undefined;
|
|
98950
|
-
userId?: number | undefined;
|
|
98988
|
+
userId?: number | null | undefined;
|
|
98951
98989
|
credentialId?: string | undefined;
|
|
98952
98990
|
relativePath?: string | null | undefined;
|
|
98953
|
-
connectionId?: string | undefined;
|
|
98991
|
+
connectionId?: string | null | undefined;
|
|
98954
98992
|
}>>;
|
|
98955
98993
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
98956
98994
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -98959,8 +98997,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98959
98997
|
repoSlug: z.ZodString;
|
|
98960
98998
|
branch: z.ZodString;
|
|
98961
98999
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98962
|
-
connectionId: z.ZodOptional<z.
|
|
98963
|
-
userId: z.ZodOptional<z.
|
|
99000
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
99001
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
98964
99002
|
}, "strip", z.ZodTypeAny, {
|
|
98965
99003
|
branch: string;
|
|
98966
99004
|
workspaceSlug: string;
|
|
@@ -98975,10 +99013,10 @@ declare const ExportJob: z.ZodObject<{
|
|
|
98975
99013
|
workspaceSlug: string;
|
|
98976
99014
|
projectKey: string;
|
|
98977
99015
|
repoSlug: string;
|
|
98978
|
-
userId?: number | undefined;
|
|
99016
|
+
userId?: number | null | undefined;
|
|
98979
99017
|
credentialId?: string | undefined;
|
|
98980
99018
|
relativePath?: string | null | undefined;
|
|
98981
|
-
connectionId?: string | undefined;
|
|
99019
|
+
connectionId?: string | null | undefined;
|
|
98982
99020
|
}>>;
|
|
98983
99021
|
id: z.ZodString;
|
|
98984
99022
|
createdAt: z.ZodDate;
|
|
@@ -99060,6 +99098,27 @@ declare const ExportJob: z.ZodObject<{
|
|
|
99060
99098
|
} | undefined, {
|
|
99061
99099
|
url: string;
|
|
99062
99100
|
} | null | undefined>;
|
|
99101
|
+
logs: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
99102
|
+
message: string;
|
|
99103
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
99104
|
+
time: Date;
|
|
99105
|
+
id?: string | undefined;
|
|
99106
|
+
}[], z.ZodTypeDef, {
|
|
99107
|
+
message: string;
|
|
99108
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
99109
|
+
time: Date;
|
|
99110
|
+
id?: string | undefined;
|
|
99111
|
+
}[]>>>, {
|
|
99112
|
+
message: string;
|
|
99113
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
99114
|
+
time: Date;
|
|
99115
|
+
id?: string | undefined;
|
|
99116
|
+
}[] | undefined, {
|
|
99117
|
+
message: string;
|
|
99118
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
99119
|
+
time: Date;
|
|
99120
|
+
id?: string | undefined;
|
|
99121
|
+
}[] | null | undefined>;
|
|
99063
99122
|
}, "strip", z.ZodTypeAny, {
|
|
99064
99123
|
error?: string | undefined;
|
|
99065
99124
|
github?: {
|
|
@@ -99074,6 +99133,12 @@ declare const ExportJob: z.ZodObject<{
|
|
|
99074
99133
|
bitbucket?: {
|
|
99075
99134
|
pullRequestUrl: string;
|
|
99076
99135
|
} | undefined;
|
|
99136
|
+
logs?: {
|
|
99137
|
+
message: string;
|
|
99138
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
99139
|
+
time: Date;
|
|
99140
|
+
id?: string | undefined;
|
|
99141
|
+
}[] | undefined;
|
|
99077
99142
|
s3?: {
|
|
99078
99143
|
path: string;
|
|
99079
99144
|
files: string[];
|
|
@@ -99097,6 +99162,12 @@ declare const ExportJob: z.ZodObject<{
|
|
|
99097
99162
|
bitbucket?: {
|
|
99098
99163
|
pullRequestUrl: string;
|
|
99099
99164
|
} | null | undefined;
|
|
99165
|
+
logs?: {
|
|
99166
|
+
message: string;
|
|
99167
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
99168
|
+
time: Date;
|
|
99169
|
+
id?: string | undefined;
|
|
99170
|
+
}[] | null | undefined;
|
|
99100
99171
|
s3?: {
|
|
99101
99172
|
path: string;
|
|
99102
99173
|
files: string[];
|
|
@@ -99179,6 +99250,12 @@ declare const ExportJob: z.ZodObject<{
|
|
|
99179
99250
|
bitbucket?: {
|
|
99180
99251
|
pullRequestUrl: string;
|
|
99181
99252
|
} | undefined;
|
|
99253
|
+
logs?: {
|
|
99254
|
+
message: string;
|
|
99255
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
99256
|
+
time: Date;
|
|
99257
|
+
id?: string | undefined;
|
|
99258
|
+
}[] | undefined;
|
|
99182
99259
|
s3?: {
|
|
99183
99260
|
path: string;
|
|
99184
99261
|
files: string[];
|
|
@@ -99208,10 +99285,10 @@ declare const ExportJob: z.ZodObject<{
|
|
|
99208
99285
|
destinationGithub?: {
|
|
99209
99286
|
url: string;
|
|
99210
99287
|
branch: string;
|
|
99211
|
-
userId?: number | undefined;
|
|
99288
|
+
userId?: number | null | undefined;
|
|
99212
99289
|
credentialId?: string | undefined;
|
|
99213
99290
|
relativePath?: string | null | undefined;
|
|
99214
|
-
connectionId?: string | undefined;
|
|
99291
|
+
connectionId?: string | null | undefined;
|
|
99215
99292
|
} | undefined;
|
|
99216
99293
|
destinationAzure?: {
|
|
99217
99294
|
branch: string;
|
|
@@ -99219,29 +99296,29 @@ declare const ExportJob: z.ZodObject<{
|
|
|
99219
99296
|
projectId: string;
|
|
99220
99297
|
repositoryId: string;
|
|
99221
99298
|
url?: string | null | undefined;
|
|
99222
|
-
userId?: number | undefined;
|
|
99299
|
+
userId?: number | null | undefined;
|
|
99223
99300
|
credentialId?: string | undefined;
|
|
99224
99301
|
relativePath?: string | null | undefined;
|
|
99225
|
-
connectionId?: string | undefined;
|
|
99302
|
+
connectionId?: string | null | undefined;
|
|
99226
99303
|
} | undefined;
|
|
99227
99304
|
destinationGitlab?: {
|
|
99228
99305
|
branch: string;
|
|
99229
99306
|
projectId: string;
|
|
99230
99307
|
url?: string | null | undefined;
|
|
99231
|
-
userId?: number | undefined;
|
|
99308
|
+
userId?: number | null | undefined;
|
|
99232
99309
|
credentialId?: string | undefined;
|
|
99233
99310
|
relativePath?: string | null | undefined;
|
|
99234
|
-
connectionId?: string | undefined;
|
|
99311
|
+
connectionId?: string | null | undefined;
|
|
99235
99312
|
} | undefined;
|
|
99236
99313
|
destinationBitbucket?: {
|
|
99237
99314
|
branch: string;
|
|
99238
99315
|
workspaceSlug: string;
|
|
99239
99316
|
projectKey: string;
|
|
99240
99317
|
repoSlug: string;
|
|
99241
|
-
userId?: number | undefined;
|
|
99318
|
+
userId?: number | null | undefined;
|
|
99242
99319
|
credentialId?: string | undefined;
|
|
99243
99320
|
relativePath?: string | null | undefined;
|
|
99244
|
-
connectionId?: string | undefined;
|
|
99321
|
+
connectionId?: string | null | undefined;
|
|
99245
99322
|
} | undefined;
|
|
99246
99323
|
finishedAt?: Date | undefined;
|
|
99247
99324
|
scheduleId?: string | null | undefined;
|
|
@@ -99260,6 +99337,12 @@ declare const ExportJob: z.ZodObject<{
|
|
|
99260
99337
|
bitbucket?: {
|
|
99261
99338
|
pullRequestUrl: string;
|
|
99262
99339
|
} | null | undefined;
|
|
99340
|
+
logs?: {
|
|
99341
|
+
message: string;
|
|
99342
|
+
type: "error" | "info" | "user" | "success" | "warning";
|
|
99343
|
+
time: Date;
|
|
99344
|
+
id?: string | undefined;
|
|
99345
|
+
}[] | null | undefined;
|
|
99263
99346
|
s3?: {
|
|
99264
99347
|
path: string;
|
|
99265
99348
|
files: string[];
|
|
@@ -100279,8 +100362,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100279
100362
|
url: z.ZodString;
|
|
100280
100363
|
branch: z.ZodString;
|
|
100281
100364
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100282
|
-
connectionId: z.ZodOptional<z.
|
|
100283
|
-
userId: z.ZodOptional<z.
|
|
100365
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100366
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
100284
100367
|
}, "strip", z.ZodTypeAny, {
|
|
100285
100368
|
url: string;
|
|
100286
100369
|
branch: string;
|
|
@@ -100291,10 +100374,10 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100291
100374
|
}, {
|
|
100292
100375
|
url: string;
|
|
100293
100376
|
branch: string;
|
|
100294
|
-
userId?: number | undefined;
|
|
100377
|
+
userId?: number | null | undefined;
|
|
100295
100378
|
credentialId?: string | undefined;
|
|
100296
100379
|
relativePath?: string | null | undefined;
|
|
100297
|
-
connectionId?: string | undefined;
|
|
100380
|
+
connectionId?: string | null | undefined;
|
|
100298
100381
|
}>>;
|
|
100299
100382
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
100300
100383
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -100304,8 +100387,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100304
100387
|
branch: z.ZodString;
|
|
100305
100388
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100306
100389
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100307
|
-
connectionId: z.ZodOptional<z.
|
|
100308
|
-
userId: z.ZodOptional<z.
|
|
100390
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100391
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
100309
100392
|
}, "strip", z.ZodTypeAny, {
|
|
100310
100393
|
branch: string;
|
|
100311
100394
|
organizationId: string;
|
|
@@ -100322,10 +100405,10 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100322
100405
|
projectId: string;
|
|
100323
100406
|
repositoryId: string;
|
|
100324
100407
|
url?: string | null | undefined;
|
|
100325
|
-
userId?: number | undefined;
|
|
100408
|
+
userId?: number | null | undefined;
|
|
100326
100409
|
credentialId?: string | undefined;
|
|
100327
100410
|
relativePath?: string | null | undefined;
|
|
100328
|
-
connectionId?: string | undefined;
|
|
100411
|
+
connectionId?: string | null | undefined;
|
|
100329
100412
|
}>>;
|
|
100330
100413
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
100331
100414
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -100333,8 +100416,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100333
100416
|
branch: z.ZodString;
|
|
100334
100417
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100335
100418
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100336
|
-
connectionId: z.ZodOptional<z.
|
|
100337
|
-
userId: z.ZodOptional<z.
|
|
100419
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100420
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
100338
100421
|
}, "strip", z.ZodTypeAny, {
|
|
100339
100422
|
branch: string;
|
|
100340
100423
|
projectId: string;
|
|
@@ -100347,10 +100430,10 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100347
100430
|
branch: string;
|
|
100348
100431
|
projectId: string;
|
|
100349
100432
|
url?: string | null | undefined;
|
|
100350
|
-
userId?: number | undefined;
|
|
100433
|
+
userId?: number | null | undefined;
|
|
100351
100434
|
credentialId?: string | undefined;
|
|
100352
100435
|
relativePath?: string | null | undefined;
|
|
100353
|
-
connectionId?: string | undefined;
|
|
100436
|
+
connectionId?: string | null | undefined;
|
|
100354
100437
|
}>>;
|
|
100355
100438
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
100356
100439
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -100359,8 +100442,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100359
100442
|
repoSlug: z.ZodString;
|
|
100360
100443
|
branch: z.ZodString;
|
|
100361
100444
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100362
|
-
connectionId: z.ZodOptional<z.
|
|
100363
|
-
userId: z.ZodOptional<z.
|
|
100445
|
+
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100446
|
+
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
100364
100447
|
}, "strip", z.ZodTypeAny, {
|
|
100365
100448
|
branch: string;
|
|
100366
100449
|
workspaceSlug: string;
|
|
@@ -100375,10 +100458,10 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100375
100458
|
workspaceSlug: string;
|
|
100376
100459
|
projectKey: string;
|
|
100377
100460
|
repoSlug: string;
|
|
100378
|
-
userId?: number | undefined;
|
|
100461
|
+
userId?: number | null | undefined;
|
|
100379
100462
|
credentialId?: string | undefined;
|
|
100380
100463
|
relativePath?: string | null | undefined;
|
|
100381
|
-
connectionId?: string | undefined;
|
|
100464
|
+
connectionId?: string | null | undefined;
|
|
100382
100465
|
}>>;
|
|
100383
100466
|
id: z.ZodString;
|
|
100384
100467
|
name: z.ZodString;
|
|
@@ -100460,10 +100543,10 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100460
100543
|
destinationGithub?: {
|
|
100461
100544
|
url: string;
|
|
100462
100545
|
branch: string;
|
|
100463
|
-
userId?: number | undefined;
|
|
100546
|
+
userId?: number | null | undefined;
|
|
100464
100547
|
credentialId?: string | undefined;
|
|
100465
100548
|
relativePath?: string | null | undefined;
|
|
100466
|
-
connectionId?: string | undefined;
|
|
100549
|
+
connectionId?: string | null | undefined;
|
|
100467
100550
|
} | undefined;
|
|
100468
100551
|
destinationAzure?: {
|
|
100469
100552
|
branch: string;
|
|
@@ -100471,29 +100554,29 @@ declare const Pipeline: z.ZodObject<{
|
|
|
100471
100554
|
projectId: string;
|
|
100472
100555
|
repositoryId: string;
|
|
100473
100556
|
url?: string | null | undefined;
|
|
100474
|
-
userId?: number | undefined;
|
|
100557
|
+
userId?: number | null | undefined;
|
|
100475
100558
|
credentialId?: string | undefined;
|
|
100476
100559
|
relativePath?: string | null | undefined;
|
|
100477
|
-
connectionId?: string | undefined;
|
|
100560
|
+
connectionId?: string | null | undefined;
|
|
100478
100561
|
} | undefined;
|
|
100479
100562
|
destinationGitlab?: {
|
|
100480
100563
|
branch: string;
|
|
100481
100564
|
projectId: string;
|
|
100482
100565
|
url?: string | null | undefined;
|
|
100483
|
-
userId?: number | undefined;
|
|
100566
|
+
userId?: number | null | undefined;
|
|
100484
100567
|
credentialId?: string | undefined;
|
|
100485
100568
|
relativePath?: string | null | undefined;
|
|
100486
|
-
connectionId?: string | undefined;
|
|
100569
|
+
connectionId?: string | null | undefined;
|
|
100487
100570
|
} | undefined;
|
|
100488
100571
|
destinationBitbucket?: {
|
|
100489
100572
|
branch: string;
|
|
100490
100573
|
workspaceSlug: string;
|
|
100491
100574
|
projectKey: string;
|
|
100492
100575
|
repoSlug: string;
|
|
100493
|
-
userId?: number | undefined;
|
|
100576
|
+
userId?: number | null | undefined;
|
|
100494
100577
|
credentialId?: string | undefined;
|
|
100495
100578
|
relativePath?: string | null | undefined;
|
|
100496
|
-
connectionId?: string | undefined;
|
|
100579
|
+
connectionId?: string | null | undefined;
|
|
100497
100580
|
} | undefined;
|
|
100498
100581
|
}>;
|
|
100499
100582
|
type Pipeline = z.infer<typeof Pipeline>;
|
|
@@ -100762,45 +100845,59 @@ declare const GitOrganization: z.ZodObject<{
|
|
|
100762
100845
|
id: z.ZodString;
|
|
100763
100846
|
name: z.ZodString;
|
|
100764
100847
|
url: z.ZodString;
|
|
100848
|
+
slug: z.ZodString;
|
|
100765
100849
|
}, "strip", z.ZodTypeAny, {
|
|
100766
100850
|
id: string;
|
|
100767
100851
|
name: string;
|
|
100768
100852
|
url: string;
|
|
100853
|
+
slug: string;
|
|
100769
100854
|
}, {
|
|
100770
100855
|
id: string;
|
|
100771
100856
|
name: string;
|
|
100772
100857
|
url: string;
|
|
100858
|
+
slug: string;
|
|
100773
100859
|
}>;
|
|
100774
100860
|
type GitOrganization = z.infer<typeof GitOrganization>;
|
|
100775
100861
|
declare const GitProject: z.ZodObject<{
|
|
100776
100862
|
id: z.ZodString;
|
|
100777
100863
|
name: z.ZodString;
|
|
100778
100864
|
url: z.ZodString;
|
|
100865
|
+
slug: z.ZodString;
|
|
100779
100866
|
}, "strip", z.ZodTypeAny, {
|
|
100780
100867
|
id: string;
|
|
100781
100868
|
name: string;
|
|
100782
100869
|
url: string;
|
|
100870
|
+
slug: string;
|
|
100783
100871
|
}, {
|
|
100784
100872
|
id: string;
|
|
100785
100873
|
name: string;
|
|
100786
100874
|
url: string;
|
|
100875
|
+
slug: string;
|
|
100787
100876
|
}>;
|
|
100788
100877
|
type GitProject = z.infer<typeof GitProject>;
|
|
100789
100878
|
declare const GitRepository: z.ZodObject<{
|
|
100790
100879
|
id: z.ZodString;
|
|
100791
100880
|
name: z.ZodString;
|
|
100792
100881
|
url: z.ZodString;
|
|
100793
|
-
|
|
100882
|
+
slug: z.ZodString;
|
|
100883
|
+
/**
|
|
100884
|
+
* Can be undefined when:
|
|
100885
|
+
* - there are no branches in the repository yet
|
|
100886
|
+
* - Git provider doesn't expose this information on a repository via their API
|
|
100887
|
+
*/
|
|
100888
|
+
defaultBranch: z.ZodOptional<z.ZodString>;
|
|
100794
100889
|
}, "strip", z.ZodTypeAny, {
|
|
100795
100890
|
id: string;
|
|
100796
100891
|
name: string;
|
|
100797
100892
|
url: string;
|
|
100798
|
-
|
|
100893
|
+
slug: string;
|
|
100894
|
+
defaultBranch?: string | undefined;
|
|
100799
100895
|
}, {
|
|
100800
100896
|
id: string;
|
|
100801
100897
|
name: string;
|
|
100802
100898
|
url: string;
|
|
100803
|
-
|
|
100899
|
+
slug: string;
|
|
100900
|
+
defaultBranch?: string | undefined;
|
|
100804
100901
|
}>;
|
|
100805
100902
|
type GitRepository = z.infer<typeof GitRepository>;
|
|
100806
100903
|
declare const GitBranch: z.ZodObject<{
|
|
@@ -100837,6 +100934,8 @@ declare const IntegrationDesignSystem: z.ZodObject<{
|
|
|
100837
100934
|
type IntegrationDesignSystem = z.infer<typeof IntegrationDesignSystem>;
|
|
100838
100935
|
declare const IntegrationCredentialsType: z.ZodEnum<["OAuth2", "PAT", "GithubApp"]>;
|
|
100839
100936
|
type IntegrationCredentialsType = z.infer<typeof IntegrationCredentialsType>;
|
|
100937
|
+
declare const IntegrationCredentialsState: z.ZodEnum<["Active", "Inactive"]>;
|
|
100938
|
+
type IntegrationCredentialsState = z.infer<typeof IntegrationCredentialsState>;
|
|
100840
100939
|
declare const IntegrationCredentialsProfile: z.ZodObject<{
|
|
100841
100940
|
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100842
100941
|
email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -100844,6 +100943,7 @@ declare const IntegrationCredentialsProfile: z.ZodObject<{
|
|
|
100844
100943
|
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100845
100944
|
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100846
100945
|
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100946
|
+
collection: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100847
100947
|
}, "strip", z.ZodTypeAny, {
|
|
100848
100948
|
id?: string | undefined;
|
|
100849
100949
|
type?: string | undefined;
|
|
@@ -100851,6 +100951,7 @@ declare const IntegrationCredentialsProfile: z.ZodObject<{
|
|
|
100851
100951
|
handle?: string | undefined;
|
|
100852
100952
|
avatarUrl?: string | undefined;
|
|
100853
100953
|
organization?: string | undefined;
|
|
100954
|
+
collection?: string | undefined;
|
|
100854
100955
|
}, {
|
|
100855
100956
|
id?: string | null | undefined;
|
|
100856
100957
|
type?: string | null | undefined;
|
|
@@ -100858,6 +100959,7 @@ declare const IntegrationCredentialsProfile: z.ZodObject<{
|
|
|
100858
100959
|
handle?: string | null | undefined;
|
|
100859
100960
|
avatarUrl?: string | null | undefined;
|
|
100860
100961
|
organization?: string | null | undefined;
|
|
100962
|
+
collection?: string | null | undefined;
|
|
100861
100963
|
}>;
|
|
100862
100964
|
type IntegrationCredentialsProfile = z.infer<typeof IntegrationCredentialsProfile>;
|
|
100863
100965
|
declare const IntegrationCredentials: z.ZodObject<{
|
|
@@ -100880,6 +100982,7 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
100880
100982
|
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100881
100983
|
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100882
100984
|
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100985
|
+
collection: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
100883
100986
|
}, "strip", z.ZodTypeAny, {
|
|
100884
100987
|
id?: string | undefined;
|
|
100885
100988
|
type?: string | undefined;
|
|
@@ -100887,6 +100990,7 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
100887
100990
|
handle?: string | undefined;
|
|
100888
100991
|
avatarUrl?: string | undefined;
|
|
100889
100992
|
organization?: string | undefined;
|
|
100993
|
+
collection?: string | undefined;
|
|
100890
100994
|
}, {
|
|
100891
100995
|
id?: string | null | undefined;
|
|
100892
100996
|
type?: string | null | undefined;
|
|
@@ -100894,8 +100998,10 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
100894
100998
|
handle?: string | null | undefined;
|
|
100895
100999
|
avatarUrl?: string | null | undefined;
|
|
100896
101000
|
organization?: string | null | undefined;
|
|
101001
|
+
collection?: string | null | undefined;
|
|
100897
101002
|
}>>;
|
|
100898
101003
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
101004
|
+
state: z.ZodEnum<["Active", "Inactive"]>;
|
|
100899
101005
|
user: z.ZodOptional<z.ZodObject<{
|
|
100900
101006
|
id: z.ZodString;
|
|
100901
101007
|
name: z.ZodString;
|
|
@@ -100916,6 +101022,7 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
100916
101022
|
id: string;
|
|
100917
101023
|
createdAt: Date;
|
|
100918
101024
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
101025
|
+
state: "Active" | "Inactive";
|
|
100919
101026
|
userId: string;
|
|
100920
101027
|
accessToken: string;
|
|
100921
101028
|
integrationId: string;
|
|
@@ -100928,6 +101035,7 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
100928
101035
|
handle?: string | undefined;
|
|
100929
101036
|
avatarUrl?: string | undefined;
|
|
100930
101037
|
organization?: string | undefined;
|
|
101038
|
+
collection?: string | undefined;
|
|
100931
101039
|
} | undefined;
|
|
100932
101040
|
user?: {
|
|
100933
101041
|
id: string;
|
|
@@ -100944,6 +101052,7 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
100944
101052
|
id: string;
|
|
100945
101053
|
createdAt: Date;
|
|
100946
101054
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
101055
|
+
state: "Active" | "Inactive";
|
|
100947
101056
|
userId: string;
|
|
100948
101057
|
accessToken: string;
|
|
100949
101058
|
integrationId: string;
|
|
@@ -100956,6 +101065,7 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
100956
101065
|
handle?: string | null | undefined;
|
|
100957
101066
|
avatarUrl?: string | null | undefined;
|
|
100958
101067
|
organization?: string | null | undefined;
|
|
101068
|
+
collection?: string | null | undefined;
|
|
100959
101069
|
} | undefined;
|
|
100960
101070
|
user?: {
|
|
100961
101071
|
id: string;
|
|
@@ -101001,6 +101111,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101001
101111
|
type: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
101002
101112
|
avatarUrl: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
101003
101113
|
organization: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
101114
|
+
collection: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
101004
101115
|
}, "strip", z.ZodTypeAny, {
|
|
101005
101116
|
id?: string | undefined;
|
|
101006
101117
|
type?: string | undefined;
|
|
@@ -101008,6 +101119,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101008
101119
|
handle?: string | undefined;
|
|
101009
101120
|
avatarUrl?: string | undefined;
|
|
101010
101121
|
organization?: string | undefined;
|
|
101122
|
+
collection?: string | undefined;
|
|
101011
101123
|
}, {
|
|
101012
101124
|
id?: string | null | undefined;
|
|
101013
101125
|
type?: string | null | undefined;
|
|
@@ -101015,8 +101127,10 @@ declare const Integration: z.ZodObject<{
|
|
|
101015
101127
|
handle?: string | null | undefined;
|
|
101016
101128
|
avatarUrl?: string | null | undefined;
|
|
101017
101129
|
organization?: string | null | undefined;
|
|
101130
|
+
collection?: string | null | undefined;
|
|
101018
101131
|
}>>;
|
|
101019
101132
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
101133
|
+
state: z.ZodEnum<["Active", "Inactive"]>;
|
|
101020
101134
|
user: z.ZodOptional<z.ZodObject<{
|
|
101021
101135
|
id: z.ZodString;
|
|
101022
101136
|
name: z.ZodString;
|
|
@@ -101037,6 +101151,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101037
101151
|
id: string;
|
|
101038
101152
|
createdAt: Date;
|
|
101039
101153
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
101154
|
+
state: "Active" | "Inactive";
|
|
101040
101155
|
userId: string;
|
|
101041
101156
|
accessToken: string;
|
|
101042
101157
|
integrationId: string;
|
|
@@ -101049,6 +101164,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101049
101164
|
handle?: string | undefined;
|
|
101050
101165
|
avatarUrl?: string | undefined;
|
|
101051
101166
|
organization?: string | undefined;
|
|
101167
|
+
collection?: string | undefined;
|
|
101052
101168
|
} | undefined;
|
|
101053
101169
|
user?: {
|
|
101054
101170
|
id: string;
|
|
@@ -101065,6 +101181,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101065
101181
|
id: string;
|
|
101066
101182
|
createdAt: Date;
|
|
101067
101183
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
101184
|
+
state: "Active" | "Inactive";
|
|
101068
101185
|
userId: string;
|
|
101069
101186
|
accessToken: string;
|
|
101070
101187
|
integrationId: string;
|
|
@@ -101077,6 +101194,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101077
101194
|
handle?: string | null | undefined;
|
|
101078
101195
|
avatarUrl?: string | null | undefined;
|
|
101079
101196
|
organization?: string | null | undefined;
|
|
101197
|
+
collection?: string | null | undefined;
|
|
101080
101198
|
} | undefined;
|
|
101081
101199
|
user?: {
|
|
101082
101200
|
id: string;
|
|
@@ -101099,6 +101217,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101099
101217
|
id: string;
|
|
101100
101218
|
createdAt: Date;
|
|
101101
101219
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
101220
|
+
state: "Active" | "Inactive";
|
|
101102
101221
|
userId: string;
|
|
101103
101222
|
accessToken: string;
|
|
101104
101223
|
integrationId: string;
|
|
@@ -101111,6 +101230,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101111
101230
|
handle?: string | undefined;
|
|
101112
101231
|
avatarUrl?: string | undefined;
|
|
101113
101232
|
organization?: string | undefined;
|
|
101233
|
+
collection?: string | undefined;
|
|
101114
101234
|
} | undefined;
|
|
101115
101235
|
user?: {
|
|
101116
101236
|
id: string;
|
|
@@ -101133,6 +101253,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101133
101253
|
id: string;
|
|
101134
101254
|
createdAt: Date;
|
|
101135
101255
|
type: "OAuth2" | "PAT" | "GithubApp";
|
|
101256
|
+
state: "Active" | "Inactive";
|
|
101136
101257
|
userId: string;
|
|
101137
101258
|
accessToken: string;
|
|
101138
101259
|
integrationId: string;
|
|
@@ -101145,6 +101266,7 @@ declare const Integration: z.ZodObject<{
|
|
|
101145
101266
|
handle?: string | null | undefined;
|
|
101146
101267
|
avatarUrl?: string | null | undefined;
|
|
101147
101268
|
organization?: string | null | undefined;
|
|
101269
|
+
collection?: string | null | undefined;
|
|
101148
101270
|
} | undefined;
|
|
101149
101271
|
user?: {
|
|
101150
101272
|
id: string;
|
|
@@ -101171,6 +101293,7 @@ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
101171
101293
|
token_type: z.ZodOptional<z.ZodString>;
|
|
101172
101294
|
token_name: z.ZodOptional<z.ZodString>;
|
|
101173
101295
|
token_azure_organization_name: z.ZodOptional<z.ZodString>;
|
|
101296
|
+
token_azure_collection_name: z.ZodOptional<z.ZodString>;
|
|
101174
101297
|
token_bitbucket_username: z.ZodOptional<z.ZodString>;
|
|
101175
101298
|
custom_url: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
101176
101299
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -101180,6 +101303,7 @@ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
101180
101303
|
token_type?: string | undefined;
|
|
101181
101304
|
token_name?: string | undefined;
|
|
101182
101305
|
token_azure_organization_name?: string | undefined;
|
|
101306
|
+
token_azure_collection_name?: string | undefined;
|
|
101183
101307
|
token_bitbucket_username?: string | undefined;
|
|
101184
101308
|
custom_url?: string | undefined;
|
|
101185
101309
|
}, {
|
|
@@ -101189,6 +101313,7 @@ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
101189
101313
|
token_type?: string | undefined;
|
|
101190
101314
|
token_name?: string | undefined;
|
|
101191
101315
|
token_azure_organization_name?: string | undefined;
|
|
101316
|
+
token_azure_collection_name?: string | undefined;
|
|
101192
101317
|
token_bitbucket_username?: string | undefined;
|
|
101193
101318
|
custom_url?: string | undefined;
|
|
101194
101319
|
}>, {
|
|
@@ -101198,6 +101323,7 @@ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
101198
101323
|
token_type?: string | undefined;
|
|
101199
101324
|
token_name?: string | undefined;
|
|
101200
101325
|
token_azure_organization_name?: string | undefined;
|
|
101326
|
+
token_azure_collection_name?: string | undefined;
|
|
101201
101327
|
token_bitbucket_username?: string | undefined;
|
|
101202
101328
|
custom_url?: string | undefined;
|
|
101203
101329
|
}, {
|
|
@@ -101207,6 +101333,7 @@ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
101207
101333
|
token_type?: string | undefined;
|
|
101208
101334
|
token_name?: string | undefined;
|
|
101209
101335
|
token_azure_organization_name?: string | undefined;
|
|
101336
|
+
token_azure_collection_name?: string | undefined;
|
|
101210
101337
|
token_bitbucket_username?: string | undefined;
|
|
101211
101338
|
custom_url?: string | undefined;
|
|
101212
101339
|
}>, {
|
|
@@ -101217,6 +101344,7 @@ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
101217
101344
|
tokenName: string | undefined;
|
|
101218
101345
|
tokenBitbucketUsername: string | undefined;
|
|
101219
101346
|
tokenAzureOrganizationName: string | undefined;
|
|
101347
|
+
tokenAzureCollection: string | undefined;
|
|
101220
101348
|
customUrl: string | undefined;
|
|
101221
101349
|
}, {
|
|
101222
101350
|
access_token: string;
|
|
@@ -101225,6 +101353,7 @@ declare const IntegrationToken: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
101225
101353
|
token_type?: string | undefined;
|
|
101226
101354
|
token_name?: string | undefined;
|
|
101227
101355
|
token_azure_organization_name?: string | undefined;
|
|
101356
|
+
token_azure_collection_name?: string | undefined;
|
|
101228
101357
|
token_bitbucket_username?: string | undefined;
|
|
101229
101358
|
custom_url?: string | undefined;
|
|
101230
101359
|
}>;
|
|
@@ -119150,4 +119279,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
119150
119279
|
}>;
|
|
119151
119280
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
119152
119281
|
|
|
119153
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, zodCreateInputOmit, zodUpdateInputOmit };
|
|
119282
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, 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, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|