@supernova-studio/client 0.47.49 → 0.47.51
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 +261 -81
- package/dist/index.d.ts +261 -81
- package/dist/index.js +264 -216
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2346 -2298
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/documentation/index.ts +1 -0
- package/src/api/dto/documentation/publish.ts +6 -0
- package/src/api/dto/figma-components/assets/download.ts +30 -0
- package/src/api/dto/figma-components/assets/index.ts +1 -0
- package/src/api/dto/figma-components/index.ts +1 -0
- package/src/api/dto/index.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -1390,8 +1390,8 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
|
|
|
1390
1390
|
referenceId?: string | undefined;
|
|
1391
1391
|
}[] | null | undefined>;
|
|
1392
1392
|
}, "strip", z.ZodTypeAny, {
|
|
1393
|
-
frames: number;
|
|
1394
1393
|
components: number;
|
|
1394
|
+
frames: number;
|
|
1395
1395
|
componentSets: number;
|
|
1396
1396
|
tokensCreated: number;
|
|
1397
1397
|
tokensUpdated: number;
|
|
@@ -1422,10 +1422,10 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
|
|
|
1422
1422
|
}, {
|
|
1423
1423
|
isFailed: boolean;
|
|
1424
1424
|
error?: any;
|
|
1425
|
+
components?: number | null | undefined;
|
|
1425
1426
|
sourceId?: string | null | undefined;
|
|
1426
1427
|
brandId?: string | null | undefined;
|
|
1427
1428
|
frames?: number | null | undefined;
|
|
1428
|
-
components?: number | null | undefined;
|
|
1429
1429
|
componentSets?: number | null | undefined;
|
|
1430
1430
|
tokensCreated?: number | null | undefined;
|
|
1431
1431
|
tokensUpdated?: number | null | undefined;
|
|
@@ -1478,13 +1478,13 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
|
|
|
1478
1478
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
1479
1479
|
}, "strip", z.ZodTypeAny, {
|
|
1480
1480
|
assets: number;
|
|
1481
|
-
frames: number;
|
|
1482
1481
|
components: number;
|
|
1482
|
+
frames: number;
|
|
1483
1483
|
tokens: number;
|
|
1484
1484
|
}, {
|
|
1485
1485
|
assets?: number | null | undefined;
|
|
1486
|
-
frames?: number | null | undefined;
|
|
1487
1486
|
components?: number | null | undefined;
|
|
1487
|
+
frames?: number | null | undefined;
|
|
1488
1488
|
tokens?: number | null | undefined;
|
|
1489
1489
|
}>;
|
|
1490
1490
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1494,14 +1494,14 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
|
|
|
1494
1494
|
ownerId: string;
|
|
1495
1495
|
stats: {
|
|
1496
1496
|
assets: number;
|
|
1497
|
-
frames: number;
|
|
1498
1497
|
components: number;
|
|
1498
|
+
frames: number;
|
|
1499
1499
|
tokens: number;
|
|
1500
1500
|
};
|
|
1501
1501
|
fileThumbnailUrl?: string | undefined;
|
|
1502
1502
|
lastImportResult?: {
|
|
1503
|
-
frames: number;
|
|
1504
1503
|
components: number;
|
|
1504
|
+
frames: number;
|
|
1505
1505
|
componentSets: number;
|
|
1506
1506
|
tokensCreated: number;
|
|
1507
1507
|
tokensUpdated: number;
|
|
@@ -1547,18 +1547,18 @@ declare const DTODataSourceFigmaCloud: z.ZodObject<{
|
|
|
1547
1547
|
ownerId: string;
|
|
1548
1548
|
stats: {
|
|
1549
1549
|
assets?: number | null | undefined;
|
|
1550
|
-
frames?: number | null | undefined;
|
|
1551
1550
|
components?: number | null | undefined;
|
|
1551
|
+
frames?: number | null | undefined;
|
|
1552
1552
|
tokens?: number | null | undefined;
|
|
1553
1553
|
};
|
|
1554
1554
|
fileThumbnailUrl?: string | undefined;
|
|
1555
1555
|
lastImportResult?: {
|
|
1556
1556
|
isFailed: boolean;
|
|
1557
1557
|
error?: any;
|
|
1558
|
+
components?: number | null | undefined;
|
|
1558
1559
|
sourceId?: string | null | undefined;
|
|
1559
1560
|
brandId?: string | null | undefined;
|
|
1560
1561
|
frames?: number | null | undefined;
|
|
1561
|
-
components?: number | null | undefined;
|
|
1562
1562
|
componentSets?: number | null | undefined;
|
|
1563
1563
|
tokensCreated?: number | null | undefined;
|
|
1564
1564
|
tokensUpdated?: number | null | undefined;
|
|
@@ -1690,8 +1690,8 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
1690
1690
|
referenceId?: string | undefined;
|
|
1691
1691
|
}[] | null | undefined>;
|
|
1692
1692
|
}, "strip", z.ZodTypeAny, {
|
|
1693
|
-
frames: number;
|
|
1694
1693
|
components: number;
|
|
1694
|
+
frames: number;
|
|
1695
1695
|
componentSets: number;
|
|
1696
1696
|
tokensCreated: number;
|
|
1697
1697
|
tokensUpdated: number;
|
|
@@ -1722,10 +1722,10 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
1722
1722
|
}, {
|
|
1723
1723
|
isFailed: boolean;
|
|
1724
1724
|
error?: any;
|
|
1725
|
+
components?: number | null | undefined;
|
|
1725
1726
|
sourceId?: string | null | undefined;
|
|
1726
1727
|
brandId?: string | null | undefined;
|
|
1727
1728
|
frames?: number | null | undefined;
|
|
1728
|
-
components?: number | null | undefined;
|
|
1729
1729
|
componentSets?: number | null | undefined;
|
|
1730
1730
|
tokensCreated?: number | null | undefined;
|
|
1731
1731
|
tokensUpdated?: number | null | undefined;
|
|
@@ -1778,13 +1778,13 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
1778
1778
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
1779
1779
|
}, "strip", z.ZodTypeAny, {
|
|
1780
1780
|
assets: number;
|
|
1781
|
-
frames: number;
|
|
1782
1781
|
components: number;
|
|
1782
|
+
frames: number;
|
|
1783
1783
|
tokens: number;
|
|
1784
1784
|
}, {
|
|
1785
1785
|
assets?: number | null | undefined;
|
|
1786
|
-
frames?: number | null | undefined;
|
|
1787
1786
|
components?: number | null | undefined;
|
|
1787
|
+
frames?: number | null | undefined;
|
|
1788
1788
|
tokens?: number | null | undefined;
|
|
1789
1789
|
}>;
|
|
1790
1790
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1794,14 +1794,14 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
1794
1794
|
ownerId: string;
|
|
1795
1795
|
stats: {
|
|
1796
1796
|
assets: number;
|
|
1797
|
-
frames: number;
|
|
1798
1797
|
components: number;
|
|
1798
|
+
frames: number;
|
|
1799
1799
|
tokens: number;
|
|
1800
1800
|
};
|
|
1801
1801
|
fileThumbnailUrl?: string | undefined;
|
|
1802
1802
|
lastImportResult?: {
|
|
1803
|
-
frames: number;
|
|
1804
1803
|
components: number;
|
|
1804
|
+
frames: number;
|
|
1805
1805
|
componentSets: number;
|
|
1806
1806
|
tokensCreated: number;
|
|
1807
1807
|
tokensUpdated: number;
|
|
@@ -1847,18 +1847,18 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
1847
1847
|
ownerId: string;
|
|
1848
1848
|
stats: {
|
|
1849
1849
|
assets?: number | null | undefined;
|
|
1850
|
-
frames?: number | null | undefined;
|
|
1851
1850
|
components?: number | null | undefined;
|
|
1851
|
+
frames?: number | null | undefined;
|
|
1852
1852
|
tokens?: number | null | undefined;
|
|
1853
1853
|
};
|
|
1854
1854
|
fileThumbnailUrl?: string | undefined;
|
|
1855
1855
|
lastImportResult?: {
|
|
1856
1856
|
isFailed: boolean;
|
|
1857
1857
|
error?: any;
|
|
1858
|
+
components?: number | null | undefined;
|
|
1858
1859
|
sourceId?: string | null | undefined;
|
|
1859
1860
|
brandId?: string | null | undefined;
|
|
1860
1861
|
frames?: number | null | undefined;
|
|
1861
|
-
components?: number | null | undefined;
|
|
1862
1862
|
componentSets?: number | null | undefined;
|
|
1863
1863
|
tokensCreated?: number | null | undefined;
|
|
1864
1864
|
tokensUpdated?: number | null | undefined;
|
|
@@ -1921,14 +1921,14 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
1921
1921
|
ownerId: string;
|
|
1922
1922
|
stats: {
|
|
1923
1923
|
assets: number;
|
|
1924
|
-
frames: number;
|
|
1925
1924
|
components: number;
|
|
1925
|
+
frames: number;
|
|
1926
1926
|
tokens: number;
|
|
1927
1927
|
};
|
|
1928
1928
|
fileThumbnailUrl?: string | undefined;
|
|
1929
1929
|
lastImportResult?: {
|
|
1930
|
-
frames: number;
|
|
1931
1930
|
components: number;
|
|
1931
|
+
frames: number;
|
|
1932
1932
|
componentSets: number;
|
|
1933
1933
|
tokensCreated: number;
|
|
1934
1934
|
tokensUpdated: number;
|
|
@@ -1992,18 +1992,18 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
1992
1992
|
ownerId: string;
|
|
1993
1993
|
stats: {
|
|
1994
1994
|
assets?: number | null | undefined;
|
|
1995
|
-
frames?: number | null | undefined;
|
|
1996
1995
|
components?: number | null | undefined;
|
|
1996
|
+
frames?: number | null | undefined;
|
|
1997
1997
|
tokens?: number | null | undefined;
|
|
1998
1998
|
};
|
|
1999
1999
|
fileThumbnailUrl?: string | undefined;
|
|
2000
2000
|
lastImportResult?: {
|
|
2001
2001
|
isFailed: boolean;
|
|
2002
2002
|
error?: any;
|
|
2003
|
+
components?: number | null | undefined;
|
|
2003
2004
|
sourceId?: string | null | undefined;
|
|
2004
2005
|
brandId?: string | null | undefined;
|
|
2005
2006
|
frames?: number | null | undefined;
|
|
2006
|
-
components?: number | null | undefined;
|
|
2007
2007
|
componentSets?: number | null | undefined;
|
|
2008
2008
|
tokensCreated?: number | null | undefined;
|
|
2009
2009
|
tokensUpdated?: number | null | undefined;
|
|
@@ -2377,8 +2377,8 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2377
2377
|
referenceId?: string | undefined;
|
|
2378
2378
|
}[] | null | undefined>;
|
|
2379
2379
|
}, "strip", z.ZodTypeAny, {
|
|
2380
|
-
frames: number;
|
|
2381
2380
|
components: number;
|
|
2381
|
+
frames: number;
|
|
2382
2382
|
componentSets: number;
|
|
2383
2383
|
tokensCreated: number;
|
|
2384
2384
|
tokensUpdated: number;
|
|
@@ -2409,10 +2409,10 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2409
2409
|
}, {
|
|
2410
2410
|
isFailed: boolean;
|
|
2411
2411
|
error?: any;
|
|
2412
|
+
components?: number | null | undefined;
|
|
2412
2413
|
sourceId?: string | null | undefined;
|
|
2413
2414
|
brandId?: string | null | undefined;
|
|
2414
2415
|
frames?: number | null | undefined;
|
|
2415
|
-
components?: number | null | undefined;
|
|
2416
2416
|
componentSets?: number | null | undefined;
|
|
2417
2417
|
tokensCreated?: number | null | undefined;
|
|
2418
2418
|
tokensUpdated?: number | null | undefined;
|
|
@@ -2465,13 +2465,13 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2465
2465
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
2466
2466
|
}, "strip", z.ZodTypeAny, {
|
|
2467
2467
|
assets: number;
|
|
2468
|
-
frames: number;
|
|
2469
2468
|
components: number;
|
|
2469
|
+
frames: number;
|
|
2470
2470
|
tokens: number;
|
|
2471
2471
|
}, {
|
|
2472
2472
|
assets?: number | null | undefined;
|
|
2473
|
-
frames?: number | null | undefined;
|
|
2474
2473
|
components?: number | null | undefined;
|
|
2474
|
+
frames?: number | null | undefined;
|
|
2475
2475
|
tokens?: number | null | undefined;
|
|
2476
2476
|
}>;
|
|
2477
2477
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2481,14 +2481,14 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2481
2481
|
ownerId: string;
|
|
2482
2482
|
stats: {
|
|
2483
2483
|
assets: number;
|
|
2484
|
-
frames: number;
|
|
2485
2484
|
components: number;
|
|
2485
|
+
frames: number;
|
|
2486
2486
|
tokens: number;
|
|
2487
2487
|
};
|
|
2488
2488
|
fileThumbnailUrl?: string | undefined;
|
|
2489
2489
|
lastImportResult?: {
|
|
2490
|
-
frames: number;
|
|
2491
2490
|
components: number;
|
|
2491
|
+
frames: number;
|
|
2492
2492
|
componentSets: number;
|
|
2493
2493
|
tokensCreated: number;
|
|
2494
2494
|
tokensUpdated: number;
|
|
@@ -2534,18 +2534,18 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2534
2534
|
ownerId: string;
|
|
2535
2535
|
stats: {
|
|
2536
2536
|
assets?: number | null | undefined;
|
|
2537
|
-
frames?: number | null | undefined;
|
|
2538
2537
|
components?: number | null | undefined;
|
|
2538
|
+
frames?: number | null | undefined;
|
|
2539
2539
|
tokens?: number | null | undefined;
|
|
2540
2540
|
};
|
|
2541
2541
|
fileThumbnailUrl?: string | undefined;
|
|
2542
2542
|
lastImportResult?: {
|
|
2543
2543
|
isFailed: boolean;
|
|
2544
2544
|
error?: any;
|
|
2545
|
+
components?: number | null | undefined;
|
|
2545
2546
|
sourceId?: string | null | undefined;
|
|
2546
2547
|
brandId?: string | null | undefined;
|
|
2547
2548
|
frames?: number | null | undefined;
|
|
2548
|
-
components?: number | null | undefined;
|
|
2549
2549
|
componentSets?: number | null | undefined;
|
|
2550
2550
|
tokensCreated?: number | null | undefined;
|
|
2551
2551
|
tokensUpdated?: number | null | undefined;
|
|
@@ -2608,14 +2608,14 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2608
2608
|
ownerId: string;
|
|
2609
2609
|
stats: {
|
|
2610
2610
|
assets: number;
|
|
2611
|
-
frames: number;
|
|
2612
2611
|
components: number;
|
|
2612
|
+
frames: number;
|
|
2613
2613
|
tokens: number;
|
|
2614
2614
|
};
|
|
2615
2615
|
fileThumbnailUrl?: string | undefined;
|
|
2616
2616
|
lastImportResult?: {
|
|
2617
|
-
frames: number;
|
|
2618
2617
|
components: number;
|
|
2618
|
+
frames: number;
|
|
2619
2619
|
componentSets: number;
|
|
2620
2620
|
tokensCreated: number;
|
|
2621
2621
|
tokensUpdated: number;
|
|
@@ -2679,18 +2679,18 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2679
2679
|
ownerId: string;
|
|
2680
2680
|
stats: {
|
|
2681
2681
|
assets?: number | null | undefined;
|
|
2682
|
-
frames?: number | null | undefined;
|
|
2683
2682
|
components?: number | null | undefined;
|
|
2683
|
+
frames?: number | null | undefined;
|
|
2684
2684
|
tokens?: number | null | undefined;
|
|
2685
2685
|
};
|
|
2686
2686
|
fileThumbnailUrl?: string | undefined;
|
|
2687
2687
|
lastImportResult?: {
|
|
2688
2688
|
isFailed: boolean;
|
|
2689
2689
|
error?: any;
|
|
2690
|
+
components?: number | null | undefined;
|
|
2690
2691
|
sourceId?: string | null | undefined;
|
|
2691
2692
|
brandId?: string | null | undefined;
|
|
2692
2693
|
frames?: number | null | undefined;
|
|
2693
|
-
components?: number | null | undefined;
|
|
2694
2694
|
componentSets?: number | null | undefined;
|
|
2695
2695
|
tokensCreated?: number | null | undefined;
|
|
2696
2696
|
tokensUpdated?: number | null | undefined;
|
|
@@ -3061,8 +3061,8 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
3061
3061
|
referenceId?: string | undefined;
|
|
3062
3062
|
}[] | null | undefined>;
|
|
3063
3063
|
}, "strip", z.ZodTypeAny, {
|
|
3064
|
-
frames: number;
|
|
3065
3064
|
components: number;
|
|
3065
|
+
frames: number;
|
|
3066
3066
|
componentSets: number;
|
|
3067
3067
|
tokensCreated: number;
|
|
3068
3068
|
tokensUpdated: number;
|
|
@@ -3093,10 +3093,10 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
3093
3093
|
}, {
|
|
3094
3094
|
isFailed: boolean;
|
|
3095
3095
|
error?: any;
|
|
3096
|
+
components?: number | null | undefined;
|
|
3096
3097
|
sourceId?: string | null | undefined;
|
|
3097
3098
|
brandId?: string | null | undefined;
|
|
3098
3099
|
frames?: number | null | undefined;
|
|
3099
|
-
components?: number | null | undefined;
|
|
3100
3100
|
componentSets?: number | null | undefined;
|
|
3101
3101
|
tokensCreated?: number | null | undefined;
|
|
3102
3102
|
tokensUpdated?: number | null | undefined;
|
|
@@ -3149,13 +3149,13 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
3149
3149
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
3150
3150
|
}, "strip", z.ZodTypeAny, {
|
|
3151
3151
|
assets: number;
|
|
3152
|
-
frames: number;
|
|
3153
3152
|
components: number;
|
|
3153
|
+
frames: number;
|
|
3154
3154
|
tokens: number;
|
|
3155
3155
|
}, {
|
|
3156
3156
|
assets?: number | null | undefined;
|
|
3157
|
-
frames?: number | null | undefined;
|
|
3158
3157
|
components?: number | null | undefined;
|
|
3158
|
+
frames?: number | null | undefined;
|
|
3159
3159
|
tokens?: number | null | undefined;
|
|
3160
3160
|
}>;
|
|
3161
3161
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3165,14 +3165,14 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
3165
3165
|
ownerId: string;
|
|
3166
3166
|
stats: {
|
|
3167
3167
|
assets: number;
|
|
3168
|
-
frames: number;
|
|
3169
3168
|
components: number;
|
|
3169
|
+
frames: number;
|
|
3170
3170
|
tokens: number;
|
|
3171
3171
|
};
|
|
3172
3172
|
fileThumbnailUrl?: string | undefined;
|
|
3173
3173
|
lastImportResult?: {
|
|
3174
|
-
frames: number;
|
|
3175
3174
|
components: number;
|
|
3175
|
+
frames: number;
|
|
3176
3176
|
componentSets: number;
|
|
3177
3177
|
tokensCreated: number;
|
|
3178
3178
|
tokensUpdated: number;
|
|
@@ -3218,18 +3218,18 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
3218
3218
|
ownerId: string;
|
|
3219
3219
|
stats: {
|
|
3220
3220
|
assets?: number | null | undefined;
|
|
3221
|
-
frames?: number | null | undefined;
|
|
3222
3221
|
components?: number | null | undefined;
|
|
3222
|
+
frames?: number | null | undefined;
|
|
3223
3223
|
tokens?: number | null | undefined;
|
|
3224
3224
|
};
|
|
3225
3225
|
fileThumbnailUrl?: string | undefined;
|
|
3226
3226
|
lastImportResult?: {
|
|
3227
3227
|
isFailed: boolean;
|
|
3228
3228
|
error?: any;
|
|
3229
|
+
components?: number | null | undefined;
|
|
3229
3230
|
sourceId?: string | null | undefined;
|
|
3230
3231
|
brandId?: string | null | undefined;
|
|
3231
3232
|
frames?: number | null | undefined;
|
|
3232
|
-
components?: number | null | undefined;
|
|
3233
3233
|
componentSets?: number | null | undefined;
|
|
3234
3234
|
tokensCreated?: number | null | undefined;
|
|
3235
3235
|
tokensUpdated?: number | null | undefined;
|
|
@@ -3292,14 +3292,14 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
3292
3292
|
ownerId: string;
|
|
3293
3293
|
stats: {
|
|
3294
3294
|
assets: number;
|
|
3295
|
-
frames: number;
|
|
3296
3295
|
components: number;
|
|
3296
|
+
frames: number;
|
|
3297
3297
|
tokens: number;
|
|
3298
3298
|
};
|
|
3299
3299
|
fileThumbnailUrl?: string | undefined;
|
|
3300
3300
|
lastImportResult?: {
|
|
3301
|
-
frames: number;
|
|
3302
3301
|
components: number;
|
|
3302
|
+
frames: number;
|
|
3303
3303
|
componentSets: number;
|
|
3304
3304
|
tokensCreated: number;
|
|
3305
3305
|
tokensUpdated: number;
|
|
@@ -3363,18 +3363,18 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
3363
3363
|
ownerId: string;
|
|
3364
3364
|
stats: {
|
|
3365
3365
|
assets?: number | null | undefined;
|
|
3366
|
-
frames?: number | null | undefined;
|
|
3367
3366
|
components?: number | null | undefined;
|
|
3367
|
+
frames?: number | null | undefined;
|
|
3368
3368
|
tokens?: number | null | undefined;
|
|
3369
3369
|
};
|
|
3370
3370
|
fileThumbnailUrl?: string | undefined;
|
|
3371
3371
|
lastImportResult?: {
|
|
3372
3372
|
isFailed: boolean;
|
|
3373
3373
|
error?: any;
|
|
3374
|
+
components?: number | null | undefined;
|
|
3374
3375
|
sourceId?: string | null | undefined;
|
|
3375
3376
|
brandId?: string | null | undefined;
|
|
3376
3377
|
frames?: number | null | undefined;
|
|
3377
|
-
components?: number | null | undefined;
|
|
3378
3378
|
componentSets?: number | null | undefined;
|
|
3379
3379
|
tokensCreated?: number | null | undefined;
|
|
3380
3380
|
tokensUpdated?: number | null | undefined;
|
|
@@ -3672,14 +3672,14 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
3672
3672
|
ownerId: string;
|
|
3673
3673
|
stats: {
|
|
3674
3674
|
assets: number;
|
|
3675
|
-
frames: number;
|
|
3676
3675
|
components: number;
|
|
3676
|
+
frames: number;
|
|
3677
3677
|
tokens: number;
|
|
3678
3678
|
};
|
|
3679
3679
|
fileThumbnailUrl?: string | undefined;
|
|
3680
3680
|
lastImportResult?: {
|
|
3681
|
-
frames: number;
|
|
3682
3681
|
components: number;
|
|
3682
|
+
frames: number;
|
|
3683
3683
|
componentSets: number;
|
|
3684
3684
|
tokensCreated: number;
|
|
3685
3685
|
tokensUpdated: number;
|
|
@@ -3793,18 +3793,18 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
3793
3793
|
ownerId: string;
|
|
3794
3794
|
stats: {
|
|
3795
3795
|
assets?: number | null | undefined;
|
|
3796
|
-
frames?: number | null | undefined;
|
|
3797
3796
|
components?: number | null | undefined;
|
|
3797
|
+
frames?: number | null | undefined;
|
|
3798
3798
|
tokens?: number | null | undefined;
|
|
3799
3799
|
};
|
|
3800
3800
|
fileThumbnailUrl?: string | undefined;
|
|
3801
3801
|
lastImportResult?: {
|
|
3802
3802
|
isFailed: boolean;
|
|
3803
3803
|
error?: any;
|
|
3804
|
+
components?: number | null | undefined;
|
|
3804
3805
|
sourceId?: string | null | undefined;
|
|
3805
3806
|
brandId?: string | null | undefined;
|
|
3806
3807
|
frames?: number | null | undefined;
|
|
3807
|
-
components?: number | null | undefined;
|
|
3808
3808
|
componentSets?: number | null | undefined;
|
|
3809
3809
|
tokensCreated?: number | null | undefined;
|
|
3810
3810
|
tokensUpdated?: number | null | undefined;
|
|
@@ -3988,8 +3988,8 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
3988
3988
|
referenceId?: string | undefined;
|
|
3989
3989
|
}[] | null | undefined>;
|
|
3990
3990
|
}, "strip", z.ZodTypeAny, {
|
|
3991
|
-
frames: number;
|
|
3992
3991
|
components: number;
|
|
3992
|
+
frames: number;
|
|
3993
3993
|
componentSets: number;
|
|
3994
3994
|
tokensCreated: number;
|
|
3995
3995
|
tokensUpdated: number;
|
|
@@ -4020,10 +4020,10 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
4020
4020
|
}, {
|
|
4021
4021
|
isFailed: boolean;
|
|
4022
4022
|
error?: any;
|
|
4023
|
+
components?: number | null | undefined;
|
|
4023
4024
|
sourceId?: string | null | undefined;
|
|
4024
4025
|
brandId?: string | null | undefined;
|
|
4025
4026
|
frames?: number | null | undefined;
|
|
4026
|
-
components?: number | null | undefined;
|
|
4027
4027
|
componentSets?: number | null | undefined;
|
|
4028
4028
|
tokensCreated?: number | null | undefined;
|
|
4029
4029
|
tokensUpdated?: number | null | undefined;
|
|
@@ -4076,13 +4076,13 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
4076
4076
|
frames: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
4077
4077
|
}, "strip", z.ZodTypeAny, {
|
|
4078
4078
|
assets: number;
|
|
4079
|
-
frames: number;
|
|
4080
4079
|
components: number;
|
|
4080
|
+
frames: number;
|
|
4081
4081
|
tokens: number;
|
|
4082
4082
|
}, {
|
|
4083
4083
|
assets?: number | null | undefined;
|
|
4084
|
-
frames?: number | null | undefined;
|
|
4085
4084
|
components?: number | null | undefined;
|
|
4085
|
+
frames?: number | null | undefined;
|
|
4086
4086
|
tokens?: number | null | undefined;
|
|
4087
4087
|
}>;
|
|
4088
4088
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4092,14 +4092,14 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
4092
4092
|
ownerId: string;
|
|
4093
4093
|
stats: {
|
|
4094
4094
|
assets: number;
|
|
4095
|
-
frames: number;
|
|
4096
4095
|
components: number;
|
|
4096
|
+
frames: number;
|
|
4097
4097
|
tokens: number;
|
|
4098
4098
|
};
|
|
4099
4099
|
fileThumbnailUrl?: string | undefined;
|
|
4100
4100
|
lastImportResult?: {
|
|
4101
|
-
frames: number;
|
|
4102
4101
|
components: number;
|
|
4102
|
+
frames: number;
|
|
4103
4103
|
componentSets: number;
|
|
4104
4104
|
tokensCreated: number;
|
|
4105
4105
|
tokensUpdated: number;
|
|
@@ -4145,18 +4145,18 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
4145
4145
|
ownerId: string;
|
|
4146
4146
|
stats: {
|
|
4147
4147
|
assets?: number | null | undefined;
|
|
4148
|
-
frames?: number | null | undefined;
|
|
4149
4148
|
components?: number | null | undefined;
|
|
4149
|
+
frames?: number | null | undefined;
|
|
4150
4150
|
tokens?: number | null | undefined;
|
|
4151
4151
|
};
|
|
4152
4152
|
fileThumbnailUrl?: string | undefined;
|
|
4153
4153
|
lastImportResult?: {
|
|
4154
4154
|
isFailed: boolean;
|
|
4155
4155
|
error?: any;
|
|
4156
|
+
components?: number | null | undefined;
|
|
4156
4157
|
sourceId?: string | null | undefined;
|
|
4157
4158
|
brandId?: string | null | undefined;
|
|
4158
4159
|
frames?: number | null | undefined;
|
|
4159
|
-
components?: number | null | undefined;
|
|
4160
4160
|
componentSets?: number | null | undefined;
|
|
4161
4161
|
tokensCreated?: number | null | undefined;
|
|
4162
4162
|
tokensUpdated?: number | null | undefined;
|
|
@@ -4219,14 +4219,14 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
4219
4219
|
ownerId: string;
|
|
4220
4220
|
stats: {
|
|
4221
4221
|
assets: number;
|
|
4222
|
-
frames: number;
|
|
4223
4222
|
components: number;
|
|
4223
|
+
frames: number;
|
|
4224
4224
|
tokens: number;
|
|
4225
4225
|
};
|
|
4226
4226
|
fileThumbnailUrl?: string | undefined;
|
|
4227
4227
|
lastImportResult?: {
|
|
4228
|
-
frames: number;
|
|
4229
4228
|
components: number;
|
|
4229
|
+
frames: number;
|
|
4230
4230
|
componentSets: number;
|
|
4231
4231
|
tokensCreated: number;
|
|
4232
4232
|
tokensUpdated: number;
|
|
@@ -4290,18 +4290,18 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
4290
4290
|
ownerId: string;
|
|
4291
4291
|
stats: {
|
|
4292
4292
|
assets?: number | null | undefined;
|
|
4293
|
-
frames?: number | null | undefined;
|
|
4294
4293
|
components?: number | null | undefined;
|
|
4294
|
+
frames?: number | null | undefined;
|
|
4295
4295
|
tokens?: number | null | undefined;
|
|
4296
4296
|
};
|
|
4297
4297
|
fileThumbnailUrl?: string | undefined;
|
|
4298
4298
|
lastImportResult?: {
|
|
4299
4299
|
isFailed: boolean;
|
|
4300
4300
|
error?: any;
|
|
4301
|
+
components?: number | null | undefined;
|
|
4301
4302
|
sourceId?: string | null | undefined;
|
|
4302
4303
|
brandId?: string | null | undefined;
|
|
4303
4304
|
frames?: number | null | undefined;
|
|
4304
|
-
components?: number | null | undefined;
|
|
4305
4305
|
componentSets?: number | null | undefined;
|
|
4306
4306
|
tokensCreated?: number | null | undefined;
|
|
4307
4307
|
tokensUpdated?: number | null | undefined;
|
|
@@ -4599,14 +4599,14 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
4599
4599
|
ownerId: string;
|
|
4600
4600
|
stats: {
|
|
4601
4601
|
assets: number;
|
|
4602
|
-
frames: number;
|
|
4603
4602
|
components: number;
|
|
4603
|
+
frames: number;
|
|
4604
4604
|
tokens: number;
|
|
4605
4605
|
};
|
|
4606
4606
|
fileThumbnailUrl?: string | undefined;
|
|
4607
4607
|
lastImportResult?: {
|
|
4608
|
-
frames: number;
|
|
4609
4608
|
components: number;
|
|
4609
|
+
frames: number;
|
|
4610
4610
|
componentSets: number;
|
|
4611
4611
|
tokensCreated: number;
|
|
4612
4612
|
tokensUpdated: number;
|
|
@@ -4720,18 +4720,18 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
4720
4720
|
ownerId: string;
|
|
4721
4721
|
stats: {
|
|
4722
4722
|
assets?: number | null | undefined;
|
|
4723
|
-
frames?: number | null | undefined;
|
|
4724
4723
|
components?: number | null | undefined;
|
|
4724
|
+
frames?: number | null | undefined;
|
|
4725
4725
|
tokens?: number | null | undefined;
|
|
4726
4726
|
};
|
|
4727
4727
|
fileThumbnailUrl?: string | undefined;
|
|
4728
4728
|
lastImportResult?: {
|
|
4729
4729
|
isFailed: boolean;
|
|
4730
4730
|
error?: any;
|
|
4731
|
+
components?: number | null | undefined;
|
|
4731
4732
|
sourceId?: string | null | undefined;
|
|
4732
4733
|
brandId?: string | null | undefined;
|
|
4733
4734
|
frames?: number | null | undefined;
|
|
4734
|
-
components?: number | null | undefined;
|
|
4735
4735
|
componentSets?: number | null | undefined;
|
|
4736
4736
|
tokensCreated?: number | null | undefined;
|
|
4737
4737
|
tokensUpdated?: number | null | undefined;
|
|
@@ -6827,6 +6827,14 @@ declare const DTODocumentationLinkPreviewRequest: z.ZodObject<{
|
|
|
6827
6827
|
}>;
|
|
6828
6828
|
type DTODocumentationLinkPreviewRequest = z.infer<typeof DTODocumentationLinkPreviewRequest>;
|
|
6829
6829
|
|
|
6830
|
+
declare const DTOPublishDocumentationRequest: z.ZodObject<{
|
|
6831
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
6832
|
+
}, "strip", z.ZodTypeAny, {
|
|
6833
|
+
environment: "Live" | "Preview";
|
|
6834
|
+
}, {
|
|
6835
|
+
environment: "Live" | "Preview";
|
|
6836
|
+
}>;
|
|
6837
|
+
|
|
6830
6838
|
declare const DTODocumentationDraftChangeType: z.ZodEnum<["Created", "Updated", "Deleted"]>;
|
|
6831
6839
|
type DTODocumentationDraftChangeType = z.infer<typeof DTODocumentationDraftChangeType>;
|
|
6832
6840
|
declare const DTODocumentationDraftStateCreated: z.ZodObject<{
|
|
@@ -23277,18 +23285,18 @@ declare const DTOFigmaNode: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUt
|
|
|
23277
23285
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23278
23286
|
componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23279
23287
|
}, "strip", z.ZodTypeAny, {
|
|
23280
|
-
frames: number;
|
|
23281
23288
|
components: number;
|
|
23289
|
+
frames: number;
|
|
23282
23290
|
componentSets: number;
|
|
23283
23291
|
}, {
|
|
23284
|
-
frames?: number | null | undefined;
|
|
23285
23292
|
components?: number | null | undefined;
|
|
23293
|
+
frames?: number | null | undefined;
|
|
23286
23294
|
componentSets?: number | null | undefined;
|
|
23287
23295
|
}>;
|
|
23288
23296
|
}, "strip", z.ZodTypeAny, {
|
|
23289
23297
|
assetsInFile: {
|
|
23290
|
-
frames: number;
|
|
23291
23298
|
components: number;
|
|
23299
|
+
frames: number;
|
|
23292
23300
|
componentSets: number;
|
|
23293
23301
|
};
|
|
23294
23302
|
rootNode: {
|
|
@@ -23305,8 +23313,8 @@ declare const DTOFigmaNode: z.ZodObject<z.objectUtil.extendShape<Omit<z.objectUt
|
|
|
23305
23313
|
};
|
|
23306
23314
|
}, {
|
|
23307
23315
|
assetsInFile: {
|
|
23308
|
-
frames?: number | null | undefined;
|
|
23309
23316
|
components?: number | null | undefined;
|
|
23317
|
+
frames?: number | null | undefined;
|
|
23310
23318
|
componentSets?: number | null | undefined;
|
|
23311
23319
|
};
|
|
23312
23320
|
rootNode: {
|
|
@@ -23519,18 +23527,18 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23519
23527
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23520
23528
|
componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
23521
23529
|
}, "strip", z.ZodTypeAny, {
|
|
23522
|
-
frames: number;
|
|
23523
23530
|
components: number;
|
|
23531
|
+
frames: number;
|
|
23524
23532
|
componentSets: number;
|
|
23525
23533
|
}, {
|
|
23526
|
-
frames?: number | null | undefined;
|
|
23527
23534
|
components?: number | null | undefined;
|
|
23535
|
+
frames?: number | null | undefined;
|
|
23528
23536
|
componentSets?: number | null | undefined;
|
|
23529
23537
|
}>;
|
|
23530
23538
|
}, "strip", z.ZodTypeAny, {
|
|
23531
23539
|
assetsInFile: {
|
|
23532
|
-
frames: number;
|
|
23533
23540
|
components: number;
|
|
23541
|
+
frames: number;
|
|
23534
23542
|
componentSets: number;
|
|
23535
23543
|
};
|
|
23536
23544
|
rootNode: {
|
|
@@ -23547,8 +23555,8 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
23547
23555
|
};
|
|
23548
23556
|
}, {
|
|
23549
23557
|
assetsInFile: {
|
|
23550
|
-
frames?: number | null | undefined;
|
|
23551
23558
|
components?: number | null | undefined;
|
|
23559
|
+
frames?: number | null | undefined;
|
|
23552
23560
|
componentSets?: number | null | undefined;
|
|
23553
23561
|
};
|
|
23554
23562
|
rootNode: {
|
|
@@ -24929,18 +24937,18 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
24929
24937
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
24930
24938
|
componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
24931
24939
|
}, "strip", z.ZodTypeAny, {
|
|
24932
|
-
frames: number;
|
|
24933
24940
|
components: number;
|
|
24941
|
+
frames: number;
|
|
24934
24942
|
componentSets: number;
|
|
24935
24943
|
}, {
|
|
24936
|
-
frames?: number | null | undefined;
|
|
24937
24944
|
components?: number | null | undefined;
|
|
24945
|
+
frames?: number | null | undefined;
|
|
24938
24946
|
componentSets?: number | null | undefined;
|
|
24939
24947
|
}>;
|
|
24940
24948
|
}, "strip", z.ZodTypeAny, {
|
|
24941
24949
|
assetsInFile: {
|
|
24942
|
-
frames: number;
|
|
24943
24950
|
components: number;
|
|
24951
|
+
frames: number;
|
|
24944
24952
|
componentSets: number;
|
|
24945
24953
|
};
|
|
24946
24954
|
rootNode: {
|
|
@@ -24957,8 +24965,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
24957
24965
|
};
|
|
24958
24966
|
}, {
|
|
24959
24967
|
assetsInFile: {
|
|
24960
|
-
frames?: number | null | undefined;
|
|
24961
24968
|
components?: number | null | undefined;
|
|
24969
|
+
frames?: number | null | undefined;
|
|
24962
24970
|
componentSets?: number | null | undefined;
|
|
24963
24971
|
};
|
|
24964
24972
|
rootNode: {
|
|
@@ -27296,18 +27304,18 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27296
27304
|
components: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
27297
27305
|
componentSets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
27298
27306
|
}, "strip", z.ZodTypeAny, {
|
|
27299
|
-
frames: number;
|
|
27300
27307
|
components: number;
|
|
27308
|
+
frames: number;
|
|
27301
27309
|
componentSets: number;
|
|
27302
27310
|
}, {
|
|
27303
|
-
frames?: number | null | undefined;
|
|
27304
27311
|
components?: number | null | undefined;
|
|
27312
|
+
frames?: number | null | undefined;
|
|
27305
27313
|
componentSets?: number | null | undefined;
|
|
27306
27314
|
}>;
|
|
27307
27315
|
}, "strip", z.ZodTypeAny, {
|
|
27308
27316
|
assetsInFile: {
|
|
27309
|
-
frames: number;
|
|
27310
27317
|
components: number;
|
|
27318
|
+
frames: number;
|
|
27311
27319
|
componentSets: number;
|
|
27312
27320
|
};
|
|
27313
27321
|
rootNode: {
|
|
@@ -27324,8 +27332,8 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
27324
27332
|
};
|
|
27325
27333
|
}, {
|
|
27326
27334
|
assetsInFile: {
|
|
27327
|
-
frames?: number | null | undefined;
|
|
27328
27335
|
components?: number | null | undefined;
|
|
27336
|
+
frames?: number | null | undefined;
|
|
27329
27337
|
componentSets?: number | null | undefined;
|
|
27330
27338
|
};
|
|
27331
27339
|
rootNode: {
|
|
@@ -31108,6 +31116,178 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
31108
31116
|
}>;
|
|
31109
31117
|
type DTOPipeline = z.infer<typeof DTOPipeline>;
|
|
31110
31118
|
|
|
31119
|
+
declare const DTOAssetRenderConfiguration: z.ZodObject<{
|
|
31120
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
31121
|
+
suffix: z.ZodOptional<z.ZodString>;
|
|
31122
|
+
scale: z.ZodEnum<["x1", "x2", "x3", "x4"]>;
|
|
31123
|
+
format: z.ZodEnum<["png", "pdf", "svg"]>;
|
|
31124
|
+
}, "strip", z.ZodTypeAny, {
|
|
31125
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31126
|
+
format: "png" | "pdf" | "svg";
|
|
31127
|
+
prefix?: string | undefined;
|
|
31128
|
+
suffix?: string | undefined;
|
|
31129
|
+
}, {
|
|
31130
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31131
|
+
format: "png" | "pdf" | "svg";
|
|
31132
|
+
prefix?: string | undefined;
|
|
31133
|
+
suffix?: string | undefined;
|
|
31134
|
+
}>;
|
|
31135
|
+
type DTOAssetRenderConfiguration = z.infer<typeof DTOAssetRenderConfiguration>;
|
|
31136
|
+
declare const DTORenderedAssetFile: z.ZodObject<{
|
|
31137
|
+
assetId: z.ZodString;
|
|
31138
|
+
fileName: z.ZodString;
|
|
31139
|
+
sourceUrl: z.ZodString;
|
|
31140
|
+
settings: z.ZodObject<{
|
|
31141
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
31142
|
+
suffix: z.ZodOptional<z.ZodString>;
|
|
31143
|
+
scale: z.ZodEnum<["x1", "x2", "x3", "x4"]>;
|
|
31144
|
+
format: z.ZodEnum<["png", "pdf", "svg"]>;
|
|
31145
|
+
}, "strip", z.ZodTypeAny, {
|
|
31146
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31147
|
+
format: "png" | "pdf" | "svg";
|
|
31148
|
+
prefix?: string | undefined;
|
|
31149
|
+
suffix?: string | undefined;
|
|
31150
|
+
}, {
|
|
31151
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31152
|
+
format: "png" | "pdf" | "svg";
|
|
31153
|
+
prefix?: string | undefined;
|
|
31154
|
+
suffix?: string | undefined;
|
|
31155
|
+
}>;
|
|
31156
|
+
originalName: z.ZodString;
|
|
31157
|
+
}, "strip", z.ZodTypeAny, {
|
|
31158
|
+
fileName: string;
|
|
31159
|
+
settings: {
|
|
31160
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31161
|
+
format: "png" | "pdf" | "svg";
|
|
31162
|
+
prefix?: string | undefined;
|
|
31163
|
+
suffix?: string | undefined;
|
|
31164
|
+
};
|
|
31165
|
+
assetId: string;
|
|
31166
|
+
sourceUrl: string;
|
|
31167
|
+
originalName: string;
|
|
31168
|
+
}, {
|
|
31169
|
+
fileName: string;
|
|
31170
|
+
settings: {
|
|
31171
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31172
|
+
format: "png" | "pdf" | "svg";
|
|
31173
|
+
prefix?: string | undefined;
|
|
31174
|
+
suffix?: string | undefined;
|
|
31175
|
+
};
|
|
31176
|
+
assetId: string;
|
|
31177
|
+
sourceUrl: string;
|
|
31178
|
+
originalName: string;
|
|
31179
|
+
}>;
|
|
31180
|
+
type DTORenderedAssetFile = z.infer<typeof DTORenderedAssetFile>;
|
|
31181
|
+
declare const DTODownloadAssetsRequest: z.ZodObject<{
|
|
31182
|
+
persistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
31183
|
+
settings: z.ZodArray<z.ZodObject<{
|
|
31184
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
31185
|
+
suffix: z.ZodOptional<z.ZodString>;
|
|
31186
|
+
scale: z.ZodEnum<["x1", "x2", "x3", "x4"]>;
|
|
31187
|
+
format: z.ZodEnum<["png", "pdf", "svg"]>;
|
|
31188
|
+
}, "strip", z.ZodTypeAny, {
|
|
31189
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31190
|
+
format: "png" | "pdf" | "svg";
|
|
31191
|
+
prefix?: string | undefined;
|
|
31192
|
+
suffix?: string | undefined;
|
|
31193
|
+
}, {
|
|
31194
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31195
|
+
format: "png" | "pdf" | "svg";
|
|
31196
|
+
prefix?: string | undefined;
|
|
31197
|
+
suffix?: string | undefined;
|
|
31198
|
+
}>, "many">;
|
|
31199
|
+
}, "strip", z.ZodTypeAny, {
|
|
31200
|
+
settings: {
|
|
31201
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31202
|
+
format: "png" | "pdf" | "svg";
|
|
31203
|
+
prefix?: string | undefined;
|
|
31204
|
+
suffix?: string | undefined;
|
|
31205
|
+
}[];
|
|
31206
|
+
persistentIds?: string[] | undefined;
|
|
31207
|
+
}, {
|
|
31208
|
+
settings: {
|
|
31209
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31210
|
+
format: "png" | "pdf" | "svg";
|
|
31211
|
+
prefix?: string | undefined;
|
|
31212
|
+
suffix?: string | undefined;
|
|
31213
|
+
}[];
|
|
31214
|
+
persistentIds?: string[] | undefined;
|
|
31215
|
+
}>;
|
|
31216
|
+
type DTODownloadAssetsRequest = z.infer<typeof DTODownloadAssetsRequest>;
|
|
31217
|
+
declare const DTODownloadAssetsResponse: z.ZodObject<{
|
|
31218
|
+
items: z.ZodArray<z.ZodObject<{
|
|
31219
|
+
assetId: z.ZodString;
|
|
31220
|
+
fileName: z.ZodString;
|
|
31221
|
+
sourceUrl: z.ZodString;
|
|
31222
|
+
settings: z.ZodObject<{
|
|
31223
|
+
prefix: z.ZodOptional<z.ZodString>;
|
|
31224
|
+
suffix: z.ZodOptional<z.ZodString>;
|
|
31225
|
+
scale: z.ZodEnum<["x1", "x2", "x3", "x4"]>;
|
|
31226
|
+
format: z.ZodEnum<["png", "pdf", "svg"]>;
|
|
31227
|
+
}, "strip", z.ZodTypeAny, {
|
|
31228
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31229
|
+
format: "png" | "pdf" | "svg";
|
|
31230
|
+
prefix?: string | undefined;
|
|
31231
|
+
suffix?: string | undefined;
|
|
31232
|
+
}, {
|
|
31233
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31234
|
+
format: "png" | "pdf" | "svg";
|
|
31235
|
+
prefix?: string | undefined;
|
|
31236
|
+
suffix?: string | undefined;
|
|
31237
|
+
}>;
|
|
31238
|
+
originalName: z.ZodString;
|
|
31239
|
+
}, "strip", z.ZodTypeAny, {
|
|
31240
|
+
fileName: string;
|
|
31241
|
+
settings: {
|
|
31242
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31243
|
+
format: "png" | "pdf" | "svg";
|
|
31244
|
+
prefix?: string | undefined;
|
|
31245
|
+
suffix?: string | undefined;
|
|
31246
|
+
};
|
|
31247
|
+
assetId: string;
|
|
31248
|
+
sourceUrl: string;
|
|
31249
|
+
originalName: string;
|
|
31250
|
+
}, {
|
|
31251
|
+
fileName: string;
|
|
31252
|
+
settings: {
|
|
31253
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31254
|
+
format: "png" | "pdf" | "svg";
|
|
31255
|
+
prefix?: string | undefined;
|
|
31256
|
+
suffix?: string | undefined;
|
|
31257
|
+
};
|
|
31258
|
+
assetId: string;
|
|
31259
|
+
sourceUrl: string;
|
|
31260
|
+
originalName: string;
|
|
31261
|
+
}>, "many">;
|
|
31262
|
+
}, "strip", z.ZodTypeAny, {
|
|
31263
|
+
items: {
|
|
31264
|
+
fileName: string;
|
|
31265
|
+
settings: {
|
|
31266
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31267
|
+
format: "png" | "pdf" | "svg";
|
|
31268
|
+
prefix?: string | undefined;
|
|
31269
|
+
suffix?: string | undefined;
|
|
31270
|
+
};
|
|
31271
|
+
assetId: string;
|
|
31272
|
+
sourceUrl: string;
|
|
31273
|
+
originalName: string;
|
|
31274
|
+
}[];
|
|
31275
|
+
}, {
|
|
31276
|
+
items: {
|
|
31277
|
+
fileName: string;
|
|
31278
|
+
settings: {
|
|
31279
|
+
scale: "x1" | "x2" | "x3" | "x4";
|
|
31280
|
+
format: "png" | "pdf" | "svg";
|
|
31281
|
+
prefix?: string | undefined;
|
|
31282
|
+
suffix?: string | undefined;
|
|
31283
|
+
};
|
|
31284
|
+
assetId: string;
|
|
31285
|
+
sourceUrl: string;
|
|
31286
|
+
originalName: string;
|
|
31287
|
+
}[];
|
|
31288
|
+
}>;
|
|
31289
|
+
type DTODownloadAssetsResponse = z.infer<typeof DTODownloadAssetsResponse>;
|
|
31290
|
+
|
|
31111
31291
|
declare const DTOLiveblocksAuthResponse: z.ZodObject<{
|
|
31112
31292
|
token: z.ZodString;
|
|
31113
31293
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -42034,4 +42214,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
42034
42214
|
|
|
42035
42215
|
declare function generatePageContentHash(content: DocumentationPageEditorModel): string;
|
|
42036
42216
|
|
|
42037
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
42217
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationRequest, DTORenderedAssetFile, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|