@supernova-studio/client 0.58.5 → 0.58.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts 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<{
@@ -40501,6 +40817,8 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
40501
40817
  } | undefined;
40502
40818
  }[] | null | undefined>;
40503
40819
  linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
40820
+ isImmutable: z.ZodBoolean;
40821
+ immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
40504
40822
  }, "strip", z.ZodTypeAny, {
40505
40823
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40506
40824
  id: string;
@@ -40512,6 +40830,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
40512
40830
  designSystemVersionId: string;
40513
40831
  targetElementType: "Token" | "Component" | "DocumentationPage";
40514
40832
  codeName: string;
40833
+ isImmutable: boolean;
40515
40834
  options?: {
40516
40835
  id: string;
40517
40836
  name: string;
@@ -40520,6 +40839,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
40520
40839
  } | undefined;
40521
40840
  }[] | undefined;
40522
40841
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
40842
+ immutablePropertyType?: "Collection" | undefined;
40523
40843
  }, {
40524
40844
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40525
40845
  id: string;
@@ -40531,6 +40851,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
40531
40851
  designSystemVersionId: string;
40532
40852
  targetElementType: "Token" | "Component" | "DocumentationPage";
40533
40853
  codeName: string;
40854
+ isImmutable: boolean;
40534
40855
  options?: {
40535
40856
  id: string;
40536
40857
  name: string;
@@ -40539,6 +40860,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
40539
40860
  } | undefined;
40540
40861
  }[] | null | undefined;
40541
40862
  linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
40863
+ immutablePropertyType?: "Collection" | undefined;
40542
40864
  }>;
40543
40865
  type DTOElementPropertyDefinition = z.infer<typeof DTOElementPropertyDefinition>;
40544
40866
  declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
@@ -40585,6 +40907,8 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40585
40907
  } | undefined;
40586
40908
  }[] | null | undefined>;
40587
40909
  linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
40910
+ isImmutable: z.ZodBoolean;
40911
+ immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
40588
40912
  }, "strip", z.ZodTypeAny, {
40589
40913
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40590
40914
  id: string;
@@ -40596,6 +40920,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40596
40920
  designSystemVersionId: string;
40597
40921
  targetElementType: "Token" | "Component" | "DocumentationPage";
40598
40922
  codeName: string;
40923
+ isImmutable: boolean;
40599
40924
  options?: {
40600
40925
  id: string;
40601
40926
  name: string;
@@ -40604,6 +40929,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40604
40929
  } | undefined;
40605
40930
  }[] | undefined;
40606
40931
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
40932
+ immutablePropertyType?: "Collection" | undefined;
40607
40933
  }, {
40608
40934
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40609
40935
  id: string;
@@ -40615,6 +40941,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40615
40941
  designSystemVersionId: string;
40616
40942
  targetElementType: "Token" | "Component" | "DocumentationPage";
40617
40943
  codeName: string;
40944
+ isImmutable: boolean;
40618
40945
  options?: {
40619
40946
  id: string;
40620
40947
  name: string;
@@ -40623,6 +40950,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40623
40950
  } | undefined;
40624
40951
  }[] | null | undefined;
40625
40952
  linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
40953
+ immutablePropertyType?: "Collection" | undefined;
40626
40954
  }>, "many">;
40627
40955
  }, "strip", z.ZodTypeAny, {
40628
40956
  definitions: {
@@ -40636,6 +40964,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40636
40964
  designSystemVersionId: string;
40637
40965
  targetElementType: "Token" | "Component" | "DocumentationPage";
40638
40966
  codeName: string;
40967
+ isImmutable: boolean;
40639
40968
  options?: {
40640
40969
  id: string;
40641
40970
  name: string;
@@ -40644,6 +40973,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40644
40973
  } | undefined;
40645
40974
  }[] | undefined;
40646
40975
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
40976
+ immutablePropertyType?: "Collection" | undefined;
40647
40977
  }[];
40648
40978
  }, {
40649
40979
  definitions: {
@@ -40657,6 +40987,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40657
40987
  designSystemVersionId: string;
40658
40988
  targetElementType: "Token" | "Component" | "DocumentationPage";
40659
40989
  codeName: string;
40990
+ isImmutable: boolean;
40660
40991
  options?: {
40661
40992
  id: string;
40662
40993
  name: string;
@@ -40665,6 +40996,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40665
40996
  } | undefined;
40666
40997
  }[] | null | undefined;
40667
40998
  linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
40999
+ immutablePropertyType?: "Collection" | undefined;
40668
41000
  }[];
40669
41001
  }>;
40670
41002
  type DTOElementPropertyDefinitionListResponse = z.infer<typeof DTOElementPropertyDefinitionListResponse>;
@@ -40712,6 +41044,8 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
40712
41044
  } | undefined;
40713
41045
  }[] | null | undefined>;
40714
41046
  linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
41047
+ isImmutable: z.ZodBoolean;
41048
+ immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
40715
41049
  }, "strip", z.ZodTypeAny, {
40716
41050
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40717
41051
  id: string;
@@ -40723,6 +41057,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
40723
41057
  designSystemVersionId: string;
40724
41058
  targetElementType: "Token" | "Component" | "DocumentationPage";
40725
41059
  codeName: string;
41060
+ isImmutable: boolean;
40726
41061
  options?: {
40727
41062
  id: string;
40728
41063
  name: string;
@@ -40731,6 +41066,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
40731
41066
  } | undefined;
40732
41067
  }[] | undefined;
40733
41068
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
41069
+ immutablePropertyType?: "Collection" | undefined;
40734
41070
  }, {
40735
41071
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40736
41072
  id: string;
@@ -40742,6 +41078,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
40742
41078
  designSystemVersionId: string;
40743
41079
  targetElementType: "Token" | "Component" | "DocumentationPage";
40744
41080
  codeName: string;
41081
+ isImmutable: boolean;
40745
41082
  options?: {
40746
41083
  id: string;
40747
41084
  name: string;
@@ -40750,6 +41087,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
40750
41087
  } | undefined;
40751
41088
  }[] | null | undefined;
40752
41089
  linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
41090
+ immutablePropertyType?: "Collection" | undefined;
40753
41091
  }>;
40754
41092
  }, "strip", z.ZodTypeAny, {
40755
41093
  definition: {
@@ -40763,6 +41101,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
40763
41101
  designSystemVersionId: string;
40764
41102
  targetElementType: "Token" | "Component" | "DocumentationPage";
40765
41103
  codeName: string;
41104
+ isImmutable: boolean;
40766
41105
  options?: {
40767
41106
  id: string;
40768
41107
  name: string;
@@ -40771,6 +41110,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
40771
41110
  } | undefined;
40772
41111
  }[] | undefined;
40773
41112
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
41113
+ immutablePropertyType?: "Collection" | undefined;
40774
41114
  };
40775
41115
  }, {
40776
41116
  definition: {
@@ -40784,6 +41124,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
40784
41124
  designSystemVersionId: string;
40785
41125
  targetElementType: "Token" | "Component" | "DocumentationPage";
40786
41126
  codeName: string;
41127
+ isImmutable: boolean;
40787
41128
  options?: {
40788
41129
  id: string;
40789
41130
  name: string;
@@ -40792,6 +41133,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
40792
41133
  } | undefined;
40793
41134
  }[] | null | undefined;
40794
41135
  linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
41136
+ immutablePropertyType?: "Collection" | undefined;
40795
41137
  };
40796
41138
  }>;
40797
41139
  type DTOElementPropertyDefinitionResponse = z.infer<typeof DTOElementPropertyDefinitionResponse>;
@@ -54325,11 +54667,13 @@ declare const DTOThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type"
54325
54667
  referencePersistentId: z.ZodOptional<z.ZodString>;
54326
54668
  referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
54327
54669
  key: z.ZodOptional<z.ZodString>;
54670
+ sortOrder: z.ZodOptional<z.ZodNumber>;
54328
54671
  }>, "strip", z.ZodTypeAny, {
54329
54672
  id: string;
54330
54673
  name: string;
54331
54674
  sourceId: string;
54332
54675
  key?: string | undefined;
54676
+ sortOrder?: number | undefined;
54333
54677
  referenceOriginId?: string | undefined;
54334
54678
  referenceOriginKey?: string | undefined;
54335
54679
  referenceOriginName?: string | undefined;
@@ -54341,6 +54685,7 @@ declare const DTOThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type"
54341
54685
  name: string;
54342
54686
  sourceId: string;
54343
54687
  key?: string | undefined;
54688
+ sortOrder?: number | undefined;
54344
54689
  referenceOriginId?: string | undefined;
54345
54690
  referenceOriginKey?: string | undefined;
54346
54691
  referenceOriginName?: string | undefined;
@@ -54355,6 +54700,7 @@ declare const DTOThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type"
54355
54700
  name: string;
54356
54701
  sourceId: string;
54357
54702
  key?: string | undefined;
54703
+ sortOrder?: number | undefined;
54358
54704
  referenceOriginId?: string | undefined;
54359
54705
  referenceOriginKey?: string | undefined;
54360
54706
  referenceOriginName?: string | undefined;
@@ -54369,6 +54715,7 @@ declare const DTOThemeOverride: z.ZodIntersection<z.ZodDiscriminatedUnion<"type"
54369
54715
  name: string;
54370
54716
  sourceId: string;
54371
54717
  key?: string | undefined;
54718
+ sortOrder?: number | undefined;
54372
54719
  referenceOriginId?: string | undefined;
54373
54720
  referenceOriginKey?: string | undefined;
54374
54721
  referenceOriginName?: string | undefined;
@@ -58853,11 +59200,13 @@ declare const DTOTheme: z.ZodObject<{
58853
59200
  referencePersistentId: z.ZodOptional<z.ZodString>;
58854
59201
  referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
58855
59202
  key: z.ZodOptional<z.ZodString>;
59203
+ sortOrder: z.ZodOptional<z.ZodNumber>;
58856
59204
  }>, "strip", z.ZodTypeAny, {
58857
59205
  id: string;
58858
59206
  name: string;
58859
59207
  sourceId: string;
58860
59208
  key?: string | undefined;
59209
+ sortOrder?: number | undefined;
58861
59210
  referenceOriginId?: string | undefined;
58862
59211
  referenceOriginKey?: string | undefined;
58863
59212
  referenceOriginName?: string | undefined;
@@ -58869,6 +59218,7 @@ declare const DTOTheme: z.ZodObject<{
58869
59218
  name: string;
58870
59219
  sourceId: string;
58871
59220
  key?: string | undefined;
59221
+ sortOrder?: number | undefined;
58872
59222
  referenceOriginId?: string | undefined;
58873
59223
  referenceOriginKey?: string | undefined;
58874
59224
  referenceOriginName?: string | undefined;
@@ -58883,6 +59233,7 @@ declare const DTOTheme: z.ZodObject<{
58883
59233
  name: string;
58884
59234
  sourceId: string;
58885
59235
  key?: string | undefined;
59236
+ sortOrder?: number | undefined;
58886
59237
  referenceOriginId?: string | undefined;
58887
59238
  referenceOriginKey?: string | undefined;
58888
59239
  referenceOriginName?: string | undefined;
@@ -58897,6 +59248,7 @@ declare const DTOTheme: z.ZodObject<{
58897
59248
  name: string;
58898
59249
  sourceId: string;
58899
59250
  key?: string | undefined;
59251
+ sortOrder?: number | undefined;
58900
59252
  referenceOriginId?: string | undefined;
58901
59253
  referenceOriginKey?: string | undefined;
58902
59254
  referenceOriginName?: string | undefined;
@@ -59274,6 +59626,7 @@ declare const DTOTheme: z.ZodObject<{
59274
59626
  name: string;
59275
59627
  sourceId: string;
59276
59628
  key?: string | undefined;
59629
+ sortOrder?: number | undefined;
59277
59630
  referenceOriginId?: string | undefined;
59278
59631
  referenceOriginKey?: string | undefined;
59279
59632
  referenceOriginName?: string | undefined;
@@ -59651,6 +60004,7 @@ declare const DTOTheme: z.ZodObject<{
59651
60004
  name: string;
59652
60005
  sourceId: string;
59653
60006
  key?: string | undefined;
60007
+ sortOrder?: number | undefined;
59654
60008
  referenceOriginId?: string | undefined;
59655
60009
  referenceOriginKey?: string | undefined;
59656
60010
  referenceOriginName?: string | undefined;
@@ -61910,11 +62264,13 @@ declare const DTOThemeResponse: z.ZodObject<{
61910
62264
  referencePersistentId: z.ZodOptional<z.ZodString>;
61911
62265
  referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
61912
62266
  key: z.ZodOptional<z.ZodString>;
62267
+ sortOrder: z.ZodOptional<z.ZodNumber>;
61913
62268
  }>, "strip", z.ZodTypeAny, {
61914
62269
  id: string;
61915
62270
  name: string;
61916
62271
  sourceId: string;
61917
62272
  key?: string | undefined;
62273
+ sortOrder?: number | undefined;
61918
62274
  referenceOriginId?: string | undefined;
61919
62275
  referenceOriginKey?: string | undefined;
61920
62276
  referenceOriginName?: string | undefined;
@@ -61926,6 +62282,7 @@ declare const DTOThemeResponse: z.ZodObject<{
61926
62282
  name: string;
61927
62283
  sourceId: string;
61928
62284
  key?: string | undefined;
62285
+ sortOrder?: number | undefined;
61929
62286
  referenceOriginId?: string | undefined;
61930
62287
  referenceOriginKey?: string | undefined;
61931
62288
  referenceOriginName?: string | undefined;
@@ -61940,6 +62297,7 @@ declare const DTOThemeResponse: z.ZodObject<{
61940
62297
  name: string;
61941
62298
  sourceId: string;
61942
62299
  key?: string | undefined;
62300
+ sortOrder?: number | undefined;
61943
62301
  referenceOriginId?: string | undefined;
61944
62302
  referenceOriginKey?: string | undefined;
61945
62303
  referenceOriginName?: string | undefined;
@@ -61954,6 +62312,7 @@ declare const DTOThemeResponse: z.ZodObject<{
61954
62312
  name: string;
61955
62313
  sourceId: string;
61956
62314
  key?: string | undefined;
62315
+ sortOrder?: number | undefined;
61957
62316
  referenceOriginId?: string | undefined;
61958
62317
  referenceOriginKey?: string | undefined;
61959
62318
  referenceOriginName?: string | undefined;
@@ -62331,6 +62690,7 @@ declare const DTOThemeResponse: z.ZodObject<{
62331
62690
  name: string;
62332
62691
  sourceId: string;
62333
62692
  key?: string | undefined;
62693
+ sortOrder?: number | undefined;
62334
62694
  referenceOriginId?: string | undefined;
62335
62695
  referenceOriginKey?: string | undefined;
62336
62696
  referenceOriginName?: string | undefined;
@@ -62708,6 +63068,7 @@ declare const DTOThemeResponse: z.ZodObject<{
62708
63068
  name: string;
62709
63069
  sourceId: string;
62710
63070
  key?: string | undefined;
63071
+ sortOrder?: number | undefined;
62711
63072
  referenceOriginId?: string | undefined;
62712
63073
  referenceOriginKey?: string | undefined;
62713
63074
  referenceOriginName?: string | undefined;
@@ -63087,6 +63448,7 @@ declare const DTOThemeResponse: z.ZodObject<{
63087
63448
  name: string;
63088
63449
  sourceId: string;
63089
63450
  key?: string | undefined;
63451
+ sortOrder?: number | undefined;
63090
63452
  referenceOriginId?: string | undefined;
63091
63453
  referenceOriginKey?: string | undefined;
63092
63454
  referenceOriginName?: string | undefined;
@@ -63466,6 +63828,7 @@ declare const DTOThemeResponse: z.ZodObject<{
63466
63828
  name: string;
63467
63829
  sourceId: string;
63468
63830
  key?: string | undefined;
63831
+ sortOrder?: number | undefined;
63469
63832
  referenceOriginId?: string | undefined;
63470
63833
  referenceOriginKey?: string | undefined;
63471
63834
  referenceOriginName?: string | undefined;
@@ -65726,11 +66089,13 @@ declare const DTOThemeListResponse: z.ZodObject<{
65726
66089
  referencePersistentId: z.ZodOptional<z.ZodString>;
65727
66090
  referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
65728
66091
  key: z.ZodOptional<z.ZodString>;
66092
+ sortOrder: z.ZodOptional<z.ZodNumber>;
65729
66093
  }>, "strip", z.ZodTypeAny, {
65730
66094
  id: string;
65731
66095
  name: string;
65732
66096
  sourceId: string;
65733
66097
  key?: string | undefined;
66098
+ sortOrder?: number | undefined;
65734
66099
  referenceOriginId?: string | undefined;
65735
66100
  referenceOriginKey?: string | undefined;
65736
66101
  referenceOriginName?: string | undefined;
@@ -65742,6 +66107,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
65742
66107
  name: string;
65743
66108
  sourceId: string;
65744
66109
  key?: string | undefined;
66110
+ sortOrder?: number | undefined;
65745
66111
  referenceOriginId?: string | undefined;
65746
66112
  referenceOriginKey?: string | undefined;
65747
66113
  referenceOriginName?: string | undefined;
@@ -65756,6 +66122,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
65756
66122
  name: string;
65757
66123
  sourceId: string;
65758
66124
  key?: string | undefined;
66125
+ sortOrder?: number | undefined;
65759
66126
  referenceOriginId?: string | undefined;
65760
66127
  referenceOriginKey?: string | undefined;
65761
66128
  referenceOriginName?: string | undefined;
@@ -65770,6 +66137,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
65770
66137
  name: string;
65771
66138
  sourceId: string;
65772
66139
  key?: string | undefined;
66140
+ sortOrder?: number | undefined;
65773
66141
  referenceOriginId?: string | undefined;
65774
66142
  referenceOriginKey?: string | undefined;
65775
66143
  referenceOriginName?: string | undefined;
@@ -66147,6 +66515,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
66147
66515
  name: string;
66148
66516
  sourceId: string;
66149
66517
  key?: string | undefined;
66518
+ sortOrder?: number | undefined;
66150
66519
  referenceOriginId?: string | undefined;
66151
66520
  referenceOriginKey?: string | undefined;
66152
66521
  referenceOriginName?: string | undefined;
@@ -66524,6 +66893,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
66524
66893
  name: string;
66525
66894
  sourceId: string;
66526
66895
  key?: string | undefined;
66896
+ sortOrder?: number | undefined;
66527
66897
  referenceOriginId?: string | undefined;
66528
66898
  referenceOriginKey?: string | undefined;
66529
66899
  referenceOriginName?: string | undefined;
@@ -66903,6 +67273,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
66903
67273
  name: string;
66904
67274
  sourceId: string;
66905
67275
  key?: string | undefined;
67276
+ sortOrder?: number | undefined;
66906
67277
  referenceOriginId?: string | undefined;
66907
67278
  referenceOriginKey?: string | undefined;
66908
67279
  referenceOriginName?: string | undefined;
@@ -67282,6 +67653,7 @@ declare const DTOThemeListResponse: z.ZodObject<{
67282
67653
  name: string;
67283
67654
  sourceId: string;
67284
67655
  key?: string | undefined;
67656
+ sortOrder?: number | undefined;
67285
67657
  referenceOriginId?: string | undefined;
67286
67658
  referenceOriginKey?: string | undefined;
67287
67659
  referenceOriginName?: string | undefined;
@@ -69539,11 +69911,13 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
69539
69911
  referencePersistentId: z.ZodOptional<z.ZodString>;
69540
69912
  referenceResolutionFailed: z.ZodOptional<z.ZodBoolean>;
69541
69913
  key: z.ZodOptional<z.ZodString>;
69914
+ sortOrder: z.ZodOptional<z.ZodNumber>;
69542
69915
  }>, "strip", z.ZodTypeAny, {
69543
69916
  id: string;
69544
69917
  name: string;
69545
69918
  sourceId: string;
69546
69919
  key?: string | undefined;
69920
+ sortOrder?: number | undefined;
69547
69921
  referenceOriginId?: string | undefined;
69548
69922
  referenceOriginKey?: string | undefined;
69549
69923
  referenceOriginName?: string | undefined;
@@ -69555,6 +69929,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
69555
69929
  name: string;
69556
69930
  sourceId: string;
69557
69931
  key?: string | undefined;
69932
+ sortOrder?: number | undefined;
69558
69933
  referenceOriginId?: string | undefined;
69559
69934
  referenceOriginKey?: string | undefined;
69560
69935
  referenceOriginName?: string | undefined;
@@ -69569,6 +69944,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
69569
69944
  name: string;
69570
69945
  sourceId: string;
69571
69946
  key?: string | undefined;
69947
+ sortOrder?: number | undefined;
69572
69948
  referenceOriginId?: string | undefined;
69573
69949
  referenceOriginKey?: string | undefined;
69574
69950
  referenceOriginName?: string | undefined;
@@ -69583,6 +69959,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
69583
69959
  name: string;
69584
69960
  sourceId: string;
69585
69961
  key?: string | undefined;
69962
+ sortOrder?: number | undefined;
69586
69963
  referenceOriginId?: string | undefined;
69587
69964
  referenceOriginKey?: string | undefined;
69588
69965
  referenceOriginName?: string | undefined;
@@ -69958,6 +70335,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
69958
70335
  name: string;
69959
70336
  sourceId: string;
69960
70337
  key?: string | undefined;
70338
+ sortOrder?: number | undefined;
69961
70339
  referenceOriginId?: string | undefined;
69962
70340
  referenceOriginKey?: string | undefined;
69963
70341
  referenceOriginName?: string | undefined;
@@ -70333,6 +70711,7 @@ declare const DTOThemeCreatePayload: z.ZodObject<{
70333
70711
  name: string;
70334
70712
  sourceId: string;
70335
70713
  key?: string | undefined;
70714
+ sortOrder?: number | undefined;
70336
70715
  referenceOriginId?: string | undefined;
70337
70716
  referenceOriginKey?: string | undefined;
70338
70717
  referenceOriginName?: string | undefined;
@@ -84429,6 +84808,121 @@ declare class BrandsEndpoint {
84429
84808
  }>;
84430
84809
  }
84431
84810
 
84811
+ declare class DesignSystemComponentEndpoint {
84812
+ private readonly requestExecutor;
84813
+ constructor(requestExecutor: RequestExecutor);
84814
+ create(dsId: string, vId: string, body: DTODesignSystemComponentCreateInput): Promise<any>;
84815
+ }
84816
+
84817
+ declare class ElementsActionsEndpoint {
84818
+ private readonly requestExecutor;
84819
+ constructor(requestExecutor: RequestExecutor);
84820
+ createDocPage(dsId: string, vId: string, input: DTOCreateDocumentationPageInputV2): Promise<{
84821
+ type: "DocumentationGroupCreate";
84822
+ output: {
84823
+ success: true;
84824
+ };
84825
+ } | {
84826
+ type: "DocumentationTabCreate";
84827
+ output: {
84828
+ success: true;
84829
+ };
84830
+ } | {
84831
+ type: "DocumentationGroupUpdate";
84832
+ output: {
84833
+ success: true;
84834
+ };
84835
+ } | {
84836
+ type: "DocumentationGroupMove";
84837
+ output: {
84838
+ success: true;
84839
+ };
84840
+ } | {
84841
+ type: "DocumentationGroupDuplicate";
84842
+ output: {
84843
+ success: true;
84844
+ };
84845
+ } | {
84846
+ type: "DocumentationGroupDelete";
84847
+ output: {
84848
+ success: true;
84849
+ };
84850
+ } | {
84851
+ type: "DocumentationTabGroupDelete";
84852
+ output: {
84853
+ success: true;
84854
+ };
84855
+ } | {
84856
+ type: "DocumentationPageCreate";
84857
+ output: {
84858
+ success: true;
84859
+ };
84860
+ } | {
84861
+ type: "DocumentationPageUpdate";
84862
+ output: {
84863
+ success: true;
84864
+ };
84865
+ } | {
84866
+ type: "DocumentationPageMove";
84867
+ output: {
84868
+ success: true;
84869
+ };
84870
+ } | {
84871
+ type: "DocumentationPageDuplicate";
84872
+ output: {
84873
+ success: true;
84874
+ };
84875
+ } | {
84876
+ type: "DocumentationPageDelete";
84877
+ output: {
84878
+ success: true;
84879
+ };
84880
+ } | {
84881
+ type: "DocumentationPageRestore";
84882
+ output: {
84883
+ success: true;
84884
+ };
84885
+ } | {
84886
+ type: "DocumentationGroupRestore";
84887
+ output: {
84888
+ success: true;
84889
+ };
84890
+ } | {
84891
+ type: "DocumentationPageApprovalStateChange";
84892
+ output: {
84893
+ success: true;
84894
+ };
84895
+ } | {
84896
+ type: "FigmaNodeRender";
84897
+ figmaNodes: {
84898
+ id: string;
84899
+ persistentId: string;
84900
+ meta: {
84901
+ name: string;
84902
+ description?: string | undefined;
84903
+ };
84904
+ designSystemVersionId: string;
84905
+ createdAt: Date;
84906
+ updatedAt: Date;
84907
+ data: {
84908
+ figmaNodeId: string;
84909
+ isValid: boolean;
84910
+ assetId: string;
84911
+ assetUrl: string;
84912
+ assetFormat: "Png" | "Svg";
84913
+ assetScale: number;
84914
+ assetWidth?: number | undefined;
84915
+ assetHeight?: number | undefined;
84916
+ };
84917
+ origin: {
84918
+ sourceId: string;
84919
+ fileId?: string | undefined;
84920
+ parentName?: string | undefined;
84921
+ };
84922
+ }[];
84923
+ }>;
84924
+ }
84925
+
84432
84926
  declare class ImportJobsEndpoint {
84433
84927
  private readonly requestExecutor;
84434
84928
  constructor(requestExecutor: RequestExecutor);
@@ -84467,6 +84961,7 @@ declare class ElementPropertyDefinitionsEndpoint {
84467
84961
  designSystemVersionId: string;
84468
84962
  targetElementType: "Token" | "Component" | "DocumentationPage";
84469
84963
  codeName: string;
84964
+ isImmutable: boolean;
84470
84965
  options?: {
84471
84966
  id: string;
84472
84967
  name: string;
@@ -84475,6 +84970,7 @@ declare class ElementPropertyDefinitionsEndpoint {
84475
84970
  } | undefined;
84476
84971
  }[] | undefined;
84477
84972
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
84973
+ immutablePropertyType?: "Collection" | undefined;
84478
84974
  }[];
84479
84975
  }>;
84480
84976
  create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
@@ -84489,6 +84985,7 @@ declare class ElementPropertyDefinitionsEndpoint {
84489
84985
  designSystemVersionId: string;
84490
84986
  targetElementType: "Token" | "Component" | "DocumentationPage";
84491
84987
  codeName: string;
84988
+ isImmutable: boolean;
84492
84989
  options?: {
84493
84990
  id: string;
84494
84991
  name: string;
@@ -84497,6 +84994,7 @@ declare class ElementPropertyDefinitionsEndpoint {
84497
84994
  } | undefined;
84498
84995
  }[] | undefined;
84499
84996
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
84997
+ immutablePropertyType?: "Collection" | undefined;
84500
84998
  };
84501
84999
  }>;
84502
85000
  update(designSystemId: string, versionId: string, defId: string, body: DTOElementPropertyDefinitionUpdatePayload): Promise<{
@@ -84511,6 +85009,7 @@ declare class ElementPropertyDefinitionsEndpoint {
84511
85009
  designSystemVersionId: string;
84512
85010
  targetElementType: "Token" | "Component" | "DocumentationPage";
84513
85011
  codeName: string;
85012
+ isImmutable: boolean;
84514
85013
  options?: {
84515
85014
  id: string;
84516
85015
  name: string;
@@ -84519,6 +85018,7 @@ declare class ElementPropertyDefinitionsEndpoint {
84519
85018
  } | undefined;
84520
85019
  }[] | undefined;
84521
85020
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
85021
+ immutablePropertyType?: "Collection" | undefined;
84522
85022
  };
84523
85023
  }>;
84524
85024
  delete(designSystemId: string, versionId: string, defId: string): Promise<any>;
@@ -84934,6 +85434,7 @@ declare class ThemesEndpoint {
84934
85434
  name: string;
84935
85435
  sourceId: string;
84936
85436
  key?: string | undefined;
85437
+ sortOrder?: number | undefined;
84937
85438
  referenceOriginId?: string | undefined;
84938
85439
  referenceOriginKey?: string | undefined;
84939
85440
  referenceOriginName?: string | undefined;
@@ -85314,6 +85815,7 @@ declare class ThemesEndpoint {
85314
85815
  name: string;
85315
85816
  sourceId: string;
85316
85817
  key?: string | undefined;
85818
+ sortOrder?: number | undefined;
85317
85819
  referenceOriginId?: string | undefined;
85318
85820
  referenceOriginKey?: string | undefined;
85319
85821
  referenceOriginName?: string | undefined;
@@ -85694,6 +86196,7 @@ declare class ThemesEndpoint {
85694
86196
  name: string;
85695
86197
  sourceId: string;
85696
86198
  key?: string | undefined;
86199
+ sortOrder?: number | undefined;
85697
86200
  referenceOriginId?: string | undefined;
85698
86201
  referenceOriginKey?: string | undefined;
85699
86202
  referenceOriginName?: string | undefined;
@@ -86124,6 +86627,7 @@ declare class TokensEndpoint {
86124
86627
  name: string;
86125
86628
  sourceId: string;
86126
86629
  key?: string | undefined;
86630
+ sortOrder?: number | undefined;
86127
86631
  referenceOriginId?: string | undefined;
86128
86632
  referenceOriginKey?: string | undefined;
86129
86633
  referenceOriginName?: string | undefined;
@@ -86138,151 +86642,6 @@ declare class TokensEndpoint {
86138
86642
  get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
86139
86643
  }
86140
86644
 
86141
- declare const DTODesignSystemComponentCreateInput: z.ZodObject<{
86142
- brandId: z.ZodString;
86143
- persistentId: z.ZodString;
86144
- meta: z.ZodObject<{
86145
- name: z.ZodString;
86146
- description: z.ZodOptional<z.ZodString>;
86147
- }, "strip", z.ZodTypeAny, {
86148
- name: string;
86149
- description?: string | undefined;
86150
- }, {
86151
- name: string;
86152
- description?: string | undefined;
86153
- }>;
86154
- }, "strip", z.ZodTypeAny, {
86155
- persistentId: string;
86156
- meta: {
86157
- name: string;
86158
- description?: string | undefined;
86159
- };
86160
- brandId: string;
86161
- }, {
86162
- persistentId: string;
86163
- meta: {
86164
- name: string;
86165
- description?: string | undefined;
86166
- };
86167
- brandId: string;
86168
- }>;
86169
- type DTODesignSystemComponentCreateInput = z.infer<typeof DTODesignSystemComponentCreateInput>;
86170
-
86171
- declare class DesignSystemComponentEndpoint {
86172
- private readonly requestExecutor;
86173
- constructor(requestExecutor: RequestExecutor);
86174
- create(dsId: string, vId: string, body: DTODesignSystemComponentCreateInput): Promise<any>;
86175
- }
86176
-
86177
- declare class ElementsActionsEndpoint {
86178
- private readonly requestExecutor;
86179
- constructor(requestExecutor: RequestExecutor);
86180
- createDocPage(dsId: string, vId: string, input: DTOCreateDocumentationPageInputV2): Promise<{
86181
- type: "DocumentationGroupCreate";
86182
- output: {
86183
- success: true;
86184
- };
86185
- } | {
86186
- type: "DocumentationTabCreate";
86187
- output: {
86188
- success: true;
86189
- };
86190
- } | {
86191
- type: "DocumentationGroupUpdate";
86192
- output: {
86193
- success: true;
86194
- };
86195
- } | {
86196
- type: "DocumentationGroupMove";
86197
- output: {
86198
- success: true;
86199
- };
86200
- } | {
86201
- type: "DocumentationGroupDuplicate";
86202
- output: {
86203
- success: true;
86204
- };
86205
- } | {
86206
- type: "DocumentationGroupDelete";
86207
- output: {
86208
- success: true;
86209
- };
86210
- } | {
86211
- type: "DocumentationTabGroupDelete";
86212
- output: {
86213
- success: true;
86214
- };
86215
- } | {
86216
- type: "DocumentationPageCreate";
86217
- output: {
86218
- success: true;
86219
- };
86220
- } | {
86221
- type: "DocumentationPageUpdate";
86222
- output: {
86223
- success: true;
86224
- };
86225
- } | {
86226
- type: "DocumentationPageMove";
86227
- output: {
86228
- success: true;
86229
- };
86230
- } | {
86231
- type: "DocumentationPageDuplicate";
86232
- output: {
86233
- success: true;
86234
- };
86235
- } | {
86236
- type: "DocumentationPageDelete";
86237
- output: {
86238
- success: true;
86239
- };
86240
- } | {
86241
- type: "DocumentationPageRestore";
86242
- output: {
86243
- success: true;
86244
- };
86245
- } | {
86246
- type: "DocumentationGroupRestore";
86247
- output: {
86248
- success: true;
86249
- };
86250
- } | {
86251
- type: "DocumentationPageApprovalStateChange";
86252
- output: {
86253
- success: true;
86254
- };
86255
- } | {
86256
- type: "FigmaNodeRender";
86257
- figmaNodes: {
86258
- id: string;
86259
- persistentId: string;
86260
- meta: {
86261
- name: string;
86262
- description?: string | undefined;
86263
- };
86264
- designSystemVersionId: string;
86265
- createdAt: Date;
86266
- updatedAt: Date;
86267
- data: {
86268
- figmaNodeId: string;
86269
- isValid: boolean;
86270
- assetId: string;
86271
- assetUrl: string;
86272
- assetFormat: "Png" | "Svg";
86273
- assetScale: number;
86274
- assetWidth?: number | undefined;
86275
- assetHeight?: number | undefined;
86276
- };
86277
- origin: {
86278
- sourceId: string;
86279
- fileId?: string | undefined;
86280
- parentName?: string | undefined;
86281
- };
86282
- }[];
86283
- }>;
86284
- }
86285
-
86286
86645
  declare class DesignSystemVersionsEndpoint {
86287
86646
  private readonly requestExecutor;
86288
86647
  readonly themes: ThemesEndpoint;
@@ -86404,6 +86763,7 @@ declare class DesignSystemSourcesEndpoint {
86404
86763
  sources: ({
86405
86764
  type: "Figma";
86406
86765
  id: string;
86766
+ brandId: string;
86407
86767
  fileName: string;
86408
86768
  scope: {
86409
86769
  assets: boolean;
@@ -86413,7 +86773,6 @@ declare class DesignSystemSourcesEndpoint {
86413
86773
  isUnpublishedContentFallbackEnabled: boolean;
86414
86774
  themePersistentId?: string | undefined;
86415
86775
  };
86416
- brandId: string;
86417
86776
  themeId?: string | null | undefined;
86418
86777
  cloud?: {
86419
86778
  fileId: string;
@@ -86472,8 +86831,8 @@ declare class DesignSystemSourcesEndpoint {
86472
86831
  } | {
86473
86832
  type: "TokenStudio";
86474
86833
  id: string;
86475
- fileName: string;
86476
86834
  brandId: string;
86835
+ fileName: string;
86477
86836
  tokenStudio: {
86478
86837
  lastImportedAt: Date;
86479
86838
  settings: {
@@ -86498,8 +86857,8 @@ declare class DesignSystemSourcesEndpoint {
86498
86857
  } | {
86499
86858
  type: "FigmaVariablesPlugin";
86500
86859
  id: string;
86501
- fileName: string;
86502
86860
  brandId: string;
86861
+ fileName: string;
86503
86862
  upload: {
86504
86863
  remoteId: string;
86505
86864
  remoteSourceType: "TokenStudio" | "FigmaVariablesPlugin" | "Custom";
@@ -90583,4 +90942,4 @@ declare class FrontendVersionRoomYDoc {
90583
90942
 
90584
90943
  declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
90585
90944
 
90586
- 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 };
90945
+ 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 };