@supernova-studio/client 0.58.4 → 0.58.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +525 -40
- package/dist/index.d.ts +525 -40
- package/dist/index.js +98 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +982 -886
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/component.ts +10 -0
- package/src/api/dto/design-systems/index.ts +1 -0
- package/src/api/dto/elements/documentation/index.ts +1 -0
- package/src/api/dto/elements/documentation/structure.ts +37 -0
- package/src/api/endpoints/design-system/versions/brands.ts +12 -0
- package/src/api/endpoints/design-system/versions/components.ts +15 -0
- package/src/api/endpoints/design-system/versions/elements-actions.ts +20 -0
- package/src/api/endpoints/design-system/versions/index.ts +2 -0
- package/src/api/endpoints/design-system/versions/versions.ts +6 -0
package/dist/index.d.mts
CHANGED
|
@@ -3980,6 +3980,36 @@ declare const DTOBrandsListResponse: z.ZodObject<{
|
|
|
3980
3980
|
}>;
|
|
3981
3981
|
type DTOBrandsListResponse = z.infer<typeof DTOBrandsListResponse>;
|
|
3982
3982
|
|
|
3983
|
+
declare const DTODesignSystemComponentCreateInput: z.ZodObject<{
|
|
3984
|
+
brandId: z.ZodString;
|
|
3985
|
+
persistentId: z.ZodString;
|
|
3986
|
+
meta: z.ZodObject<{
|
|
3987
|
+
name: z.ZodString;
|
|
3988
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3989
|
+
}, "strip", z.ZodTypeAny, {
|
|
3990
|
+
name: string;
|
|
3991
|
+
description?: string | undefined;
|
|
3992
|
+
}, {
|
|
3993
|
+
name: string;
|
|
3994
|
+
description?: string | undefined;
|
|
3995
|
+
}>;
|
|
3996
|
+
}, "strip", z.ZodTypeAny, {
|
|
3997
|
+
persistentId: string;
|
|
3998
|
+
meta: {
|
|
3999
|
+
name: string;
|
|
4000
|
+
description?: string | undefined;
|
|
4001
|
+
};
|
|
4002
|
+
brandId: string;
|
|
4003
|
+
}, {
|
|
4004
|
+
persistentId: string;
|
|
4005
|
+
meta: {
|
|
4006
|
+
name: string;
|
|
4007
|
+
description?: string | undefined;
|
|
4008
|
+
};
|
|
4009
|
+
brandId: string;
|
|
4010
|
+
}>;
|
|
4011
|
+
type DTODesignSystemComponentCreateInput = z.infer<typeof DTODesignSystemComponentCreateInput>;
|
|
4012
|
+
|
|
3983
4013
|
declare const DTODesignSystemContactsResponse: z.ZodObject<{
|
|
3984
4014
|
contacts: z.ZodObject<{
|
|
3985
4015
|
workspace: z.ZodArray<z.ZodObject<{
|
|
@@ -4707,6 +4737,7 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
4707
4737
|
}, "strip", z.ZodTypeAny, {
|
|
4708
4738
|
type: "Figma";
|
|
4709
4739
|
id: string;
|
|
4740
|
+
brandId: string;
|
|
4710
4741
|
fileName: string;
|
|
4711
4742
|
scope: {
|
|
4712
4743
|
assets: boolean;
|
|
@@ -4716,7 +4747,6 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
4716
4747
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
4717
4748
|
themePersistentId?: string | undefined;
|
|
4718
4749
|
};
|
|
4719
|
-
brandId: string;
|
|
4720
4750
|
themeId?: string | null | undefined;
|
|
4721
4751
|
cloud?: {
|
|
4722
4752
|
fileId: string;
|
|
@@ -4775,6 +4805,7 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
4775
4805
|
}, {
|
|
4776
4806
|
type: "Figma";
|
|
4777
4807
|
id: string;
|
|
4808
|
+
brandId: string;
|
|
4778
4809
|
fileName: string;
|
|
4779
4810
|
scope: {
|
|
4780
4811
|
assets: boolean;
|
|
@@ -4784,7 +4815,6 @@ declare const DTODataSourceFigma: z.ZodObject<{
|
|
|
4784
4815
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
4785
4816
|
themePersistentId?: string | undefined;
|
|
4786
4817
|
};
|
|
4787
|
-
brandId: string;
|
|
4788
4818
|
themeId?: string | null | undefined;
|
|
4789
4819
|
cloud?: {
|
|
4790
4820
|
fileId: string;
|
|
@@ -4945,8 +4975,8 @@ declare const DTODataSourceTokenStudio: z.ZodObject<{
|
|
|
4945
4975
|
}, "strip", z.ZodTypeAny, {
|
|
4946
4976
|
type: "TokenStudio";
|
|
4947
4977
|
id: string;
|
|
4948
|
-
fileName: string;
|
|
4949
4978
|
brandId: string;
|
|
4979
|
+
fileName: string;
|
|
4950
4980
|
tokenStudio: {
|
|
4951
4981
|
lastImportedAt: Date;
|
|
4952
4982
|
settings: {
|
|
@@ -4971,8 +5001,8 @@ declare const DTODataSourceTokenStudio: z.ZodObject<{
|
|
|
4971
5001
|
}, {
|
|
4972
5002
|
type: "TokenStudio";
|
|
4973
5003
|
id: string;
|
|
4974
|
-
fileName: string;
|
|
4975
5004
|
brandId: string;
|
|
5005
|
+
fileName: string;
|
|
4976
5006
|
tokenStudio: {
|
|
4977
5007
|
lastImportedAt: Date;
|
|
4978
5008
|
settings: {
|
|
@@ -5042,8 +5072,8 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5042
5072
|
}, "strip", z.ZodTypeAny, {
|
|
5043
5073
|
type: "FigmaVariablesPlugin";
|
|
5044
5074
|
id: string;
|
|
5045
|
-
fileName: string;
|
|
5046
5075
|
brandId: string;
|
|
5076
|
+
fileName: string;
|
|
5047
5077
|
upload: {
|
|
5048
5078
|
remoteId: string;
|
|
5049
5079
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -5061,8 +5091,8 @@ declare const DTODataSourceFigmaVariablesPlugin: z.ZodObject<{
|
|
|
5061
5091
|
}, {
|
|
5062
5092
|
type: "FigmaVariablesPlugin";
|
|
5063
5093
|
id: string;
|
|
5064
|
-
fileName: string;
|
|
5065
5094
|
brandId: string;
|
|
5095
|
+
fileName: string;
|
|
5066
5096
|
upload: {
|
|
5067
5097
|
remoteId: string;
|
|
5068
5098
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -5382,6 +5412,7 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5382
5412
|
}, "strip", z.ZodTypeAny, {
|
|
5383
5413
|
type: "Figma";
|
|
5384
5414
|
id: string;
|
|
5415
|
+
brandId: string;
|
|
5385
5416
|
fileName: string;
|
|
5386
5417
|
scope: {
|
|
5387
5418
|
assets: boolean;
|
|
@@ -5391,7 +5422,6 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5391
5422
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
5392
5423
|
themePersistentId?: string | undefined;
|
|
5393
5424
|
};
|
|
5394
|
-
brandId: string;
|
|
5395
5425
|
themeId?: string | null | undefined;
|
|
5396
5426
|
cloud?: {
|
|
5397
5427
|
fileId: string;
|
|
@@ -5450,6 +5480,7 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5450
5480
|
}, {
|
|
5451
5481
|
type: "Figma";
|
|
5452
5482
|
id: string;
|
|
5483
|
+
brandId: string;
|
|
5453
5484
|
fileName: string;
|
|
5454
5485
|
scope: {
|
|
5455
5486
|
assets: boolean;
|
|
@@ -5459,7 +5490,6 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5459
5490
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
5460
5491
|
themePersistentId?: string | undefined;
|
|
5461
5492
|
};
|
|
5462
|
-
brandId: string;
|
|
5463
5493
|
themeId?: string | null | undefined;
|
|
5464
5494
|
cloud?: {
|
|
5465
5495
|
fileId: string;
|
|
@@ -5561,8 +5591,8 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5561
5591
|
}, "strip", z.ZodTypeAny, {
|
|
5562
5592
|
type: "FigmaVariablesPlugin";
|
|
5563
5593
|
id: string;
|
|
5564
|
-
fileName: string;
|
|
5565
5594
|
brandId: string;
|
|
5595
|
+
fileName: string;
|
|
5566
5596
|
upload: {
|
|
5567
5597
|
remoteId: string;
|
|
5568
5598
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -5580,8 +5610,8 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5580
5610
|
}, {
|
|
5581
5611
|
type: "FigmaVariablesPlugin";
|
|
5582
5612
|
id: string;
|
|
5583
|
-
fileName: string;
|
|
5584
5613
|
brandId: string;
|
|
5614
|
+
fileName: string;
|
|
5585
5615
|
upload: {
|
|
5586
5616
|
remoteId: string;
|
|
5587
5617
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -5699,8 +5729,8 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5699
5729
|
}, "strip", z.ZodTypeAny, {
|
|
5700
5730
|
type: "TokenStudio";
|
|
5701
5731
|
id: string;
|
|
5702
|
-
fileName: string;
|
|
5703
5732
|
brandId: string;
|
|
5733
|
+
fileName: string;
|
|
5704
5734
|
tokenStudio: {
|
|
5705
5735
|
lastImportedAt: Date;
|
|
5706
5736
|
settings: {
|
|
@@ -5725,8 +5755,8 @@ declare const DTODataSource: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
5725
5755
|
}, {
|
|
5726
5756
|
type: "TokenStudio";
|
|
5727
5757
|
id: string;
|
|
5728
|
-
fileName: string;
|
|
5729
5758
|
brandId: string;
|
|
5759
|
+
fileName: string;
|
|
5730
5760
|
tokenStudio: {
|
|
5731
5761
|
lastImportedAt: Date;
|
|
5732
5762
|
settings: {
|
|
@@ -6054,6 +6084,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6054
6084
|
}, "strip", z.ZodTypeAny, {
|
|
6055
6085
|
type: "Figma";
|
|
6056
6086
|
id: string;
|
|
6087
|
+
brandId: string;
|
|
6057
6088
|
fileName: string;
|
|
6058
6089
|
scope: {
|
|
6059
6090
|
assets: boolean;
|
|
@@ -6063,7 +6094,6 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6063
6094
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
6064
6095
|
themePersistentId?: string | undefined;
|
|
6065
6096
|
};
|
|
6066
|
-
brandId: string;
|
|
6067
6097
|
themeId?: string | null | undefined;
|
|
6068
6098
|
cloud?: {
|
|
6069
6099
|
fileId: string;
|
|
@@ -6122,6 +6152,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6122
6152
|
}, {
|
|
6123
6153
|
type: "Figma";
|
|
6124
6154
|
id: string;
|
|
6155
|
+
brandId: string;
|
|
6125
6156
|
fileName: string;
|
|
6126
6157
|
scope: {
|
|
6127
6158
|
assets: boolean;
|
|
@@ -6131,7 +6162,6 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6131
6162
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
6132
6163
|
themePersistentId?: string | undefined;
|
|
6133
6164
|
};
|
|
6134
|
-
brandId: string;
|
|
6135
6165
|
themeId?: string | null | undefined;
|
|
6136
6166
|
cloud?: {
|
|
6137
6167
|
fileId: string;
|
|
@@ -6233,8 +6263,8 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6233
6263
|
}, "strip", z.ZodTypeAny, {
|
|
6234
6264
|
type: "FigmaVariablesPlugin";
|
|
6235
6265
|
id: string;
|
|
6236
|
-
fileName: string;
|
|
6237
6266
|
brandId: string;
|
|
6267
|
+
fileName: string;
|
|
6238
6268
|
upload: {
|
|
6239
6269
|
remoteId: string;
|
|
6240
6270
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -6252,8 +6282,8 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6252
6282
|
}, {
|
|
6253
6283
|
type: "FigmaVariablesPlugin";
|
|
6254
6284
|
id: string;
|
|
6255
|
-
fileName: string;
|
|
6256
6285
|
brandId: string;
|
|
6286
|
+
fileName: string;
|
|
6257
6287
|
upload: {
|
|
6258
6288
|
remoteId: string;
|
|
6259
6289
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -6371,8 +6401,8 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6371
6401
|
}, "strip", z.ZodTypeAny, {
|
|
6372
6402
|
type: "TokenStudio";
|
|
6373
6403
|
id: string;
|
|
6374
|
-
fileName: string;
|
|
6375
6404
|
brandId: string;
|
|
6405
|
+
fileName: string;
|
|
6376
6406
|
tokenStudio: {
|
|
6377
6407
|
lastImportedAt: Date;
|
|
6378
6408
|
settings: {
|
|
@@ -6397,8 +6427,8 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6397
6427
|
}, {
|
|
6398
6428
|
type: "TokenStudio";
|
|
6399
6429
|
id: string;
|
|
6400
|
-
fileName: string;
|
|
6401
6430
|
brandId: string;
|
|
6431
|
+
fileName: string;
|
|
6402
6432
|
tokenStudio: {
|
|
6403
6433
|
lastImportedAt: Date;
|
|
6404
6434
|
settings: {
|
|
@@ -6425,6 +6455,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6425
6455
|
source: {
|
|
6426
6456
|
type: "Figma";
|
|
6427
6457
|
id: string;
|
|
6458
|
+
brandId: string;
|
|
6428
6459
|
fileName: string;
|
|
6429
6460
|
scope: {
|
|
6430
6461
|
assets: boolean;
|
|
@@ -6434,7 +6465,6 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6434
6465
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
6435
6466
|
themePersistentId?: string | undefined;
|
|
6436
6467
|
};
|
|
6437
|
-
brandId: string;
|
|
6438
6468
|
themeId?: string | null | undefined;
|
|
6439
6469
|
cloud?: {
|
|
6440
6470
|
fileId: string;
|
|
@@ -6493,8 +6523,8 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6493
6523
|
} | {
|
|
6494
6524
|
type: "TokenStudio";
|
|
6495
6525
|
id: string;
|
|
6496
|
-
fileName: string;
|
|
6497
6526
|
brandId: string;
|
|
6527
|
+
fileName: string;
|
|
6498
6528
|
tokenStudio: {
|
|
6499
6529
|
lastImportedAt: Date;
|
|
6500
6530
|
settings: {
|
|
@@ -6519,8 +6549,8 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6519
6549
|
} | {
|
|
6520
6550
|
type: "FigmaVariablesPlugin";
|
|
6521
6551
|
id: string;
|
|
6522
|
-
fileName: string;
|
|
6523
6552
|
brandId: string;
|
|
6553
|
+
fileName: string;
|
|
6524
6554
|
upload: {
|
|
6525
6555
|
remoteId: string;
|
|
6526
6556
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -6540,6 +6570,7 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6540
6570
|
source: {
|
|
6541
6571
|
type: "Figma";
|
|
6542
6572
|
id: string;
|
|
6573
|
+
brandId: string;
|
|
6543
6574
|
fileName: string;
|
|
6544
6575
|
scope: {
|
|
6545
6576
|
assets: boolean;
|
|
@@ -6549,7 +6580,6 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6549
6580
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
6550
6581
|
themePersistentId?: string | undefined;
|
|
6551
6582
|
};
|
|
6552
|
-
brandId: string;
|
|
6553
6583
|
themeId?: string | null | undefined;
|
|
6554
6584
|
cloud?: {
|
|
6555
6585
|
fileId: string;
|
|
@@ -6608,8 +6638,8 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6608
6638
|
} | {
|
|
6609
6639
|
type: "TokenStudio";
|
|
6610
6640
|
id: string;
|
|
6611
|
-
fileName: string;
|
|
6612
6641
|
brandId: string;
|
|
6642
|
+
fileName: string;
|
|
6613
6643
|
tokenStudio: {
|
|
6614
6644
|
lastImportedAt: Date;
|
|
6615
6645
|
settings: {
|
|
@@ -6634,8 +6664,8 @@ declare const DTODataSourceCreationResponse: z.ZodObject<{
|
|
|
6634
6664
|
} | {
|
|
6635
6665
|
type: "FigmaVariablesPlugin";
|
|
6636
6666
|
id: string;
|
|
6637
|
-
fileName: string;
|
|
6638
6667
|
brandId: string;
|
|
6668
|
+
fileName: string;
|
|
6639
6669
|
upload: {
|
|
6640
6670
|
remoteId: string;
|
|
6641
6671
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -6957,6 +6987,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
6957
6987
|
}, "strip", z.ZodTypeAny, {
|
|
6958
6988
|
type: "Figma";
|
|
6959
6989
|
id: string;
|
|
6990
|
+
brandId: string;
|
|
6960
6991
|
fileName: string;
|
|
6961
6992
|
scope: {
|
|
6962
6993
|
assets: boolean;
|
|
@@ -6966,7 +6997,6 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
6966
6997
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
6967
6998
|
themePersistentId?: string | undefined;
|
|
6968
6999
|
};
|
|
6969
|
-
brandId: string;
|
|
6970
7000
|
themeId?: string | null | undefined;
|
|
6971
7001
|
cloud?: {
|
|
6972
7002
|
fileId: string;
|
|
@@ -7025,6 +7055,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7025
7055
|
}, {
|
|
7026
7056
|
type: "Figma";
|
|
7027
7057
|
id: string;
|
|
7058
|
+
brandId: string;
|
|
7028
7059
|
fileName: string;
|
|
7029
7060
|
scope: {
|
|
7030
7061
|
assets: boolean;
|
|
@@ -7034,7 +7065,6 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7034
7065
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
7035
7066
|
themePersistentId?: string | undefined;
|
|
7036
7067
|
};
|
|
7037
|
-
brandId: string;
|
|
7038
7068
|
themeId?: string | null | undefined;
|
|
7039
7069
|
cloud?: {
|
|
7040
7070
|
fileId: string;
|
|
@@ -7136,8 +7166,8 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7136
7166
|
}, "strip", z.ZodTypeAny, {
|
|
7137
7167
|
type: "FigmaVariablesPlugin";
|
|
7138
7168
|
id: string;
|
|
7139
|
-
fileName: string;
|
|
7140
7169
|
brandId: string;
|
|
7170
|
+
fileName: string;
|
|
7141
7171
|
upload: {
|
|
7142
7172
|
remoteId: string;
|
|
7143
7173
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -7155,8 +7185,8 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7155
7185
|
}, {
|
|
7156
7186
|
type: "FigmaVariablesPlugin";
|
|
7157
7187
|
id: string;
|
|
7158
|
-
fileName: string;
|
|
7159
7188
|
brandId: string;
|
|
7189
|
+
fileName: string;
|
|
7160
7190
|
upload: {
|
|
7161
7191
|
remoteId: string;
|
|
7162
7192
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -7274,8 +7304,8 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7274
7304
|
}, "strip", z.ZodTypeAny, {
|
|
7275
7305
|
type: "TokenStudio";
|
|
7276
7306
|
id: string;
|
|
7277
|
-
fileName: string;
|
|
7278
7307
|
brandId: string;
|
|
7308
|
+
fileName: string;
|
|
7279
7309
|
tokenStudio: {
|
|
7280
7310
|
lastImportedAt: Date;
|
|
7281
7311
|
settings: {
|
|
@@ -7300,8 +7330,8 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7300
7330
|
}, {
|
|
7301
7331
|
type: "TokenStudio";
|
|
7302
7332
|
id: string;
|
|
7303
|
-
fileName: string;
|
|
7304
7333
|
brandId: string;
|
|
7334
|
+
fileName: string;
|
|
7305
7335
|
tokenStudio: {
|
|
7306
7336
|
lastImportedAt: Date;
|
|
7307
7337
|
settings: {
|
|
@@ -7328,6 +7358,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7328
7358
|
sources: ({
|
|
7329
7359
|
type: "Figma";
|
|
7330
7360
|
id: string;
|
|
7361
|
+
brandId: string;
|
|
7331
7362
|
fileName: string;
|
|
7332
7363
|
scope: {
|
|
7333
7364
|
assets: boolean;
|
|
@@ -7337,7 +7368,6 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7337
7368
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
7338
7369
|
themePersistentId?: string | undefined;
|
|
7339
7370
|
};
|
|
7340
|
-
brandId: string;
|
|
7341
7371
|
themeId?: string | null | undefined;
|
|
7342
7372
|
cloud?: {
|
|
7343
7373
|
fileId: string;
|
|
@@ -7396,8 +7426,8 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7396
7426
|
} | {
|
|
7397
7427
|
type: "TokenStudio";
|
|
7398
7428
|
id: string;
|
|
7399
|
-
fileName: string;
|
|
7400
7429
|
brandId: string;
|
|
7430
|
+
fileName: string;
|
|
7401
7431
|
tokenStudio: {
|
|
7402
7432
|
lastImportedAt: Date;
|
|
7403
7433
|
settings: {
|
|
@@ -7422,8 +7452,8 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7422
7452
|
} | {
|
|
7423
7453
|
type: "FigmaVariablesPlugin";
|
|
7424
7454
|
id: string;
|
|
7425
|
-
fileName: string;
|
|
7426
7455
|
brandId: string;
|
|
7456
|
+
fileName: string;
|
|
7427
7457
|
upload: {
|
|
7428
7458
|
remoteId: string;
|
|
7429
7459
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -7443,6 +7473,7 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7443
7473
|
sources: ({
|
|
7444
7474
|
type: "Figma";
|
|
7445
7475
|
id: string;
|
|
7476
|
+
brandId: string;
|
|
7446
7477
|
fileName: string;
|
|
7447
7478
|
scope: {
|
|
7448
7479
|
assets: boolean;
|
|
@@ -7452,7 +7483,6 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7452
7483
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
7453
7484
|
themePersistentId?: string | undefined;
|
|
7454
7485
|
};
|
|
7455
|
-
brandId: string;
|
|
7456
7486
|
themeId?: string | null | undefined;
|
|
7457
7487
|
cloud?: {
|
|
7458
7488
|
fileId: string;
|
|
@@ -7511,8 +7541,8 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7511
7541
|
} | {
|
|
7512
7542
|
type: "TokenStudio";
|
|
7513
7543
|
id: string;
|
|
7514
|
-
fileName: string;
|
|
7515
7544
|
brandId: string;
|
|
7545
|
+
fileName: string;
|
|
7516
7546
|
tokenStudio: {
|
|
7517
7547
|
lastImportedAt: Date;
|
|
7518
7548
|
settings: {
|
|
@@ -7537,8 +7567,8 @@ declare const DTODataSourcesListResponse: z.ZodObject<{
|
|
|
7537
7567
|
} | {
|
|
7538
7568
|
type: "FigmaVariablesPlugin";
|
|
7539
7569
|
id: string;
|
|
7540
|
-
fileName: string;
|
|
7541
7570
|
brandId: string;
|
|
7571
|
+
fileName: string;
|
|
7542
7572
|
upload: {
|
|
7543
7573
|
remoteId: string;
|
|
7544
7574
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -12647,11 +12677,13 @@ declare const DTODesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type",
|
|
|
12647
12677
|
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
12648
12678
|
referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
|
|
12649
12679
|
key: z.ZodOptional<z.ZodString>;
|
|
12680
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
12650
12681
|
}>, "strip", z.ZodTypeAny, {
|
|
12651
12682
|
id: string;
|
|
12652
12683
|
name: string;
|
|
12653
12684
|
sourceId: string;
|
|
12654
12685
|
key?: string | undefined;
|
|
12686
|
+
sortOrder?: number | undefined;
|
|
12655
12687
|
referenceOriginId?: string | undefined;
|
|
12656
12688
|
referenceOriginKey?: string | undefined;
|
|
12657
12689
|
referenceOriginName?: string | undefined;
|
|
@@ -12663,6 +12695,7 @@ declare const DTODesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type",
|
|
|
12663
12695
|
name: string;
|
|
12664
12696
|
sourceId: string;
|
|
12665
12697
|
key?: string | undefined;
|
|
12698
|
+
sortOrder?: number | undefined;
|
|
12666
12699
|
referenceOriginId?: string | undefined;
|
|
12667
12700
|
referenceOriginKey?: string | undefined;
|
|
12668
12701
|
referenceOriginName?: string | undefined;
|
|
@@ -12688,6 +12721,7 @@ declare const DTODesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type",
|
|
|
12688
12721
|
name: string;
|
|
12689
12722
|
sourceId: string;
|
|
12690
12723
|
key?: string | undefined;
|
|
12724
|
+
sortOrder?: number | undefined;
|
|
12691
12725
|
referenceOriginId?: string | undefined;
|
|
12692
12726
|
referenceOriginKey?: string | undefined;
|
|
12693
12727
|
referenceOriginName?: string | undefined;
|
|
@@ -12711,6 +12745,7 @@ declare const DTODesignToken: z.ZodIntersection<z.ZodDiscriminatedUnion<"type",
|
|
|
12711
12745
|
name: string;
|
|
12712
12746
|
sourceId: string;
|
|
12713
12747
|
key?: string | undefined;
|
|
12748
|
+
sortOrder?: number | undefined;
|
|
12714
12749
|
referenceOriginId?: string | undefined;
|
|
12715
12750
|
referenceOriginKey?: string | undefined;
|
|
12716
12751
|
referenceOriginName?: string | undefined;
|
|
@@ -14966,11 +15001,13 @@ declare const DTODesignTokenResponse: z.ZodObject<{
|
|
|
14966
15001
|
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
14967
15002
|
referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
|
|
14968
15003
|
key: z.ZodOptional<z.ZodString>;
|
|
15004
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
14969
15005
|
}>, "strip", z.ZodTypeAny, {
|
|
14970
15006
|
id: string;
|
|
14971
15007
|
name: string;
|
|
14972
15008
|
sourceId: string;
|
|
14973
15009
|
key?: string | undefined;
|
|
15010
|
+
sortOrder?: number | undefined;
|
|
14974
15011
|
referenceOriginId?: string | undefined;
|
|
14975
15012
|
referenceOriginKey?: string | undefined;
|
|
14976
15013
|
referenceOriginName?: string | undefined;
|
|
@@ -14982,6 +15019,7 @@ declare const DTODesignTokenResponse: z.ZodObject<{
|
|
|
14982
15019
|
name: string;
|
|
14983
15020
|
sourceId: string;
|
|
14984
15021
|
key?: string | undefined;
|
|
15022
|
+
sortOrder?: number | undefined;
|
|
14985
15023
|
referenceOriginId?: string | undefined;
|
|
14986
15024
|
referenceOriginKey?: string | undefined;
|
|
14987
15025
|
referenceOriginName?: string | undefined;
|
|
@@ -15007,6 +15045,7 @@ declare const DTODesignTokenResponse: z.ZodObject<{
|
|
|
15007
15045
|
name: string;
|
|
15008
15046
|
sourceId: string;
|
|
15009
15047
|
key?: string | undefined;
|
|
15048
|
+
sortOrder?: number | undefined;
|
|
15010
15049
|
referenceOriginId?: string | undefined;
|
|
15011
15050
|
referenceOriginKey?: string | undefined;
|
|
15012
15051
|
referenceOriginName?: string | undefined;
|
|
@@ -15030,6 +15069,7 @@ declare const DTODesignTokenResponse: z.ZodObject<{
|
|
|
15030
15069
|
name: string;
|
|
15031
15070
|
sourceId: string;
|
|
15032
15071
|
key?: string | undefined;
|
|
15072
|
+
sortOrder?: number | undefined;
|
|
15033
15073
|
referenceOriginId?: string | undefined;
|
|
15034
15074
|
referenceOriginKey?: string | undefined;
|
|
15035
15075
|
referenceOriginName?: string | undefined;
|
|
@@ -15407,6 +15447,7 @@ declare const DTODesignTokenResponse: z.ZodObject<{
|
|
|
15407
15447
|
name: string;
|
|
15408
15448
|
sourceId: string;
|
|
15409
15449
|
key?: string | undefined;
|
|
15450
|
+
sortOrder?: number | undefined;
|
|
15410
15451
|
referenceOriginId?: string | undefined;
|
|
15411
15452
|
referenceOriginKey?: string | undefined;
|
|
15412
15453
|
referenceOriginName?: string | undefined;
|
|
@@ -15784,6 +15825,7 @@ declare const DTODesignTokenResponse: z.ZodObject<{
|
|
|
15784
15825
|
name: string;
|
|
15785
15826
|
sourceId: string;
|
|
15786
15827
|
key?: string | undefined;
|
|
15828
|
+
sortOrder?: number | undefined;
|
|
15787
15829
|
referenceOriginId?: string | undefined;
|
|
15788
15830
|
referenceOriginKey?: string | undefined;
|
|
15789
15831
|
referenceOriginName?: string | undefined;
|
|
@@ -18040,11 +18082,13 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
|
|
|
18040
18082
|
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
18041
18083
|
referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
|
|
18042
18084
|
key: z.ZodOptional<z.ZodString>;
|
|
18085
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
18043
18086
|
}>, "strip", z.ZodTypeAny, {
|
|
18044
18087
|
id: string;
|
|
18045
18088
|
name: string;
|
|
18046
18089
|
sourceId: string;
|
|
18047
18090
|
key?: string | undefined;
|
|
18091
|
+
sortOrder?: number | undefined;
|
|
18048
18092
|
referenceOriginId?: string | undefined;
|
|
18049
18093
|
referenceOriginKey?: string | undefined;
|
|
18050
18094
|
referenceOriginName?: string | undefined;
|
|
@@ -18056,6 +18100,7 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
|
|
|
18056
18100
|
name: string;
|
|
18057
18101
|
sourceId: string;
|
|
18058
18102
|
key?: string | undefined;
|
|
18103
|
+
sortOrder?: number | undefined;
|
|
18059
18104
|
referenceOriginId?: string | undefined;
|
|
18060
18105
|
referenceOriginKey?: string | undefined;
|
|
18061
18106
|
referenceOriginName?: string | undefined;
|
|
@@ -18081,6 +18126,7 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
|
|
|
18081
18126
|
name: string;
|
|
18082
18127
|
sourceId: string;
|
|
18083
18128
|
key?: string | undefined;
|
|
18129
|
+
sortOrder?: number | undefined;
|
|
18084
18130
|
referenceOriginId?: string | undefined;
|
|
18085
18131
|
referenceOriginKey?: string | undefined;
|
|
18086
18132
|
referenceOriginName?: string | undefined;
|
|
@@ -18104,6 +18150,7 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
|
|
|
18104
18150
|
name: string;
|
|
18105
18151
|
sourceId: string;
|
|
18106
18152
|
key?: string | undefined;
|
|
18153
|
+
sortOrder?: number | undefined;
|
|
18107
18154
|
referenceOriginId?: string | undefined;
|
|
18108
18155
|
referenceOriginKey?: string | undefined;
|
|
18109
18156
|
referenceOriginName?: string | undefined;
|
|
@@ -18481,6 +18528,7 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
|
|
|
18481
18528
|
name: string;
|
|
18482
18529
|
sourceId: string;
|
|
18483
18530
|
key?: string | undefined;
|
|
18531
|
+
sortOrder?: number | undefined;
|
|
18484
18532
|
referenceOriginId?: string | undefined;
|
|
18485
18533
|
referenceOriginKey?: string | undefined;
|
|
18486
18534
|
referenceOriginName?: string | undefined;
|
|
@@ -18858,6 +18906,7 @@ declare const DTODesignTokenListResponse: z.ZodObject<{
|
|
|
18858
18906
|
name: string;
|
|
18859
18907
|
sourceId: string;
|
|
18860
18908
|
key?: string | undefined;
|
|
18909
|
+
sortOrder?: number | undefined;
|
|
18861
18910
|
referenceOriginId?: string | undefined;
|
|
18862
18911
|
referenceOriginKey?: string | undefined;
|
|
18863
18912
|
referenceOriginName?: string | undefined;
|
|
@@ -39958,6 +40007,273 @@ declare const DTODocumentationPageApprovalStateChangeInput: z.ZodObject<{
|
|
|
39958
40007
|
}>;
|
|
39959
40008
|
type DTODocumentationPageApprovalStateChangeInput = z.infer<typeof DTODocumentationPageApprovalStateChangeInput>;
|
|
39960
40009
|
|
|
40010
|
+
declare const DTODocumentationStructureGroupItem: z.ZodObject<z.objectUtil.extendShape<{
|
|
40011
|
+
type: z.ZodEnum<["Group", "Page"]>;
|
|
40012
|
+
id: z.ZodString;
|
|
40013
|
+
designSystemVersionId: z.ZodString;
|
|
40014
|
+
shortPersistentId: z.ZodString;
|
|
40015
|
+
persistentId: z.ZodString;
|
|
40016
|
+
title: z.ZodString;
|
|
40017
|
+
createdAt: z.ZodDate;
|
|
40018
|
+
updatedAt: z.ZodDate;
|
|
40019
|
+
}, {
|
|
40020
|
+
type: z.ZodLiteral<"Group">;
|
|
40021
|
+
groupBehavior: z.ZodString;
|
|
40022
|
+
childrenIds: z.ZodArray<z.ZodString, "many">;
|
|
40023
|
+
isRoot: z.ZodBoolean;
|
|
40024
|
+
}>, "strip", z.ZodTypeAny, {
|
|
40025
|
+
type: "Group";
|
|
40026
|
+
id: string;
|
|
40027
|
+
persistentId: string;
|
|
40028
|
+
designSystemVersionId: string;
|
|
40029
|
+
createdAt: Date;
|
|
40030
|
+
updatedAt: Date;
|
|
40031
|
+
shortPersistentId: string;
|
|
40032
|
+
title: string;
|
|
40033
|
+
isRoot: boolean;
|
|
40034
|
+
childrenIds: string[];
|
|
40035
|
+
groupBehavior: string;
|
|
40036
|
+
}, {
|
|
40037
|
+
type: "Group";
|
|
40038
|
+
id: string;
|
|
40039
|
+
persistentId: string;
|
|
40040
|
+
designSystemVersionId: string;
|
|
40041
|
+
createdAt: Date;
|
|
40042
|
+
updatedAt: Date;
|
|
40043
|
+
shortPersistentId: string;
|
|
40044
|
+
title: string;
|
|
40045
|
+
isRoot: boolean;
|
|
40046
|
+
childrenIds: string[];
|
|
40047
|
+
groupBehavior: string;
|
|
40048
|
+
}>;
|
|
40049
|
+
declare const DTODocumentationStructurePageItem: z.ZodObject<z.objectUtil.extendShape<{
|
|
40050
|
+
type: z.ZodEnum<["Group", "Page"]>;
|
|
40051
|
+
id: z.ZodString;
|
|
40052
|
+
designSystemVersionId: z.ZodString;
|
|
40053
|
+
shortPersistentId: z.ZodString;
|
|
40054
|
+
persistentId: z.ZodString;
|
|
40055
|
+
title: z.ZodString;
|
|
40056
|
+
createdAt: z.ZodDate;
|
|
40057
|
+
updatedAt: z.ZodDate;
|
|
40058
|
+
}, {
|
|
40059
|
+
type: z.ZodLiteral<"Page">;
|
|
40060
|
+
path: z.ZodString;
|
|
40061
|
+
}>, "strip", z.ZodTypeAny, {
|
|
40062
|
+
path: string;
|
|
40063
|
+
type: "Page";
|
|
40064
|
+
id: string;
|
|
40065
|
+
persistentId: string;
|
|
40066
|
+
designSystemVersionId: string;
|
|
40067
|
+
createdAt: Date;
|
|
40068
|
+
updatedAt: Date;
|
|
40069
|
+
shortPersistentId: string;
|
|
40070
|
+
title: string;
|
|
40071
|
+
}, {
|
|
40072
|
+
path: string;
|
|
40073
|
+
type: "Page";
|
|
40074
|
+
id: string;
|
|
40075
|
+
persistentId: string;
|
|
40076
|
+
designSystemVersionId: string;
|
|
40077
|
+
createdAt: Date;
|
|
40078
|
+
updatedAt: Date;
|
|
40079
|
+
shortPersistentId: string;
|
|
40080
|
+
title: string;
|
|
40081
|
+
}>;
|
|
40082
|
+
declare const DTODocumentationStructureItem: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
40083
|
+
type: z.ZodEnum<["Group", "Page"]>;
|
|
40084
|
+
id: z.ZodString;
|
|
40085
|
+
designSystemVersionId: z.ZodString;
|
|
40086
|
+
shortPersistentId: z.ZodString;
|
|
40087
|
+
persistentId: z.ZodString;
|
|
40088
|
+
title: z.ZodString;
|
|
40089
|
+
createdAt: z.ZodDate;
|
|
40090
|
+
updatedAt: z.ZodDate;
|
|
40091
|
+
}, {
|
|
40092
|
+
type: z.ZodLiteral<"Group">;
|
|
40093
|
+
groupBehavior: z.ZodString;
|
|
40094
|
+
childrenIds: z.ZodArray<z.ZodString, "many">;
|
|
40095
|
+
isRoot: z.ZodBoolean;
|
|
40096
|
+
}>, "strip", z.ZodTypeAny, {
|
|
40097
|
+
type: "Group";
|
|
40098
|
+
id: string;
|
|
40099
|
+
persistentId: string;
|
|
40100
|
+
designSystemVersionId: string;
|
|
40101
|
+
createdAt: Date;
|
|
40102
|
+
updatedAt: Date;
|
|
40103
|
+
shortPersistentId: string;
|
|
40104
|
+
title: string;
|
|
40105
|
+
isRoot: boolean;
|
|
40106
|
+
childrenIds: string[];
|
|
40107
|
+
groupBehavior: string;
|
|
40108
|
+
}, {
|
|
40109
|
+
type: "Group";
|
|
40110
|
+
id: string;
|
|
40111
|
+
persistentId: string;
|
|
40112
|
+
designSystemVersionId: string;
|
|
40113
|
+
createdAt: Date;
|
|
40114
|
+
updatedAt: Date;
|
|
40115
|
+
shortPersistentId: string;
|
|
40116
|
+
title: string;
|
|
40117
|
+
isRoot: boolean;
|
|
40118
|
+
childrenIds: string[];
|
|
40119
|
+
groupBehavior: string;
|
|
40120
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
40121
|
+
type: z.ZodEnum<["Group", "Page"]>;
|
|
40122
|
+
id: z.ZodString;
|
|
40123
|
+
designSystemVersionId: z.ZodString;
|
|
40124
|
+
shortPersistentId: z.ZodString;
|
|
40125
|
+
persistentId: z.ZodString;
|
|
40126
|
+
title: z.ZodString;
|
|
40127
|
+
createdAt: z.ZodDate;
|
|
40128
|
+
updatedAt: z.ZodDate;
|
|
40129
|
+
}, {
|
|
40130
|
+
type: z.ZodLiteral<"Page">;
|
|
40131
|
+
path: z.ZodString;
|
|
40132
|
+
}>, "strip", z.ZodTypeAny, {
|
|
40133
|
+
path: string;
|
|
40134
|
+
type: "Page";
|
|
40135
|
+
id: string;
|
|
40136
|
+
persistentId: string;
|
|
40137
|
+
designSystemVersionId: string;
|
|
40138
|
+
createdAt: Date;
|
|
40139
|
+
updatedAt: Date;
|
|
40140
|
+
shortPersistentId: string;
|
|
40141
|
+
title: string;
|
|
40142
|
+
}, {
|
|
40143
|
+
path: string;
|
|
40144
|
+
type: "Page";
|
|
40145
|
+
id: string;
|
|
40146
|
+
persistentId: string;
|
|
40147
|
+
designSystemVersionId: string;
|
|
40148
|
+
createdAt: Date;
|
|
40149
|
+
updatedAt: Date;
|
|
40150
|
+
shortPersistentId: string;
|
|
40151
|
+
title: string;
|
|
40152
|
+
}>]>;
|
|
40153
|
+
type DTODocumentationStructureItem = z.infer<typeof DTODocumentationStructureItem>;
|
|
40154
|
+
declare const DTODocumentationStructure: z.ZodObject<{
|
|
40155
|
+
items: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
40156
|
+
type: z.ZodEnum<["Group", "Page"]>;
|
|
40157
|
+
id: z.ZodString;
|
|
40158
|
+
designSystemVersionId: z.ZodString;
|
|
40159
|
+
shortPersistentId: z.ZodString;
|
|
40160
|
+
persistentId: z.ZodString;
|
|
40161
|
+
title: z.ZodString;
|
|
40162
|
+
createdAt: z.ZodDate;
|
|
40163
|
+
updatedAt: z.ZodDate;
|
|
40164
|
+
}, {
|
|
40165
|
+
type: z.ZodLiteral<"Group">;
|
|
40166
|
+
groupBehavior: z.ZodString;
|
|
40167
|
+
childrenIds: z.ZodArray<z.ZodString, "many">;
|
|
40168
|
+
isRoot: z.ZodBoolean;
|
|
40169
|
+
}>, "strip", z.ZodTypeAny, {
|
|
40170
|
+
type: "Group";
|
|
40171
|
+
id: string;
|
|
40172
|
+
persistentId: string;
|
|
40173
|
+
designSystemVersionId: string;
|
|
40174
|
+
createdAt: Date;
|
|
40175
|
+
updatedAt: Date;
|
|
40176
|
+
shortPersistentId: string;
|
|
40177
|
+
title: string;
|
|
40178
|
+
isRoot: boolean;
|
|
40179
|
+
childrenIds: string[];
|
|
40180
|
+
groupBehavior: string;
|
|
40181
|
+
}, {
|
|
40182
|
+
type: "Group";
|
|
40183
|
+
id: string;
|
|
40184
|
+
persistentId: string;
|
|
40185
|
+
designSystemVersionId: string;
|
|
40186
|
+
createdAt: Date;
|
|
40187
|
+
updatedAt: Date;
|
|
40188
|
+
shortPersistentId: string;
|
|
40189
|
+
title: string;
|
|
40190
|
+
isRoot: boolean;
|
|
40191
|
+
childrenIds: string[];
|
|
40192
|
+
groupBehavior: string;
|
|
40193
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
40194
|
+
type: z.ZodEnum<["Group", "Page"]>;
|
|
40195
|
+
id: z.ZodString;
|
|
40196
|
+
designSystemVersionId: z.ZodString;
|
|
40197
|
+
shortPersistentId: z.ZodString;
|
|
40198
|
+
persistentId: z.ZodString;
|
|
40199
|
+
title: z.ZodString;
|
|
40200
|
+
createdAt: z.ZodDate;
|
|
40201
|
+
updatedAt: z.ZodDate;
|
|
40202
|
+
}, {
|
|
40203
|
+
type: z.ZodLiteral<"Page">;
|
|
40204
|
+
path: z.ZodString;
|
|
40205
|
+
}>, "strip", z.ZodTypeAny, {
|
|
40206
|
+
path: string;
|
|
40207
|
+
type: "Page";
|
|
40208
|
+
id: string;
|
|
40209
|
+
persistentId: string;
|
|
40210
|
+
designSystemVersionId: string;
|
|
40211
|
+
createdAt: Date;
|
|
40212
|
+
updatedAt: Date;
|
|
40213
|
+
shortPersistentId: string;
|
|
40214
|
+
title: string;
|
|
40215
|
+
}, {
|
|
40216
|
+
path: string;
|
|
40217
|
+
type: "Page";
|
|
40218
|
+
id: string;
|
|
40219
|
+
persistentId: string;
|
|
40220
|
+
designSystemVersionId: string;
|
|
40221
|
+
createdAt: Date;
|
|
40222
|
+
updatedAt: Date;
|
|
40223
|
+
shortPersistentId: string;
|
|
40224
|
+
title: string;
|
|
40225
|
+
}>]>, "many">;
|
|
40226
|
+
}, "strip", z.ZodTypeAny, {
|
|
40227
|
+
items: ({
|
|
40228
|
+
type: "Group";
|
|
40229
|
+
id: string;
|
|
40230
|
+
persistentId: string;
|
|
40231
|
+
designSystemVersionId: string;
|
|
40232
|
+
createdAt: Date;
|
|
40233
|
+
updatedAt: Date;
|
|
40234
|
+
shortPersistentId: string;
|
|
40235
|
+
title: string;
|
|
40236
|
+
isRoot: boolean;
|
|
40237
|
+
childrenIds: string[];
|
|
40238
|
+
groupBehavior: string;
|
|
40239
|
+
} | {
|
|
40240
|
+
path: string;
|
|
40241
|
+
type: "Page";
|
|
40242
|
+
id: string;
|
|
40243
|
+
persistentId: string;
|
|
40244
|
+
designSystemVersionId: string;
|
|
40245
|
+
createdAt: Date;
|
|
40246
|
+
updatedAt: Date;
|
|
40247
|
+
shortPersistentId: string;
|
|
40248
|
+
title: string;
|
|
40249
|
+
})[];
|
|
40250
|
+
}, {
|
|
40251
|
+
items: ({
|
|
40252
|
+
type: "Group";
|
|
40253
|
+
id: string;
|
|
40254
|
+
persistentId: string;
|
|
40255
|
+
designSystemVersionId: string;
|
|
40256
|
+
createdAt: Date;
|
|
40257
|
+
updatedAt: Date;
|
|
40258
|
+
shortPersistentId: string;
|
|
40259
|
+
title: string;
|
|
40260
|
+
isRoot: boolean;
|
|
40261
|
+
childrenIds: string[];
|
|
40262
|
+
groupBehavior: string;
|
|
40263
|
+
} | {
|
|
40264
|
+
path: string;
|
|
40265
|
+
type: "Page";
|
|
40266
|
+
id: string;
|
|
40267
|
+
persistentId: string;
|
|
40268
|
+
designSystemVersionId: string;
|
|
40269
|
+
createdAt: Date;
|
|
40270
|
+
updatedAt: Date;
|
|
40271
|
+
shortPersistentId: string;
|
|
40272
|
+
title: string;
|
|
40273
|
+
})[];
|
|
40274
|
+
}>;
|
|
40275
|
+
type DTODocumentationStructure = z.infer<typeof DTODocumentationStructure>;
|
|
40276
|
+
|
|
39961
40277
|
declare const DTOFigmaNodeRenderFormat: z.ZodEnum<["Png", "Svg"]>;
|
|
39962
40278
|
type DTOFigmaNodeRenderFormat = z.infer<typeof DTOFigmaNodeRenderFormat>;
|
|
39963
40279
|
declare const DTOFigmaNodeOrigin: z.ZodObject<{
|
|
@@ -54325,11 +54641,13 @@ declare const DTOThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type"
|
|
|
54325
54641
|
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
54326
54642
|
referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
|
|
54327
54643
|
key: z.ZodOptional<z.ZodString>;
|
|
54644
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
54328
54645
|
}>, "strip", z.ZodTypeAny, {
|
|
54329
54646
|
id: string;
|
|
54330
54647
|
name: string;
|
|
54331
54648
|
sourceId: string;
|
|
54332
54649
|
key?: string | undefined;
|
|
54650
|
+
sortOrder?: number | undefined;
|
|
54333
54651
|
referenceOriginId?: string | undefined;
|
|
54334
54652
|
referenceOriginKey?: string | undefined;
|
|
54335
54653
|
referenceOriginName?: string | undefined;
|
|
@@ -54341,6 +54659,7 @@ declare const DTOThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type"
|
|
|
54341
54659
|
name: string;
|
|
54342
54660
|
sourceId: string;
|
|
54343
54661
|
key?: string | undefined;
|
|
54662
|
+
sortOrder?: number | undefined;
|
|
54344
54663
|
referenceOriginId?: string | undefined;
|
|
54345
54664
|
referenceOriginKey?: string | undefined;
|
|
54346
54665
|
referenceOriginName?: string | undefined;
|
|
@@ -54355,6 +54674,7 @@ declare const DTOThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type"
|
|
|
54355
54674
|
name: string;
|
|
54356
54675
|
sourceId: string;
|
|
54357
54676
|
key?: string | undefined;
|
|
54677
|
+
sortOrder?: number | undefined;
|
|
54358
54678
|
referenceOriginId?: string | undefined;
|
|
54359
54679
|
referenceOriginKey?: string | undefined;
|
|
54360
54680
|
referenceOriginName?: string | undefined;
|
|
@@ -54369,6 +54689,7 @@ declare const DTOThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type"
|
|
|
54369
54689
|
name: string;
|
|
54370
54690
|
sourceId: string;
|
|
54371
54691
|
key?: string | undefined;
|
|
54692
|
+
sortOrder?: number | undefined;
|
|
54372
54693
|
referenceOriginId?: string | undefined;
|
|
54373
54694
|
referenceOriginKey?: string | undefined;
|
|
54374
54695
|
referenceOriginName?: string | undefined;
|
|
@@ -58853,11 +59174,13 @@ declare const DTOTheme: z.ZodObject<{
|
|
|
58853
59174
|
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
58854
59175
|
referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
|
|
58855
59176
|
key: z.ZodOptional<z.ZodString>;
|
|
59177
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
58856
59178
|
}>, "strip", z.ZodTypeAny, {
|
|
58857
59179
|
id: string;
|
|
58858
59180
|
name: string;
|
|
58859
59181
|
sourceId: string;
|
|
58860
59182
|
key?: string | undefined;
|
|
59183
|
+
sortOrder?: number | undefined;
|
|
58861
59184
|
referenceOriginId?: string | undefined;
|
|
58862
59185
|
referenceOriginKey?: string | undefined;
|
|
58863
59186
|
referenceOriginName?: string | undefined;
|
|
@@ -58869,6 +59192,7 @@ declare const DTOTheme: z.ZodObject<{
|
|
|
58869
59192
|
name: string;
|
|
58870
59193
|
sourceId: string;
|
|
58871
59194
|
key?: string | undefined;
|
|
59195
|
+
sortOrder?: number | undefined;
|
|
58872
59196
|
referenceOriginId?: string | undefined;
|
|
58873
59197
|
referenceOriginKey?: string | undefined;
|
|
58874
59198
|
referenceOriginName?: string | undefined;
|
|
@@ -58883,6 +59207,7 @@ declare const DTOTheme: z.ZodObject<{
|
|
|
58883
59207
|
name: string;
|
|
58884
59208
|
sourceId: string;
|
|
58885
59209
|
key?: string | undefined;
|
|
59210
|
+
sortOrder?: number | undefined;
|
|
58886
59211
|
referenceOriginId?: string | undefined;
|
|
58887
59212
|
referenceOriginKey?: string | undefined;
|
|
58888
59213
|
referenceOriginName?: string | undefined;
|
|
@@ -58897,6 +59222,7 @@ declare const DTOTheme: z.ZodObject<{
|
|
|
58897
59222
|
name: string;
|
|
58898
59223
|
sourceId: string;
|
|
58899
59224
|
key?: string | undefined;
|
|
59225
|
+
sortOrder?: number | undefined;
|
|
58900
59226
|
referenceOriginId?: string | undefined;
|
|
58901
59227
|
referenceOriginKey?: string | undefined;
|
|
58902
59228
|
referenceOriginName?: string | undefined;
|
|
@@ -59274,6 +59600,7 @@ declare const DTOTheme: z.ZodObject<{
|
|
|
59274
59600
|
name: string;
|
|
59275
59601
|
sourceId: string;
|
|
59276
59602
|
key?: string | undefined;
|
|
59603
|
+
sortOrder?: number | undefined;
|
|
59277
59604
|
referenceOriginId?: string | undefined;
|
|
59278
59605
|
referenceOriginKey?: string | undefined;
|
|
59279
59606
|
referenceOriginName?: string | undefined;
|
|
@@ -59651,6 +59978,7 @@ declare const DTOTheme: z.ZodObject<{
|
|
|
59651
59978
|
name: string;
|
|
59652
59979
|
sourceId: string;
|
|
59653
59980
|
key?: string | undefined;
|
|
59981
|
+
sortOrder?: number | undefined;
|
|
59654
59982
|
referenceOriginId?: string | undefined;
|
|
59655
59983
|
referenceOriginKey?: string | undefined;
|
|
59656
59984
|
referenceOriginName?: string | undefined;
|
|
@@ -61910,11 +62238,13 @@ declare const DTOThemeResponse: z.ZodObject<{
|
|
|
61910
62238
|
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
61911
62239
|
referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
|
|
61912
62240
|
key: z.ZodOptional<z.ZodString>;
|
|
62241
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
61913
62242
|
}>, "strip", z.ZodTypeAny, {
|
|
61914
62243
|
id: string;
|
|
61915
62244
|
name: string;
|
|
61916
62245
|
sourceId: string;
|
|
61917
62246
|
key?: string | undefined;
|
|
62247
|
+
sortOrder?: number | undefined;
|
|
61918
62248
|
referenceOriginId?: string | undefined;
|
|
61919
62249
|
referenceOriginKey?: string | undefined;
|
|
61920
62250
|
referenceOriginName?: string | undefined;
|
|
@@ -61926,6 +62256,7 @@ declare const DTOThemeResponse: z.ZodObject<{
|
|
|
61926
62256
|
name: string;
|
|
61927
62257
|
sourceId: string;
|
|
61928
62258
|
key?: string | undefined;
|
|
62259
|
+
sortOrder?: number | undefined;
|
|
61929
62260
|
referenceOriginId?: string | undefined;
|
|
61930
62261
|
referenceOriginKey?: string | undefined;
|
|
61931
62262
|
referenceOriginName?: string | undefined;
|
|
@@ -61940,6 +62271,7 @@ declare const DTOThemeResponse: z.ZodObject<{
|
|
|
61940
62271
|
name: string;
|
|
61941
62272
|
sourceId: string;
|
|
61942
62273
|
key?: string | undefined;
|
|
62274
|
+
sortOrder?: number | undefined;
|
|
61943
62275
|
referenceOriginId?: string | undefined;
|
|
61944
62276
|
referenceOriginKey?: string | undefined;
|
|
61945
62277
|
referenceOriginName?: string | undefined;
|
|
@@ -61954,6 +62286,7 @@ declare const DTOThemeResponse: z.ZodObject<{
|
|
|
61954
62286
|
name: string;
|
|
61955
62287
|
sourceId: string;
|
|
61956
62288
|
key?: string | undefined;
|
|
62289
|
+
sortOrder?: number | undefined;
|
|
61957
62290
|
referenceOriginId?: string | undefined;
|
|
61958
62291
|
referenceOriginKey?: string | undefined;
|
|
61959
62292
|
referenceOriginName?: string | undefined;
|
|
@@ -62331,6 +62664,7 @@ declare const DTOThemeResponse: z.ZodObject<{
|
|
|
62331
62664
|
name: string;
|
|
62332
62665
|
sourceId: string;
|
|
62333
62666
|
key?: string | undefined;
|
|
62667
|
+
sortOrder?: number | undefined;
|
|
62334
62668
|
referenceOriginId?: string | undefined;
|
|
62335
62669
|
referenceOriginKey?: string | undefined;
|
|
62336
62670
|
referenceOriginName?: string | undefined;
|
|
@@ -62708,6 +63042,7 @@ declare const DTOThemeResponse: z.ZodObject<{
|
|
|
62708
63042
|
name: string;
|
|
62709
63043
|
sourceId: string;
|
|
62710
63044
|
key?: string | undefined;
|
|
63045
|
+
sortOrder?: number | undefined;
|
|
62711
63046
|
referenceOriginId?: string | undefined;
|
|
62712
63047
|
referenceOriginKey?: string | undefined;
|
|
62713
63048
|
referenceOriginName?: string | undefined;
|
|
@@ -63087,6 +63422,7 @@ declare const DTOThemeResponse: z.ZodObject<{
|
|
|
63087
63422
|
name: string;
|
|
63088
63423
|
sourceId: string;
|
|
63089
63424
|
key?: string | undefined;
|
|
63425
|
+
sortOrder?: number | undefined;
|
|
63090
63426
|
referenceOriginId?: string | undefined;
|
|
63091
63427
|
referenceOriginKey?: string | undefined;
|
|
63092
63428
|
referenceOriginName?: string | undefined;
|
|
@@ -63466,6 +63802,7 @@ declare const DTOThemeResponse: z.ZodObject<{
|
|
|
63466
63802
|
name: string;
|
|
63467
63803
|
sourceId: string;
|
|
63468
63804
|
key?: string | undefined;
|
|
63805
|
+
sortOrder?: number | undefined;
|
|
63469
63806
|
referenceOriginId?: string | undefined;
|
|
63470
63807
|
referenceOriginKey?: string | undefined;
|
|
63471
63808
|
referenceOriginName?: string | undefined;
|
|
@@ -65726,11 +66063,13 @@ declare const DTOThemeListResponse: z.ZodObject<{
|
|
|
65726
66063
|
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
65727
66064
|
referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
|
|
65728
66065
|
key: z.ZodOptional<z.ZodString>;
|
|
66066
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
65729
66067
|
}>, "strip", z.ZodTypeAny, {
|
|
65730
66068
|
id: string;
|
|
65731
66069
|
name: string;
|
|
65732
66070
|
sourceId: string;
|
|
65733
66071
|
key?: string | undefined;
|
|
66072
|
+
sortOrder?: number | undefined;
|
|
65734
66073
|
referenceOriginId?: string | undefined;
|
|
65735
66074
|
referenceOriginKey?: string | undefined;
|
|
65736
66075
|
referenceOriginName?: string | undefined;
|
|
@@ -65742,6 +66081,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
|
|
|
65742
66081
|
name: string;
|
|
65743
66082
|
sourceId: string;
|
|
65744
66083
|
key?: string | undefined;
|
|
66084
|
+
sortOrder?: number | undefined;
|
|
65745
66085
|
referenceOriginId?: string | undefined;
|
|
65746
66086
|
referenceOriginKey?: string | undefined;
|
|
65747
66087
|
referenceOriginName?: string | undefined;
|
|
@@ -65756,6 +66096,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
|
|
|
65756
66096
|
name: string;
|
|
65757
66097
|
sourceId: string;
|
|
65758
66098
|
key?: string | undefined;
|
|
66099
|
+
sortOrder?: number | undefined;
|
|
65759
66100
|
referenceOriginId?: string | undefined;
|
|
65760
66101
|
referenceOriginKey?: string | undefined;
|
|
65761
66102
|
referenceOriginName?: string | undefined;
|
|
@@ -65770,6 +66111,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
|
|
|
65770
66111
|
name: string;
|
|
65771
66112
|
sourceId: string;
|
|
65772
66113
|
key?: string | undefined;
|
|
66114
|
+
sortOrder?: number | undefined;
|
|
65773
66115
|
referenceOriginId?: string | undefined;
|
|
65774
66116
|
referenceOriginKey?: string | undefined;
|
|
65775
66117
|
referenceOriginName?: string | undefined;
|
|
@@ -66147,6 +66489,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
|
|
|
66147
66489
|
name: string;
|
|
66148
66490
|
sourceId: string;
|
|
66149
66491
|
key?: string | undefined;
|
|
66492
|
+
sortOrder?: number | undefined;
|
|
66150
66493
|
referenceOriginId?: string | undefined;
|
|
66151
66494
|
referenceOriginKey?: string | undefined;
|
|
66152
66495
|
referenceOriginName?: string | undefined;
|
|
@@ -66524,6 +66867,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
|
|
|
66524
66867
|
name: string;
|
|
66525
66868
|
sourceId: string;
|
|
66526
66869
|
key?: string | undefined;
|
|
66870
|
+
sortOrder?: number | undefined;
|
|
66527
66871
|
referenceOriginId?: string | undefined;
|
|
66528
66872
|
referenceOriginKey?: string | undefined;
|
|
66529
66873
|
referenceOriginName?: string | undefined;
|
|
@@ -66903,6 +67247,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
|
|
|
66903
67247
|
name: string;
|
|
66904
67248
|
sourceId: string;
|
|
66905
67249
|
key?: string | undefined;
|
|
67250
|
+
sortOrder?: number | undefined;
|
|
66906
67251
|
referenceOriginId?: string | undefined;
|
|
66907
67252
|
referenceOriginKey?: string | undefined;
|
|
66908
67253
|
referenceOriginName?: string | undefined;
|
|
@@ -67282,6 +67627,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
|
|
|
67282
67627
|
name: string;
|
|
67283
67628
|
sourceId: string;
|
|
67284
67629
|
key?: string | undefined;
|
|
67630
|
+
sortOrder?: number | undefined;
|
|
67285
67631
|
referenceOriginId?: string | undefined;
|
|
67286
67632
|
referenceOriginKey?: string | undefined;
|
|
67287
67633
|
referenceOriginName?: string | undefined;
|
|
@@ -69539,11 +69885,13 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
|
|
|
69539
69885
|
referencePersistentId: z.ZodOptional<z.ZodString>;
|
|
69540
69886
|
referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
|
|
69541
69887
|
key: z.ZodOptional<z.ZodString>;
|
|
69888
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
69542
69889
|
}>, "strip", z.ZodTypeAny, {
|
|
69543
69890
|
id: string;
|
|
69544
69891
|
name: string;
|
|
69545
69892
|
sourceId: string;
|
|
69546
69893
|
key?: string | undefined;
|
|
69894
|
+
sortOrder?: number | undefined;
|
|
69547
69895
|
referenceOriginId?: string | undefined;
|
|
69548
69896
|
referenceOriginKey?: string | undefined;
|
|
69549
69897
|
referenceOriginName?: string | undefined;
|
|
@@ -69555,6 +69903,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
|
|
|
69555
69903
|
name: string;
|
|
69556
69904
|
sourceId: string;
|
|
69557
69905
|
key?: string | undefined;
|
|
69906
|
+
sortOrder?: number | undefined;
|
|
69558
69907
|
referenceOriginId?: string | undefined;
|
|
69559
69908
|
referenceOriginKey?: string | undefined;
|
|
69560
69909
|
referenceOriginName?: string | undefined;
|
|
@@ -69569,6 +69918,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
|
|
|
69569
69918
|
name: string;
|
|
69570
69919
|
sourceId: string;
|
|
69571
69920
|
key?: string | undefined;
|
|
69921
|
+
sortOrder?: number | undefined;
|
|
69572
69922
|
referenceOriginId?: string | undefined;
|
|
69573
69923
|
referenceOriginKey?: string | undefined;
|
|
69574
69924
|
referenceOriginName?: string | undefined;
|
|
@@ -69583,6 +69933,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
|
|
|
69583
69933
|
name: string;
|
|
69584
69934
|
sourceId: string;
|
|
69585
69935
|
key?: string | undefined;
|
|
69936
|
+
sortOrder?: number | undefined;
|
|
69586
69937
|
referenceOriginId?: string | undefined;
|
|
69587
69938
|
referenceOriginKey?: string | undefined;
|
|
69588
69939
|
referenceOriginName?: string | undefined;
|
|
@@ -69958,6 +70309,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
|
|
|
69958
70309
|
name: string;
|
|
69959
70310
|
sourceId: string;
|
|
69960
70311
|
key?: string | undefined;
|
|
70312
|
+
sortOrder?: number | undefined;
|
|
69961
70313
|
referenceOriginId?: string | undefined;
|
|
69962
70314
|
referenceOriginKey?: string | undefined;
|
|
69963
70315
|
referenceOriginName?: string | undefined;
|
|
@@ -70333,6 +70685,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
|
|
|
70333
70685
|
name: string;
|
|
70334
70686
|
sourceId: string;
|
|
70335
70687
|
key?: string | undefined;
|
|
70688
|
+
sortOrder?: number | undefined;
|
|
70336
70689
|
referenceOriginId?: string | undefined;
|
|
70337
70690
|
referenceOriginKey?: string | undefined;
|
|
70338
70691
|
referenceOriginName?: string | undefined;
|
|
@@ -84416,6 +84769,132 @@ declare class BrandsEndpoint {
|
|
|
84416
84769
|
designSystemVersionId: string;
|
|
84417
84770
|
}[];
|
|
84418
84771
|
}>;
|
|
84772
|
+
create(designSystemId: string, versionId: string, body: DTOCreateBrandInput): Promise<{
|
|
84773
|
+
brand: {
|
|
84774
|
+
id: string;
|
|
84775
|
+
persistentId: string;
|
|
84776
|
+
meta: {
|
|
84777
|
+
name: string;
|
|
84778
|
+
description?: string | undefined;
|
|
84779
|
+
};
|
|
84780
|
+
designSystemVersionId: string;
|
|
84781
|
+
};
|
|
84782
|
+
}>;
|
|
84783
|
+
}
|
|
84784
|
+
|
|
84785
|
+
declare class DesignSystemComponentEndpoint {
|
|
84786
|
+
private readonly requestExecutor;
|
|
84787
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84788
|
+
create(dsId: string, vId: string, body: DTODesignSystemComponentCreateInput): Promise<any>;
|
|
84789
|
+
}
|
|
84790
|
+
|
|
84791
|
+
declare class ElementsActionsEndpoint {
|
|
84792
|
+
private readonly requestExecutor;
|
|
84793
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84794
|
+
createDocPage(dsId: string, vId: string, input: DTOCreateDocumentationPageInputV2): Promise<{
|
|
84795
|
+
type: "DocumentationGroupCreate";
|
|
84796
|
+
output: {
|
|
84797
|
+
success: true;
|
|
84798
|
+
};
|
|
84799
|
+
} | {
|
|
84800
|
+
type: "DocumentationTabCreate";
|
|
84801
|
+
output: {
|
|
84802
|
+
success: true;
|
|
84803
|
+
};
|
|
84804
|
+
} | {
|
|
84805
|
+
type: "DocumentationGroupUpdate";
|
|
84806
|
+
output: {
|
|
84807
|
+
success: true;
|
|
84808
|
+
};
|
|
84809
|
+
} | {
|
|
84810
|
+
type: "DocumentationGroupMove";
|
|
84811
|
+
output: {
|
|
84812
|
+
success: true;
|
|
84813
|
+
};
|
|
84814
|
+
} | {
|
|
84815
|
+
type: "DocumentationGroupDuplicate";
|
|
84816
|
+
output: {
|
|
84817
|
+
success: true;
|
|
84818
|
+
};
|
|
84819
|
+
} | {
|
|
84820
|
+
type: "DocumentationGroupDelete";
|
|
84821
|
+
output: {
|
|
84822
|
+
success: true;
|
|
84823
|
+
};
|
|
84824
|
+
} | {
|
|
84825
|
+
type: "DocumentationTabGroupDelete";
|
|
84826
|
+
output: {
|
|
84827
|
+
success: true;
|
|
84828
|
+
};
|
|
84829
|
+
} | {
|
|
84830
|
+
type: "DocumentationPageCreate";
|
|
84831
|
+
output: {
|
|
84832
|
+
success: true;
|
|
84833
|
+
};
|
|
84834
|
+
} | {
|
|
84835
|
+
type: "DocumentationPageUpdate";
|
|
84836
|
+
output: {
|
|
84837
|
+
success: true;
|
|
84838
|
+
};
|
|
84839
|
+
} | {
|
|
84840
|
+
type: "DocumentationPageMove";
|
|
84841
|
+
output: {
|
|
84842
|
+
success: true;
|
|
84843
|
+
};
|
|
84844
|
+
} | {
|
|
84845
|
+
type: "DocumentationPageDuplicate";
|
|
84846
|
+
output: {
|
|
84847
|
+
success: true;
|
|
84848
|
+
};
|
|
84849
|
+
} | {
|
|
84850
|
+
type: "DocumentationPageDelete";
|
|
84851
|
+
output: {
|
|
84852
|
+
success: true;
|
|
84853
|
+
};
|
|
84854
|
+
} | {
|
|
84855
|
+
type: "DocumentationPageRestore";
|
|
84856
|
+
output: {
|
|
84857
|
+
success: true;
|
|
84858
|
+
};
|
|
84859
|
+
} | {
|
|
84860
|
+
type: "DocumentationGroupRestore";
|
|
84861
|
+
output: {
|
|
84862
|
+
success: true;
|
|
84863
|
+
};
|
|
84864
|
+
} | {
|
|
84865
|
+
type: "DocumentationPageApprovalStateChange";
|
|
84866
|
+
output: {
|
|
84867
|
+
success: true;
|
|
84868
|
+
};
|
|
84869
|
+
} | {
|
|
84870
|
+
type: "FigmaNodeRender";
|
|
84871
|
+
figmaNodes: {
|
|
84872
|
+
id: string;
|
|
84873
|
+
persistentId: string;
|
|
84874
|
+
meta: {
|
|
84875
|
+
name: string;
|
|
84876
|
+
description?: string | undefined;
|
|
84877
|
+
};
|
|
84878
|
+
designSystemVersionId: string;
|
|
84879
|
+
createdAt: Date;
|
|
84880
|
+
updatedAt: Date;
|
|
84881
|
+
data: {
|
|
84882
|
+
figmaNodeId: string;
|
|
84883
|
+
isValid: boolean;
|
|
84884
|
+
assetId: string;
|
|
84885
|
+
assetUrl: string;
|
|
84886
|
+
assetFormat: "Png" | "Svg";
|
|
84887
|
+
assetScale: number;
|
|
84888
|
+
assetWidth?: number | undefined;
|
|
84889
|
+
assetHeight?: number | undefined;
|
|
84890
|
+
};
|
|
84891
|
+
origin: {
|
|
84892
|
+
sourceId: string;
|
|
84893
|
+
fileId?: string | undefined;
|
|
84894
|
+
parentName?: string | undefined;
|
|
84895
|
+
};
|
|
84896
|
+
}[];
|
|
84897
|
+
}>;
|
|
84419
84898
|
}
|
|
84420
84899
|
|
|
84421
84900
|
declare class ImportJobsEndpoint {
|
|
@@ -84923,6 +85402,7 @@ declare class ThemesEndpoint {
|
|
|
84923
85402
|
name: string;
|
|
84924
85403
|
sourceId: string;
|
|
84925
85404
|
key?: string | undefined;
|
|
85405
|
+
sortOrder?: number | undefined;
|
|
84926
85406
|
referenceOriginId?: string | undefined;
|
|
84927
85407
|
referenceOriginKey?: string | undefined;
|
|
84928
85408
|
referenceOriginName?: string | undefined;
|
|
@@ -85303,6 +85783,7 @@ declare class ThemesEndpoint {
|
|
|
85303
85783
|
name: string;
|
|
85304
85784
|
sourceId: string;
|
|
85305
85785
|
key?: string | undefined;
|
|
85786
|
+
sortOrder?: number | undefined;
|
|
85306
85787
|
referenceOriginId?: string | undefined;
|
|
85307
85788
|
referenceOriginKey?: string | undefined;
|
|
85308
85789
|
referenceOriginName?: string | undefined;
|
|
@@ -85683,6 +86164,7 @@ declare class ThemesEndpoint {
|
|
|
85683
86164
|
name: string;
|
|
85684
86165
|
sourceId: string;
|
|
85685
86166
|
key?: string | undefined;
|
|
86167
|
+
sortOrder?: number | undefined;
|
|
85686
86168
|
referenceOriginId?: string | undefined;
|
|
85687
86169
|
referenceOriginKey?: string | undefined;
|
|
85688
86170
|
referenceOriginName?: string | undefined;
|
|
@@ -86113,6 +86595,7 @@ declare class TokensEndpoint {
|
|
|
86113
86595
|
name: string;
|
|
86114
86596
|
sourceId: string;
|
|
86115
86597
|
key?: string | undefined;
|
|
86598
|
+
sortOrder?: number | undefined;
|
|
86116
86599
|
referenceOriginId?: string | undefined;
|
|
86117
86600
|
referenceOriginKey?: string | undefined;
|
|
86118
86601
|
referenceOriginName?: string | undefined;
|
|
@@ -86138,6 +86621,8 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
86138
86621
|
readonly stats: VersionStatsEndpoint;
|
|
86139
86622
|
readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
|
|
86140
86623
|
readonly elementPropertyValues: ElementPropertyValuesEndpoint;
|
|
86624
|
+
readonly elementsActions: ElementsActionsEndpoint;
|
|
86625
|
+
readonly designSystemComponents: DesignSystemComponentEndpoint;
|
|
86141
86626
|
constructor(requestExecutor: RequestExecutor);
|
|
86142
86627
|
list(dsId: string): Promise<{
|
|
86143
86628
|
designSystemVersions: {
|
|
@@ -86246,6 +86731,7 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
86246
86731
|
sources: ({
|
|
86247
86732
|
type: "Figma";
|
|
86248
86733
|
id: string;
|
|
86734
|
+
brandId: string;
|
|
86249
86735
|
fileName: string;
|
|
86250
86736
|
scope: {
|
|
86251
86737
|
assets: boolean;
|
|
@@ -86255,7 +86741,6 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
86255
86741
|
isUnpublishedContentFallbackEnabled: boolean;
|
|
86256
86742
|
themePersistentId?: string | undefined;
|
|
86257
86743
|
};
|
|
86258
|
-
brandId: string;
|
|
86259
86744
|
themeId?: string | null | undefined;
|
|
86260
86745
|
cloud?: {
|
|
86261
86746
|
fileId: string;
|
|
@@ -86314,8 +86799,8 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
86314
86799
|
} | {
|
|
86315
86800
|
type: "TokenStudio";
|
|
86316
86801
|
id: string;
|
|
86317
|
-
fileName: string;
|
|
86318
86802
|
brandId: string;
|
|
86803
|
+
fileName: string;
|
|
86319
86804
|
tokenStudio: {
|
|
86320
86805
|
lastImportedAt: Date;
|
|
86321
86806
|
settings: {
|
|
@@ -86340,8 +86825,8 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
86340
86825
|
} | {
|
|
86341
86826
|
type: "FigmaVariablesPlugin";
|
|
86342
86827
|
id: string;
|
|
86343
|
-
fileName: string;
|
|
86344
86828
|
brandId: string;
|
|
86829
|
+
fileName: string;
|
|
86345
86830
|
upload: {
|
|
86346
86831
|
remoteId: string;
|
|
86347
86832
|
remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
|
|
@@ -90425,4 +90910,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
90425
90910
|
|
|
90426
90911
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
90427
90912
|
|
|
90428
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, 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, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, 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, DTOExporterListQuery, DTOExporterListResponse, 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, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, 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, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, 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 };
|
|
90913
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, 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, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, 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, DTOExporterListQuery, DTOExporterListResponse, 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, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, 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, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionsEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, 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 };
|