@supernova-studio/client 0.55.35 → 0.57.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +310 -5
- package/dist/index.d.ts +310 -5
- package/dist/index.js +16 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/figma-variables.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -1557,6 +1557,19 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1557
1557
|
errorReason: string;
|
|
1558
1558
|
enabled: boolean;
|
|
1559
1559
|
}>;
|
|
1560
|
+
designSystemRoles: z.ZodObject<{
|
|
1561
|
+
enabled: z.ZodBoolean;
|
|
1562
|
+
errorMessage: z.ZodString;
|
|
1563
|
+
errorReason: z.ZodString;
|
|
1564
|
+
}, "strip", z.ZodTypeAny, {
|
|
1565
|
+
errorMessage: string;
|
|
1566
|
+
errorReason: string;
|
|
1567
|
+
enabled: boolean;
|
|
1568
|
+
}, {
|
|
1569
|
+
errorMessage: string;
|
|
1570
|
+
errorReason: string;
|
|
1571
|
+
enabled: boolean;
|
|
1572
|
+
}>;
|
|
1560
1573
|
}, "strip", z.ZodTypeAny, {
|
|
1561
1574
|
designSystems: {
|
|
1562
1575
|
max: number;
|
|
@@ -1665,6 +1678,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1665
1678
|
errorReason: string;
|
|
1666
1679
|
enabled: boolean;
|
|
1667
1680
|
};
|
|
1681
|
+
designSystemRoles: {
|
|
1682
|
+
errorMessage: string;
|
|
1683
|
+
errorReason: string;
|
|
1684
|
+
enabled: boolean;
|
|
1685
|
+
};
|
|
1668
1686
|
}, {
|
|
1669
1687
|
designSystems: {
|
|
1670
1688
|
max: number;
|
|
@@ -1773,6 +1791,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1773
1791
|
errorReason: string;
|
|
1774
1792
|
enabled: boolean;
|
|
1775
1793
|
};
|
|
1794
|
+
designSystemRoles: {
|
|
1795
|
+
errorMessage: string;
|
|
1796
|
+
errorReason: string;
|
|
1797
|
+
enabled: boolean;
|
|
1798
|
+
};
|
|
1776
1799
|
}>>;
|
|
1777
1800
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
1778
1801
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1948,6 +1971,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
1948
1971
|
errorReason: string;
|
|
1949
1972
|
enabled: boolean;
|
|
1950
1973
|
};
|
|
1974
|
+
designSystemRoles: {
|
|
1975
|
+
errorMessage: string;
|
|
1976
|
+
errorReason: string;
|
|
1977
|
+
enabled: boolean;
|
|
1978
|
+
};
|
|
1951
1979
|
} | undefined;
|
|
1952
1980
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
1953
1981
|
currentPeriodStart?: string | undefined;
|
|
@@ -2090,6 +2118,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2090
2118
|
errorReason: string;
|
|
2091
2119
|
enabled: boolean;
|
|
2092
2120
|
};
|
|
2121
|
+
designSystemRoles: {
|
|
2122
|
+
errorMessage: string;
|
|
2123
|
+
errorReason: string;
|
|
2124
|
+
enabled: boolean;
|
|
2125
|
+
};
|
|
2093
2126
|
} | undefined;
|
|
2094
2127
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
2095
2128
|
currentPeriodStart?: string | undefined;
|
|
@@ -2291,6 +2324,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2291
2324
|
errorReason: string;
|
|
2292
2325
|
enabled: boolean;
|
|
2293
2326
|
};
|
|
2327
|
+
designSystemRoles: {
|
|
2328
|
+
errorMessage: string;
|
|
2329
|
+
errorReason: string;
|
|
2330
|
+
enabled: boolean;
|
|
2331
|
+
};
|
|
2294
2332
|
} | undefined;
|
|
2295
2333
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
2296
2334
|
currentPeriodStart?: string | undefined;
|
|
@@ -2470,6 +2508,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2470
2508
|
errorReason: string;
|
|
2471
2509
|
enabled: boolean;
|
|
2472
2510
|
};
|
|
2511
|
+
designSystemRoles: {
|
|
2512
|
+
errorMessage: string;
|
|
2513
|
+
errorReason: string;
|
|
2514
|
+
enabled: boolean;
|
|
2515
|
+
};
|
|
2473
2516
|
} | undefined;
|
|
2474
2517
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
2475
2518
|
currentPeriodStart?: string | undefined;
|
|
@@ -2655,6 +2698,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2655
2698
|
errorReason: string;
|
|
2656
2699
|
enabled: boolean;
|
|
2657
2700
|
};
|
|
2701
|
+
designSystemRoles: {
|
|
2702
|
+
errorMessage: string;
|
|
2703
|
+
errorReason: string;
|
|
2704
|
+
enabled: boolean;
|
|
2705
|
+
};
|
|
2658
2706
|
} | undefined;
|
|
2659
2707
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
2660
2708
|
currentPeriodStart?: string | undefined;
|
|
@@ -2838,6 +2886,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
2838
2886
|
errorReason: string;
|
|
2839
2887
|
enabled: boolean;
|
|
2840
2888
|
};
|
|
2889
|
+
designSystemRoles: {
|
|
2890
|
+
errorMessage: string;
|
|
2891
|
+
errorReason: string;
|
|
2892
|
+
enabled: boolean;
|
|
2893
|
+
};
|
|
2841
2894
|
} | undefined;
|
|
2842
2895
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
2843
2896
|
currentPeriodStart?: string | undefined;
|
|
@@ -3252,6 +3305,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3252
3305
|
errorReason: string;
|
|
3253
3306
|
enabled: boolean;
|
|
3254
3307
|
};
|
|
3308
|
+
designSystemRoles: {
|
|
3309
|
+
errorMessage: string;
|
|
3310
|
+
errorReason: string;
|
|
3311
|
+
enabled: boolean;
|
|
3312
|
+
};
|
|
3255
3313
|
} | undefined;
|
|
3256
3314
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
3257
3315
|
currentPeriodStart?: string | undefined;
|
|
@@ -3488,6 +3546,11 @@ declare const DTOAppBootstrapDataResponse: z.ZodObject<{
|
|
|
3488
3546
|
errorReason: string;
|
|
3489
3547
|
enabled: boolean;
|
|
3490
3548
|
};
|
|
3549
|
+
designSystemRoles: {
|
|
3550
|
+
errorMessage: string;
|
|
3551
|
+
errorReason: string;
|
|
3552
|
+
enabled: boolean;
|
|
3553
|
+
};
|
|
3491
3554
|
} | undefined;
|
|
3492
3555
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
3493
3556
|
currentPeriodStart?: string | undefined;
|
|
@@ -7969,12 +8032,12 @@ declare const DTOExporterPropertyListResponse: z.ZodObject<{
|
|
|
7969
8032
|
}>;
|
|
7970
8033
|
type DTOExporterPropertyListResponse = z.infer<typeof DTOExporterPropertyListResponse>;
|
|
7971
8034
|
|
|
7972
|
-
declare const DimensionsVariableScopeSchema: z.ZodEnum<["CORNER_RADIUS", "WIDTH_HEIGHT", "GAP", "STROKE_FLOAT", "EFFECT_FLOAT", "OPACITY", "FONT_SIZE", "LINE_HEIGHT", "LETTER_SPACING", "PARAGRAPH_SPACING", "PARAGRAPH_INDENT"]>;
|
|
7973
|
-
declare const StringVariableScopeSchema: z.ZodEnum<["TEXT_CONTENT", "FONT_FAMILY", "FONT_STYLE"
|
|
8035
|
+
declare const DimensionsVariableScopeSchema: z.ZodEnum<["CORNER_RADIUS", "WIDTH_HEIGHT", "GAP", "STROKE_FLOAT", "EFFECT_FLOAT", "OPACITY", "FONT_SIZE", "LINE_HEIGHT", "LETTER_SPACING", "PARAGRAPH_SPACING", "PARAGRAPH_INDENT", "FONT_WEIGHT"]>;
|
|
8036
|
+
declare const StringVariableScopeSchema: z.ZodEnum<["TEXT_CONTENT", "FONT_FAMILY", "FONT_STYLE"]>;
|
|
7974
8037
|
type DimensionsVariableScopeType = z.infer<typeof DimensionsVariableScopeSchema>;
|
|
7975
|
-
declare const DimensionsVariableScopeType: z.Values<["CORNER_RADIUS", "WIDTH_HEIGHT", "GAP", "STROKE_FLOAT", "EFFECT_FLOAT", "OPACITY", "FONT_SIZE", "LINE_HEIGHT", "LETTER_SPACING", "PARAGRAPH_SPACING", "PARAGRAPH_INDENT"]>;
|
|
8038
|
+
declare const DimensionsVariableScopeType: z.Values<["CORNER_RADIUS", "WIDTH_HEIGHT", "GAP", "STROKE_FLOAT", "EFFECT_FLOAT", "OPACITY", "FONT_SIZE", "LINE_HEIGHT", "LETTER_SPACING", "PARAGRAPH_SPACING", "PARAGRAPH_INDENT", "FONT_WEIGHT"]>;
|
|
7976
8039
|
type StringVariableScopeType = z.infer<typeof StringVariableScopeSchema>;
|
|
7977
|
-
declare const StringVariableScopeType: z.Values<["TEXT_CONTENT", "FONT_FAMILY", "FONT_STYLE"
|
|
8040
|
+
declare const StringVariableScopeType: z.Values<["TEXT_CONTENT", "FONT_FAMILY", "FONT_STYLE"]>;
|
|
7978
8041
|
declare const RGB: z.ZodObject<{
|
|
7979
8042
|
r: z.ZodNumber;
|
|
7980
8043
|
g: z.ZodNumber;
|
|
@@ -46263,6 +46326,19 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
46263
46326
|
errorReason: string;
|
|
46264
46327
|
enabled: boolean;
|
|
46265
46328
|
}>;
|
|
46329
|
+
designSystemRoles: z.ZodObject<{
|
|
46330
|
+
enabled: z.ZodBoolean;
|
|
46331
|
+
errorMessage: z.ZodString;
|
|
46332
|
+
errorReason: z.ZodString;
|
|
46333
|
+
}, "strip", z.ZodTypeAny, {
|
|
46334
|
+
errorMessage: string;
|
|
46335
|
+
errorReason: string;
|
|
46336
|
+
enabled: boolean;
|
|
46337
|
+
}, {
|
|
46338
|
+
errorMessage: string;
|
|
46339
|
+
errorReason: string;
|
|
46340
|
+
enabled: boolean;
|
|
46341
|
+
}>;
|
|
46266
46342
|
}, "strip", z.ZodTypeAny, {
|
|
46267
46343
|
designSystems: {
|
|
46268
46344
|
max: number;
|
|
@@ -46371,6 +46447,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
46371
46447
|
errorReason: string;
|
|
46372
46448
|
enabled: boolean;
|
|
46373
46449
|
};
|
|
46450
|
+
designSystemRoles: {
|
|
46451
|
+
errorMessage: string;
|
|
46452
|
+
errorReason: string;
|
|
46453
|
+
enabled: boolean;
|
|
46454
|
+
};
|
|
46374
46455
|
}, {
|
|
46375
46456
|
designSystems: {
|
|
46376
46457
|
max: number;
|
|
@@ -46479,6 +46560,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
46479
46560
|
errorReason: string;
|
|
46480
46561
|
enabled: boolean;
|
|
46481
46562
|
};
|
|
46563
|
+
designSystemRoles: {
|
|
46564
|
+
errorMessage: string;
|
|
46565
|
+
errorReason: string;
|
|
46566
|
+
enabled: boolean;
|
|
46567
|
+
};
|
|
46482
46568
|
}>>;
|
|
46483
46569
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
46484
46570
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -46654,6 +46740,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
46654
46740
|
errorReason: string;
|
|
46655
46741
|
enabled: boolean;
|
|
46656
46742
|
};
|
|
46743
|
+
designSystemRoles: {
|
|
46744
|
+
errorMessage: string;
|
|
46745
|
+
errorReason: string;
|
|
46746
|
+
enabled: boolean;
|
|
46747
|
+
};
|
|
46657
46748
|
} | undefined;
|
|
46658
46749
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
46659
46750
|
currentPeriodStart?: string | undefined;
|
|
@@ -46796,6 +46887,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
46796
46887
|
errorReason: string;
|
|
46797
46888
|
enabled: boolean;
|
|
46798
46889
|
};
|
|
46890
|
+
designSystemRoles: {
|
|
46891
|
+
errorMessage: string;
|
|
46892
|
+
errorReason: string;
|
|
46893
|
+
enabled: boolean;
|
|
46894
|
+
};
|
|
46799
46895
|
} | undefined;
|
|
46800
46896
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
46801
46897
|
currentPeriodStart?: string | undefined;
|
|
@@ -46997,6 +47093,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
46997
47093
|
errorReason: string;
|
|
46998
47094
|
enabled: boolean;
|
|
46999
47095
|
};
|
|
47096
|
+
designSystemRoles: {
|
|
47097
|
+
errorMessage: string;
|
|
47098
|
+
errorReason: string;
|
|
47099
|
+
enabled: boolean;
|
|
47100
|
+
};
|
|
47000
47101
|
} | undefined;
|
|
47001
47102
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
47002
47103
|
currentPeriodStart?: string | undefined;
|
|
@@ -47176,6 +47277,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
47176
47277
|
errorReason: string;
|
|
47177
47278
|
enabled: boolean;
|
|
47178
47279
|
};
|
|
47280
|
+
designSystemRoles: {
|
|
47281
|
+
errorMessage: string;
|
|
47282
|
+
errorReason: string;
|
|
47283
|
+
enabled: boolean;
|
|
47284
|
+
};
|
|
47179
47285
|
} | undefined;
|
|
47180
47286
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
47181
47287
|
currentPeriodStart?: string | undefined;
|
|
@@ -47361,6 +47467,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
47361
47467
|
errorReason: string;
|
|
47362
47468
|
enabled: boolean;
|
|
47363
47469
|
};
|
|
47470
|
+
designSystemRoles: {
|
|
47471
|
+
errorMessage: string;
|
|
47472
|
+
errorReason: string;
|
|
47473
|
+
enabled: boolean;
|
|
47474
|
+
};
|
|
47364
47475
|
} | undefined;
|
|
47365
47476
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
47366
47477
|
currentPeriodStart?: string | undefined;
|
|
@@ -47544,6 +47655,11 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
47544
47655
|
errorReason: string;
|
|
47545
47656
|
enabled: boolean;
|
|
47546
47657
|
};
|
|
47658
|
+
designSystemRoles: {
|
|
47659
|
+
errorMessage: string;
|
|
47660
|
+
errorReason: string;
|
|
47661
|
+
enabled: boolean;
|
|
47662
|
+
};
|
|
47547
47663
|
} | undefined;
|
|
47548
47664
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
47549
47665
|
currentPeriodStart?: string | undefined;
|
|
@@ -47969,6 +48085,19 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
47969
48085
|
errorReason: string;
|
|
47970
48086
|
enabled: boolean;
|
|
47971
48087
|
}>;
|
|
48088
|
+
designSystemRoles: z.ZodObject<{
|
|
48089
|
+
enabled: z.ZodBoolean;
|
|
48090
|
+
errorMessage: z.ZodString;
|
|
48091
|
+
errorReason: z.ZodString;
|
|
48092
|
+
}, "strip", z.ZodTypeAny, {
|
|
48093
|
+
errorMessage: string;
|
|
48094
|
+
errorReason: string;
|
|
48095
|
+
enabled: boolean;
|
|
48096
|
+
}, {
|
|
48097
|
+
errorMessage: string;
|
|
48098
|
+
errorReason: string;
|
|
48099
|
+
enabled: boolean;
|
|
48100
|
+
}>;
|
|
47972
48101
|
}, "strip", z.ZodTypeAny, {
|
|
47973
48102
|
designSystems: {
|
|
47974
48103
|
max: number;
|
|
@@ -48077,6 +48206,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
48077
48206
|
errorReason: string;
|
|
48078
48207
|
enabled: boolean;
|
|
48079
48208
|
};
|
|
48209
|
+
designSystemRoles: {
|
|
48210
|
+
errorMessage: string;
|
|
48211
|
+
errorReason: string;
|
|
48212
|
+
enabled: boolean;
|
|
48213
|
+
};
|
|
48080
48214
|
}, {
|
|
48081
48215
|
designSystems: {
|
|
48082
48216
|
max: number;
|
|
@@ -48185,6 +48319,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
48185
48319
|
errorReason: string;
|
|
48186
48320
|
enabled: boolean;
|
|
48187
48321
|
};
|
|
48322
|
+
designSystemRoles: {
|
|
48323
|
+
errorMessage: string;
|
|
48324
|
+
errorReason: string;
|
|
48325
|
+
enabled: boolean;
|
|
48326
|
+
};
|
|
48188
48327
|
}>>;
|
|
48189
48328
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
48190
48329
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -48360,6 +48499,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
48360
48499
|
errorReason: string;
|
|
48361
48500
|
enabled: boolean;
|
|
48362
48501
|
};
|
|
48502
|
+
designSystemRoles: {
|
|
48503
|
+
errorMessage: string;
|
|
48504
|
+
errorReason: string;
|
|
48505
|
+
enabled: boolean;
|
|
48506
|
+
};
|
|
48363
48507
|
} | undefined;
|
|
48364
48508
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
48365
48509
|
currentPeriodStart?: string | undefined;
|
|
@@ -48502,6 +48646,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
48502
48646
|
errorReason: string;
|
|
48503
48647
|
enabled: boolean;
|
|
48504
48648
|
};
|
|
48649
|
+
designSystemRoles: {
|
|
48650
|
+
errorMessage: string;
|
|
48651
|
+
errorReason: string;
|
|
48652
|
+
enabled: boolean;
|
|
48653
|
+
};
|
|
48505
48654
|
} | undefined;
|
|
48506
48655
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
48507
48656
|
currentPeriodStart?: string | undefined;
|
|
@@ -48703,6 +48852,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
48703
48852
|
errorReason: string;
|
|
48704
48853
|
enabled: boolean;
|
|
48705
48854
|
};
|
|
48855
|
+
designSystemRoles: {
|
|
48856
|
+
errorMessage: string;
|
|
48857
|
+
errorReason: string;
|
|
48858
|
+
enabled: boolean;
|
|
48859
|
+
};
|
|
48706
48860
|
} | undefined;
|
|
48707
48861
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
48708
48862
|
currentPeriodStart?: string | undefined;
|
|
@@ -48882,6 +49036,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
48882
49036
|
errorReason: string;
|
|
48883
49037
|
enabled: boolean;
|
|
48884
49038
|
};
|
|
49039
|
+
designSystemRoles: {
|
|
49040
|
+
errorMessage: string;
|
|
49041
|
+
errorReason: string;
|
|
49042
|
+
enabled: boolean;
|
|
49043
|
+
};
|
|
48885
49044
|
} | undefined;
|
|
48886
49045
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
48887
49046
|
currentPeriodStart?: string | undefined;
|
|
@@ -49067,6 +49226,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
49067
49226
|
errorReason: string;
|
|
49068
49227
|
enabled: boolean;
|
|
49069
49228
|
};
|
|
49229
|
+
designSystemRoles: {
|
|
49230
|
+
errorMessage: string;
|
|
49231
|
+
errorReason: string;
|
|
49232
|
+
enabled: boolean;
|
|
49233
|
+
};
|
|
49070
49234
|
} | undefined;
|
|
49071
49235
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
49072
49236
|
currentPeriodStart?: string | undefined;
|
|
@@ -49250,6 +49414,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
49250
49414
|
errorReason: string;
|
|
49251
49415
|
enabled: boolean;
|
|
49252
49416
|
};
|
|
49417
|
+
designSystemRoles: {
|
|
49418
|
+
errorMessage: string;
|
|
49419
|
+
errorReason: string;
|
|
49420
|
+
enabled: boolean;
|
|
49421
|
+
};
|
|
49253
49422
|
} | undefined;
|
|
49254
49423
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
49255
49424
|
currentPeriodStart?: string | undefined;
|
|
@@ -49435,6 +49604,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
49435
49604
|
errorReason: string;
|
|
49436
49605
|
enabled: boolean;
|
|
49437
49606
|
};
|
|
49607
|
+
designSystemRoles: {
|
|
49608
|
+
errorMessage: string;
|
|
49609
|
+
errorReason: string;
|
|
49610
|
+
enabled: boolean;
|
|
49611
|
+
};
|
|
49438
49612
|
} | undefined;
|
|
49439
49613
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
49440
49614
|
currentPeriodStart?: string | undefined;
|
|
@@ -49620,6 +49794,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
49620
49794
|
errorReason: string;
|
|
49621
49795
|
enabled: boolean;
|
|
49622
49796
|
};
|
|
49797
|
+
designSystemRoles: {
|
|
49798
|
+
errorMessage: string;
|
|
49799
|
+
errorReason: string;
|
|
49800
|
+
enabled: boolean;
|
|
49801
|
+
};
|
|
49623
49802
|
} | undefined;
|
|
49624
49803
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
49625
49804
|
currentPeriodStart?: string | undefined;
|
|
@@ -50816,6 +50995,19 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
50816
50995
|
errorReason: string;
|
|
50817
50996
|
enabled: boolean;
|
|
50818
50997
|
}>;
|
|
50998
|
+
designSystemRoles: z.ZodObject<{
|
|
50999
|
+
enabled: z.ZodBoolean;
|
|
51000
|
+
errorMessage: z.ZodString;
|
|
51001
|
+
errorReason: z.ZodString;
|
|
51002
|
+
}, "strip", z.ZodTypeAny, {
|
|
51003
|
+
errorMessage: string;
|
|
51004
|
+
errorReason: string;
|
|
51005
|
+
enabled: boolean;
|
|
51006
|
+
}, {
|
|
51007
|
+
errorMessage: string;
|
|
51008
|
+
errorReason: string;
|
|
51009
|
+
enabled: boolean;
|
|
51010
|
+
}>;
|
|
50819
51011
|
}, "strip", z.ZodTypeAny, {
|
|
50820
51012
|
designSystems: {
|
|
50821
51013
|
max: number;
|
|
@@ -50924,6 +51116,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
50924
51116
|
errorReason: string;
|
|
50925
51117
|
enabled: boolean;
|
|
50926
51118
|
};
|
|
51119
|
+
designSystemRoles: {
|
|
51120
|
+
errorMessage: string;
|
|
51121
|
+
errorReason: string;
|
|
51122
|
+
enabled: boolean;
|
|
51123
|
+
};
|
|
50927
51124
|
}, {
|
|
50928
51125
|
designSystems: {
|
|
50929
51126
|
max: number;
|
|
@@ -51032,6 +51229,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
51032
51229
|
errorReason: string;
|
|
51033
51230
|
enabled: boolean;
|
|
51034
51231
|
};
|
|
51232
|
+
designSystemRoles: {
|
|
51233
|
+
errorMessage: string;
|
|
51234
|
+
errorReason: string;
|
|
51235
|
+
enabled: boolean;
|
|
51236
|
+
};
|
|
51035
51237
|
}>>;
|
|
51036
51238
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
51037
51239
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -51207,6 +51409,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
51207
51409
|
errorReason: string;
|
|
51208
51410
|
enabled: boolean;
|
|
51209
51411
|
};
|
|
51412
|
+
designSystemRoles: {
|
|
51413
|
+
errorMessage: string;
|
|
51414
|
+
errorReason: string;
|
|
51415
|
+
enabled: boolean;
|
|
51416
|
+
};
|
|
51210
51417
|
} | undefined;
|
|
51211
51418
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
51212
51419
|
currentPeriodStart?: string | undefined;
|
|
@@ -51349,6 +51556,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
51349
51556
|
errorReason: string;
|
|
51350
51557
|
enabled: boolean;
|
|
51351
51558
|
};
|
|
51559
|
+
designSystemRoles: {
|
|
51560
|
+
errorMessage: string;
|
|
51561
|
+
errorReason: string;
|
|
51562
|
+
enabled: boolean;
|
|
51563
|
+
};
|
|
51352
51564
|
} | undefined;
|
|
51353
51565
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
51354
51566
|
currentPeriodStart?: string | undefined;
|
|
@@ -51550,6 +51762,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
51550
51762
|
errorReason: string;
|
|
51551
51763
|
enabled: boolean;
|
|
51552
51764
|
};
|
|
51765
|
+
designSystemRoles: {
|
|
51766
|
+
errorMessage: string;
|
|
51767
|
+
errorReason: string;
|
|
51768
|
+
enabled: boolean;
|
|
51769
|
+
};
|
|
51553
51770
|
} | undefined;
|
|
51554
51771
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
51555
51772
|
currentPeriodStart?: string | undefined;
|
|
@@ -51729,6 +51946,11 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
51729
51946
|
errorReason: string;
|
|
51730
51947
|
enabled: boolean;
|
|
51731
51948
|
};
|
|
51949
|
+
designSystemRoles: {
|
|
51950
|
+
errorMessage: string;
|
|
51951
|
+
errorReason: string;
|
|
51952
|
+
enabled: boolean;
|
|
51953
|
+
};
|
|
51732
51954
|
} | undefined;
|
|
51733
51955
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
51734
51956
|
currentPeriodStart?: string | undefined;
|
|
@@ -52160,6 +52382,19 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
52160
52382
|
errorReason: string;
|
|
52161
52383
|
enabled: boolean;
|
|
52162
52384
|
}>;
|
|
52385
|
+
designSystemRoles: z.ZodObject<{
|
|
52386
|
+
enabled: z.ZodBoolean;
|
|
52387
|
+
errorMessage: z.ZodString;
|
|
52388
|
+
errorReason: z.ZodString;
|
|
52389
|
+
}, "strip", z.ZodTypeAny, {
|
|
52390
|
+
errorMessage: string;
|
|
52391
|
+
errorReason: string;
|
|
52392
|
+
enabled: boolean;
|
|
52393
|
+
}, {
|
|
52394
|
+
errorMessage: string;
|
|
52395
|
+
errorReason: string;
|
|
52396
|
+
enabled: boolean;
|
|
52397
|
+
}>;
|
|
52163
52398
|
}, "strip", z.ZodTypeAny, {
|
|
52164
52399
|
designSystems: {
|
|
52165
52400
|
max: number;
|
|
@@ -52268,6 +52503,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
52268
52503
|
errorReason: string;
|
|
52269
52504
|
enabled: boolean;
|
|
52270
52505
|
};
|
|
52506
|
+
designSystemRoles: {
|
|
52507
|
+
errorMessage: string;
|
|
52508
|
+
errorReason: string;
|
|
52509
|
+
enabled: boolean;
|
|
52510
|
+
};
|
|
52271
52511
|
}, {
|
|
52272
52512
|
designSystems: {
|
|
52273
52513
|
max: number;
|
|
@@ -52376,6 +52616,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
52376
52616
|
errorReason: string;
|
|
52377
52617
|
enabled: boolean;
|
|
52378
52618
|
};
|
|
52619
|
+
designSystemRoles: {
|
|
52620
|
+
errorMessage: string;
|
|
52621
|
+
errorReason: string;
|
|
52622
|
+
enabled: boolean;
|
|
52623
|
+
};
|
|
52379
52624
|
}>>;
|
|
52380
52625
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
52381
52626
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -52551,6 +52796,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
52551
52796
|
errorReason: string;
|
|
52552
52797
|
enabled: boolean;
|
|
52553
52798
|
};
|
|
52799
|
+
designSystemRoles: {
|
|
52800
|
+
errorMessage: string;
|
|
52801
|
+
errorReason: string;
|
|
52802
|
+
enabled: boolean;
|
|
52803
|
+
};
|
|
52554
52804
|
} | undefined;
|
|
52555
52805
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
52556
52806
|
currentPeriodStart?: string | undefined;
|
|
@@ -52693,6 +52943,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
52693
52943
|
errorReason: string;
|
|
52694
52944
|
enabled: boolean;
|
|
52695
52945
|
};
|
|
52946
|
+
designSystemRoles: {
|
|
52947
|
+
errorMessage: string;
|
|
52948
|
+
errorReason: string;
|
|
52949
|
+
enabled: boolean;
|
|
52950
|
+
};
|
|
52696
52951
|
} | undefined;
|
|
52697
52952
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
52698
52953
|
currentPeriodStart?: string | undefined;
|
|
@@ -52894,6 +53149,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
52894
53149
|
errorReason: string;
|
|
52895
53150
|
enabled: boolean;
|
|
52896
53151
|
};
|
|
53152
|
+
designSystemRoles: {
|
|
53153
|
+
errorMessage: string;
|
|
53154
|
+
errorReason: string;
|
|
53155
|
+
enabled: boolean;
|
|
53156
|
+
};
|
|
52897
53157
|
} | undefined;
|
|
52898
53158
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
52899
53159
|
currentPeriodStart?: string | undefined;
|
|
@@ -53073,6 +53333,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
53073
53333
|
errorReason: string;
|
|
53074
53334
|
enabled: boolean;
|
|
53075
53335
|
};
|
|
53336
|
+
designSystemRoles: {
|
|
53337
|
+
errorMessage: string;
|
|
53338
|
+
errorReason: string;
|
|
53339
|
+
enabled: boolean;
|
|
53340
|
+
};
|
|
53076
53341
|
} | undefined;
|
|
53077
53342
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
53078
53343
|
currentPeriodStart?: string | undefined;
|
|
@@ -53254,6 +53519,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
53254
53519
|
errorReason: string;
|
|
53255
53520
|
enabled: boolean;
|
|
53256
53521
|
};
|
|
53522
|
+
designSystemRoles: {
|
|
53523
|
+
errorMessage: string;
|
|
53524
|
+
errorReason: string;
|
|
53525
|
+
enabled: boolean;
|
|
53526
|
+
};
|
|
53257
53527
|
} | undefined;
|
|
53258
53528
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
53259
53529
|
currentPeriodStart?: string | undefined;
|
|
@@ -53435,6 +53705,11 @@ declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
|
53435
53705
|
errorReason: string;
|
|
53436
53706
|
enabled: boolean;
|
|
53437
53707
|
};
|
|
53708
|
+
designSystemRoles: {
|
|
53709
|
+
errorMessage: string;
|
|
53710
|
+
errorReason: string;
|
|
53711
|
+
enabled: boolean;
|
|
53712
|
+
};
|
|
53438
53713
|
} | undefined;
|
|
53439
53714
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
53440
53715
|
currentPeriodStart?: string | undefined;
|
|
@@ -56593,6 +56868,11 @@ declare class WorkspaceInvitationsEndpoint {
|
|
|
56593
56868
|
errorReason: string;
|
|
56594
56869
|
enabled: boolean;
|
|
56595
56870
|
};
|
|
56871
|
+
designSystemRoles: {
|
|
56872
|
+
errorMessage: string;
|
|
56873
|
+
errorReason: string;
|
|
56874
|
+
enabled: boolean;
|
|
56875
|
+
};
|
|
56596
56876
|
} | undefined;
|
|
56597
56877
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
56598
56878
|
currentPeriodStart?: string | undefined;
|
|
@@ -56857,6 +57137,11 @@ declare class WorkspaceMembersEndpoint {
|
|
|
56857
57137
|
errorReason: string;
|
|
56858
57138
|
enabled: boolean;
|
|
56859
57139
|
};
|
|
57140
|
+
designSystemRoles: {
|
|
57141
|
+
errorMessage: string;
|
|
57142
|
+
errorReason: string;
|
|
57143
|
+
enabled: boolean;
|
|
57144
|
+
};
|
|
56860
57145
|
} | undefined;
|
|
56861
57146
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
56862
57147
|
currentPeriodStart?: string | undefined;
|
|
@@ -57040,6 +57325,11 @@ declare class WorkspaceMembersEndpoint {
|
|
|
57040
57325
|
errorReason: string;
|
|
57041
57326
|
enabled: boolean;
|
|
57042
57327
|
};
|
|
57328
|
+
designSystemRoles: {
|
|
57329
|
+
errorMessage: string;
|
|
57330
|
+
errorReason: string;
|
|
57331
|
+
enabled: boolean;
|
|
57332
|
+
};
|
|
57043
57333
|
} | undefined;
|
|
57044
57334
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
57045
57335
|
currentPeriodStart?: string | undefined;
|
|
@@ -57229,6 +57519,11 @@ declare class WorkspacesEndpoint {
|
|
|
57229
57519
|
errorReason: string;
|
|
57230
57520
|
enabled: boolean;
|
|
57231
57521
|
};
|
|
57522
|
+
designSystemRoles: {
|
|
57523
|
+
errorMessage: string;
|
|
57524
|
+
errorReason: string;
|
|
57525
|
+
enabled: boolean;
|
|
57526
|
+
};
|
|
57232
57527
|
} | undefined;
|
|
57233
57528
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
57234
57529
|
currentPeriodStart?: string | undefined;
|
|
@@ -57411,6 +57706,11 @@ declare class WorkspacesEndpoint {
|
|
|
57411
57706
|
errorReason: string;
|
|
57412
57707
|
enabled: boolean;
|
|
57413
57708
|
};
|
|
57709
|
+
designSystemRoles: {
|
|
57710
|
+
errorMessage: string;
|
|
57711
|
+
errorReason: string;
|
|
57712
|
+
enabled: boolean;
|
|
57713
|
+
};
|
|
57414
57714
|
} | undefined;
|
|
57415
57715
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
57416
57716
|
currentPeriodStart?: string | undefined;
|
|
@@ -57651,6 +57951,11 @@ declare class UsersEndpoint {
|
|
|
57651
57951
|
errorReason: string;
|
|
57652
57952
|
enabled: boolean;
|
|
57653
57953
|
};
|
|
57954
|
+
designSystemRoles: {
|
|
57955
|
+
errorMessage: string;
|
|
57956
|
+
errorReason: string;
|
|
57957
|
+
enabled: boolean;
|
|
57958
|
+
};
|
|
57654
57959
|
} | undefined;
|
|
57655
57960
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
57656
57961
|
currentPeriodStart?: string | undefined;
|
|
@@ -60293,4 +60598,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
60293
60598
|
|
|
60294
60599
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
60295
60600
|
|
|
60296
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateThemeInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, 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, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FormattedCollections, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, TokenCollectionsEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, 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, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
60601
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateThemeInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, 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, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FormattedCollections, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, TokenCollectionsEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, 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, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|