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