@supernova-studio/client 0.59.4 → 0.59.6
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 +655 -109
- package/dist/index.d.ts +655 -109
- package/dist/index.js +29 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/elements/figma-nodes/figma-node.ts +17 -2
- package/src/api/dto/elements/figma-nodes/node-actions-v2.ts +2 -2
- package/src/api/dto/export/exporter-property.ts +8 -1
- package/src/api/endpoints/design-system/versions/elements-action.ts +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -42020,6 +42020,24 @@ declare const DTOFigmaNodeRenderUrlInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
42020
42020
|
scale?: number | undefined;
|
|
42021
42021
|
}>;
|
|
42022
42022
|
type DTOFigmaNodeRenderUrlInput = z.infer<typeof DTOFigmaNodeRenderUrlInput>;
|
|
42023
|
+
/**
|
|
42024
|
+
* Figma node render request that uses Figma URL to identify the requested
|
|
42025
|
+
* node to render. The URL can be obtained by the user directly from the Figma app.
|
|
42026
|
+
*/
|
|
42027
|
+
declare const DTOFigmaNodeRerenderInput: z.ZodObject<{
|
|
42028
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
42029
|
+
/**
|
|
42030
|
+
* Persistent ID of an existing Figma node
|
|
42031
|
+
*/
|
|
42032
|
+
figmaNodePersistentId: z.ZodString;
|
|
42033
|
+
}, "strip", z.ZodTypeAny, {
|
|
42034
|
+
inputType: "Rerender";
|
|
42035
|
+
figmaNodePersistentId: string;
|
|
42036
|
+
}, {
|
|
42037
|
+
inputType: "Rerender";
|
|
42038
|
+
figmaNodePersistentId: string;
|
|
42039
|
+
}>;
|
|
42040
|
+
type DTOFigmaNodeRerenderInput = z.infer<typeof DTOFigmaNodeRerenderInput>;
|
|
42023
42041
|
declare const DTOFigmaNodeRenderInput: z.ZodDiscriminatedUnion<"inputType", [z.ZodObject<z.objectUtil.extendShape<{
|
|
42024
42042
|
/**
|
|
42025
42043
|
* Format in which the node must be rendered, png by default.
|
|
@@ -42082,6 +42100,18 @@ declare const DTOFigmaNodeRenderInput: z.ZodDiscriminatedUnion<"inputType", [z.Z
|
|
|
42082
42100
|
figmaNodeUrl: string;
|
|
42083
42101
|
format?: "Png" | "Svg" | undefined;
|
|
42084
42102
|
scale?: number | undefined;
|
|
42103
|
+
}>, z.ZodObject<{
|
|
42104
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
42105
|
+
/**
|
|
42106
|
+
* Persistent ID of an existing Figma node
|
|
42107
|
+
*/
|
|
42108
|
+
figmaNodePersistentId: z.ZodString;
|
|
42109
|
+
}, "strip", z.ZodTypeAny, {
|
|
42110
|
+
inputType: "Rerender";
|
|
42111
|
+
figmaNodePersistentId: string;
|
|
42112
|
+
}, {
|
|
42113
|
+
inputType: "Rerender";
|
|
42114
|
+
figmaNodePersistentId: string;
|
|
42085
42115
|
}>]>;
|
|
42086
42116
|
type DTOFigmaNodeRenderInput = z.infer<typeof DTOFigmaNodeRenderInput>;
|
|
42087
42117
|
|
|
@@ -42712,7 +42742,7 @@ type DTOFigmaNodeRenderAsyncActionOutput = z.infer<typeof DTOFigmaNodeRenderAsyn
|
|
|
42712
42742
|
*/
|
|
42713
42743
|
declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
42714
42744
|
type: z.ZodLiteral<"FigmaNodeRender">;
|
|
42715
|
-
input: z.ZodArray<z.
|
|
42745
|
+
input: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
42716
42746
|
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
42717
42747
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
42718
42748
|
}, {
|
|
@@ -42731,56 +42761,25 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
|
42731
42761
|
inputType?: "NodeId" | undefined;
|
|
42732
42762
|
format?: "Png" | "Svg" | undefined;
|
|
42733
42763
|
scale?: number | undefined;
|
|
42734
|
-
}>,
|
|
42735
|
-
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
42736
|
-
scale: z.ZodOptional<z.ZodNumber>;
|
|
42737
|
-
}, {
|
|
42738
|
-
inputType: z.ZodLiteral<"URL">;
|
|
42739
|
-
figmaNodeUrl: z.ZodString;
|
|
42740
|
-
brandPersistentId: z.ZodString;
|
|
42741
|
-
}>, "strip", z.ZodTypeAny, {
|
|
42742
|
-
brandPersistentId: string;
|
|
42743
|
-
inputType: "URL";
|
|
42744
|
-
format: "Png" | "Svg";
|
|
42745
|
-
figmaNodeUrl: string;
|
|
42746
|
-
scale?: number | undefined;
|
|
42747
|
-
}, {
|
|
42748
|
-
brandPersistentId: string;
|
|
42749
|
-
inputType: "URL";
|
|
42750
|
-
figmaNodeUrl: string;
|
|
42751
|
-
format?: "Png" | "Svg" | undefined;
|
|
42752
|
-
scale?: number | undefined;
|
|
42753
|
-
}>]>, "many">;
|
|
42764
|
+
}>, "many">;
|
|
42754
42765
|
}, "strip", z.ZodTypeAny, {
|
|
42755
42766
|
type: "FigmaNodeRender";
|
|
42756
|
-
input:
|
|
42767
|
+
input: {
|
|
42757
42768
|
sourceId: string;
|
|
42758
42769
|
inputType: "NodeId";
|
|
42759
42770
|
format: "Png" | "Svg";
|
|
42760
42771
|
figmaFileNodeId: string;
|
|
42761
42772
|
scale?: number | undefined;
|
|
42762
|
-
}
|
|
42763
|
-
brandPersistentId: string;
|
|
42764
|
-
inputType: "URL";
|
|
42765
|
-
format: "Png" | "Svg";
|
|
42766
|
-
figmaNodeUrl: string;
|
|
42767
|
-
scale?: number | undefined;
|
|
42768
|
-
})[];
|
|
42773
|
+
}[];
|
|
42769
42774
|
}, {
|
|
42770
42775
|
type: "FigmaNodeRender";
|
|
42771
|
-
input:
|
|
42776
|
+
input: {
|
|
42772
42777
|
sourceId: string;
|
|
42773
42778
|
figmaFileNodeId: string;
|
|
42774
42779
|
inputType?: "NodeId" | undefined;
|
|
42775
42780
|
format?: "Png" | "Svg" | undefined;
|
|
42776
42781
|
scale?: number | undefined;
|
|
42777
|
-
}
|
|
42778
|
-
brandPersistentId: string;
|
|
42779
|
-
inputType: "URL";
|
|
42780
|
-
figmaNodeUrl: string;
|
|
42781
|
-
format?: "Png" | "Svg" | undefined;
|
|
42782
|
-
scale?: number | undefined;
|
|
42783
|
-
})[];
|
|
42782
|
+
}[];
|
|
42784
42783
|
}>;
|
|
42785
42784
|
type DTOFigmaNodeRenderActionInput = z.infer<typeof DTOFigmaNodeRenderActionInput>;
|
|
42786
42785
|
declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
@@ -42823,6 +42822,15 @@ declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
|
42823
42822
|
figmaNodeUrl: string;
|
|
42824
42823
|
format?: "Png" | "Svg" | undefined;
|
|
42825
42824
|
scale?: number | undefined;
|
|
42825
|
+
}>, z.ZodObject<{
|
|
42826
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
42827
|
+
figmaNodePersistentId: z.ZodString;
|
|
42828
|
+
}, "strip", z.ZodTypeAny, {
|
|
42829
|
+
inputType: "Rerender";
|
|
42830
|
+
figmaNodePersistentId: string;
|
|
42831
|
+
}, {
|
|
42832
|
+
inputType: "Rerender";
|
|
42833
|
+
figmaNodePersistentId: string;
|
|
42826
42834
|
}>]>, "many">;
|
|
42827
42835
|
}, "strip", z.ZodTypeAny, {
|
|
42828
42836
|
type: "FigmaNodeRenderAsync";
|
|
@@ -42838,6 +42846,9 @@ declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
|
42838
42846
|
format: "Png" | "Svg";
|
|
42839
42847
|
figmaNodeUrl: string;
|
|
42840
42848
|
scale?: number | undefined;
|
|
42849
|
+
} | {
|
|
42850
|
+
inputType: "Rerender";
|
|
42851
|
+
figmaNodePersistentId: string;
|
|
42841
42852
|
})[];
|
|
42842
42853
|
}, {
|
|
42843
42854
|
type: "FigmaNodeRenderAsync";
|
|
@@ -42853,6 +42864,9 @@ declare const DTOFigmaNodeRenderAsyncActionInput: z.ZodObject<{
|
|
|
42853
42864
|
figmaNodeUrl: string;
|
|
42854
42865
|
format?: "Png" | "Svg" | undefined;
|
|
42855
42866
|
scale?: number | undefined;
|
|
42867
|
+
} | {
|
|
42868
|
+
inputType: "Rerender";
|
|
42869
|
+
figmaNodePersistentId: string;
|
|
42856
42870
|
})[];
|
|
42857
42871
|
}>;
|
|
42858
42872
|
type DTOFigmaNodeRenderAsyncActionInput = z.infer<typeof DTOFigmaNodeRenderAsyncActionInput>;
|
|
@@ -46164,7 +46178,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46164
46178
|
};
|
|
46165
46179
|
}>, z.ZodObject<{
|
|
46166
46180
|
type: z.ZodLiteral<"FigmaNodeRender">;
|
|
46167
|
-
input: z.ZodArray<z.
|
|
46181
|
+
input: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
46168
46182
|
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
46169
46183
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
46170
46184
|
}, {
|
|
@@ -46183,56 +46197,25 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46183
46197
|
inputType?: "NodeId" | undefined;
|
|
46184
46198
|
format?: "Png" | "Svg" | undefined;
|
|
46185
46199
|
scale?: number | undefined;
|
|
46186
|
-
}>,
|
|
46187
|
-
format: z.ZodDefault<z.ZodEnum<["Png", "Svg"]>>;
|
|
46188
|
-
scale: z.ZodOptional<z.ZodNumber>;
|
|
46189
|
-
}, {
|
|
46190
|
-
inputType: z.ZodLiteral<"URL">;
|
|
46191
|
-
figmaNodeUrl: z.ZodString;
|
|
46192
|
-
brandPersistentId: z.ZodString;
|
|
46193
|
-
}>, "strip", z.ZodTypeAny, {
|
|
46194
|
-
brandPersistentId: string;
|
|
46195
|
-
inputType: "URL";
|
|
46196
|
-
format: "Png" | "Svg";
|
|
46197
|
-
figmaNodeUrl: string;
|
|
46198
|
-
scale?: number | undefined;
|
|
46199
|
-
}, {
|
|
46200
|
-
brandPersistentId: string;
|
|
46201
|
-
inputType: "URL";
|
|
46202
|
-
figmaNodeUrl: string;
|
|
46203
|
-
format?: "Png" | "Svg" | undefined;
|
|
46204
|
-
scale?: number | undefined;
|
|
46205
|
-
}>]>, "many">;
|
|
46200
|
+
}>, "many">;
|
|
46206
46201
|
}, "strip", z.ZodTypeAny, {
|
|
46207
46202
|
type: "FigmaNodeRender";
|
|
46208
|
-
input:
|
|
46203
|
+
input: {
|
|
46209
46204
|
sourceId: string;
|
|
46210
46205
|
inputType: "NodeId";
|
|
46211
46206
|
format: "Png" | "Svg";
|
|
46212
46207
|
figmaFileNodeId: string;
|
|
46213
46208
|
scale?: number | undefined;
|
|
46214
|
-
}
|
|
46215
|
-
brandPersistentId: string;
|
|
46216
|
-
inputType: "URL";
|
|
46217
|
-
format: "Png" | "Svg";
|
|
46218
|
-
figmaNodeUrl: string;
|
|
46219
|
-
scale?: number | undefined;
|
|
46220
|
-
})[];
|
|
46209
|
+
}[];
|
|
46221
46210
|
}, {
|
|
46222
46211
|
type: "FigmaNodeRender";
|
|
46223
|
-
input:
|
|
46212
|
+
input: {
|
|
46224
46213
|
sourceId: string;
|
|
46225
46214
|
figmaFileNodeId: string;
|
|
46226
46215
|
inputType?: "NodeId" | undefined;
|
|
46227
46216
|
format?: "Png" | "Svg" | undefined;
|
|
46228
46217
|
scale?: number | undefined;
|
|
46229
|
-
}
|
|
46230
|
-
brandPersistentId: string;
|
|
46231
|
-
inputType: "URL";
|
|
46232
|
-
figmaNodeUrl: string;
|
|
46233
|
-
format?: "Png" | "Svg" | undefined;
|
|
46234
|
-
scale?: number | undefined;
|
|
46235
|
-
})[];
|
|
46218
|
+
}[];
|
|
46236
46219
|
}>, z.ZodObject<{
|
|
46237
46220
|
type: z.ZodLiteral<"FigmaNodeRenderAsync">;
|
|
46238
46221
|
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"inputType", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -46273,6 +46256,15 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46273
46256
|
figmaNodeUrl: string;
|
|
46274
46257
|
format?: "Png" | "Svg" | undefined;
|
|
46275
46258
|
scale?: number | undefined;
|
|
46259
|
+
}>, z.ZodObject<{
|
|
46260
|
+
inputType: z.ZodLiteral<"Rerender">;
|
|
46261
|
+
figmaNodePersistentId: z.ZodString;
|
|
46262
|
+
}, "strip", z.ZodTypeAny, {
|
|
46263
|
+
inputType: "Rerender";
|
|
46264
|
+
figmaNodePersistentId: string;
|
|
46265
|
+
}, {
|
|
46266
|
+
inputType: "Rerender";
|
|
46267
|
+
figmaNodePersistentId: string;
|
|
46276
46268
|
}>]>, "many">;
|
|
46277
46269
|
}, "strip", z.ZodTypeAny, {
|
|
46278
46270
|
type: "FigmaNodeRenderAsync";
|
|
@@ -46288,6 +46280,9 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46288
46280
|
format: "Png" | "Svg";
|
|
46289
46281
|
figmaNodeUrl: string;
|
|
46290
46282
|
scale?: number | undefined;
|
|
46283
|
+
} | {
|
|
46284
|
+
inputType: "Rerender";
|
|
46285
|
+
figmaNodePersistentId: string;
|
|
46291
46286
|
})[];
|
|
46292
46287
|
}, {
|
|
46293
46288
|
type: "FigmaNodeRenderAsync";
|
|
@@ -46303,6 +46298,9 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
46303
46298
|
figmaNodeUrl: string;
|
|
46304
46299
|
format?: "Png" | "Svg" | undefined;
|
|
46305
46300
|
scale?: number | undefined;
|
|
46301
|
+
} | {
|
|
46302
|
+
inputType: "Rerender";
|
|
46303
|
+
figmaNodePersistentId: string;
|
|
46306
46304
|
})[];
|
|
46307
46305
|
}>, z.ZodObject<{
|
|
46308
46306
|
type: z.ZodLiteral<"DocumentationPageRestore">;
|
|
@@ -47015,44 +47013,73 @@ declare const PropertyDefinitionBase: z.ZodObject<{
|
|
|
47015
47013
|
key: z.ZodString;
|
|
47016
47014
|
title: z.ZodString;
|
|
47017
47015
|
description: z.ZodString;
|
|
47016
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47017
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47018
47018
|
}, "strip", z.ZodTypeAny, {
|
|
47019
47019
|
description: string;
|
|
47020
47020
|
title: string;
|
|
47021
47021
|
key: string;
|
|
47022
|
+
category?: string | undefined;
|
|
47023
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47022
47024
|
}, {
|
|
47023
47025
|
description: string;
|
|
47024
47026
|
title: string;
|
|
47025
47027
|
key: string;
|
|
47028
|
+
category?: string | undefined;
|
|
47029
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47026
47030
|
}>;
|
|
47027
47031
|
type DTOPropertyDefinitionBase = z.infer<typeof PropertyDefinitionBase>;
|
|
47028
47032
|
declare const DTOExporterPropertyDefinitionEnum: z.ZodObject<z.objectUtil.extendShape<{
|
|
47029
47033
|
key: z.ZodString;
|
|
47030
47034
|
title: z.ZodString;
|
|
47031
47035
|
description: z.ZodString;
|
|
47036
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47037
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47032
47038
|
}, {
|
|
47033
47039
|
type: z.ZodLiteral<"Enum">;
|
|
47034
|
-
options: z.
|
|
47040
|
+
options: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47041
|
+
label: z.ZodString;
|
|
47042
|
+
description: z.ZodString;
|
|
47043
|
+
}, "strip", z.ZodTypeAny, {
|
|
47044
|
+
description: string;
|
|
47045
|
+
label: string;
|
|
47046
|
+
}, {
|
|
47047
|
+
description: string;
|
|
47048
|
+
label: string;
|
|
47049
|
+
}>>;
|
|
47035
47050
|
default: z.ZodString;
|
|
47036
47051
|
}>, "strip", z.ZodTypeAny, {
|
|
47037
|
-
options: string
|
|
47052
|
+
options: Record<string, {
|
|
47053
|
+
description: string;
|
|
47054
|
+
label: string;
|
|
47055
|
+
}>;
|
|
47038
47056
|
type: "Enum";
|
|
47039
47057
|
description: string;
|
|
47040
47058
|
title: string;
|
|
47041
47059
|
key: string;
|
|
47042
47060
|
default: string;
|
|
47061
|
+
category?: string | undefined;
|
|
47062
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47043
47063
|
}, {
|
|
47044
|
-
options: string
|
|
47064
|
+
options: Record<string, {
|
|
47065
|
+
description: string;
|
|
47066
|
+
label: string;
|
|
47067
|
+
}>;
|
|
47045
47068
|
type: "Enum";
|
|
47046
47069
|
description: string;
|
|
47047
47070
|
title: string;
|
|
47048
47071
|
key: string;
|
|
47049
47072
|
default: string;
|
|
47073
|
+
category?: string | undefined;
|
|
47074
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47050
47075
|
}>;
|
|
47051
47076
|
type DTOExporterPropertyDefinitionEnum = z.infer<typeof DTOExporterPropertyDefinitionEnum>;
|
|
47052
47077
|
declare const DTOExporterPropertyDefinitionBoolean: z.ZodObject<z.objectUtil.extendShape<{
|
|
47053
47078
|
key: z.ZodString;
|
|
47054
47079
|
title: z.ZodString;
|
|
47055
47080
|
description: z.ZodString;
|
|
47081
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47082
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47056
47083
|
}, {
|
|
47057
47084
|
type: z.ZodLiteral<"Boolean">;
|
|
47058
47085
|
default: z.ZodBoolean;
|
|
@@ -47062,18 +47089,24 @@ declare const DTOExporterPropertyDefinitionBoolean: z.ZodObject<z.objectUtil.ext
|
|
|
47062
47089
|
title: string;
|
|
47063
47090
|
key: string;
|
|
47064
47091
|
default: boolean;
|
|
47092
|
+
category?: string | undefined;
|
|
47093
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47065
47094
|
}, {
|
|
47066
47095
|
type: "Boolean";
|
|
47067
47096
|
description: string;
|
|
47068
47097
|
title: string;
|
|
47069
47098
|
key: string;
|
|
47070
47099
|
default: boolean;
|
|
47100
|
+
category?: string | undefined;
|
|
47101
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47071
47102
|
}>;
|
|
47072
47103
|
type DTOExporterPropertyDefinitionBoolean = z.infer<typeof DTOExporterPropertyDefinitionBoolean>;
|
|
47073
47104
|
declare const DTOExporterPropertyDefinitionString: z.ZodObject<z.objectUtil.extendShape<{
|
|
47074
47105
|
key: z.ZodString;
|
|
47075
47106
|
title: z.ZodString;
|
|
47076
47107
|
description: z.ZodString;
|
|
47108
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47109
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47077
47110
|
}, {
|
|
47078
47111
|
type: z.ZodLiteral<"String">;
|
|
47079
47112
|
default: z.ZodString;
|
|
@@ -47083,18 +47116,24 @@ declare const DTOExporterPropertyDefinitionString: z.ZodObject<z.objectUtil.exte
|
|
|
47083
47116
|
title: string;
|
|
47084
47117
|
key: string;
|
|
47085
47118
|
default: string;
|
|
47119
|
+
category?: string | undefined;
|
|
47120
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47086
47121
|
}, {
|
|
47087
47122
|
type: "String";
|
|
47088
47123
|
description: string;
|
|
47089
47124
|
title: string;
|
|
47090
47125
|
key: string;
|
|
47091
47126
|
default: string;
|
|
47127
|
+
category?: string | undefined;
|
|
47128
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47092
47129
|
}>;
|
|
47093
47130
|
type DTOExporterPropertyDefinitionString = z.infer<typeof DTOExporterPropertyDefinitionString>;
|
|
47094
47131
|
declare const DTOExporterPropertyDefinitionNumber: z.ZodObject<z.objectUtil.extendShape<{
|
|
47095
47132
|
key: z.ZodString;
|
|
47096
47133
|
title: z.ZodString;
|
|
47097
47134
|
description: z.ZodString;
|
|
47135
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47136
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47098
47137
|
}, {
|
|
47099
47138
|
type: z.ZodLiteral<"Number">;
|
|
47100
47139
|
default: z.ZodNumber;
|
|
@@ -47104,18 +47143,24 @@ declare const DTOExporterPropertyDefinitionNumber: z.ZodObject<z.objectUtil.exte
|
|
|
47104
47143
|
title: string;
|
|
47105
47144
|
key: string;
|
|
47106
47145
|
default: number;
|
|
47146
|
+
category?: string | undefined;
|
|
47147
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47107
47148
|
}, {
|
|
47108
47149
|
type: "Number";
|
|
47109
47150
|
description: string;
|
|
47110
47151
|
title: string;
|
|
47111
47152
|
key: string;
|
|
47112
47153
|
default: number;
|
|
47154
|
+
category?: string | undefined;
|
|
47155
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47113
47156
|
}>;
|
|
47114
47157
|
type DTOExporterPropertyDefinitionNumber = z.infer<typeof DTOExporterPropertyDefinitionNumber>;
|
|
47115
47158
|
declare const DTOExporterPropertyDefinitionArray: z.ZodObject<z.objectUtil.extendShape<{
|
|
47116
47159
|
key: z.ZodString;
|
|
47117
47160
|
title: z.ZodString;
|
|
47118
47161
|
description: z.ZodString;
|
|
47162
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47163
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47119
47164
|
}, {
|
|
47120
47165
|
type: z.ZodLiteral<"Array">;
|
|
47121
47166
|
default: z.ZodArray<z.ZodString, "many">;
|
|
@@ -47125,18 +47170,24 @@ declare const DTOExporterPropertyDefinitionArray: z.ZodObject<z.objectUtil.exten
|
|
|
47125
47170
|
title: string;
|
|
47126
47171
|
key: string;
|
|
47127
47172
|
default: string[];
|
|
47173
|
+
category?: string | undefined;
|
|
47174
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47128
47175
|
}, {
|
|
47129
47176
|
type: "Array";
|
|
47130
47177
|
description: string;
|
|
47131
47178
|
title: string;
|
|
47132
47179
|
key: string;
|
|
47133
47180
|
default: string[];
|
|
47181
|
+
category?: string | undefined;
|
|
47182
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47134
47183
|
}>;
|
|
47135
47184
|
type DTOExporterPropertyDefinitionArray = z.infer<typeof DTOExporterPropertyDefinitionArray>;
|
|
47136
47185
|
declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.extendShape<{
|
|
47137
47186
|
key: z.ZodString;
|
|
47138
47187
|
title: z.ZodString;
|
|
47139
47188
|
description: z.ZodString;
|
|
47189
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47190
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47140
47191
|
}, {
|
|
47141
47192
|
type: z.ZodLiteral<"Object">;
|
|
47142
47193
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -47163,6 +47214,8 @@ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.exte
|
|
|
47163
47214
|
title: string;
|
|
47164
47215
|
key: string;
|
|
47165
47216
|
default: Record<string, string>;
|
|
47217
|
+
category?: string | undefined;
|
|
47218
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47166
47219
|
allowedKeys?: {
|
|
47167
47220
|
options: string[];
|
|
47168
47221
|
type: string;
|
|
@@ -47176,6 +47229,8 @@ declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.exte
|
|
|
47176
47229
|
title: string;
|
|
47177
47230
|
key: string;
|
|
47178
47231
|
default: Record<string, string>;
|
|
47232
|
+
category?: string | undefined;
|
|
47233
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47179
47234
|
allowedKeys?: {
|
|
47180
47235
|
options: string[];
|
|
47181
47236
|
type: string;
|
|
@@ -47189,28 +47244,51 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47189
47244
|
key: z.ZodString;
|
|
47190
47245
|
title: z.ZodString;
|
|
47191
47246
|
description: z.ZodString;
|
|
47247
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47248
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47192
47249
|
}, {
|
|
47193
47250
|
type: z.ZodLiteral<"Enum">;
|
|
47194
|
-
options: z.
|
|
47251
|
+
options: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47252
|
+
label: z.ZodString;
|
|
47253
|
+
description: z.ZodString;
|
|
47254
|
+
}, "strip", z.ZodTypeAny, {
|
|
47255
|
+
description: string;
|
|
47256
|
+
label: string;
|
|
47257
|
+
}, {
|
|
47258
|
+
description: string;
|
|
47259
|
+
label: string;
|
|
47260
|
+
}>>;
|
|
47195
47261
|
default: z.ZodString;
|
|
47196
47262
|
}>, "strip", z.ZodTypeAny, {
|
|
47197
|
-
options: string
|
|
47263
|
+
options: Record<string, {
|
|
47264
|
+
description: string;
|
|
47265
|
+
label: string;
|
|
47266
|
+
}>;
|
|
47198
47267
|
type: "Enum";
|
|
47199
47268
|
description: string;
|
|
47200
47269
|
title: string;
|
|
47201
47270
|
key: string;
|
|
47202
47271
|
default: string;
|
|
47272
|
+
category?: string | undefined;
|
|
47273
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47203
47274
|
}, {
|
|
47204
|
-
options: string
|
|
47275
|
+
options: Record<string, {
|
|
47276
|
+
description: string;
|
|
47277
|
+
label: string;
|
|
47278
|
+
}>;
|
|
47205
47279
|
type: "Enum";
|
|
47206
47280
|
description: string;
|
|
47207
47281
|
title: string;
|
|
47208
47282
|
key: string;
|
|
47209
47283
|
default: string;
|
|
47284
|
+
category?: string | undefined;
|
|
47285
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47210
47286
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47211
47287
|
key: z.ZodString;
|
|
47212
47288
|
title: z.ZodString;
|
|
47213
47289
|
description: z.ZodString;
|
|
47290
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47291
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47214
47292
|
}, {
|
|
47215
47293
|
type: z.ZodLiteral<"Boolean">;
|
|
47216
47294
|
default: z.ZodBoolean;
|
|
@@ -47220,16 +47298,22 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47220
47298
|
title: string;
|
|
47221
47299
|
key: string;
|
|
47222
47300
|
default: boolean;
|
|
47301
|
+
category?: string | undefined;
|
|
47302
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47223
47303
|
}, {
|
|
47224
47304
|
type: "Boolean";
|
|
47225
47305
|
description: string;
|
|
47226
47306
|
title: string;
|
|
47227
47307
|
key: string;
|
|
47228
47308
|
default: boolean;
|
|
47309
|
+
category?: string | undefined;
|
|
47310
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47229
47311
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47230
47312
|
key: z.ZodString;
|
|
47231
47313
|
title: z.ZodString;
|
|
47232
47314
|
description: z.ZodString;
|
|
47315
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47316
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47233
47317
|
}, {
|
|
47234
47318
|
type: z.ZodLiteral<"String">;
|
|
47235
47319
|
default: z.ZodString;
|
|
@@ -47239,16 +47323,22 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47239
47323
|
title: string;
|
|
47240
47324
|
key: string;
|
|
47241
47325
|
default: string;
|
|
47326
|
+
category?: string | undefined;
|
|
47327
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47242
47328
|
}, {
|
|
47243
47329
|
type: "String";
|
|
47244
47330
|
description: string;
|
|
47245
47331
|
title: string;
|
|
47246
47332
|
key: string;
|
|
47247
47333
|
default: string;
|
|
47334
|
+
category?: string | undefined;
|
|
47335
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47248
47336
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47249
47337
|
key: z.ZodString;
|
|
47250
47338
|
title: z.ZodString;
|
|
47251
47339
|
description: z.ZodString;
|
|
47340
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47341
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47252
47342
|
}, {
|
|
47253
47343
|
type: z.ZodLiteral<"Number">;
|
|
47254
47344
|
default: z.ZodNumber;
|
|
@@ -47258,16 +47348,22 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47258
47348
|
title: string;
|
|
47259
47349
|
key: string;
|
|
47260
47350
|
default: number;
|
|
47351
|
+
category?: string | undefined;
|
|
47352
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47261
47353
|
}, {
|
|
47262
47354
|
type: "Number";
|
|
47263
47355
|
description: string;
|
|
47264
47356
|
title: string;
|
|
47265
47357
|
key: string;
|
|
47266
47358
|
default: number;
|
|
47359
|
+
category?: string | undefined;
|
|
47360
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47267
47361
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47268
47362
|
key: z.ZodString;
|
|
47269
47363
|
title: z.ZodString;
|
|
47270
47364
|
description: z.ZodString;
|
|
47365
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47366
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47271
47367
|
}, {
|
|
47272
47368
|
type: z.ZodLiteral<"Array">;
|
|
47273
47369
|
default: z.ZodArray<z.ZodString, "many">;
|
|
@@ -47277,16 +47373,22 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47277
47373
|
title: string;
|
|
47278
47374
|
key: string;
|
|
47279
47375
|
default: string[];
|
|
47376
|
+
category?: string | undefined;
|
|
47377
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47280
47378
|
}, {
|
|
47281
47379
|
type: "Array";
|
|
47282
47380
|
description: string;
|
|
47283
47381
|
title: string;
|
|
47284
47382
|
key: string;
|
|
47285
47383
|
default: string[];
|
|
47384
|
+
category?: string | undefined;
|
|
47385
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47286
47386
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47287
47387
|
key: z.ZodString;
|
|
47288
47388
|
title: z.ZodString;
|
|
47289
47389
|
description: z.ZodString;
|
|
47390
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47391
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47290
47392
|
}, {
|
|
47291
47393
|
type: z.ZodLiteral<"Object">;
|
|
47292
47394
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -47313,6 +47415,8 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47313
47415
|
title: string;
|
|
47314
47416
|
key: string;
|
|
47315
47417
|
default: Record<string, string>;
|
|
47418
|
+
category?: string | undefined;
|
|
47419
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47316
47420
|
allowedKeys?: {
|
|
47317
47421
|
options: string[];
|
|
47318
47422
|
type: string;
|
|
@@ -47326,6 +47430,8 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47326
47430
|
title: string;
|
|
47327
47431
|
key: string;
|
|
47328
47432
|
default: Record<string, string>;
|
|
47433
|
+
category?: string | undefined;
|
|
47434
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47329
47435
|
allowedKeys?: {
|
|
47330
47436
|
options: string[];
|
|
47331
47437
|
type: string;
|
|
@@ -47335,33 +47441,67 @@ declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
47335
47441
|
} | undefined;
|
|
47336
47442
|
}>]>;
|
|
47337
47443
|
type DTOExporterPropertyDefinition = z.infer<typeof DTOExporterPropertyDefinition>;
|
|
47444
|
+
declare const DTOExporterPropertyDefinitionEnumOption: z.ZodObject<{
|
|
47445
|
+
label: z.ZodString;
|
|
47446
|
+
description: z.ZodString;
|
|
47447
|
+
}, "strip", z.ZodTypeAny, {
|
|
47448
|
+
description: string;
|
|
47449
|
+
label: string;
|
|
47450
|
+
}, {
|
|
47451
|
+
description: string;
|
|
47452
|
+
label: string;
|
|
47453
|
+
}>;
|
|
47454
|
+
type DTOExporterPropertyDefinitionEnumOption = z.infer<typeof DTOExporterPropertyDefinitionEnumOption>;
|
|
47338
47455
|
declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
47339
47456
|
properties: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
47340
47457
|
key: z.ZodString;
|
|
47341
47458
|
title: z.ZodString;
|
|
47342
47459
|
description: z.ZodString;
|
|
47460
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47461
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47343
47462
|
}, {
|
|
47344
47463
|
type: z.ZodLiteral<"Enum">;
|
|
47345
|
-
options: z.
|
|
47464
|
+
options: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47465
|
+
label: z.ZodString;
|
|
47466
|
+
description: z.ZodString;
|
|
47467
|
+
}, "strip", z.ZodTypeAny, {
|
|
47468
|
+
description: string;
|
|
47469
|
+
label: string;
|
|
47470
|
+
}, {
|
|
47471
|
+
description: string;
|
|
47472
|
+
label: string;
|
|
47473
|
+
}>>;
|
|
47346
47474
|
default: z.ZodString;
|
|
47347
47475
|
}>, "strip", z.ZodTypeAny, {
|
|
47348
|
-
options: string
|
|
47476
|
+
options: Record<string, {
|
|
47477
|
+
description: string;
|
|
47478
|
+
label: string;
|
|
47479
|
+
}>;
|
|
47349
47480
|
type: "Enum";
|
|
47350
47481
|
description: string;
|
|
47351
47482
|
title: string;
|
|
47352
47483
|
key: string;
|
|
47353
47484
|
default: string;
|
|
47485
|
+
category?: string | undefined;
|
|
47486
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47354
47487
|
}, {
|
|
47355
|
-
options: string
|
|
47488
|
+
options: Record<string, {
|
|
47489
|
+
description: string;
|
|
47490
|
+
label: string;
|
|
47491
|
+
}>;
|
|
47356
47492
|
type: "Enum";
|
|
47357
47493
|
description: string;
|
|
47358
47494
|
title: string;
|
|
47359
47495
|
key: string;
|
|
47360
47496
|
default: string;
|
|
47497
|
+
category?: string | undefined;
|
|
47498
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47361
47499
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47362
47500
|
key: z.ZodString;
|
|
47363
47501
|
title: z.ZodString;
|
|
47364
47502
|
description: z.ZodString;
|
|
47503
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47504
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47365
47505
|
}, {
|
|
47366
47506
|
type: z.ZodLiteral<"Boolean">;
|
|
47367
47507
|
default: z.ZodBoolean;
|
|
@@ -47371,16 +47511,22 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
47371
47511
|
title: string;
|
|
47372
47512
|
key: string;
|
|
47373
47513
|
default: boolean;
|
|
47514
|
+
category?: string | undefined;
|
|
47515
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47374
47516
|
}, {
|
|
47375
47517
|
type: "Boolean";
|
|
47376
47518
|
description: string;
|
|
47377
47519
|
title: string;
|
|
47378
47520
|
key: string;
|
|
47379
47521
|
default: boolean;
|
|
47522
|
+
category?: string | undefined;
|
|
47523
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47380
47524
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47381
47525
|
key: z.ZodString;
|
|
47382
47526
|
title: z.ZodString;
|
|
47383
47527
|
description: z.ZodString;
|
|
47528
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47529
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47384
47530
|
}, {
|
|
47385
47531
|
type: z.ZodLiteral<"String">;
|
|
47386
47532
|
default: z.ZodString;
|
|
@@ -47390,16 +47536,22 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
47390
47536
|
title: string;
|
|
47391
47537
|
key: string;
|
|
47392
47538
|
default: string;
|
|
47539
|
+
category?: string | undefined;
|
|
47540
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47393
47541
|
}, {
|
|
47394
47542
|
type: "String";
|
|
47395
47543
|
description: string;
|
|
47396
47544
|
title: string;
|
|
47397
47545
|
key: string;
|
|
47398
47546
|
default: string;
|
|
47547
|
+
category?: string | undefined;
|
|
47548
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47399
47549
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47400
47550
|
key: z.ZodString;
|
|
47401
47551
|
title: z.ZodString;
|
|
47402
47552
|
description: z.ZodString;
|
|
47553
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47554
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47403
47555
|
}, {
|
|
47404
47556
|
type: z.ZodLiteral<"Number">;
|
|
47405
47557
|
default: z.ZodNumber;
|
|
@@ -47409,16 +47561,22 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
47409
47561
|
title: string;
|
|
47410
47562
|
key: string;
|
|
47411
47563
|
default: number;
|
|
47564
|
+
category?: string | undefined;
|
|
47565
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47412
47566
|
}, {
|
|
47413
47567
|
type: "Number";
|
|
47414
47568
|
description: string;
|
|
47415
47569
|
title: string;
|
|
47416
47570
|
key: string;
|
|
47417
47571
|
default: number;
|
|
47572
|
+
category?: string | undefined;
|
|
47573
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47418
47574
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47419
47575
|
key: z.ZodString;
|
|
47420
47576
|
title: z.ZodString;
|
|
47421
47577
|
description: z.ZodString;
|
|
47578
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47579
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47422
47580
|
}, {
|
|
47423
47581
|
type: z.ZodLiteral<"Array">;
|
|
47424
47582
|
default: z.ZodArray<z.ZodString, "many">;
|
|
@@ -47428,16 +47586,22 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
47428
47586
|
title: string;
|
|
47429
47587
|
key: string;
|
|
47430
47588
|
default: string[];
|
|
47589
|
+
category?: string | undefined;
|
|
47590
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47431
47591
|
}, {
|
|
47432
47592
|
type: "Array";
|
|
47433
47593
|
description: string;
|
|
47434
47594
|
title: string;
|
|
47435
47595
|
key: string;
|
|
47436
47596
|
default: string[];
|
|
47597
|
+
category?: string | undefined;
|
|
47598
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47437
47599
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47438
47600
|
key: z.ZodString;
|
|
47439
47601
|
title: z.ZodString;
|
|
47440
47602
|
description: z.ZodString;
|
|
47603
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47604
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47441
47605
|
}, {
|
|
47442
47606
|
type: z.ZodLiteral<"Object">;
|
|
47443
47607
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -47464,6 +47628,8 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
47464
47628
|
title: string;
|
|
47465
47629
|
key: string;
|
|
47466
47630
|
default: Record<string, string>;
|
|
47631
|
+
category?: string | undefined;
|
|
47632
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47467
47633
|
allowedKeys?: {
|
|
47468
47634
|
options: string[];
|
|
47469
47635
|
type: string;
|
|
@@ -47477,6 +47643,8 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
47477
47643
|
title: string;
|
|
47478
47644
|
key: string;
|
|
47479
47645
|
default: Record<string, string>;
|
|
47646
|
+
category?: string | undefined;
|
|
47647
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47480
47648
|
allowedKeys?: {
|
|
47481
47649
|
options: string[];
|
|
47482
47650
|
type: string;
|
|
@@ -47487,42 +47655,57 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
47487
47655
|
}>]>, "many">;
|
|
47488
47656
|
}, "strip", z.ZodTypeAny, {
|
|
47489
47657
|
properties: ({
|
|
47490
|
-
options: string
|
|
47658
|
+
options: Record<string, {
|
|
47659
|
+
description: string;
|
|
47660
|
+
label: string;
|
|
47661
|
+
}>;
|
|
47491
47662
|
type: "Enum";
|
|
47492
47663
|
description: string;
|
|
47493
47664
|
title: string;
|
|
47494
47665
|
key: string;
|
|
47495
47666
|
default: string;
|
|
47667
|
+
category?: string | undefined;
|
|
47668
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47496
47669
|
} | {
|
|
47497
47670
|
type: "Boolean";
|
|
47498
47671
|
description: string;
|
|
47499
47672
|
title: string;
|
|
47500
47673
|
key: string;
|
|
47501
47674
|
default: boolean;
|
|
47675
|
+
category?: string | undefined;
|
|
47676
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47502
47677
|
} | {
|
|
47503
47678
|
type: "String";
|
|
47504
47679
|
description: string;
|
|
47505
47680
|
title: string;
|
|
47506
47681
|
key: string;
|
|
47507
47682
|
default: string;
|
|
47683
|
+
category?: string | undefined;
|
|
47684
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47508
47685
|
} | {
|
|
47509
47686
|
type: "Number";
|
|
47510
47687
|
description: string;
|
|
47511
47688
|
title: string;
|
|
47512
47689
|
key: string;
|
|
47513
47690
|
default: number;
|
|
47691
|
+
category?: string | undefined;
|
|
47692
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47514
47693
|
} | {
|
|
47515
47694
|
type: "Array";
|
|
47516
47695
|
description: string;
|
|
47517
47696
|
title: string;
|
|
47518
47697
|
key: string;
|
|
47519
47698
|
default: string[];
|
|
47699
|
+
category?: string | undefined;
|
|
47700
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47520
47701
|
} | {
|
|
47521
47702
|
type: "Object";
|
|
47522
47703
|
description: string;
|
|
47523
47704
|
title: string;
|
|
47524
47705
|
key: string;
|
|
47525
47706
|
default: Record<string, string>;
|
|
47707
|
+
category?: string | undefined;
|
|
47708
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47526
47709
|
allowedKeys?: {
|
|
47527
47710
|
options: string[];
|
|
47528
47711
|
type: string;
|
|
@@ -47533,42 +47716,57 @@ declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
|
47533
47716
|
})[];
|
|
47534
47717
|
}, {
|
|
47535
47718
|
properties: ({
|
|
47536
|
-
options: string
|
|
47719
|
+
options: Record<string, {
|
|
47720
|
+
description: string;
|
|
47721
|
+
label: string;
|
|
47722
|
+
}>;
|
|
47537
47723
|
type: "Enum";
|
|
47538
47724
|
description: string;
|
|
47539
47725
|
title: string;
|
|
47540
47726
|
key: string;
|
|
47541
47727
|
default: string;
|
|
47728
|
+
category?: string | undefined;
|
|
47729
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47542
47730
|
} | {
|
|
47543
47731
|
type: "Boolean";
|
|
47544
47732
|
description: string;
|
|
47545
47733
|
title: string;
|
|
47546
47734
|
key: string;
|
|
47547
47735
|
default: boolean;
|
|
47736
|
+
category?: string | undefined;
|
|
47737
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47548
47738
|
} | {
|
|
47549
47739
|
type: "String";
|
|
47550
47740
|
description: string;
|
|
47551
47741
|
title: string;
|
|
47552
47742
|
key: string;
|
|
47553
47743
|
default: string;
|
|
47744
|
+
category?: string | undefined;
|
|
47745
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47554
47746
|
} | {
|
|
47555
47747
|
type: "Number";
|
|
47556
47748
|
description: string;
|
|
47557
47749
|
title: string;
|
|
47558
47750
|
key: string;
|
|
47559
47751
|
default: number;
|
|
47752
|
+
category?: string | undefined;
|
|
47753
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47560
47754
|
} | {
|
|
47561
47755
|
type: "Array";
|
|
47562
47756
|
description: string;
|
|
47563
47757
|
title: string;
|
|
47564
47758
|
key: string;
|
|
47565
47759
|
default: string[];
|
|
47760
|
+
category?: string | undefined;
|
|
47761
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47566
47762
|
} | {
|
|
47567
47763
|
type: "Object";
|
|
47568
47764
|
description: string;
|
|
47569
47765
|
title: string;
|
|
47570
47766
|
key: string;
|
|
47571
47767
|
default: Record<string, string>;
|
|
47768
|
+
category?: string | undefined;
|
|
47769
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47572
47770
|
allowedKeys?: {
|
|
47573
47771
|
options: string[];
|
|
47574
47772
|
type: string;
|
|
@@ -47639,28 +47837,51 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
47639
47837
|
key: z.ZodString;
|
|
47640
47838
|
title: z.ZodString;
|
|
47641
47839
|
description: z.ZodString;
|
|
47840
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47841
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47642
47842
|
}, {
|
|
47643
47843
|
type: z.ZodLiteral<"Enum">;
|
|
47644
|
-
options: z.
|
|
47844
|
+
options: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
47845
|
+
label: z.ZodString;
|
|
47846
|
+
description: z.ZodString;
|
|
47847
|
+
}, "strip", z.ZodTypeAny, {
|
|
47848
|
+
description: string;
|
|
47849
|
+
label: string;
|
|
47850
|
+
}, {
|
|
47851
|
+
description: string;
|
|
47852
|
+
label: string;
|
|
47853
|
+
}>>;
|
|
47645
47854
|
default: z.ZodString;
|
|
47646
47855
|
}>, "strip", z.ZodTypeAny, {
|
|
47647
|
-
options: string
|
|
47856
|
+
options: Record<string, {
|
|
47857
|
+
description: string;
|
|
47858
|
+
label: string;
|
|
47859
|
+
}>;
|
|
47648
47860
|
type: "Enum";
|
|
47649
47861
|
description: string;
|
|
47650
47862
|
title: string;
|
|
47651
47863
|
key: string;
|
|
47652
47864
|
default: string;
|
|
47865
|
+
category?: string | undefined;
|
|
47866
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47653
47867
|
}, {
|
|
47654
|
-
options: string
|
|
47868
|
+
options: Record<string, {
|
|
47869
|
+
description: string;
|
|
47870
|
+
label: string;
|
|
47871
|
+
}>;
|
|
47655
47872
|
type: "Enum";
|
|
47656
47873
|
description: string;
|
|
47657
47874
|
title: string;
|
|
47658
47875
|
key: string;
|
|
47659
47876
|
default: string;
|
|
47877
|
+
category?: string | undefined;
|
|
47878
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47660
47879
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47661
47880
|
key: z.ZodString;
|
|
47662
47881
|
title: z.ZodString;
|
|
47663
47882
|
description: z.ZodString;
|
|
47883
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47884
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47664
47885
|
}, {
|
|
47665
47886
|
type: z.ZodLiteral<"Boolean">;
|
|
47666
47887
|
default: z.ZodBoolean;
|
|
@@ -47670,16 +47891,22 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
47670
47891
|
title: string;
|
|
47671
47892
|
key: string;
|
|
47672
47893
|
default: boolean;
|
|
47894
|
+
category?: string | undefined;
|
|
47895
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47673
47896
|
}, {
|
|
47674
47897
|
type: "Boolean";
|
|
47675
47898
|
description: string;
|
|
47676
47899
|
title: string;
|
|
47677
47900
|
key: string;
|
|
47678
47901
|
default: boolean;
|
|
47902
|
+
category?: string | undefined;
|
|
47903
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47679
47904
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47680
47905
|
key: z.ZodString;
|
|
47681
47906
|
title: z.ZodString;
|
|
47682
47907
|
description: z.ZodString;
|
|
47908
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47909
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47683
47910
|
}, {
|
|
47684
47911
|
type: z.ZodLiteral<"String">;
|
|
47685
47912
|
default: z.ZodString;
|
|
@@ -47689,16 +47916,22 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
47689
47916
|
title: string;
|
|
47690
47917
|
key: string;
|
|
47691
47918
|
default: string;
|
|
47919
|
+
category?: string | undefined;
|
|
47920
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47692
47921
|
}, {
|
|
47693
47922
|
type: "String";
|
|
47694
47923
|
description: string;
|
|
47695
47924
|
title: string;
|
|
47696
47925
|
key: string;
|
|
47697
47926
|
default: string;
|
|
47927
|
+
category?: string | undefined;
|
|
47928
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47698
47929
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47699
47930
|
key: z.ZodString;
|
|
47700
47931
|
title: z.ZodString;
|
|
47701
47932
|
description: z.ZodString;
|
|
47933
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47934
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47702
47935
|
}, {
|
|
47703
47936
|
type: z.ZodLiteral<"Number">;
|
|
47704
47937
|
default: z.ZodNumber;
|
|
@@ -47708,16 +47941,22 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
47708
47941
|
title: string;
|
|
47709
47942
|
key: string;
|
|
47710
47943
|
default: number;
|
|
47944
|
+
category?: string | undefined;
|
|
47945
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47711
47946
|
}, {
|
|
47712
47947
|
type: "Number";
|
|
47713
47948
|
description: string;
|
|
47714
47949
|
title: string;
|
|
47715
47950
|
key: string;
|
|
47716
47951
|
default: number;
|
|
47952
|
+
category?: string | undefined;
|
|
47953
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47717
47954
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47718
47955
|
key: z.ZodString;
|
|
47719
47956
|
title: z.ZodString;
|
|
47720
47957
|
description: z.ZodString;
|
|
47958
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47959
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47721
47960
|
}, {
|
|
47722
47961
|
type: z.ZodLiteral<"Array">;
|
|
47723
47962
|
default: z.ZodArray<z.ZodString, "many">;
|
|
@@ -47727,16 +47966,22 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
47727
47966
|
title: string;
|
|
47728
47967
|
key: string;
|
|
47729
47968
|
default: string[];
|
|
47969
|
+
category?: string | undefined;
|
|
47970
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47730
47971
|
}, {
|
|
47731
47972
|
type: "Array";
|
|
47732
47973
|
description: string;
|
|
47733
47974
|
title: string;
|
|
47734
47975
|
key: string;
|
|
47735
47976
|
default: string[];
|
|
47977
|
+
category?: string | undefined;
|
|
47978
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47736
47979
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
47737
47980
|
key: z.ZodString;
|
|
47738
47981
|
title: z.ZodString;
|
|
47739
47982
|
description: z.ZodString;
|
|
47983
|
+
category: z.ZodOptional<z.ZodString>;
|
|
47984
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
47740
47985
|
}, {
|
|
47741
47986
|
type: z.ZodLiteral<"Object">;
|
|
47742
47987
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -47763,6 +48008,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
47763
48008
|
title: string;
|
|
47764
48009
|
key: string;
|
|
47765
48010
|
default: Record<string, string>;
|
|
48011
|
+
category?: string | undefined;
|
|
48012
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47766
48013
|
allowedKeys?: {
|
|
47767
48014
|
options: string[];
|
|
47768
48015
|
type: string;
|
|
@@ -47776,6 +48023,8 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
47776
48023
|
title: string;
|
|
47777
48024
|
key: string;
|
|
47778
48025
|
default: Record<string, string>;
|
|
48026
|
+
category?: string | undefined;
|
|
48027
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47779
48028
|
allowedKeys?: {
|
|
47780
48029
|
options: string[];
|
|
47781
48030
|
type: string;
|
|
@@ -47952,42 +48201,57 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
47952
48201
|
usesBrands: boolean;
|
|
47953
48202
|
usesThemes: boolean;
|
|
47954
48203
|
properties?: ({
|
|
47955
|
-
options: string
|
|
48204
|
+
options: Record<string, {
|
|
48205
|
+
description: string;
|
|
48206
|
+
label: string;
|
|
48207
|
+
}>;
|
|
47956
48208
|
type: "Enum";
|
|
47957
48209
|
description: string;
|
|
47958
48210
|
title: string;
|
|
47959
48211
|
key: string;
|
|
47960
48212
|
default: string;
|
|
48213
|
+
category?: string | undefined;
|
|
48214
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47961
48215
|
} | {
|
|
47962
48216
|
type: "Boolean";
|
|
47963
48217
|
description: string;
|
|
47964
48218
|
title: string;
|
|
47965
48219
|
key: string;
|
|
47966
48220
|
default: boolean;
|
|
48221
|
+
category?: string | undefined;
|
|
48222
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47967
48223
|
} | {
|
|
47968
48224
|
type: "String";
|
|
47969
48225
|
description: string;
|
|
47970
48226
|
title: string;
|
|
47971
48227
|
key: string;
|
|
47972
48228
|
default: string;
|
|
48229
|
+
category?: string | undefined;
|
|
48230
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47973
48231
|
} | {
|
|
47974
48232
|
type: "Number";
|
|
47975
48233
|
description: string;
|
|
47976
48234
|
title: string;
|
|
47977
48235
|
key: string;
|
|
47978
48236
|
default: number;
|
|
48237
|
+
category?: string | undefined;
|
|
48238
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47979
48239
|
} | {
|
|
47980
48240
|
type: "Array";
|
|
47981
48241
|
description: string;
|
|
47982
48242
|
title: string;
|
|
47983
48243
|
key: string;
|
|
47984
48244
|
default: string[];
|
|
48245
|
+
category?: string | undefined;
|
|
48246
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47985
48247
|
} | {
|
|
47986
48248
|
type: "Object";
|
|
47987
48249
|
description: string;
|
|
47988
48250
|
title: string;
|
|
47989
48251
|
key: string;
|
|
47990
48252
|
default: Record<string, string>;
|
|
48253
|
+
category?: string | undefined;
|
|
48254
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
47991
48255
|
allowedKeys?: {
|
|
47992
48256
|
options: string[];
|
|
47993
48257
|
type: string;
|
|
@@ -48046,42 +48310,57 @@ declare const DTOExporter: z.ZodObject<{
|
|
|
48046
48310
|
usesBrands: boolean;
|
|
48047
48311
|
usesThemes: boolean;
|
|
48048
48312
|
properties?: ({
|
|
48049
|
-
options: string
|
|
48313
|
+
options: Record<string, {
|
|
48314
|
+
description: string;
|
|
48315
|
+
label: string;
|
|
48316
|
+
}>;
|
|
48050
48317
|
type: "Enum";
|
|
48051
48318
|
description: string;
|
|
48052
48319
|
title: string;
|
|
48053
48320
|
key: string;
|
|
48054
48321
|
default: string;
|
|
48322
|
+
category?: string | undefined;
|
|
48323
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48055
48324
|
} | {
|
|
48056
48325
|
type: "Boolean";
|
|
48057
48326
|
description: string;
|
|
48058
48327
|
title: string;
|
|
48059
48328
|
key: string;
|
|
48060
48329
|
default: boolean;
|
|
48330
|
+
category?: string | undefined;
|
|
48331
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48061
48332
|
} | {
|
|
48062
48333
|
type: "String";
|
|
48063
48334
|
description: string;
|
|
48064
48335
|
title: string;
|
|
48065
48336
|
key: string;
|
|
48066
48337
|
default: string;
|
|
48338
|
+
category?: string | undefined;
|
|
48339
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48067
48340
|
} | {
|
|
48068
48341
|
type: "Number";
|
|
48069
48342
|
description: string;
|
|
48070
48343
|
title: string;
|
|
48071
48344
|
key: string;
|
|
48072
48345
|
default: number;
|
|
48346
|
+
category?: string | undefined;
|
|
48347
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48073
48348
|
} | {
|
|
48074
48349
|
type: "Array";
|
|
48075
48350
|
description: string;
|
|
48076
48351
|
title: string;
|
|
48077
48352
|
key: string;
|
|
48078
48353
|
default: string[];
|
|
48354
|
+
category?: string | undefined;
|
|
48355
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48079
48356
|
} | {
|
|
48080
48357
|
type: "Object";
|
|
48081
48358
|
description: string;
|
|
48082
48359
|
title: string;
|
|
48083
48360
|
key: string;
|
|
48084
48361
|
default: Record<string, string>;
|
|
48362
|
+
category?: string | undefined;
|
|
48363
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48085
48364
|
allowedKeys?: {
|
|
48086
48365
|
options: string[];
|
|
48087
48366
|
type: string;
|
|
@@ -48154,28 +48433,51 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48154
48433
|
key: z.ZodString;
|
|
48155
48434
|
title: z.ZodString;
|
|
48156
48435
|
description: z.ZodString;
|
|
48436
|
+
category: z.ZodOptional<z.ZodString>;
|
|
48437
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48157
48438
|
}, {
|
|
48158
48439
|
type: z.ZodLiteral<"Enum">;
|
|
48159
|
-
options: z.
|
|
48440
|
+
options: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
48441
|
+
label: z.ZodString;
|
|
48442
|
+
description: z.ZodString;
|
|
48443
|
+
}, "strip", z.ZodTypeAny, {
|
|
48444
|
+
description: string;
|
|
48445
|
+
label: string;
|
|
48446
|
+
}, {
|
|
48447
|
+
description: string;
|
|
48448
|
+
label: string;
|
|
48449
|
+
}>>;
|
|
48160
48450
|
default: z.ZodString;
|
|
48161
48451
|
}>, "strip", z.ZodTypeAny, {
|
|
48162
|
-
options: string
|
|
48452
|
+
options: Record<string, {
|
|
48453
|
+
description: string;
|
|
48454
|
+
label: string;
|
|
48455
|
+
}>;
|
|
48163
48456
|
type: "Enum";
|
|
48164
48457
|
description: string;
|
|
48165
48458
|
title: string;
|
|
48166
48459
|
key: string;
|
|
48167
48460
|
default: string;
|
|
48461
|
+
category?: string | undefined;
|
|
48462
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48168
48463
|
}, {
|
|
48169
|
-
options: string
|
|
48464
|
+
options: Record<string, {
|
|
48465
|
+
description: string;
|
|
48466
|
+
label: string;
|
|
48467
|
+
}>;
|
|
48170
48468
|
type: "Enum";
|
|
48171
48469
|
description: string;
|
|
48172
48470
|
title: string;
|
|
48173
48471
|
key: string;
|
|
48174
48472
|
default: string;
|
|
48473
|
+
category?: string | undefined;
|
|
48474
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48175
48475
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48176
48476
|
key: z.ZodString;
|
|
48177
48477
|
title: z.ZodString;
|
|
48178
48478
|
description: z.ZodString;
|
|
48479
|
+
category: z.ZodOptional<z.ZodString>;
|
|
48480
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48179
48481
|
}, {
|
|
48180
48482
|
type: z.ZodLiteral<"Boolean">;
|
|
48181
48483
|
default: z.ZodBoolean;
|
|
@@ -48185,16 +48487,22 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48185
48487
|
title: string;
|
|
48186
48488
|
key: string;
|
|
48187
48489
|
default: boolean;
|
|
48490
|
+
category?: string | undefined;
|
|
48491
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48188
48492
|
}, {
|
|
48189
48493
|
type: "Boolean";
|
|
48190
48494
|
description: string;
|
|
48191
48495
|
title: string;
|
|
48192
48496
|
key: string;
|
|
48193
48497
|
default: boolean;
|
|
48498
|
+
category?: string | undefined;
|
|
48499
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48194
48500
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48195
48501
|
key: z.ZodString;
|
|
48196
48502
|
title: z.ZodString;
|
|
48197
48503
|
description: z.ZodString;
|
|
48504
|
+
category: z.ZodOptional<z.ZodString>;
|
|
48505
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48198
48506
|
}, {
|
|
48199
48507
|
type: z.ZodLiteral<"String">;
|
|
48200
48508
|
default: z.ZodString;
|
|
@@ -48204,16 +48512,22 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48204
48512
|
title: string;
|
|
48205
48513
|
key: string;
|
|
48206
48514
|
default: string;
|
|
48515
|
+
category?: string | undefined;
|
|
48516
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48207
48517
|
}, {
|
|
48208
48518
|
type: "String";
|
|
48209
48519
|
description: string;
|
|
48210
48520
|
title: string;
|
|
48211
48521
|
key: string;
|
|
48212
48522
|
default: string;
|
|
48523
|
+
category?: string | undefined;
|
|
48524
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48213
48525
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48214
48526
|
key: z.ZodString;
|
|
48215
48527
|
title: z.ZodString;
|
|
48216
48528
|
description: z.ZodString;
|
|
48529
|
+
category: z.ZodOptional<z.ZodString>;
|
|
48530
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48217
48531
|
}, {
|
|
48218
48532
|
type: z.ZodLiteral<"Number">;
|
|
48219
48533
|
default: z.ZodNumber;
|
|
@@ -48223,16 +48537,22 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48223
48537
|
title: string;
|
|
48224
48538
|
key: string;
|
|
48225
48539
|
default: number;
|
|
48540
|
+
category?: string | undefined;
|
|
48541
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48226
48542
|
}, {
|
|
48227
48543
|
type: "Number";
|
|
48228
48544
|
description: string;
|
|
48229
48545
|
title: string;
|
|
48230
48546
|
key: string;
|
|
48231
48547
|
default: number;
|
|
48548
|
+
category?: string | undefined;
|
|
48549
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48232
48550
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48233
48551
|
key: z.ZodString;
|
|
48234
48552
|
title: z.ZodString;
|
|
48235
48553
|
description: z.ZodString;
|
|
48554
|
+
category: z.ZodOptional<z.ZodString>;
|
|
48555
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48236
48556
|
}, {
|
|
48237
48557
|
type: z.ZodLiteral<"Array">;
|
|
48238
48558
|
default: z.ZodArray<z.ZodString, "many">;
|
|
@@ -48242,16 +48562,22 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48242
48562
|
title: string;
|
|
48243
48563
|
key: string;
|
|
48244
48564
|
default: string[];
|
|
48565
|
+
category?: string | undefined;
|
|
48566
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48245
48567
|
}, {
|
|
48246
48568
|
type: "Array";
|
|
48247
48569
|
description: string;
|
|
48248
48570
|
title: string;
|
|
48249
48571
|
key: string;
|
|
48250
48572
|
default: string[];
|
|
48573
|
+
category?: string | undefined;
|
|
48574
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48251
48575
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48252
48576
|
key: z.ZodString;
|
|
48253
48577
|
title: z.ZodString;
|
|
48254
48578
|
description: z.ZodString;
|
|
48579
|
+
category: z.ZodOptional<z.ZodString>;
|
|
48580
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48255
48581
|
}, {
|
|
48256
48582
|
type: z.ZodLiteral<"Object">;
|
|
48257
48583
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -48278,6 +48604,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48278
48604
|
title: string;
|
|
48279
48605
|
key: string;
|
|
48280
48606
|
default: Record<string, string>;
|
|
48607
|
+
category?: string | undefined;
|
|
48608
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48281
48609
|
allowedKeys?: {
|
|
48282
48610
|
options: string[];
|
|
48283
48611
|
type: string;
|
|
@@ -48291,6 +48619,8 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48291
48619
|
title: string;
|
|
48292
48620
|
key: string;
|
|
48293
48621
|
default: Record<string, string>;
|
|
48622
|
+
category?: string | undefined;
|
|
48623
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48294
48624
|
allowedKeys?: {
|
|
48295
48625
|
options: string[];
|
|
48296
48626
|
type: string;
|
|
@@ -48467,42 +48797,57 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48467
48797
|
usesBrands: boolean;
|
|
48468
48798
|
usesThemes: boolean;
|
|
48469
48799
|
properties?: ({
|
|
48470
|
-
options: string
|
|
48800
|
+
options: Record<string, {
|
|
48801
|
+
description: string;
|
|
48802
|
+
label: string;
|
|
48803
|
+
}>;
|
|
48471
48804
|
type: "Enum";
|
|
48472
48805
|
description: string;
|
|
48473
48806
|
title: string;
|
|
48474
48807
|
key: string;
|
|
48475
48808
|
default: string;
|
|
48809
|
+
category?: string | undefined;
|
|
48810
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48476
48811
|
} | {
|
|
48477
48812
|
type: "Boolean";
|
|
48478
48813
|
description: string;
|
|
48479
48814
|
title: string;
|
|
48480
48815
|
key: string;
|
|
48481
48816
|
default: boolean;
|
|
48817
|
+
category?: string | undefined;
|
|
48818
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48482
48819
|
} | {
|
|
48483
48820
|
type: "String";
|
|
48484
48821
|
description: string;
|
|
48485
48822
|
title: string;
|
|
48486
48823
|
key: string;
|
|
48487
48824
|
default: string;
|
|
48825
|
+
category?: string | undefined;
|
|
48826
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48488
48827
|
} | {
|
|
48489
48828
|
type: "Number";
|
|
48490
48829
|
description: string;
|
|
48491
48830
|
title: string;
|
|
48492
48831
|
key: string;
|
|
48493
48832
|
default: number;
|
|
48833
|
+
category?: string | undefined;
|
|
48834
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48494
48835
|
} | {
|
|
48495
48836
|
type: "Array";
|
|
48496
48837
|
description: string;
|
|
48497
48838
|
title: string;
|
|
48498
48839
|
key: string;
|
|
48499
48840
|
default: string[];
|
|
48841
|
+
category?: string | undefined;
|
|
48842
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48500
48843
|
} | {
|
|
48501
48844
|
type: "Object";
|
|
48502
48845
|
description: string;
|
|
48503
48846
|
title: string;
|
|
48504
48847
|
key: string;
|
|
48505
48848
|
default: Record<string, string>;
|
|
48849
|
+
category?: string | undefined;
|
|
48850
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48506
48851
|
allowedKeys?: {
|
|
48507
48852
|
options: string[];
|
|
48508
48853
|
type: string;
|
|
@@ -48561,42 +48906,57 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48561
48906
|
usesBrands: boolean;
|
|
48562
48907
|
usesThemes: boolean;
|
|
48563
48908
|
properties?: ({
|
|
48564
|
-
options: string
|
|
48909
|
+
options: Record<string, {
|
|
48910
|
+
description: string;
|
|
48911
|
+
label: string;
|
|
48912
|
+
}>;
|
|
48565
48913
|
type: "Enum";
|
|
48566
48914
|
description: string;
|
|
48567
48915
|
title: string;
|
|
48568
48916
|
key: string;
|
|
48569
48917
|
default: string;
|
|
48918
|
+
category?: string | undefined;
|
|
48919
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48570
48920
|
} | {
|
|
48571
48921
|
type: "Boolean";
|
|
48572
48922
|
description: string;
|
|
48573
48923
|
title: string;
|
|
48574
48924
|
key: string;
|
|
48575
48925
|
default: boolean;
|
|
48926
|
+
category?: string | undefined;
|
|
48927
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48576
48928
|
} | {
|
|
48577
48929
|
type: "String";
|
|
48578
48930
|
description: string;
|
|
48579
48931
|
title: string;
|
|
48580
48932
|
key: string;
|
|
48581
48933
|
default: string;
|
|
48934
|
+
category?: string | undefined;
|
|
48935
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48582
48936
|
} | {
|
|
48583
48937
|
type: "Number";
|
|
48584
48938
|
description: string;
|
|
48585
48939
|
title: string;
|
|
48586
48940
|
key: string;
|
|
48587
48941
|
default: number;
|
|
48942
|
+
category?: string | undefined;
|
|
48943
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48588
48944
|
} | {
|
|
48589
48945
|
type: "Array";
|
|
48590
48946
|
description: string;
|
|
48591
48947
|
title: string;
|
|
48592
48948
|
key: string;
|
|
48593
48949
|
default: string[];
|
|
48950
|
+
category?: string | undefined;
|
|
48951
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48594
48952
|
} | {
|
|
48595
48953
|
type: "Object";
|
|
48596
48954
|
description: string;
|
|
48597
48955
|
title: string;
|
|
48598
48956
|
key: string;
|
|
48599
48957
|
default: Record<string, string>;
|
|
48958
|
+
category?: string | undefined;
|
|
48959
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48600
48960
|
allowedKeys?: {
|
|
48601
48961
|
options: string[];
|
|
48602
48962
|
type: string;
|
|
@@ -48675,42 +49035,57 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48675
49035
|
usesBrands: boolean;
|
|
48676
49036
|
usesThemes: boolean;
|
|
48677
49037
|
properties?: ({
|
|
48678
|
-
options: string
|
|
49038
|
+
options: Record<string, {
|
|
49039
|
+
description: string;
|
|
49040
|
+
label: string;
|
|
49041
|
+
}>;
|
|
48679
49042
|
type: "Enum";
|
|
48680
49043
|
description: string;
|
|
48681
49044
|
title: string;
|
|
48682
49045
|
key: string;
|
|
48683
49046
|
default: string;
|
|
49047
|
+
category?: string | undefined;
|
|
49048
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48684
49049
|
} | {
|
|
48685
49050
|
type: "Boolean";
|
|
48686
49051
|
description: string;
|
|
48687
49052
|
title: string;
|
|
48688
49053
|
key: string;
|
|
48689
49054
|
default: boolean;
|
|
49055
|
+
category?: string | undefined;
|
|
49056
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48690
49057
|
} | {
|
|
48691
49058
|
type: "String";
|
|
48692
49059
|
description: string;
|
|
48693
49060
|
title: string;
|
|
48694
49061
|
key: string;
|
|
48695
49062
|
default: string;
|
|
49063
|
+
category?: string | undefined;
|
|
49064
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48696
49065
|
} | {
|
|
48697
49066
|
type: "Number";
|
|
48698
49067
|
description: string;
|
|
48699
49068
|
title: string;
|
|
48700
49069
|
key: string;
|
|
48701
49070
|
default: number;
|
|
49071
|
+
category?: string | undefined;
|
|
49072
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48702
49073
|
} | {
|
|
48703
49074
|
type: "Array";
|
|
48704
49075
|
description: string;
|
|
48705
49076
|
title: string;
|
|
48706
49077
|
key: string;
|
|
48707
49078
|
default: string[];
|
|
49079
|
+
category?: string | undefined;
|
|
49080
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48708
49081
|
} | {
|
|
48709
49082
|
type: "Object";
|
|
48710
49083
|
description: string;
|
|
48711
49084
|
title: string;
|
|
48712
49085
|
key: string;
|
|
48713
49086
|
default: Record<string, string>;
|
|
49087
|
+
category?: string | undefined;
|
|
49088
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48714
49089
|
allowedKeys?: {
|
|
48715
49090
|
options: string[];
|
|
48716
49091
|
type: string;
|
|
@@ -48776,42 +49151,57 @@ declare const DTOExporterResponse: z.ZodObject<{
|
|
|
48776
49151
|
usesBrands: boolean;
|
|
48777
49152
|
usesThemes: boolean;
|
|
48778
49153
|
properties?: ({
|
|
48779
|
-
options: string
|
|
49154
|
+
options: Record<string, {
|
|
49155
|
+
description: string;
|
|
49156
|
+
label: string;
|
|
49157
|
+
}>;
|
|
48780
49158
|
type: "Enum";
|
|
48781
49159
|
description: string;
|
|
48782
49160
|
title: string;
|
|
48783
49161
|
key: string;
|
|
48784
49162
|
default: string;
|
|
49163
|
+
category?: string | undefined;
|
|
49164
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48785
49165
|
} | {
|
|
48786
49166
|
type: "Boolean";
|
|
48787
49167
|
description: string;
|
|
48788
49168
|
title: string;
|
|
48789
49169
|
key: string;
|
|
48790
49170
|
default: boolean;
|
|
49171
|
+
category?: string | undefined;
|
|
49172
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48791
49173
|
} | {
|
|
48792
49174
|
type: "String";
|
|
48793
49175
|
description: string;
|
|
48794
49176
|
title: string;
|
|
48795
49177
|
key: string;
|
|
48796
49178
|
default: string;
|
|
49179
|
+
category?: string | undefined;
|
|
49180
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48797
49181
|
} | {
|
|
48798
49182
|
type: "Number";
|
|
48799
49183
|
description: string;
|
|
48800
49184
|
title: string;
|
|
48801
49185
|
key: string;
|
|
48802
49186
|
default: number;
|
|
49187
|
+
category?: string | undefined;
|
|
49188
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48803
49189
|
} | {
|
|
48804
49190
|
type: "Array";
|
|
48805
49191
|
description: string;
|
|
48806
49192
|
title: string;
|
|
48807
49193
|
key: string;
|
|
48808
49194
|
default: string[];
|
|
49195
|
+
category?: string | undefined;
|
|
49196
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48809
49197
|
} | {
|
|
48810
49198
|
type: "Object";
|
|
48811
49199
|
description: string;
|
|
48812
49200
|
title: string;
|
|
48813
49201
|
key: string;
|
|
48814
49202
|
default: Record<string, string>;
|
|
49203
|
+
category?: string | undefined;
|
|
49204
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48815
49205
|
allowedKeys?: {
|
|
48816
49206
|
options: string[];
|
|
48817
49207
|
type: string;
|
|
@@ -48871,28 +49261,51 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
48871
49261
|
key: z.ZodString;
|
|
48872
49262
|
title: z.ZodString;
|
|
48873
49263
|
description: z.ZodString;
|
|
49264
|
+
category: z.ZodOptional<z.ZodString>;
|
|
49265
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48874
49266
|
}, {
|
|
48875
49267
|
type: z.ZodLiteral<"Enum">;
|
|
48876
|
-
options: z.
|
|
49268
|
+
options: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
49269
|
+
label: z.ZodString;
|
|
49270
|
+
description: z.ZodString;
|
|
49271
|
+
}, "strip", z.ZodTypeAny, {
|
|
49272
|
+
description: string;
|
|
49273
|
+
label: string;
|
|
49274
|
+
}, {
|
|
49275
|
+
description: string;
|
|
49276
|
+
label: string;
|
|
49277
|
+
}>>;
|
|
48877
49278
|
default: z.ZodString;
|
|
48878
49279
|
}>, "strip", z.ZodTypeAny, {
|
|
48879
|
-
options: string
|
|
49280
|
+
options: Record<string, {
|
|
49281
|
+
description: string;
|
|
49282
|
+
label: string;
|
|
49283
|
+
}>;
|
|
48880
49284
|
type: "Enum";
|
|
48881
49285
|
description: string;
|
|
48882
49286
|
title: string;
|
|
48883
49287
|
key: string;
|
|
48884
49288
|
default: string;
|
|
49289
|
+
category?: string | undefined;
|
|
49290
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48885
49291
|
}, {
|
|
48886
|
-
options: string
|
|
49292
|
+
options: Record<string, {
|
|
49293
|
+
description: string;
|
|
49294
|
+
label: string;
|
|
49295
|
+
}>;
|
|
48887
49296
|
type: "Enum";
|
|
48888
49297
|
description: string;
|
|
48889
49298
|
title: string;
|
|
48890
49299
|
key: string;
|
|
48891
49300
|
default: string;
|
|
49301
|
+
category?: string | undefined;
|
|
49302
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48892
49303
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48893
49304
|
key: z.ZodString;
|
|
48894
49305
|
title: z.ZodString;
|
|
48895
49306
|
description: z.ZodString;
|
|
49307
|
+
category: z.ZodOptional<z.ZodString>;
|
|
49308
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48896
49309
|
}, {
|
|
48897
49310
|
type: z.ZodLiteral<"Boolean">;
|
|
48898
49311
|
default: z.ZodBoolean;
|
|
@@ -48902,16 +49315,22 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
48902
49315
|
title: string;
|
|
48903
49316
|
key: string;
|
|
48904
49317
|
default: boolean;
|
|
49318
|
+
category?: string | undefined;
|
|
49319
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48905
49320
|
}, {
|
|
48906
49321
|
type: "Boolean";
|
|
48907
49322
|
description: string;
|
|
48908
49323
|
title: string;
|
|
48909
49324
|
key: string;
|
|
48910
49325
|
default: boolean;
|
|
49326
|
+
category?: string | undefined;
|
|
49327
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48911
49328
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48912
49329
|
key: z.ZodString;
|
|
48913
49330
|
title: z.ZodString;
|
|
48914
49331
|
description: z.ZodString;
|
|
49332
|
+
category: z.ZodOptional<z.ZodString>;
|
|
49333
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48915
49334
|
}, {
|
|
48916
49335
|
type: z.ZodLiteral<"String">;
|
|
48917
49336
|
default: z.ZodString;
|
|
@@ -48921,16 +49340,22 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
48921
49340
|
title: string;
|
|
48922
49341
|
key: string;
|
|
48923
49342
|
default: string;
|
|
49343
|
+
category?: string | undefined;
|
|
49344
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48924
49345
|
}, {
|
|
48925
49346
|
type: "String";
|
|
48926
49347
|
description: string;
|
|
48927
49348
|
title: string;
|
|
48928
49349
|
key: string;
|
|
48929
49350
|
default: string;
|
|
49351
|
+
category?: string | undefined;
|
|
49352
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48930
49353
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48931
49354
|
key: z.ZodString;
|
|
48932
49355
|
title: z.ZodString;
|
|
48933
49356
|
description: z.ZodString;
|
|
49357
|
+
category: z.ZodOptional<z.ZodString>;
|
|
49358
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48934
49359
|
}, {
|
|
48935
49360
|
type: z.ZodLiteral<"Number">;
|
|
48936
49361
|
default: z.ZodNumber;
|
|
@@ -48940,16 +49365,22 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
48940
49365
|
title: string;
|
|
48941
49366
|
key: string;
|
|
48942
49367
|
default: number;
|
|
49368
|
+
category?: string | undefined;
|
|
49369
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48943
49370
|
}, {
|
|
48944
49371
|
type: "Number";
|
|
48945
49372
|
description: string;
|
|
48946
49373
|
title: string;
|
|
48947
49374
|
key: string;
|
|
48948
49375
|
default: number;
|
|
49376
|
+
category?: string | undefined;
|
|
49377
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48949
49378
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48950
49379
|
key: z.ZodString;
|
|
48951
49380
|
title: z.ZodString;
|
|
48952
49381
|
description: z.ZodString;
|
|
49382
|
+
category: z.ZodOptional<z.ZodString>;
|
|
49383
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48953
49384
|
}, {
|
|
48954
49385
|
type: z.ZodLiteral<"Array">;
|
|
48955
49386
|
default: z.ZodArray<z.ZodString, "many">;
|
|
@@ -48959,16 +49390,22 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
48959
49390
|
title: string;
|
|
48960
49391
|
key: string;
|
|
48961
49392
|
default: string[];
|
|
49393
|
+
category?: string | undefined;
|
|
49394
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48962
49395
|
}, {
|
|
48963
49396
|
type: "Array";
|
|
48964
49397
|
description: string;
|
|
48965
49398
|
title: string;
|
|
48966
49399
|
key: string;
|
|
48967
49400
|
default: string[];
|
|
49401
|
+
category?: string | undefined;
|
|
49402
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48968
49403
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
48969
49404
|
key: z.ZodString;
|
|
48970
49405
|
title: z.ZodString;
|
|
48971
49406
|
description: z.ZodString;
|
|
49407
|
+
category: z.ZodOptional<z.ZodString>;
|
|
49408
|
+
dependsOn: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
48972
49409
|
}, {
|
|
48973
49410
|
type: z.ZodLiteral<"Object">;
|
|
48974
49411
|
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
@@ -48995,6 +49432,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
48995
49432
|
title: string;
|
|
48996
49433
|
key: string;
|
|
48997
49434
|
default: Record<string, string>;
|
|
49435
|
+
category?: string | undefined;
|
|
49436
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
48998
49437
|
allowedKeys?: {
|
|
48999
49438
|
options: string[];
|
|
49000
49439
|
type: string;
|
|
@@ -49008,6 +49447,8 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
49008
49447
|
title: string;
|
|
49009
49448
|
key: string;
|
|
49010
49449
|
default: Record<string, string>;
|
|
49450
|
+
category?: string | undefined;
|
|
49451
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49011
49452
|
allowedKeys?: {
|
|
49012
49453
|
options: string[];
|
|
49013
49454
|
type: string;
|
|
@@ -49184,42 +49625,57 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
49184
49625
|
usesBrands: boolean;
|
|
49185
49626
|
usesThemes: boolean;
|
|
49186
49627
|
properties?: ({
|
|
49187
|
-
options: string
|
|
49628
|
+
options: Record<string, {
|
|
49629
|
+
description: string;
|
|
49630
|
+
label: string;
|
|
49631
|
+
}>;
|
|
49188
49632
|
type: "Enum";
|
|
49189
49633
|
description: string;
|
|
49190
49634
|
title: string;
|
|
49191
49635
|
key: string;
|
|
49192
49636
|
default: string;
|
|
49637
|
+
category?: string | undefined;
|
|
49638
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49193
49639
|
} | {
|
|
49194
49640
|
type: "Boolean";
|
|
49195
49641
|
description: string;
|
|
49196
49642
|
title: string;
|
|
49197
49643
|
key: string;
|
|
49198
49644
|
default: boolean;
|
|
49645
|
+
category?: string | undefined;
|
|
49646
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49199
49647
|
} | {
|
|
49200
49648
|
type: "String";
|
|
49201
49649
|
description: string;
|
|
49202
49650
|
title: string;
|
|
49203
49651
|
key: string;
|
|
49204
49652
|
default: string;
|
|
49653
|
+
category?: string | undefined;
|
|
49654
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49205
49655
|
} | {
|
|
49206
49656
|
type: "Number";
|
|
49207
49657
|
description: string;
|
|
49208
49658
|
title: string;
|
|
49209
49659
|
key: string;
|
|
49210
49660
|
default: number;
|
|
49661
|
+
category?: string | undefined;
|
|
49662
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49211
49663
|
} | {
|
|
49212
49664
|
type: "Array";
|
|
49213
49665
|
description: string;
|
|
49214
49666
|
title: string;
|
|
49215
49667
|
key: string;
|
|
49216
49668
|
default: string[];
|
|
49669
|
+
category?: string | undefined;
|
|
49670
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49217
49671
|
} | {
|
|
49218
49672
|
type: "Object";
|
|
49219
49673
|
description: string;
|
|
49220
49674
|
title: string;
|
|
49221
49675
|
key: string;
|
|
49222
49676
|
default: Record<string, string>;
|
|
49677
|
+
category?: string | undefined;
|
|
49678
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49223
49679
|
allowedKeys?: {
|
|
49224
49680
|
options: string[];
|
|
49225
49681
|
type: string;
|
|
@@ -49278,42 +49734,57 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
49278
49734
|
usesBrands: boolean;
|
|
49279
49735
|
usesThemes: boolean;
|
|
49280
49736
|
properties?: ({
|
|
49281
|
-
options: string
|
|
49737
|
+
options: Record<string, {
|
|
49738
|
+
description: string;
|
|
49739
|
+
label: string;
|
|
49740
|
+
}>;
|
|
49282
49741
|
type: "Enum";
|
|
49283
49742
|
description: string;
|
|
49284
49743
|
title: string;
|
|
49285
49744
|
key: string;
|
|
49286
49745
|
default: string;
|
|
49746
|
+
category?: string | undefined;
|
|
49747
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49287
49748
|
} | {
|
|
49288
49749
|
type: "Boolean";
|
|
49289
49750
|
description: string;
|
|
49290
49751
|
title: string;
|
|
49291
49752
|
key: string;
|
|
49292
49753
|
default: boolean;
|
|
49754
|
+
category?: string | undefined;
|
|
49755
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49293
49756
|
} | {
|
|
49294
49757
|
type: "String";
|
|
49295
49758
|
description: string;
|
|
49296
49759
|
title: string;
|
|
49297
49760
|
key: string;
|
|
49298
49761
|
default: string;
|
|
49762
|
+
category?: string | undefined;
|
|
49763
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49299
49764
|
} | {
|
|
49300
49765
|
type: "Number";
|
|
49301
49766
|
description: string;
|
|
49302
49767
|
title: string;
|
|
49303
49768
|
key: string;
|
|
49304
49769
|
default: number;
|
|
49770
|
+
category?: string | undefined;
|
|
49771
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49305
49772
|
} | {
|
|
49306
49773
|
type: "Array";
|
|
49307
49774
|
description: string;
|
|
49308
49775
|
title: string;
|
|
49309
49776
|
key: string;
|
|
49310
49777
|
default: string[];
|
|
49778
|
+
category?: string | undefined;
|
|
49779
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49311
49780
|
} | {
|
|
49312
49781
|
type: "Object";
|
|
49313
49782
|
description: string;
|
|
49314
49783
|
title: string;
|
|
49315
49784
|
key: string;
|
|
49316
49785
|
default: Record<string, string>;
|
|
49786
|
+
category?: string | undefined;
|
|
49787
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49317
49788
|
allowedKeys?: {
|
|
49318
49789
|
options: string[];
|
|
49319
49790
|
type: string;
|
|
@@ -49392,42 +49863,57 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
49392
49863
|
usesBrands: boolean;
|
|
49393
49864
|
usesThemes: boolean;
|
|
49394
49865
|
properties?: ({
|
|
49395
|
-
options: string
|
|
49866
|
+
options: Record<string, {
|
|
49867
|
+
description: string;
|
|
49868
|
+
label: string;
|
|
49869
|
+
}>;
|
|
49396
49870
|
type: "Enum";
|
|
49397
49871
|
description: string;
|
|
49398
49872
|
title: string;
|
|
49399
49873
|
key: string;
|
|
49400
49874
|
default: string;
|
|
49875
|
+
category?: string | undefined;
|
|
49876
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49401
49877
|
} | {
|
|
49402
49878
|
type: "Boolean";
|
|
49403
49879
|
description: string;
|
|
49404
49880
|
title: string;
|
|
49405
49881
|
key: string;
|
|
49406
49882
|
default: boolean;
|
|
49883
|
+
category?: string | undefined;
|
|
49884
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49407
49885
|
} | {
|
|
49408
49886
|
type: "String";
|
|
49409
49887
|
description: string;
|
|
49410
49888
|
title: string;
|
|
49411
49889
|
key: string;
|
|
49412
49890
|
default: string;
|
|
49891
|
+
category?: string | undefined;
|
|
49892
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49413
49893
|
} | {
|
|
49414
49894
|
type: "Number";
|
|
49415
49895
|
description: string;
|
|
49416
49896
|
title: string;
|
|
49417
49897
|
key: string;
|
|
49418
49898
|
default: number;
|
|
49899
|
+
category?: string | undefined;
|
|
49900
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49419
49901
|
} | {
|
|
49420
49902
|
type: "Array";
|
|
49421
49903
|
description: string;
|
|
49422
49904
|
title: string;
|
|
49423
49905
|
key: string;
|
|
49424
49906
|
default: string[];
|
|
49907
|
+
category?: string | undefined;
|
|
49908
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49425
49909
|
} | {
|
|
49426
49910
|
type: "Object";
|
|
49427
49911
|
description: string;
|
|
49428
49912
|
title: string;
|
|
49429
49913
|
key: string;
|
|
49430
49914
|
default: Record<string, string>;
|
|
49915
|
+
category?: string | undefined;
|
|
49916
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49431
49917
|
allowedKeys?: {
|
|
49432
49918
|
options: string[];
|
|
49433
49919
|
type: string;
|
|
@@ -49493,42 +49979,57 @@ declare const DTOExporterListResponse: z.ZodObject<{
|
|
|
49493
49979
|
usesBrands: boolean;
|
|
49494
49980
|
usesThemes: boolean;
|
|
49495
49981
|
properties?: ({
|
|
49496
|
-
options: string
|
|
49982
|
+
options: Record<string, {
|
|
49983
|
+
description: string;
|
|
49984
|
+
label: string;
|
|
49985
|
+
}>;
|
|
49497
49986
|
type: "Enum";
|
|
49498
49987
|
description: string;
|
|
49499
49988
|
title: string;
|
|
49500
49989
|
key: string;
|
|
49501
49990
|
default: string;
|
|
49991
|
+
category?: string | undefined;
|
|
49992
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49502
49993
|
} | {
|
|
49503
49994
|
type: "Boolean";
|
|
49504
49995
|
description: string;
|
|
49505
49996
|
title: string;
|
|
49506
49997
|
key: string;
|
|
49507
49998
|
default: boolean;
|
|
49999
|
+
category?: string | undefined;
|
|
50000
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49508
50001
|
} | {
|
|
49509
50002
|
type: "String";
|
|
49510
50003
|
description: string;
|
|
49511
50004
|
title: string;
|
|
49512
50005
|
key: string;
|
|
49513
50006
|
default: string;
|
|
50007
|
+
category?: string | undefined;
|
|
50008
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49514
50009
|
} | {
|
|
49515
50010
|
type: "Number";
|
|
49516
50011
|
description: string;
|
|
49517
50012
|
title: string;
|
|
49518
50013
|
key: string;
|
|
49519
50014
|
default: number;
|
|
50015
|
+
category?: string | undefined;
|
|
50016
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49520
50017
|
} | {
|
|
49521
50018
|
type: "Array";
|
|
49522
50019
|
description: string;
|
|
49523
50020
|
title: string;
|
|
49524
50021
|
key: string;
|
|
49525
50022
|
default: string[];
|
|
50023
|
+
category?: string | undefined;
|
|
50024
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49526
50025
|
} | {
|
|
49527
50026
|
type: "Object";
|
|
49528
50027
|
description: string;
|
|
49529
50028
|
title: string;
|
|
49530
50029
|
key: string;
|
|
49531
50030
|
default: Record<string, string>;
|
|
50031
|
+
category?: string | undefined;
|
|
50032
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
49532
50033
|
allowedKeys?: {
|
|
49533
50034
|
options: string[];
|
|
49534
50035
|
type: string;
|
|
@@ -86444,42 +86945,57 @@ declare class ExportersEndpoint {
|
|
|
86444
86945
|
usesBrands: boolean;
|
|
86445
86946
|
usesThemes: boolean;
|
|
86446
86947
|
properties?: ({
|
|
86447
|
-
options: string
|
|
86948
|
+
options: Record<string, {
|
|
86949
|
+
description: string;
|
|
86950
|
+
label: string;
|
|
86951
|
+
}>;
|
|
86448
86952
|
type: "Enum";
|
|
86449
86953
|
description: string;
|
|
86450
86954
|
title: string;
|
|
86451
86955
|
key: string;
|
|
86452
86956
|
default: string;
|
|
86957
|
+
category?: string | undefined;
|
|
86958
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86453
86959
|
} | {
|
|
86454
86960
|
type: "Boolean";
|
|
86455
86961
|
description: string;
|
|
86456
86962
|
title: string;
|
|
86457
86963
|
key: string;
|
|
86458
86964
|
default: boolean;
|
|
86965
|
+
category?: string | undefined;
|
|
86966
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86459
86967
|
} | {
|
|
86460
86968
|
type: "String";
|
|
86461
86969
|
description: string;
|
|
86462
86970
|
title: string;
|
|
86463
86971
|
key: string;
|
|
86464
86972
|
default: string;
|
|
86973
|
+
category?: string | undefined;
|
|
86974
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86465
86975
|
} | {
|
|
86466
86976
|
type: "Number";
|
|
86467
86977
|
description: string;
|
|
86468
86978
|
title: string;
|
|
86469
86979
|
key: string;
|
|
86470
86980
|
default: number;
|
|
86981
|
+
category?: string | undefined;
|
|
86982
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86471
86983
|
} | {
|
|
86472
86984
|
type: "Array";
|
|
86473
86985
|
description: string;
|
|
86474
86986
|
title: string;
|
|
86475
86987
|
key: string;
|
|
86476
86988
|
default: string[];
|
|
86989
|
+
category?: string | undefined;
|
|
86990
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86477
86991
|
} | {
|
|
86478
86992
|
type: "Object";
|
|
86479
86993
|
description: string;
|
|
86480
86994
|
title: string;
|
|
86481
86995
|
key: string;
|
|
86482
86996
|
default: Record<string, string>;
|
|
86997
|
+
category?: string | undefined;
|
|
86998
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86483
86999
|
allowedKeys?: {
|
|
86484
87000
|
options: string[];
|
|
86485
87001
|
type: string;
|
|
@@ -86546,42 +87062,57 @@ declare class ExportersEndpoint {
|
|
|
86546
87062
|
usesBrands: boolean;
|
|
86547
87063
|
usesThemes: boolean;
|
|
86548
87064
|
properties?: ({
|
|
86549
|
-
options: string
|
|
87065
|
+
options: Record<string, {
|
|
87066
|
+
description: string;
|
|
87067
|
+
label: string;
|
|
87068
|
+
}>;
|
|
86550
87069
|
type: "Enum";
|
|
86551
87070
|
description: string;
|
|
86552
87071
|
title: string;
|
|
86553
87072
|
key: string;
|
|
86554
87073
|
default: string;
|
|
87074
|
+
category?: string | undefined;
|
|
87075
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86555
87076
|
} | {
|
|
86556
87077
|
type: "Boolean";
|
|
86557
87078
|
description: string;
|
|
86558
87079
|
title: string;
|
|
86559
87080
|
key: string;
|
|
86560
87081
|
default: boolean;
|
|
87082
|
+
category?: string | undefined;
|
|
87083
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86561
87084
|
} | {
|
|
86562
87085
|
type: "String";
|
|
86563
87086
|
description: string;
|
|
86564
87087
|
title: string;
|
|
86565
87088
|
key: string;
|
|
86566
87089
|
default: string;
|
|
87090
|
+
category?: string | undefined;
|
|
87091
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86567
87092
|
} | {
|
|
86568
87093
|
type: "Number";
|
|
86569
87094
|
description: string;
|
|
86570
87095
|
title: string;
|
|
86571
87096
|
key: string;
|
|
86572
87097
|
default: number;
|
|
87098
|
+
category?: string | undefined;
|
|
87099
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86573
87100
|
} | {
|
|
86574
87101
|
type: "Array";
|
|
86575
87102
|
description: string;
|
|
86576
87103
|
title: string;
|
|
86577
87104
|
key: string;
|
|
86578
87105
|
default: string[];
|
|
87106
|
+
category?: string | undefined;
|
|
87107
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86579
87108
|
} | {
|
|
86580
87109
|
type: "Object";
|
|
86581
87110
|
description: string;
|
|
86582
87111
|
title: string;
|
|
86583
87112
|
key: string;
|
|
86584
87113
|
default: Record<string, string>;
|
|
87114
|
+
category?: string | undefined;
|
|
87115
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86585
87116
|
allowedKeys?: {
|
|
86586
87117
|
options: string[];
|
|
86587
87118
|
type: string;
|
|
@@ -86648,42 +87179,57 @@ declare class ExportersEndpoint {
|
|
|
86648
87179
|
usesBrands: boolean;
|
|
86649
87180
|
usesThemes: boolean;
|
|
86650
87181
|
properties?: ({
|
|
86651
|
-
options: string
|
|
87182
|
+
options: Record<string, {
|
|
87183
|
+
description: string;
|
|
87184
|
+
label: string;
|
|
87185
|
+
}>;
|
|
86652
87186
|
type: "Enum";
|
|
86653
87187
|
description: string;
|
|
86654
87188
|
title: string;
|
|
86655
87189
|
key: string;
|
|
86656
87190
|
default: string;
|
|
87191
|
+
category?: string | undefined;
|
|
87192
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86657
87193
|
} | {
|
|
86658
87194
|
type: "Boolean";
|
|
86659
87195
|
description: string;
|
|
86660
87196
|
title: string;
|
|
86661
87197
|
key: string;
|
|
86662
87198
|
default: boolean;
|
|
87199
|
+
category?: string | undefined;
|
|
87200
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86663
87201
|
} | {
|
|
86664
87202
|
type: "String";
|
|
86665
87203
|
description: string;
|
|
86666
87204
|
title: string;
|
|
86667
87205
|
key: string;
|
|
86668
87206
|
default: string;
|
|
87207
|
+
category?: string | undefined;
|
|
87208
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86669
87209
|
} | {
|
|
86670
87210
|
type: "Number";
|
|
86671
87211
|
description: string;
|
|
86672
87212
|
title: string;
|
|
86673
87213
|
key: string;
|
|
86674
87214
|
default: number;
|
|
87215
|
+
category?: string | undefined;
|
|
87216
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86675
87217
|
} | {
|
|
86676
87218
|
type: "Array";
|
|
86677
87219
|
description: string;
|
|
86678
87220
|
title: string;
|
|
86679
87221
|
key: string;
|
|
86680
87222
|
default: string[];
|
|
87223
|
+
category?: string | undefined;
|
|
87224
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86681
87225
|
} | {
|
|
86682
87226
|
type: "Object";
|
|
86683
87227
|
description: string;
|
|
86684
87228
|
title: string;
|
|
86685
87229
|
key: string;
|
|
86686
87230
|
default: Record<string, string>;
|
|
87231
|
+
category?: string | undefined;
|
|
87232
|
+
dependsOn?: Record<string, boolean> | undefined;
|
|
86687
87233
|
allowedKeys?: {
|
|
86688
87234
|
options: string[];
|
|
86689
87235
|
type: string;
|
|
@@ -90717,7 +91263,7 @@ declare class ElementsActionEndpoint {
|
|
|
90717
91263
|
};
|
|
90718
91264
|
}[];
|
|
90719
91265
|
}>;
|
|
90720
|
-
renderNodes(dsId: string, vId: string, input:
|
|
91266
|
+
renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
|
|
90721
91267
|
type: "DocumentationGroupCreate";
|
|
90722
91268
|
output: {
|
|
90723
91269
|
success: true;
|
|
@@ -97628,4 +98174,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
97628
98174
|
|
|
97629
98175
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
97630
98176
|
|
|
97631
|
-
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, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, 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, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, 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, ParsedFigmaFileURLError, 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 };
|
|
98177
|
+
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, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, 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, ParsedFigmaFileURLError, 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 };
|