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