@supernova-studio/client 0.58.23 → 0.58.25
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 +183 -102
- package/dist/index.d.ts +183 -102
- package/dist/index.js +87 -25
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2938 -2876
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/figma-nodes/figma-node.ts +5 -0
- 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/src/utils/figma.ts +4 -4
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;
|
|
@@ -41073,11 +41073,17 @@ declare const DTOFigmaNodeRenderUrlInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
41073
41073
|
* Id of a design system's data source representing a linked Figma file
|
|
41074
41074
|
*/
|
|
41075
41075
|
figmaNodeUrl: z.ZodString;
|
|
41076
|
+
/**
|
|
41077
|
+
* Brand persistent id to use in case a source has to be created for this render
|
|
41078
|
+
*/
|
|
41079
|
+
brandPersistentId: z.ZodString;
|
|
41076
41080
|
}>, "strip", z.ZodTypeAny, {
|
|
41081
|
+
brandPersistentId: string;
|
|
41077
41082
|
inputType: "URL";
|
|
41078
41083
|
format: "Png" | "Svg";
|
|
41079
41084
|
figmaNodeUrl: string;
|
|
41080
41085
|
}, {
|
|
41086
|
+
brandPersistentId: string;
|
|
41081
41087
|
inputType: "URL";
|
|
41082
41088
|
figmaNodeUrl: string;
|
|
41083
41089
|
format?: "Png" | "Svg" | undefined;
|
|
@@ -41119,11 +41125,17 @@ declare const DTOFigmaNodeRenderInput: z.ZodDiscriminatedUnion<"inputType", [z.Z
|
|
|
41119
41125
|
* Id of a design system's data source representing a linked Figma file
|
|
41120
41126
|
*/
|
|
41121
41127
|
figmaNodeUrl: z.ZodString;
|
|
41128
|
+
/**
|
|
41129
|
+
* Brand persistent id to use in case a source has to be created for this render
|
|
41130
|
+
*/
|
|
41131
|
+
brandPersistentId: z.ZodString;
|
|
41122
41132
|
}>, "strip", z.ZodTypeAny, {
|
|
41133
|
+
brandPersistentId: string;
|
|
41123
41134
|
inputType: "URL";
|
|
41124
41135
|
format: "Png" | "Svg";
|
|
41125
41136
|
figmaNodeUrl: string;
|
|
41126
41137
|
}, {
|
|
41138
|
+
brandPersistentId: string;
|
|
41127
41139
|
inputType: "URL";
|
|
41128
41140
|
figmaNodeUrl: string;
|
|
41129
41141
|
format?: "Png" | "Svg" | undefined;
|
|
@@ -41370,11 +41382,14 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
|
41370
41382
|
}, {
|
|
41371
41383
|
inputType: z.ZodLiteral<"URL">;
|
|
41372
41384
|
figmaNodeUrl: z.ZodString;
|
|
41385
|
+
brandPersistentId: z.ZodString;
|
|
41373
41386
|
}>, "strip", z.ZodTypeAny, {
|
|
41387
|
+
brandPersistentId: string;
|
|
41374
41388
|
inputType: "URL";
|
|
41375
41389
|
format: "Png" | "Svg";
|
|
41376
41390
|
figmaNodeUrl: string;
|
|
41377
41391
|
}, {
|
|
41392
|
+
brandPersistentId: string;
|
|
41378
41393
|
inputType: "URL";
|
|
41379
41394
|
figmaNodeUrl: string;
|
|
41380
41395
|
format?: "Png" | "Svg" | undefined;
|
|
@@ -41387,6 +41402,7 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
|
41387
41402
|
format: "Png" | "Svg";
|
|
41388
41403
|
figmaFileNodeId: string;
|
|
41389
41404
|
} | {
|
|
41405
|
+
brandPersistentId: string;
|
|
41390
41406
|
inputType: "URL";
|
|
41391
41407
|
format: "Png" | "Svg";
|
|
41392
41408
|
figmaNodeUrl: string;
|
|
@@ -41399,6 +41415,7 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
|
41399
41415
|
inputType?: "NodeId" | undefined;
|
|
41400
41416
|
format?: "Png" | "Svg" | undefined;
|
|
41401
41417
|
} | {
|
|
41418
|
+
brandPersistentId: string;
|
|
41402
41419
|
inputType: "URL";
|
|
41403
41420
|
figmaNodeUrl: string;
|
|
41404
41421
|
format?: "Png" | "Svg" | undefined;
|
|
@@ -44334,11 +44351,14 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
44334
44351
|
}, {
|
|
44335
44352
|
inputType: z.ZodLiteral<"URL">;
|
|
44336
44353
|
figmaNodeUrl: z.ZodString;
|
|
44354
|
+
brandPersistentId: z.ZodString;
|
|
44337
44355
|
}>, "strip", z.ZodTypeAny, {
|
|
44356
|
+
brandPersistentId: string;
|
|
44338
44357
|
inputType: "URL";
|
|
44339
44358
|
format: "Png" | "Svg";
|
|
44340
44359
|
figmaNodeUrl: string;
|
|
44341
44360
|
}, {
|
|
44361
|
+
brandPersistentId: string;
|
|
44342
44362
|
inputType: "URL";
|
|
44343
44363
|
figmaNodeUrl: string;
|
|
44344
44364
|
format?: "Png" | "Svg" | undefined;
|
|
@@ -44351,6 +44371,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
44351
44371
|
format: "Png" | "Svg";
|
|
44352
44372
|
figmaFileNodeId: string;
|
|
44353
44373
|
} | {
|
|
44374
|
+
brandPersistentId: string;
|
|
44354
44375
|
inputType: "URL";
|
|
44355
44376
|
format: "Png" | "Svg";
|
|
44356
44377
|
figmaNodeUrl: string;
|
|
@@ -44363,6 +44384,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
44363
44384
|
inputType?: "NodeId" | undefined;
|
|
44364
44385
|
format?: "Png" | "Svg" | undefined;
|
|
44365
44386
|
} | {
|
|
44387
|
+
brandPersistentId: string;
|
|
44366
44388
|
inputType: "URL";
|
|
44367
44389
|
figmaNodeUrl: string;
|
|
44368
44390
|
format?: "Png" | "Svg" | undefined;
|
|
@@ -44672,6 +44694,20 @@ declare const DTOExporterPropertyDefinitionValue: z.ZodUnion<[z.ZodUnion<[z.ZodU
|
|
|
44672
44694
|
type DTOExporterPropertyDefinitionValue = z.infer<typeof DTOExporterPropertyDefinitionValue>;
|
|
44673
44695
|
declare const DTOExporterPropertyType: z.ZodEnum<["Enum", "Boolean", "String", "Number", "Array", "Object"]>;
|
|
44674
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>;
|
|
44675
44711
|
declare const DTOExporterPropertyDefinitionEnum: z.ZodObject<z.objectUtil.extendShape<{
|
|
44676
44712
|
key: z.ZodString;
|
|
44677
44713
|
title: z.ZodString;
|
|
@@ -44789,17 +44825,20 @@ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.exte
|
|
|
44789
44825
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
44790
44826
|
allowedKeys: z.ZodOptional<z.ZodObject<{
|
|
44791
44827
|
options: z.ZodArray<z.ZodString, "many">;
|
|
44828
|
+
type: z.ZodString;
|
|
44792
44829
|
}, "strip", z.ZodTypeAny, {
|
|
44793
44830
|
options: string[];
|
|
44831
|
+
type: string;
|
|
44794
44832
|
}, {
|
|
44795
44833
|
options: string[];
|
|
44834
|
+
type: string;
|
|
44796
44835
|
}>>;
|
|
44797
44836
|
allowedValues: z.ZodOptional<z.ZodObject<{
|
|
44798
|
-
|
|
44837
|
+
type: z.ZodString;
|
|
44799
44838
|
}, "strip", z.ZodTypeAny, {
|
|
44800
|
-
|
|
44839
|
+
type: string;
|
|
44801
44840
|
}, {
|
|
44802
|
-
|
|
44841
|
+
type: string;
|
|
44803
44842
|
}>>;
|
|
44804
44843
|
}>, "strip", z.ZodTypeAny, {
|
|
44805
44844
|
type: "Object";
|
|
@@ -44809,9 +44848,10 @@ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.exte
|
|
|
44809
44848
|
default: Record<string, string>;
|
|
44810
44849
|
allowedKeys?: {
|
|
44811
44850
|
options: string[];
|
|
44851
|
+
type: string;
|
|
44812
44852
|
} | undefined;
|
|
44813
44853
|
allowedValues?: {
|
|
44814
|
-
|
|
44854
|
+
type: string;
|
|
44815
44855
|
} | undefined;
|
|
44816
44856
|
}, {
|
|
44817
44857
|
type: "Object";
|
|
@@ -44821,9 +44861,10 @@ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.exte
|
|
|
44821
44861
|
default: Record<string, string>;
|
|
44822
44862
|
allowedKeys?: {
|
|
44823
44863
|
options: string[];
|
|
44864
|
+
type: string;
|
|
44824
44865
|
} | undefined;
|
|
44825
44866
|
allowedValues?: {
|
|
44826
|
-
|
|
44867
|
+
type: string;
|
|
44827
44868
|
} | undefined;
|
|
44828
44869
|
}>;
|
|
44829
44870
|
type DTOExporterPropertyDefinitionObject = z.infer<typeof DTOExporterPropertyDefinitionObject>;
|
|
@@ -44934,17 +44975,20 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
44934
44975
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
44935
44976
|
allowedKeys: z.ZodOptional<z.ZodObject<{
|
|
44936
44977
|
options: z.ZodArray<z.ZodString, "many">;
|
|
44978
|
+
type: z.ZodString;
|
|
44937
44979
|
}, "strip", z.ZodTypeAny, {
|
|
44938
44980
|
options: string[];
|
|
44981
|
+
type: string;
|
|
44939
44982
|
}, {
|
|
44940
44983
|
options: string[];
|
|
44984
|
+
type: string;
|
|
44941
44985
|
}>>;
|
|
44942
44986
|
allowedValues: z.ZodOptional<z.ZodObject<{
|
|
44943
|
-
|
|
44987
|
+
type: z.ZodString;
|
|
44944
44988
|
}, "strip", z.ZodTypeAny, {
|
|
44945
|
-
|
|
44989
|
+
type: string;
|
|
44946
44990
|
}, {
|
|
44947
|
-
|
|
44991
|
+
type: string;
|
|
44948
44992
|
}>>;
|
|
44949
44993
|
}>, "strip", z.ZodTypeAny, {
|
|
44950
44994
|
type: "Object";
|
|
@@ -44954,9 +44998,10 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
44954
44998
|
default: Record<string, string>;
|
|
44955
44999
|
allowedKeys?: {
|
|
44956
45000
|
options: string[];
|
|
45001
|
+
type: string;
|
|
44957
45002
|
} | undefined;
|
|
44958
45003
|
allowedValues?: {
|
|
44959
|
-
|
|
45004
|
+
type: string;
|
|
44960
45005
|
} | undefined;
|
|
44961
45006
|
}, {
|
|
44962
45007
|
type: "Object";
|
|
@@ -44966,9 +45011,10 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
44966
45011
|
default: Record<string, string>;
|
|
44967
45012
|
allowedKeys?: {
|
|
44968
45013
|
options: string[];
|
|
45014
|
+
type: string;
|
|
44969
45015
|
} | undefined;
|
|
44970
45016
|
allowedValues?: {
|
|
44971
|
-
|
|
45017
|
+
type: string;
|
|
44972
45018
|
} | undefined;
|
|
44973
45019
|
}>]>;
|
|
44974
45020
|
type DTOExporterPropertyDefinition = z.infer<typeof DTOExporterPropertyDefinition>;
|
|
@@ -45080,17 +45126,20 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
45080
45126
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
45081
45127
|
allowedKeys: z.ZodOptional<z.ZodObject<{
|
|
45082
45128
|
options: z.ZodArray<z.ZodString, "many">;
|
|
45129
|
+
type: z.ZodString;
|
|
45083
45130
|
}, "strip", z.ZodTypeAny, {
|
|
45084
45131
|
options: string[];
|
|
45132
|
+
type: string;
|
|
45085
45133
|
}, {
|
|
45086
45134
|
options: string[];
|
|
45135
|
+
type: string;
|
|
45087
45136
|
}>>;
|
|
45088
45137
|
allowedValues: z.ZodOptional<z.ZodObject<{
|
|
45089
|
-
|
|
45138
|
+
type: z.ZodString;
|
|
45090
45139
|
}, "strip", z.ZodTypeAny, {
|
|
45091
|
-
|
|
45140
|
+
type: string;
|
|
45092
45141
|
}, {
|
|
45093
|
-
|
|
45142
|
+
type: string;
|
|
45094
45143
|
}>>;
|
|
45095
45144
|
}>, "strip", z.ZodTypeAny, {
|
|
45096
45145
|
type: "Object";
|
|
@@ -45100,9 +45149,10 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
45100
45149
|
default: Record<string, string>;
|
|
45101
45150
|
allowedKeys?: {
|
|
45102
45151
|
options: string[];
|
|
45152
|
+
type: string;
|
|
45103
45153
|
} | undefined;
|
|
45104
45154
|
allowedValues?: {
|
|
45105
|
-
|
|
45155
|
+
type: string;
|
|
45106
45156
|
} | undefined;
|
|
45107
45157
|
}, {
|
|
45108
45158
|
type: "Object";
|
|
@@ -45112,9 +45162,10 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
45112
45162
|
default: Record<string, string>;
|
|
45113
45163
|
allowedKeys?: {
|
|
45114
45164
|
options: string[];
|
|
45165
|
+
type: string;
|
|
45115
45166
|
} | undefined;
|
|
45116
45167
|
allowedValues?: {
|
|
45117
|
-
|
|
45168
|
+
type: string;
|
|
45118
45169
|
} | undefined;
|
|
45119
45170
|
}>]>, "many">;
|
|
45120
45171
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -45157,9 +45208,10 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
45157
45208
|
default: Record<string, string>;
|
|
45158
45209
|
allowedKeys?: {
|
|
45159
45210
|
options: string[];
|
|
45211
|
+
type: string;
|
|
45160
45212
|
} | undefined;
|
|
45161
45213
|
allowedValues?: {
|
|
45162
|
-
|
|
45214
|
+
type: string;
|
|
45163
45215
|
} | undefined;
|
|
45164
45216
|
})[];
|
|
45165
45217
|
}, {
|
|
@@ -45202,9 +45254,10 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
45202
45254
|
default: Record<string, string>;
|
|
45203
45255
|
allowedKeys?: {
|
|
45204
45256
|
options: string[];
|
|
45257
|
+
type: string;
|
|
45205
45258
|
} | undefined;
|
|
45206
45259
|
allowedValues?: {
|
|
45207
|
-
|
|
45260
|
+
type: string;
|
|
45208
45261
|
} | undefined;
|
|
45209
45262
|
})[];
|
|
45210
45263
|
}>;
|
|
@@ -45372,17 +45425,20 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
45372
45425
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
45373
45426
|
allowedKeys: z.ZodOptional<z.ZodObject<{
|
|
45374
45427
|
options: z.ZodArray<z.ZodString, "many">;
|
|
45428
|
+
type: z.ZodString;
|
|
45375
45429
|
}, "strip", z.ZodTypeAny, {
|
|
45376
45430
|
options: string[];
|
|
45431
|
+
type: string;
|
|
45377
45432
|
}, {
|
|
45378
45433
|
options: string[];
|
|
45434
|
+
type: string;
|
|
45379
45435
|
}>>;
|
|
45380
45436
|
allowedValues: z.ZodOptional<z.ZodObject<{
|
|
45381
|
-
|
|
45437
|
+
type: z.ZodString;
|
|
45382
45438
|
}, "strip", z.ZodTypeAny, {
|
|
45383
|
-
|
|
45439
|
+
type: string;
|
|
45384
45440
|
}, {
|
|
45385
|
-
|
|
45441
|
+
type: string;
|
|
45386
45442
|
}>>;
|
|
45387
45443
|
}>, "strip", z.ZodTypeAny, {
|
|
45388
45444
|
type: "Object";
|
|
@@ -45392,9 +45448,10 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
45392
45448
|
default: Record<string, string>;
|
|
45393
45449
|
allowedKeys?: {
|
|
45394
45450
|
options: string[];
|
|
45451
|
+
type: string;
|
|
45395
45452
|
} | undefined;
|
|
45396
45453
|
allowedValues?: {
|
|
45397
|
-
|
|
45454
|
+
type: string;
|
|
45398
45455
|
} | undefined;
|
|
45399
45456
|
}, {
|
|
45400
45457
|
type: "Object";
|
|
@@ -45404,9 +45461,10 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
45404
45461
|
default: Record<string, string>;
|
|
45405
45462
|
allowedKeys?: {
|
|
45406
45463
|
options: string[];
|
|
45464
|
+
type: string;
|
|
45407
45465
|
} | undefined;
|
|
45408
45466
|
allowedValues?: {
|
|
45409
|
-
|
|
45467
|
+
type: string;
|
|
45410
45468
|
} | undefined;
|
|
45411
45469
|
}>]>, "many">>;
|
|
45412
45470
|
customBlocks: z.ZodArray<z.ZodObject<{
|
|
@@ -45615,9 +45673,10 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
45615
45673
|
default: Record<string, string>;
|
|
45616
45674
|
allowedKeys?: {
|
|
45617
45675
|
options: string[];
|
|
45676
|
+
type: string;
|
|
45618
45677
|
} | undefined;
|
|
45619
45678
|
allowedValues?: {
|
|
45620
|
-
|
|
45679
|
+
type: string;
|
|
45621
45680
|
} | undefined;
|
|
45622
45681
|
})[] | undefined;
|
|
45623
45682
|
iconURL?: string | undefined;
|
|
@@ -45708,9 +45767,10 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
45708
45767
|
default: Record<string, string>;
|
|
45709
45768
|
allowedKeys?: {
|
|
45710
45769
|
options: string[];
|
|
45770
|
+
type: string;
|
|
45711
45771
|
} | undefined;
|
|
45712
45772
|
allowedValues?: {
|
|
45713
|
-
|
|
45773
|
+
type: string;
|
|
45714
45774
|
} | undefined;
|
|
45715
45775
|
})[] | undefined;
|
|
45716
45776
|
iconURL?: string | undefined;
|
|
@@ -45880,17 +45940,20 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
45880
45940
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
45881
45941
|
allowedKeys: z.ZodOptional<z.ZodObject<{
|
|
45882
45942
|
options: z.ZodArray<z.ZodString, "many">;
|
|
45943
|
+
type: z.ZodString;
|
|
45883
45944
|
}, "strip", z.ZodTypeAny, {
|
|
45884
45945
|
options: string[];
|
|
45946
|
+
type: string;
|
|
45885
45947
|
}, {
|
|
45886
45948
|
options: string[];
|
|
45949
|
+
type: string;
|
|
45887
45950
|
}>>;
|
|
45888
45951
|
allowedValues: z.ZodOptional<z.ZodObject<{
|
|
45889
|
-
|
|
45952
|
+
type: z.ZodString;
|
|
45890
45953
|
}, "strip", z.ZodTypeAny, {
|
|
45891
|
-
|
|
45954
|
+
type: string;
|
|
45892
45955
|
}, {
|
|
45893
|
-
|
|
45956
|
+
type: string;
|
|
45894
45957
|
}>>;
|
|
45895
45958
|
}>, "strip", z.ZodTypeAny, {
|
|
45896
45959
|
type: "Object";
|
|
@@ -45900,9 +45963,10 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
45900
45963
|
default: Record<string, string>;
|
|
45901
45964
|
allowedKeys?: {
|
|
45902
45965
|
options: string[];
|
|
45966
|
+
type: string;
|
|
45903
45967
|
} | undefined;
|
|
45904
45968
|
allowedValues?: {
|
|
45905
|
-
|
|
45969
|
+
type: string;
|
|
45906
45970
|
} | undefined;
|
|
45907
45971
|
}, {
|
|
45908
45972
|
type: "Object";
|
|
@@ -45912,9 +45976,10 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
45912
45976
|
default: Record<string, string>;
|
|
45913
45977
|
allowedKeys?: {
|
|
45914
45978
|
options: string[];
|
|
45979
|
+
type: string;
|
|
45915
45980
|
} | undefined;
|
|
45916
45981
|
allowedValues?: {
|
|
45917
|
-
|
|
45982
|
+
type: string;
|
|
45918
45983
|
} | undefined;
|
|
45919
45984
|
}>]>, "many">>;
|
|
45920
45985
|
customBlocks: z.ZodArray<z.ZodObject<{
|
|
@@ -46123,9 +46188,10 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
46123
46188
|
default: Record<string, string>;
|
|
46124
46189
|
allowedKeys?: {
|
|
46125
46190
|
options: string[];
|
|
46191
|
+
type: string;
|
|
46126
46192
|
} | undefined;
|
|
46127
46193
|
allowedValues?: {
|
|
46128
|
-
|
|
46194
|
+
type: string;
|
|
46129
46195
|
} | undefined;
|
|
46130
46196
|
})[] | undefined;
|
|
46131
46197
|
iconURL?: string | undefined;
|
|
@@ -46216,9 +46282,10 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
46216
46282
|
default: Record<string, string>;
|
|
46217
46283
|
allowedKeys?: {
|
|
46218
46284
|
options: string[];
|
|
46285
|
+
type: string;
|
|
46219
46286
|
} | undefined;
|
|
46220
46287
|
allowedValues?: {
|
|
46221
|
-
|
|
46288
|
+
type: string;
|
|
46222
46289
|
} | undefined;
|
|
46223
46290
|
})[] | undefined;
|
|
46224
46291
|
iconURL?: string | undefined;
|
|
@@ -46329,9 +46396,10 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
46329
46396
|
default: Record<string, string>;
|
|
46330
46397
|
allowedKeys?: {
|
|
46331
46398
|
options: string[];
|
|
46399
|
+
type: string;
|
|
46332
46400
|
} | undefined;
|
|
46333
46401
|
allowedValues?: {
|
|
46334
|
-
|
|
46402
|
+
type: string;
|
|
46335
46403
|
} | undefined;
|
|
46336
46404
|
})[] | undefined;
|
|
46337
46405
|
iconURL?: string | undefined;
|
|
@@ -46429,9 +46497,10 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
46429
46497
|
default: Record<string, string>;
|
|
46430
46498
|
allowedKeys?: {
|
|
46431
46499
|
options: string[];
|
|
46500
|
+
type: string;
|
|
46432
46501
|
} | undefined;
|
|
46433
46502
|
allowedValues?: {
|
|
46434
|
-
|
|
46503
|
+
type: string;
|
|
46435
46504
|
} | undefined;
|
|
46436
46505
|
})[] | undefined;
|
|
46437
46506
|
iconURL?: string | undefined;
|
|
@@ -46588,17 +46657,20 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
46588
46657
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
46589
46658
|
allowedKeys: z.ZodOptional<z.ZodObject<{
|
|
46590
46659
|
options: z.ZodArray<z.ZodString, "many">;
|
|
46660
|
+
type: z.ZodString;
|
|
46591
46661
|
}, "strip", z.ZodTypeAny, {
|
|
46592
46662
|
options: string[];
|
|
46663
|
+
type: string;
|
|
46593
46664
|
}, {
|
|
46594
46665
|
options: string[];
|
|
46666
|
+
type: string;
|
|
46595
46667
|
}>>;
|
|
46596
46668
|
allowedValues: z.ZodOptional<z.ZodObject<{
|
|
46597
|
-
|
|
46669
|
+
type: z.ZodString;
|
|
46598
46670
|
}, "strip", z.ZodTypeAny, {
|
|
46599
|
-
|
|
46671
|
+
type: string;
|
|
46600
46672
|
}, {
|
|
46601
|
-
|
|
46673
|
+
type: string;
|
|
46602
46674
|
}>>;
|
|
46603
46675
|
}>, "strip", z.ZodTypeAny, {
|
|
46604
46676
|
type: "Object";
|
|
@@ -46608,9 +46680,10 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
46608
46680
|
default: Record<string, string>;
|
|
46609
46681
|
allowedKeys?: {
|
|
46610
46682
|
options: string[];
|
|
46683
|
+
type: string;
|
|
46611
46684
|
} | undefined;
|
|
46612
46685
|
allowedValues?: {
|
|
46613
|
-
|
|
46686
|
+
type: string;
|
|
46614
46687
|
} | undefined;
|
|
46615
46688
|
}, {
|
|
46616
46689
|
type: "Object";
|
|
@@ -46620,9 +46693,10 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
46620
46693
|
default: Record<string, string>;
|
|
46621
46694
|
allowedKeys?: {
|
|
46622
46695
|
options: string[];
|
|
46696
|
+
type: string;
|
|
46623
46697
|
} | undefined;
|
|
46624
46698
|
allowedValues?: {
|
|
46625
|
-
|
|
46699
|
+
type: string;
|
|
46626
46700
|
} | undefined;
|
|
46627
46701
|
}>]>, "many">>;
|
|
46628
46702
|
customBlocks: z.ZodArray<z.ZodObject<{
|
|
@@ -46831,9 +46905,10 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
46831
46905
|
default: Record<string, string>;
|
|
46832
46906
|
allowedKeys?: {
|
|
46833
46907
|
options: string[];
|
|
46908
|
+
type: string;
|
|
46834
46909
|
} | undefined;
|
|
46835
46910
|
allowedValues?: {
|
|
46836
|
-
|
|
46911
|
+
type: string;
|
|
46837
46912
|
} | undefined;
|
|
46838
46913
|
})[] | undefined;
|
|
46839
46914
|
iconURL?: string | undefined;
|
|
@@ -46924,9 +46999,10 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
46924
46999
|
default: Record<string, string>;
|
|
46925
47000
|
allowedKeys?: {
|
|
46926
47001
|
options: string[];
|
|
47002
|
+
type: string;
|
|
46927
47003
|
} | undefined;
|
|
46928
47004
|
allowedValues?: {
|
|
46929
|
-
|
|
47005
|
+
type: string;
|
|
46930
47006
|
} | undefined;
|
|
46931
47007
|
})[] | undefined;
|
|
46932
47008
|
iconURL?: string | undefined;
|
|
@@ -47037,9 +47113,10 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
47037
47113
|
default: Record<string, string>;
|
|
47038
47114
|
allowedKeys?: {
|
|
47039
47115
|
options: string[];
|
|
47116
|
+
type: string;
|
|
47040
47117
|
} | undefined;
|
|
47041
47118
|
allowedValues?: {
|
|
47042
|
-
|
|
47119
|
+
type: string;
|
|
47043
47120
|
} | undefined;
|
|
47044
47121
|
})[] | undefined;
|
|
47045
47122
|
iconURL?: string | undefined;
|
|
@@ -47137,9 +47214,10 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
47137
47214
|
default: Record<string, string>;
|
|
47138
47215
|
allowedKeys?: {
|
|
47139
47216
|
options: string[];
|
|
47217
|
+
type: string;
|
|
47140
47218
|
} | undefined;
|
|
47141
47219
|
allowedValues?: {
|
|
47142
|
-
|
|
47220
|
+
type: string;
|
|
47143
47221
|
} | undefined;
|
|
47144
47222
|
})[] | undefined;
|
|
47145
47223
|
iconURL?: string | undefined;
|
|
@@ -48303,7 +48381,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
48303
48381
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
48304
48382
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
48305
48383
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
48306
|
-
|
|
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>]>>>;
|
|
48307
48385
|
}, "strip", z.ZodTypeAny, {
|
|
48308
48386
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
48309
48387
|
id: string;
|
|
@@ -48389,7 +48467,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
48389
48467
|
brandPersistentId?: string | undefined;
|
|
48390
48468
|
themePersistentId?: string | undefined;
|
|
48391
48469
|
themePersistentIds?: string[] | undefined;
|
|
48392
|
-
|
|
48470
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
48393
48471
|
finishedAt?: Date | undefined;
|
|
48394
48472
|
index?: number | undefined;
|
|
48395
48473
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -48515,7 +48593,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
48515
48593
|
brandPersistentId?: string | undefined;
|
|
48516
48594
|
themePersistentId?: string | undefined;
|
|
48517
48595
|
themePersistentIds?: string[] | undefined;
|
|
48518
|
-
|
|
48596
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
48519
48597
|
finishedAt?: Date | undefined;
|
|
48520
48598
|
index?: number | undefined;
|
|
48521
48599
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -49099,7 +49177,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
49099
49177
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
49100
49178
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
49101
49179
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
49102
|
-
|
|
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>]>>>;
|
|
49103
49181
|
}, "strip", z.ZodTypeAny, {
|
|
49104
49182
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
49105
49183
|
id: string;
|
|
@@ -49185,7 +49263,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
49185
49263
|
brandPersistentId?: string | undefined;
|
|
49186
49264
|
themePersistentId?: string | undefined;
|
|
49187
49265
|
themePersistentIds?: string[] | undefined;
|
|
49188
|
-
|
|
49266
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
49189
49267
|
finishedAt?: Date | undefined;
|
|
49190
49268
|
index?: number | undefined;
|
|
49191
49269
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -49311,7 +49389,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
49311
49389
|
brandPersistentId?: string | undefined;
|
|
49312
49390
|
themePersistentId?: string | undefined;
|
|
49313
49391
|
themePersistentIds?: string[] | undefined;
|
|
49314
|
-
|
|
49392
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
49315
49393
|
finishedAt?: Date | undefined;
|
|
49316
49394
|
index?: number | undefined;
|
|
49317
49395
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -49439,7 +49517,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
49439
49517
|
brandPersistentId?: string | undefined;
|
|
49440
49518
|
themePersistentId?: string | undefined;
|
|
49441
49519
|
themePersistentIds?: string[] | undefined;
|
|
49442
|
-
|
|
49520
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
49443
49521
|
finishedAt?: Date | undefined;
|
|
49444
49522
|
index?: number | undefined;
|
|
49445
49523
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -49567,7 +49645,7 @@ declare const DTOExportJobResponse: z.ZodObject<{
|
|
|
49567
49645
|
brandPersistentId?: string | undefined;
|
|
49568
49646
|
themePersistentId?: string | undefined;
|
|
49569
49647
|
themePersistentIds?: string[] | undefined;
|
|
49570
|
-
|
|
49648
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
49571
49649
|
finishedAt?: Date | undefined;
|
|
49572
49650
|
index?: number | undefined;
|
|
49573
49651
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -50167,7 +50245,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
50167
50245
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
50168
50246
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
50169
50247
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50170
|
-
|
|
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>]>>>;
|
|
50171
50249
|
}, "strip", z.ZodTypeAny, {
|
|
50172
50250
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
50173
50251
|
id: string;
|
|
@@ -50253,7 +50331,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
50253
50331
|
brandPersistentId?: string | undefined;
|
|
50254
50332
|
themePersistentId?: string | undefined;
|
|
50255
50333
|
themePersistentIds?: string[] | undefined;
|
|
50256
|
-
|
|
50334
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
50257
50335
|
finishedAt?: Date | undefined;
|
|
50258
50336
|
index?: number | undefined;
|
|
50259
50337
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -50379,7 +50457,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
50379
50457
|
brandPersistentId?: string | undefined;
|
|
50380
50458
|
themePersistentId?: string | undefined;
|
|
50381
50459
|
themePersistentIds?: string[] | undefined;
|
|
50382
|
-
|
|
50460
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
50383
50461
|
finishedAt?: Date | undefined;
|
|
50384
50462
|
index?: number | undefined;
|
|
50385
50463
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -50603,7 +50681,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
50603
50681
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
50604
50682
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
50605
50683
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50606
|
-
|
|
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>]>>>;
|
|
50607
50685
|
}, "strip", z.ZodTypeAny, {
|
|
50608
50686
|
id: string;
|
|
50609
50687
|
name: string;
|
|
@@ -50697,7 +50775,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
50697
50775
|
brandPersistentId?: string | undefined;
|
|
50698
50776
|
themePersistentId?: string | undefined;
|
|
50699
50777
|
themePersistentIds?: string[] | undefined;
|
|
50700
|
-
|
|
50778
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
50701
50779
|
finishedAt?: Date | undefined;
|
|
50702
50780
|
index?: number | undefined;
|
|
50703
50781
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -50742,7 +50820,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
50742
50820
|
brandPersistentId?: string | undefined;
|
|
50743
50821
|
themePersistentId?: string | undefined;
|
|
50744
50822
|
themePersistentIds?: string[] | undefined;
|
|
50745
|
-
|
|
50823
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
50746
50824
|
webhookUrl?: string | undefined;
|
|
50747
50825
|
destinationSnDocs?: {
|
|
50748
50826
|
environment: "Live" | "Preview";
|
|
@@ -50895,7 +50973,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
50895
50973
|
brandPersistentId?: string | undefined;
|
|
50896
50974
|
themePersistentId?: string | undefined;
|
|
50897
50975
|
themePersistentIds?: string[] | undefined;
|
|
50898
|
-
|
|
50976
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
50899
50977
|
finishedAt?: Date | undefined;
|
|
50900
50978
|
index?: number | undefined;
|
|
50901
50979
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -50940,7 +51018,7 @@ declare const DTOPipeline: z.ZodObject<{
|
|
|
50940
51018
|
brandPersistentId?: string | undefined;
|
|
50941
51019
|
themePersistentId?: string | undefined;
|
|
50942
51020
|
themePersistentIds?: string[] | undefined;
|
|
50943
|
-
|
|
51021
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
50944
51022
|
webhookUrl?: string | undefined;
|
|
50945
51023
|
destinationSnDocs?: {
|
|
50946
51024
|
environment: "Live" | "Preview";
|
|
@@ -51544,7 +51622,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
51544
51622
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
51545
51623
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
51546
51624
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51547
|
-
|
|
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>]>>>;
|
|
51548
51626
|
}, "strip", z.ZodTypeAny, {
|
|
51549
51627
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
51550
51628
|
id: string;
|
|
@@ -51630,7 +51708,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
51630
51708
|
brandPersistentId?: string | undefined;
|
|
51631
51709
|
themePersistentId?: string | undefined;
|
|
51632
51710
|
themePersistentIds?: string[] | undefined;
|
|
51633
|
-
|
|
51711
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
51634
51712
|
finishedAt?: Date | undefined;
|
|
51635
51713
|
index?: number | undefined;
|
|
51636
51714
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -51756,7 +51834,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
51756
51834
|
brandPersistentId?: string | undefined;
|
|
51757
51835
|
themePersistentId?: string | undefined;
|
|
51758
51836
|
themePersistentIds?: string[] | undefined;
|
|
51759
|
-
|
|
51837
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
51760
51838
|
finishedAt?: Date | undefined;
|
|
51761
51839
|
index?: number | undefined;
|
|
51762
51840
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -51980,7 +52058,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
51980
52058
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
51981
52059
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
51982
52060
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
51983
|
-
|
|
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>]>>>;
|
|
51984
52062
|
}, "strip", z.ZodTypeAny, {
|
|
51985
52063
|
id: string;
|
|
51986
52064
|
name: string;
|
|
@@ -52074,7 +52152,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
52074
52152
|
brandPersistentId?: string | undefined;
|
|
52075
52153
|
themePersistentId?: string | undefined;
|
|
52076
52154
|
themePersistentIds?: string[] | undefined;
|
|
52077
|
-
|
|
52155
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
52078
52156
|
finishedAt?: Date | undefined;
|
|
52079
52157
|
index?: number | undefined;
|
|
52080
52158
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -52119,7 +52197,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
52119
52197
|
brandPersistentId?: string | undefined;
|
|
52120
52198
|
themePersistentId?: string | undefined;
|
|
52121
52199
|
themePersistentIds?: string[] | undefined;
|
|
52122
|
-
|
|
52200
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
52123
52201
|
webhookUrl?: string | undefined;
|
|
52124
52202
|
destinationSnDocs?: {
|
|
52125
52203
|
environment: "Live" | "Preview";
|
|
@@ -52272,7 +52350,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
52272
52350
|
brandPersistentId?: string | undefined;
|
|
52273
52351
|
themePersistentId?: string | undefined;
|
|
52274
52352
|
themePersistentIds?: string[] | undefined;
|
|
52275
|
-
|
|
52353
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
52276
52354
|
finishedAt?: Date | undefined;
|
|
52277
52355
|
index?: number | undefined;
|
|
52278
52356
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -52317,7 +52395,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
52317
52395
|
brandPersistentId?: string | undefined;
|
|
52318
52396
|
themePersistentId?: string | undefined;
|
|
52319
52397
|
themePersistentIds?: string[] | undefined;
|
|
52320
|
-
|
|
52398
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
52321
52399
|
webhookUrl?: string | undefined;
|
|
52322
52400
|
destinationSnDocs?: {
|
|
52323
52401
|
environment: "Live" | "Preview";
|
|
@@ -52472,7 +52550,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
52472
52550
|
brandPersistentId?: string | undefined;
|
|
52473
52551
|
themePersistentId?: string | undefined;
|
|
52474
52552
|
themePersistentIds?: string[] | undefined;
|
|
52475
|
-
|
|
52553
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
52476
52554
|
finishedAt?: Date | undefined;
|
|
52477
52555
|
index?: number | undefined;
|
|
52478
52556
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -52517,7 +52595,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
52517
52595
|
brandPersistentId?: string | undefined;
|
|
52518
52596
|
themePersistentId?: string | undefined;
|
|
52519
52597
|
themePersistentIds?: string[] | undefined;
|
|
52520
|
-
|
|
52598
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
52521
52599
|
webhookUrl?: string | undefined;
|
|
52522
52600
|
destinationSnDocs?: {
|
|
52523
52601
|
environment: "Live" | "Preview";
|
|
@@ -52672,7 +52750,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
52672
52750
|
brandPersistentId?: string | undefined;
|
|
52673
52751
|
themePersistentId?: string | undefined;
|
|
52674
52752
|
themePersistentIds?: string[] | undefined;
|
|
52675
|
-
|
|
52753
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
52676
52754
|
finishedAt?: Date | undefined;
|
|
52677
52755
|
index?: number | undefined;
|
|
52678
52756
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -52717,7 +52795,7 @@ declare const DTOPipelineResponse: z.ZodObject<{
|
|
|
52717
52795
|
brandPersistentId?: string | undefined;
|
|
52718
52796
|
themePersistentId?: string | undefined;
|
|
52719
52797
|
themePersistentIds?: string[] | undefined;
|
|
52720
|
-
|
|
52798
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
52721
52799
|
webhookUrl?: string | undefined;
|
|
52722
52800
|
destinationSnDocs?: {
|
|
52723
52801
|
environment: "Live" | "Preview";
|
|
@@ -53322,7 +53400,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
53322
53400
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
53323
53401
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
53324
53402
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
53325
|
-
|
|
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>]>>>;
|
|
53326
53404
|
}, "strip", z.ZodTypeAny, {
|
|
53327
53405
|
status: "InProgress" | "Failed" | "Success" | "Timeout";
|
|
53328
53406
|
id: string;
|
|
@@ -53408,7 +53486,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
53408
53486
|
brandPersistentId?: string | undefined;
|
|
53409
53487
|
themePersistentId?: string | undefined;
|
|
53410
53488
|
themePersistentIds?: string[] | undefined;
|
|
53411
|
-
|
|
53489
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
53412
53490
|
finishedAt?: Date | undefined;
|
|
53413
53491
|
index?: number | undefined;
|
|
53414
53492
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -53534,7 +53612,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
53534
53612
|
brandPersistentId?: string | undefined;
|
|
53535
53613
|
themePersistentId?: string | undefined;
|
|
53536
53614
|
themePersistentIds?: string[] | undefined;
|
|
53537
|
-
|
|
53615
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
53538
53616
|
finishedAt?: Date | undefined;
|
|
53539
53617
|
index?: number | undefined;
|
|
53540
53618
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -53758,7 +53836,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
53758
53836
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
53759
53837
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
53760
53838
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
53761
|
-
|
|
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>]>>>;
|
|
53762
53840
|
}, "strip", z.ZodTypeAny, {
|
|
53763
53841
|
id: string;
|
|
53764
53842
|
name: string;
|
|
@@ -53852,7 +53930,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
53852
53930
|
brandPersistentId?: string | undefined;
|
|
53853
53931
|
themePersistentId?: string | undefined;
|
|
53854
53932
|
themePersistentIds?: string[] | undefined;
|
|
53855
|
-
|
|
53933
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
53856
53934
|
finishedAt?: Date | undefined;
|
|
53857
53935
|
index?: number | undefined;
|
|
53858
53936
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -53897,7 +53975,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
53897
53975
|
brandPersistentId?: string | undefined;
|
|
53898
53976
|
themePersistentId?: string | undefined;
|
|
53899
53977
|
themePersistentIds?: string[] | undefined;
|
|
53900
|
-
|
|
53978
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
53901
53979
|
webhookUrl?: string | undefined;
|
|
53902
53980
|
destinationSnDocs?: {
|
|
53903
53981
|
environment: "Live" | "Preview";
|
|
@@ -54050,7 +54128,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
54050
54128
|
brandPersistentId?: string | undefined;
|
|
54051
54129
|
themePersistentId?: string | undefined;
|
|
54052
54130
|
themePersistentIds?: string[] | undefined;
|
|
54053
|
-
|
|
54131
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
54054
54132
|
finishedAt?: Date | undefined;
|
|
54055
54133
|
index?: number | undefined;
|
|
54056
54134
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -54095,7 +54173,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
54095
54173
|
brandPersistentId?: string | undefined;
|
|
54096
54174
|
themePersistentId?: string | undefined;
|
|
54097
54175
|
themePersistentIds?: string[] | undefined;
|
|
54098
|
-
|
|
54176
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
54099
54177
|
webhookUrl?: string | undefined;
|
|
54100
54178
|
destinationSnDocs?: {
|
|
54101
54179
|
environment: "Live" | "Preview";
|
|
@@ -54250,7 +54328,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
54250
54328
|
brandPersistentId?: string | undefined;
|
|
54251
54329
|
themePersistentId?: string | undefined;
|
|
54252
54330
|
themePersistentIds?: string[] | undefined;
|
|
54253
|
-
|
|
54331
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
54254
54332
|
finishedAt?: Date | undefined;
|
|
54255
54333
|
index?: number | undefined;
|
|
54256
54334
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -54295,7 +54373,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
54295
54373
|
brandPersistentId?: string | undefined;
|
|
54296
54374
|
themePersistentId?: string | undefined;
|
|
54297
54375
|
themePersistentIds?: string[] | undefined;
|
|
54298
|
-
|
|
54376
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
54299
54377
|
webhookUrl?: string | undefined;
|
|
54300
54378
|
destinationSnDocs?: {
|
|
54301
54379
|
environment: "Live" | "Preview";
|
|
@@ -54450,7 +54528,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
54450
54528
|
brandPersistentId?: string | undefined;
|
|
54451
54529
|
themePersistentId?: string | undefined;
|
|
54452
54530
|
themePersistentIds?: string[] | undefined;
|
|
54453
|
-
|
|
54531
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
54454
54532
|
finishedAt?: Date | undefined;
|
|
54455
54533
|
index?: number | undefined;
|
|
54456
54534
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -54495,7 +54573,7 @@ declare const DTOPipelineListResponse: z.ZodObject<{
|
|
|
54495
54573
|
brandPersistentId?: string | undefined;
|
|
54496
54574
|
themePersistentId?: string | undefined;
|
|
54497
54575
|
themePersistentIds?: string[] | undefined;
|
|
54498
|
-
|
|
54576
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
54499
54577
|
webhookUrl?: string | undefined;
|
|
54500
54578
|
destinationSnDocs?: {
|
|
54501
54579
|
environment: "Live" | "Preview";
|
|
@@ -84087,9 +84165,10 @@ declare class ExportersEndpoint {
|
|
|
84087
84165
|
default: Record<string, string>;
|
|
84088
84166
|
allowedKeys?: {
|
|
84089
84167
|
options: string[];
|
|
84168
|
+
type: string;
|
|
84090
84169
|
} | undefined;
|
|
84091
84170
|
allowedValues?: {
|
|
84092
|
-
|
|
84171
|
+
type: string;
|
|
84093
84172
|
} | undefined;
|
|
84094
84173
|
})[] | undefined;
|
|
84095
84174
|
iconURL?: string | undefined;
|
|
@@ -84188,9 +84267,10 @@ declare class ExportersEndpoint {
|
|
|
84188
84267
|
default: Record<string, string>;
|
|
84189
84268
|
allowedKeys?: {
|
|
84190
84269
|
options: string[];
|
|
84270
|
+
type: string;
|
|
84191
84271
|
} | undefined;
|
|
84192
84272
|
allowedValues?: {
|
|
84193
|
-
|
|
84273
|
+
type: string;
|
|
84194
84274
|
} | undefined;
|
|
84195
84275
|
})[] | undefined;
|
|
84196
84276
|
iconURL?: string | undefined;
|
|
@@ -84289,9 +84369,10 @@ declare class ExportersEndpoint {
|
|
|
84289
84369
|
default: Record<string, string>;
|
|
84290
84370
|
allowedKeys?: {
|
|
84291
84371
|
options: string[];
|
|
84372
|
+
type: string;
|
|
84292
84373
|
} | undefined;
|
|
84293
84374
|
allowedValues?: {
|
|
84294
|
-
|
|
84375
|
+
type: string;
|
|
84295
84376
|
} | undefined;
|
|
84296
84377
|
})[] | undefined;
|
|
84297
84378
|
iconURL?: string | undefined;
|
|
@@ -85119,7 +85200,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
85119
85200
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
85120
85201
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
85121
85202
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
85122
|
-
|
|
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>]>>>;
|
|
85123
85204
|
destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
|
|
85124
85205
|
gitQuery: z.ZodObject<{
|
|
85125
85206
|
organization: z.ZodOptional<z.ZodString>;
|
|
@@ -85511,7 +85592,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
85511
85592
|
brandPersistentId?: string | undefined;
|
|
85512
85593
|
themePersistentId?: string | undefined;
|
|
85513
85594
|
themePersistentIds?: string[] | undefined;
|
|
85514
|
-
|
|
85595
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
85515
85596
|
destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
|
|
85516
85597
|
}, {
|
|
85517
85598
|
name: string;
|
|
@@ -85590,7 +85671,7 @@ declare const DTOPipelineCreateBody: z.ZodObject<{
|
|
|
85590
85671
|
brandPersistentId?: string | undefined;
|
|
85591
85672
|
themePersistentId?: string | undefined;
|
|
85592
85673
|
themePersistentIds?: string[] | undefined;
|
|
85593
|
-
|
|
85674
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
85594
85675
|
destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
|
|
85595
85676
|
}>;
|
|
85596
85677
|
type DTOPipelineCreateBody = z.infer<typeof DTOPipelineCreateBody>;
|
|
@@ -85603,7 +85684,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
85603
85684
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
85604
85685
|
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
85605
85686
|
themePersistentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
85606
|
-
|
|
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>]>>>;
|
|
85607
85688
|
destination: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Github", "Gitlab", "Bitbucket", "Azure"]>, z.ZodEnum<["WebhookUrl", "S3", "Documentation"]>]>>;
|
|
85608
85689
|
gitQuery: z.ZodObject<{
|
|
85609
85690
|
organization: z.ZodOptional<z.ZodString>;
|
|
@@ -85998,7 +86079,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
85998
86079
|
brandPersistentId?: string | undefined;
|
|
85999
86080
|
themePersistentId?: string | undefined;
|
|
86000
86081
|
themePersistentIds?: string[] | undefined;
|
|
86001
|
-
|
|
86082
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
86002
86083
|
destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
|
|
86003
86084
|
}, {
|
|
86004
86085
|
id: string;
|
|
@@ -86078,7 +86159,7 @@ declare const DTOPipelineUpdateBody: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
86078
86159
|
brandPersistentId?: string | undefined;
|
|
86079
86160
|
themePersistentId?: string | undefined;
|
|
86080
86161
|
themePersistentIds?: string[] | undefined;
|
|
86081
|
-
|
|
86162
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
86082
86163
|
destination?: "Github" | "Gitlab" | "Bitbucket" | "Azure" | "WebhookUrl" | "S3" | "Documentation" | undefined;
|
|
86083
86164
|
}>;
|
|
86084
86165
|
type DTOPipelineUpdateBody = z.infer<typeof DTOPipelineUpdateBody>;
|
|
@@ -86880,7 +86961,7 @@ declare class PipelinesEndpoint {
|
|
|
86880
86961
|
brandPersistentId?: string | undefined;
|
|
86881
86962
|
themePersistentId?: string | undefined;
|
|
86882
86963
|
themePersistentIds?: string[] | undefined;
|
|
86883
|
-
|
|
86964
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
86884
86965
|
finishedAt?: Date | undefined;
|
|
86885
86966
|
index?: number | undefined;
|
|
86886
86967
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -86925,7 +87006,7 @@ declare class PipelinesEndpoint {
|
|
|
86925
87006
|
brandPersistentId?: string | undefined;
|
|
86926
87007
|
themePersistentId?: string | undefined;
|
|
86927
87008
|
themePersistentIds?: string[] | undefined;
|
|
86928
|
-
|
|
87009
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
86929
87010
|
webhookUrl?: string | undefined;
|
|
86930
87011
|
destinationSnDocs?: {
|
|
86931
87012
|
environment: "Live" | "Preview";
|
|
@@ -87081,7 +87162,7 @@ declare class PipelinesEndpoint {
|
|
|
87081
87162
|
brandPersistentId?: string | undefined;
|
|
87082
87163
|
themePersistentId?: string | undefined;
|
|
87083
87164
|
themePersistentIds?: string[] | undefined;
|
|
87084
|
-
|
|
87165
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
87085
87166
|
finishedAt?: Date | undefined;
|
|
87086
87167
|
index?: number | undefined;
|
|
87087
87168
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -87126,7 +87207,7 @@ declare class PipelinesEndpoint {
|
|
|
87126
87207
|
brandPersistentId?: string | undefined;
|
|
87127
87208
|
themePersistentId?: string | undefined;
|
|
87128
87209
|
themePersistentIds?: string[] | undefined;
|
|
87129
|
-
|
|
87210
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
87130
87211
|
webhookUrl?: string | undefined;
|
|
87131
87212
|
destinationSnDocs?: {
|
|
87132
87213
|
environment: "Live" | "Preview";
|
|
@@ -87274,7 +87355,7 @@ declare class PipelinesEndpoint {
|
|
|
87274
87355
|
brandPersistentId?: string | undefined;
|
|
87275
87356
|
themePersistentId?: string | undefined;
|
|
87276
87357
|
themePersistentIds?: string[] | undefined;
|
|
87277
|
-
|
|
87358
|
+
exporterConfigurationProperties?: Record<string, string | number | boolean | string[] | Record<string, string>> | undefined;
|
|
87278
87359
|
finishedAt?: Date | undefined;
|
|
87279
87360
|
index?: number | undefined;
|
|
87280
87361
|
estimatedExecutionTime?: number | undefined;
|
|
@@ -94704,4 +94785,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
94704
94785
|
|
|
94705
94786
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
94706
94787
|
|
|
94707
|
-
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 };
|