@supernova-studio/model 0.54.5 → 0.54.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +248 -200
- package/dist/index.d.ts +248 -200
- package/dist/index.js +17 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +673 -657
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +8 -0
- package/src/dsm/index.ts +1 -0
- package/src/dsm/membership/design-system-membership.ts +10 -0
- package/src/dsm/membership/index.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -2322,21 +2322,21 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2322
2322
|
}, "strip", z.ZodTypeAny, {
|
|
2323
2323
|
url: string;
|
|
2324
2324
|
branch: string;
|
|
2325
|
+
userId?: number | undefined;
|
|
2325
2326
|
credentialId?: string | undefined;
|
|
2326
2327
|
relativePath?: string | undefined;
|
|
2327
2328
|
commitAuthorName?: string | undefined;
|
|
2328
2329
|
commitAuthorEmail?: string | undefined;
|
|
2329
2330
|
connectionId?: string | undefined;
|
|
2330
|
-
userId?: number | undefined;
|
|
2331
2331
|
}, {
|
|
2332
2332
|
url: string;
|
|
2333
2333
|
branch: string;
|
|
2334
|
+
userId?: number | null | undefined;
|
|
2334
2335
|
credentialId?: string | undefined;
|
|
2335
2336
|
relativePath?: string | null | undefined;
|
|
2336
2337
|
commitAuthorName?: string | null | undefined;
|
|
2337
2338
|
commitAuthorEmail?: string | null | undefined;
|
|
2338
2339
|
connectionId?: string | null | undefined;
|
|
2339
|
-
userId?: number | null | undefined;
|
|
2340
2340
|
}>>;
|
|
2341
2341
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
2342
2342
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -2356,24 +2356,24 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2356
2356
|
projectId: string;
|
|
2357
2357
|
repositoryId: string;
|
|
2358
2358
|
url?: string | undefined;
|
|
2359
|
+
userId?: number | undefined;
|
|
2359
2360
|
credentialId?: string | undefined;
|
|
2360
2361
|
relativePath?: string | undefined;
|
|
2361
2362
|
commitAuthorName?: string | undefined;
|
|
2362
2363
|
commitAuthorEmail?: string | undefined;
|
|
2363
2364
|
connectionId?: string | undefined;
|
|
2364
|
-
userId?: number | undefined;
|
|
2365
2365
|
}, {
|
|
2366
2366
|
branch: string;
|
|
2367
2367
|
organizationId: string;
|
|
2368
2368
|
projectId: string;
|
|
2369
2369
|
repositoryId: string;
|
|
2370
2370
|
url?: string | null | undefined;
|
|
2371
|
+
userId?: number | null | undefined;
|
|
2371
2372
|
credentialId?: string | undefined;
|
|
2372
2373
|
relativePath?: string | null | undefined;
|
|
2373
2374
|
commitAuthorName?: string | null | undefined;
|
|
2374
2375
|
commitAuthorEmail?: string | null | undefined;
|
|
2375
2376
|
connectionId?: string | null | undefined;
|
|
2376
|
-
userId?: number | null | undefined;
|
|
2377
2377
|
}>>;
|
|
2378
2378
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
2379
2379
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -2389,22 +2389,22 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2389
2389
|
branch: string;
|
|
2390
2390
|
projectId: string;
|
|
2391
2391
|
url?: string | undefined;
|
|
2392
|
+
userId?: number | undefined;
|
|
2392
2393
|
credentialId?: string | undefined;
|
|
2393
2394
|
relativePath?: string | undefined;
|
|
2394
2395
|
commitAuthorName?: string | undefined;
|
|
2395
2396
|
commitAuthorEmail?: string | undefined;
|
|
2396
2397
|
connectionId?: string | undefined;
|
|
2397
|
-
userId?: number | undefined;
|
|
2398
2398
|
}, {
|
|
2399
2399
|
branch: string;
|
|
2400
2400
|
projectId: string;
|
|
2401
2401
|
url?: string | null | undefined;
|
|
2402
|
+
userId?: number | null | undefined;
|
|
2402
2403
|
credentialId?: string | undefined;
|
|
2403
2404
|
relativePath?: string | null | undefined;
|
|
2404
2405
|
commitAuthorName?: string | null | undefined;
|
|
2405
2406
|
commitAuthorEmail?: string | null | undefined;
|
|
2406
2407
|
connectionId?: string | null | undefined;
|
|
2407
|
-
userId?: number | null | undefined;
|
|
2408
2408
|
}>>;
|
|
2409
2409
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
2410
2410
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -2422,23 +2422,23 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2422
2422
|
workspaceSlug: string;
|
|
2423
2423
|
projectKey: string;
|
|
2424
2424
|
repoSlug: string;
|
|
2425
|
+
userId?: number | undefined;
|
|
2425
2426
|
credentialId?: string | undefined;
|
|
2426
2427
|
relativePath?: string | undefined;
|
|
2427
2428
|
commitAuthorName?: string | undefined;
|
|
2428
2429
|
commitAuthorEmail?: string | undefined;
|
|
2429
2430
|
connectionId?: string | undefined;
|
|
2430
|
-
userId?: number | undefined;
|
|
2431
2431
|
}, {
|
|
2432
2432
|
branch: string;
|
|
2433
2433
|
workspaceSlug: string;
|
|
2434
2434
|
projectKey: string;
|
|
2435
2435
|
repoSlug: string;
|
|
2436
|
+
userId?: number | null | undefined;
|
|
2436
2437
|
credentialId?: string | undefined;
|
|
2437
2438
|
relativePath?: string | null | undefined;
|
|
2438
2439
|
commitAuthorName?: string | null | undefined;
|
|
2439
2440
|
commitAuthorEmail?: string | null | undefined;
|
|
2440
2441
|
connectionId?: string | null | undefined;
|
|
2441
|
-
userId?: number | null | undefined;
|
|
2442
2442
|
}>>;
|
|
2443
2443
|
id: z.ZodString;
|
|
2444
2444
|
name: z.ZodString;
|
|
@@ -2471,12 +2471,12 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2471
2471
|
destinationGithub?: {
|
|
2472
2472
|
url: string;
|
|
2473
2473
|
branch: string;
|
|
2474
|
+
userId?: number | undefined;
|
|
2474
2475
|
credentialId?: string | undefined;
|
|
2475
2476
|
relativePath?: string | undefined;
|
|
2476
2477
|
commitAuthorName?: string | undefined;
|
|
2477
2478
|
commitAuthorEmail?: string | undefined;
|
|
2478
2479
|
connectionId?: string | undefined;
|
|
2479
|
-
userId?: number | undefined;
|
|
2480
2480
|
} | undefined;
|
|
2481
2481
|
destinationAzure?: {
|
|
2482
2482
|
branch: string;
|
|
@@ -2484,35 +2484,35 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2484
2484
|
projectId: string;
|
|
2485
2485
|
repositoryId: string;
|
|
2486
2486
|
url?: string | undefined;
|
|
2487
|
+
userId?: number | undefined;
|
|
2487
2488
|
credentialId?: string | undefined;
|
|
2488
2489
|
relativePath?: string | undefined;
|
|
2489
2490
|
commitAuthorName?: string | undefined;
|
|
2490
2491
|
commitAuthorEmail?: string | undefined;
|
|
2491
2492
|
connectionId?: string | undefined;
|
|
2492
|
-
userId?: number | undefined;
|
|
2493
2493
|
} | undefined;
|
|
2494
2494
|
destinationGitlab?: {
|
|
2495
2495
|
branch: string;
|
|
2496
2496
|
projectId: string;
|
|
2497
2497
|
url?: string | undefined;
|
|
2498
|
+
userId?: number | undefined;
|
|
2498
2499
|
credentialId?: string | undefined;
|
|
2499
2500
|
relativePath?: string | undefined;
|
|
2500
2501
|
commitAuthorName?: string | undefined;
|
|
2501
2502
|
commitAuthorEmail?: string | undefined;
|
|
2502
2503
|
connectionId?: string | undefined;
|
|
2503
|
-
userId?: number | undefined;
|
|
2504
2504
|
} | undefined;
|
|
2505
2505
|
destinationBitbucket?: {
|
|
2506
2506
|
branch: string;
|
|
2507
2507
|
workspaceSlug: string;
|
|
2508
2508
|
projectKey: string;
|
|
2509
2509
|
repoSlug: string;
|
|
2510
|
+
userId?: number | undefined;
|
|
2510
2511
|
credentialId?: string | undefined;
|
|
2511
2512
|
relativePath?: string | undefined;
|
|
2512
2513
|
commitAuthorName?: string | undefined;
|
|
2513
2514
|
commitAuthorEmail?: string | undefined;
|
|
2514
2515
|
connectionId?: string | undefined;
|
|
2515
|
-
userId?: number | undefined;
|
|
2516
2516
|
} | undefined;
|
|
2517
2517
|
}, {
|
|
2518
2518
|
id: string;
|
|
@@ -2536,12 +2536,12 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2536
2536
|
destinationGithub?: {
|
|
2537
2537
|
url: string;
|
|
2538
2538
|
branch: string;
|
|
2539
|
+
userId?: number | null | undefined;
|
|
2539
2540
|
credentialId?: string | undefined;
|
|
2540
2541
|
relativePath?: string | null | undefined;
|
|
2541
2542
|
commitAuthorName?: string | null | undefined;
|
|
2542
2543
|
commitAuthorEmail?: string | null | undefined;
|
|
2543
2544
|
connectionId?: string | null | undefined;
|
|
2544
|
-
userId?: number | null | undefined;
|
|
2545
2545
|
} | undefined;
|
|
2546
2546
|
destinationAzure?: {
|
|
2547
2547
|
branch: string;
|
|
@@ -2549,35 +2549,35 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2549
2549
|
projectId: string;
|
|
2550
2550
|
repositoryId: string;
|
|
2551
2551
|
url?: string | null | undefined;
|
|
2552
|
+
userId?: number | null | undefined;
|
|
2552
2553
|
credentialId?: string | undefined;
|
|
2553
2554
|
relativePath?: string | null | undefined;
|
|
2554
2555
|
commitAuthorName?: string | null | undefined;
|
|
2555
2556
|
commitAuthorEmail?: string | null | undefined;
|
|
2556
2557
|
connectionId?: string | null | undefined;
|
|
2557
|
-
userId?: number | null | undefined;
|
|
2558
2558
|
} | undefined;
|
|
2559
2559
|
destinationGitlab?: {
|
|
2560
2560
|
branch: string;
|
|
2561
2561
|
projectId: string;
|
|
2562
2562
|
url?: string | null | undefined;
|
|
2563
|
+
userId?: number | null | undefined;
|
|
2563
2564
|
credentialId?: string | undefined;
|
|
2564
2565
|
relativePath?: string | null | undefined;
|
|
2565
2566
|
commitAuthorName?: string | null | undefined;
|
|
2566
2567
|
commitAuthorEmail?: string | null | undefined;
|
|
2567
2568
|
connectionId?: string | null | undefined;
|
|
2568
|
-
userId?: number | null | undefined;
|
|
2569
2569
|
} | undefined;
|
|
2570
2570
|
destinationBitbucket?: {
|
|
2571
2571
|
branch: string;
|
|
2572
2572
|
workspaceSlug: string;
|
|
2573
2573
|
projectKey: string;
|
|
2574
2574
|
repoSlug: string;
|
|
2575
|
+
userId?: number | null | undefined;
|
|
2575
2576
|
credentialId?: string | undefined;
|
|
2576
2577
|
relativePath?: string | null | undefined;
|
|
2577
2578
|
commitAuthorName?: string | null | undefined;
|
|
2578
2579
|
commitAuthorEmail?: string | null | undefined;
|
|
2579
2580
|
connectionId?: string | null | undefined;
|
|
2580
|
-
userId?: number | null | undefined;
|
|
2581
2581
|
} | undefined;
|
|
2582
2582
|
}>, "many">;
|
|
2583
2583
|
exportJobs: z.ZodArray<z.ZodObject<{
|
|
@@ -2683,12 +2683,12 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2683
2683
|
destinationGithub?: {
|
|
2684
2684
|
url: string;
|
|
2685
2685
|
branch: string;
|
|
2686
|
+
userId?: number | undefined;
|
|
2686
2687
|
credentialId?: string | undefined;
|
|
2687
2688
|
relativePath?: string | undefined;
|
|
2688
2689
|
commitAuthorName?: string | undefined;
|
|
2689
2690
|
commitAuthorEmail?: string | undefined;
|
|
2690
2691
|
connectionId?: string | undefined;
|
|
2691
|
-
userId?: number | undefined;
|
|
2692
2692
|
} | undefined;
|
|
2693
2693
|
destinationAzure?: {
|
|
2694
2694
|
branch: string;
|
|
@@ -2696,35 +2696,35 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2696
2696
|
projectId: string;
|
|
2697
2697
|
repositoryId: string;
|
|
2698
2698
|
url?: string | undefined;
|
|
2699
|
+
userId?: number | undefined;
|
|
2699
2700
|
credentialId?: string | undefined;
|
|
2700
2701
|
relativePath?: string | undefined;
|
|
2701
2702
|
commitAuthorName?: string | undefined;
|
|
2702
2703
|
commitAuthorEmail?: string | undefined;
|
|
2703
2704
|
connectionId?: string | undefined;
|
|
2704
|
-
userId?: number | undefined;
|
|
2705
2705
|
} | undefined;
|
|
2706
2706
|
destinationGitlab?: {
|
|
2707
2707
|
branch: string;
|
|
2708
2708
|
projectId: string;
|
|
2709
2709
|
url?: string | undefined;
|
|
2710
|
+
userId?: number | undefined;
|
|
2710
2711
|
credentialId?: string | undefined;
|
|
2711
2712
|
relativePath?: string | undefined;
|
|
2712
2713
|
commitAuthorName?: string | undefined;
|
|
2713
2714
|
commitAuthorEmail?: string | undefined;
|
|
2714
2715
|
connectionId?: string | undefined;
|
|
2715
|
-
userId?: number | undefined;
|
|
2716
2716
|
} | undefined;
|
|
2717
2717
|
destinationBitbucket?: {
|
|
2718
2718
|
branch: string;
|
|
2719
2719
|
workspaceSlug: string;
|
|
2720
2720
|
projectKey: string;
|
|
2721
2721
|
repoSlug: string;
|
|
2722
|
+
userId?: number | undefined;
|
|
2722
2723
|
credentialId?: string | undefined;
|
|
2723
2724
|
relativePath?: string | undefined;
|
|
2724
2725
|
commitAuthorName?: string | undefined;
|
|
2725
2726
|
commitAuthorEmail?: string | undefined;
|
|
2726
2727
|
connectionId?: string | undefined;
|
|
2727
|
-
userId?: number | undefined;
|
|
2728
2728
|
} | undefined;
|
|
2729
2729
|
}[];
|
|
2730
2730
|
exportJobs: {
|
|
@@ -2820,12 +2820,12 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2820
2820
|
destinationGithub?: {
|
|
2821
2821
|
url: string;
|
|
2822
2822
|
branch: string;
|
|
2823
|
+
userId?: number | null | undefined;
|
|
2823
2824
|
credentialId?: string | undefined;
|
|
2824
2825
|
relativePath?: string | null | undefined;
|
|
2825
2826
|
commitAuthorName?: string | null | undefined;
|
|
2826
2827
|
commitAuthorEmail?: string | null | undefined;
|
|
2827
2828
|
connectionId?: string | null | undefined;
|
|
2828
|
-
userId?: number | null | undefined;
|
|
2829
2829
|
} | undefined;
|
|
2830
2830
|
destinationAzure?: {
|
|
2831
2831
|
branch: string;
|
|
@@ -2833,35 +2833,35 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2833
2833
|
projectId: string;
|
|
2834
2834
|
repositoryId: string;
|
|
2835
2835
|
url?: string | null | undefined;
|
|
2836
|
+
userId?: number | null | undefined;
|
|
2836
2837
|
credentialId?: string | undefined;
|
|
2837
2838
|
relativePath?: string | null | undefined;
|
|
2838
2839
|
commitAuthorName?: string | null | undefined;
|
|
2839
2840
|
commitAuthorEmail?: string | null | undefined;
|
|
2840
2841
|
connectionId?: string | null | undefined;
|
|
2841
|
-
userId?: number | null | undefined;
|
|
2842
2842
|
} | undefined;
|
|
2843
2843
|
destinationGitlab?: {
|
|
2844
2844
|
branch: string;
|
|
2845
2845
|
projectId: string;
|
|
2846
2846
|
url?: string | null | undefined;
|
|
2847
|
+
userId?: number | null | undefined;
|
|
2847
2848
|
credentialId?: string | undefined;
|
|
2848
2849
|
relativePath?: string | null | undefined;
|
|
2849
2850
|
commitAuthorName?: string | null | undefined;
|
|
2850
2851
|
commitAuthorEmail?: string | null | undefined;
|
|
2851
2852
|
connectionId?: string | null | undefined;
|
|
2852
|
-
userId?: number | null | undefined;
|
|
2853
2853
|
} | undefined;
|
|
2854
2854
|
destinationBitbucket?: {
|
|
2855
2855
|
branch: string;
|
|
2856
2856
|
workspaceSlug: string;
|
|
2857
2857
|
projectKey: string;
|
|
2858
2858
|
repoSlug: string;
|
|
2859
|
+
userId?: number | null | undefined;
|
|
2859
2860
|
credentialId?: string | undefined;
|
|
2860
2861
|
relativePath?: string | null | undefined;
|
|
2861
2862
|
commitAuthorName?: string | null | undefined;
|
|
2862
2863
|
commitAuthorEmail?: string | null | undefined;
|
|
2863
2864
|
connectionId?: string | null | undefined;
|
|
2864
|
-
userId?: number | null | undefined;
|
|
2865
2865
|
} | undefined;
|
|
2866
2866
|
}[];
|
|
2867
2867
|
exportJobs: {
|
|
@@ -16290,21 +16290,21 @@ declare const UserDump: z.ZodObject<{
|
|
|
16290
16290
|
}, "strip", z.ZodTypeAny, {
|
|
16291
16291
|
url: string;
|
|
16292
16292
|
branch: string;
|
|
16293
|
+
userId?: number | undefined;
|
|
16293
16294
|
credentialId?: string | undefined;
|
|
16294
16295
|
relativePath?: string | undefined;
|
|
16295
16296
|
commitAuthorName?: string | undefined;
|
|
16296
16297
|
commitAuthorEmail?: string | undefined;
|
|
16297
16298
|
connectionId?: string | undefined;
|
|
16298
|
-
userId?: number | undefined;
|
|
16299
16299
|
}, {
|
|
16300
16300
|
url: string;
|
|
16301
16301
|
branch: string;
|
|
16302
|
+
userId?: number | null | undefined;
|
|
16302
16303
|
credentialId?: string | undefined;
|
|
16303
16304
|
relativePath?: string | null | undefined;
|
|
16304
16305
|
commitAuthorName?: string | null | undefined;
|
|
16305
16306
|
commitAuthorEmail?: string | null | undefined;
|
|
16306
16307
|
connectionId?: string | null | undefined;
|
|
16307
|
-
userId?: number | null | undefined;
|
|
16308
16308
|
}>>;
|
|
16309
16309
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
16310
16310
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -16324,24 +16324,24 @@ declare const UserDump: z.ZodObject<{
|
|
|
16324
16324
|
projectId: string;
|
|
16325
16325
|
repositoryId: string;
|
|
16326
16326
|
url?: string | undefined;
|
|
16327
|
+
userId?: number | undefined;
|
|
16327
16328
|
credentialId?: string | undefined;
|
|
16328
16329
|
relativePath?: string | undefined;
|
|
16329
16330
|
commitAuthorName?: string | undefined;
|
|
16330
16331
|
commitAuthorEmail?: string | undefined;
|
|
16331
16332
|
connectionId?: string | undefined;
|
|
16332
|
-
userId?: number | undefined;
|
|
16333
16333
|
}, {
|
|
16334
16334
|
branch: string;
|
|
16335
16335
|
organizationId: string;
|
|
16336
16336
|
projectId: string;
|
|
16337
16337
|
repositoryId: string;
|
|
16338
16338
|
url?: string | null | undefined;
|
|
16339
|
+
userId?: number | null | undefined;
|
|
16339
16340
|
credentialId?: string | undefined;
|
|
16340
16341
|
relativePath?: string | null | undefined;
|
|
16341
16342
|
commitAuthorName?: string | null | undefined;
|
|
16342
16343
|
commitAuthorEmail?: string | null | undefined;
|
|
16343
16344
|
connectionId?: string | null | undefined;
|
|
16344
|
-
userId?: number | null | undefined;
|
|
16345
16345
|
}>>;
|
|
16346
16346
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
16347
16347
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -16357,22 +16357,22 @@ declare const UserDump: z.ZodObject<{
|
|
|
16357
16357
|
branch: string;
|
|
16358
16358
|
projectId: string;
|
|
16359
16359
|
url?: string | undefined;
|
|
16360
|
+
userId?: number | undefined;
|
|
16360
16361
|
credentialId?: string | undefined;
|
|
16361
16362
|
relativePath?: string | undefined;
|
|
16362
16363
|
commitAuthorName?: string | undefined;
|
|
16363
16364
|
commitAuthorEmail?: string | undefined;
|
|
16364
16365
|
connectionId?: string | undefined;
|
|
16365
|
-
userId?: number | undefined;
|
|
16366
16366
|
}, {
|
|
16367
16367
|
branch: string;
|
|
16368
16368
|
projectId: string;
|
|
16369
16369
|
url?: string | null | undefined;
|
|
16370
|
+
userId?: number | null | undefined;
|
|
16370
16371
|
credentialId?: string | undefined;
|
|
16371
16372
|
relativePath?: string | null | undefined;
|
|
16372
16373
|
commitAuthorName?: string | null | undefined;
|
|
16373
16374
|
commitAuthorEmail?: string | null | undefined;
|
|
16374
16375
|
connectionId?: string | null | undefined;
|
|
16375
|
-
userId?: number | null | undefined;
|
|
16376
16376
|
}>>;
|
|
16377
16377
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
16378
16378
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -16390,23 +16390,23 @@ declare const UserDump: z.ZodObject<{
|
|
|
16390
16390
|
workspaceSlug: string;
|
|
16391
16391
|
projectKey: string;
|
|
16392
16392
|
repoSlug: string;
|
|
16393
|
+
userId?: number | undefined;
|
|
16393
16394
|
credentialId?: string | undefined;
|
|
16394
16395
|
relativePath?: string | undefined;
|
|
16395
16396
|
commitAuthorName?: string | undefined;
|
|
16396
16397
|
commitAuthorEmail?: string | undefined;
|
|
16397
16398
|
connectionId?: string | undefined;
|
|
16398
|
-
userId?: number | undefined;
|
|
16399
16399
|
}, {
|
|
16400
16400
|
branch: string;
|
|
16401
16401
|
workspaceSlug: string;
|
|
16402
16402
|
projectKey: string;
|
|
16403
16403
|
repoSlug: string;
|
|
16404
|
+
userId?: number | null | undefined;
|
|
16404
16405
|
credentialId?: string | undefined;
|
|
16405
16406
|
relativePath?: string | null | undefined;
|
|
16406
16407
|
commitAuthorName?: string | null | undefined;
|
|
16407
16408
|
commitAuthorEmail?: string | null | undefined;
|
|
16408
16409
|
connectionId?: string | null | undefined;
|
|
16409
|
-
userId?: number | null | undefined;
|
|
16410
16410
|
}>>;
|
|
16411
16411
|
id: z.ZodString;
|
|
16412
16412
|
name: z.ZodString;
|
|
@@ -16439,12 +16439,12 @@ declare const UserDump: z.ZodObject<{
|
|
|
16439
16439
|
destinationGithub?: {
|
|
16440
16440
|
url: string;
|
|
16441
16441
|
branch: string;
|
|
16442
|
+
userId?: number | undefined;
|
|
16442
16443
|
credentialId?: string | undefined;
|
|
16443
16444
|
relativePath?: string | undefined;
|
|
16444
16445
|
commitAuthorName?: string | undefined;
|
|
16445
16446
|
commitAuthorEmail?: string | undefined;
|
|
16446
16447
|
connectionId?: string | undefined;
|
|
16447
|
-
userId?: number | undefined;
|
|
16448
16448
|
} | undefined;
|
|
16449
16449
|
destinationAzure?: {
|
|
16450
16450
|
branch: string;
|
|
@@ -16452,35 +16452,35 @@ declare const UserDump: z.ZodObject<{
|
|
|
16452
16452
|
projectId: string;
|
|
16453
16453
|
repositoryId: string;
|
|
16454
16454
|
url?: string | undefined;
|
|
16455
|
+
userId?: number | undefined;
|
|
16455
16456
|
credentialId?: string | undefined;
|
|
16456
16457
|
relativePath?: string | undefined;
|
|
16457
16458
|
commitAuthorName?: string | undefined;
|
|
16458
16459
|
commitAuthorEmail?: string | undefined;
|
|
16459
16460
|
connectionId?: string | undefined;
|
|
16460
|
-
userId?: number | undefined;
|
|
16461
16461
|
} | undefined;
|
|
16462
16462
|
destinationGitlab?: {
|
|
16463
16463
|
branch: string;
|
|
16464
16464
|
projectId: string;
|
|
16465
16465
|
url?: string | undefined;
|
|
16466
|
+
userId?: number | undefined;
|
|
16466
16467
|
credentialId?: string | undefined;
|
|
16467
16468
|
relativePath?: string | undefined;
|
|
16468
16469
|
commitAuthorName?: string | undefined;
|
|
16469
16470
|
commitAuthorEmail?: string | undefined;
|
|
16470
16471
|
connectionId?: string | undefined;
|
|
16471
|
-
userId?: number | undefined;
|
|
16472
16472
|
} | undefined;
|
|
16473
16473
|
destinationBitbucket?: {
|
|
16474
16474
|
branch: string;
|
|
16475
16475
|
workspaceSlug: string;
|
|
16476
16476
|
projectKey: string;
|
|
16477
16477
|
repoSlug: string;
|
|
16478
|
+
userId?: number | undefined;
|
|
16478
16479
|
credentialId?: string | undefined;
|
|
16479
16480
|
relativePath?: string | undefined;
|
|
16480
16481
|
commitAuthorName?: string | undefined;
|
|
16481
16482
|
commitAuthorEmail?: string | undefined;
|
|
16482
16483
|
connectionId?: string | undefined;
|
|
16483
|
-
userId?: number | undefined;
|
|
16484
16484
|
} | undefined;
|
|
16485
16485
|
}, {
|
|
16486
16486
|
id: string;
|
|
@@ -16504,12 +16504,12 @@ declare const UserDump: z.ZodObject<{
|
|
|
16504
16504
|
destinationGithub?: {
|
|
16505
16505
|
url: string;
|
|
16506
16506
|
branch: string;
|
|
16507
|
+
userId?: number | null | undefined;
|
|
16507
16508
|
credentialId?: string | undefined;
|
|
16508
16509
|
relativePath?: string | null | undefined;
|
|
16509
16510
|
commitAuthorName?: string | null | undefined;
|
|
16510
16511
|
commitAuthorEmail?: string | null | undefined;
|
|
16511
16512
|
connectionId?: string | null | undefined;
|
|
16512
|
-
userId?: number | null | undefined;
|
|
16513
16513
|
} | undefined;
|
|
16514
16514
|
destinationAzure?: {
|
|
16515
16515
|
branch: string;
|
|
@@ -16517,35 +16517,35 @@ declare const UserDump: z.ZodObject<{
|
|
|
16517
16517
|
projectId: string;
|
|
16518
16518
|
repositoryId: string;
|
|
16519
16519
|
url?: string | null | undefined;
|
|
16520
|
+
userId?: number | null | undefined;
|
|
16520
16521
|
credentialId?: string | undefined;
|
|
16521
16522
|
relativePath?: string | null | undefined;
|
|
16522
16523
|
commitAuthorName?: string | null | undefined;
|
|
16523
16524
|
commitAuthorEmail?: string | null | undefined;
|
|
16524
16525
|
connectionId?: string | null | undefined;
|
|
16525
|
-
userId?: number | null | undefined;
|
|
16526
16526
|
} | undefined;
|
|
16527
16527
|
destinationGitlab?: {
|
|
16528
16528
|
branch: string;
|
|
16529
16529
|
projectId: string;
|
|
16530
16530
|
url?: string | null | undefined;
|
|
16531
|
+
userId?: number | null | undefined;
|
|
16531
16532
|
credentialId?: string | undefined;
|
|
16532
16533
|
relativePath?: string | null | undefined;
|
|
16533
16534
|
commitAuthorName?: string | null | undefined;
|
|
16534
16535
|
commitAuthorEmail?: string | null | undefined;
|
|
16535
16536
|
connectionId?: string | null | undefined;
|
|
16536
|
-
userId?: number | null | undefined;
|
|
16537
16537
|
} | undefined;
|
|
16538
16538
|
destinationBitbucket?: {
|
|
16539
16539
|
branch: string;
|
|
16540
16540
|
workspaceSlug: string;
|
|
16541
16541
|
projectKey: string;
|
|
16542
16542
|
repoSlug: string;
|
|
16543
|
+
userId?: number | null | undefined;
|
|
16543
16544
|
credentialId?: string | undefined;
|
|
16544
16545
|
relativePath?: string | null | undefined;
|
|
16545
16546
|
commitAuthorName?: string | null | undefined;
|
|
16546
16547
|
commitAuthorEmail?: string | null | undefined;
|
|
16547
16548
|
connectionId?: string | null | undefined;
|
|
16548
|
-
userId?: number | null | undefined;
|
|
16549
16549
|
} | undefined;
|
|
16550
16550
|
}>, "many">;
|
|
16551
16551
|
exportJobs: z.ZodArray<z.ZodObject<{
|
|
@@ -16651,12 +16651,12 @@ declare const UserDump: z.ZodObject<{
|
|
|
16651
16651
|
destinationGithub?: {
|
|
16652
16652
|
url: string;
|
|
16653
16653
|
branch: string;
|
|
16654
|
+
userId?: number | undefined;
|
|
16654
16655
|
credentialId?: string | undefined;
|
|
16655
16656
|
relativePath?: string | undefined;
|
|
16656
16657
|
commitAuthorName?: string | undefined;
|
|
16657
16658
|
commitAuthorEmail?: string | undefined;
|
|
16658
16659
|
connectionId?: string | undefined;
|
|
16659
|
-
userId?: number | undefined;
|
|
16660
16660
|
} | undefined;
|
|
16661
16661
|
destinationAzure?: {
|
|
16662
16662
|
branch: string;
|
|
@@ -16664,35 +16664,35 @@ declare const UserDump: z.ZodObject<{
|
|
|
16664
16664
|
projectId: string;
|
|
16665
16665
|
repositoryId: string;
|
|
16666
16666
|
url?: string | undefined;
|
|
16667
|
+
userId?: number | undefined;
|
|
16667
16668
|
credentialId?: string | undefined;
|
|
16668
16669
|
relativePath?: string | undefined;
|
|
16669
16670
|
commitAuthorName?: string | undefined;
|
|
16670
16671
|
commitAuthorEmail?: string | undefined;
|
|
16671
16672
|
connectionId?: string | undefined;
|
|
16672
|
-
userId?: number | undefined;
|
|
16673
16673
|
} | undefined;
|
|
16674
16674
|
destinationGitlab?: {
|
|
16675
16675
|
branch: string;
|
|
16676
16676
|
projectId: string;
|
|
16677
16677
|
url?: string | undefined;
|
|
16678
|
+
userId?: number | undefined;
|
|
16678
16679
|
credentialId?: string | undefined;
|
|
16679
16680
|
relativePath?: string | undefined;
|
|
16680
16681
|
commitAuthorName?: string | undefined;
|
|
16681
16682
|
commitAuthorEmail?: string | undefined;
|
|
16682
16683
|
connectionId?: string | undefined;
|
|
16683
|
-
userId?: number | undefined;
|
|
16684
16684
|
} | undefined;
|
|
16685
16685
|
destinationBitbucket?: {
|
|
16686
16686
|
branch: string;
|
|
16687
16687
|
workspaceSlug: string;
|
|
16688
16688
|
projectKey: string;
|
|
16689
16689
|
repoSlug: string;
|
|
16690
|
+
userId?: number | undefined;
|
|
16690
16691
|
credentialId?: string | undefined;
|
|
16691
16692
|
relativePath?: string | undefined;
|
|
16692
16693
|
commitAuthorName?: string | undefined;
|
|
16693
16694
|
commitAuthorEmail?: string | undefined;
|
|
16694
16695
|
connectionId?: string | undefined;
|
|
16695
|
-
userId?: number | undefined;
|
|
16696
16696
|
} | undefined;
|
|
16697
16697
|
}[];
|
|
16698
16698
|
exportJobs: {
|
|
@@ -16788,12 +16788,12 @@ declare const UserDump: z.ZodObject<{
|
|
|
16788
16788
|
destinationGithub?: {
|
|
16789
16789
|
url: string;
|
|
16790
16790
|
branch: string;
|
|
16791
|
+
userId?: number | null | undefined;
|
|
16791
16792
|
credentialId?: string | undefined;
|
|
16792
16793
|
relativePath?: string | null | undefined;
|
|
16793
16794
|
commitAuthorName?: string | null | undefined;
|
|
16794
16795
|
commitAuthorEmail?: string | null | undefined;
|
|
16795
16796
|
connectionId?: string | null | undefined;
|
|
16796
|
-
userId?: number | null | undefined;
|
|
16797
16797
|
} | undefined;
|
|
16798
16798
|
destinationAzure?: {
|
|
16799
16799
|
branch: string;
|
|
@@ -16801,35 +16801,35 @@ declare const UserDump: z.ZodObject<{
|
|
|
16801
16801
|
projectId: string;
|
|
16802
16802
|
repositoryId: string;
|
|
16803
16803
|
url?: string | null | undefined;
|
|
16804
|
+
userId?: number | null | undefined;
|
|
16804
16805
|
credentialId?: string | undefined;
|
|
16805
16806
|
relativePath?: string | null | undefined;
|
|
16806
16807
|
commitAuthorName?: string | null | undefined;
|
|
16807
16808
|
commitAuthorEmail?: string | null | undefined;
|
|
16808
16809
|
connectionId?: string | null | undefined;
|
|
16809
|
-
userId?: number | null | undefined;
|
|
16810
16810
|
} | undefined;
|
|
16811
16811
|
destinationGitlab?: {
|
|
16812
16812
|
branch: string;
|
|
16813
16813
|
projectId: string;
|
|
16814
16814
|
url?: string | null | undefined;
|
|
16815
|
+
userId?: number | null | undefined;
|
|
16815
16816
|
credentialId?: string | undefined;
|
|
16816
16817
|
relativePath?: string | null | undefined;
|
|
16817
16818
|
commitAuthorName?: string | null | undefined;
|
|
16818
16819
|
commitAuthorEmail?: string | null | undefined;
|
|
16819
16820
|
connectionId?: string | null | undefined;
|
|
16820
|
-
userId?: number | null | undefined;
|
|
16821
16821
|
} | undefined;
|
|
16822
16822
|
destinationBitbucket?: {
|
|
16823
16823
|
branch: string;
|
|
16824
16824
|
workspaceSlug: string;
|
|
16825
16825
|
projectKey: string;
|
|
16826
16826
|
repoSlug: string;
|
|
16827
|
+
userId?: number | null | undefined;
|
|
16827
16828
|
credentialId?: string | undefined;
|
|
16828
16829
|
relativePath?: string | null | undefined;
|
|
16829
16830
|
commitAuthorName?: string | null | undefined;
|
|
16830
16831
|
commitAuthorEmail?: string | null | undefined;
|
|
16831
16832
|
connectionId?: string | null | undefined;
|
|
16832
|
-
userId?: number | null | undefined;
|
|
16833
16833
|
} | undefined;
|
|
16834
16834
|
}[];
|
|
16835
16835
|
exportJobs: {
|
|
@@ -17756,12 +17756,12 @@ declare const UserDump: z.ZodObject<{
|
|
|
17756
17756
|
destinationGithub?: {
|
|
17757
17757
|
url: string;
|
|
17758
17758
|
branch: string;
|
|
17759
|
+
userId?: number | undefined;
|
|
17759
17760
|
credentialId?: string | undefined;
|
|
17760
17761
|
relativePath?: string | undefined;
|
|
17761
17762
|
commitAuthorName?: string | undefined;
|
|
17762
17763
|
commitAuthorEmail?: string | undefined;
|
|
17763
17764
|
connectionId?: string | undefined;
|
|
17764
|
-
userId?: number | undefined;
|
|
17765
17765
|
} | undefined;
|
|
17766
17766
|
destinationAzure?: {
|
|
17767
17767
|
branch: string;
|
|
@@ -17769,35 +17769,35 @@ declare const UserDump: z.ZodObject<{
|
|
|
17769
17769
|
projectId: string;
|
|
17770
17770
|
repositoryId: string;
|
|
17771
17771
|
url?: string | undefined;
|
|
17772
|
+
userId?: number | undefined;
|
|
17772
17773
|
credentialId?: string | undefined;
|
|
17773
17774
|
relativePath?: string | undefined;
|
|
17774
17775
|
commitAuthorName?: string | undefined;
|
|
17775
17776
|
commitAuthorEmail?: string | undefined;
|
|
17776
17777
|
connectionId?: string | undefined;
|
|
17777
|
-
userId?: number | undefined;
|
|
17778
17778
|
} | undefined;
|
|
17779
17779
|
destinationGitlab?: {
|
|
17780
17780
|
branch: string;
|
|
17781
17781
|
projectId: string;
|
|
17782
17782
|
url?: string | undefined;
|
|
17783
|
+
userId?: number | undefined;
|
|
17783
17784
|
credentialId?: string | undefined;
|
|
17784
17785
|
relativePath?: string | undefined;
|
|
17785
17786
|
commitAuthorName?: string | undefined;
|
|
17786
17787
|
commitAuthorEmail?: string | undefined;
|
|
17787
17788
|
connectionId?: string | undefined;
|
|
17788
|
-
userId?: number | undefined;
|
|
17789
17789
|
} | undefined;
|
|
17790
17790
|
destinationBitbucket?: {
|
|
17791
17791
|
branch: string;
|
|
17792
17792
|
workspaceSlug: string;
|
|
17793
17793
|
projectKey: string;
|
|
17794
17794
|
repoSlug: string;
|
|
17795
|
+
userId?: number | undefined;
|
|
17795
17796
|
credentialId?: string | undefined;
|
|
17796
17797
|
relativePath?: string | undefined;
|
|
17797
17798
|
commitAuthorName?: string | undefined;
|
|
17798
17799
|
commitAuthorEmail?: string | undefined;
|
|
17799
17800
|
connectionId?: string | undefined;
|
|
17800
|
-
userId?: number | undefined;
|
|
17801
17801
|
} | undefined;
|
|
17802
17802
|
}[];
|
|
17803
17803
|
exportJobs: {
|
|
@@ -18566,12 +18566,12 @@ declare const UserDump: z.ZodObject<{
|
|
|
18566
18566
|
destinationGithub?: {
|
|
18567
18567
|
url: string;
|
|
18568
18568
|
branch: string;
|
|
18569
|
+
userId?: number | null | undefined;
|
|
18569
18570
|
credentialId?: string | undefined;
|
|
18570
18571
|
relativePath?: string | null | undefined;
|
|
18571
18572
|
commitAuthorName?: string | null | undefined;
|
|
18572
18573
|
commitAuthorEmail?: string | null | undefined;
|
|
18573
18574
|
connectionId?: string | null | undefined;
|
|
18574
|
-
userId?: number | null | undefined;
|
|
18575
18575
|
} | undefined;
|
|
18576
18576
|
destinationAzure?: {
|
|
18577
18577
|
branch: string;
|
|
@@ -18579,35 +18579,35 @@ declare const UserDump: z.ZodObject<{
|
|
|
18579
18579
|
projectId: string;
|
|
18580
18580
|
repositoryId: string;
|
|
18581
18581
|
url?: string | null | undefined;
|
|
18582
|
+
userId?: number | null | undefined;
|
|
18582
18583
|
credentialId?: string | undefined;
|
|
18583
18584
|
relativePath?: string | null | undefined;
|
|
18584
18585
|
commitAuthorName?: string | null | undefined;
|
|
18585
18586
|
commitAuthorEmail?: string | null | undefined;
|
|
18586
18587
|
connectionId?: string | null | undefined;
|
|
18587
|
-
userId?: number | null | undefined;
|
|
18588
18588
|
} | undefined;
|
|
18589
18589
|
destinationGitlab?: {
|
|
18590
18590
|
branch: string;
|
|
18591
18591
|
projectId: string;
|
|
18592
18592
|
url?: string | null | undefined;
|
|
18593
|
+
userId?: number | null | undefined;
|
|
18593
18594
|
credentialId?: string | undefined;
|
|
18594
18595
|
relativePath?: string | null | undefined;
|
|
18595
18596
|
commitAuthorName?: string | null | undefined;
|
|
18596
18597
|
commitAuthorEmail?: string | null | undefined;
|
|
18597
18598
|
connectionId?: string | null | undefined;
|
|
18598
|
-
userId?: number | null | undefined;
|
|
18599
18599
|
} | undefined;
|
|
18600
18600
|
destinationBitbucket?: {
|
|
18601
18601
|
branch: string;
|
|
18602
18602
|
workspaceSlug: string;
|
|
18603
18603
|
projectKey: string;
|
|
18604
18604
|
repoSlug: string;
|
|
18605
|
+
userId?: number | null | undefined;
|
|
18605
18606
|
credentialId?: string | undefined;
|
|
18606
18607
|
relativePath?: string | null | undefined;
|
|
18607
18608
|
commitAuthorName?: string | null | undefined;
|
|
18608
18609
|
commitAuthorEmail?: string | null | undefined;
|
|
18609
18610
|
connectionId?: string | null | undefined;
|
|
18610
|
-
userId?: number | null | undefined;
|
|
18611
18611
|
} | undefined;
|
|
18612
18612
|
}[];
|
|
18613
18613
|
exportJobs: {
|
|
@@ -19378,12 +19378,12 @@ declare const UserDump: z.ZodObject<{
|
|
|
19378
19378
|
destinationGithub?: {
|
|
19379
19379
|
url: string;
|
|
19380
19380
|
branch: string;
|
|
19381
|
+
userId?: number | undefined;
|
|
19381
19382
|
credentialId?: string | undefined;
|
|
19382
19383
|
relativePath?: string | undefined;
|
|
19383
19384
|
commitAuthorName?: string | undefined;
|
|
19384
19385
|
commitAuthorEmail?: string | undefined;
|
|
19385
19386
|
connectionId?: string | undefined;
|
|
19386
|
-
userId?: number | undefined;
|
|
19387
19387
|
} | undefined;
|
|
19388
19388
|
destinationAzure?: {
|
|
19389
19389
|
branch: string;
|
|
@@ -19391,35 +19391,35 @@ declare const UserDump: z.ZodObject<{
|
|
|
19391
19391
|
projectId: string;
|
|
19392
19392
|
repositoryId: string;
|
|
19393
19393
|
url?: string | undefined;
|
|
19394
|
+
userId?: number | undefined;
|
|
19394
19395
|
credentialId?: string | undefined;
|
|
19395
19396
|
relativePath?: string | undefined;
|
|
19396
19397
|
commitAuthorName?: string | undefined;
|
|
19397
19398
|
commitAuthorEmail?: string | undefined;
|
|
19398
19399
|
connectionId?: string | undefined;
|
|
19399
|
-
userId?: number | undefined;
|
|
19400
19400
|
} | undefined;
|
|
19401
19401
|
destinationGitlab?: {
|
|
19402
19402
|
branch: string;
|
|
19403
19403
|
projectId: string;
|
|
19404
19404
|
url?: string | undefined;
|
|
19405
|
+
userId?: number | undefined;
|
|
19405
19406
|
credentialId?: string | undefined;
|
|
19406
19407
|
relativePath?: string | undefined;
|
|
19407
19408
|
commitAuthorName?: string | undefined;
|
|
19408
19409
|
commitAuthorEmail?: string | undefined;
|
|
19409
19410
|
connectionId?: string | undefined;
|
|
19410
|
-
userId?: number | undefined;
|
|
19411
19411
|
} | undefined;
|
|
19412
19412
|
destinationBitbucket?: {
|
|
19413
19413
|
branch: string;
|
|
19414
19414
|
workspaceSlug: string;
|
|
19415
19415
|
projectKey: string;
|
|
19416
19416
|
repoSlug: string;
|
|
19417
|
+
userId?: number | undefined;
|
|
19417
19418
|
credentialId?: string | undefined;
|
|
19418
19419
|
relativePath?: string | undefined;
|
|
19419
19420
|
commitAuthorName?: string | undefined;
|
|
19420
19421
|
commitAuthorEmail?: string | undefined;
|
|
19421
19422
|
connectionId?: string | undefined;
|
|
19422
|
-
userId?: number | undefined;
|
|
19423
19423
|
} | undefined;
|
|
19424
19424
|
}[];
|
|
19425
19425
|
exportJobs: {
|
|
@@ -20260,12 +20260,12 @@ declare const UserDump: z.ZodObject<{
|
|
|
20260
20260
|
destinationGithub?: {
|
|
20261
20261
|
url: string;
|
|
20262
20262
|
branch: string;
|
|
20263
|
+
userId?: number | null | undefined;
|
|
20263
20264
|
credentialId?: string | undefined;
|
|
20264
20265
|
relativePath?: string | null | undefined;
|
|
20265
20266
|
commitAuthorName?: string | null | undefined;
|
|
20266
20267
|
commitAuthorEmail?: string | null | undefined;
|
|
20267
20268
|
connectionId?: string | null | undefined;
|
|
20268
|
-
userId?: number | null | undefined;
|
|
20269
20269
|
} | undefined;
|
|
20270
20270
|
destinationAzure?: {
|
|
20271
20271
|
branch: string;
|
|
@@ -20273,35 +20273,35 @@ declare const UserDump: z.ZodObject<{
|
|
|
20273
20273
|
projectId: string;
|
|
20274
20274
|
repositoryId: string;
|
|
20275
20275
|
url?: string | null | undefined;
|
|
20276
|
+
userId?: number | null | undefined;
|
|
20276
20277
|
credentialId?: string | undefined;
|
|
20277
20278
|
relativePath?: string | null | undefined;
|
|
20278
20279
|
commitAuthorName?: string | null | undefined;
|
|
20279
20280
|
commitAuthorEmail?: string | null | undefined;
|
|
20280
20281
|
connectionId?: string | null | undefined;
|
|
20281
|
-
userId?: number | null | undefined;
|
|
20282
20282
|
} | undefined;
|
|
20283
20283
|
destinationGitlab?: {
|
|
20284
20284
|
branch: string;
|
|
20285
20285
|
projectId: string;
|
|
20286
20286
|
url?: string | null | undefined;
|
|
20287
|
+
userId?: number | null | undefined;
|
|
20287
20288
|
credentialId?: string | undefined;
|
|
20288
20289
|
relativePath?: string | null | undefined;
|
|
20289
20290
|
commitAuthorName?: string | null | undefined;
|
|
20290
20291
|
commitAuthorEmail?: string | null | undefined;
|
|
20291
20292
|
connectionId?: string | null | undefined;
|
|
20292
|
-
userId?: number | null | undefined;
|
|
20293
20293
|
} | undefined;
|
|
20294
20294
|
destinationBitbucket?: {
|
|
20295
20295
|
branch: string;
|
|
20296
20296
|
workspaceSlug: string;
|
|
20297
20297
|
projectKey: string;
|
|
20298
20298
|
repoSlug: string;
|
|
20299
|
+
userId?: number | null | undefined;
|
|
20299
20300
|
credentialId?: string | undefined;
|
|
20300
20301
|
relativePath?: string | null | undefined;
|
|
20301
20302
|
commitAuthorName?: string | null | undefined;
|
|
20302
20303
|
commitAuthorEmail?: string | null | undefined;
|
|
20303
20304
|
connectionId?: string | null | undefined;
|
|
20304
|
-
userId?: number | null | undefined;
|
|
20305
20305
|
} | undefined;
|
|
20306
20306
|
}[];
|
|
20307
20307
|
exportJobs: {
|
|
@@ -26307,21 +26307,21 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26307
26307
|
}, "strip", z.ZodTypeAny, {
|
|
26308
26308
|
url: string;
|
|
26309
26309
|
branch: string;
|
|
26310
|
+
userId?: number | undefined;
|
|
26310
26311
|
credentialId?: string | undefined;
|
|
26311
26312
|
relativePath?: string | undefined;
|
|
26312
26313
|
commitAuthorName?: string | undefined;
|
|
26313
26314
|
commitAuthorEmail?: string | undefined;
|
|
26314
26315
|
connectionId?: string | undefined;
|
|
26315
|
-
userId?: number | undefined;
|
|
26316
26316
|
}, {
|
|
26317
26317
|
url: string;
|
|
26318
26318
|
branch: string;
|
|
26319
|
+
userId?: number | null | undefined;
|
|
26319
26320
|
credentialId?: string | undefined;
|
|
26320
26321
|
relativePath?: string | null | undefined;
|
|
26321
26322
|
commitAuthorName?: string | null | undefined;
|
|
26322
26323
|
commitAuthorEmail?: string | null | undefined;
|
|
26323
26324
|
connectionId?: string | null | undefined;
|
|
26324
|
-
userId?: number | null | undefined;
|
|
26325
26325
|
}>>;
|
|
26326
26326
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
26327
26327
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -26341,24 +26341,24 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26341
26341
|
projectId: string;
|
|
26342
26342
|
repositoryId: string;
|
|
26343
26343
|
url?: string | undefined;
|
|
26344
|
+
userId?: number | undefined;
|
|
26344
26345
|
credentialId?: string | undefined;
|
|
26345
26346
|
relativePath?: string | undefined;
|
|
26346
26347
|
commitAuthorName?: string | undefined;
|
|
26347
26348
|
commitAuthorEmail?: string | undefined;
|
|
26348
26349
|
connectionId?: string | undefined;
|
|
26349
|
-
userId?: number | undefined;
|
|
26350
26350
|
}, {
|
|
26351
26351
|
branch: string;
|
|
26352
26352
|
organizationId: string;
|
|
26353
26353
|
projectId: string;
|
|
26354
26354
|
repositoryId: string;
|
|
26355
26355
|
url?: string | null | undefined;
|
|
26356
|
+
userId?: number | null | undefined;
|
|
26356
26357
|
credentialId?: string | undefined;
|
|
26357
26358
|
relativePath?: string | null | undefined;
|
|
26358
26359
|
commitAuthorName?: string | null | undefined;
|
|
26359
26360
|
commitAuthorEmail?: string | null | undefined;
|
|
26360
26361
|
connectionId?: string | null | undefined;
|
|
26361
|
-
userId?: number | null | undefined;
|
|
26362
26362
|
}>>;
|
|
26363
26363
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
26364
26364
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -26374,22 +26374,22 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26374
26374
|
branch: string;
|
|
26375
26375
|
projectId: string;
|
|
26376
26376
|
url?: string | undefined;
|
|
26377
|
+
userId?: number | undefined;
|
|
26377
26378
|
credentialId?: string | undefined;
|
|
26378
26379
|
relativePath?: string | undefined;
|
|
26379
26380
|
commitAuthorName?: string | undefined;
|
|
26380
26381
|
commitAuthorEmail?: string | undefined;
|
|
26381
26382
|
connectionId?: string | undefined;
|
|
26382
|
-
userId?: number | undefined;
|
|
26383
26383
|
}, {
|
|
26384
26384
|
branch: string;
|
|
26385
26385
|
projectId: string;
|
|
26386
26386
|
url?: string | null | undefined;
|
|
26387
|
+
userId?: number | null | undefined;
|
|
26387
26388
|
credentialId?: string | undefined;
|
|
26388
26389
|
relativePath?: string | null | undefined;
|
|
26389
26390
|
commitAuthorName?: string | null | undefined;
|
|
26390
26391
|
commitAuthorEmail?: string | null | undefined;
|
|
26391
26392
|
connectionId?: string | null | undefined;
|
|
26392
|
-
userId?: number | null | undefined;
|
|
26393
26393
|
}>>;
|
|
26394
26394
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
26395
26395
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -26407,23 +26407,23 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26407
26407
|
workspaceSlug: string;
|
|
26408
26408
|
projectKey: string;
|
|
26409
26409
|
repoSlug: string;
|
|
26410
|
+
userId?: number | undefined;
|
|
26410
26411
|
credentialId?: string | undefined;
|
|
26411
26412
|
relativePath?: string | undefined;
|
|
26412
26413
|
commitAuthorName?: string | undefined;
|
|
26413
26414
|
commitAuthorEmail?: string | undefined;
|
|
26414
26415
|
connectionId?: string | undefined;
|
|
26415
|
-
userId?: number | undefined;
|
|
26416
26416
|
}, {
|
|
26417
26417
|
branch: string;
|
|
26418
26418
|
workspaceSlug: string;
|
|
26419
26419
|
projectKey: string;
|
|
26420
26420
|
repoSlug: string;
|
|
26421
|
+
userId?: number | null | undefined;
|
|
26421
26422
|
credentialId?: string | undefined;
|
|
26422
26423
|
relativePath?: string | null | undefined;
|
|
26423
26424
|
commitAuthorName?: string | null | undefined;
|
|
26424
26425
|
commitAuthorEmail?: string | null | undefined;
|
|
26425
26426
|
connectionId?: string | null | undefined;
|
|
26426
|
-
userId?: number | null | undefined;
|
|
26427
26427
|
}>>;
|
|
26428
26428
|
id: z.ZodString;
|
|
26429
26429
|
name: z.ZodString;
|
|
@@ -26456,12 +26456,12 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26456
26456
|
destinationGithub?: {
|
|
26457
26457
|
url: string;
|
|
26458
26458
|
branch: string;
|
|
26459
|
+
userId?: number | undefined;
|
|
26459
26460
|
credentialId?: string | undefined;
|
|
26460
26461
|
relativePath?: string | undefined;
|
|
26461
26462
|
commitAuthorName?: string | undefined;
|
|
26462
26463
|
commitAuthorEmail?: string | undefined;
|
|
26463
26464
|
connectionId?: string | undefined;
|
|
26464
|
-
userId?: number | undefined;
|
|
26465
26465
|
} | undefined;
|
|
26466
26466
|
destinationAzure?: {
|
|
26467
26467
|
branch: string;
|
|
@@ -26469,35 +26469,35 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26469
26469
|
projectId: string;
|
|
26470
26470
|
repositoryId: string;
|
|
26471
26471
|
url?: string | undefined;
|
|
26472
|
+
userId?: number | undefined;
|
|
26472
26473
|
credentialId?: string | undefined;
|
|
26473
26474
|
relativePath?: string | undefined;
|
|
26474
26475
|
commitAuthorName?: string | undefined;
|
|
26475
26476
|
commitAuthorEmail?: string | undefined;
|
|
26476
26477
|
connectionId?: string | undefined;
|
|
26477
|
-
userId?: number | undefined;
|
|
26478
26478
|
} | undefined;
|
|
26479
26479
|
destinationGitlab?: {
|
|
26480
26480
|
branch: string;
|
|
26481
26481
|
projectId: string;
|
|
26482
26482
|
url?: string | undefined;
|
|
26483
|
+
userId?: number | undefined;
|
|
26483
26484
|
credentialId?: string | undefined;
|
|
26484
26485
|
relativePath?: string | undefined;
|
|
26485
26486
|
commitAuthorName?: string | undefined;
|
|
26486
26487
|
commitAuthorEmail?: string | undefined;
|
|
26487
26488
|
connectionId?: string | undefined;
|
|
26488
|
-
userId?: number | undefined;
|
|
26489
26489
|
} | undefined;
|
|
26490
26490
|
destinationBitbucket?: {
|
|
26491
26491
|
branch: string;
|
|
26492
26492
|
workspaceSlug: string;
|
|
26493
26493
|
projectKey: string;
|
|
26494
26494
|
repoSlug: string;
|
|
26495
|
+
userId?: number | undefined;
|
|
26495
26496
|
credentialId?: string | undefined;
|
|
26496
26497
|
relativePath?: string | undefined;
|
|
26497
26498
|
commitAuthorName?: string | undefined;
|
|
26498
26499
|
commitAuthorEmail?: string | undefined;
|
|
26499
26500
|
connectionId?: string | undefined;
|
|
26500
|
-
userId?: number | undefined;
|
|
26501
26501
|
} | undefined;
|
|
26502
26502
|
}, {
|
|
26503
26503
|
id: string;
|
|
@@ -26521,12 +26521,12 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26521
26521
|
destinationGithub?: {
|
|
26522
26522
|
url: string;
|
|
26523
26523
|
branch: string;
|
|
26524
|
+
userId?: number | null | undefined;
|
|
26524
26525
|
credentialId?: string | undefined;
|
|
26525
26526
|
relativePath?: string | null | undefined;
|
|
26526
26527
|
commitAuthorName?: string | null | undefined;
|
|
26527
26528
|
commitAuthorEmail?: string | null | undefined;
|
|
26528
26529
|
connectionId?: string | null | undefined;
|
|
26529
|
-
userId?: number | null | undefined;
|
|
26530
26530
|
} | undefined;
|
|
26531
26531
|
destinationAzure?: {
|
|
26532
26532
|
branch: string;
|
|
@@ -26534,35 +26534,35 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26534
26534
|
projectId: string;
|
|
26535
26535
|
repositoryId: string;
|
|
26536
26536
|
url?: string | null | undefined;
|
|
26537
|
+
userId?: number | null | undefined;
|
|
26537
26538
|
credentialId?: string | undefined;
|
|
26538
26539
|
relativePath?: string | null | undefined;
|
|
26539
26540
|
commitAuthorName?: string | null | undefined;
|
|
26540
26541
|
commitAuthorEmail?: string | null | undefined;
|
|
26541
26542
|
connectionId?: string | null | undefined;
|
|
26542
|
-
userId?: number | null | undefined;
|
|
26543
26543
|
} | undefined;
|
|
26544
26544
|
destinationGitlab?: {
|
|
26545
26545
|
branch: string;
|
|
26546
26546
|
projectId: string;
|
|
26547
26547
|
url?: string | null | undefined;
|
|
26548
|
+
userId?: number | null | undefined;
|
|
26548
26549
|
credentialId?: string | undefined;
|
|
26549
26550
|
relativePath?: string | null | undefined;
|
|
26550
26551
|
commitAuthorName?: string | null | undefined;
|
|
26551
26552
|
commitAuthorEmail?: string | null | undefined;
|
|
26552
26553
|
connectionId?: string | null | undefined;
|
|
26553
|
-
userId?: number | null | undefined;
|
|
26554
26554
|
} | undefined;
|
|
26555
26555
|
destinationBitbucket?: {
|
|
26556
26556
|
branch: string;
|
|
26557
26557
|
workspaceSlug: string;
|
|
26558
26558
|
projectKey: string;
|
|
26559
26559
|
repoSlug: string;
|
|
26560
|
+
userId?: number | null | undefined;
|
|
26560
26561
|
credentialId?: string | undefined;
|
|
26561
26562
|
relativePath?: string | null | undefined;
|
|
26562
26563
|
commitAuthorName?: string | null | undefined;
|
|
26563
26564
|
commitAuthorEmail?: string | null | undefined;
|
|
26564
26565
|
connectionId?: string | null | undefined;
|
|
26565
|
-
userId?: number | null | undefined;
|
|
26566
26566
|
} | undefined;
|
|
26567
26567
|
}>, "many">;
|
|
26568
26568
|
exportJobs: z.ZodArray<z.ZodObject<{
|
|
@@ -26668,12 +26668,12 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26668
26668
|
destinationGithub?: {
|
|
26669
26669
|
url: string;
|
|
26670
26670
|
branch: string;
|
|
26671
|
+
userId?: number | undefined;
|
|
26671
26672
|
credentialId?: string | undefined;
|
|
26672
26673
|
relativePath?: string | undefined;
|
|
26673
26674
|
commitAuthorName?: string | undefined;
|
|
26674
26675
|
commitAuthorEmail?: string | undefined;
|
|
26675
26676
|
connectionId?: string | undefined;
|
|
26676
|
-
userId?: number | undefined;
|
|
26677
26677
|
} | undefined;
|
|
26678
26678
|
destinationAzure?: {
|
|
26679
26679
|
branch: string;
|
|
@@ -26681,35 +26681,35 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26681
26681
|
projectId: string;
|
|
26682
26682
|
repositoryId: string;
|
|
26683
26683
|
url?: string | undefined;
|
|
26684
|
+
userId?: number | undefined;
|
|
26684
26685
|
credentialId?: string | undefined;
|
|
26685
26686
|
relativePath?: string | undefined;
|
|
26686
26687
|
commitAuthorName?: string | undefined;
|
|
26687
26688
|
commitAuthorEmail?: string | undefined;
|
|
26688
26689
|
connectionId?: string | undefined;
|
|
26689
|
-
userId?: number | undefined;
|
|
26690
26690
|
} | undefined;
|
|
26691
26691
|
destinationGitlab?: {
|
|
26692
26692
|
branch: string;
|
|
26693
26693
|
projectId: string;
|
|
26694
26694
|
url?: string | undefined;
|
|
26695
|
+
userId?: number | undefined;
|
|
26695
26696
|
credentialId?: string | undefined;
|
|
26696
26697
|
relativePath?: string | undefined;
|
|
26697
26698
|
commitAuthorName?: string | undefined;
|
|
26698
26699
|
commitAuthorEmail?: string | undefined;
|
|
26699
26700
|
connectionId?: string | undefined;
|
|
26700
|
-
userId?: number | undefined;
|
|
26701
26701
|
} | undefined;
|
|
26702
26702
|
destinationBitbucket?: {
|
|
26703
26703
|
branch: string;
|
|
26704
26704
|
workspaceSlug: string;
|
|
26705
26705
|
projectKey: string;
|
|
26706
26706
|
repoSlug: string;
|
|
26707
|
+
userId?: number | undefined;
|
|
26707
26708
|
credentialId?: string | undefined;
|
|
26708
26709
|
relativePath?: string | undefined;
|
|
26709
26710
|
commitAuthorName?: string | undefined;
|
|
26710
26711
|
commitAuthorEmail?: string | undefined;
|
|
26711
26712
|
connectionId?: string | undefined;
|
|
26712
|
-
userId?: number | undefined;
|
|
26713
26713
|
} | undefined;
|
|
26714
26714
|
}[];
|
|
26715
26715
|
exportJobs: {
|
|
@@ -26805,12 +26805,12 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26805
26805
|
destinationGithub?: {
|
|
26806
26806
|
url: string;
|
|
26807
26807
|
branch: string;
|
|
26808
|
+
userId?: number | null | undefined;
|
|
26808
26809
|
credentialId?: string | undefined;
|
|
26809
26810
|
relativePath?: string | null | undefined;
|
|
26810
26811
|
commitAuthorName?: string | null | undefined;
|
|
26811
26812
|
commitAuthorEmail?: string | null | undefined;
|
|
26812
26813
|
connectionId?: string | null | undefined;
|
|
26813
|
-
userId?: number | null | undefined;
|
|
26814
26814
|
} | undefined;
|
|
26815
26815
|
destinationAzure?: {
|
|
26816
26816
|
branch: string;
|
|
@@ -26818,35 +26818,35 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26818
26818
|
projectId: string;
|
|
26819
26819
|
repositoryId: string;
|
|
26820
26820
|
url?: string | null | undefined;
|
|
26821
|
+
userId?: number | null | undefined;
|
|
26821
26822
|
credentialId?: string | undefined;
|
|
26822
26823
|
relativePath?: string | null | undefined;
|
|
26823
26824
|
commitAuthorName?: string | null | undefined;
|
|
26824
26825
|
commitAuthorEmail?: string | null | undefined;
|
|
26825
26826
|
connectionId?: string | null | undefined;
|
|
26826
|
-
userId?: number | null | undefined;
|
|
26827
26827
|
} | undefined;
|
|
26828
26828
|
destinationGitlab?: {
|
|
26829
26829
|
branch: string;
|
|
26830
26830
|
projectId: string;
|
|
26831
26831
|
url?: string | null | undefined;
|
|
26832
|
+
userId?: number | null | undefined;
|
|
26832
26833
|
credentialId?: string | undefined;
|
|
26833
26834
|
relativePath?: string | null | undefined;
|
|
26834
26835
|
commitAuthorName?: string | null | undefined;
|
|
26835
26836
|
commitAuthorEmail?: string | null | undefined;
|
|
26836
26837
|
connectionId?: string | null | undefined;
|
|
26837
|
-
userId?: number | null | undefined;
|
|
26838
26838
|
} | undefined;
|
|
26839
26839
|
destinationBitbucket?: {
|
|
26840
26840
|
branch: string;
|
|
26841
26841
|
workspaceSlug: string;
|
|
26842
26842
|
projectKey: string;
|
|
26843
26843
|
repoSlug: string;
|
|
26844
|
+
userId?: number | null | undefined;
|
|
26844
26845
|
credentialId?: string | undefined;
|
|
26845
26846
|
relativePath?: string | null | undefined;
|
|
26846
26847
|
commitAuthorName?: string | null | undefined;
|
|
26847
26848
|
commitAuthorEmail?: string | null | undefined;
|
|
26848
26849
|
connectionId?: string | null | undefined;
|
|
26849
|
-
userId?: number | null | undefined;
|
|
26850
26850
|
} | undefined;
|
|
26851
26851
|
}[];
|
|
26852
26852
|
exportJobs: {
|
|
@@ -27773,12 +27773,12 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27773
27773
|
destinationGithub?: {
|
|
27774
27774
|
url: string;
|
|
27775
27775
|
branch: string;
|
|
27776
|
+
userId?: number | undefined;
|
|
27776
27777
|
credentialId?: string | undefined;
|
|
27777
27778
|
relativePath?: string | undefined;
|
|
27778
27779
|
commitAuthorName?: string | undefined;
|
|
27779
27780
|
commitAuthorEmail?: string | undefined;
|
|
27780
27781
|
connectionId?: string | undefined;
|
|
27781
|
-
userId?: number | undefined;
|
|
27782
27782
|
} | undefined;
|
|
27783
27783
|
destinationAzure?: {
|
|
27784
27784
|
branch: string;
|
|
@@ -27786,35 +27786,35 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27786
27786
|
projectId: string;
|
|
27787
27787
|
repositoryId: string;
|
|
27788
27788
|
url?: string | undefined;
|
|
27789
|
+
userId?: number | undefined;
|
|
27789
27790
|
credentialId?: string | undefined;
|
|
27790
27791
|
relativePath?: string | undefined;
|
|
27791
27792
|
commitAuthorName?: string | undefined;
|
|
27792
27793
|
commitAuthorEmail?: string | undefined;
|
|
27793
27794
|
connectionId?: string | undefined;
|
|
27794
|
-
userId?: number | undefined;
|
|
27795
27795
|
} | undefined;
|
|
27796
27796
|
destinationGitlab?: {
|
|
27797
27797
|
branch: string;
|
|
27798
27798
|
projectId: string;
|
|
27799
27799
|
url?: string | undefined;
|
|
27800
|
+
userId?: number | undefined;
|
|
27800
27801
|
credentialId?: string | undefined;
|
|
27801
27802
|
relativePath?: string | undefined;
|
|
27802
27803
|
commitAuthorName?: string | undefined;
|
|
27803
27804
|
commitAuthorEmail?: string | undefined;
|
|
27804
27805
|
connectionId?: string | undefined;
|
|
27805
|
-
userId?: number | undefined;
|
|
27806
27806
|
} | undefined;
|
|
27807
27807
|
destinationBitbucket?: {
|
|
27808
27808
|
branch: string;
|
|
27809
27809
|
workspaceSlug: string;
|
|
27810
27810
|
projectKey: string;
|
|
27811
27811
|
repoSlug: string;
|
|
27812
|
+
userId?: number | undefined;
|
|
27812
27813
|
credentialId?: string | undefined;
|
|
27813
27814
|
relativePath?: string | undefined;
|
|
27814
27815
|
commitAuthorName?: string | undefined;
|
|
27815
27816
|
commitAuthorEmail?: string | undefined;
|
|
27816
27817
|
connectionId?: string | undefined;
|
|
27817
|
-
userId?: number | undefined;
|
|
27818
27818
|
} | undefined;
|
|
27819
27819
|
}[];
|
|
27820
27820
|
exportJobs: {
|
|
@@ -28583,12 +28583,12 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28583
28583
|
destinationGithub?: {
|
|
28584
28584
|
url: string;
|
|
28585
28585
|
branch: string;
|
|
28586
|
+
userId?: number | null | undefined;
|
|
28586
28587
|
credentialId?: string | undefined;
|
|
28587
28588
|
relativePath?: string | null | undefined;
|
|
28588
28589
|
commitAuthorName?: string | null | undefined;
|
|
28589
28590
|
commitAuthorEmail?: string | null | undefined;
|
|
28590
28591
|
connectionId?: string | null | undefined;
|
|
28591
|
-
userId?: number | null | undefined;
|
|
28592
28592
|
} | undefined;
|
|
28593
28593
|
destinationAzure?: {
|
|
28594
28594
|
branch: string;
|
|
@@ -28596,35 +28596,35 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28596
28596
|
projectId: string;
|
|
28597
28597
|
repositoryId: string;
|
|
28598
28598
|
url?: string | null | undefined;
|
|
28599
|
+
userId?: number | null | undefined;
|
|
28599
28600
|
credentialId?: string | undefined;
|
|
28600
28601
|
relativePath?: string | null | undefined;
|
|
28601
28602
|
commitAuthorName?: string | null | undefined;
|
|
28602
28603
|
commitAuthorEmail?: string | null | undefined;
|
|
28603
28604
|
connectionId?: string | null | undefined;
|
|
28604
|
-
userId?: number | null | undefined;
|
|
28605
28605
|
} | undefined;
|
|
28606
28606
|
destinationGitlab?: {
|
|
28607
28607
|
branch: string;
|
|
28608
28608
|
projectId: string;
|
|
28609
28609
|
url?: string | null | undefined;
|
|
28610
|
+
userId?: number | null | undefined;
|
|
28610
28611
|
credentialId?: string | undefined;
|
|
28611
28612
|
relativePath?: string | null | undefined;
|
|
28612
28613
|
commitAuthorName?: string | null | undefined;
|
|
28613
28614
|
commitAuthorEmail?: string | null | undefined;
|
|
28614
28615
|
connectionId?: string | null | undefined;
|
|
28615
|
-
userId?: number | null | undefined;
|
|
28616
28616
|
} | undefined;
|
|
28617
28617
|
destinationBitbucket?: {
|
|
28618
28618
|
branch: string;
|
|
28619
28619
|
workspaceSlug: string;
|
|
28620
28620
|
projectKey: string;
|
|
28621
28621
|
repoSlug: string;
|
|
28622
|
+
userId?: number | null | undefined;
|
|
28622
28623
|
credentialId?: string | undefined;
|
|
28623
28624
|
relativePath?: string | null | undefined;
|
|
28624
28625
|
commitAuthorName?: string | null | undefined;
|
|
28625
28626
|
commitAuthorEmail?: string | null | undefined;
|
|
28626
28627
|
connectionId?: string | null | undefined;
|
|
28627
|
-
userId?: number | null | undefined;
|
|
28628
28628
|
} | undefined;
|
|
28629
28629
|
}[];
|
|
28630
28630
|
exportJobs: {
|
|
@@ -39398,10 +39398,9 @@ declare const PageBlockDataV2: z.ZodObject<{
|
|
|
39398
39398
|
variantId?: string | undefined;
|
|
39399
39399
|
}>;
|
|
39400
39400
|
type PageBlockDataV2 = z.infer<typeof PageBlockDataV2>;
|
|
39401
|
-
declare const
|
|
39402
|
-
|
|
39403
|
-
|
|
39404
|
-
showPropertyList: z.ZodOptional<z.ZodBoolean>;
|
|
39401
|
+
declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
39402
|
+
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39403
|
+
showSearch: z.ZodOptional<z.ZodBoolean>;
|
|
39405
39404
|
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
39406
39405
|
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
39407
39406
|
value: z.ZodString;
|
|
@@ -39415,7 +39414,7 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39415
39414
|
}>>;
|
|
39416
39415
|
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
39417
39416
|
entityId: z.ZodString;
|
|
39418
|
-
entityType: z.ZodEnum<["
|
|
39417
|
+
entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
|
|
39419
39418
|
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
39420
39419
|
title: z.ZodOptional<z.ZodString>;
|
|
39421
39420
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -39429,7 +39428,6 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39429
39428
|
value: string;
|
|
39430
39429
|
referencedTokenId?: string | undefined;
|
|
39431
39430
|
}>>;
|
|
39432
|
-
selectedComponentProperties: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39433
39431
|
}, "strip", z.ZodTypeAny, {
|
|
39434
39432
|
description?: string | undefined;
|
|
39435
39433
|
title?: string | undefined;
|
|
@@ -39437,7 +39435,6 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39437
39435
|
value: string;
|
|
39438
39436
|
referencedTokenId?: string | undefined;
|
|
39439
39437
|
} | undefined;
|
|
39440
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39441
39438
|
}, {
|
|
39442
39439
|
description?: string | undefined;
|
|
39443
39440
|
title?: string | undefined;
|
|
@@ -39445,11 +39442,10 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39445
39442
|
value: string;
|
|
39446
39443
|
referencedTokenId?: string | undefined;
|
|
39447
39444
|
} | undefined;
|
|
39448
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39449
39445
|
}>>;
|
|
39450
39446
|
}, "strip", z.ZodTypeAny, {
|
|
39451
39447
|
entityId: string;
|
|
39452
|
-
entityType: "
|
|
39448
|
+
entityType: "Asset" | "AssetGroup";
|
|
39453
39449
|
entityMeta?: {
|
|
39454
39450
|
description?: string | undefined;
|
|
39455
39451
|
title?: string | undefined;
|
|
@@ -39457,11 +39453,10 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39457
39453
|
value: string;
|
|
39458
39454
|
referencedTokenId?: string | undefined;
|
|
39459
39455
|
} | undefined;
|
|
39460
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39461
39456
|
} | undefined;
|
|
39462
39457
|
}, {
|
|
39463
39458
|
entityId: string;
|
|
39464
|
-
entityType: "
|
|
39459
|
+
entityType: "Asset" | "AssetGroup";
|
|
39465
39460
|
entityMeta?: {
|
|
39466
39461
|
description?: string | undefined;
|
|
39467
39462
|
title?: string | undefined;
|
|
@@ -39469,13 +39464,12 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39469
39464
|
value: string;
|
|
39470
39465
|
referencedTokenId?: string | undefined;
|
|
39471
39466
|
} | undefined;
|
|
39472
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39473
39467
|
} | undefined;
|
|
39474
39468
|
}>, "many">>;
|
|
39475
39469
|
}, "strip", z.ZodTypeAny, {
|
|
39476
39470
|
value: {
|
|
39477
39471
|
entityId: string;
|
|
39478
|
-
entityType: "
|
|
39472
|
+
entityType: "Asset" | "AssetGroup";
|
|
39479
39473
|
entityMeta?: {
|
|
39480
39474
|
description?: string | undefined;
|
|
39481
39475
|
title?: string | undefined;
|
|
@@ -39483,21 +39477,19 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39483
39477
|
value: string;
|
|
39484
39478
|
referencedTokenId?: string | undefined;
|
|
39485
39479
|
} | undefined;
|
|
39486
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39487
39480
|
} | undefined;
|
|
39488
39481
|
}[];
|
|
39489
39482
|
backgroundColor?: {
|
|
39490
39483
|
value: string;
|
|
39491
39484
|
referencedTokenId?: string | undefined;
|
|
39492
39485
|
} | undefined;
|
|
39486
|
+
selectedPropertyIds?: string[] | undefined;
|
|
39487
|
+
showSearch?: boolean | undefined;
|
|
39493
39488
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
39494
|
-
showComponentName?: boolean | undefined;
|
|
39495
|
-
showComponentDescription?: boolean | undefined;
|
|
39496
|
-
showPropertyList?: boolean | undefined;
|
|
39497
39489
|
}, {
|
|
39498
39490
|
value?: {
|
|
39499
39491
|
entityId: string;
|
|
39500
|
-
entityType: "
|
|
39492
|
+
entityType: "Asset" | "AssetGroup";
|
|
39501
39493
|
entityMeta?: {
|
|
39502
39494
|
description?: string | undefined;
|
|
39503
39495
|
title?: string | undefined;
|
|
@@ -39505,21 +39497,29 @@ declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
|
39505
39497
|
value: string;
|
|
39506
39498
|
referencedTokenId?: string | undefined;
|
|
39507
39499
|
} | undefined;
|
|
39508
|
-
selectedComponentProperties?: string[] | undefined;
|
|
39509
39500
|
} | undefined;
|
|
39510
39501
|
}[] | undefined;
|
|
39511
39502
|
backgroundColor?: {
|
|
39512
39503
|
value: string;
|
|
39513
39504
|
referencedTokenId?: string | undefined;
|
|
39514
39505
|
} | undefined;
|
|
39506
|
+
selectedPropertyIds?: string[] | undefined;
|
|
39507
|
+
showSearch?: boolean | undefined;
|
|
39515
39508
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
39516
|
-
showComponentName?: boolean | undefined;
|
|
39517
|
-
showComponentDescription?: boolean | undefined;
|
|
39518
|
-
showPropertyList?: boolean | undefined;
|
|
39519
39509
|
}>;
|
|
39520
|
-
|
|
39521
|
-
|
|
39522
|
-
|
|
39510
|
+
type PageBlockItemAssetValue = z.infer<typeof PageBlockItemAssetValue>;
|
|
39511
|
+
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
39512
|
+
value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
39513
|
+
}, "strip", z.ZodTypeAny, {
|
|
39514
|
+
value: string[];
|
|
39515
|
+
}, {
|
|
39516
|
+
value?: string[] | undefined;
|
|
39517
|
+
}>;
|
|
39518
|
+
type PageBlockItemAssetPropertyValue = z.infer<typeof PageBlockItemAssetPropertyValue>;
|
|
39519
|
+
declare const PageBlockItemFigmaComponentValue: z.ZodObject<{
|
|
39520
|
+
showComponentName: z.ZodOptional<z.ZodBoolean>;
|
|
39521
|
+
showComponentDescription: z.ZodOptional<z.ZodBoolean>;
|
|
39522
|
+
showPropertyList: z.ZodOptional<z.ZodBoolean>;
|
|
39523
39523
|
previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
|
|
39524
39524
|
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
39525
39525
|
value: z.ZodString;
|
|
@@ -39533,7 +39533,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39533
39533
|
}>>;
|
|
39534
39534
|
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
39535
39535
|
entityId: z.ZodString;
|
|
39536
|
-
entityType: z.ZodEnum<["
|
|
39536
|
+
entityType: z.ZodEnum<["FigmaComponent"]>;
|
|
39537
39537
|
entityMeta: z.ZodOptional<z.ZodObject<{
|
|
39538
39538
|
title: z.ZodOptional<z.ZodString>;
|
|
39539
39539
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -39547,6 +39547,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39547
39547
|
value: string;
|
|
39548
39548
|
referencedTokenId?: string | undefined;
|
|
39549
39549
|
}>>;
|
|
39550
|
+
selectedComponentProperties: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
39550
39551
|
}, "strip", z.ZodTypeAny, {
|
|
39551
39552
|
description?: string | undefined;
|
|
39552
39553
|
title?: string | undefined;
|
|
@@ -39554,6 +39555,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39554
39555
|
value: string;
|
|
39555
39556
|
referencedTokenId?: string | undefined;
|
|
39556
39557
|
} | undefined;
|
|
39558
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39557
39559
|
}, {
|
|
39558
39560
|
description?: string | undefined;
|
|
39559
39561
|
title?: string | undefined;
|
|
@@ -39561,10 +39563,11 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39561
39563
|
value: string;
|
|
39562
39564
|
referencedTokenId?: string | undefined;
|
|
39563
39565
|
} | undefined;
|
|
39566
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39564
39567
|
}>>;
|
|
39565
39568
|
}, "strip", z.ZodTypeAny, {
|
|
39566
39569
|
entityId: string;
|
|
39567
|
-
entityType: "
|
|
39570
|
+
entityType: "FigmaComponent";
|
|
39568
39571
|
entityMeta?: {
|
|
39569
39572
|
description?: string | undefined;
|
|
39570
39573
|
title?: string | undefined;
|
|
@@ -39572,10 +39575,11 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39572
39575
|
value: string;
|
|
39573
39576
|
referencedTokenId?: string | undefined;
|
|
39574
39577
|
} | undefined;
|
|
39578
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39575
39579
|
} | undefined;
|
|
39576
39580
|
}, {
|
|
39577
39581
|
entityId: string;
|
|
39578
|
-
entityType: "
|
|
39582
|
+
entityType: "FigmaComponent";
|
|
39579
39583
|
entityMeta?: {
|
|
39580
39584
|
description?: string | undefined;
|
|
39581
39585
|
title?: string | undefined;
|
|
@@ -39583,12 +39587,13 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39583
39587
|
value: string;
|
|
39584
39588
|
referencedTokenId?: string | undefined;
|
|
39585
39589
|
} | undefined;
|
|
39590
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39586
39591
|
} | undefined;
|
|
39587
39592
|
}>, "many">>;
|
|
39588
39593
|
}, "strip", z.ZodTypeAny, {
|
|
39589
39594
|
value: {
|
|
39590
39595
|
entityId: string;
|
|
39591
|
-
entityType: "
|
|
39596
|
+
entityType: "FigmaComponent";
|
|
39592
39597
|
entityMeta?: {
|
|
39593
39598
|
description?: string | undefined;
|
|
39594
39599
|
title?: string | undefined;
|
|
@@ -39596,19 +39601,21 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39596
39601
|
value: string;
|
|
39597
39602
|
referencedTokenId?: string | undefined;
|
|
39598
39603
|
} | undefined;
|
|
39604
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39599
39605
|
} | undefined;
|
|
39600
39606
|
}[];
|
|
39601
39607
|
backgroundColor?: {
|
|
39602
39608
|
value: string;
|
|
39603
39609
|
referencedTokenId?: string | undefined;
|
|
39604
39610
|
} | undefined;
|
|
39605
|
-
selectedPropertyIds?: string[] | undefined;
|
|
39606
|
-
showSearch?: boolean | undefined;
|
|
39607
39611
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
39612
|
+
showComponentName?: boolean | undefined;
|
|
39613
|
+
showComponentDescription?: boolean | undefined;
|
|
39614
|
+
showPropertyList?: boolean | undefined;
|
|
39608
39615
|
}, {
|
|
39609
39616
|
value?: {
|
|
39610
39617
|
entityId: string;
|
|
39611
|
-
entityType: "
|
|
39618
|
+
entityType: "FigmaComponent";
|
|
39612
39619
|
entityMeta?: {
|
|
39613
39620
|
description?: string | undefined;
|
|
39614
39621
|
title?: string | undefined;
|
|
@@ -39616,25 +39623,19 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
|
|
|
39616
39623
|
value: string;
|
|
39617
39624
|
referencedTokenId?: string | undefined;
|
|
39618
39625
|
} | undefined;
|
|
39626
|
+
selectedComponentProperties?: string[] | undefined;
|
|
39619
39627
|
} | undefined;
|
|
39620
39628
|
}[] | undefined;
|
|
39621
39629
|
backgroundColor?: {
|
|
39622
39630
|
value: string;
|
|
39623
39631
|
referencedTokenId?: string | undefined;
|
|
39624
39632
|
} | undefined;
|
|
39625
|
-
selectedPropertyIds?: string[] | undefined;
|
|
39626
|
-
showSearch?: boolean | undefined;
|
|
39627
39633
|
previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
|
|
39634
|
+
showComponentName?: boolean | undefined;
|
|
39635
|
+
showComponentDescription?: boolean | undefined;
|
|
39636
|
+
showPropertyList?: boolean | undefined;
|
|
39628
39637
|
}>;
|
|
39629
|
-
type
|
|
39630
|
-
declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
|
|
39631
|
-
value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
39632
|
-
}, "strip", z.ZodTypeAny, {
|
|
39633
|
-
value: string[];
|
|
39634
|
-
}, {
|
|
39635
|
-
value?: string[] | undefined;
|
|
39636
|
-
}>;
|
|
39637
|
-
type PageBlockItemAssetPropertyValue = z.infer<typeof PageBlockItemAssetPropertyValue>;
|
|
39638
|
+
type PageBlockItemFigmaComponentValue = z.infer<typeof PageBlockItemFigmaComponentValue>;
|
|
39638
39639
|
declare const PageBlockItemBooleanValue: z.ZodObject<{
|
|
39639
39640
|
value: z.ZodBoolean;
|
|
39640
39641
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -40224,9 +40225,30 @@ declare const PageBlockItemTextValue: z.ZodObject<{
|
|
|
40224
40225
|
value: string;
|
|
40225
40226
|
}>;
|
|
40226
40227
|
type PageBlockItemTextValue = z.infer<typeof PageBlockItemTextValue>;
|
|
40228
|
+
declare const PageBlockItemSwatch: z.ZodObject<{
|
|
40229
|
+
id: z.ZodString;
|
|
40230
|
+
selectedThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
40231
|
+
}, "strip", z.ZodTypeAny, {
|
|
40232
|
+
id: string;
|
|
40233
|
+
selectedThemeIds: string[];
|
|
40234
|
+
}, {
|
|
40235
|
+
id: string;
|
|
40236
|
+
selectedThemeIds: string[];
|
|
40237
|
+
}>;
|
|
40238
|
+
type PageBlockItemSwatch = z.infer<typeof PageBlockItemSwatch>;
|
|
40227
40239
|
declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
40228
40240
|
selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
40229
40241
|
selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
40242
|
+
swatches: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40243
|
+
id: z.ZodString;
|
|
40244
|
+
selectedThemeIds: z.ZodArray<z.ZodString, "many">;
|
|
40245
|
+
}, "strip", z.ZodTypeAny, {
|
|
40246
|
+
id: string;
|
|
40247
|
+
selectedThemeIds: string[];
|
|
40248
|
+
}, {
|
|
40249
|
+
id: string;
|
|
40250
|
+
selectedThemeIds: string[];
|
|
40251
|
+
}>, "many">>;
|
|
40230
40252
|
themeDisplayMode: z.ZodOptional<z.ZodEnum<["Split", "Override"]>>;
|
|
40231
40253
|
value: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
40232
40254
|
entityId: z.ZodString;
|
|
@@ -40261,6 +40283,10 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
40261
40283
|
}[];
|
|
40262
40284
|
selectedPropertyIds?: string[] | undefined;
|
|
40263
40285
|
selectedThemeIds?: string[] | undefined;
|
|
40286
|
+
swatches?: {
|
|
40287
|
+
id: string;
|
|
40288
|
+
selectedThemeIds: string[];
|
|
40289
|
+
}[] | undefined;
|
|
40264
40290
|
themeDisplayMode?: "Override" | "Split" | undefined;
|
|
40265
40291
|
}, {
|
|
40266
40292
|
value?: {
|
|
@@ -40272,6 +40298,10 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
|
|
|
40272
40298
|
}[] | undefined;
|
|
40273
40299
|
selectedPropertyIds?: string[] | undefined;
|
|
40274
40300
|
selectedThemeIds?: string[] | undefined;
|
|
40301
|
+
swatches?: {
|
|
40302
|
+
id: string;
|
|
40303
|
+
selectedThemeIds: string[];
|
|
40304
|
+
}[] | undefined;
|
|
40275
40305
|
themeDisplayMode?: "Override" | "Split" | undefined;
|
|
40276
40306
|
}>;
|
|
40277
40307
|
type PageBlockItemTokenValue = z.infer<typeof PageBlockItemTokenValue>;
|
|
@@ -127982,6 +128012,24 @@ declare const ImportWarning: z.ZodObject<{
|
|
|
127982
128012
|
}>;
|
|
127983
128013
|
type ImportWarning = z.infer<typeof ImportWarning>;
|
|
127984
128014
|
|
|
128015
|
+
declare const DesignSystemMembership: z.ZodObject<{
|
|
128016
|
+
id: z.ZodString;
|
|
128017
|
+
userId: z.ZodString;
|
|
128018
|
+
designSystemId: z.ZodString;
|
|
128019
|
+
workspaceMembershipId: z.ZodString;
|
|
128020
|
+
}, "strip", z.ZodTypeAny, {
|
|
128021
|
+
id: string;
|
|
128022
|
+
designSystemId: string;
|
|
128023
|
+
userId: string;
|
|
128024
|
+
workspaceMembershipId: string;
|
|
128025
|
+
}, {
|
|
128026
|
+
id: string;
|
|
128027
|
+
designSystemId: string;
|
|
128028
|
+
userId: string;
|
|
128029
|
+
workspaceMembershipId: string;
|
|
128030
|
+
}>;
|
|
128031
|
+
type DesignSystemMembership = z.infer<typeof DesignSystemMembership>;
|
|
128032
|
+
|
|
127985
128033
|
declare const ElementPropertyTypeSchema: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
127986
128034
|
type ElementPropertyType = z.infer<typeof ElementPropertyTypeSchema>;
|
|
127987
128035
|
declare const ElementPropertyType: z.Values<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
@@ -132013,21 +132061,21 @@ declare const ExporterDestinationGithub: z.ZodObject<{
|
|
|
132013
132061
|
}, "strip", z.ZodTypeAny, {
|
|
132014
132062
|
url: string;
|
|
132015
132063
|
branch: string;
|
|
132064
|
+
userId?: number | undefined;
|
|
132016
132065
|
credentialId?: string | undefined;
|
|
132017
132066
|
relativePath?: string | undefined;
|
|
132018
132067
|
commitAuthorName?: string | undefined;
|
|
132019
132068
|
commitAuthorEmail?: string | undefined;
|
|
132020
132069
|
connectionId?: string | undefined;
|
|
132021
|
-
userId?: number | undefined;
|
|
132022
132070
|
}, {
|
|
132023
132071
|
url: string;
|
|
132024
132072
|
branch: string;
|
|
132073
|
+
userId?: number | null | undefined;
|
|
132025
132074
|
credentialId?: string | undefined;
|
|
132026
132075
|
relativePath?: string | null | undefined;
|
|
132027
132076
|
commitAuthorName?: string | null | undefined;
|
|
132028
132077
|
commitAuthorEmail?: string | null | undefined;
|
|
132029
132078
|
connectionId?: string | null | undefined;
|
|
132030
|
-
userId?: number | null | undefined;
|
|
132031
132079
|
}>;
|
|
132032
132080
|
type ExporterDestinationGithub = z.infer<typeof ExporterDestinationGithub>;
|
|
132033
132081
|
declare const ExporterDestinationAzure: z.ZodObject<{
|
|
@@ -132048,24 +132096,24 @@ declare const ExporterDestinationAzure: z.ZodObject<{
|
|
|
132048
132096
|
projectId: string;
|
|
132049
132097
|
repositoryId: string;
|
|
132050
132098
|
url?: string | undefined;
|
|
132099
|
+
userId?: number | undefined;
|
|
132051
132100
|
credentialId?: string | undefined;
|
|
132052
132101
|
relativePath?: string | undefined;
|
|
132053
132102
|
commitAuthorName?: string | undefined;
|
|
132054
132103
|
commitAuthorEmail?: string | undefined;
|
|
132055
132104
|
connectionId?: string | undefined;
|
|
132056
|
-
userId?: number | undefined;
|
|
132057
132105
|
}, {
|
|
132058
132106
|
branch: string;
|
|
132059
132107
|
organizationId: string;
|
|
132060
132108
|
projectId: string;
|
|
132061
132109
|
repositoryId: string;
|
|
132062
132110
|
url?: string | null | undefined;
|
|
132111
|
+
userId?: number | null | undefined;
|
|
132063
132112
|
credentialId?: string | undefined;
|
|
132064
132113
|
relativePath?: string | null | undefined;
|
|
132065
132114
|
commitAuthorName?: string | null | undefined;
|
|
132066
132115
|
commitAuthorEmail?: string | null | undefined;
|
|
132067
132116
|
connectionId?: string | null | undefined;
|
|
132068
|
-
userId?: number | null | undefined;
|
|
132069
132117
|
}>;
|
|
132070
132118
|
type ExporterDestinationAzure = z.infer<typeof ExporterDestinationAzure>;
|
|
132071
132119
|
declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
@@ -132082,22 +132130,22 @@ declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
|
132082
132130
|
branch: string;
|
|
132083
132131
|
projectId: string;
|
|
132084
132132
|
url?: string | undefined;
|
|
132133
|
+
userId?: number | undefined;
|
|
132085
132134
|
credentialId?: string | undefined;
|
|
132086
132135
|
relativePath?: string | undefined;
|
|
132087
132136
|
commitAuthorName?: string | undefined;
|
|
132088
132137
|
commitAuthorEmail?: string | undefined;
|
|
132089
132138
|
connectionId?: string | undefined;
|
|
132090
|
-
userId?: number | undefined;
|
|
132091
132139
|
}, {
|
|
132092
132140
|
branch: string;
|
|
132093
132141
|
projectId: string;
|
|
132094
132142
|
url?: string | null | undefined;
|
|
132143
|
+
userId?: number | null | undefined;
|
|
132095
132144
|
credentialId?: string | undefined;
|
|
132096
132145
|
relativePath?: string | null | undefined;
|
|
132097
132146
|
commitAuthorName?: string | null | undefined;
|
|
132098
132147
|
commitAuthorEmail?: string | null | undefined;
|
|
132099
132148
|
connectionId?: string | null | undefined;
|
|
132100
|
-
userId?: number | null | undefined;
|
|
132101
132149
|
}>;
|
|
132102
132150
|
type ExporterDestinationGitlab = z.infer<typeof ExporterDestinationGitlab>;
|
|
132103
132151
|
declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
@@ -132116,23 +132164,23 @@ declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
|
132116
132164
|
workspaceSlug: string;
|
|
132117
132165
|
projectKey: string;
|
|
132118
132166
|
repoSlug: string;
|
|
132167
|
+
userId?: number | undefined;
|
|
132119
132168
|
credentialId?: string | undefined;
|
|
132120
132169
|
relativePath?: string | undefined;
|
|
132121
132170
|
commitAuthorName?: string | undefined;
|
|
132122
132171
|
commitAuthorEmail?: string | undefined;
|
|
132123
132172
|
connectionId?: string | undefined;
|
|
132124
|
-
userId?: number | undefined;
|
|
132125
132173
|
}, {
|
|
132126
132174
|
branch: string;
|
|
132127
132175
|
workspaceSlug: string;
|
|
132128
132176
|
projectKey: string;
|
|
132129
132177
|
repoSlug: string;
|
|
132178
|
+
userId?: number | null | undefined;
|
|
132130
132179
|
credentialId?: string | undefined;
|
|
132131
132180
|
relativePath?: string | null | undefined;
|
|
132132
132181
|
commitAuthorName?: string | null | undefined;
|
|
132133
132182
|
commitAuthorEmail?: string | null | undefined;
|
|
132134
132183
|
connectionId?: string | null | undefined;
|
|
132135
|
-
userId?: number | null | undefined;
|
|
132136
132184
|
}>;
|
|
132137
132185
|
type ExporterDestinationBitbucket = z.infer<typeof ExporterDestinationBitbucket>;
|
|
132138
132186
|
declare const ExportDestinationsMap: z.ZodObject<{
|
|
@@ -132178,21 +132226,21 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
132178
132226
|
}, "strip", z.ZodTypeAny, {
|
|
132179
132227
|
url: string;
|
|
132180
132228
|
branch: string;
|
|
132229
|
+
userId?: number | undefined;
|
|
132181
132230
|
credentialId?: string | undefined;
|
|
132182
132231
|
relativePath?: string | undefined;
|
|
132183
132232
|
commitAuthorName?: string | undefined;
|
|
132184
132233
|
commitAuthorEmail?: string | undefined;
|
|
132185
132234
|
connectionId?: string | undefined;
|
|
132186
|
-
userId?: number | undefined;
|
|
132187
132235
|
}, {
|
|
132188
132236
|
url: string;
|
|
132189
132237
|
branch: string;
|
|
132238
|
+
userId?: number | null | undefined;
|
|
132190
132239
|
credentialId?: string | undefined;
|
|
132191
132240
|
relativePath?: string | null | undefined;
|
|
132192
132241
|
commitAuthorName?: string | null | undefined;
|
|
132193
132242
|
commitAuthorEmail?: string | null | undefined;
|
|
132194
132243
|
connectionId?: string | null | undefined;
|
|
132195
|
-
userId?: number | null | undefined;
|
|
132196
132244
|
}>>;
|
|
132197
132245
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
132198
132246
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -132212,24 +132260,24 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
132212
132260
|
projectId: string;
|
|
132213
132261
|
repositoryId: string;
|
|
132214
132262
|
url?: string | undefined;
|
|
132263
|
+
userId?: number | undefined;
|
|
132215
132264
|
credentialId?: string | undefined;
|
|
132216
132265
|
relativePath?: string | undefined;
|
|
132217
132266
|
commitAuthorName?: string | undefined;
|
|
132218
132267
|
commitAuthorEmail?: string | undefined;
|
|
132219
132268
|
connectionId?: string | undefined;
|
|
132220
|
-
userId?: number | undefined;
|
|
132221
132269
|
}, {
|
|
132222
132270
|
branch: string;
|
|
132223
132271
|
organizationId: string;
|
|
132224
132272
|
projectId: string;
|
|
132225
132273
|
repositoryId: string;
|
|
132226
132274
|
url?: string | null | undefined;
|
|
132275
|
+
userId?: number | null | undefined;
|
|
132227
132276
|
credentialId?: string | undefined;
|
|
132228
132277
|
relativePath?: string | null | undefined;
|
|
132229
132278
|
commitAuthorName?: string | null | undefined;
|
|
132230
132279
|
commitAuthorEmail?: string | null | undefined;
|
|
132231
132280
|
connectionId?: string | null | undefined;
|
|
132232
|
-
userId?: number | null | undefined;
|
|
132233
132281
|
}>>;
|
|
132234
132282
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
132235
132283
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -132245,22 +132293,22 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
132245
132293
|
branch: string;
|
|
132246
132294
|
projectId: string;
|
|
132247
132295
|
url?: string | undefined;
|
|
132296
|
+
userId?: number | undefined;
|
|
132248
132297
|
credentialId?: string | undefined;
|
|
132249
132298
|
relativePath?: string | undefined;
|
|
132250
132299
|
commitAuthorName?: string | undefined;
|
|
132251
132300
|
commitAuthorEmail?: string | undefined;
|
|
132252
132301
|
connectionId?: string | undefined;
|
|
132253
|
-
userId?: number | undefined;
|
|
132254
132302
|
}, {
|
|
132255
132303
|
branch: string;
|
|
132256
132304
|
projectId: string;
|
|
132257
132305
|
url?: string | null | undefined;
|
|
132306
|
+
userId?: number | null | undefined;
|
|
132258
132307
|
credentialId?: string | undefined;
|
|
132259
132308
|
relativePath?: string | null | undefined;
|
|
132260
132309
|
commitAuthorName?: string | null | undefined;
|
|
132261
132310
|
commitAuthorEmail?: string | null | undefined;
|
|
132262
132311
|
connectionId?: string | null | undefined;
|
|
132263
|
-
userId?: number | null | undefined;
|
|
132264
132312
|
}>>;
|
|
132265
132313
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
132266
132314
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -132278,23 +132326,23 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
132278
132326
|
workspaceSlug: string;
|
|
132279
132327
|
projectKey: string;
|
|
132280
132328
|
repoSlug: string;
|
|
132329
|
+
userId?: number | undefined;
|
|
132281
132330
|
credentialId?: string | undefined;
|
|
132282
132331
|
relativePath?: string | undefined;
|
|
132283
132332
|
commitAuthorName?: string | undefined;
|
|
132284
132333
|
commitAuthorEmail?: string | undefined;
|
|
132285
132334
|
connectionId?: string | undefined;
|
|
132286
|
-
userId?: number | undefined;
|
|
132287
132335
|
}, {
|
|
132288
132336
|
branch: string;
|
|
132289
132337
|
workspaceSlug: string;
|
|
132290
132338
|
projectKey: string;
|
|
132291
132339
|
repoSlug: string;
|
|
132340
|
+
userId?: number | null | undefined;
|
|
132292
132341
|
credentialId?: string | undefined;
|
|
132293
132342
|
relativePath?: string | null | undefined;
|
|
132294
132343
|
commitAuthorName?: string | null | undefined;
|
|
132295
132344
|
commitAuthorEmail?: string | null | undefined;
|
|
132296
132345
|
connectionId?: string | null | undefined;
|
|
132297
|
-
userId?: number | null | undefined;
|
|
132298
132346
|
}>>;
|
|
132299
132347
|
}, "strip", z.ZodTypeAny, {
|
|
132300
132348
|
webhookUrl?: string | undefined;
|
|
@@ -132309,12 +132357,12 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
132309
132357
|
destinationGithub?: {
|
|
132310
132358
|
url: string;
|
|
132311
132359
|
branch: string;
|
|
132360
|
+
userId?: number | undefined;
|
|
132312
132361
|
credentialId?: string | undefined;
|
|
132313
132362
|
relativePath?: string | undefined;
|
|
132314
132363
|
commitAuthorName?: string | undefined;
|
|
132315
132364
|
commitAuthorEmail?: string | undefined;
|
|
132316
132365
|
connectionId?: string | undefined;
|
|
132317
|
-
userId?: number | undefined;
|
|
132318
132366
|
} | undefined;
|
|
132319
132367
|
destinationAzure?: {
|
|
132320
132368
|
branch: string;
|
|
@@ -132322,35 +132370,35 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
132322
132370
|
projectId: string;
|
|
132323
132371
|
repositoryId: string;
|
|
132324
132372
|
url?: string | undefined;
|
|
132373
|
+
userId?: number | undefined;
|
|
132325
132374
|
credentialId?: string | undefined;
|
|
132326
132375
|
relativePath?: string | undefined;
|
|
132327
132376
|
commitAuthorName?: string | undefined;
|
|
132328
132377
|
commitAuthorEmail?: string | undefined;
|
|
132329
132378
|
connectionId?: string | undefined;
|
|
132330
|
-
userId?: number | undefined;
|
|
132331
132379
|
} | undefined;
|
|
132332
132380
|
destinationGitlab?: {
|
|
132333
132381
|
branch: string;
|
|
132334
132382
|
projectId: string;
|
|
132335
132383
|
url?: string | undefined;
|
|
132384
|
+
userId?: number | undefined;
|
|
132336
132385
|
credentialId?: string | undefined;
|
|
132337
132386
|
relativePath?: string | undefined;
|
|
132338
132387
|
commitAuthorName?: string | undefined;
|
|
132339
132388
|
commitAuthorEmail?: string | undefined;
|
|
132340
132389
|
connectionId?: string | undefined;
|
|
132341
|
-
userId?: number | undefined;
|
|
132342
132390
|
} | undefined;
|
|
132343
132391
|
destinationBitbucket?: {
|
|
132344
132392
|
branch: string;
|
|
132345
132393
|
workspaceSlug: string;
|
|
132346
132394
|
projectKey: string;
|
|
132347
132395
|
repoSlug: string;
|
|
132396
|
+
userId?: number | undefined;
|
|
132348
132397
|
credentialId?: string | undefined;
|
|
132349
132398
|
relativePath?: string | undefined;
|
|
132350
132399
|
commitAuthorName?: string | undefined;
|
|
132351
132400
|
commitAuthorEmail?: string | undefined;
|
|
132352
132401
|
connectionId?: string | undefined;
|
|
132353
|
-
userId?: number | undefined;
|
|
132354
132402
|
} | undefined;
|
|
132355
132403
|
}, {
|
|
132356
132404
|
webhookUrl?: string | undefined;
|
|
@@ -132365,12 +132413,12 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
132365
132413
|
destinationGithub?: {
|
|
132366
132414
|
url: string;
|
|
132367
132415
|
branch: string;
|
|
132416
|
+
userId?: number | null | undefined;
|
|
132368
132417
|
credentialId?: string | undefined;
|
|
132369
132418
|
relativePath?: string | null | undefined;
|
|
132370
132419
|
commitAuthorName?: string | null | undefined;
|
|
132371
132420
|
commitAuthorEmail?: string | null | undefined;
|
|
132372
132421
|
connectionId?: string | null | undefined;
|
|
132373
|
-
userId?: number | null | undefined;
|
|
132374
132422
|
} | undefined;
|
|
132375
132423
|
destinationAzure?: {
|
|
132376
132424
|
branch: string;
|
|
@@ -132378,35 +132426,35 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
132378
132426
|
projectId: string;
|
|
132379
132427
|
repositoryId: string;
|
|
132380
132428
|
url?: string | null | undefined;
|
|
132429
|
+
userId?: number | null | undefined;
|
|
132381
132430
|
credentialId?: string | undefined;
|
|
132382
132431
|
relativePath?: string | null | undefined;
|
|
132383
132432
|
commitAuthorName?: string | null | undefined;
|
|
132384
132433
|
commitAuthorEmail?: string | null | undefined;
|
|
132385
132434
|
connectionId?: string | null | undefined;
|
|
132386
|
-
userId?: number | null | undefined;
|
|
132387
132435
|
} | undefined;
|
|
132388
132436
|
destinationGitlab?: {
|
|
132389
132437
|
branch: string;
|
|
132390
132438
|
projectId: string;
|
|
132391
132439
|
url?: string | null | undefined;
|
|
132440
|
+
userId?: number | null | undefined;
|
|
132392
132441
|
credentialId?: string | undefined;
|
|
132393
132442
|
relativePath?: string | null | undefined;
|
|
132394
132443
|
commitAuthorName?: string | null | undefined;
|
|
132395
132444
|
commitAuthorEmail?: string | null | undefined;
|
|
132396
132445
|
connectionId?: string | null | undefined;
|
|
132397
|
-
userId?: number | null | undefined;
|
|
132398
132446
|
} | undefined;
|
|
132399
132447
|
destinationBitbucket?: {
|
|
132400
132448
|
branch: string;
|
|
132401
132449
|
workspaceSlug: string;
|
|
132402
132450
|
projectKey: string;
|
|
132403
132451
|
repoSlug: string;
|
|
132452
|
+
userId?: number | null | undefined;
|
|
132404
132453
|
credentialId?: string | undefined;
|
|
132405
132454
|
relativePath?: string | null | undefined;
|
|
132406
132455
|
commitAuthorName?: string | null | undefined;
|
|
132407
132456
|
commitAuthorEmail?: string | null | undefined;
|
|
132408
132457
|
connectionId?: string | null | undefined;
|
|
132409
|
-
userId?: number | null | undefined;
|
|
132410
132458
|
} | undefined;
|
|
132411
132459
|
}>;
|
|
132412
132460
|
type ExportDestinationsMap = z.infer<typeof ExportDestinationsMap>;
|
|
@@ -132677,21 +132725,21 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132677
132725
|
}, "strip", z.ZodTypeAny, {
|
|
132678
132726
|
url: string;
|
|
132679
132727
|
branch: string;
|
|
132728
|
+
userId?: number | undefined;
|
|
132680
132729
|
credentialId?: string | undefined;
|
|
132681
132730
|
relativePath?: string | undefined;
|
|
132682
132731
|
commitAuthorName?: string | undefined;
|
|
132683
132732
|
commitAuthorEmail?: string | undefined;
|
|
132684
132733
|
connectionId?: string | undefined;
|
|
132685
|
-
userId?: number | undefined;
|
|
132686
132734
|
}, {
|
|
132687
132735
|
url: string;
|
|
132688
132736
|
branch: string;
|
|
132737
|
+
userId?: number | null | undefined;
|
|
132689
132738
|
credentialId?: string | undefined;
|
|
132690
132739
|
relativePath?: string | null | undefined;
|
|
132691
132740
|
commitAuthorName?: string | null | undefined;
|
|
132692
132741
|
commitAuthorEmail?: string | null | undefined;
|
|
132693
132742
|
connectionId?: string | null | undefined;
|
|
132694
|
-
userId?: number | null | undefined;
|
|
132695
132743
|
}>>;
|
|
132696
132744
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
132697
132745
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -132711,24 +132759,24 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132711
132759
|
projectId: string;
|
|
132712
132760
|
repositoryId: string;
|
|
132713
132761
|
url?: string | undefined;
|
|
132762
|
+
userId?: number | undefined;
|
|
132714
132763
|
credentialId?: string | undefined;
|
|
132715
132764
|
relativePath?: string | undefined;
|
|
132716
132765
|
commitAuthorName?: string | undefined;
|
|
132717
132766
|
commitAuthorEmail?: string | undefined;
|
|
132718
132767
|
connectionId?: string | undefined;
|
|
132719
|
-
userId?: number | undefined;
|
|
132720
132768
|
}, {
|
|
132721
132769
|
branch: string;
|
|
132722
132770
|
organizationId: string;
|
|
132723
132771
|
projectId: string;
|
|
132724
132772
|
repositoryId: string;
|
|
132725
132773
|
url?: string | null | undefined;
|
|
132774
|
+
userId?: number | null | undefined;
|
|
132726
132775
|
credentialId?: string | undefined;
|
|
132727
132776
|
relativePath?: string | null | undefined;
|
|
132728
132777
|
commitAuthorName?: string | null | undefined;
|
|
132729
132778
|
commitAuthorEmail?: string | null | undefined;
|
|
132730
132779
|
connectionId?: string | null | undefined;
|
|
132731
|
-
userId?: number | null | undefined;
|
|
132732
132780
|
}>>;
|
|
132733
132781
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
132734
132782
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -132744,22 +132792,22 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132744
132792
|
branch: string;
|
|
132745
132793
|
projectId: string;
|
|
132746
132794
|
url?: string | undefined;
|
|
132795
|
+
userId?: number | undefined;
|
|
132747
132796
|
credentialId?: string | undefined;
|
|
132748
132797
|
relativePath?: string | undefined;
|
|
132749
132798
|
commitAuthorName?: string | undefined;
|
|
132750
132799
|
commitAuthorEmail?: string | undefined;
|
|
132751
132800
|
connectionId?: string | undefined;
|
|
132752
|
-
userId?: number | undefined;
|
|
132753
132801
|
}, {
|
|
132754
132802
|
branch: string;
|
|
132755
132803
|
projectId: string;
|
|
132756
132804
|
url?: string | null | undefined;
|
|
132805
|
+
userId?: number | null | undefined;
|
|
132757
132806
|
credentialId?: string | undefined;
|
|
132758
132807
|
relativePath?: string | null | undefined;
|
|
132759
132808
|
commitAuthorName?: string | null | undefined;
|
|
132760
132809
|
commitAuthorEmail?: string | null | undefined;
|
|
132761
132810
|
connectionId?: string | null | undefined;
|
|
132762
|
-
userId?: number | null | undefined;
|
|
132763
132811
|
}>>;
|
|
132764
132812
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
132765
132813
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -132777,23 +132825,23 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132777
132825
|
workspaceSlug: string;
|
|
132778
132826
|
projectKey: string;
|
|
132779
132827
|
repoSlug: string;
|
|
132828
|
+
userId?: number | undefined;
|
|
132780
132829
|
credentialId?: string | undefined;
|
|
132781
132830
|
relativePath?: string | undefined;
|
|
132782
132831
|
commitAuthorName?: string | undefined;
|
|
132783
132832
|
commitAuthorEmail?: string | undefined;
|
|
132784
132833
|
connectionId?: string | undefined;
|
|
132785
|
-
userId?: number | undefined;
|
|
132786
132834
|
}, {
|
|
132787
132835
|
branch: string;
|
|
132788
132836
|
workspaceSlug: string;
|
|
132789
132837
|
projectKey: string;
|
|
132790
132838
|
repoSlug: string;
|
|
132839
|
+
userId?: number | null | undefined;
|
|
132791
132840
|
credentialId?: string | undefined;
|
|
132792
132841
|
relativePath?: string | null | undefined;
|
|
132793
132842
|
commitAuthorName?: string | null | undefined;
|
|
132794
132843
|
commitAuthorEmail?: string | null | undefined;
|
|
132795
132844
|
connectionId?: string | null | undefined;
|
|
132796
|
-
userId?: number | null | undefined;
|
|
132797
132845
|
}>>;
|
|
132798
132846
|
id: z.ZodString;
|
|
132799
132847
|
createdAt: z.ZodDate;
|
|
@@ -132991,12 +133039,12 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132991
133039
|
destinationGithub?: {
|
|
132992
133040
|
url: string;
|
|
132993
133041
|
branch: string;
|
|
133042
|
+
userId?: number | undefined;
|
|
132994
133043
|
credentialId?: string | undefined;
|
|
132995
133044
|
relativePath?: string | undefined;
|
|
132996
133045
|
commitAuthorName?: string | undefined;
|
|
132997
133046
|
commitAuthorEmail?: string | undefined;
|
|
132998
133047
|
connectionId?: string | undefined;
|
|
132999
|
-
userId?: number | undefined;
|
|
133000
133048
|
} | undefined;
|
|
133001
133049
|
destinationAzure?: {
|
|
133002
133050
|
branch: string;
|
|
@@ -133004,35 +133052,35 @@ declare const ExportJob: z.ZodObject<{
|
|
|
133004
133052
|
projectId: string;
|
|
133005
133053
|
repositoryId: string;
|
|
133006
133054
|
url?: string | undefined;
|
|
133055
|
+
userId?: number | undefined;
|
|
133007
133056
|
credentialId?: string | undefined;
|
|
133008
133057
|
relativePath?: string | undefined;
|
|
133009
133058
|
commitAuthorName?: string | undefined;
|
|
133010
133059
|
commitAuthorEmail?: string | undefined;
|
|
133011
133060
|
connectionId?: string | undefined;
|
|
133012
|
-
userId?: number | undefined;
|
|
133013
133061
|
} | undefined;
|
|
133014
133062
|
destinationGitlab?: {
|
|
133015
133063
|
branch: string;
|
|
133016
133064
|
projectId: string;
|
|
133017
133065
|
url?: string | undefined;
|
|
133066
|
+
userId?: number | undefined;
|
|
133018
133067
|
credentialId?: string | undefined;
|
|
133019
133068
|
relativePath?: string | undefined;
|
|
133020
133069
|
commitAuthorName?: string | undefined;
|
|
133021
133070
|
commitAuthorEmail?: string | undefined;
|
|
133022
133071
|
connectionId?: string | undefined;
|
|
133023
|
-
userId?: number | undefined;
|
|
133024
133072
|
} | undefined;
|
|
133025
133073
|
destinationBitbucket?: {
|
|
133026
133074
|
branch: string;
|
|
133027
133075
|
workspaceSlug: string;
|
|
133028
133076
|
projectKey: string;
|
|
133029
133077
|
repoSlug: string;
|
|
133078
|
+
userId?: number | undefined;
|
|
133030
133079
|
credentialId?: string | undefined;
|
|
133031
133080
|
relativePath?: string | undefined;
|
|
133032
133081
|
commitAuthorName?: string | undefined;
|
|
133033
133082
|
commitAuthorEmail?: string | undefined;
|
|
133034
133083
|
connectionId?: string | undefined;
|
|
133035
|
-
userId?: number | undefined;
|
|
133036
133084
|
} | undefined;
|
|
133037
133085
|
finishedAt?: Date | undefined;
|
|
133038
133086
|
scheduleId?: string | null | undefined;
|
|
@@ -133092,12 +133140,12 @@ declare const ExportJob: z.ZodObject<{
|
|
|
133092
133140
|
destinationGithub?: {
|
|
133093
133141
|
url: string;
|
|
133094
133142
|
branch: string;
|
|
133143
|
+
userId?: number | null | undefined;
|
|
133095
133144
|
credentialId?: string | undefined;
|
|
133096
133145
|
relativePath?: string | null | undefined;
|
|
133097
133146
|
commitAuthorName?: string | null | undefined;
|
|
133098
133147
|
commitAuthorEmail?: string | null | undefined;
|
|
133099
133148
|
connectionId?: string | null | undefined;
|
|
133100
|
-
userId?: number | null | undefined;
|
|
133101
133149
|
} | undefined;
|
|
133102
133150
|
destinationAzure?: {
|
|
133103
133151
|
branch: string;
|
|
@@ -133105,35 +133153,35 @@ declare const ExportJob: z.ZodObject<{
|
|
|
133105
133153
|
projectId: string;
|
|
133106
133154
|
repositoryId: string;
|
|
133107
133155
|
url?: string | null | undefined;
|
|
133156
|
+
userId?: number | null | undefined;
|
|
133108
133157
|
credentialId?: string | undefined;
|
|
133109
133158
|
relativePath?: string | null | undefined;
|
|
133110
133159
|
commitAuthorName?: string | null | undefined;
|
|
133111
133160
|
commitAuthorEmail?: string | null | undefined;
|
|
133112
133161
|
connectionId?: string | null | undefined;
|
|
133113
|
-
userId?: number | null | undefined;
|
|
133114
133162
|
} | undefined;
|
|
133115
133163
|
destinationGitlab?: {
|
|
133116
133164
|
branch: string;
|
|
133117
133165
|
projectId: string;
|
|
133118
133166
|
url?: string | null | undefined;
|
|
133167
|
+
userId?: number | null | undefined;
|
|
133119
133168
|
credentialId?: string | undefined;
|
|
133120
133169
|
relativePath?: string | null | undefined;
|
|
133121
133170
|
commitAuthorName?: string | null | undefined;
|
|
133122
133171
|
commitAuthorEmail?: string | null | undefined;
|
|
133123
133172
|
connectionId?: string | null | undefined;
|
|
133124
|
-
userId?: number | null | undefined;
|
|
133125
133173
|
} | undefined;
|
|
133126
133174
|
destinationBitbucket?: {
|
|
133127
133175
|
branch: string;
|
|
133128
133176
|
workspaceSlug: string;
|
|
133129
133177
|
projectKey: string;
|
|
133130
133178
|
repoSlug: string;
|
|
133179
|
+
userId?: number | null | undefined;
|
|
133131
133180
|
credentialId?: string | undefined;
|
|
133132
133181
|
relativePath?: string | null | undefined;
|
|
133133
133182
|
commitAuthorName?: string | null | undefined;
|
|
133134
133183
|
commitAuthorEmail?: string | null | undefined;
|
|
133135
133184
|
connectionId?: string | null | undefined;
|
|
133136
|
-
userId?: number | null | undefined;
|
|
133137
133185
|
} | undefined;
|
|
133138
133186
|
finishedAt?: Date | undefined;
|
|
133139
133187
|
scheduleId?: string | null | undefined;
|
|
@@ -134218,21 +134266,21 @@ declare const Pipeline: z.ZodObject<{
|
|
|
134218
134266
|
}, "strip", z.ZodTypeAny, {
|
|
134219
134267
|
url: string;
|
|
134220
134268
|
branch: string;
|
|
134269
|
+
userId?: number | undefined;
|
|
134221
134270
|
credentialId?: string | undefined;
|
|
134222
134271
|
relativePath?: string | undefined;
|
|
134223
134272
|
commitAuthorName?: string | undefined;
|
|
134224
134273
|
commitAuthorEmail?: string | undefined;
|
|
134225
134274
|
connectionId?: string | undefined;
|
|
134226
|
-
userId?: number | undefined;
|
|
134227
134275
|
}, {
|
|
134228
134276
|
url: string;
|
|
134229
134277
|
branch: string;
|
|
134278
|
+
userId?: number | null | undefined;
|
|
134230
134279
|
credentialId?: string | undefined;
|
|
134231
134280
|
relativePath?: string | null | undefined;
|
|
134232
134281
|
commitAuthorName?: string | null | undefined;
|
|
134233
134282
|
commitAuthorEmail?: string | null | undefined;
|
|
134234
134283
|
connectionId?: string | null | undefined;
|
|
134235
|
-
userId?: number | null | undefined;
|
|
134236
134284
|
}>>;
|
|
134237
134285
|
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
134238
134286
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -134252,24 +134300,24 @@ declare const Pipeline: z.ZodObject<{
|
|
|
134252
134300
|
projectId: string;
|
|
134253
134301
|
repositoryId: string;
|
|
134254
134302
|
url?: string | undefined;
|
|
134303
|
+
userId?: number | undefined;
|
|
134255
134304
|
credentialId?: string | undefined;
|
|
134256
134305
|
relativePath?: string | undefined;
|
|
134257
134306
|
commitAuthorName?: string | undefined;
|
|
134258
134307
|
commitAuthorEmail?: string | undefined;
|
|
134259
134308
|
connectionId?: string | undefined;
|
|
134260
|
-
userId?: number | undefined;
|
|
134261
134309
|
}, {
|
|
134262
134310
|
branch: string;
|
|
134263
134311
|
organizationId: string;
|
|
134264
134312
|
projectId: string;
|
|
134265
134313
|
repositoryId: string;
|
|
134266
134314
|
url?: string | null | undefined;
|
|
134315
|
+
userId?: number | null | undefined;
|
|
134267
134316
|
credentialId?: string | undefined;
|
|
134268
134317
|
relativePath?: string | null | undefined;
|
|
134269
134318
|
commitAuthorName?: string | null | undefined;
|
|
134270
134319
|
commitAuthorEmail?: string | null | undefined;
|
|
134271
134320
|
connectionId?: string | null | undefined;
|
|
134272
|
-
userId?: number | null | undefined;
|
|
134273
134321
|
}>>;
|
|
134274
134322
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
134275
134323
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -134285,22 +134333,22 @@ declare const Pipeline: z.ZodObject<{
|
|
|
134285
134333
|
branch: string;
|
|
134286
134334
|
projectId: string;
|
|
134287
134335
|
url?: string | undefined;
|
|
134336
|
+
userId?: number | undefined;
|
|
134288
134337
|
credentialId?: string | undefined;
|
|
134289
134338
|
relativePath?: string | undefined;
|
|
134290
134339
|
commitAuthorName?: string | undefined;
|
|
134291
134340
|
commitAuthorEmail?: string | undefined;
|
|
134292
134341
|
connectionId?: string | undefined;
|
|
134293
|
-
userId?: number | undefined;
|
|
134294
134342
|
}, {
|
|
134295
134343
|
branch: string;
|
|
134296
134344
|
projectId: string;
|
|
134297
134345
|
url?: string | null | undefined;
|
|
134346
|
+
userId?: number | null | undefined;
|
|
134298
134347
|
credentialId?: string | undefined;
|
|
134299
134348
|
relativePath?: string | null | undefined;
|
|
134300
134349
|
commitAuthorName?: string | null | undefined;
|
|
134301
134350
|
commitAuthorEmail?: string | null | undefined;
|
|
134302
134351
|
connectionId?: string | null | undefined;
|
|
134303
|
-
userId?: number | null | undefined;
|
|
134304
134352
|
}>>;
|
|
134305
134353
|
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
134306
134354
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
@@ -134318,23 +134366,23 @@ declare const Pipeline: z.ZodObject<{
|
|
|
134318
134366
|
workspaceSlug: string;
|
|
134319
134367
|
projectKey: string;
|
|
134320
134368
|
repoSlug: string;
|
|
134369
|
+
userId?: number | undefined;
|
|
134321
134370
|
credentialId?: string | undefined;
|
|
134322
134371
|
relativePath?: string | undefined;
|
|
134323
134372
|
commitAuthorName?: string | undefined;
|
|
134324
134373
|
commitAuthorEmail?: string | undefined;
|
|
134325
134374
|
connectionId?: string | undefined;
|
|
134326
|
-
userId?: number | undefined;
|
|
134327
134375
|
}, {
|
|
134328
134376
|
branch: string;
|
|
134329
134377
|
workspaceSlug: string;
|
|
134330
134378
|
projectKey: string;
|
|
134331
134379
|
repoSlug: string;
|
|
134380
|
+
userId?: number | null | undefined;
|
|
134332
134381
|
credentialId?: string | undefined;
|
|
134333
134382
|
relativePath?: string | null | undefined;
|
|
134334
134383
|
commitAuthorName?: string | null | undefined;
|
|
134335
134384
|
commitAuthorEmail?: string | null | undefined;
|
|
134336
134385
|
connectionId?: string | null | undefined;
|
|
134337
|
-
userId?: number | null | undefined;
|
|
134338
134386
|
}>>;
|
|
134339
134387
|
id: z.ZodString;
|
|
134340
134388
|
name: z.ZodString;
|
|
@@ -134367,12 +134415,12 @@ declare const Pipeline: z.ZodObject<{
|
|
|
134367
134415
|
destinationGithub?: {
|
|
134368
134416
|
url: string;
|
|
134369
134417
|
branch: string;
|
|
134418
|
+
userId?: number | undefined;
|
|
134370
134419
|
credentialId?: string | undefined;
|
|
134371
134420
|
relativePath?: string | undefined;
|
|
134372
134421
|
commitAuthorName?: string | undefined;
|
|
134373
134422
|
commitAuthorEmail?: string | undefined;
|
|
134374
134423
|
connectionId?: string | undefined;
|
|
134375
|
-
userId?: number | undefined;
|
|
134376
134424
|
} | undefined;
|
|
134377
134425
|
destinationAzure?: {
|
|
134378
134426
|
branch: string;
|
|
@@ -134380,35 +134428,35 @@ declare const Pipeline: z.ZodObject<{
|
|
|
134380
134428
|
projectId: string;
|
|
134381
134429
|
repositoryId: string;
|
|
134382
134430
|
url?: string | undefined;
|
|
134431
|
+
userId?: number | undefined;
|
|
134383
134432
|
credentialId?: string | undefined;
|
|
134384
134433
|
relativePath?: string | undefined;
|
|
134385
134434
|
commitAuthorName?: string | undefined;
|
|
134386
134435
|
commitAuthorEmail?: string | undefined;
|
|
134387
134436
|
connectionId?: string | undefined;
|
|
134388
|
-
userId?: number | undefined;
|
|
134389
134437
|
} | undefined;
|
|
134390
134438
|
destinationGitlab?: {
|
|
134391
134439
|
branch: string;
|
|
134392
134440
|
projectId: string;
|
|
134393
134441
|
url?: string | undefined;
|
|
134442
|
+
userId?: number | undefined;
|
|
134394
134443
|
credentialId?: string | undefined;
|
|
134395
134444
|
relativePath?: string | undefined;
|
|
134396
134445
|
commitAuthorName?: string | undefined;
|
|
134397
134446
|
commitAuthorEmail?: string | undefined;
|
|
134398
134447
|
connectionId?: string | undefined;
|
|
134399
|
-
userId?: number | undefined;
|
|
134400
134448
|
} | undefined;
|
|
134401
134449
|
destinationBitbucket?: {
|
|
134402
134450
|
branch: string;
|
|
134403
134451
|
workspaceSlug: string;
|
|
134404
134452
|
projectKey: string;
|
|
134405
134453
|
repoSlug: string;
|
|
134454
|
+
userId?: number | undefined;
|
|
134406
134455
|
credentialId?: string | undefined;
|
|
134407
134456
|
relativePath?: string | undefined;
|
|
134408
134457
|
commitAuthorName?: string | undefined;
|
|
134409
134458
|
commitAuthorEmail?: string | undefined;
|
|
134410
134459
|
connectionId?: string | undefined;
|
|
134411
|
-
userId?: number | undefined;
|
|
134412
134460
|
} | undefined;
|
|
134413
134461
|
}, {
|
|
134414
134462
|
id: string;
|
|
@@ -134432,12 +134480,12 @@ declare const Pipeline: z.ZodObject<{
|
|
|
134432
134480
|
destinationGithub?: {
|
|
134433
134481
|
url: string;
|
|
134434
134482
|
branch: string;
|
|
134483
|
+
userId?: number | null | undefined;
|
|
134435
134484
|
credentialId?: string | undefined;
|
|
134436
134485
|
relativePath?: string | null | undefined;
|
|
134437
134486
|
commitAuthorName?: string | null | undefined;
|
|
134438
134487
|
commitAuthorEmail?: string | null | undefined;
|
|
134439
134488
|
connectionId?: string | null | undefined;
|
|
134440
|
-
userId?: number | null | undefined;
|
|
134441
134489
|
} | undefined;
|
|
134442
134490
|
destinationAzure?: {
|
|
134443
134491
|
branch: string;
|
|
@@ -134445,35 +134493,35 @@ declare const Pipeline: z.ZodObject<{
|
|
|
134445
134493
|
projectId: string;
|
|
134446
134494
|
repositoryId: string;
|
|
134447
134495
|
url?: string | null | undefined;
|
|
134496
|
+
userId?: number | null | undefined;
|
|
134448
134497
|
credentialId?: string | undefined;
|
|
134449
134498
|
relativePath?: string | null | undefined;
|
|
134450
134499
|
commitAuthorName?: string | null | undefined;
|
|
134451
134500
|
commitAuthorEmail?: string | null | undefined;
|
|
134452
134501
|
connectionId?: string | null | undefined;
|
|
134453
|
-
userId?: number | null | undefined;
|
|
134454
134502
|
} | undefined;
|
|
134455
134503
|
destinationGitlab?: {
|
|
134456
134504
|
branch: string;
|
|
134457
134505
|
projectId: string;
|
|
134458
134506
|
url?: string | null | undefined;
|
|
134507
|
+
userId?: number | null | undefined;
|
|
134459
134508
|
credentialId?: string | undefined;
|
|
134460
134509
|
relativePath?: string | null | undefined;
|
|
134461
134510
|
commitAuthorName?: string | null | undefined;
|
|
134462
134511
|
commitAuthorEmail?: string | null | undefined;
|
|
134463
134512
|
connectionId?: string | null | undefined;
|
|
134464
|
-
userId?: number | null | undefined;
|
|
134465
134513
|
} | undefined;
|
|
134466
134514
|
destinationBitbucket?: {
|
|
134467
134515
|
branch: string;
|
|
134468
134516
|
workspaceSlug: string;
|
|
134469
134517
|
projectKey: string;
|
|
134470
134518
|
repoSlug: string;
|
|
134519
|
+
userId?: number | null | undefined;
|
|
134471
134520
|
credentialId?: string | undefined;
|
|
134472
134521
|
relativePath?: string | null | undefined;
|
|
134473
134522
|
commitAuthorName?: string | null | undefined;
|
|
134474
134523
|
commitAuthorEmail?: string | null | undefined;
|
|
134475
134524
|
connectionId?: string | null | undefined;
|
|
134476
|
-
userId?: number | null | undefined;
|
|
134477
134525
|
} | undefined;
|
|
134478
134526
|
}>;
|
|
134479
134527
|
type Pipeline = z.infer<typeof Pipeline>;
|
|
@@ -135315,14 +135363,14 @@ declare const WorkspaceOAuthRequestSchema: z.ZodObject<{
|
|
|
135315
135363
|
}, "strip", z.ZodTypeAny, {
|
|
135316
135364
|
id: string;
|
|
135317
135365
|
createdAt: Date;
|
|
135318
|
-
workspaceId: string;
|
|
135319
135366
|
userId: string;
|
|
135367
|
+
workspaceId: string;
|
|
135320
135368
|
provider: OAuthProviderNames;
|
|
135321
135369
|
}, {
|
|
135322
135370
|
id: string;
|
|
135323
135371
|
createdAt: Date;
|
|
135324
|
-
workspaceId: string;
|
|
135325
135372
|
userId: string;
|
|
135373
|
+
workspaceId: string;
|
|
135326
135374
|
provider: OAuthProviderNames;
|
|
135327
135375
|
}>;
|
|
135328
135376
|
type WorkspaceOAuthRequest = z.infer<typeof WorkspaceOAuthRequestSchema>;
|
|
@@ -162062,8 +162110,8 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
162062
162110
|
}>;
|
|
162063
162111
|
}, "strip", z.ZodTypeAny, {
|
|
162064
162112
|
id: string;
|
|
162065
|
-
workspaceId: string;
|
|
162066
162113
|
userId: string;
|
|
162114
|
+
workspaceId: string;
|
|
162067
162115
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
162068
162116
|
notificationSettings: {
|
|
162069
162117
|
liveblocksNotificationSettings: {
|
|
@@ -162072,8 +162120,8 @@ declare const WorkspaceMembership: z.ZodObject<{
|
|
|
162072
162120
|
};
|
|
162073
162121
|
}, {
|
|
162074
162122
|
id: string;
|
|
162075
|
-
workspaceId: string;
|
|
162076
162123
|
userId: string;
|
|
162124
|
+
workspaceId: string;
|
|
162077
162125
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
162078
162126
|
notificationSettings: {
|
|
162079
162127
|
liveblocksNotificationSettings: {
|
|
@@ -165839,4 +165887,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
165839
165887
|
}>;
|
|
165840
165888
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
165841
165889
|
|
|
165842
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, 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, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, 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, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, 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, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, 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 ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, 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, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, 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, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, 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 UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|
|
165890
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, 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, CodeIntegrationDump, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemMembership, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, 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, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, 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, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaNodeRenderFormat, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, 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 ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, 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, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, 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, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, 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 UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, areShallowObjectsEqual, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, removeCommentSpans, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, zodCreateInputOmit, zodUpdateInputOmit };
|