@supernova-studio/client 1.4.6 → 1.4.8

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
@@ -4794,6 +4794,539 @@ declare const DTOBrandUpdatePayload: z.ZodObject<{
4794
4794
  }>;
4795
4795
  type DTOBrandUpdatePayload = z.infer<typeof DTOBrandUpdatePayload>;
4796
4796
 
4797
+ declare const DTOComponentPropertyControlType: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
4798
+ declare const DTOControlTypeInfo: z.ZodObject<{
4799
+ isArray: z.ZodBoolean;
4800
+ type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
4801
+ }, "strip", z.ZodTypeAny, {
4802
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4803
+ isArray: boolean;
4804
+ }, {
4805
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4806
+ isArray: boolean;
4807
+ }>;
4808
+ declare const DTOCodeComponentProperty: z.ZodObject<{
4809
+ control: z.ZodObject<{
4810
+ isArray: z.ZodBoolean;
4811
+ type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
4812
+ }, "strip", z.ZodTypeAny, {
4813
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4814
+ isArray: boolean;
4815
+ }, {
4816
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4817
+ isArray: boolean;
4818
+ }>;
4819
+ defaultValue: z.ZodOptional<z.ZodString>;
4820
+ name: z.ZodString;
4821
+ required: z.ZodBoolean;
4822
+ type: z.ZodString;
4823
+ }, "strip", z.ZodTypeAny, {
4824
+ type: string;
4825
+ name: string;
4826
+ control: {
4827
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4828
+ isArray: boolean;
4829
+ };
4830
+ required: boolean;
4831
+ defaultValue?: string | undefined;
4832
+ }, {
4833
+ type: string;
4834
+ name: string;
4835
+ control: {
4836
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4837
+ isArray: boolean;
4838
+ };
4839
+ required: boolean;
4840
+ defaultValue?: string | undefined;
4841
+ }>;
4842
+ type DTOCodeComponentProperty = z.infer<typeof DTOCodeComponentProperty>;
4843
+ declare const DTOCodeComponent: z.ZodObject<{
4844
+ id: z.ZodString;
4845
+ designSystemVersionId: z.ZodString;
4846
+ persistentId: z.ZodString;
4847
+ createdAt: z.ZodDate;
4848
+ updatedAt: z.ZodDate;
4849
+ exportName: z.ZodString;
4850
+ properties: z.ZodRecord<z.ZodString, z.ZodObject<{
4851
+ control: z.ZodObject<{
4852
+ isArray: z.ZodBoolean;
4853
+ type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
4854
+ }, "strip", z.ZodTypeAny, {
4855
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4856
+ isArray: boolean;
4857
+ }, {
4858
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4859
+ isArray: boolean;
4860
+ }>;
4861
+ defaultValue: z.ZodOptional<z.ZodString>;
4862
+ name: z.ZodString;
4863
+ required: z.ZodBoolean;
4864
+ type: z.ZodString;
4865
+ }, "strip", z.ZodTypeAny, {
4866
+ type: string;
4867
+ name: string;
4868
+ control: {
4869
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4870
+ isArray: boolean;
4871
+ };
4872
+ required: boolean;
4873
+ defaultValue?: string | undefined;
4874
+ }, {
4875
+ type: string;
4876
+ name: string;
4877
+ control: {
4878
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4879
+ isArray: boolean;
4880
+ };
4881
+ required: boolean;
4882
+ defaultValue?: string | undefined;
4883
+ }>>;
4884
+ versionId: z.ZodString;
4885
+ }, "strip", z.ZodTypeAny, {
4886
+ id: string;
4887
+ persistentId: string;
4888
+ designSystemVersionId: string;
4889
+ createdAt: Date;
4890
+ updatedAt: Date;
4891
+ exportName: string;
4892
+ properties: Record<string, {
4893
+ type: string;
4894
+ name: string;
4895
+ control: {
4896
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4897
+ isArray: boolean;
4898
+ };
4899
+ required: boolean;
4900
+ defaultValue?: string | undefined;
4901
+ }>;
4902
+ versionId: string;
4903
+ }, {
4904
+ id: string;
4905
+ persistentId: string;
4906
+ designSystemVersionId: string;
4907
+ createdAt: Date;
4908
+ updatedAt: Date;
4909
+ exportName: string;
4910
+ properties: Record<string, {
4911
+ type: string;
4912
+ name: string;
4913
+ control: {
4914
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4915
+ isArray: boolean;
4916
+ };
4917
+ required: boolean;
4918
+ defaultValue?: string | undefined;
4919
+ }>;
4920
+ versionId: string;
4921
+ }>;
4922
+ type DTOCodeComponent = z.infer<typeof DTOCodeComponent>;
4923
+ declare const DTOCodeComponentResponse: z.ZodObject<{
4924
+ codeComponent: z.ZodObject<{
4925
+ id: z.ZodString;
4926
+ designSystemVersionId: z.ZodString;
4927
+ persistentId: z.ZodString;
4928
+ createdAt: z.ZodDate;
4929
+ updatedAt: z.ZodDate;
4930
+ exportName: z.ZodString;
4931
+ properties: z.ZodRecord<z.ZodString, z.ZodObject<{
4932
+ control: z.ZodObject<{
4933
+ isArray: z.ZodBoolean;
4934
+ type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
4935
+ }, "strip", z.ZodTypeAny, {
4936
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4937
+ isArray: boolean;
4938
+ }, {
4939
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4940
+ isArray: boolean;
4941
+ }>;
4942
+ defaultValue: z.ZodOptional<z.ZodString>;
4943
+ name: z.ZodString;
4944
+ required: z.ZodBoolean;
4945
+ type: z.ZodString;
4946
+ }, "strip", z.ZodTypeAny, {
4947
+ type: string;
4948
+ name: string;
4949
+ control: {
4950
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4951
+ isArray: boolean;
4952
+ };
4953
+ required: boolean;
4954
+ defaultValue?: string | undefined;
4955
+ }, {
4956
+ type: string;
4957
+ name: string;
4958
+ control: {
4959
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4960
+ isArray: boolean;
4961
+ };
4962
+ required: boolean;
4963
+ defaultValue?: string | undefined;
4964
+ }>>;
4965
+ versionId: z.ZodString;
4966
+ }, "strip", z.ZodTypeAny, {
4967
+ id: string;
4968
+ persistentId: string;
4969
+ designSystemVersionId: string;
4970
+ createdAt: Date;
4971
+ updatedAt: Date;
4972
+ exportName: string;
4973
+ properties: Record<string, {
4974
+ type: string;
4975
+ name: string;
4976
+ control: {
4977
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4978
+ isArray: boolean;
4979
+ };
4980
+ required: boolean;
4981
+ defaultValue?: string | undefined;
4982
+ }>;
4983
+ versionId: string;
4984
+ }, {
4985
+ id: string;
4986
+ persistentId: string;
4987
+ designSystemVersionId: string;
4988
+ createdAt: Date;
4989
+ updatedAt: Date;
4990
+ exportName: string;
4991
+ properties: Record<string, {
4992
+ type: string;
4993
+ name: string;
4994
+ control: {
4995
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
4996
+ isArray: boolean;
4997
+ };
4998
+ required: boolean;
4999
+ defaultValue?: string | undefined;
5000
+ }>;
5001
+ versionId: string;
5002
+ }>;
5003
+ }, "strip", z.ZodTypeAny, {
5004
+ codeComponent: {
5005
+ id: string;
5006
+ persistentId: string;
5007
+ designSystemVersionId: string;
5008
+ createdAt: Date;
5009
+ updatedAt: Date;
5010
+ exportName: string;
5011
+ properties: Record<string, {
5012
+ type: string;
5013
+ name: string;
5014
+ control: {
5015
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5016
+ isArray: boolean;
5017
+ };
5018
+ required: boolean;
5019
+ defaultValue?: string | undefined;
5020
+ }>;
5021
+ versionId: string;
5022
+ };
5023
+ }, {
5024
+ codeComponent: {
5025
+ id: string;
5026
+ persistentId: string;
5027
+ designSystemVersionId: string;
5028
+ createdAt: Date;
5029
+ updatedAt: Date;
5030
+ exportName: string;
5031
+ properties: Record<string, {
5032
+ type: string;
5033
+ name: string;
5034
+ control: {
5035
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5036
+ isArray: boolean;
5037
+ };
5038
+ required: boolean;
5039
+ defaultValue?: string | undefined;
5040
+ }>;
5041
+ versionId: string;
5042
+ };
5043
+ }>;
5044
+ type DTOCodeComponentResponse = z.infer<typeof DTOCodeComponentResponse>;
5045
+ declare const DTOCodeComponentListResponse: z.ZodObject<{
5046
+ codeComponents: z.ZodArray<z.ZodObject<{
5047
+ id: z.ZodString;
5048
+ designSystemVersionId: z.ZodString;
5049
+ persistentId: z.ZodString;
5050
+ createdAt: z.ZodDate;
5051
+ updatedAt: z.ZodDate;
5052
+ exportName: z.ZodString;
5053
+ properties: z.ZodRecord<z.ZodString, z.ZodObject<{
5054
+ control: z.ZodObject<{
5055
+ isArray: z.ZodBoolean;
5056
+ type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
5057
+ }, "strip", z.ZodTypeAny, {
5058
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5059
+ isArray: boolean;
5060
+ }, {
5061
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5062
+ isArray: boolean;
5063
+ }>;
5064
+ defaultValue: z.ZodOptional<z.ZodString>;
5065
+ name: z.ZodString;
5066
+ required: z.ZodBoolean;
5067
+ type: z.ZodString;
5068
+ }, "strip", z.ZodTypeAny, {
5069
+ type: string;
5070
+ name: string;
5071
+ control: {
5072
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5073
+ isArray: boolean;
5074
+ };
5075
+ required: boolean;
5076
+ defaultValue?: string | undefined;
5077
+ }, {
5078
+ type: string;
5079
+ name: string;
5080
+ control: {
5081
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5082
+ isArray: boolean;
5083
+ };
5084
+ required: boolean;
5085
+ defaultValue?: string | undefined;
5086
+ }>>;
5087
+ versionId: z.ZodString;
5088
+ }, "strip", z.ZodTypeAny, {
5089
+ id: string;
5090
+ persistentId: string;
5091
+ designSystemVersionId: string;
5092
+ createdAt: Date;
5093
+ updatedAt: Date;
5094
+ exportName: string;
5095
+ properties: Record<string, {
5096
+ type: string;
5097
+ name: string;
5098
+ control: {
5099
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5100
+ isArray: boolean;
5101
+ };
5102
+ required: boolean;
5103
+ defaultValue?: string | undefined;
5104
+ }>;
5105
+ versionId: string;
5106
+ }, {
5107
+ id: string;
5108
+ persistentId: string;
5109
+ designSystemVersionId: string;
5110
+ createdAt: Date;
5111
+ updatedAt: Date;
5112
+ exportName: string;
5113
+ properties: Record<string, {
5114
+ type: string;
5115
+ name: string;
5116
+ control: {
5117
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5118
+ isArray: boolean;
5119
+ };
5120
+ required: boolean;
5121
+ defaultValue?: string | undefined;
5122
+ }>;
5123
+ versionId: string;
5124
+ }>, "many">;
5125
+ }, "strip", z.ZodTypeAny, {
5126
+ codeComponents: {
5127
+ id: string;
5128
+ persistentId: string;
5129
+ designSystemVersionId: string;
5130
+ createdAt: Date;
5131
+ updatedAt: Date;
5132
+ exportName: string;
5133
+ properties: Record<string, {
5134
+ type: string;
5135
+ name: string;
5136
+ control: {
5137
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5138
+ isArray: boolean;
5139
+ };
5140
+ required: boolean;
5141
+ defaultValue?: string | undefined;
5142
+ }>;
5143
+ versionId: string;
5144
+ }[];
5145
+ }, {
5146
+ codeComponents: {
5147
+ id: string;
5148
+ persistentId: string;
5149
+ designSystemVersionId: string;
5150
+ createdAt: Date;
5151
+ updatedAt: Date;
5152
+ exportName: string;
5153
+ properties: Record<string, {
5154
+ type: string;
5155
+ name: string;
5156
+ control: {
5157
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5158
+ isArray: boolean;
5159
+ };
5160
+ required: boolean;
5161
+ defaultValue?: string | undefined;
5162
+ }>;
5163
+ versionId: string;
5164
+ }[];
5165
+ }>;
5166
+ type DTOCodeComponentListResponse = z.infer<typeof DTOCodeComponentListResponse>;
5167
+ declare const DTOCodeComponentCreateInput: z.ZodObject<{
5168
+ persistentId: z.ZodString;
5169
+ exportName: z.ZodString;
5170
+ properties: z.ZodRecord<z.ZodString, z.ZodObject<{
5171
+ control: z.ZodObject<{
5172
+ isArray: z.ZodBoolean;
5173
+ type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
5174
+ }, "strip", z.ZodTypeAny, {
5175
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5176
+ isArray: boolean;
5177
+ }, {
5178
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5179
+ isArray: boolean;
5180
+ }>;
5181
+ defaultValue: z.ZodOptional<z.ZodString>;
5182
+ name: z.ZodString;
5183
+ required: z.ZodBoolean;
5184
+ type: z.ZodString;
5185
+ }, "strip", z.ZodTypeAny, {
5186
+ type: string;
5187
+ name: string;
5188
+ control: {
5189
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5190
+ isArray: boolean;
5191
+ };
5192
+ required: boolean;
5193
+ defaultValue?: string | undefined;
5194
+ }, {
5195
+ type: string;
5196
+ name: string;
5197
+ control: {
5198
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5199
+ isArray: boolean;
5200
+ };
5201
+ required: boolean;
5202
+ defaultValue?: string | undefined;
5203
+ }>>;
5204
+ }, "strip", z.ZodTypeAny, {
5205
+ persistentId: string;
5206
+ exportName: string;
5207
+ properties: Record<string, {
5208
+ type: string;
5209
+ name: string;
5210
+ control: {
5211
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5212
+ isArray: boolean;
5213
+ };
5214
+ required: boolean;
5215
+ defaultValue?: string | undefined;
5216
+ }>;
5217
+ }, {
5218
+ persistentId: string;
5219
+ exportName: string;
5220
+ properties: Record<string, {
5221
+ type: string;
5222
+ name: string;
5223
+ control: {
5224
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5225
+ isArray: boolean;
5226
+ };
5227
+ required: boolean;
5228
+ defaultValue?: string | undefined;
5229
+ }>;
5230
+ }>;
5231
+ type DTOCodeComponentCreateInput = z.infer<typeof DTOCodeComponentCreateInput>;
5232
+ declare const DTOCodeComponentsCreateInput: z.ZodObject<{
5233
+ codeComponents: z.ZodArray<z.ZodObject<{
5234
+ persistentId: z.ZodString;
5235
+ exportName: z.ZodString;
5236
+ properties: z.ZodRecord<z.ZodString, z.ZodObject<{
5237
+ control: z.ZodObject<{
5238
+ isArray: z.ZodBoolean;
5239
+ type: z.ZodEnum<["Boolean", "Function", "Number", "Object", "Slot", "String", "Unknown"]>;
5240
+ }, "strip", z.ZodTypeAny, {
5241
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5242
+ isArray: boolean;
5243
+ }, {
5244
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5245
+ isArray: boolean;
5246
+ }>;
5247
+ defaultValue: z.ZodOptional<z.ZodString>;
5248
+ name: z.ZodString;
5249
+ required: z.ZodBoolean;
5250
+ type: z.ZodString;
5251
+ }, "strip", z.ZodTypeAny, {
5252
+ type: string;
5253
+ name: string;
5254
+ control: {
5255
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5256
+ isArray: boolean;
5257
+ };
5258
+ required: boolean;
5259
+ defaultValue?: string | undefined;
5260
+ }, {
5261
+ type: string;
5262
+ name: string;
5263
+ control: {
5264
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5265
+ isArray: boolean;
5266
+ };
5267
+ required: boolean;
5268
+ defaultValue?: string | undefined;
5269
+ }>>;
5270
+ }, "strip", z.ZodTypeAny, {
5271
+ persistentId: string;
5272
+ exportName: string;
5273
+ properties: Record<string, {
5274
+ type: string;
5275
+ name: string;
5276
+ control: {
5277
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5278
+ isArray: boolean;
5279
+ };
5280
+ required: boolean;
5281
+ defaultValue?: string | undefined;
5282
+ }>;
5283
+ }, {
5284
+ persistentId: string;
5285
+ exportName: string;
5286
+ properties: Record<string, {
5287
+ type: string;
5288
+ name: string;
5289
+ control: {
5290
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5291
+ isArray: boolean;
5292
+ };
5293
+ required: boolean;
5294
+ defaultValue?: string | undefined;
5295
+ }>;
5296
+ }>, "many">;
5297
+ }, "strip", z.ZodTypeAny, {
5298
+ codeComponents: {
5299
+ persistentId: string;
5300
+ exportName: string;
5301
+ properties: Record<string, {
5302
+ type: string;
5303
+ name: string;
5304
+ control: {
5305
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5306
+ isArray: boolean;
5307
+ };
5308
+ required: boolean;
5309
+ defaultValue?: string | undefined;
5310
+ }>;
5311
+ }[];
5312
+ }, {
5313
+ codeComponents: {
5314
+ persistentId: string;
5315
+ exportName: string;
5316
+ properties: Record<string, {
5317
+ type: string;
5318
+ name: string;
5319
+ control: {
5320
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
5321
+ isArray: boolean;
5322
+ };
5323
+ required: boolean;
5324
+ defaultValue?: string | undefined;
5325
+ }>;
5326
+ }[];
5327
+ }>;
5328
+ type DTOCodeComponentsCreateInput = z.infer<typeof DTOCodeComponentsCreateInput>;
5329
+
4797
5330
  declare const DTODesignSystemComponent: z.ZodObject<{
4798
5331
  id: z.ZodString;
4799
5332
  persistentId: z.ZodString;
@@ -46329,7 +46862,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
46329
46862
  isImmutable: z.ZodBoolean;
46330
46863
  immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
46331
46864
  }, "strip", z.ZodTypeAny, {
46332
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
46865
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46333
46866
  id: string;
46334
46867
  persistentId: string;
46335
46868
  meta: {
@@ -46350,7 +46883,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
46350
46883
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
46351
46884
  immutablePropertyType?: "Collection" | undefined;
46352
46885
  }, {
46353
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
46886
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46354
46887
  id: string;
46355
46888
  persistentId: string;
46356
46889
  meta: {
@@ -46419,7 +46952,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
46419
46952
  isImmutable: z.ZodBoolean;
46420
46953
  immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
46421
46954
  }, "strip", z.ZodTypeAny, {
46422
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
46955
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46423
46956
  id: string;
46424
46957
  persistentId: string;
46425
46958
  meta: {
@@ -46440,7 +46973,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
46440
46973
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
46441
46974
  immutablePropertyType?: "Collection" | undefined;
46442
46975
  }, {
46443
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
46976
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46444
46977
  id: string;
46445
46978
  persistentId: string;
46446
46979
  meta: {
@@ -46463,7 +46996,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
46463
46996
  }>, "many">;
46464
46997
  }, "strip", z.ZodTypeAny, {
46465
46998
  definitions: {
46466
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
46999
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46467
47000
  id: string;
46468
47001
  persistentId: string;
46469
47002
  meta: {
@@ -46486,7 +47019,7 @@ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
46486
47019
  }[];
46487
47020
  }, {
46488
47021
  definitions: {
46489
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47022
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46490
47023
  id: string;
46491
47024
  persistentId: string;
46492
47025
  meta: {
@@ -46556,7 +47089,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
46556
47089
  isImmutable: z.ZodBoolean;
46557
47090
  immutablePropertyType: z.ZodOptional<z.ZodEnum<["Collection"]>>;
46558
47091
  }, "strip", z.ZodTypeAny, {
46559
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47092
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46560
47093
  id: string;
46561
47094
  persistentId: string;
46562
47095
  meta: {
@@ -46577,7 +47110,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
46577
47110
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
46578
47111
  immutablePropertyType?: "Collection" | undefined;
46579
47112
  }, {
46580
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47113
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46581
47114
  id: string;
46582
47115
  persistentId: string;
46583
47116
  meta: {
@@ -46600,7 +47133,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
46600
47133
  }>;
46601
47134
  }, "strip", z.ZodTypeAny, {
46602
47135
  definition: {
46603
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47136
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46604
47137
  id: string;
46605
47138
  persistentId: string;
46606
47139
  meta: {
@@ -46623,7 +47156,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
46623
47156
  };
46624
47157
  }, {
46625
47158
  definition: {
46626
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47159
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46627
47160
  id: string;
46628
47161
  persistentId: string;
46629
47162
  meta: {
@@ -46689,7 +47222,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
46689
47222
  linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
46690
47223
  columnWidth: z.ZodOptional<z.ZodNumber>;
46691
47224
  }, "strip", z.ZodTypeAny, {
46692
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47225
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46693
47226
  persistentId: string;
46694
47227
  meta: {
46695
47228
  name: string;
@@ -46707,7 +47240,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
46707
47240
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
46708
47241
  columnWidth?: number | undefined;
46709
47242
  }, {
46710
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
47243
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
46711
47244
  persistentId: string;
46712
47245
  meta: {
46713
47246
  name: string;
@@ -51391,35 +51924,6 @@ declare const PropertyDefinitionBase: z.ZodObject<{
51391
51924
  dependsOn?: Record<string, boolean> | undefined;
51392
51925
  }>;
51393
51926
  type DTOPropertyDefinitionBase = z.infer<typeof PropertyDefinitionBase>;
51394
- declare const DTOExporterPropertyDefinitionCode: z.ZodObject<z.objectUtil.extendShape<{
51395
- key: z.ZodString;
51396
- title: z.ZodString;
51397
- description: z.ZodString;
51398
- category: z.ZodOptional<z.ZodString>;
51399
- dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
51400
- }, {
51401
- type: z.ZodLiteral<"Code">;
51402
- language: z.ZodString;
51403
- default: z.ZodString;
51404
- }>, "strip", z.ZodTypeAny, {
51405
- type: "Code";
51406
- description: string;
51407
- title: string;
51408
- key: string;
51409
- default: string;
51410
- language: string;
51411
- category?: string | undefined;
51412
- dependsOn?: Record<string, boolean> | undefined;
51413
- }, {
51414
- type: "Code";
51415
- description: string;
51416
- title: string;
51417
- key: string;
51418
- default: string;
51419
- language: string;
51420
- category?: string | undefined;
51421
- dependsOn?: Record<string, boolean> | undefined;
51422
- }>;
51423
51927
  declare const DTOExporterPropertyDefinitionEnum: z.ZodObject<z.objectUtil.extendShape<{
51424
51928
  key: z.ZodString;
51425
51929
  title: z.ZodString;
@@ -51634,6 +52138,36 @@ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.exte
51634
52138
  } | undefined;
51635
52139
  }>;
51636
52140
  type DTOExporterPropertyDefinitionObject = z.infer<typeof DTOExporterPropertyDefinitionObject>;
52141
+ declare const DTOExporterPropertyDefinitionCode: z.ZodObject<z.objectUtil.extendShape<{
52142
+ key: z.ZodString;
52143
+ title: z.ZodString;
52144
+ description: z.ZodString;
52145
+ category: z.ZodOptional<z.ZodString>;
52146
+ dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
52147
+ }, {
52148
+ type: z.ZodLiteral<"Code">;
52149
+ language: z.ZodString;
52150
+ default: z.ZodString;
52151
+ }>, "strip", z.ZodTypeAny, {
52152
+ type: "Code";
52153
+ description: string;
52154
+ title: string;
52155
+ key: string;
52156
+ default: string;
52157
+ language: string;
52158
+ category?: string | undefined;
52159
+ dependsOn?: Record<string, boolean> | undefined;
52160
+ }, {
52161
+ type: "Code";
52162
+ description: string;
52163
+ title: string;
52164
+ key: string;
52165
+ default: string;
52166
+ language: string;
52167
+ category?: string | undefined;
52168
+ dependsOn?: Record<string, boolean> | undefined;
52169
+ }>;
52170
+ type DTOExporterPropertyDefinitionCode = z.infer<typeof DTOExporterPropertyDefinitionCode>;
51637
52171
  declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
51638
52172
  key: z.ZodString;
51639
52173
  title: z.ZodString;
@@ -98391,6 +98925,74 @@ declare class BrandsEndpoint {
98391
98925
  delete(dsId: string, vId: string, brandId: string): Promise<any>;
98392
98926
  }
98393
98927
 
98928
+ declare class CodeComponentsEndpoint {
98929
+ private readonly requestExecutor;
98930
+ constructor(requestExecutor: RequestExecutor);
98931
+ import(dsId: string, vId: string, body: DTOCodeComponentsCreateInput): Promise<{
98932
+ codeComponents: {
98933
+ id: string;
98934
+ persistentId: string;
98935
+ designSystemVersionId: string;
98936
+ createdAt: Date;
98937
+ updatedAt: Date;
98938
+ exportName: string;
98939
+ properties: Record<string, {
98940
+ type: string;
98941
+ name: string;
98942
+ control: {
98943
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
98944
+ isArray: boolean;
98945
+ };
98946
+ required: boolean;
98947
+ defaultValue?: string | undefined;
98948
+ }>;
98949
+ versionId: string;
98950
+ }[];
98951
+ }>;
98952
+ list(dsId: string, vId: string): Promise<{
98953
+ codeComponents: {
98954
+ id: string;
98955
+ persistentId: string;
98956
+ designSystemVersionId: string;
98957
+ createdAt: Date;
98958
+ updatedAt: Date;
98959
+ exportName: string;
98960
+ properties: Record<string, {
98961
+ type: string;
98962
+ name: string;
98963
+ control: {
98964
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
98965
+ isArray: boolean;
98966
+ };
98967
+ required: boolean;
98968
+ defaultValue?: string | undefined;
98969
+ }>;
98970
+ versionId: string;
98971
+ }[];
98972
+ }>;
98973
+ deleteAll(dsId: string, vId: string): Promise<{
98974
+ codeComponents: {
98975
+ id: string;
98976
+ persistentId: string;
98977
+ designSystemVersionId: string;
98978
+ createdAt: Date;
98979
+ updatedAt: Date;
98980
+ exportName: string;
98981
+ properties: Record<string, {
98982
+ type: string;
98983
+ name: string;
98984
+ control: {
98985
+ type: "String" | "Boolean" | "Function" | "Number" | "Object" | "Slot" | "Unknown";
98986
+ isArray: boolean;
98987
+ };
98988
+ required: boolean;
98989
+ defaultValue?: string | undefined;
98990
+ }>;
98991
+ versionId: string;
98992
+ }[];
98993
+ }>;
98994
+ }
98995
+
98394
98996
  declare class DocumentationEndpoint {
98395
98997
  private readonly requestExecutor;
98396
98998
  constructor(requestExecutor: RequestExecutor);
@@ -100081,7 +100683,7 @@ declare class ElementPropertyDefinitionsEndpoint {
100081
100683
  constructor(requestExecutor: RequestExecutor);
100082
100684
  list(designSystemId: string, versionId: string): Promise<{
100083
100685
  definitions: {
100084
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
100686
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
100085
100687
  id: string;
100086
100688
  persistentId: string;
100087
100689
  meta: {
@@ -100105,7 +100707,7 @@ declare class ElementPropertyDefinitionsEndpoint {
100105
100707
  }>;
100106
100708
  create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
100107
100709
  definition: {
100108
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
100710
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
100109
100711
  id: string;
100110
100712
  persistentId: string;
100111
100713
  meta: {
@@ -100129,7 +100731,7 @@ declare class ElementPropertyDefinitionsEndpoint {
100129
100731
  }>;
100130
100732
  update(designSystemId: string, versionId: string, defId: string, body: DTOElementPropertyDefinitionUpdatePayload): Promise<{
100131
100733
  definition: {
100132
- type: "Text" | "Boolean" | "Number" | "URL" | "Link" | "Select" | "Generic";
100734
+ type: "Boolean" | "Number" | "Text" | "URL" | "Link" | "Select" | "Generic";
100133
100735
  id: string;
100134
100736
  persistentId: string;
100135
100737
  meta: {
@@ -101791,6 +102393,7 @@ declare class DesignSystemVersionsEndpoint {
101791
102393
  readonly elements: ElementsEndpoint;
101792
102394
  readonly designSystemComponents: DesignSystemComponentEndpoint;
101793
102395
  readonly documentation: DocumentationEndpoint;
102396
+ readonly codeComponents: CodeComponentsEndpoint;
101794
102397
  constructor(requestExecutor: RequestExecutor);
101795
102398
  list(dsId: string): Promise<{
101796
102399
  designSystemVersions: {
@@ -104053,13 +104656,13 @@ declare const DTOEventFigmaNodesRendered: z.ZodObject<{
104053
104656
  figmaNodePersistentIds: z.ZodArray<z.ZodString, "many">;
104054
104657
  }, "strip", z.ZodTypeAny, {
104055
104658
  type: "DesignSystem.FigmaNodesRendered";
104056
- designSystemId: string;
104057
104659
  versionId: string;
104660
+ designSystemId: string;
104058
104661
  figmaNodePersistentIds: string[];
104059
104662
  }, {
104060
104663
  type: "DesignSystem.FigmaNodesRendered";
104061
- designSystemId: string;
104062
104664
  versionId: string;
104665
+ designSystemId: string;
104063
104666
  figmaNodePersistentIds: string[];
104064
104667
  }>;
104065
104668
  type DTOEventFigmaNodesRendered = z.infer<typeof DTOEventFigmaNodesRendered>;
@@ -104072,15 +104675,15 @@ declare const DTOEventDataSourcesImported: z.ZodObject<{
104072
104675
  dataSourceIds: z.ZodArray<z.ZodString, "many">;
104073
104676
  }, "strip", z.ZodTypeAny, {
104074
104677
  type: "DesignSystem.ImportJobFinished";
104075
- designSystemId: string;
104076
104678
  versionId: string;
104679
+ designSystemId: string;
104077
104680
  importJobId: string;
104078
104681
  dataSourceType: "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
104079
104682
  dataSourceIds: string[];
104080
104683
  }, {
104081
104684
  type: "DesignSystem.ImportJobFinished";
104082
- designSystemId: string;
104083
104685
  versionId: string;
104686
+ designSystemId: string;
104084
104687
  importJobId: string;
104085
104688
  dataSourceType: "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
104086
104689
  dataSourceIds: string[];
@@ -104096,15 +104699,15 @@ declare const DTOEvent: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
104096
104699
  dataSourceIds: z.ZodArray<z.ZodString, "many">;
104097
104700
  }, "strip", z.ZodTypeAny, {
104098
104701
  type: "DesignSystem.ImportJobFinished";
104099
- designSystemId: string;
104100
104702
  versionId: string;
104703
+ designSystemId: string;
104101
104704
  importJobId: string;
104102
104705
  dataSourceType: "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
104103
104706
  dataSourceIds: string[];
104104
104707
  }, {
104105
104708
  type: "DesignSystem.ImportJobFinished";
104106
- designSystemId: string;
104107
104709
  versionId: string;
104710
+ designSystemId: string;
104108
104711
  importJobId: string;
104109
104712
  dataSourceType: "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
104110
104713
  dataSourceIds: string[];
@@ -104115,13 +104718,13 @@ declare const DTOEvent: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
104115
104718
  figmaNodePersistentIds: z.ZodArray<z.ZodString, "many">;
104116
104719
  }, "strip", z.ZodTypeAny, {
104117
104720
  type: "DesignSystem.FigmaNodesRendered";
104118
- designSystemId: string;
104119
104721
  versionId: string;
104722
+ designSystemId: string;
104120
104723
  figmaNodePersistentIds: string[];
104121
104724
  }, {
104122
104725
  type: "DesignSystem.FigmaNodesRendered";
104123
- designSystemId: string;
104124
104726
  versionId: string;
104727
+ designSystemId: string;
104125
104728
  figmaNodePersistentIds: string[];
104126
104729
  }>]>;
104127
104730
  type DTOEvent = z.infer<typeof DTOEvent>;
@@ -106174,4 +106777,4 @@ declare function isValidRedirectPath(path: string): {
106174
106777
  reason: ValidationErrorReason | undefined;
106175
106778
  };
106176
106779
 
106177
- export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, 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, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, 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, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
106780
+ export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentProperty, DTOCodeComponentResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOComponentPropertyControlType, DTOControlTypeInfo, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, 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, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, 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, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };