@supernova-studio/client 0.58.25 → 0.58.26

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
@@ -24380,7 +24380,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24380
24380
  brandPersistentId: z.ZodOptional<z.ZodString>;
24381
24381
  themePersistentId: z.ZodOptional<z.ZodString>;
24382
24382
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
24383
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
24383
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
24384
24384
  }, "strip", z.ZodTypeAny, {
24385
24385
  status: "InProgress" | "Failed" | "Success" | "Timeout";
24386
24386
  id: string;
@@ -24466,7 +24466,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24466
24466
  brandPersistentId?: string | undefined;
24467
24467
  themePersistentId?: string | undefined;
24468
24468
  themePersistentIds?: string[] | undefined;
24469
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24469
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24470
24470
  finishedAt?: Date | undefined;
24471
24471
  index?: number | undefined;
24472
24472
  estimatedExecutionTime?: number | undefined;
@@ -24592,7 +24592,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24592
24592
  brandPersistentId?: string | undefined;
24593
24593
  themePersistentId?: string | undefined;
24594
24594
  themePersistentIds?: string[] | undefined;
24595
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24595
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24596
24596
  finishedAt?: Date | undefined;
24597
24597
  index?: number | undefined;
24598
24598
  estimatedExecutionTime?: number | undefined;
@@ -24720,7 +24720,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24720
24720
  brandPersistentId?: string | undefined;
24721
24721
  themePersistentId?: string | undefined;
24722
24722
  themePersistentIds?: string[] | undefined;
24723
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24723
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24724
24724
  finishedAt?: Date | undefined;
24725
24725
  index?: number | undefined;
24726
24726
  estimatedExecutionTime?: number | undefined;
@@ -24848,7 +24848,7 @@ declare const DTOPublishDocumentationResponse: z.ZodObject<{
24848
24848
  brandPersistentId?: string | undefined;
24849
24849
  themePersistentId?: string | undefined;
24850
24850
  themePersistentIds?: string[] | undefined;
24851
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24851
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
24852
24852
  finishedAt?: Date | undefined;
24853
24853
  index?: number | undefined;
24854
24854
  estimatedExecutionTime?: number | undefined;
@@ -44694,20 +44694,6 @@ declare const DTOExporterPropertyDefinitionValue: z.ZodUnion<[z.ZodUnion<[z.ZodU
44694
44694
  type DTOExporterPropertyDefinitionValue = z.infer<typeof DTOExporterPropertyDefinitionValue>;
44695
44695
  declare const DTOExporterPropertyType: z.ZodEnum<["Enum", "Boolean", "String", "Number", "Array", "Object"]>;
44696
44696
  type DTOExporterPropertyType = z.infer<typeof DTOExporterPropertyType>;
44697
- declare const PropertyDefinitionBase: z.ZodObject<{
44698
- key: z.ZodString;
44699
- title: z.ZodString;
44700
- description: z.ZodString;
44701
- }, "strip", z.ZodTypeAny, {
44702
- description: string;
44703
- title: string;
44704
- key: string;
44705
- }, {
44706
- description: string;
44707
- title: string;
44708
- key: string;
44709
- }>;
44710
- type DTOPropertyDefinitionBase = z.infer<typeof PropertyDefinitionBase>;
44711
44697
  declare const DTOExporterPropertyDefinitionEnum: z.ZodObject<z.objectUtil.extendShape<{
44712
44698
  key: z.ZodString;
44713
44699
  title: z.ZodString;
@@ -44825,20 +44811,17 @@ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.exte
44825
44811
  default: z.ZodRecord<z.ZodString, z.ZodString>;
44826
44812
  allowedKeys: z.ZodOptional<z.ZodObject<{
44827
44813
  options: z.ZodArray<z.ZodString, "many">;
44828
- type: z.ZodString;
44829
44814
  }, "strip", z.ZodTypeAny, {
44830
44815
  options: string[];
44831
- type: string;
44832
44816
  }, {
44833
44817
  options: string[];
44834
- type: string;
44835
44818
  }>>;
44836
44819
  allowedValues: z.ZodOptional<z.ZodObject<{
44837
- type: z.ZodString;
44820
+ options: z.ZodArray<z.ZodString, "many">;
44838
44821
  }, "strip", z.ZodTypeAny, {
44839
- type: string;
44822
+ options: string[];
44840
44823
  }, {
44841
- type: string;
44824
+ options: string[];
44842
44825
  }>>;
44843
44826
  }>, "strip", z.ZodTypeAny, {
44844
44827
  type: "Object";
@@ -44848,10 +44831,9 @@ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.exte
44848
44831
  default: Record<string, string>;
44849
44832
  allowedKeys?: {
44850
44833
  options: string[];
44851
- type: string;
44852
44834
  } | undefined;
44853
44835
  allowedValues?: {
44854
- type: string;
44836
+ options: string[];
44855
44837
  } | undefined;
44856
44838
  }, {
44857
44839
  type: "Object";
@@ -44861,10 +44843,9 @@ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.exte
44861
44843
  default: Record<string, string>;
44862
44844
  allowedKeys?: {
44863
44845
  options: string[];
44864
- type: string;
44865
44846
  } | undefined;
44866
44847
  allowedValues?: {
44867
- type: string;
44848
+ options: string[];
44868
44849
  } | undefined;
44869
44850
  }>;
44870
44851
  type DTOExporterPropertyDefinitionObject = z.infer<typeof DTOExporterPropertyDefinitionObject>;
@@ -44975,20 +44956,17 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
44975
44956
  default: z.ZodRecord<z.ZodString, z.ZodString>;
44976
44957
  allowedKeys: z.ZodOptional<z.ZodObject<{
44977
44958
  options: z.ZodArray<z.ZodString, "many">;
44978
- type: z.ZodString;
44979
44959
  }, "strip", z.ZodTypeAny, {
44980
44960
  options: string[];
44981
- type: string;
44982
44961
  }, {
44983
44962
  options: string[];
44984
- type: string;
44985
44963
  }>>;
44986
44964
  allowedValues: z.ZodOptional<z.ZodObject<{
44987
- type: z.ZodString;
44965
+ options: z.ZodArray<z.ZodString, "many">;
44988
44966
  }, "strip", z.ZodTypeAny, {
44989
- type: string;
44967
+ options: string[];
44990
44968
  }, {
44991
- type: string;
44969
+ options: string[];
44992
44970
  }>>;
44993
44971
  }>, "strip", z.ZodTypeAny, {
44994
44972
  type: "Object";
@@ -44998,10 +44976,9 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
44998
44976
  default: Record<string, string>;
44999
44977
  allowedKeys?: {
45000
44978
  options: string[];
45001
- type: string;
45002
44979
  } | undefined;
45003
44980
  allowedValues?: {
45004
- type: string;
44981
+ options: string[];
45005
44982
  } | undefined;
45006
44983
  }, {
45007
44984
  type: "Object";
@@ -45011,10 +44988,9 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
45011
44988
  default: Record<string, string>;
45012
44989
  allowedKeys?: {
45013
44990
  options: string[];
45014
- type: string;
45015
44991
  } | undefined;
45016
44992
  allowedValues?: {
45017
- type: string;
44993
+ options: string[];
45018
44994
  } | undefined;
45019
44995
  }>]>;
45020
44996
  type DTOExporterPropertyDefinition = z.infer<typeof DTOExporterPropertyDefinition>;
@@ -45126,20 +45102,17 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
45126
45102
  default: z.ZodRecord<z.ZodString, z.ZodString>;
45127
45103
  allowedKeys: z.ZodOptional<z.ZodObject<{
45128
45104
  options: z.ZodArray<z.ZodString, "many">;
45129
- type: z.ZodString;
45130
45105
  }, "strip", z.ZodTypeAny, {
45131
45106
  options: string[];
45132
- type: string;
45133
45107
  }, {
45134
45108
  options: string[];
45135
- type: string;
45136
45109
  }>>;
45137
45110
  allowedValues: z.ZodOptional<z.ZodObject<{
45138
- type: z.ZodString;
45111
+ options: z.ZodArray<z.ZodString, "many">;
45139
45112
  }, "strip", z.ZodTypeAny, {
45140
- type: string;
45113
+ options: string[];
45141
45114
  }, {
45142
- type: string;
45115
+ options: string[];
45143
45116
  }>>;
45144
45117
  }>, "strip", z.ZodTypeAny, {
45145
45118
  type: "Object";
@@ -45149,10 +45122,9 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
45149
45122
  default: Record<string, string>;
45150
45123
  allowedKeys?: {
45151
45124
  options: string[];
45152
- type: string;
45153
45125
  } | undefined;
45154
45126
  allowedValues?: {
45155
- type: string;
45127
+ options: string[];
45156
45128
  } | undefined;
45157
45129
  }, {
45158
45130
  type: "Object";
@@ -45162,10 +45134,9 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
45162
45134
  default: Record<string, string>;
45163
45135
  allowedKeys?: {
45164
45136
  options: string[];
45165
- type: string;
45166
45137
  } | undefined;
45167
45138
  allowedValues?: {
45168
- type: string;
45139
+ options: string[];
45169
45140
  } | undefined;
45170
45141
  }>]>, "many">;
45171
45142
  }, "strip", z.ZodTypeAny, {
@@ -45208,10 +45179,9 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
45208
45179
  default: Record<string, string>;
45209
45180
  allowedKeys?: {
45210
45181
  options: string[];
45211
- type: string;
45212
45182
  } | undefined;
45213
45183
  allowedValues?: {
45214
- type: string;
45184
+ options: string[];
45215
45185
  } | undefined;
45216
45186
  })[];
45217
45187
  }, {
@@ -45254,10 +45224,9 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
45254
45224
  default: Record<string, string>;
45255
45225
  allowedKeys?: {
45256
45226
  options: string[];
45257
- type: string;
45258
45227
  } | undefined;
45259
45228
  allowedValues?: {
45260
- type: string;
45229
+ options: string[];
45261
45230
  } | undefined;
45262
45231
  })[];
45263
45232
  }>;
@@ -45425,20 +45394,17 @@ declare const DTOExporter: z.ZodObject<{
45425
45394
  default: z.ZodRecord<z.ZodString, z.ZodString>;
45426
45395
  allowedKeys: z.ZodOptional<z.ZodObject<{
45427
45396
  options: z.ZodArray<z.ZodString, "many">;
45428
- type: z.ZodString;
45429
45397
  }, "strip", z.ZodTypeAny, {
45430
45398
  options: string[];
45431
- type: string;
45432
45399
  }, {
45433
45400
  options: string[];
45434
- type: string;
45435
45401
  }>>;
45436
45402
  allowedValues: z.ZodOptional<z.ZodObject<{
45437
- type: z.ZodString;
45403
+ options: z.ZodArray<z.ZodString, "many">;
45438
45404
  }, "strip", z.ZodTypeAny, {
45439
- type: string;
45405
+ options: string[];
45440
45406
  }, {
45441
- type: string;
45407
+ options: string[];
45442
45408
  }>>;
45443
45409
  }>, "strip", z.ZodTypeAny, {
45444
45410
  type: "Object";
@@ -45448,10 +45414,9 @@ declare const DTOExporter: z.ZodObject<{
45448
45414
  default: Record<string, string>;
45449
45415
  allowedKeys?: {
45450
45416
  options: string[];
45451
- type: string;
45452
45417
  } | undefined;
45453
45418
  allowedValues?: {
45454
- type: string;
45419
+ options: string[];
45455
45420
  } | undefined;
45456
45421
  }, {
45457
45422
  type: "Object";
@@ -45461,10 +45426,9 @@ declare const DTOExporter: z.ZodObject<{
45461
45426
  default: Record<string, string>;
45462
45427
  allowedKeys?: {
45463
45428
  options: string[];
45464
- type: string;
45465
45429
  } | undefined;
45466
45430
  allowedValues?: {
45467
- type: string;
45431
+ options: string[];
45468
45432
  } | undefined;
45469
45433
  }>]>, "many">>;
45470
45434
  customBlocks: z.ZodArray<z.ZodObject<{
@@ -45673,10 +45637,9 @@ declare const DTOExporter: z.ZodObject<{
45673
45637
  default: Record<string, string>;
45674
45638
  allowedKeys?: {
45675
45639
  options: string[];
45676
- type: string;
45677
45640
  } | undefined;
45678
45641
  allowedValues?: {
45679
- type: string;
45642
+ options: string[];
45680
45643
  } | undefined;
45681
45644
  })[] | undefined;
45682
45645
  iconURL?: string | undefined;
@@ -45767,10 +45730,9 @@ declare const DTOExporter: z.ZodObject<{
45767
45730
  default: Record<string, string>;
45768
45731
  allowedKeys?: {
45769
45732
  options: string[];
45770
- type: string;
45771
45733
  } | undefined;
45772
45734
  allowedValues?: {
45773
- type: string;
45735
+ options: string[];
45774
45736
  } | undefined;
45775
45737
  })[] | undefined;
45776
45738
  iconURL?: string | undefined;
@@ -45940,20 +45902,17 @@ declare const DTOExporterResponse: z.ZodObject<{
45940
45902
  default: z.ZodRecord<z.ZodString, z.ZodString>;
45941
45903
  allowedKeys: z.ZodOptional<z.ZodObject<{
45942
45904
  options: z.ZodArray<z.ZodString, "many">;
45943
- type: z.ZodString;
45944
45905
  }, "strip", z.ZodTypeAny, {
45945
45906
  options: string[];
45946
- type: string;
45947
45907
  }, {
45948
45908
  options: string[];
45949
- type: string;
45950
45909
  }>>;
45951
45910
  allowedValues: z.ZodOptional<z.ZodObject<{
45952
- type: z.ZodString;
45911
+ options: z.ZodArray<z.ZodString, "many">;
45953
45912
  }, "strip", z.ZodTypeAny, {
45954
- type: string;
45913
+ options: string[];
45955
45914
  }, {
45956
- type: string;
45915
+ options: string[];
45957
45916
  }>>;
45958
45917
  }>, "strip", z.ZodTypeAny, {
45959
45918
  type: "Object";
@@ -45963,10 +45922,9 @@ declare const DTOExporterResponse: z.ZodObject<{
45963
45922
  default: Record<string, string>;
45964
45923
  allowedKeys?: {
45965
45924
  options: string[];
45966
- type: string;
45967
45925
  } | undefined;
45968
45926
  allowedValues?: {
45969
- type: string;
45927
+ options: string[];
45970
45928
  } | undefined;
45971
45929
  }, {
45972
45930
  type: "Object";
@@ -45976,10 +45934,9 @@ declare const DTOExporterResponse: z.ZodObject<{
45976
45934
  default: Record<string, string>;
45977
45935
  allowedKeys?: {
45978
45936
  options: string[];
45979
- type: string;
45980
45937
  } | undefined;
45981
45938
  allowedValues?: {
45982
- type: string;
45939
+ options: string[];
45983
45940
  } | undefined;
45984
45941
  }>]>, "many">>;
45985
45942
  customBlocks: z.ZodArray<z.ZodObject<{
@@ -46188,10 +46145,9 @@ declare const DTOExporterResponse: z.ZodObject<{
46188
46145
  default: Record<string, string>;
46189
46146
  allowedKeys?: {
46190
46147
  options: string[];
46191
- type: string;
46192
46148
  } | undefined;
46193
46149
  allowedValues?: {
46194
- type: string;
46150
+ options: string[];
46195
46151
  } | undefined;
46196
46152
  })[] | undefined;
46197
46153
  iconURL?: string | undefined;
@@ -46282,10 +46238,9 @@ declare const DTOExporterResponse: z.ZodObject<{
46282
46238
  default: Record<string, string>;
46283
46239
  allowedKeys?: {
46284
46240
  options: string[];
46285
- type: string;
46286
46241
  } | undefined;
46287
46242
  allowedValues?: {
46288
- type: string;
46243
+ options: string[];
46289
46244
  } | undefined;
46290
46245
  })[] | undefined;
46291
46246
  iconURL?: string | undefined;
@@ -46396,10 +46351,9 @@ declare const DTOExporterResponse: z.ZodObject<{
46396
46351
  default: Record<string, string>;
46397
46352
  allowedKeys?: {
46398
46353
  options: string[];
46399
- type: string;
46400
46354
  } | undefined;
46401
46355
  allowedValues?: {
46402
- type: string;
46356
+ options: string[];
46403
46357
  } | undefined;
46404
46358
  })[] | undefined;
46405
46359
  iconURL?: string | undefined;
@@ -46497,10 +46451,9 @@ declare const DTOExporterResponse: z.ZodObject<{
46497
46451
  default: Record<string, string>;
46498
46452
  allowedKeys?: {
46499
46453
  options: string[];
46500
- type: string;
46501
46454
  } | undefined;
46502
46455
  allowedValues?: {
46503
- type: string;
46456
+ options: string[];
46504
46457
  } | undefined;
46505
46458
  })[] | undefined;
46506
46459
  iconURL?: string | undefined;
@@ -46657,20 +46610,17 @@ declare const DTOExporterListResponse: z.ZodObject<{
46657
46610
  default: z.ZodRecord<z.ZodString, z.ZodString>;
46658
46611
  allowedKeys: z.ZodOptional<z.ZodObject<{
46659
46612
  options: z.ZodArray<z.ZodString, "many">;
46660
- type: z.ZodString;
46661
46613
  }, "strip", z.ZodTypeAny, {
46662
46614
  options: string[];
46663
- type: string;
46664
46615
  }, {
46665
46616
  options: string[];
46666
- type: string;
46667
46617
  }>>;
46668
46618
  allowedValues: z.ZodOptional<z.ZodObject<{
46669
- type: z.ZodString;
46619
+ options: z.ZodArray<z.ZodString, "many">;
46670
46620
  }, "strip", z.ZodTypeAny, {
46671
- type: string;
46621
+ options: string[];
46672
46622
  }, {
46673
- type: string;
46623
+ options: string[];
46674
46624
  }>>;
46675
46625
  }>, "strip", z.ZodTypeAny, {
46676
46626
  type: "Object";
@@ -46680,10 +46630,9 @@ declare const DTOExporterListResponse: z.ZodObject<{
46680
46630
  default: Record<string, string>;
46681
46631
  allowedKeys?: {
46682
46632
  options: string[];
46683
- type: string;
46684
46633
  } | undefined;
46685
46634
  allowedValues?: {
46686
- type: string;
46635
+ options: string[];
46687
46636
  } | undefined;
46688
46637
  }, {
46689
46638
  type: "Object";
@@ -46693,10 +46642,9 @@ declare const DTOExporterListResponse: z.ZodObject<{
46693
46642
  default: Record<string, string>;
46694
46643
  allowedKeys?: {
46695
46644
  options: string[];
46696
- type: string;
46697
46645
  } | undefined;
46698
46646
  allowedValues?: {
46699
- type: string;
46647
+ options: string[];
46700
46648
  } | undefined;
46701
46649
  }>]>, "many">>;
46702
46650
  customBlocks: z.ZodArray<z.ZodObject<{
@@ -46905,10 +46853,9 @@ declare const DTOExporterListResponse: z.ZodObject<{
46905
46853
  default: Record<string, string>;
46906
46854
  allowedKeys?: {
46907
46855
  options: string[];
46908
- type: string;
46909
46856
  } | undefined;
46910
46857
  allowedValues?: {
46911
- type: string;
46858
+ options: string[];
46912
46859
  } | undefined;
46913
46860
  })[] | undefined;
46914
46861
  iconURL?: string | undefined;
@@ -46999,10 +46946,9 @@ declare const DTOExporterListResponse: z.ZodObject<{
46999
46946
  default: Record<string, string>;
47000
46947
  allowedKeys?: {
47001
46948
  options: string[];
47002
- type: string;
47003
46949
  } | undefined;
47004
46950
  allowedValues?: {
47005
- type: string;
46951
+ options: string[];
47006
46952
  } | undefined;
47007
46953
  })[] | undefined;
47008
46954
  iconURL?: string | undefined;
@@ -47113,10 +47059,9 @@ declare const DTOExporterListResponse: z.ZodObject<{
47113
47059
  default: Record<string, string>;
47114
47060
  allowedKeys?: {
47115
47061
  options: string[];
47116
- type: string;
47117
47062
  } | undefined;
47118
47063
  allowedValues?: {
47119
- type: string;
47064
+ options: string[];
47120
47065
  } | undefined;
47121
47066
  })[] | undefined;
47122
47067
  iconURL?: string | undefined;
@@ -47214,10 +47159,9 @@ declare const DTOExporterListResponse: z.ZodObject<{
47214
47159
  default: Record<string, string>;
47215
47160
  allowedKeys?: {
47216
47161
  options: string[];
47217
- type: string;
47218
47162
  } | undefined;
47219
47163
  allowedValues?: {
47220
- type: string;
47164
+ options: string[];
47221
47165
  } | undefined;
47222
47166
  })[] | undefined;
47223
47167
  iconURL?: string | undefined;
@@ -48381,7 +48325,7 @@ declare const DTOExportJob: z.ZodObject<{
48381
48325
  brandPersistentId: z.ZodOptional<z.ZodString>;
48382
48326
  themePersistentId: z.ZodOptional<z.ZodString>;
48383
48327
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
48384
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
48328
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
48385
48329
  }, "strip", z.ZodTypeAny, {
48386
48330
  status: "InProgress" | "Failed" | "Success" | "Timeout";
48387
48331
  id: string;
@@ -48467,7 +48411,7 @@ declare const DTOExportJob: z.ZodObject<{
48467
48411
  brandPersistentId?: string | undefined;
48468
48412
  themePersistentId?: string | undefined;
48469
48413
  themePersistentIds?: string[] | undefined;
48470
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48414
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48471
48415
  finishedAt?: Date | undefined;
48472
48416
  index?: number | undefined;
48473
48417
  estimatedExecutionTime?: number | undefined;
@@ -48593,7 +48537,7 @@ declare const DTOExportJob: z.ZodObject<{
48593
48537
  brandPersistentId?: string | undefined;
48594
48538
  themePersistentId?: string | undefined;
48595
48539
  themePersistentIds?: string[] | undefined;
48596
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48540
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
48597
48541
  finishedAt?: Date | undefined;
48598
48542
  index?: number | undefined;
48599
48543
  estimatedExecutionTime?: number | undefined;
@@ -49177,7 +49121,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
49177
49121
  brandPersistentId: z.ZodOptional<z.ZodString>;
49178
49122
  themePersistentId: z.ZodOptional<z.ZodString>;
49179
49123
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
49180
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
49124
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
49181
49125
  }, "strip", z.ZodTypeAny, {
49182
49126
  status: "InProgress" | "Failed" | "Success" | "Timeout";
49183
49127
  id: string;
@@ -49263,7 +49207,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
49263
49207
  brandPersistentId?: string | undefined;
49264
49208
  themePersistentId?: string | undefined;
49265
49209
  themePersistentIds?: string[] | undefined;
49266
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49210
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49267
49211
  finishedAt?: Date | undefined;
49268
49212
  index?: number | undefined;
49269
49213
  estimatedExecutionTime?: number | undefined;
@@ -49389,7 +49333,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
49389
49333
  brandPersistentId?: string | undefined;
49390
49334
  themePersistentId?: string | undefined;
49391
49335
  themePersistentIds?: string[] | undefined;
49392
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49336
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49393
49337
  finishedAt?: Date | undefined;
49394
49338
  index?: number | undefined;
49395
49339
  estimatedExecutionTime?: number | undefined;
@@ -49517,7 +49461,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
49517
49461
  brandPersistentId?: string | undefined;
49518
49462
  themePersistentId?: string | undefined;
49519
49463
  themePersistentIds?: string[] | undefined;
49520
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49464
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49521
49465
  finishedAt?: Date | undefined;
49522
49466
  index?: number | undefined;
49523
49467
  estimatedExecutionTime?: number | undefined;
@@ -49645,7 +49589,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
49645
49589
  brandPersistentId?: string | undefined;
49646
49590
  themePersistentId?: string | undefined;
49647
49591
  themePersistentIds?: string[] | undefined;
49648
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49592
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
49649
49593
  finishedAt?: Date | undefined;
49650
49594
  index?: number | undefined;
49651
49595
  estimatedExecutionTime?: number | undefined;
@@ -50245,7 +50189,7 @@ declare const DTOPipeline: z.ZodObject<{
50245
50189
  brandPersistentId: z.ZodOptional<z.ZodString>;
50246
50190
  themePersistentId: z.ZodOptional<z.ZodString>;
50247
50191
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
50248
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
50192
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
50249
50193
  }, "strip", z.ZodTypeAny, {
50250
50194
  status: "InProgress" | "Failed" | "Success" | "Timeout";
50251
50195
  id: string;
@@ -50331,7 +50275,7 @@ declare const DTOPipeline: z.ZodObject<{
50331
50275
  brandPersistentId?: string | undefined;
50332
50276
  themePersistentId?: string | undefined;
50333
50277
  themePersistentIds?: string[] | undefined;
50334
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50278
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50335
50279
  finishedAt?: Date | undefined;
50336
50280
  index?: number | undefined;
50337
50281
  estimatedExecutionTime?: number | undefined;
@@ -50457,7 +50401,7 @@ declare const DTOPipeline: z.ZodObject<{
50457
50401
  brandPersistentId?: string | undefined;
50458
50402
  themePersistentId?: string | undefined;
50459
50403
  themePersistentIds?: string[] | undefined;
50460
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50404
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50461
50405
  finishedAt?: Date | undefined;
50462
50406
  index?: number | undefined;
50463
50407
  estimatedExecutionTime?: number | undefined;
@@ -50681,7 +50625,7 @@ declare const DTOPipeline: z.ZodObject<{
50681
50625
  brandPersistentId: z.ZodOptional<z.ZodString>;
50682
50626
  themePersistentId: z.ZodOptional<z.ZodString>;
50683
50627
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
50684
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
50628
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
50685
50629
  }, "strip", z.ZodTypeAny, {
50686
50630
  id: string;
50687
50631
  name: string;
@@ -50775,7 +50719,7 @@ declare const DTOPipeline: z.ZodObject<{
50775
50719
  brandPersistentId?: string | undefined;
50776
50720
  themePersistentId?: string | undefined;
50777
50721
  themePersistentIds?: string[] | undefined;
50778
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50722
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50779
50723
  finishedAt?: Date | undefined;
50780
50724
  index?: number | undefined;
50781
50725
  estimatedExecutionTime?: number | undefined;
@@ -50820,7 +50764,7 @@ declare const DTOPipeline: z.ZodObject<{
50820
50764
  brandPersistentId?: string | undefined;
50821
50765
  themePersistentId?: string | undefined;
50822
50766
  themePersistentIds?: string[] | undefined;
50823
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50767
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50824
50768
  webhookUrl?: string | undefined;
50825
50769
  destinationSnDocs?: {
50826
50770
  environment: "Live" | "Preview";
@@ -50973,7 +50917,7 @@ declare const DTOPipeline: z.ZodObject<{
50973
50917
  brandPersistentId?: string | undefined;
50974
50918
  themePersistentId?: string | undefined;
50975
50919
  themePersistentIds?: string[] | undefined;
50976
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50920
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50977
50921
  finishedAt?: Date | undefined;
50978
50922
  index?: number | undefined;
50979
50923
  estimatedExecutionTime?: number | undefined;
@@ -51018,7 +50962,7 @@ declare const DTOPipeline: z.ZodObject<{
51018
50962
  brandPersistentId?: string | undefined;
51019
50963
  themePersistentId?: string | undefined;
51020
50964
  themePersistentIds?: string[] | undefined;
51021
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
50965
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51022
50966
  webhookUrl?: string | undefined;
51023
50967
  destinationSnDocs?: {
51024
50968
  environment: "Live" | "Preview";
@@ -51622,7 +51566,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
51622
51566
  brandPersistentId: z.ZodOptional<z.ZodString>;
51623
51567
  themePersistentId: z.ZodOptional<z.ZodString>;
51624
51568
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
51625
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
51569
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
51626
51570
  }, "strip", z.ZodTypeAny, {
51627
51571
  status: "InProgress" | "Failed" | "Success" | "Timeout";
51628
51572
  id: string;
@@ -51708,7 +51652,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
51708
51652
  brandPersistentId?: string | undefined;
51709
51653
  themePersistentId?: string | undefined;
51710
51654
  themePersistentIds?: string[] | undefined;
51711
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51655
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51712
51656
  finishedAt?: Date | undefined;
51713
51657
  index?: number | undefined;
51714
51658
  estimatedExecutionTime?: number | undefined;
@@ -51834,7 +51778,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
51834
51778
  brandPersistentId?: string | undefined;
51835
51779
  themePersistentId?: string | undefined;
51836
51780
  themePersistentIds?: string[] | undefined;
51837
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51781
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
51838
51782
  finishedAt?: Date | undefined;
51839
51783
  index?: number | undefined;
51840
51784
  estimatedExecutionTime?: number | undefined;
@@ -52058,7 +52002,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
52058
52002
  brandPersistentId: z.ZodOptional<z.ZodString>;
52059
52003
  themePersistentId: z.ZodOptional<z.ZodString>;
52060
52004
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
52061
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
52005
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
52062
52006
  }, "strip", z.ZodTypeAny, {
52063
52007
  id: string;
52064
52008
  name: string;
@@ -52152,7 +52096,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
52152
52096
  brandPersistentId?: string | undefined;
52153
52097
  themePersistentId?: string | undefined;
52154
52098
  themePersistentIds?: string[] | undefined;
52155
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52099
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52156
52100
  finishedAt?: Date | undefined;
52157
52101
  index?: number | undefined;
52158
52102
  estimatedExecutionTime?: number | undefined;
@@ -52197,7 +52141,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
52197
52141
  brandPersistentId?: string | undefined;
52198
52142
  themePersistentId?: string | undefined;
52199
52143
  themePersistentIds?: string[] | undefined;
52200
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52144
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52201
52145
  webhookUrl?: string | undefined;
52202
52146
  destinationSnDocs?: {
52203
52147
  environment: "Live" | "Preview";
@@ -52350,7 +52294,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
52350
52294
  brandPersistentId?: string | undefined;
52351
52295
  themePersistentId?: string | undefined;
52352
52296
  themePersistentIds?: string[] | undefined;
52353
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52297
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52354
52298
  finishedAt?: Date | undefined;
52355
52299
  index?: number | undefined;
52356
52300
  estimatedExecutionTime?: number | undefined;
@@ -52395,7 +52339,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
52395
52339
  brandPersistentId?: string | undefined;
52396
52340
  themePersistentId?: string | undefined;
52397
52341
  themePersistentIds?: string[] | undefined;
52398
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52342
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52399
52343
  webhookUrl?: string | undefined;
52400
52344
  destinationSnDocs?: {
52401
52345
  environment: "Live" | "Preview";
@@ -52550,7 +52494,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
52550
52494
  brandPersistentId?: string | undefined;
52551
52495
  themePersistentId?: string | undefined;
52552
52496
  themePersistentIds?: string[] | undefined;
52553
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52497
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52554
52498
  finishedAt?: Date | undefined;
52555
52499
  index?: number | undefined;
52556
52500
  estimatedExecutionTime?: number | undefined;
@@ -52595,7 +52539,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
52595
52539
  brandPersistentId?: string | undefined;
52596
52540
  themePersistentId?: string | undefined;
52597
52541
  themePersistentIds?: string[] | undefined;
52598
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52542
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52599
52543
  webhookUrl?: string | undefined;
52600
52544
  destinationSnDocs?: {
52601
52545
  environment: "Live" | "Preview";
@@ -52750,7 +52694,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
52750
52694
  brandPersistentId?: string | undefined;
52751
52695
  themePersistentId?: string | undefined;
52752
52696
  themePersistentIds?: string[] | undefined;
52753
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52697
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52754
52698
  finishedAt?: Date | undefined;
52755
52699
  index?: number | undefined;
52756
52700
  estimatedExecutionTime?: number | undefined;
@@ -52795,7 +52739,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
52795
52739
  brandPersistentId?: string | undefined;
52796
52740
  themePersistentId?: string | undefined;
52797
52741
  themePersistentIds?: string[] | undefined;
52798
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52742
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
52799
52743
  webhookUrl?: string | undefined;
52800
52744
  destinationSnDocs?: {
52801
52745
  environment: "Live" | "Preview";
@@ -53400,7 +53344,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
53400
53344
  brandPersistentId: z.ZodOptional<z.ZodString>;
53401
53345
  themePersistentId: z.ZodOptional<z.ZodString>;
53402
53346
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
53403
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
53347
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
53404
53348
  }, "strip", z.ZodTypeAny, {
53405
53349
  status: "InProgress" | "Failed" | "Success" | "Timeout";
53406
53350
  id: string;
@@ -53486,7 +53430,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
53486
53430
  brandPersistentId?: string | undefined;
53487
53431
  themePersistentId?: string | undefined;
53488
53432
  themePersistentIds?: string[] | undefined;
53489
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
53433
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
53490
53434
  finishedAt?: Date | undefined;
53491
53435
  index?: number | undefined;
53492
53436
  estimatedExecutionTime?: number | undefined;
@@ -53612,7 +53556,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
53612
53556
  brandPersistentId?: string | undefined;
53613
53557
  themePersistentId?: string | undefined;
53614
53558
  themePersistentIds?: string[] | undefined;
53615
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
53559
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
53616
53560
  finishedAt?: Date | undefined;
53617
53561
  index?: number | undefined;
53618
53562
  estimatedExecutionTime?: number | undefined;
@@ -53836,7 +53780,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
53836
53780
  brandPersistentId: z.ZodOptional<z.ZodString>;
53837
53781
  themePersistentId: z.ZodOptional<z.ZodString>;
53838
53782
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
53839
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
53783
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
53840
53784
  }, "strip", z.ZodTypeAny, {
53841
53785
  id: string;
53842
53786
  name: string;
@@ -53930,7 +53874,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
53930
53874
  brandPersistentId?: string | undefined;
53931
53875
  themePersistentId?: string | undefined;
53932
53876
  themePersistentIds?: string[] | undefined;
53933
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
53877
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
53934
53878
  finishedAt?: Date | undefined;
53935
53879
  index?: number | undefined;
53936
53880
  estimatedExecutionTime?: number | undefined;
@@ -53975,7 +53919,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
53975
53919
  brandPersistentId?: string | undefined;
53976
53920
  themePersistentId?: string | undefined;
53977
53921
  themePersistentIds?: string[] | undefined;
53978
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
53922
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
53979
53923
  webhookUrl?: string | undefined;
53980
53924
  destinationSnDocs?: {
53981
53925
  environment: "Live" | "Preview";
@@ -54128,7 +54072,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
54128
54072
  brandPersistentId?: string | undefined;
54129
54073
  themePersistentId?: string | undefined;
54130
54074
  themePersistentIds?: string[] | undefined;
54131
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54075
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54132
54076
  finishedAt?: Date | undefined;
54133
54077
  index?: number | undefined;
54134
54078
  estimatedExecutionTime?: number | undefined;
@@ -54173,7 +54117,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
54173
54117
  brandPersistentId?: string | undefined;
54174
54118
  themePersistentId?: string | undefined;
54175
54119
  themePersistentIds?: string[] | undefined;
54176
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54120
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54177
54121
  webhookUrl?: string | undefined;
54178
54122
  destinationSnDocs?: {
54179
54123
  environment: "Live" | "Preview";
@@ -54328,7 +54272,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
54328
54272
  brandPersistentId?: string | undefined;
54329
54273
  themePersistentId?: string | undefined;
54330
54274
  themePersistentIds?: string[] | undefined;
54331
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54275
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54332
54276
  finishedAt?: Date | undefined;
54333
54277
  index?: number | undefined;
54334
54278
  estimatedExecutionTime?: number | undefined;
@@ -54373,7 +54317,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
54373
54317
  brandPersistentId?: string | undefined;
54374
54318
  themePersistentId?: string | undefined;
54375
54319
  themePersistentIds?: string[] | undefined;
54376
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54320
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54377
54321
  webhookUrl?: string | undefined;
54378
54322
  destinationSnDocs?: {
54379
54323
  environment: "Live" | "Preview";
@@ -54528,7 +54472,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
54528
54472
  brandPersistentId?: string | undefined;
54529
54473
  themePersistentId?: string | undefined;
54530
54474
  themePersistentIds?: string[] | undefined;
54531
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54475
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54532
54476
  finishedAt?: Date | undefined;
54533
54477
  index?: number | undefined;
54534
54478
  estimatedExecutionTime?: number | undefined;
@@ -54573,7 +54517,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
54573
54517
  brandPersistentId?: string | undefined;
54574
54518
  themePersistentId?: string | undefined;
54575
54519
  themePersistentIds?: string[] | undefined;
54576
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54520
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
54577
54521
  webhookUrl?: string | undefined;
54578
54522
  destinationSnDocs?: {
54579
54523
  environment: "Live" | "Preview";
@@ -84165,10 +84109,9 @@ declare class ExportersEndpoint {
84165
84109
  default: Record<string, string>;
84166
84110
  allowedKeys?: {
84167
84111
  options: string[];
84168
- type: string;
84169
84112
  } | undefined;
84170
84113
  allowedValues?: {
84171
- type: string;
84114
+ options: string[];
84172
84115
  } | undefined;
84173
84116
  })[] | undefined;
84174
84117
  iconURL?: string | undefined;
@@ -84267,10 +84210,9 @@ declare class ExportersEndpoint {
84267
84210
  default: Record<string, string>;
84268
84211
  allowedKeys?: {
84269
84212
  options: string[];
84270
- type: string;
84271
84213
  } | undefined;
84272
84214
  allowedValues?: {
84273
- type: string;
84215
+ options: string[];
84274
84216
  } | undefined;
84275
84217
  })[] | undefined;
84276
84218
  iconURL?: string | undefined;
@@ -84369,10 +84311,9 @@ declare class ExportersEndpoint {
84369
84311
  default: Record<string, string>;
84370
84312
  allowedKeys?: {
84371
84313
  options: string[];
84372
- type: string;
84373
84314
  } | undefined;
84374
84315
  allowedValues?: {
84375
- type: string;
84316
+ options: string[];
84376
84317
  } | undefined;
84377
84318
  })[] | undefined;
84378
84319
  iconURL?: string | undefined;
@@ -85200,7 +85141,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
85200
85141
  brandPersistentId: z.ZodOptional<z.ZodString>;
85201
85142
  themePersistentId: z.ZodOptional<z.ZodString>;
85202
85143
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
85203
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
85144
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
85204
85145
  destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
85205
85146
  gitQuery: z.ZodObject<{
85206
85147
  organization: z.ZodOptional<z.ZodString>;
@@ -85592,7 +85533,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
85592
85533
  brandPersistentId?: string | undefined;
85593
85534
  themePersistentId?: string | undefined;
85594
85535
  themePersistentIds?: string[] | undefined;
85595
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
85536
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
85596
85537
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
85597
85538
  }, {
85598
85539
  name: string;
@@ -85671,7 +85612,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
85671
85612
  brandPersistentId?: string | undefined;
85672
85613
  themePersistentId?: string | undefined;
85673
85614
  themePersistentIds?: string[] | undefined;
85674
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
85615
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
85675
85616
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
85676
85617
  }>;
85677
85618
  type DTOPipelineCreateBody = z.infer<typeof DTOPipelineCreateBody>;
@@ -85684,7 +85625,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
85684
85625
  brandPersistentId: z.ZodOptional<z.ZodString>;
85685
85626
  themePersistentId: z.ZodOptional<z.ZodString>;
85686
85627
  themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
85687
- exporterConfigurationProperties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
85628
+ exporterConfiguration: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>>;
85688
85629
  destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
85689
85630
  gitQuery: z.ZodObject<{
85690
85631
  organization: z.ZodOptional<z.ZodString>;
@@ -86079,7 +86020,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
86079
86020
  brandPersistentId?: string | undefined;
86080
86021
  themePersistentId?: string | undefined;
86081
86022
  themePersistentIds?: string[] | undefined;
86082
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
86023
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
86083
86024
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
86084
86025
  }, {
86085
86026
  id: string;
@@ -86159,7 +86100,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
86159
86100
  brandPersistentId?: string | undefined;
86160
86101
  themePersistentId?: string | undefined;
86161
86102
  themePersistentIds?: string[] | undefined;
86162
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
86103
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
86163
86104
  destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
86164
86105
  }>;
86165
86106
  type DTOPipelineUpdateBody = z.infer<typeof DTOPipelineUpdateBody>;
@@ -86961,7 +86902,7 @@ declare class PipelinesEndpoint {
86961
86902
  brandPersistentId?: string | undefined;
86962
86903
  themePersistentId?: string | undefined;
86963
86904
  themePersistentIds?: string[] | undefined;
86964
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
86905
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
86965
86906
  finishedAt?: Date | undefined;
86966
86907
  index?: number | undefined;
86967
86908
  estimatedExecutionTime?: number | undefined;
@@ -87006,7 +86947,7 @@ declare class PipelinesEndpoint {
87006
86947
  brandPersistentId?: string | undefined;
87007
86948
  themePersistentId?: string | undefined;
87008
86949
  themePersistentIds?: string[] | undefined;
87009
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
86950
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
87010
86951
  webhookUrl?: string | undefined;
87011
86952
  destinationSnDocs?: {
87012
86953
  environment: "Live" | "Preview";
@@ -87162,7 +87103,7 @@ declare class PipelinesEndpoint {
87162
87103
  brandPersistentId?: string | undefined;
87163
87104
  themePersistentId?: string | undefined;
87164
87105
  themePersistentIds?: string[] | undefined;
87165
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
87106
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
87166
87107
  finishedAt?: Date | undefined;
87167
87108
  index?: number | undefined;
87168
87109
  estimatedExecutionTime?: number | undefined;
@@ -87207,7 +87148,7 @@ declare class PipelinesEndpoint {
87207
87148
  brandPersistentId?: string | undefined;
87208
87149
  themePersistentId?: string | undefined;
87209
87150
  themePersistentIds?: string[] | undefined;
87210
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
87151
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
87211
87152
  webhookUrl?: string | undefined;
87212
87153
  destinationSnDocs?: {
87213
87154
  environment: "Live" | "Preview";
@@ -87355,7 +87296,7 @@ declare class PipelinesEndpoint {
87355
87296
  brandPersistentId?: string | undefined;
87356
87297
  themePersistentId?: string | undefined;
87357
87298
  themePersistentIds?: string[] | undefined;
87358
- exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
87299
+ exporterConfiguration?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
87359
87300
  finishedAt?: Date | undefined;
87360
87301
  index?: number | undefined;
87361
87302
  estimatedExecutionTime?: number | undefined;
@@ -94785,4 +94726,4 @@ declare class FrontendVersionRoomYDoc {
94785
94726
 
94786
94727
  declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
94787
94728
 
94788
- 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, 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, 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, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, 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, 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, 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, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, 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, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
94729
+ 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, 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, 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, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, 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, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, 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, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, 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, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };