@supernova-studio/model 0.52.4 → 0.52.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +732 -42
- package/dist/index.d.ts +732 -42
- package/dist/index.js +18 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/figma-node-reference.ts +4 -0
- package/src/dsm/import/figma-frames.ts +5 -5
- package/src/export/export-destinations.ts +16 -0
package/dist/index.d.mts
CHANGED
|
@@ -2314,6 +2314,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2314
2314
|
url: z.ZodString;
|
|
2315
2315
|
branch: z.ZodString;
|
|
2316
2316
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2317
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2318
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2317
2319
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2318
2320
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
2319
2321
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2321,6 +2323,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2321
2323
|
branch: string;
|
|
2322
2324
|
credentialId?: string | undefined;
|
|
2323
2325
|
relativePath?: string | undefined;
|
|
2326
|
+
commitAuthorName?: string | undefined;
|
|
2327
|
+
commitAuthorEmail?: string | undefined;
|
|
2324
2328
|
connectionId?: string | undefined;
|
|
2325
2329
|
userId?: number | undefined;
|
|
2326
2330
|
}, {
|
|
@@ -2328,6 +2332,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2328
2332
|
branch: string;
|
|
2329
2333
|
credentialId?: string | undefined;
|
|
2330
2334
|
relativePath?: string | null | undefined;
|
|
2335
|
+
commitAuthorName?: string | null | undefined;
|
|
2336
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2331
2337
|
connectionId?: string | null | undefined;
|
|
2332
2338
|
userId?: number | null | undefined;
|
|
2333
2339
|
}>>;
|
|
@@ -2336,6 +2342,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2336
2342
|
organizationId: z.ZodString;
|
|
2337
2343
|
projectId: z.ZodString;
|
|
2338
2344
|
repositoryId: z.ZodString;
|
|
2345
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2346
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2339
2347
|
branch: z.ZodString;
|
|
2340
2348
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2341
2349
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -2349,6 +2357,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2349
2357
|
url?: string | undefined;
|
|
2350
2358
|
credentialId?: string | undefined;
|
|
2351
2359
|
relativePath?: string | undefined;
|
|
2360
|
+
commitAuthorName?: string | undefined;
|
|
2361
|
+
commitAuthorEmail?: string | undefined;
|
|
2352
2362
|
connectionId?: string | undefined;
|
|
2353
2363
|
userId?: number | undefined;
|
|
2354
2364
|
}, {
|
|
@@ -2359,12 +2369,16 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2359
2369
|
url?: string | null | undefined;
|
|
2360
2370
|
credentialId?: string | undefined;
|
|
2361
2371
|
relativePath?: string | null | undefined;
|
|
2372
|
+
commitAuthorName?: string | null | undefined;
|
|
2373
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2362
2374
|
connectionId?: string | null | undefined;
|
|
2363
2375
|
userId?: number | null | undefined;
|
|
2364
2376
|
}>>;
|
|
2365
2377
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
2366
2378
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
2367
2379
|
projectId: z.ZodString;
|
|
2380
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2381
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2368
2382
|
branch: z.ZodString;
|
|
2369
2383
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2370
2384
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -2376,6 +2390,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2376
2390
|
url?: string | undefined;
|
|
2377
2391
|
credentialId?: string | undefined;
|
|
2378
2392
|
relativePath?: string | undefined;
|
|
2393
|
+
commitAuthorName?: string | undefined;
|
|
2394
|
+
commitAuthorEmail?: string | undefined;
|
|
2379
2395
|
connectionId?: string | undefined;
|
|
2380
2396
|
userId?: number | undefined;
|
|
2381
2397
|
}, {
|
|
@@ -2384,6 +2400,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2384
2400
|
url?: string | null | undefined;
|
|
2385
2401
|
credentialId?: string | undefined;
|
|
2386
2402
|
relativePath?: string | null | undefined;
|
|
2403
|
+
commitAuthorName?: string | null | undefined;
|
|
2404
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2387
2405
|
connectionId?: string | null | undefined;
|
|
2388
2406
|
userId?: number | null | undefined;
|
|
2389
2407
|
}>>;
|
|
@@ -2392,6 +2410,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2392
2410
|
workspaceSlug: z.ZodString;
|
|
2393
2411
|
projectKey: z.ZodString;
|
|
2394
2412
|
repoSlug: z.ZodString;
|
|
2413
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2414
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2395
2415
|
branch: z.ZodString;
|
|
2396
2416
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
2397
2417
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -2403,6 +2423,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2403
2423
|
repoSlug: string;
|
|
2404
2424
|
credentialId?: string | undefined;
|
|
2405
2425
|
relativePath?: string | undefined;
|
|
2426
|
+
commitAuthorName?: string | undefined;
|
|
2427
|
+
commitAuthorEmail?: string | undefined;
|
|
2406
2428
|
connectionId?: string | undefined;
|
|
2407
2429
|
userId?: number | undefined;
|
|
2408
2430
|
}, {
|
|
@@ -2412,6 +2434,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2412
2434
|
repoSlug: string;
|
|
2413
2435
|
credentialId?: string | undefined;
|
|
2414
2436
|
relativePath?: string | null | undefined;
|
|
2437
|
+
commitAuthorName?: string | null | undefined;
|
|
2438
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2415
2439
|
connectionId?: string | null | undefined;
|
|
2416
2440
|
userId?: number | null | undefined;
|
|
2417
2441
|
}>>;
|
|
@@ -2448,6 +2472,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2448
2472
|
branch: string;
|
|
2449
2473
|
credentialId?: string | undefined;
|
|
2450
2474
|
relativePath?: string | undefined;
|
|
2475
|
+
commitAuthorName?: string | undefined;
|
|
2476
|
+
commitAuthorEmail?: string | undefined;
|
|
2451
2477
|
connectionId?: string | undefined;
|
|
2452
2478
|
userId?: number | undefined;
|
|
2453
2479
|
} | undefined;
|
|
@@ -2459,6 +2485,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2459
2485
|
url?: string | undefined;
|
|
2460
2486
|
credentialId?: string | undefined;
|
|
2461
2487
|
relativePath?: string | undefined;
|
|
2488
|
+
commitAuthorName?: string | undefined;
|
|
2489
|
+
commitAuthorEmail?: string | undefined;
|
|
2462
2490
|
connectionId?: string | undefined;
|
|
2463
2491
|
userId?: number | undefined;
|
|
2464
2492
|
} | undefined;
|
|
@@ -2468,6 +2496,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2468
2496
|
url?: string | undefined;
|
|
2469
2497
|
credentialId?: string | undefined;
|
|
2470
2498
|
relativePath?: string | undefined;
|
|
2499
|
+
commitAuthorName?: string | undefined;
|
|
2500
|
+
commitAuthorEmail?: string | undefined;
|
|
2471
2501
|
connectionId?: string | undefined;
|
|
2472
2502
|
userId?: number | undefined;
|
|
2473
2503
|
} | undefined;
|
|
@@ -2478,6 +2508,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2478
2508
|
repoSlug: string;
|
|
2479
2509
|
credentialId?: string | undefined;
|
|
2480
2510
|
relativePath?: string | undefined;
|
|
2511
|
+
commitAuthorName?: string | undefined;
|
|
2512
|
+
commitAuthorEmail?: string | undefined;
|
|
2481
2513
|
connectionId?: string | undefined;
|
|
2482
2514
|
userId?: number | undefined;
|
|
2483
2515
|
} | undefined;
|
|
@@ -2505,6 +2537,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2505
2537
|
branch: string;
|
|
2506
2538
|
credentialId?: string | undefined;
|
|
2507
2539
|
relativePath?: string | null | undefined;
|
|
2540
|
+
commitAuthorName?: string | null | undefined;
|
|
2541
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2508
2542
|
connectionId?: string | null | undefined;
|
|
2509
2543
|
userId?: number | null | undefined;
|
|
2510
2544
|
} | undefined;
|
|
@@ -2516,6 +2550,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2516
2550
|
url?: string | null | undefined;
|
|
2517
2551
|
credentialId?: string | undefined;
|
|
2518
2552
|
relativePath?: string | null | undefined;
|
|
2553
|
+
commitAuthorName?: string | null | undefined;
|
|
2554
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2519
2555
|
connectionId?: string | null | undefined;
|
|
2520
2556
|
userId?: number | null | undefined;
|
|
2521
2557
|
} | undefined;
|
|
@@ -2525,6 +2561,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2525
2561
|
url?: string | null | undefined;
|
|
2526
2562
|
credentialId?: string | undefined;
|
|
2527
2563
|
relativePath?: string | null | undefined;
|
|
2564
|
+
commitAuthorName?: string | null | undefined;
|
|
2565
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2528
2566
|
connectionId?: string | null | undefined;
|
|
2529
2567
|
userId?: number | null | undefined;
|
|
2530
2568
|
} | undefined;
|
|
@@ -2535,6 +2573,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2535
2573
|
repoSlug: string;
|
|
2536
2574
|
credentialId?: string | undefined;
|
|
2537
2575
|
relativePath?: string | null | undefined;
|
|
2576
|
+
commitAuthorName?: string | null | undefined;
|
|
2577
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2538
2578
|
connectionId?: string | null | undefined;
|
|
2539
2579
|
userId?: number | null | undefined;
|
|
2540
2580
|
} | undefined;
|
|
@@ -2644,6 +2684,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2644
2684
|
branch: string;
|
|
2645
2685
|
credentialId?: string | undefined;
|
|
2646
2686
|
relativePath?: string | undefined;
|
|
2687
|
+
commitAuthorName?: string | undefined;
|
|
2688
|
+
commitAuthorEmail?: string | undefined;
|
|
2647
2689
|
connectionId?: string | undefined;
|
|
2648
2690
|
userId?: number | undefined;
|
|
2649
2691
|
} | undefined;
|
|
@@ -2655,6 +2697,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2655
2697
|
url?: string | undefined;
|
|
2656
2698
|
credentialId?: string | undefined;
|
|
2657
2699
|
relativePath?: string | undefined;
|
|
2700
|
+
commitAuthorName?: string | undefined;
|
|
2701
|
+
commitAuthorEmail?: string | undefined;
|
|
2658
2702
|
connectionId?: string | undefined;
|
|
2659
2703
|
userId?: number | undefined;
|
|
2660
2704
|
} | undefined;
|
|
@@ -2664,6 +2708,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2664
2708
|
url?: string | undefined;
|
|
2665
2709
|
credentialId?: string | undefined;
|
|
2666
2710
|
relativePath?: string | undefined;
|
|
2711
|
+
commitAuthorName?: string | undefined;
|
|
2712
|
+
commitAuthorEmail?: string | undefined;
|
|
2667
2713
|
connectionId?: string | undefined;
|
|
2668
2714
|
userId?: number | undefined;
|
|
2669
2715
|
} | undefined;
|
|
@@ -2674,6 +2720,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2674
2720
|
repoSlug: string;
|
|
2675
2721
|
credentialId?: string | undefined;
|
|
2676
2722
|
relativePath?: string | undefined;
|
|
2723
|
+
commitAuthorName?: string | undefined;
|
|
2724
|
+
commitAuthorEmail?: string | undefined;
|
|
2677
2725
|
connectionId?: string | undefined;
|
|
2678
2726
|
userId?: number | undefined;
|
|
2679
2727
|
} | undefined;
|
|
@@ -2773,6 +2821,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2773
2821
|
branch: string;
|
|
2774
2822
|
credentialId?: string | undefined;
|
|
2775
2823
|
relativePath?: string | null | undefined;
|
|
2824
|
+
commitAuthorName?: string | null | undefined;
|
|
2825
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2776
2826
|
connectionId?: string | null | undefined;
|
|
2777
2827
|
userId?: number | null | undefined;
|
|
2778
2828
|
} | undefined;
|
|
@@ -2784,6 +2834,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2784
2834
|
url?: string | null | undefined;
|
|
2785
2835
|
credentialId?: string | undefined;
|
|
2786
2836
|
relativePath?: string | null | undefined;
|
|
2837
|
+
commitAuthorName?: string | null | undefined;
|
|
2838
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2787
2839
|
connectionId?: string | null | undefined;
|
|
2788
2840
|
userId?: number | null | undefined;
|
|
2789
2841
|
} | undefined;
|
|
@@ -2793,6 +2845,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2793
2845
|
url?: string | null | undefined;
|
|
2794
2846
|
credentialId?: string | undefined;
|
|
2795
2847
|
relativePath?: string | null | undefined;
|
|
2848
|
+
commitAuthorName?: string | null | undefined;
|
|
2849
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2796
2850
|
connectionId?: string | null | undefined;
|
|
2797
2851
|
userId?: number | null | undefined;
|
|
2798
2852
|
} | undefined;
|
|
@@ -2803,6 +2857,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
2803
2857
|
repoSlug: string;
|
|
2804
2858
|
credentialId?: string | undefined;
|
|
2805
2859
|
relativePath?: string | null | undefined;
|
|
2860
|
+
commitAuthorName?: string | null | undefined;
|
|
2861
|
+
commitAuthorEmail?: string | null | undefined;
|
|
2806
2862
|
connectionId?: string | null | undefined;
|
|
2807
2863
|
userId?: number | null | undefined;
|
|
2808
2864
|
} | undefined;
|
|
@@ -16216,6 +16272,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16216
16272
|
url: z.ZodString;
|
|
16217
16273
|
branch: z.ZodString;
|
|
16218
16274
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16275
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16276
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16219
16277
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16220
16278
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
16221
16279
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -16223,6 +16281,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16223
16281
|
branch: string;
|
|
16224
16282
|
credentialId?: string | undefined;
|
|
16225
16283
|
relativePath?: string | undefined;
|
|
16284
|
+
commitAuthorName?: string | undefined;
|
|
16285
|
+
commitAuthorEmail?: string | undefined;
|
|
16226
16286
|
connectionId?: string | undefined;
|
|
16227
16287
|
userId?: number | undefined;
|
|
16228
16288
|
}, {
|
|
@@ -16230,6 +16290,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16230
16290
|
branch: string;
|
|
16231
16291
|
credentialId?: string | undefined;
|
|
16232
16292
|
relativePath?: string | null | undefined;
|
|
16293
|
+
commitAuthorName?: string | null | undefined;
|
|
16294
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16233
16295
|
connectionId?: string | null | undefined;
|
|
16234
16296
|
userId?: number | null | undefined;
|
|
16235
16297
|
}>>;
|
|
@@ -16238,6 +16300,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16238
16300
|
organizationId: z.ZodString;
|
|
16239
16301
|
projectId: z.ZodString;
|
|
16240
16302
|
repositoryId: z.ZodString;
|
|
16303
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16304
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16241
16305
|
branch: z.ZodString;
|
|
16242
16306
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16243
16307
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -16251,6 +16315,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16251
16315
|
url?: string | undefined;
|
|
16252
16316
|
credentialId?: string | undefined;
|
|
16253
16317
|
relativePath?: string | undefined;
|
|
16318
|
+
commitAuthorName?: string | undefined;
|
|
16319
|
+
commitAuthorEmail?: string | undefined;
|
|
16254
16320
|
connectionId?: string | undefined;
|
|
16255
16321
|
userId?: number | undefined;
|
|
16256
16322
|
}, {
|
|
@@ -16261,12 +16327,16 @@ declare const UserDump: z.ZodObject<{
|
|
|
16261
16327
|
url?: string | null | undefined;
|
|
16262
16328
|
credentialId?: string | undefined;
|
|
16263
16329
|
relativePath?: string | null | undefined;
|
|
16330
|
+
commitAuthorName?: string | null | undefined;
|
|
16331
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16264
16332
|
connectionId?: string | null | undefined;
|
|
16265
16333
|
userId?: number | null | undefined;
|
|
16266
16334
|
}>>;
|
|
16267
16335
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
16268
16336
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
16269
16337
|
projectId: z.ZodString;
|
|
16338
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16339
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16270
16340
|
branch: z.ZodString;
|
|
16271
16341
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16272
16342
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -16278,6 +16348,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16278
16348
|
url?: string | undefined;
|
|
16279
16349
|
credentialId?: string | undefined;
|
|
16280
16350
|
relativePath?: string | undefined;
|
|
16351
|
+
commitAuthorName?: string | undefined;
|
|
16352
|
+
commitAuthorEmail?: string | undefined;
|
|
16281
16353
|
connectionId?: string | undefined;
|
|
16282
16354
|
userId?: number | undefined;
|
|
16283
16355
|
}, {
|
|
@@ -16286,6 +16358,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16286
16358
|
url?: string | null | undefined;
|
|
16287
16359
|
credentialId?: string | undefined;
|
|
16288
16360
|
relativePath?: string | null | undefined;
|
|
16361
|
+
commitAuthorName?: string | null | undefined;
|
|
16362
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16289
16363
|
connectionId?: string | null | undefined;
|
|
16290
16364
|
userId?: number | null | undefined;
|
|
16291
16365
|
}>>;
|
|
@@ -16294,6 +16368,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16294
16368
|
workspaceSlug: z.ZodString;
|
|
16295
16369
|
projectKey: z.ZodString;
|
|
16296
16370
|
repoSlug: z.ZodString;
|
|
16371
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16372
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16297
16373
|
branch: z.ZodString;
|
|
16298
16374
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
16299
16375
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -16305,6 +16381,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16305
16381
|
repoSlug: string;
|
|
16306
16382
|
credentialId?: string | undefined;
|
|
16307
16383
|
relativePath?: string | undefined;
|
|
16384
|
+
commitAuthorName?: string | undefined;
|
|
16385
|
+
commitAuthorEmail?: string | undefined;
|
|
16308
16386
|
connectionId?: string | undefined;
|
|
16309
16387
|
userId?: number | undefined;
|
|
16310
16388
|
}, {
|
|
@@ -16314,6 +16392,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16314
16392
|
repoSlug: string;
|
|
16315
16393
|
credentialId?: string | undefined;
|
|
16316
16394
|
relativePath?: string | null | undefined;
|
|
16395
|
+
commitAuthorName?: string | null | undefined;
|
|
16396
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16317
16397
|
connectionId?: string | null | undefined;
|
|
16318
16398
|
userId?: number | null | undefined;
|
|
16319
16399
|
}>>;
|
|
@@ -16350,6 +16430,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16350
16430
|
branch: string;
|
|
16351
16431
|
credentialId?: string | undefined;
|
|
16352
16432
|
relativePath?: string | undefined;
|
|
16433
|
+
commitAuthorName?: string | undefined;
|
|
16434
|
+
commitAuthorEmail?: string | undefined;
|
|
16353
16435
|
connectionId?: string | undefined;
|
|
16354
16436
|
userId?: number | undefined;
|
|
16355
16437
|
} | undefined;
|
|
@@ -16361,6 +16443,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16361
16443
|
url?: string | undefined;
|
|
16362
16444
|
credentialId?: string | undefined;
|
|
16363
16445
|
relativePath?: string | undefined;
|
|
16446
|
+
commitAuthorName?: string | undefined;
|
|
16447
|
+
commitAuthorEmail?: string | undefined;
|
|
16364
16448
|
connectionId?: string | undefined;
|
|
16365
16449
|
userId?: number | undefined;
|
|
16366
16450
|
} | undefined;
|
|
@@ -16370,6 +16454,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16370
16454
|
url?: string | undefined;
|
|
16371
16455
|
credentialId?: string | undefined;
|
|
16372
16456
|
relativePath?: string | undefined;
|
|
16457
|
+
commitAuthorName?: string | undefined;
|
|
16458
|
+
commitAuthorEmail?: string | undefined;
|
|
16373
16459
|
connectionId?: string | undefined;
|
|
16374
16460
|
userId?: number | undefined;
|
|
16375
16461
|
} | undefined;
|
|
@@ -16380,6 +16466,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16380
16466
|
repoSlug: string;
|
|
16381
16467
|
credentialId?: string | undefined;
|
|
16382
16468
|
relativePath?: string | undefined;
|
|
16469
|
+
commitAuthorName?: string | undefined;
|
|
16470
|
+
commitAuthorEmail?: string | undefined;
|
|
16383
16471
|
connectionId?: string | undefined;
|
|
16384
16472
|
userId?: number | undefined;
|
|
16385
16473
|
} | undefined;
|
|
@@ -16407,6 +16495,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16407
16495
|
branch: string;
|
|
16408
16496
|
credentialId?: string | undefined;
|
|
16409
16497
|
relativePath?: string | null | undefined;
|
|
16498
|
+
commitAuthorName?: string | null | undefined;
|
|
16499
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16410
16500
|
connectionId?: string | null | undefined;
|
|
16411
16501
|
userId?: number | null | undefined;
|
|
16412
16502
|
} | undefined;
|
|
@@ -16418,6 +16508,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16418
16508
|
url?: string | null | undefined;
|
|
16419
16509
|
credentialId?: string | undefined;
|
|
16420
16510
|
relativePath?: string | null | undefined;
|
|
16511
|
+
commitAuthorName?: string | null | undefined;
|
|
16512
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16421
16513
|
connectionId?: string | null | undefined;
|
|
16422
16514
|
userId?: number | null | undefined;
|
|
16423
16515
|
} | undefined;
|
|
@@ -16427,6 +16519,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16427
16519
|
url?: string | null | undefined;
|
|
16428
16520
|
credentialId?: string | undefined;
|
|
16429
16521
|
relativePath?: string | null | undefined;
|
|
16522
|
+
commitAuthorName?: string | null | undefined;
|
|
16523
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16430
16524
|
connectionId?: string | null | undefined;
|
|
16431
16525
|
userId?: number | null | undefined;
|
|
16432
16526
|
} | undefined;
|
|
@@ -16437,6 +16531,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16437
16531
|
repoSlug: string;
|
|
16438
16532
|
credentialId?: string | undefined;
|
|
16439
16533
|
relativePath?: string | null | undefined;
|
|
16534
|
+
commitAuthorName?: string | null | undefined;
|
|
16535
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16440
16536
|
connectionId?: string | null | undefined;
|
|
16441
16537
|
userId?: number | null | undefined;
|
|
16442
16538
|
} | undefined;
|
|
@@ -16546,6 +16642,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16546
16642
|
branch: string;
|
|
16547
16643
|
credentialId?: string | undefined;
|
|
16548
16644
|
relativePath?: string | undefined;
|
|
16645
|
+
commitAuthorName?: string | undefined;
|
|
16646
|
+
commitAuthorEmail?: string | undefined;
|
|
16549
16647
|
connectionId?: string | undefined;
|
|
16550
16648
|
userId?: number | undefined;
|
|
16551
16649
|
} | undefined;
|
|
@@ -16557,6 +16655,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16557
16655
|
url?: string | undefined;
|
|
16558
16656
|
credentialId?: string | undefined;
|
|
16559
16657
|
relativePath?: string | undefined;
|
|
16658
|
+
commitAuthorName?: string | undefined;
|
|
16659
|
+
commitAuthorEmail?: string | undefined;
|
|
16560
16660
|
connectionId?: string | undefined;
|
|
16561
16661
|
userId?: number | undefined;
|
|
16562
16662
|
} | undefined;
|
|
@@ -16566,6 +16666,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16566
16666
|
url?: string | undefined;
|
|
16567
16667
|
credentialId?: string | undefined;
|
|
16568
16668
|
relativePath?: string | undefined;
|
|
16669
|
+
commitAuthorName?: string | undefined;
|
|
16670
|
+
commitAuthorEmail?: string | undefined;
|
|
16569
16671
|
connectionId?: string | undefined;
|
|
16570
16672
|
userId?: number | undefined;
|
|
16571
16673
|
} | undefined;
|
|
@@ -16576,6 +16678,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16576
16678
|
repoSlug: string;
|
|
16577
16679
|
credentialId?: string | undefined;
|
|
16578
16680
|
relativePath?: string | undefined;
|
|
16681
|
+
commitAuthorName?: string | undefined;
|
|
16682
|
+
commitAuthorEmail?: string | undefined;
|
|
16579
16683
|
connectionId?: string | undefined;
|
|
16580
16684
|
userId?: number | undefined;
|
|
16581
16685
|
} | undefined;
|
|
@@ -16675,6 +16779,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16675
16779
|
branch: string;
|
|
16676
16780
|
credentialId?: string | undefined;
|
|
16677
16781
|
relativePath?: string | null | undefined;
|
|
16782
|
+
commitAuthorName?: string | null | undefined;
|
|
16783
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16678
16784
|
connectionId?: string | null | undefined;
|
|
16679
16785
|
userId?: number | null | undefined;
|
|
16680
16786
|
} | undefined;
|
|
@@ -16686,6 +16792,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16686
16792
|
url?: string | null | undefined;
|
|
16687
16793
|
credentialId?: string | undefined;
|
|
16688
16794
|
relativePath?: string | null | undefined;
|
|
16795
|
+
commitAuthorName?: string | null | undefined;
|
|
16796
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16689
16797
|
connectionId?: string | null | undefined;
|
|
16690
16798
|
userId?: number | null | undefined;
|
|
16691
16799
|
} | undefined;
|
|
@@ -16695,6 +16803,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16695
16803
|
url?: string | null | undefined;
|
|
16696
16804
|
credentialId?: string | undefined;
|
|
16697
16805
|
relativePath?: string | null | undefined;
|
|
16806
|
+
commitAuthorName?: string | null | undefined;
|
|
16807
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16698
16808
|
connectionId?: string | null | undefined;
|
|
16699
16809
|
userId?: number | null | undefined;
|
|
16700
16810
|
} | undefined;
|
|
@@ -16705,6 +16815,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16705
16815
|
repoSlug: string;
|
|
16706
16816
|
credentialId?: string | undefined;
|
|
16707
16817
|
relativePath?: string | null | undefined;
|
|
16818
|
+
commitAuthorName?: string | null | undefined;
|
|
16819
|
+
commitAuthorEmail?: string | null | undefined;
|
|
16708
16820
|
connectionId?: string | null | undefined;
|
|
16709
16821
|
userId?: number | null | undefined;
|
|
16710
16822
|
} | undefined;
|
|
@@ -17634,6 +17746,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
17634
17746
|
branch: string;
|
|
17635
17747
|
credentialId?: string | undefined;
|
|
17636
17748
|
relativePath?: string | undefined;
|
|
17749
|
+
commitAuthorName?: string | undefined;
|
|
17750
|
+
commitAuthorEmail?: string | undefined;
|
|
17637
17751
|
connectionId?: string | undefined;
|
|
17638
17752
|
userId?: number | undefined;
|
|
17639
17753
|
} | undefined;
|
|
@@ -17645,6 +17759,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
17645
17759
|
url?: string | undefined;
|
|
17646
17760
|
credentialId?: string | undefined;
|
|
17647
17761
|
relativePath?: string | undefined;
|
|
17762
|
+
commitAuthorName?: string | undefined;
|
|
17763
|
+
commitAuthorEmail?: string | undefined;
|
|
17648
17764
|
connectionId?: string | undefined;
|
|
17649
17765
|
userId?: number | undefined;
|
|
17650
17766
|
} | undefined;
|
|
@@ -17654,6 +17770,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
17654
17770
|
url?: string | undefined;
|
|
17655
17771
|
credentialId?: string | undefined;
|
|
17656
17772
|
relativePath?: string | undefined;
|
|
17773
|
+
commitAuthorName?: string | undefined;
|
|
17774
|
+
commitAuthorEmail?: string | undefined;
|
|
17657
17775
|
connectionId?: string | undefined;
|
|
17658
17776
|
userId?: number | undefined;
|
|
17659
17777
|
} | undefined;
|
|
@@ -17664,6 +17782,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
17664
17782
|
repoSlug: string;
|
|
17665
17783
|
credentialId?: string | undefined;
|
|
17666
17784
|
relativePath?: string | undefined;
|
|
17785
|
+
commitAuthorName?: string | undefined;
|
|
17786
|
+
commitAuthorEmail?: string | undefined;
|
|
17667
17787
|
connectionId?: string | undefined;
|
|
17668
17788
|
userId?: number | undefined;
|
|
17669
17789
|
} | undefined;
|
|
@@ -18435,6 +18555,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
18435
18555
|
branch: string;
|
|
18436
18556
|
credentialId?: string | undefined;
|
|
18437
18557
|
relativePath?: string | null | undefined;
|
|
18558
|
+
commitAuthorName?: string | null | undefined;
|
|
18559
|
+
commitAuthorEmail?: string | null | undefined;
|
|
18438
18560
|
connectionId?: string | null | undefined;
|
|
18439
18561
|
userId?: number | null | undefined;
|
|
18440
18562
|
} | undefined;
|
|
@@ -18446,6 +18568,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
18446
18568
|
url?: string | null | undefined;
|
|
18447
18569
|
credentialId?: string | undefined;
|
|
18448
18570
|
relativePath?: string | null | undefined;
|
|
18571
|
+
commitAuthorName?: string | null | undefined;
|
|
18572
|
+
commitAuthorEmail?: string | null | undefined;
|
|
18449
18573
|
connectionId?: string | null | undefined;
|
|
18450
18574
|
userId?: number | null | undefined;
|
|
18451
18575
|
} | undefined;
|
|
@@ -18455,6 +18579,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
18455
18579
|
url?: string | null | undefined;
|
|
18456
18580
|
credentialId?: string | undefined;
|
|
18457
18581
|
relativePath?: string | null | undefined;
|
|
18582
|
+
commitAuthorName?: string | null | undefined;
|
|
18583
|
+
commitAuthorEmail?: string | null | undefined;
|
|
18458
18584
|
connectionId?: string | null | undefined;
|
|
18459
18585
|
userId?: number | null | undefined;
|
|
18460
18586
|
} | undefined;
|
|
@@ -18465,6 +18591,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
18465
18591
|
repoSlug: string;
|
|
18466
18592
|
credentialId?: string | undefined;
|
|
18467
18593
|
relativePath?: string | null | undefined;
|
|
18594
|
+
commitAuthorName?: string | null | undefined;
|
|
18595
|
+
commitAuthorEmail?: string | null | undefined;
|
|
18468
18596
|
connectionId?: string | null | undefined;
|
|
18469
18597
|
userId?: number | null | undefined;
|
|
18470
18598
|
} | undefined;
|
|
@@ -19238,6 +19366,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19238
19366
|
branch: string;
|
|
19239
19367
|
credentialId?: string | undefined;
|
|
19240
19368
|
relativePath?: string | undefined;
|
|
19369
|
+
commitAuthorName?: string | undefined;
|
|
19370
|
+
commitAuthorEmail?: string | undefined;
|
|
19241
19371
|
connectionId?: string | undefined;
|
|
19242
19372
|
userId?: number | undefined;
|
|
19243
19373
|
} | undefined;
|
|
@@ -19249,6 +19379,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19249
19379
|
url?: string | undefined;
|
|
19250
19380
|
credentialId?: string | undefined;
|
|
19251
19381
|
relativePath?: string | undefined;
|
|
19382
|
+
commitAuthorName?: string | undefined;
|
|
19383
|
+
commitAuthorEmail?: string | undefined;
|
|
19252
19384
|
connectionId?: string | undefined;
|
|
19253
19385
|
userId?: number | undefined;
|
|
19254
19386
|
} | undefined;
|
|
@@ -19258,6 +19390,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19258
19390
|
url?: string | undefined;
|
|
19259
19391
|
credentialId?: string | undefined;
|
|
19260
19392
|
relativePath?: string | undefined;
|
|
19393
|
+
commitAuthorName?: string | undefined;
|
|
19394
|
+
commitAuthorEmail?: string | undefined;
|
|
19261
19395
|
connectionId?: string | undefined;
|
|
19262
19396
|
userId?: number | undefined;
|
|
19263
19397
|
} | undefined;
|
|
@@ -19268,6 +19402,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19268
19402
|
repoSlug: string;
|
|
19269
19403
|
credentialId?: string | undefined;
|
|
19270
19404
|
relativePath?: string | undefined;
|
|
19405
|
+
commitAuthorName?: string | undefined;
|
|
19406
|
+
commitAuthorEmail?: string | undefined;
|
|
19271
19407
|
connectionId?: string | undefined;
|
|
19272
19408
|
userId?: number | undefined;
|
|
19273
19409
|
} | undefined;
|
|
@@ -20111,6 +20247,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20111
20247
|
branch: string;
|
|
20112
20248
|
credentialId?: string | undefined;
|
|
20113
20249
|
relativePath?: string | null | undefined;
|
|
20250
|
+
commitAuthorName?: string | null | undefined;
|
|
20251
|
+
commitAuthorEmail?: string | null | undefined;
|
|
20114
20252
|
connectionId?: string | null | undefined;
|
|
20115
20253
|
userId?: number | null | undefined;
|
|
20116
20254
|
} | undefined;
|
|
@@ -20122,6 +20260,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20122
20260
|
url?: string | null | undefined;
|
|
20123
20261
|
credentialId?: string | undefined;
|
|
20124
20262
|
relativePath?: string | null | undefined;
|
|
20263
|
+
commitAuthorName?: string | null | undefined;
|
|
20264
|
+
commitAuthorEmail?: string | null | undefined;
|
|
20125
20265
|
connectionId?: string | null | undefined;
|
|
20126
20266
|
userId?: number | null | undefined;
|
|
20127
20267
|
} | undefined;
|
|
@@ -20131,6 +20271,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20131
20271
|
url?: string | null | undefined;
|
|
20132
20272
|
credentialId?: string | undefined;
|
|
20133
20273
|
relativePath?: string | null | undefined;
|
|
20274
|
+
commitAuthorName?: string | null | undefined;
|
|
20275
|
+
commitAuthorEmail?: string | null | undefined;
|
|
20134
20276
|
connectionId?: string | null | undefined;
|
|
20135
20277
|
userId?: number | null | undefined;
|
|
20136
20278
|
} | undefined;
|
|
@@ -20141,6 +20283,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20141
20283
|
repoSlug: string;
|
|
20142
20284
|
credentialId?: string | undefined;
|
|
20143
20285
|
relativePath?: string | null | undefined;
|
|
20286
|
+
commitAuthorName?: string | null | undefined;
|
|
20287
|
+
commitAuthorEmail?: string | null | undefined;
|
|
20144
20288
|
connectionId?: string | null | undefined;
|
|
20145
20289
|
userId?: number | null | undefined;
|
|
20146
20290
|
} | undefined;
|
|
@@ -26136,6 +26280,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26136
26280
|
url: z.ZodString;
|
|
26137
26281
|
branch: z.ZodString;
|
|
26138
26282
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26283
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26284
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26139
26285
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26140
26286
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
26141
26287
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26143,6 +26289,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26143
26289
|
branch: string;
|
|
26144
26290
|
credentialId?: string | undefined;
|
|
26145
26291
|
relativePath?: string | undefined;
|
|
26292
|
+
commitAuthorName?: string | undefined;
|
|
26293
|
+
commitAuthorEmail?: string | undefined;
|
|
26146
26294
|
connectionId?: string | undefined;
|
|
26147
26295
|
userId?: number | undefined;
|
|
26148
26296
|
}, {
|
|
@@ -26150,6 +26298,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26150
26298
|
branch: string;
|
|
26151
26299
|
credentialId?: string | undefined;
|
|
26152
26300
|
relativePath?: string | null | undefined;
|
|
26301
|
+
commitAuthorName?: string | null | undefined;
|
|
26302
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26153
26303
|
connectionId?: string | null | undefined;
|
|
26154
26304
|
userId?: number | null | undefined;
|
|
26155
26305
|
}>>;
|
|
@@ -26158,6 +26308,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26158
26308
|
organizationId: z.ZodString;
|
|
26159
26309
|
projectId: z.ZodString;
|
|
26160
26310
|
repositoryId: z.ZodString;
|
|
26311
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26312
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26161
26313
|
branch: z.ZodString;
|
|
26162
26314
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26163
26315
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -26171,6 +26323,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26171
26323
|
url?: string | undefined;
|
|
26172
26324
|
credentialId?: string | undefined;
|
|
26173
26325
|
relativePath?: string | undefined;
|
|
26326
|
+
commitAuthorName?: string | undefined;
|
|
26327
|
+
commitAuthorEmail?: string | undefined;
|
|
26174
26328
|
connectionId?: string | undefined;
|
|
26175
26329
|
userId?: number | undefined;
|
|
26176
26330
|
}, {
|
|
@@ -26181,12 +26335,16 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26181
26335
|
url?: string | null | undefined;
|
|
26182
26336
|
credentialId?: string | undefined;
|
|
26183
26337
|
relativePath?: string | null | undefined;
|
|
26338
|
+
commitAuthorName?: string | null | undefined;
|
|
26339
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26184
26340
|
connectionId?: string | null | undefined;
|
|
26185
26341
|
userId?: number | null | undefined;
|
|
26186
26342
|
}>>;
|
|
26187
26343
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
26188
26344
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
26189
26345
|
projectId: z.ZodString;
|
|
26346
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26347
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26190
26348
|
branch: z.ZodString;
|
|
26191
26349
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26192
26350
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -26198,6 +26356,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26198
26356
|
url?: string | undefined;
|
|
26199
26357
|
credentialId?: string | undefined;
|
|
26200
26358
|
relativePath?: string | undefined;
|
|
26359
|
+
commitAuthorName?: string | undefined;
|
|
26360
|
+
commitAuthorEmail?: string | undefined;
|
|
26201
26361
|
connectionId?: string | undefined;
|
|
26202
26362
|
userId?: number | undefined;
|
|
26203
26363
|
}, {
|
|
@@ -26206,6 +26366,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26206
26366
|
url?: string | null | undefined;
|
|
26207
26367
|
credentialId?: string | undefined;
|
|
26208
26368
|
relativePath?: string | null | undefined;
|
|
26369
|
+
commitAuthorName?: string | null | undefined;
|
|
26370
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26209
26371
|
connectionId?: string | null | undefined;
|
|
26210
26372
|
userId?: number | null | undefined;
|
|
26211
26373
|
}>>;
|
|
@@ -26214,6 +26376,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26214
26376
|
workspaceSlug: z.ZodString;
|
|
26215
26377
|
projectKey: z.ZodString;
|
|
26216
26378
|
repoSlug: z.ZodString;
|
|
26379
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26380
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26217
26381
|
branch: z.ZodString;
|
|
26218
26382
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
26219
26383
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -26225,6 +26389,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26225
26389
|
repoSlug: string;
|
|
26226
26390
|
credentialId?: string | undefined;
|
|
26227
26391
|
relativePath?: string | undefined;
|
|
26392
|
+
commitAuthorName?: string | undefined;
|
|
26393
|
+
commitAuthorEmail?: string | undefined;
|
|
26228
26394
|
connectionId?: string | undefined;
|
|
26229
26395
|
userId?: number | undefined;
|
|
26230
26396
|
}, {
|
|
@@ -26234,6 +26400,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26234
26400
|
repoSlug: string;
|
|
26235
26401
|
credentialId?: string | undefined;
|
|
26236
26402
|
relativePath?: string | null | undefined;
|
|
26403
|
+
commitAuthorName?: string | null | undefined;
|
|
26404
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26237
26405
|
connectionId?: string | null | undefined;
|
|
26238
26406
|
userId?: number | null | undefined;
|
|
26239
26407
|
}>>;
|
|
@@ -26270,6 +26438,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26270
26438
|
branch: string;
|
|
26271
26439
|
credentialId?: string | undefined;
|
|
26272
26440
|
relativePath?: string | undefined;
|
|
26441
|
+
commitAuthorName?: string | undefined;
|
|
26442
|
+
commitAuthorEmail?: string | undefined;
|
|
26273
26443
|
connectionId?: string | undefined;
|
|
26274
26444
|
userId?: number | undefined;
|
|
26275
26445
|
} | undefined;
|
|
@@ -26281,6 +26451,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26281
26451
|
url?: string | undefined;
|
|
26282
26452
|
credentialId?: string | undefined;
|
|
26283
26453
|
relativePath?: string | undefined;
|
|
26454
|
+
commitAuthorName?: string | undefined;
|
|
26455
|
+
commitAuthorEmail?: string | undefined;
|
|
26284
26456
|
connectionId?: string | undefined;
|
|
26285
26457
|
userId?: number | undefined;
|
|
26286
26458
|
} | undefined;
|
|
@@ -26290,6 +26462,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26290
26462
|
url?: string | undefined;
|
|
26291
26463
|
credentialId?: string | undefined;
|
|
26292
26464
|
relativePath?: string | undefined;
|
|
26465
|
+
commitAuthorName?: string | undefined;
|
|
26466
|
+
commitAuthorEmail?: string | undefined;
|
|
26293
26467
|
connectionId?: string | undefined;
|
|
26294
26468
|
userId?: number | undefined;
|
|
26295
26469
|
} | undefined;
|
|
@@ -26300,6 +26474,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26300
26474
|
repoSlug: string;
|
|
26301
26475
|
credentialId?: string | undefined;
|
|
26302
26476
|
relativePath?: string | undefined;
|
|
26477
|
+
commitAuthorName?: string | undefined;
|
|
26478
|
+
commitAuthorEmail?: string | undefined;
|
|
26303
26479
|
connectionId?: string | undefined;
|
|
26304
26480
|
userId?: number | undefined;
|
|
26305
26481
|
} | undefined;
|
|
@@ -26327,6 +26503,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26327
26503
|
branch: string;
|
|
26328
26504
|
credentialId?: string | undefined;
|
|
26329
26505
|
relativePath?: string | null | undefined;
|
|
26506
|
+
commitAuthorName?: string | null | undefined;
|
|
26507
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26330
26508
|
connectionId?: string | null | undefined;
|
|
26331
26509
|
userId?: number | null | undefined;
|
|
26332
26510
|
} | undefined;
|
|
@@ -26338,6 +26516,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26338
26516
|
url?: string | null | undefined;
|
|
26339
26517
|
credentialId?: string | undefined;
|
|
26340
26518
|
relativePath?: string | null | undefined;
|
|
26519
|
+
commitAuthorName?: string | null | undefined;
|
|
26520
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26341
26521
|
connectionId?: string | null | undefined;
|
|
26342
26522
|
userId?: number | null | undefined;
|
|
26343
26523
|
} | undefined;
|
|
@@ -26347,6 +26527,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26347
26527
|
url?: string | null | undefined;
|
|
26348
26528
|
credentialId?: string | undefined;
|
|
26349
26529
|
relativePath?: string | null | undefined;
|
|
26530
|
+
commitAuthorName?: string | null | undefined;
|
|
26531
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26350
26532
|
connectionId?: string | null | undefined;
|
|
26351
26533
|
userId?: number | null | undefined;
|
|
26352
26534
|
} | undefined;
|
|
@@ -26357,6 +26539,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26357
26539
|
repoSlug: string;
|
|
26358
26540
|
credentialId?: string | undefined;
|
|
26359
26541
|
relativePath?: string | null | undefined;
|
|
26542
|
+
commitAuthorName?: string | null | undefined;
|
|
26543
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26360
26544
|
connectionId?: string | null | undefined;
|
|
26361
26545
|
userId?: number | null | undefined;
|
|
26362
26546
|
} | undefined;
|
|
@@ -26466,6 +26650,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26466
26650
|
branch: string;
|
|
26467
26651
|
credentialId?: string | undefined;
|
|
26468
26652
|
relativePath?: string | undefined;
|
|
26653
|
+
commitAuthorName?: string | undefined;
|
|
26654
|
+
commitAuthorEmail?: string | undefined;
|
|
26469
26655
|
connectionId?: string | undefined;
|
|
26470
26656
|
userId?: number | undefined;
|
|
26471
26657
|
} | undefined;
|
|
@@ -26477,6 +26663,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26477
26663
|
url?: string | undefined;
|
|
26478
26664
|
credentialId?: string | undefined;
|
|
26479
26665
|
relativePath?: string | undefined;
|
|
26666
|
+
commitAuthorName?: string | undefined;
|
|
26667
|
+
commitAuthorEmail?: string | undefined;
|
|
26480
26668
|
connectionId?: string | undefined;
|
|
26481
26669
|
userId?: number | undefined;
|
|
26482
26670
|
} | undefined;
|
|
@@ -26486,6 +26674,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26486
26674
|
url?: string | undefined;
|
|
26487
26675
|
credentialId?: string | undefined;
|
|
26488
26676
|
relativePath?: string | undefined;
|
|
26677
|
+
commitAuthorName?: string | undefined;
|
|
26678
|
+
commitAuthorEmail?: string | undefined;
|
|
26489
26679
|
connectionId?: string | undefined;
|
|
26490
26680
|
userId?: number | undefined;
|
|
26491
26681
|
} | undefined;
|
|
@@ -26496,6 +26686,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26496
26686
|
repoSlug: string;
|
|
26497
26687
|
credentialId?: string | undefined;
|
|
26498
26688
|
relativePath?: string | undefined;
|
|
26689
|
+
commitAuthorName?: string | undefined;
|
|
26690
|
+
commitAuthorEmail?: string | undefined;
|
|
26499
26691
|
connectionId?: string | undefined;
|
|
26500
26692
|
userId?: number | undefined;
|
|
26501
26693
|
} | undefined;
|
|
@@ -26595,6 +26787,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26595
26787
|
branch: string;
|
|
26596
26788
|
credentialId?: string | undefined;
|
|
26597
26789
|
relativePath?: string | null | undefined;
|
|
26790
|
+
commitAuthorName?: string | null | undefined;
|
|
26791
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26598
26792
|
connectionId?: string | null | undefined;
|
|
26599
26793
|
userId?: number | null | undefined;
|
|
26600
26794
|
} | undefined;
|
|
@@ -26606,6 +26800,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26606
26800
|
url?: string | null | undefined;
|
|
26607
26801
|
credentialId?: string | undefined;
|
|
26608
26802
|
relativePath?: string | null | undefined;
|
|
26803
|
+
commitAuthorName?: string | null | undefined;
|
|
26804
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26609
26805
|
connectionId?: string | null | undefined;
|
|
26610
26806
|
userId?: number | null | undefined;
|
|
26611
26807
|
} | undefined;
|
|
@@ -26615,6 +26811,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26615
26811
|
url?: string | null | undefined;
|
|
26616
26812
|
credentialId?: string | undefined;
|
|
26617
26813
|
relativePath?: string | null | undefined;
|
|
26814
|
+
commitAuthorName?: string | null | undefined;
|
|
26815
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26618
26816
|
connectionId?: string | null | undefined;
|
|
26619
26817
|
userId?: number | null | undefined;
|
|
26620
26818
|
} | undefined;
|
|
@@ -26625,6 +26823,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26625
26823
|
repoSlug: string;
|
|
26626
26824
|
credentialId?: string | undefined;
|
|
26627
26825
|
relativePath?: string | null | undefined;
|
|
26826
|
+
commitAuthorName?: string | null | undefined;
|
|
26827
|
+
commitAuthorEmail?: string | null | undefined;
|
|
26628
26828
|
connectionId?: string | null | undefined;
|
|
26629
26829
|
userId?: number | null | undefined;
|
|
26630
26830
|
} | undefined;
|
|
@@ -27554,6 +27754,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27554
27754
|
branch: string;
|
|
27555
27755
|
credentialId?: string | undefined;
|
|
27556
27756
|
relativePath?: string | undefined;
|
|
27757
|
+
commitAuthorName?: string | undefined;
|
|
27758
|
+
commitAuthorEmail?: string | undefined;
|
|
27557
27759
|
connectionId?: string | undefined;
|
|
27558
27760
|
userId?: number | undefined;
|
|
27559
27761
|
} | undefined;
|
|
@@ -27565,6 +27767,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27565
27767
|
url?: string | undefined;
|
|
27566
27768
|
credentialId?: string | undefined;
|
|
27567
27769
|
relativePath?: string | undefined;
|
|
27770
|
+
commitAuthorName?: string | undefined;
|
|
27771
|
+
commitAuthorEmail?: string | undefined;
|
|
27568
27772
|
connectionId?: string | undefined;
|
|
27569
27773
|
userId?: number | undefined;
|
|
27570
27774
|
} | undefined;
|
|
@@ -27574,6 +27778,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27574
27778
|
url?: string | undefined;
|
|
27575
27779
|
credentialId?: string | undefined;
|
|
27576
27780
|
relativePath?: string | undefined;
|
|
27781
|
+
commitAuthorName?: string | undefined;
|
|
27782
|
+
commitAuthorEmail?: string | undefined;
|
|
27577
27783
|
connectionId?: string | undefined;
|
|
27578
27784
|
userId?: number | undefined;
|
|
27579
27785
|
} | undefined;
|
|
@@ -27584,6 +27790,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27584
27790
|
repoSlug: string;
|
|
27585
27791
|
credentialId?: string | undefined;
|
|
27586
27792
|
relativePath?: string | undefined;
|
|
27793
|
+
commitAuthorName?: string | undefined;
|
|
27794
|
+
commitAuthorEmail?: string | undefined;
|
|
27587
27795
|
connectionId?: string | undefined;
|
|
27588
27796
|
userId?: number | undefined;
|
|
27589
27797
|
} | undefined;
|
|
@@ -28355,6 +28563,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28355
28563
|
branch: string;
|
|
28356
28564
|
credentialId?: string | undefined;
|
|
28357
28565
|
relativePath?: string | null | undefined;
|
|
28566
|
+
commitAuthorName?: string | null | undefined;
|
|
28567
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28358
28568
|
connectionId?: string | null | undefined;
|
|
28359
28569
|
userId?: number | null | undefined;
|
|
28360
28570
|
} | undefined;
|
|
@@ -28366,6 +28576,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28366
28576
|
url?: string | null | undefined;
|
|
28367
28577
|
credentialId?: string | undefined;
|
|
28368
28578
|
relativePath?: string | null | undefined;
|
|
28579
|
+
commitAuthorName?: string | null | undefined;
|
|
28580
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28369
28581
|
connectionId?: string | null | undefined;
|
|
28370
28582
|
userId?: number | null | undefined;
|
|
28371
28583
|
} | undefined;
|
|
@@ -28375,6 +28587,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28375
28587
|
url?: string | null | undefined;
|
|
28376
28588
|
credentialId?: string | undefined;
|
|
28377
28589
|
relativePath?: string | null | undefined;
|
|
28590
|
+
commitAuthorName?: string | null | undefined;
|
|
28591
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28378
28592
|
connectionId?: string | null | undefined;
|
|
28379
28593
|
userId?: number | null | undefined;
|
|
28380
28594
|
} | undefined;
|
|
@@ -28385,6 +28599,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28385
28599
|
repoSlug: string;
|
|
28386
28600
|
credentialId?: string | undefined;
|
|
28387
28601
|
relativePath?: string | null | undefined;
|
|
28602
|
+
commitAuthorName?: string | null | undefined;
|
|
28603
|
+
commitAuthorEmail?: string | null | undefined;
|
|
28388
28604
|
connectionId?: string | null | undefined;
|
|
28389
28605
|
userId?: number | null | undefined;
|
|
28390
28606
|
} | undefined;
|
|
@@ -29656,12 +29872,12 @@ declare const AssetRenderConfiguration: z.ZodObject<{
|
|
|
29656
29872
|
scale: z.ZodNumber;
|
|
29657
29873
|
format: z.ZodEnum<["Svg", "Png", "Pdf"]>;
|
|
29658
29874
|
}, "strip", z.ZodTypeAny, {
|
|
29659
|
-
format: "
|
|
29875
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29660
29876
|
scale: number;
|
|
29661
29877
|
prefix?: string | undefined;
|
|
29662
29878
|
suffix?: string | undefined;
|
|
29663
29879
|
}, {
|
|
29664
|
-
format: "
|
|
29880
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29665
29881
|
scale: number;
|
|
29666
29882
|
prefix?: string | undefined;
|
|
29667
29883
|
suffix?: string | undefined;
|
|
@@ -29678,19 +29894,19 @@ declare const RenderedAssetFile: z.ZodObject<{
|
|
|
29678
29894
|
scale: z.ZodNumber;
|
|
29679
29895
|
format: z.ZodEnum<["Svg", "Png", "Pdf"]>;
|
|
29680
29896
|
}, "strip", z.ZodTypeAny, {
|
|
29681
|
-
format: "
|
|
29897
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29682
29898
|
scale: number;
|
|
29683
29899
|
prefix?: string | undefined;
|
|
29684
29900
|
suffix?: string | undefined;
|
|
29685
29901
|
}, {
|
|
29686
|
-
format: "
|
|
29902
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29687
29903
|
scale: number;
|
|
29688
29904
|
prefix?: string | undefined;
|
|
29689
29905
|
suffix?: string | undefined;
|
|
29690
29906
|
}>;
|
|
29691
29907
|
}, "strip", z.ZodTypeAny, {
|
|
29692
29908
|
settings: {
|
|
29693
|
-
format: "
|
|
29909
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29694
29910
|
scale: number;
|
|
29695
29911
|
prefix?: string | undefined;
|
|
29696
29912
|
suffix?: string | undefined;
|
|
@@ -29701,7 +29917,7 @@ declare const RenderedAssetFile: z.ZodObject<{
|
|
|
29701
29917
|
renderedImageUrl: string;
|
|
29702
29918
|
}, {
|
|
29703
29919
|
settings: {
|
|
29704
|
-
format: "
|
|
29920
|
+
format: "Png" | "Svg" | "Pdf";
|
|
29705
29921
|
scale: number;
|
|
29706
29922
|
prefix?: string | undefined;
|
|
29707
29923
|
suffix?: string | undefined;
|
|
@@ -45132,11 +45348,14 @@ declare const FigmaFileStructureElementData: z.ZodObject<{
|
|
|
45132
45348
|
type FigmaFileStructureElementData = z.infer<typeof FigmaFileStructureElementData>;
|
|
45133
45349
|
declare function figmaFileStructureToMap(root: FigmaFileStructureNode): Map<string, FigmaFileStructureNode>;
|
|
45134
45350
|
|
|
45351
|
+
declare const FigmaNodeRenderFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
45352
|
+
type FigmaNodeRenderFormat = z.infer<typeof FigmaNodeRenderFormat>;
|
|
45135
45353
|
declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
45136
45354
|
structureElementId: z.ZodString;
|
|
45137
45355
|
nodeId: z.ZodString;
|
|
45138
45356
|
fileId: z.ZodOptional<z.ZodString>;
|
|
45139
45357
|
valid: z.ZodBoolean;
|
|
45358
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
45140
45359
|
assetId: z.ZodOptional<z.ZodString>;
|
|
45141
45360
|
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
45142
45361
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
@@ -45145,6 +45364,7 @@ declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
|
45145
45364
|
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
45146
45365
|
}, "strip", z.ZodTypeAny, {
|
|
45147
45366
|
valid: boolean;
|
|
45367
|
+
format: "Png" | "Svg";
|
|
45148
45368
|
structureElementId: string;
|
|
45149
45369
|
nodeId: string;
|
|
45150
45370
|
assetId?: string | undefined;
|
|
@@ -45161,6 +45381,7 @@ declare const FigmaNodeReferenceData: z.ZodObject<{
|
|
|
45161
45381
|
assetId?: string | undefined;
|
|
45162
45382
|
assetScale?: number | undefined;
|
|
45163
45383
|
assetUrl?: string | undefined;
|
|
45384
|
+
format?: "Png" | "Svg" | undefined;
|
|
45164
45385
|
fileId?: string | undefined;
|
|
45165
45386
|
assetWidth?: number | undefined;
|
|
45166
45387
|
assetHeight?: number | undefined;
|
|
@@ -45173,6 +45394,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45173
45394
|
nodeId: z.ZodString;
|
|
45174
45395
|
fileId: z.ZodOptional<z.ZodString>;
|
|
45175
45396
|
valid: z.ZodBoolean;
|
|
45397
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
45176
45398
|
assetId: z.ZodOptional<z.ZodString>;
|
|
45177
45399
|
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
45178
45400
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
@@ -45181,6 +45403,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45181
45403
|
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
45182
45404
|
}, "strip", z.ZodTypeAny, {
|
|
45183
45405
|
valid: boolean;
|
|
45406
|
+
format: "Png" | "Svg";
|
|
45184
45407
|
structureElementId: string;
|
|
45185
45408
|
nodeId: string;
|
|
45186
45409
|
assetId?: string | undefined;
|
|
@@ -45197,6 +45420,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45197
45420
|
assetId?: string | undefined;
|
|
45198
45421
|
assetScale?: number | undefined;
|
|
45199
45422
|
assetUrl?: string | undefined;
|
|
45423
|
+
format?: "Png" | "Svg" | undefined;
|
|
45200
45424
|
fileId?: string | undefined;
|
|
45201
45425
|
assetWidth?: number | undefined;
|
|
45202
45426
|
assetHeight?: number | undefined;
|
|
@@ -45205,6 +45429,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45205
45429
|
}, "strip", z.ZodTypeAny, {
|
|
45206
45430
|
value: {
|
|
45207
45431
|
valid: boolean;
|
|
45432
|
+
format: "Png" | "Svg";
|
|
45208
45433
|
structureElementId: string;
|
|
45209
45434
|
nodeId: string;
|
|
45210
45435
|
assetId?: string | undefined;
|
|
@@ -45223,6 +45448,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
|
|
|
45223
45448
|
assetId?: string | undefined;
|
|
45224
45449
|
assetScale?: number | undefined;
|
|
45225
45450
|
assetUrl?: string | undefined;
|
|
45451
|
+
format?: "Png" | "Svg" | undefined;
|
|
45226
45452
|
fileId?: string | undefined;
|
|
45227
45453
|
assetWidth?: number | undefined;
|
|
45228
45454
|
assetHeight?: number | undefined;
|
|
@@ -54423,6 +54649,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54423
54649
|
nodeId: z.ZodString;
|
|
54424
54650
|
fileId: z.ZodOptional<z.ZodString>;
|
|
54425
54651
|
valid: z.ZodBoolean;
|
|
54652
|
+
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
54426
54653
|
assetId: z.ZodOptional<z.ZodString>;
|
|
54427
54654
|
assetScale: z.ZodOptional<z.ZodNumber>;
|
|
54428
54655
|
assetWidth: z.ZodOptional<z.ZodNumber>;
|
|
@@ -54431,6 +54658,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54431
54658
|
assetOriginKey: z.ZodOptional<z.ZodString>;
|
|
54432
54659
|
}, "strip", z.ZodTypeAny, {
|
|
54433
54660
|
valid: boolean;
|
|
54661
|
+
format: "Png" | "Svg";
|
|
54434
54662
|
structureElementId: string;
|
|
54435
54663
|
nodeId: string;
|
|
54436
54664
|
assetId?: string | undefined;
|
|
@@ -54447,6 +54675,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54447
54675
|
assetId?: string | undefined;
|
|
54448
54676
|
assetScale?: number | undefined;
|
|
54449
54677
|
assetUrl?: string | undefined;
|
|
54678
|
+
format?: "Png" | "Svg" | undefined;
|
|
54450
54679
|
fileId?: string | undefined;
|
|
54451
54680
|
assetWidth?: number | undefined;
|
|
54452
54681
|
assetHeight?: number | undefined;
|
|
@@ -54470,6 +54699,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54470
54699
|
designSystemVersionId: string;
|
|
54471
54700
|
data: {
|
|
54472
54701
|
valid: boolean;
|
|
54702
|
+
format: "Png" | "Svg";
|
|
54473
54703
|
structureElementId: string;
|
|
54474
54704
|
nodeId: string;
|
|
54475
54705
|
assetId?: string | undefined;
|
|
@@ -54501,6 +54731,7 @@ declare const FigmaNodeReference: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
54501
54731
|
assetId?: string | undefined;
|
|
54502
54732
|
assetScale?: number | undefined;
|
|
54503
54733
|
assetUrl?: string | undefined;
|
|
54734
|
+
format?: "Png" | "Svg" | undefined;
|
|
54504
54735
|
fileId?: string | undefined;
|
|
54505
54736
|
assetWidth?: number | undefined;
|
|
54506
54737
|
assetHeight?: number | undefined;
|
|
@@ -76885,7 +77116,7 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
76885
77116
|
} | undefined>;
|
|
76886
77117
|
parentComponentSetId: z.ZodOptional<z.ZodString>;
|
|
76887
77118
|
}, {
|
|
76888
|
-
|
|
77119
|
+
png: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
76889
77120
|
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
76890
77121
|
}, {
|
|
76891
77122
|
type: z.ZodLiteral<"FigmaRender">;
|
|
@@ -76915,11 +77146,47 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
76915
77146
|
scale: number;
|
|
76916
77147
|
fileVersionId?: string | undefined;
|
|
76917
77148
|
}>;
|
|
77149
|
+
svg: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
77150
|
+
scope: z.ZodEnum<["DocumentationFrame", "ComponentThumbnail", "DesignSystem", "Documentation"]>;
|
|
77151
|
+
}, {
|
|
77152
|
+
type: z.ZodLiteral<"FigmaRender">;
|
|
77153
|
+
fileId: z.ZodString;
|
|
77154
|
+
fileVersionId: z.ZodOptional<z.ZodString>;
|
|
77155
|
+
nodeId: z.ZodString;
|
|
77156
|
+
originKey: z.ZodString;
|
|
77157
|
+
}>, {
|
|
77158
|
+
format: z.ZodLiteral<"Svg">;
|
|
77159
|
+
}>, "strip", z.ZodTypeAny, {
|
|
77160
|
+
type: "FigmaRender";
|
|
77161
|
+
originKey: string;
|
|
77162
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77163
|
+
format: "Svg";
|
|
77164
|
+
nodeId: string;
|
|
77165
|
+
fileId: string;
|
|
77166
|
+
fileVersionId?: string | undefined;
|
|
77167
|
+
}, {
|
|
77168
|
+
type: "FigmaRender";
|
|
77169
|
+
originKey: string;
|
|
77170
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77171
|
+
format: "Svg";
|
|
77172
|
+
nodeId: string;
|
|
77173
|
+
fileId: string;
|
|
77174
|
+
fileVersionId?: string | undefined;
|
|
77175
|
+
}>;
|
|
76918
77176
|
}>, "strip", z.ZodTypeAny, {
|
|
76919
77177
|
id: string;
|
|
76920
77178
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
76921
77179
|
name: string;
|
|
76922
|
-
|
|
77180
|
+
svg: {
|
|
77181
|
+
type: "FigmaRender";
|
|
77182
|
+
originKey: string;
|
|
77183
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77184
|
+
format: "Svg";
|
|
77185
|
+
nodeId: string;
|
|
77186
|
+
fileId: string;
|
|
77187
|
+
fileVersionId?: string | undefined;
|
|
77188
|
+
};
|
|
77189
|
+
png: {
|
|
76923
77190
|
type: "FigmaRender";
|
|
76924
77191
|
originKey: string;
|
|
76925
77192
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -76938,7 +77205,16 @@ declare const FigmaFileStructureNodeImportModelBase: z.ZodObject<z.objectUtil.ex
|
|
|
76938
77205
|
id: string;
|
|
76939
77206
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
76940
77207
|
name: string;
|
|
76941
|
-
|
|
77208
|
+
svg: {
|
|
77209
|
+
type: "FigmaRender";
|
|
77210
|
+
originKey: string;
|
|
77211
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77212
|
+
format: "Svg";
|
|
77213
|
+
nodeId: string;
|
|
77214
|
+
fileId: string;
|
|
77215
|
+
fileVersionId?: string | undefined;
|
|
77216
|
+
};
|
|
77217
|
+
png: {
|
|
76942
77218
|
type: "FigmaRender";
|
|
76943
77219
|
originKey: string;
|
|
76944
77220
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -76990,7 +77266,7 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
76990
77266
|
sortOrder: z.ZodNumber;
|
|
76991
77267
|
}, {
|
|
76992
77268
|
data: z.ZodObject<{
|
|
76993
|
-
rootNode: ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77269
|
+
rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
76994
77270
|
assetsInFile: z.ZodObject<{
|
|
76995
77271
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
76996
77272
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
@@ -77014,7 +77290,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77014
77290
|
id: string;
|
|
77015
77291
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77016
77292
|
name: string;
|
|
77017
|
-
|
|
77293
|
+
svg: {
|
|
77294
|
+
type: "FigmaRender";
|
|
77295
|
+
originKey: string;
|
|
77296
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77297
|
+
format: "Svg";
|
|
77298
|
+
nodeId: string;
|
|
77299
|
+
fileId: string;
|
|
77300
|
+
fileVersionId?: string | undefined;
|
|
77301
|
+
};
|
|
77302
|
+
png: {
|
|
77018
77303
|
type: "FigmaRender";
|
|
77019
77304
|
originKey: string;
|
|
77020
77305
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77042,7 +77327,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77042
77327
|
id: string;
|
|
77043
77328
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77044
77329
|
name: string;
|
|
77045
|
-
|
|
77330
|
+
svg: {
|
|
77331
|
+
type: "FigmaRender";
|
|
77332
|
+
originKey: string;
|
|
77333
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77334
|
+
format: "Svg";
|
|
77335
|
+
nodeId: string;
|
|
77336
|
+
fileId: string;
|
|
77337
|
+
fileVersionId?: string | undefined;
|
|
77338
|
+
};
|
|
77339
|
+
png: {
|
|
77046
77340
|
type: "FigmaRender";
|
|
77047
77341
|
originKey: string;
|
|
77048
77342
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77084,7 +77378,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77084
77378
|
id: string;
|
|
77085
77379
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77086
77380
|
name: string;
|
|
77087
|
-
|
|
77381
|
+
svg: {
|
|
77382
|
+
type: "FigmaRender";
|
|
77383
|
+
originKey: string;
|
|
77384
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77385
|
+
format: "Svg";
|
|
77386
|
+
nodeId: string;
|
|
77387
|
+
fileId: string;
|
|
77388
|
+
fileVersionId?: string | undefined;
|
|
77389
|
+
};
|
|
77390
|
+
png: {
|
|
77088
77391
|
type: "FigmaRender";
|
|
77089
77392
|
originKey: string;
|
|
77090
77393
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77125,7 +77428,16 @@ declare const FigmaFileStructureImportModel: z.ZodObject<z.objectUtil.extendShap
|
|
|
77125
77428
|
id: string;
|
|
77126
77429
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77127
77430
|
name: string;
|
|
77128
|
-
|
|
77431
|
+
svg: {
|
|
77432
|
+
type: "FigmaRender";
|
|
77433
|
+
originKey: string;
|
|
77434
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77435
|
+
format: "Svg";
|
|
77436
|
+
nodeId: string;
|
|
77437
|
+
fileId: string;
|
|
77438
|
+
fileVersionId?: string | undefined;
|
|
77439
|
+
};
|
|
77440
|
+
png: {
|
|
77129
77441
|
type: "FigmaRender";
|
|
77130
77442
|
originKey: string;
|
|
77131
77443
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77188,7 +77500,7 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77188
77500
|
originMetadata: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
77189
77501
|
}>, {
|
|
77190
77502
|
data: z.ZodObject<{
|
|
77191
|
-
rootNode: ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77503
|
+
rootNode: z.ZodType<FigmaFileStructureNodeImportModel, ZodTypeDef, FigmaFileStructureNodeImportModelBaseInput>;
|
|
77192
77504
|
assetsInFile: z.ZodObject<{
|
|
77193
77505
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
77194
77506
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
@@ -77212,7 +77524,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77212
77524
|
id: string;
|
|
77213
77525
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77214
77526
|
name: string;
|
|
77215
|
-
|
|
77527
|
+
svg: {
|
|
77528
|
+
type: "FigmaRender";
|
|
77529
|
+
originKey: string;
|
|
77530
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77531
|
+
format: "Svg";
|
|
77532
|
+
nodeId: string;
|
|
77533
|
+
fileId: string;
|
|
77534
|
+
fileVersionId?: string | undefined;
|
|
77535
|
+
};
|
|
77536
|
+
png: {
|
|
77216
77537
|
type: "FigmaRender";
|
|
77217
77538
|
originKey: string;
|
|
77218
77539
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77240,7 +77561,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77240
77561
|
id: string;
|
|
77241
77562
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77242
77563
|
name: string;
|
|
77243
|
-
|
|
77564
|
+
svg: {
|
|
77565
|
+
type: "FigmaRender";
|
|
77566
|
+
originKey: string;
|
|
77567
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77568
|
+
format: "Svg";
|
|
77569
|
+
nodeId: string;
|
|
77570
|
+
fileId: string;
|
|
77571
|
+
fileVersionId?: string | undefined;
|
|
77572
|
+
};
|
|
77573
|
+
png: {
|
|
77244
77574
|
type: "FigmaRender";
|
|
77245
77575
|
originKey: string;
|
|
77246
77576
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77273,7 +77603,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77273
77603
|
id: string;
|
|
77274
77604
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77275
77605
|
name: string;
|
|
77276
|
-
|
|
77606
|
+
svg: {
|
|
77607
|
+
type: "FigmaRender";
|
|
77608
|
+
originKey: string;
|
|
77609
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77610
|
+
format: "Svg";
|
|
77611
|
+
nodeId: string;
|
|
77612
|
+
fileId: string;
|
|
77613
|
+
fileVersionId?: string | undefined;
|
|
77614
|
+
};
|
|
77615
|
+
png: {
|
|
77277
77616
|
type: "FigmaRender";
|
|
77278
77617
|
originKey: string;
|
|
77279
77618
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -77311,7 +77650,16 @@ declare const FigmaFileStructureImportModelInput: z.ZodObject<z.objectUtil.exten
|
|
|
77311
77650
|
id: string;
|
|
77312
77651
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
77313
77652
|
name: string;
|
|
77314
|
-
|
|
77653
|
+
svg: {
|
|
77654
|
+
type: "FigmaRender";
|
|
77655
|
+
originKey: string;
|
|
77656
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
77657
|
+
format: "Svg";
|
|
77658
|
+
nodeId: string;
|
|
77659
|
+
fileId: string;
|
|
77660
|
+
fileVersionId?: string | undefined;
|
|
77661
|
+
};
|
|
77662
|
+
png: {
|
|
77315
77663
|
type: "FigmaRender";
|
|
77316
77664
|
originKey: string;
|
|
77317
77665
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86085,7 +86433,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86085
86433
|
id: string;
|
|
86086
86434
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86087
86435
|
name: string;
|
|
86088
|
-
|
|
86436
|
+
svg: {
|
|
86437
|
+
type: "FigmaRender";
|
|
86438
|
+
originKey: string;
|
|
86439
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86440
|
+
format: "Svg";
|
|
86441
|
+
nodeId: string;
|
|
86442
|
+
fileId: string;
|
|
86443
|
+
fileVersionId?: string | undefined;
|
|
86444
|
+
};
|
|
86445
|
+
png: {
|
|
86089
86446
|
type: "FigmaRender";
|
|
86090
86447
|
originKey: string;
|
|
86091
86448
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86105,7 +86462,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86105
86462
|
id: string;
|
|
86106
86463
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86107
86464
|
name: string;
|
|
86108
|
-
|
|
86465
|
+
svg: {
|
|
86466
|
+
type: "FigmaRender";
|
|
86467
|
+
originKey: string;
|
|
86468
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86469
|
+
format: "Svg";
|
|
86470
|
+
nodeId: string;
|
|
86471
|
+
fileId: string;
|
|
86472
|
+
fileVersionId?: string | undefined;
|
|
86473
|
+
};
|
|
86474
|
+
png: {
|
|
86109
86475
|
type: "FigmaRender";
|
|
86110
86476
|
originKey: string;
|
|
86111
86477
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86145,7 +86511,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86145
86511
|
id: string;
|
|
86146
86512
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86147
86513
|
name: string;
|
|
86148
|
-
|
|
86514
|
+
svg: {
|
|
86515
|
+
type: "FigmaRender";
|
|
86516
|
+
originKey: string;
|
|
86517
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86518
|
+
format: "Svg";
|
|
86519
|
+
nodeId: string;
|
|
86520
|
+
fileId: string;
|
|
86521
|
+
fileVersionId?: string | undefined;
|
|
86522
|
+
};
|
|
86523
|
+
png: {
|
|
86149
86524
|
type: "FigmaRender";
|
|
86150
86525
|
originKey: string;
|
|
86151
86526
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86173,7 +86548,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86173
86548
|
id: string;
|
|
86174
86549
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86175
86550
|
name: string;
|
|
86176
|
-
|
|
86551
|
+
svg: {
|
|
86552
|
+
type: "FigmaRender";
|
|
86553
|
+
originKey: string;
|
|
86554
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86555
|
+
format: "Svg";
|
|
86556
|
+
nodeId: string;
|
|
86557
|
+
fileId: string;
|
|
86558
|
+
fileVersionId?: string | undefined;
|
|
86559
|
+
};
|
|
86560
|
+
png: {
|
|
86177
86561
|
type: "FigmaRender";
|
|
86178
86562
|
originKey: string;
|
|
86179
86563
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86193,7 +86577,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86193
86577
|
id: string;
|
|
86194
86578
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86195
86579
|
name: string;
|
|
86196
|
-
|
|
86580
|
+
svg: {
|
|
86581
|
+
type: "FigmaRender";
|
|
86582
|
+
originKey: string;
|
|
86583
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86584
|
+
format: "Svg";
|
|
86585
|
+
nodeId: string;
|
|
86586
|
+
fileId: string;
|
|
86587
|
+
fileVersionId?: string | undefined;
|
|
86588
|
+
};
|
|
86589
|
+
png: {
|
|
86197
86590
|
type: "FigmaRender";
|
|
86198
86591
|
originKey: string;
|
|
86199
86592
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86234,7 +86627,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86234
86627
|
id: string;
|
|
86235
86628
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86236
86629
|
name: string;
|
|
86237
|
-
|
|
86630
|
+
svg: {
|
|
86631
|
+
type: "FigmaRender";
|
|
86632
|
+
originKey: string;
|
|
86633
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86634
|
+
format: "Svg";
|
|
86635
|
+
nodeId: string;
|
|
86636
|
+
fileId: string;
|
|
86637
|
+
fileVersionId?: string | undefined;
|
|
86638
|
+
};
|
|
86639
|
+
png: {
|
|
86238
86640
|
type: "FigmaRender";
|
|
86239
86641
|
originKey: string;
|
|
86240
86642
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86275,7 +86677,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86275
86677
|
id: string;
|
|
86276
86678
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86277
86679
|
name: string;
|
|
86278
|
-
|
|
86680
|
+
svg: {
|
|
86681
|
+
type: "FigmaRender";
|
|
86682
|
+
originKey: string;
|
|
86683
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86684
|
+
format: "Svg";
|
|
86685
|
+
nodeId: string;
|
|
86686
|
+
fileId: string;
|
|
86687
|
+
fileVersionId?: string | undefined;
|
|
86688
|
+
};
|
|
86689
|
+
png: {
|
|
86279
86690
|
type: "FigmaRender";
|
|
86280
86691
|
originKey: string;
|
|
86281
86692
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -86295,7 +86706,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
86295
86706
|
id: string;
|
|
86296
86707
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
86297
86708
|
name: string;
|
|
86298
|
-
|
|
86709
|
+
svg: {
|
|
86710
|
+
type: "FigmaRender";
|
|
86711
|
+
originKey: string;
|
|
86712
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
86713
|
+
format: "Svg";
|
|
86714
|
+
nodeId: string;
|
|
86715
|
+
fileId: string;
|
|
86716
|
+
fileVersionId?: string | undefined;
|
|
86717
|
+
};
|
|
86718
|
+
png: {
|
|
86299
86719
|
type: "FigmaRender";
|
|
86300
86720
|
originKey: string;
|
|
86301
86721
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -87521,7 +87941,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87521
87941
|
id: string;
|
|
87522
87942
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
87523
87943
|
name: string;
|
|
87524
|
-
|
|
87944
|
+
svg: {
|
|
87945
|
+
type: "FigmaRender";
|
|
87946
|
+
originKey: string;
|
|
87947
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
87948
|
+
format: "Svg";
|
|
87949
|
+
nodeId: string;
|
|
87950
|
+
fileId: string;
|
|
87951
|
+
fileVersionId?: string | undefined;
|
|
87952
|
+
};
|
|
87953
|
+
png: {
|
|
87525
87954
|
type: "FigmaRender";
|
|
87526
87955
|
originKey: string;
|
|
87527
87956
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -87569,7 +87998,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87569
87998
|
id: string;
|
|
87570
87999
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
87571
88000
|
name: string;
|
|
87572
|
-
|
|
88001
|
+
svg: {
|
|
88002
|
+
type: "FigmaRender";
|
|
88003
|
+
originKey: string;
|
|
88004
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
88005
|
+
format: "Svg";
|
|
88006
|
+
nodeId: string;
|
|
88007
|
+
fileId: string;
|
|
88008
|
+
fileVersionId?: string | undefined;
|
|
88009
|
+
};
|
|
88010
|
+
png: {
|
|
87573
88011
|
type: "FigmaRender";
|
|
87574
88012
|
originKey: string;
|
|
87575
88013
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -87589,7 +88027,16 @@ declare const ImportModelCollection: z.ZodObject<{
|
|
|
87589
88027
|
id: string;
|
|
87590
88028
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
87591
88029
|
name: string;
|
|
87592
|
-
|
|
88030
|
+
svg: {
|
|
88031
|
+
type: "FigmaRender";
|
|
88032
|
+
originKey: string;
|
|
88033
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
88034
|
+
format: "Svg";
|
|
88035
|
+
nodeId: string;
|
|
88036
|
+
fileId: string;
|
|
88037
|
+
fileVersionId?: string | undefined;
|
|
88038
|
+
};
|
|
88039
|
+
png: {
|
|
87593
88040
|
type: "FigmaRender";
|
|
87594
88041
|
originKey: string;
|
|
87595
88042
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97645,7 +98092,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97645
98092
|
id: string;
|
|
97646
98093
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97647
98094
|
name: string;
|
|
97648
|
-
|
|
98095
|
+
svg: {
|
|
98096
|
+
type: "FigmaRender";
|
|
98097
|
+
originKey: string;
|
|
98098
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98099
|
+
format: "Svg";
|
|
98100
|
+
nodeId: string;
|
|
98101
|
+
fileId: string;
|
|
98102
|
+
fileVersionId?: string | undefined;
|
|
98103
|
+
};
|
|
98104
|
+
png: {
|
|
97649
98105
|
type: "FigmaRender";
|
|
97650
98106
|
originKey: string;
|
|
97651
98107
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97665,7 +98121,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97665
98121
|
id: string;
|
|
97666
98122
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97667
98123
|
name: string;
|
|
97668
|
-
|
|
98124
|
+
svg: {
|
|
98125
|
+
type: "FigmaRender";
|
|
98126
|
+
originKey: string;
|
|
98127
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98128
|
+
format: "Svg";
|
|
98129
|
+
nodeId: string;
|
|
98130
|
+
fileId: string;
|
|
98131
|
+
fileVersionId?: string | undefined;
|
|
98132
|
+
};
|
|
98133
|
+
png: {
|
|
97669
98134
|
type: "FigmaRender";
|
|
97670
98135
|
originKey: string;
|
|
97671
98136
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97705,7 +98170,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97705
98170
|
id: string;
|
|
97706
98171
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97707
98172
|
name: string;
|
|
97708
|
-
|
|
98173
|
+
svg: {
|
|
98174
|
+
type: "FigmaRender";
|
|
98175
|
+
originKey: string;
|
|
98176
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98177
|
+
format: "Svg";
|
|
98178
|
+
nodeId: string;
|
|
98179
|
+
fileId: string;
|
|
98180
|
+
fileVersionId?: string | undefined;
|
|
98181
|
+
};
|
|
98182
|
+
png: {
|
|
97709
98183
|
type: "FigmaRender";
|
|
97710
98184
|
originKey: string;
|
|
97711
98185
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97733,7 +98207,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97733
98207
|
id: string;
|
|
97734
98208
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97735
98209
|
name: string;
|
|
97736
|
-
|
|
98210
|
+
svg: {
|
|
98211
|
+
type: "FigmaRender";
|
|
98212
|
+
originKey: string;
|
|
98213
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98214
|
+
format: "Svg";
|
|
98215
|
+
nodeId: string;
|
|
98216
|
+
fileId: string;
|
|
98217
|
+
fileVersionId?: string | undefined;
|
|
98218
|
+
};
|
|
98219
|
+
png: {
|
|
97737
98220
|
type: "FigmaRender";
|
|
97738
98221
|
originKey: string;
|
|
97739
98222
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97753,7 +98236,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97753
98236
|
id: string;
|
|
97754
98237
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97755
98238
|
name: string;
|
|
97756
|
-
|
|
98239
|
+
svg: {
|
|
98240
|
+
type: "FigmaRender";
|
|
98241
|
+
originKey: string;
|
|
98242
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98243
|
+
format: "Svg";
|
|
98244
|
+
nodeId: string;
|
|
98245
|
+
fileId: string;
|
|
98246
|
+
fileVersionId?: string | undefined;
|
|
98247
|
+
};
|
|
98248
|
+
png: {
|
|
97757
98249
|
type: "FigmaRender";
|
|
97758
98250
|
originKey: string;
|
|
97759
98251
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97785,7 +98277,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97785
98277
|
id: string;
|
|
97786
98278
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97787
98279
|
name: string;
|
|
97788
|
-
|
|
98280
|
+
svg: {
|
|
98281
|
+
type: "FigmaRender";
|
|
98282
|
+
originKey: string;
|
|
98283
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98284
|
+
format: "Svg";
|
|
98285
|
+
nodeId: string;
|
|
98286
|
+
fileId: string;
|
|
98287
|
+
fileVersionId?: string | undefined;
|
|
98288
|
+
};
|
|
98289
|
+
png: {
|
|
97789
98290
|
type: "FigmaRender";
|
|
97790
98291
|
originKey: string;
|
|
97791
98292
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97823,7 +98324,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97823
98324
|
id: string;
|
|
97824
98325
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97825
98326
|
name: string;
|
|
97826
|
-
|
|
98327
|
+
svg: {
|
|
98328
|
+
type: "FigmaRender";
|
|
98329
|
+
originKey: string;
|
|
98330
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98331
|
+
format: "Svg";
|
|
98332
|
+
nodeId: string;
|
|
98333
|
+
fileId: string;
|
|
98334
|
+
fileVersionId?: string | undefined;
|
|
98335
|
+
};
|
|
98336
|
+
png: {
|
|
97827
98337
|
type: "FigmaRender";
|
|
97828
98338
|
originKey: string;
|
|
97829
98339
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -97843,7 +98353,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
97843
98353
|
id: string;
|
|
97844
98354
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
97845
98355
|
name: string;
|
|
97846
|
-
|
|
98356
|
+
svg: {
|
|
98357
|
+
type: "FigmaRender";
|
|
98358
|
+
originKey: string;
|
|
98359
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
98360
|
+
format: "Svg";
|
|
98361
|
+
nodeId: string;
|
|
98362
|
+
fileId: string;
|
|
98363
|
+
fileVersionId?: string | undefined;
|
|
98364
|
+
};
|
|
98365
|
+
png: {
|
|
97847
98366
|
type: "FigmaRender";
|
|
97848
98367
|
originKey: string;
|
|
97849
98368
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -99085,7 +99604,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
99085
99604
|
id: string;
|
|
99086
99605
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
99087
99606
|
name: string;
|
|
99088
|
-
|
|
99607
|
+
svg: {
|
|
99608
|
+
type: "FigmaRender";
|
|
99609
|
+
originKey: string;
|
|
99610
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
99611
|
+
format: "Svg";
|
|
99612
|
+
nodeId: string;
|
|
99613
|
+
fileId: string;
|
|
99614
|
+
fileVersionId?: string | undefined;
|
|
99615
|
+
};
|
|
99616
|
+
png: {
|
|
99089
99617
|
type: "FigmaRender";
|
|
99090
99618
|
originKey: string;
|
|
99091
99619
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -100328,7 +100856,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100328
100856
|
id: string;
|
|
100329
100857
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
100330
100858
|
name: string;
|
|
100331
|
-
|
|
100859
|
+
svg: {
|
|
100860
|
+
type: "FigmaRender";
|
|
100861
|
+
originKey: string;
|
|
100862
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100863
|
+
format: "Svg";
|
|
100864
|
+
nodeId: string;
|
|
100865
|
+
fileId: string;
|
|
100866
|
+
fileVersionId?: string | undefined;
|
|
100867
|
+
};
|
|
100868
|
+
png: {
|
|
100332
100869
|
type: "FigmaRender";
|
|
100333
100870
|
originKey: string;
|
|
100334
100871
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -100348,7 +100885,16 @@ declare const ImportModelInputCollection: z.ZodObject<{
|
|
|
100348
100885
|
id: string;
|
|
100349
100886
|
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
100350
100887
|
name: string;
|
|
100351
|
-
|
|
100888
|
+
svg: {
|
|
100889
|
+
type: "FigmaRender";
|
|
100890
|
+
originKey: string;
|
|
100891
|
+
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
100892
|
+
format: "Svg";
|
|
100893
|
+
nodeId: string;
|
|
100894
|
+
fileId: string;
|
|
100895
|
+
fileVersionId?: string | undefined;
|
|
100896
|
+
};
|
|
100897
|
+
png: {
|
|
100352
100898
|
type: "FigmaRender";
|
|
100353
100899
|
originKey: string;
|
|
100354
100900
|
scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
|
|
@@ -131308,6 +131854,8 @@ declare const ExporterDestinationGithub: z.ZodObject<{
|
|
|
131308
131854
|
url: z.ZodString;
|
|
131309
131855
|
branch: z.ZodString;
|
|
131310
131856
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131857
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131858
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131311
131859
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131312
131860
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
131313
131861
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -131315,6 +131863,8 @@ declare const ExporterDestinationGithub: z.ZodObject<{
|
|
|
131315
131863
|
branch: string;
|
|
131316
131864
|
credentialId?: string | undefined;
|
|
131317
131865
|
relativePath?: string | undefined;
|
|
131866
|
+
commitAuthorName?: string | undefined;
|
|
131867
|
+
commitAuthorEmail?: string | undefined;
|
|
131318
131868
|
connectionId?: string | undefined;
|
|
131319
131869
|
userId?: number | undefined;
|
|
131320
131870
|
}, {
|
|
@@ -131322,6 +131872,8 @@ declare const ExporterDestinationGithub: z.ZodObject<{
|
|
|
131322
131872
|
branch: string;
|
|
131323
131873
|
credentialId?: string | undefined;
|
|
131324
131874
|
relativePath?: string | null | undefined;
|
|
131875
|
+
commitAuthorName?: string | null | undefined;
|
|
131876
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131325
131877
|
connectionId?: string | null | undefined;
|
|
131326
131878
|
userId?: number | null | undefined;
|
|
131327
131879
|
}>;
|
|
@@ -131331,6 +131883,8 @@ declare const ExporterDestinationAzure: z.ZodObject<{
|
|
|
131331
131883
|
organizationId: z.ZodString;
|
|
131332
131884
|
projectId: z.ZodString;
|
|
131333
131885
|
repositoryId: z.ZodString;
|
|
131886
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131887
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131334
131888
|
branch: z.ZodString;
|
|
131335
131889
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131336
131890
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -131344,6 +131898,8 @@ declare const ExporterDestinationAzure: z.ZodObject<{
|
|
|
131344
131898
|
url?: string | undefined;
|
|
131345
131899
|
credentialId?: string | undefined;
|
|
131346
131900
|
relativePath?: string | undefined;
|
|
131901
|
+
commitAuthorName?: string | undefined;
|
|
131902
|
+
commitAuthorEmail?: string | undefined;
|
|
131347
131903
|
connectionId?: string | undefined;
|
|
131348
131904
|
userId?: number | undefined;
|
|
131349
131905
|
}, {
|
|
@@ -131354,6 +131910,8 @@ declare const ExporterDestinationAzure: z.ZodObject<{
|
|
|
131354
131910
|
url?: string | null | undefined;
|
|
131355
131911
|
credentialId?: string | undefined;
|
|
131356
131912
|
relativePath?: string | null | undefined;
|
|
131913
|
+
commitAuthorName?: string | null | undefined;
|
|
131914
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131357
131915
|
connectionId?: string | null | undefined;
|
|
131358
131916
|
userId?: number | null | undefined;
|
|
131359
131917
|
}>;
|
|
@@ -131361,6 +131919,8 @@ type ExporterDestinationAzure = z.infer<typeof ExporterDestinationAzure>;
|
|
|
131361
131919
|
declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
131362
131920
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
131363
131921
|
projectId: z.ZodString;
|
|
131922
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131923
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131364
131924
|
branch: z.ZodString;
|
|
131365
131925
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131366
131926
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -131372,6 +131932,8 @@ declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
|
131372
131932
|
url?: string | undefined;
|
|
131373
131933
|
credentialId?: string | undefined;
|
|
131374
131934
|
relativePath?: string | undefined;
|
|
131935
|
+
commitAuthorName?: string | undefined;
|
|
131936
|
+
commitAuthorEmail?: string | undefined;
|
|
131375
131937
|
connectionId?: string | undefined;
|
|
131376
131938
|
userId?: number | undefined;
|
|
131377
131939
|
}, {
|
|
@@ -131380,6 +131942,8 @@ declare const ExporterDestinationGitlab: z.ZodObject<{
|
|
|
131380
131942
|
url?: string | null | undefined;
|
|
131381
131943
|
credentialId?: string | undefined;
|
|
131382
131944
|
relativePath?: string | null | undefined;
|
|
131945
|
+
commitAuthorName?: string | null | undefined;
|
|
131946
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131383
131947
|
connectionId?: string | null | undefined;
|
|
131384
131948
|
userId?: number | null | undefined;
|
|
131385
131949
|
}>;
|
|
@@ -131389,6 +131953,8 @@ declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
|
131389
131953
|
workspaceSlug: z.ZodString;
|
|
131390
131954
|
projectKey: z.ZodString;
|
|
131391
131955
|
repoSlug: z.ZodString;
|
|
131956
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131957
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131392
131958
|
branch: z.ZodString;
|
|
131393
131959
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131394
131960
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -131400,6 +131966,8 @@ declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
|
131400
131966
|
repoSlug: string;
|
|
131401
131967
|
credentialId?: string | undefined;
|
|
131402
131968
|
relativePath?: string | undefined;
|
|
131969
|
+
commitAuthorName?: string | undefined;
|
|
131970
|
+
commitAuthorEmail?: string | undefined;
|
|
131403
131971
|
connectionId?: string | undefined;
|
|
131404
131972
|
userId?: number | undefined;
|
|
131405
131973
|
}, {
|
|
@@ -131409,6 +131977,8 @@ declare const ExporterDestinationBitbucket: z.ZodObject<{
|
|
|
131409
131977
|
repoSlug: string;
|
|
131410
131978
|
credentialId?: string | undefined;
|
|
131411
131979
|
relativePath?: string | null | undefined;
|
|
131980
|
+
commitAuthorName?: string | null | undefined;
|
|
131981
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131412
131982
|
connectionId?: string | null | undefined;
|
|
131413
131983
|
userId?: number | null | undefined;
|
|
131414
131984
|
}>;
|
|
@@ -131449,6 +132019,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131449
132019
|
url: z.ZodString;
|
|
131450
132020
|
branch: z.ZodString;
|
|
131451
132021
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132022
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132023
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131452
132024
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131453
132025
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
131454
132026
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -131456,6 +132028,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131456
132028
|
branch: string;
|
|
131457
132029
|
credentialId?: string | undefined;
|
|
131458
132030
|
relativePath?: string | undefined;
|
|
132031
|
+
commitAuthorName?: string | undefined;
|
|
132032
|
+
commitAuthorEmail?: string | undefined;
|
|
131459
132033
|
connectionId?: string | undefined;
|
|
131460
132034
|
userId?: number | undefined;
|
|
131461
132035
|
}, {
|
|
@@ -131463,6 +132037,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131463
132037
|
branch: string;
|
|
131464
132038
|
credentialId?: string | undefined;
|
|
131465
132039
|
relativePath?: string | null | undefined;
|
|
132040
|
+
commitAuthorName?: string | null | undefined;
|
|
132041
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131466
132042
|
connectionId?: string | null | undefined;
|
|
131467
132043
|
userId?: number | null | undefined;
|
|
131468
132044
|
}>>;
|
|
@@ -131471,6 +132047,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131471
132047
|
organizationId: z.ZodString;
|
|
131472
132048
|
projectId: z.ZodString;
|
|
131473
132049
|
repositoryId: z.ZodString;
|
|
132050
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132051
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131474
132052
|
branch: z.ZodString;
|
|
131475
132053
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131476
132054
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -131484,6 +132062,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131484
132062
|
url?: string | undefined;
|
|
131485
132063
|
credentialId?: string | undefined;
|
|
131486
132064
|
relativePath?: string | undefined;
|
|
132065
|
+
commitAuthorName?: string | undefined;
|
|
132066
|
+
commitAuthorEmail?: string | undefined;
|
|
131487
132067
|
connectionId?: string | undefined;
|
|
131488
132068
|
userId?: number | undefined;
|
|
131489
132069
|
}, {
|
|
@@ -131494,12 +132074,16 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131494
132074
|
url?: string | null | undefined;
|
|
131495
132075
|
credentialId?: string | undefined;
|
|
131496
132076
|
relativePath?: string | null | undefined;
|
|
132077
|
+
commitAuthorName?: string | null | undefined;
|
|
132078
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131497
132079
|
connectionId?: string | null | undefined;
|
|
131498
132080
|
userId?: number | null | undefined;
|
|
131499
132081
|
}>>;
|
|
131500
132082
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
131501
132083
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
131502
132084
|
projectId: z.ZodString;
|
|
132085
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132086
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131503
132087
|
branch: z.ZodString;
|
|
131504
132088
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131505
132089
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -131511,6 +132095,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131511
132095
|
url?: string | undefined;
|
|
131512
132096
|
credentialId?: string | undefined;
|
|
131513
132097
|
relativePath?: string | undefined;
|
|
132098
|
+
commitAuthorName?: string | undefined;
|
|
132099
|
+
commitAuthorEmail?: string | undefined;
|
|
131514
132100
|
connectionId?: string | undefined;
|
|
131515
132101
|
userId?: number | undefined;
|
|
131516
132102
|
}, {
|
|
@@ -131519,6 +132105,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131519
132105
|
url?: string | null | undefined;
|
|
131520
132106
|
credentialId?: string | undefined;
|
|
131521
132107
|
relativePath?: string | null | undefined;
|
|
132108
|
+
commitAuthorName?: string | null | undefined;
|
|
132109
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131522
132110
|
connectionId?: string | null | undefined;
|
|
131523
132111
|
userId?: number | null | undefined;
|
|
131524
132112
|
}>>;
|
|
@@ -131527,6 +132115,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131527
132115
|
workspaceSlug: z.ZodString;
|
|
131528
132116
|
projectKey: z.ZodString;
|
|
131529
132117
|
repoSlug: z.ZodString;
|
|
132118
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132119
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131530
132120
|
branch: z.ZodString;
|
|
131531
132121
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131532
132122
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -131538,6 +132128,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131538
132128
|
repoSlug: string;
|
|
131539
132129
|
credentialId?: string | undefined;
|
|
131540
132130
|
relativePath?: string | undefined;
|
|
132131
|
+
commitAuthorName?: string | undefined;
|
|
132132
|
+
commitAuthorEmail?: string | undefined;
|
|
131541
132133
|
connectionId?: string | undefined;
|
|
131542
132134
|
userId?: number | undefined;
|
|
131543
132135
|
}, {
|
|
@@ -131547,6 +132139,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131547
132139
|
repoSlug: string;
|
|
131548
132140
|
credentialId?: string | undefined;
|
|
131549
132141
|
relativePath?: string | null | undefined;
|
|
132142
|
+
commitAuthorName?: string | null | undefined;
|
|
132143
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131550
132144
|
connectionId?: string | null | undefined;
|
|
131551
132145
|
userId?: number | null | undefined;
|
|
131552
132146
|
}>>;
|
|
@@ -131565,6 +132159,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131565
132159
|
branch: string;
|
|
131566
132160
|
credentialId?: string | undefined;
|
|
131567
132161
|
relativePath?: string | undefined;
|
|
132162
|
+
commitAuthorName?: string | undefined;
|
|
132163
|
+
commitAuthorEmail?: string | undefined;
|
|
131568
132164
|
connectionId?: string | undefined;
|
|
131569
132165
|
userId?: number | undefined;
|
|
131570
132166
|
} | undefined;
|
|
@@ -131576,6 +132172,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131576
132172
|
url?: string | undefined;
|
|
131577
132173
|
credentialId?: string | undefined;
|
|
131578
132174
|
relativePath?: string | undefined;
|
|
132175
|
+
commitAuthorName?: string | undefined;
|
|
132176
|
+
commitAuthorEmail?: string | undefined;
|
|
131579
132177
|
connectionId?: string | undefined;
|
|
131580
132178
|
userId?: number | undefined;
|
|
131581
132179
|
} | undefined;
|
|
@@ -131585,6 +132183,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131585
132183
|
url?: string | undefined;
|
|
131586
132184
|
credentialId?: string | undefined;
|
|
131587
132185
|
relativePath?: string | undefined;
|
|
132186
|
+
commitAuthorName?: string | undefined;
|
|
132187
|
+
commitAuthorEmail?: string | undefined;
|
|
131588
132188
|
connectionId?: string | undefined;
|
|
131589
132189
|
userId?: number | undefined;
|
|
131590
132190
|
} | undefined;
|
|
@@ -131595,6 +132195,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131595
132195
|
repoSlug: string;
|
|
131596
132196
|
credentialId?: string | undefined;
|
|
131597
132197
|
relativePath?: string | undefined;
|
|
132198
|
+
commitAuthorName?: string | undefined;
|
|
132199
|
+
commitAuthorEmail?: string | undefined;
|
|
131598
132200
|
connectionId?: string | undefined;
|
|
131599
132201
|
userId?: number | undefined;
|
|
131600
132202
|
} | undefined;
|
|
@@ -131613,6 +132215,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131613
132215
|
branch: string;
|
|
131614
132216
|
credentialId?: string | undefined;
|
|
131615
132217
|
relativePath?: string | null | undefined;
|
|
132218
|
+
commitAuthorName?: string | null | undefined;
|
|
132219
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131616
132220
|
connectionId?: string | null | undefined;
|
|
131617
132221
|
userId?: number | null | undefined;
|
|
131618
132222
|
} | undefined;
|
|
@@ -131624,6 +132228,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131624
132228
|
url?: string | null | undefined;
|
|
131625
132229
|
credentialId?: string | undefined;
|
|
131626
132230
|
relativePath?: string | null | undefined;
|
|
132231
|
+
commitAuthorName?: string | null | undefined;
|
|
132232
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131627
132233
|
connectionId?: string | null | undefined;
|
|
131628
132234
|
userId?: number | null | undefined;
|
|
131629
132235
|
} | undefined;
|
|
@@ -131633,6 +132239,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131633
132239
|
url?: string | null | undefined;
|
|
131634
132240
|
credentialId?: string | undefined;
|
|
131635
132241
|
relativePath?: string | null | undefined;
|
|
132242
|
+
commitAuthorName?: string | null | undefined;
|
|
132243
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131636
132244
|
connectionId?: string | null | undefined;
|
|
131637
132245
|
userId?: number | null | undefined;
|
|
131638
132246
|
} | undefined;
|
|
@@ -131643,6 +132251,8 @@ declare const ExportDestinationsMap: z.ZodObject<{
|
|
|
131643
132251
|
repoSlug: string;
|
|
131644
132252
|
credentialId?: string | undefined;
|
|
131645
132253
|
relativePath?: string | null | undefined;
|
|
132254
|
+
commitAuthorName?: string | null | undefined;
|
|
132255
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131646
132256
|
connectionId?: string | null | undefined;
|
|
131647
132257
|
userId?: number | null | undefined;
|
|
131648
132258
|
} | undefined;
|
|
@@ -131908,6 +132518,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131908
132518
|
url: z.ZodString;
|
|
131909
132519
|
branch: z.ZodString;
|
|
131910
132520
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132521
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132522
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131911
132523
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131912
132524
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
131913
132525
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -131915,6 +132527,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131915
132527
|
branch: string;
|
|
131916
132528
|
credentialId?: string | undefined;
|
|
131917
132529
|
relativePath?: string | undefined;
|
|
132530
|
+
commitAuthorName?: string | undefined;
|
|
132531
|
+
commitAuthorEmail?: string | undefined;
|
|
131918
132532
|
connectionId?: string | undefined;
|
|
131919
132533
|
userId?: number | undefined;
|
|
131920
132534
|
}, {
|
|
@@ -131922,6 +132536,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131922
132536
|
branch: string;
|
|
131923
132537
|
credentialId?: string | undefined;
|
|
131924
132538
|
relativePath?: string | null | undefined;
|
|
132539
|
+
commitAuthorName?: string | null | undefined;
|
|
132540
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131925
132541
|
connectionId?: string | null | undefined;
|
|
131926
132542
|
userId?: number | null | undefined;
|
|
131927
132543
|
}>>;
|
|
@@ -131930,6 +132546,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131930
132546
|
organizationId: z.ZodString;
|
|
131931
132547
|
projectId: z.ZodString;
|
|
131932
132548
|
repositoryId: z.ZodString;
|
|
132549
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132550
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131933
132551
|
branch: z.ZodString;
|
|
131934
132552
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131935
132553
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -131943,6 +132561,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131943
132561
|
url?: string | undefined;
|
|
131944
132562
|
credentialId?: string | undefined;
|
|
131945
132563
|
relativePath?: string | undefined;
|
|
132564
|
+
commitAuthorName?: string | undefined;
|
|
132565
|
+
commitAuthorEmail?: string | undefined;
|
|
131946
132566
|
connectionId?: string | undefined;
|
|
131947
132567
|
userId?: number | undefined;
|
|
131948
132568
|
}, {
|
|
@@ -131953,12 +132573,16 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131953
132573
|
url?: string | null | undefined;
|
|
131954
132574
|
credentialId?: string | undefined;
|
|
131955
132575
|
relativePath?: string | null | undefined;
|
|
132576
|
+
commitAuthorName?: string | null | undefined;
|
|
132577
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131956
132578
|
connectionId?: string | null | undefined;
|
|
131957
132579
|
userId?: number | null | undefined;
|
|
131958
132580
|
}>>;
|
|
131959
132581
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
131960
132582
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
131961
132583
|
projectId: z.ZodString;
|
|
132584
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132585
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131962
132586
|
branch: z.ZodString;
|
|
131963
132587
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131964
132588
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -131970,6 +132594,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131970
132594
|
url?: string | undefined;
|
|
131971
132595
|
credentialId?: string | undefined;
|
|
131972
132596
|
relativePath?: string | undefined;
|
|
132597
|
+
commitAuthorName?: string | undefined;
|
|
132598
|
+
commitAuthorEmail?: string | undefined;
|
|
131973
132599
|
connectionId?: string | undefined;
|
|
131974
132600
|
userId?: number | undefined;
|
|
131975
132601
|
}, {
|
|
@@ -131978,6 +132604,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131978
132604
|
url?: string | null | undefined;
|
|
131979
132605
|
credentialId?: string | undefined;
|
|
131980
132606
|
relativePath?: string | null | undefined;
|
|
132607
|
+
commitAuthorName?: string | null | undefined;
|
|
132608
|
+
commitAuthorEmail?: string | null | undefined;
|
|
131981
132609
|
connectionId?: string | null | undefined;
|
|
131982
132610
|
userId?: number | null | undefined;
|
|
131983
132611
|
}>>;
|
|
@@ -131986,6 +132614,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131986
132614
|
workspaceSlug: z.ZodString;
|
|
131987
132615
|
projectKey: z.ZodString;
|
|
131988
132616
|
repoSlug: z.ZodString;
|
|
132617
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
132618
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131989
132619
|
branch: z.ZodString;
|
|
131990
132620
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
131991
132621
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -131997,6 +132627,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
131997
132627
|
repoSlug: string;
|
|
131998
132628
|
credentialId?: string | undefined;
|
|
131999
132629
|
relativePath?: string | undefined;
|
|
132630
|
+
commitAuthorName?: string | undefined;
|
|
132631
|
+
commitAuthorEmail?: string | undefined;
|
|
132000
132632
|
connectionId?: string | undefined;
|
|
132001
132633
|
userId?: number | undefined;
|
|
132002
132634
|
}, {
|
|
@@ -132006,6 +132638,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132006
132638
|
repoSlug: string;
|
|
132007
132639
|
credentialId?: string | undefined;
|
|
132008
132640
|
relativePath?: string | null | undefined;
|
|
132641
|
+
commitAuthorName?: string | null | undefined;
|
|
132642
|
+
commitAuthorEmail?: string | null | undefined;
|
|
132009
132643
|
connectionId?: string | null | undefined;
|
|
132010
132644
|
userId?: number | null | undefined;
|
|
132011
132645
|
}>>;
|
|
@@ -132207,6 +132841,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132207
132841
|
branch: string;
|
|
132208
132842
|
credentialId?: string | undefined;
|
|
132209
132843
|
relativePath?: string | undefined;
|
|
132844
|
+
commitAuthorName?: string | undefined;
|
|
132845
|
+
commitAuthorEmail?: string | undefined;
|
|
132210
132846
|
connectionId?: string | undefined;
|
|
132211
132847
|
userId?: number | undefined;
|
|
132212
132848
|
} | undefined;
|
|
@@ -132218,6 +132854,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132218
132854
|
url?: string | undefined;
|
|
132219
132855
|
credentialId?: string | undefined;
|
|
132220
132856
|
relativePath?: string | undefined;
|
|
132857
|
+
commitAuthorName?: string | undefined;
|
|
132858
|
+
commitAuthorEmail?: string | undefined;
|
|
132221
132859
|
connectionId?: string | undefined;
|
|
132222
132860
|
userId?: number | undefined;
|
|
132223
132861
|
} | undefined;
|
|
@@ -132227,6 +132865,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132227
132865
|
url?: string | undefined;
|
|
132228
132866
|
credentialId?: string | undefined;
|
|
132229
132867
|
relativePath?: string | undefined;
|
|
132868
|
+
commitAuthorName?: string | undefined;
|
|
132869
|
+
commitAuthorEmail?: string | undefined;
|
|
132230
132870
|
connectionId?: string | undefined;
|
|
132231
132871
|
userId?: number | undefined;
|
|
132232
132872
|
} | undefined;
|
|
@@ -132237,6 +132877,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132237
132877
|
repoSlug: string;
|
|
132238
132878
|
credentialId?: string | undefined;
|
|
132239
132879
|
relativePath?: string | undefined;
|
|
132880
|
+
commitAuthorName?: string | undefined;
|
|
132881
|
+
commitAuthorEmail?: string | undefined;
|
|
132240
132882
|
connectionId?: string | undefined;
|
|
132241
132883
|
userId?: number | undefined;
|
|
132242
132884
|
} | undefined;
|
|
@@ -132300,6 +132942,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132300
132942
|
branch: string;
|
|
132301
132943
|
credentialId?: string | undefined;
|
|
132302
132944
|
relativePath?: string | null | undefined;
|
|
132945
|
+
commitAuthorName?: string | null | undefined;
|
|
132946
|
+
commitAuthorEmail?: string | null | undefined;
|
|
132303
132947
|
connectionId?: string | null | undefined;
|
|
132304
132948
|
userId?: number | null | undefined;
|
|
132305
132949
|
} | undefined;
|
|
@@ -132311,6 +132955,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132311
132955
|
url?: string | null | undefined;
|
|
132312
132956
|
credentialId?: string | undefined;
|
|
132313
132957
|
relativePath?: string | null | undefined;
|
|
132958
|
+
commitAuthorName?: string | null | undefined;
|
|
132959
|
+
commitAuthorEmail?: string | null | undefined;
|
|
132314
132960
|
connectionId?: string | null | undefined;
|
|
132315
132961
|
userId?: number | null | undefined;
|
|
132316
132962
|
} | undefined;
|
|
@@ -132320,6 +132966,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132320
132966
|
url?: string | null | undefined;
|
|
132321
132967
|
credentialId?: string | undefined;
|
|
132322
132968
|
relativePath?: string | null | undefined;
|
|
132969
|
+
commitAuthorName?: string | null | undefined;
|
|
132970
|
+
commitAuthorEmail?: string | null | undefined;
|
|
132323
132971
|
connectionId?: string | null | undefined;
|
|
132324
132972
|
userId?: number | null | undefined;
|
|
132325
132973
|
} | undefined;
|
|
@@ -132330,6 +132978,8 @@ declare const ExportJob: z.ZodObject<{
|
|
|
132330
132978
|
repoSlug: string;
|
|
132331
132979
|
credentialId?: string | undefined;
|
|
132332
132980
|
relativePath?: string | null | undefined;
|
|
132981
|
+
commitAuthorName?: string | null | undefined;
|
|
132982
|
+
commitAuthorEmail?: string | null | undefined;
|
|
132333
132983
|
connectionId?: string | null | undefined;
|
|
132334
132984
|
userId?: number | null | undefined;
|
|
132335
132985
|
} | undefined;
|
|
@@ -133409,6 +134059,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133409
134059
|
url: z.ZodString;
|
|
133410
134060
|
branch: z.ZodString;
|
|
133411
134061
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
134062
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
134063
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
133412
134064
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
133413
134065
|
userId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
133414
134066
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -133416,6 +134068,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133416
134068
|
branch: string;
|
|
133417
134069
|
credentialId?: string | undefined;
|
|
133418
134070
|
relativePath?: string | undefined;
|
|
134071
|
+
commitAuthorName?: string | undefined;
|
|
134072
|
+
commitAuthorEmail?: string | undefined;
|
|
133419
134073
|
connectionId?: string | undefined;
|
|
133420
134074
|
userId?: number | undefined;
|
|
133421
134075
|
}, {
|
|
@@ -133423,6 +134077,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133423
134077
|
branch: string;
|
|
133424
134078
|
credentialId?: string | undefined;
|
|
133425
134079
|
relativePath?: string | null | undefined;
|
|
134080
|
+
commitAuthorName?: string | null | undefined;
|
|
134081
|
+
commitAuthorEmail?: string | null | undefined;
|
|
133426
134082
|
connectionId?: string | null | undefined;
|
|
133427
134083
|
userId?: number | null | undefined;
|
|
133428
134084
|
}>>;
|
|
@@ -133431,6 +134087,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133431
134087
|
organizationId: z.ZodString;
|
|
133432
134088
|
projectId: z.ZodString;
|
|
133433
134089
|
repositoryId: z.ZodString;
|
|
134090
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
134091
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
133434
134092
|
branch: z.ZodString;
|
|
133435
134093
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
133436
134094
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -133444,6 +134102,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133444
134102
|
url?: string | undefined;
|
|
133445
134103
|
credentialId?: string | undefined;
|
|
133446
134104
|
relativePath?: string | undefined;
|
|
134105
|
+
commitAuthorName?: string | undefined;
|
|
134106
|
+
commitAuthorEmail?: string | undefined;
|
|
133447
134107
|
connectionId?: string | undefined;
|
|
133448
134108
|
userId?: number | undefined;
|
|
133449
134109
|
}, {
|
|
@@ -133454,12 +134114,16 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133454
134114
|
url?: string | null | undefined;
|
|
133455
134115
|
credentialId?: string | undefined;
|
|
133456
134116
|
relativePath?: string | null | undefined;
|
|
134117
|
+
commitAuthorName?: string | null | undefined;
|
|
134118
|
+
commitAuthorEmail?: string | null | undefined;
|
|
133457
134119
|
connectionId?: string | null | undefined;
|
|
133458
134120
|
userId?: number | null | undefined;
|
|
133459
134121
|
}>>;
|
|
133460
134122
|
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
133461
134123
|
credentialId: z.ZodOptional<z.ZodString>;
|
|
133462
134124
|
projectId: z.ZodString;
|
|
134125
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
134126
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
133463
134127
|
branch: z.ZodString;
|
|
133464
134128
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
133465
134129
|
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -133471,6 +134135,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133471
134135
|
url?: string | undefined;
|
|
133472
134136
|
credentialId?: string | undefined;
|
|
133473
134137
|
relativePath?: string | undefined;
|
|
134138
|
+
commitAuthorName?: string | undefined;
|
|
134139
|
+
commitAuthorEmail?: string | undefined;
|
|
133474
134140
|
connectionId?: string | undefined;
|
|
133475
134141
|
userId?: number | undefined;
|
|
133476
134142
|
}, {
|
|
@@ -133479,6 +134145,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133479
134145
|
url?: string | null | undefined;
|
|
133480
134146
|
credentialId?: string | undefined;
|
|
133481
134147
|
relativePath?: string | null | undefined;
|
|
134148
|
+
commitAuthorName?: string | null | undefined;
|
|
134149
|
+
commitAuthorEmail?: string | null | undefined;
|
|
133482
134150
|
connectionId?: string | null | undefined;
|
|
133483
134151
|
userId?: number | null | undefined;
|
|
133484
134152
|
}>>;
|
|
@@ -133487,6 +134155,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133487
134155
|
workspaceSlug: z.ZodString;
|
|
133488
134156
|
projectKey: z.ZodString;
|
|
133489
134157
|
repoSlug: z.ZodString;
|
|
134158
|
+
commitAuthorName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
134159
|
+
commitAuthorEmail: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
133490
134160
|
branch: z.ZodString;
|
|
133491
134161
|
relativePath: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
133492
134162
|
connectionId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
@@ -133498,6 +134168,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133498
134168
|
repoSlug: string;
|
|
133499
134169
|
credentialId?: string | undefined;
|
|
133500
134170
|
relativePath?: string | undefined;
|
|
134171
|
+
commitAuthorName?: string | undefined;
|
|
134172
|
+
commitAuthorEmail?: string | undefined;
|
|
133501
134173
|
connectionId?: string | undefined;
|
|
133502
134174
|
userId?: number | undefined;
|
|
133503
134175
|
}, {
|
|
@@ -133507,6 +134179,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133507
134179
|
repoSlug: string;
|
|
133508
134180
|
credentialId?: string | undefined;
|
|
133509
134181
|
relativePath?: string | null | undefined;
|
|
134182
|
+
commitAuthorName?: string | null | undefined;
|
|
134183
|
+
commitAuthorEmail?: string | null | undefined;
|
|
133510
134184
|
connectionId?: string | null | undefined;
|
|
133511
134185
|
userId?: number | null | undefined;
|
|
133512
134186
|
}>>;
|
|
@@ -133543,6 +134217,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133543
134217
|
branch: string;
|
|
133544
134218
|
credentialId?: string | undefined;
|
|
133545
134219
|
relativePath?: string | undefined;
|
|
134220
|
+
commitAuthorName?: string | undefined;
|
|
134221
|
+
commitAuthorEmail?: string | undefined;
|
|
133546
134222
|
connectionId?: string | undefined;
|
|
133547
134223
|
userId?: number | undefined;
|
|
133548
134224
|
} | undefined;
|
|
@@ -133554,6 +134230,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133554
134230
|
url?: string | undefined;
|
|
133555
134231
|
credentialId?: string | undefined;
|
|
133556
134232
|
relativePath?: string | undefined;
|
|
134233
|
+
commitAuthorName?: string | undefined;
|
|
134234
|
+
commitAuthorEmail?: string | undefined;
|
|
133557
134235
|
connectionId?: string | undefined;
|
|
133558
134236
|
userId?: number | undefined;
|
|
133559
134237
|
} | undefined;
|
|
@@ -133563,6 +134241,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133563
134241
|
url?: string | undefined;
|
|
133564
134242
|
credentialId?: string | undefined;
|
|
133565
134243
|
relativePath?: string | undefined;
|
|
134244
|
+
commitAuthorName?: string | undefined;
|
|
134245
|
+
commitAuthorEmail?: string | undefined;
|
|
133566
134246
|
connectionId?: string | undefined;
|
|
133567
134247
|
userId?: number | undefined;
|
|
133568
134248
|
} | undefined;
|
|
@@ -133573,6 +134253,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133573
134253
|
repoSlug: string;
|
|
133574
134254
|
credentialId?: string | undefined;
|
|
133575
134255
|
relativePath?: string | undefined;
|
|
134256
|
+
commitAuthorName?: string | undefined;
|
|
134257
|
+
commitAuthorEmail?: string | undefined;
|
|
133576
134258
|
connectionId?: string | undefined;
|
|
133577
134259
|
userId?: number | undefined;
|
|
133578
134260
|
} | undefined;
|
|
@@ -133600,6 +134282,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133600
134282
|
branch: string;
|
|
133601
134283
|
credentialId?: string | undefined;
|
|
133602
134284
|
relativePath?: string | null | undefined;
|
|
134285
|
+
commitAuthorName?: string | null | undefined;
|
|
134286
|
+
commitAuthorEmail?: string | null | undefined;
|
|
133603
134287
|
connectionId?: string | null | undefined;
|
|
133604
134288
|
userId?: number | null | undefined;
|
|
133605
134289
|
} | undefined;
|
|
@@ -133611,6 +134295,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133611
134295
|
url?: string | null | undefined;
|
|
133612
134296
|
credentialId?: string | undefined;
|
|
133613
134297
|
relativePath?: string | null | undefined;
|
|
134298
|
+
commitAuthorName?: string | null | undefined;
|
|
134299
|
+
commitAuthorEmail?: string | null | undefined;
|
|
133614
134300
|
connectionId?: string | null | undefined;
|
|
133615
134301
|
userId?: number | null | undefined;
|
|
133616
134302
|
} | undefined;
|
|
@@ -133620,6 +134306,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133620
134306
|
url?: string | null | undefined;
|
|
133621
134307
|
credentialId?: string | undefined;
|
|
133622
134308
|
relativePath?: string | null | undefined;
|
|
134309
|
+
commitAuthorName?: string | null | undefined;
|
|
134310
|
+
commitAuthorEmail?: string | null | undefined;
|
|
133623
134311
|
connectionId?: string | null | undefined;
|
|
133624
134312
|
userId?: number | null | undefined;
|
|
133625
134313
|
} | undefined;
|
|
@@ -133630,6 +134318,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
133630
134318
|
repoSlug: string;
|
|
133631
134319
|
credentialId?: string | undefined;
|
|
133632
134320
|
relativePath?: string | null | undefined;
|
|
134321
|
+
commitAuthorName?: string | null | undefined;
|
|
134322
|
+
commitAuthorEmail?: string | null | undefined;
|
|
133633
134323
|
connectionId?: string | null | undefined;
|
|
133634
134324
|
userId?: number | null | undefined;
|
|
133635
134325
|
} | undefined;
|
|
@@ -164872,4 +165562,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
164872
165562
|
}>;
|
|
164873
165563
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
164874
165564
|
|
|
164875
|
-
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, BaseComponent, 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, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, 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 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, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, 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, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, 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, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, 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 UpdateComponent, 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 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, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, 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 };
|
|
165565
|
+
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, BaseComponent, 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, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ComponentSet, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, 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 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, DesignSystemCreateInput, DesignSystemDump, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemUpdateInputMetadata, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, 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, FigmaComponentBooleanProperty, FigmaComponentInstanceSwapProperty, FigmaComponentProperties, FigmaComponentPropertyType, FigmaComponentSetProperties, 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, FontWeightTokenData, FontWeightValue, GitBranch, GitIntegrationType, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, 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 UpdateComponent, 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 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, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, 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 };
|