@supernova-studio/client 0.47.16 → 0.47.17
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 +780 -97
- package/dist/index.d.ts +780 -97
- package/dist/index.js +51 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +152 -104
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/export/exporter.ts +68 -0
- package/src/api/dto/export/index.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -22930,6 +22930,689 @@ type DTOElementsGetQueryParsed = z.output<typeof DTOElementsGetQuerySchema>;
|
|
|
22930
22930
|
declare const DTOElementsGetTypeFilter: z.ZodEnum<["FigmaNode"]>;
|
|
22931
22931
|
type DTOElementsGetTypeFilter = z.infer<typeof DTOElementsGetTypeFilter>;
|
|
22932
22932
|
|
|
22933
|
+
declare const DTOExporterType: z.ZodEnum<["documentation", "code"]>;
|
|
22934
|
+
type DTOExporterType = z.infer<typeof DTOExporterType>;
|
|
22935
|
+
declare const DTOExporterSource: z.ZodEnum<["git", "upload"]>;
|
|
22936
|
+
type DTOExporterSource = z.infer<typeof DTOExporterSource>;
|
|
22937
|
+
declare const DTOExporterMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
22938
|
+
type DTOExporterMembershipRole = z.infer<typeof DTOExporterMembershipRole>;
|
|
22939
|
+
declare const DTOExporter: z.ZodObject<{
|
|
22940
|
+
id: z.ZodString;
|
|
22941
|
+
name: z.ZodString;
|
|
22942
|
+
isPrivate: z.ZodBoolean;
|
|
22943
|
+
exporterType: z.ZodEnum<["documentation", "code"]>;
|
|
22944
|
+
isDefaultDocumentationExporter: z.ZodBoolean;
|
|
22945
|
+
iconURL: z.ZodOptional<z.ZodString>;
|
|
22946
|
+
configurationProperties: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
22947
|
+
label: z.ZodString;
|
|
22948
|
+
key: z.ZodString;
|
|
22949
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22950
|
+
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
22951
|
+
values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
22952
|
+
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
22953
|
+
inputType: z.ZodOptional<z.ZodEnum<["code", "plain"]>>;
|
|
22954
|
+
isMultiline: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
22955
|
+
}, {
|
|
22956
|
+
category: z.ZodString;
|
|
22957
|
+
}>, "strip", z.ZodTypeAny, {
|
|
22958
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
22959
|
+
category: string;
|
|
22960
|
+
key: string;
|
|
22961
|
+
label: string;
|
|
22962
|
+
values?: string[] | null | undefined;
|
|
22963
|
+
description?: string | null | undefined;
|
|
22964
|
+
default?: string | number | boolean | null | undefined;
|
|
22965
|
+
inputType?: "code" | "plain" | undefined;
|
|
22966
|
+
isMultiline?: boolean | null | undefined;
|
|
22967
|
+
}, {
|
|
22968
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
22969
|
+
category: string;
|
|
22970
|
+
key: string;
|
|
22971
|
+
label: string;
|
|
22972
|
+
values?: string[] | null | undefined;
|
|
22973
|
+
description?: string | null | undefined;
|
|
22974
|
+
default?: string | number | boolean | null | undefined;
|
|
22975
|
+
inputType?: "code" | "plain" | undefined;
|
|
22976
|
+
isMultiline?: boolean | null | undefined;
|
|
22977
|
+
}>, "many">;
|
|
22978
|
+
customBlocks: z.ZodArray<z.ZodObject<{
|
|
22979
|
+
title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
22980
|
+
key: z.ZodString;
|
|
22981
|
+
category: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
22982
|
+
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
22983
|
+
iconURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
22984
|
+
mode: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"array" | "block", z.ZodTypeDef, "array" | "block">>>, NonNullable<"array" | "block"> | undefined, "array" | "block" | null | undefined>;
|
|
22985
|
+
properties: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
22986
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
22987
|
+
key: string;
|
|
22988
|
+
label: string;
|
|
22989
|
+
values?: string[] | null | undefined;
|
|
22990
|
+
description?: string | null | undefined;
|
|
22991
|
+
default?: string | number | boolean | null | undefined;
|
|
22992
|
+
inputType?: "code" | "plain" | undefined;
|
|
22993
|
+
isMultiline?: boolean | null | undefined;
|
|
22994
|
+
}[], z.ZodTypeDef, {
|
|
22995
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
22996
|
+
key: string;
|
|
22997
|
+
label: string;
|
|
22998
|
+
values?: string[] | null | undefined;
|
|
22999
|
+
description?: string | null | undefined;
|
|
23000
|
+
default?: string | number | boolean | null | undefined;
|
|
23001
|
+
inputType?: "code" | "plain" | undefined;
|
|
23002
|
+
isMultiline?: boolean | null | undefined;
|
|
23003
|
+
}[]>>>, {
|
|
23004
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23005
|
+
key: string;
|
|
23006
|
+
label: string;
|
|
23007
|
+
values?: string[] | null | undefined;
|
|
23008
|
+
description?: string | null | undefined;
|
|
23009
|
+
default?: string | number | boolean | null | undefined;
|
|
23010
|
+
inputType?: "code" | "plain" | undefined;
|
|
23011
|
+
isMultiline?: boolean | null | undefined;
|
|
23012
|
+
}[] | undefined, {
|
|
23013
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23014
|
+
key: string;
|
|
23015
|
+
label: string;
|
|
23016
|
+
values?: string[] | null | undefined;
|
|
23017
|
+
description?: string | null | undefined;
|
|
23018
|
+
default?: string | number | boolean | null | undefined;
|
|
23019
|
+
inputType?: "code" | "plain" | undefined;
|
|
23020
|
+
isMultiline?: boolean | null | undefined;
|
|
23021
|
+
}[] | null | undefined>, {
|
|
23022
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23023
|
+
key: string;
|
|
23024
|
+
label: string;
|
|
23025
|
+
values?: string[] | null | undefined;
|
|
23026
|
+
description?: string | null | undefined;
|
|
23027
|
+
default?: string | number | boolean | null | undefined;
|
|
23028
|
+
inputType?: "code" | "plain" | undefined;
|
|
23029
|
+
isMultiline?: boolean | null | undefined;
|
|
23030
|
+
}[], {
|
|
23031
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23032
|
+
key: string;
|
|
23033
|
+
label: string;
|
|
23034
|
+
values?: string[] | null | undefined;
|
|
23035
|
+
description?: string | null | undefined;
|
|
23036
|
+
default?: string | number | boolean | null | undefined;
|
|
23037
|
+
inputType?: "code" | "plain" | undefined;
|
|
23038
|
+
isMultiline?: boolean | null | undefined;
|
|
23039
|
+
}[] | null | undefined>;
|
|
23040
|
+
}, "strip", z.ZodTypeAny, {
|
|
23041
|
+
properties: {
|
|
23042
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23043
|
+
key: string;
|
|
23044
|
+
label: string;
|
|
23045
|
+
values?: string[] | null | undefined;
|
|
23046
|
+
description?: string | null | undefined;
|
|
23047
|
+
default?: string | number | boolean | null | undefined;
|
|
23048
|
+
inputType?: "code" | "plain" | undefined;
|
|
23049
|
+
isMultiline?: boolean | null | undefined;
|
|
23050
|
+
}[];
|
|
23051
|
+
key: string;
|
|
23052
|
+
description?: string | undefined;
|
|
23053
|
+
category?: string | undefined;
|
|
23054
|
+
title?: string | undefined;
|
|
23055
|
+
iconURL?: string | undefined;
|
|
23056
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
23057
|
+
}, {
|
|
23058
|
+
key: string;
|
|
23059
|
+
description?: string | null | undefined;
|
|
23060
|
+
category?: string | null | undefined;
|
|
23061
|
+
properties?: {
|
|
23062
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23063
|
+
key: string;
|
|
23064
|
+
label: string;
|
|
23065
|
+
values?: string[] | null | undefined;
|
|
23066
|
+
description?: string | null | undefined;
|
|
23067
|
+
default?: string | number | boolean | null | undefined;
|
|
23068
|
+
inputType?: "code" | "plain" | undefined;
|
|
23069
|
+
isMultiline?: boolean | null | undefined;
|
|
23070
|
+
}[] | null | undefined;
|
|
23071
|
+
title?: string | null | undefined;
|
|
23072
|
+
iconURL?: string | null | undefined;
|
|
23073
|
+
mode?: "array" | "block" | null | undefined;
|
|
23074
|
+
}>, "many">;
|
|
23075
|
+
blockVariants: z.ZodArray<z.ZodObject<{
|
|
23076
|
+
key: z.ZodString;
|
|
23077
|
+
name: z.ZodString;
|
|
23078
|
+
isDefault: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
23079
|
+
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23080
|
+
thumbnailURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23081
|
+
}, "strip", z.ZodTypeAny, {
|
|
23082
|
+
name: string;
|
|
23083
|
+
key: string;
|
|
23084
|
+
description?: string | undefined;
|
|
23085
|
+
isDefault?: boolean | undefined;
|
|
23086
|
+
thumbnailURL?: string | undefined;
|
|
23087
|
+
}, {
|
|
23088
|
+
name: string;
|
|
23089
|
+
key: string;
|
|
23090
|
+
description?: string | null | undefined;
|
|
23091
|
+
isDefault?: boolean | null | undefined;
|
|
23092
|
+
thumbnailURL?: string | null | undefined;
|
|
23093
|
+
}>, "many">;
|
|
23094
|
+
usesBrands: z.ZodBoolean;
|
|
23095
|
+
usesThemes: z.ZodBoolean;
|
|
23096
|
+
source: z.ZodEnum<["git", "upload"]>;
|
|
23097
|
+
gitUrl: z.ZodOptional<z.ZodString>;
|
|
23098
|
+
gitBranch: z.ZodOptional<z.ZodString>;
|
|
23099
|
+
gitDirectory: z.ZodOptional<z.ZodString>;
|
|
23100
|
+
}, "strip", z.ZodTypeAny, {
|
|
23101
|
+
id: string;
|
|
23102
|
+
source: "upload" | "git";
|
|
23103
|
+
name: string;
|
|
23104
|
+
isPrivate: boolean;
|
|
23105
|
+
exporterType: "code" | "documentation";
|
|
23106
|
+
isDefaultDocumentationExporter: boolean;
|
|
23107
|
+
configurationProperties: {
|
|
23108
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23109
|
+
category: string;
|
|
23110
|
+
key: string;
|
|
23111
|
+
label: string;
|
|
23112
|
+
values?: string[] | null | undefined;
|
|
23113
|
+
description?: string | null | undefined;
|
|
23114
|
+
default?: string | number | boolean | null | undefined;
|
|
23115
|
+
inputType?: "code" | "plain" | undefined;
|
|
23116
|
+
isMultiline?: boolean | null | undefined;
|
|
23117
|
+
}[];
|
|
23118
|
+
customBlocks: {
|
|
23119
|
+
properties: {
|
|
23120
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23121
|
+
key: string;
|
|
23122
|
+
label: string;
|
|
23123
|
+
values?: string[] | null | undefined;
|
|
23124
|
+
description?: string | null | undefined;
|
|
23125
|
+
default?: string | number | boolean | null | undefined;
|
|
23126
|
+
inputType?: "code" | "plain" | undefined;
|
|
23127
|
+
isMultiline?: boolean | null | undefined;
|
|
23128
|
+
}[];
|
|
23129
|
+
key: string;
|
|
23130
|
+
description?: string | undefined;
|
|
23131
|
+
category?: string | undefined;
|
|
23132
|
+
title?: string | undefined;
|
|
23133
|
+
iconURL?: string | undefined;
|
|
23134
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
23135
|
+
}[];
|
|
23136
|
+
blockVariants: {
|
|
23137
|
+
name: string;
|
|
23138
|
+
key: string;
|
|
23139
|
+
description?: string | undefined;
|
|
23140
|
+
isDefault?: boolean | undefined;
|
|
23141
|
+
thumbnailURL?: string | undefined;
|
|
23142
|
+
}[];
|
|
23143
|
+
usesBrands: boolean;
|
|
23144
|
+
usesThemes: boolean;
|
|
23145
|
+
iconURL?: string | undefined;
|
|
23146
|
+
gitUrl?: string | undefined;
|
|
23147
|
+
gitBranch?: string | undefined;
|
|
23148
|
+
gitDirectory?: string | undefined;
|
|
23149
|
+
}, {
|
|
23150
|
+
id: string;
|
|
23151
|
+
source: "upload" | "git";
|
|
23152
|
+
name: string;
|
|
23153
|
+
isPrivate: boolean;
|
|
23154
|
+
exporterType: "code" | "documentation";
|
|
23155
|
+
isDefaultDocumentationExporter: boolean;
|
|
23156
|
+
configurationProperties: {
|
|
23157
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23158
|
+
category: string;
|
|
23159
|
+
key: string;
|
|
23160
|
+
label: string;
|
|
23161
|
+
values?: string[] | null | undefined;
|
|
23162
|
+
description?: string | null | undefined;
|
|
23163
|
+
default?: string | number | boolean | null | undefined;
|
|
23164
|
+
inputType?: "code" | "plain" | undefined;
|
|
23165
|
+
isMultiline?: boolean | null | undefined;
|
|
23166
|
+
}[];
|
|
23167
|
+
customBlocks: {
|
|
23168
|
+
key: string;
|
|
23169
|
+
description?: string | null | undefined;
|
|
23170
|
+
category?: string | null | undefined;
|
|
23171
|
+
properties?: {
|
|
23172
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23173
|
+
key: string;
|
|
23174
|
+
label: string;
|
|
23175
|
+
values?: string[] | null | undefined;
|
|
23176
|
+
description?: string | null | undefined;
|
|
23177
|
+
default?: string | number | boolean | null | undefined;
|
|
23178
|
+
inputType?: "code" | "plain" | undefined;
|
|
23179
|
+
isMultiline?: boolean | null | undefined;
|
|
23180
|
+
}[] | null | undefined;
|
|
23181
|
+
title?: string | null | undefined;
|
|
23182
|
+
iconURL?: string | null | undefined;
|
|
23183
|
+
mode?: "array" | "block" | null | undefined;
|
|
23184
|
+
}[];
|
|
23185
|
+
blockVariants: {
|
|
23186
|
+
name: string;
|
|
23187
|
+
key: string;
|
|
23188
|
+
description?: string | null | undefined;
|
|
23189
|
+
isDefault?: boolean | null | undefined;
|
|
23190
|
+
thumbnailURL?: string | null | undefined;
|
|
23191
|
+
}[];
|
|
23192
|
+
usesBrands: boolean;
|
|
23193
|
+
usesThemes: boolean;
|
|
23194
|
+
iconURL?: string | undefined;
|
|
23195
|
+
gitUrl?: string | undefined;
|
|
23196
|
+
gitBranch?: string | undefined;
|
|
23197
|
+
gitDirectory?: string | undefined;
|
|
23198
|
+
}>;
|
|
23199
|
+
type DTOExporter = z.infer<typeof DTOExporter>;
|
|
23200
|
+
declare const DTOExporterMembership: z.ZodObject<{
|
|
23201
|
+
workspaceId: z.ZodString;
|
|
23202
|
+
exporterId: z.ZodString;
|
|
23203
|
+
role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
23204
|
+
}, "strip", z.ZodTypeAny, {
|
|
23205
|
+
workspaceId: string;
|
|
23206
|
+
exporterId: string;
|
|
23207
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
23208
|
+
}, {
|
|
23209
|
+
workspaceId: string;
|
|
23210
|
+
exporterId: string;
|
|
23211
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
23212
|
+
}>;
|
|
23213
|
+
type DTOExporterMembership = z.infer<typeof DTOExporterMembership>;
|
|
23214
|
+
declare const DTOExporterCreateOutput: z.ZodObject<{
|
|
23215
|
+
exporter: z.ZodObject<{
|
|
23216
|
+
id: z.ZodString;
|
|
23217
|
+
name: z.ZodString;
|
|
23218
|
+
isPrivate: z.ZodBoolean;
|
|
23219
|
+
exporterType: z.ZodEnum<["documentation", "code"]>;
|
|
23220
|
+
isDefaultDocumentationExporter: z.ZodBoolean;
|
|
23221
|
+
iconURL: z.ZodOptional<z.ZodString>;
|
|
23222
|
+
configurationProperties: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
23223
|
+
label: z.ZodString;
|
|
23224
|
+
key: z.ZodString;
|
|
23225
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23226
|
+
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
23227
|
+
values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
23228
|
+
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
23229
|
+
inputType: z.ZodOptional<z.ZodEnum<["code", "plain"]>>;
|
|
23230
|
+
isMultiline: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
23231
|
+
}, {
|
|
23232
|
+
category: z.ZodString;
|
|
23233
|
+
}>, "strip", z.ZodTypeAny, {
|
|
23234
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23235
|
+
category: string;
|
|
23236
|
+
key: string;
|
|
23237
|
+
label: string;
|
|
23238
|
+
values?: string[] | null | undefined;
|
|
23239
|
+
description?: string | null | undefined;
|
|
23240
|
+
default?: string | number | boolean | null | undefined;
|
|
23241
|
+
inputType?: "code" | "plain" | undefined;
|
|
23242
|
+
isMultiline?: boolean | null | undefined;
|
|
23243
|
+
}, {
|
|
23244
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23245
|
+
category: string;
|
|
23246
|
+
key: string;
|
|
23247
|
+
label: string;
|
|
23248
|
+
values?: string[] | null | undefined;
|
|
23249
|
+
description?: string | null | undefined;
|
|
23250
|
+
default?: string | number | boolean | null | undefined;
|
|
23251
|
+
inputType?: "code" | "plain" | undefined;
|
|
23252
|
+
isMultiline?: boolean | null | undefined;
|
|
23253
|
+
}>, "many">;
|
|
23254
|
+
customBlocks: z.ZodArray<z.ZodObject<{
|
|
23255
|
+
title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23256
|
+
key: z.ZodString;
|
|
23257
|
+
category: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23258
|
+
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23259
|
+
iconURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23260
|
+
mode: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"array" | "block", z.ZodTypeDef, "array" | "block">>>, NonNullable<"array" | "block"> | undefined, "array" | "block" | null | undefined>;
|
|
23261
|
+
properties: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
23262
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23263
|
+
key: string;
|
|
23264
|
+
label: string;
|
|
23265
|
+
values?: string[] | null | undefined;
|
|
23266
|
+
description?: string | null | undefined;
|
|
23267
|
+
default?: string | number | boolean | null | undefined;
|
|
23268
|
+
inputType?: "code" | "plain" | undefined;
|
|
23269
|
+
isMultiline?: boolean | null | undefined;
|
|
23270
|
+
}[], z.ZodTypeDef, {
|
|
23271
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23272
|
+
key: string;
|
|
23273
|
+
label: string;
|
|
23274
|
+
values?: string[] | null | undefined;
|
|
23275
|
+
description?: string | null | undefined;
|
|
23276
|
+
default?: string | number | boolean | null | undefined;
|
|
23277
|
+
inputType?: "code" | "plain" | undefined;
|
|
23278
|
+
isMultiline?: boolean | null | undefined;
|
|
23279
|
+
}[]>>>, {
|
|
23280
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23281
|
+
key: string;
|
|
23282
|
+
label: string;
|
|
23283
|
+
values?: string[] | null | undefined;
|
|
23284
|
+
description?: string | null | undefined;
|
|
23285
|
+
default?: string | number | boolean | null | undefined;
|
|
23286
|
+
inputType?: "code" | "plain" | undefined;
|
|
23287
|
+
isMultiline?: boolean | null | undefined;
|
|
23288
|
+
}[] | undefined, {
|
|
23289
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23290
|
+
key: string;
|
|
23291
|
+
label: string;
|
|
23292
|
+
values?: string[] | null | undefined;
|
|
23293
|
+
description?: string | null | undefined;
|
|
23294
|
+
default?: string | number | boolean | null | undefined;
|
|
23295
|
+
inputType?: "code" | "plain" | undefined;
|
|
23296
|
+
isMultiline?: boolean | null | undefined;
|
|
23297
|
+
}[] | null | undefined>, {
|
|
23298
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23299
|
+
key: string;
|
|
23300
|
+
label: string;
|
|
23301
|
+
values?: string[] | null | undefined;
|
|
23302
|
+
description?: string | null | undefined;
|
|
23303
|
+
default?: string | number | boolean | null | undefined;
|
|
23304
|
+
inputType?: "code" | "plain" | undefined;
|
|
23305
|
+
isMultiline?: boolean | null | undefined;
|
|
23306
|
+
}[], {
|
|
23307
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23308
|
+
key: string;
|
|
23309
|
+
label: string;
|
|
23310
|
+
values?: string[] | null | undefined;
|
|
23311
|
+
description?: string | null | undefined;
|
|
23312
|
+
default?: string | number | boolean | null | undefined;
|
|
23313
|
+
inputType?: "code" | "plain" | undefined;
|
|
23314
|
+
isMultiline?: boolean | null | undefined;
|
|
23315
|
+
}[] | null | undefined>;
|
|
23316
|
+
}, "strip", z.ZodTypeAny, {
|
|
23317
|
+
properties: {
|
|
23318
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23319
|
+
key: string;
|
|
23320
|
+
label: string;
|
|
23321
|
+
values?: string[] | null | undefined;
|
|
23322
|
+
description?: string | null | undefined;
|
|
23323
|
+
default?: string | number | boolean | null | undefined;
|
|
23324
|
+
inputType?: "code" | "plain" | undefined;
|
|
23325
|
+
isMultiline?: boolean | null | undefined;
|
|
23326
|
+
}[];
|
|
23327
|
+
key: string;
|
|
23328
|
+
description?: string | undefined;
|
|
23329
|
+
category?: string | undefined;
|
|
23330
|
+
title?: string | undefined;
|
|
23331
|
+
iconURL?: string | undefined;
|
|
23332
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
23333
|
+
}, {
|
|
23334
|
+
key: string;
|
|
23335
|
+
description?: string | null | undefined;
|
|
23336
|
+
category?: string | null | undefined;
|
|
23337
|
+
properties?: {
|
|
23338
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23339
|
+
key: string;
|
|
23340
|
+
label: string;
|
|
23341
|
+
values?: string[] | null | undefined;
|
|
23342
|
+
description?: string | null | undefined;
|
|
23343
|
+
default?: string | number | boolean | null | undefined;
|
|
23344
|
+
inputType?: "code" | "plain" | undefined;
|
|
23345
|
+
isMultiline?: boolean | null | undefined;
|
|
23346
|
+
}[] | null | undefined;
|
|
23347
|
+
title?: string | null | undefined;
|
|
23348
|
+
iconURL?: string | null | undefined;
|
|
23349
|
+
mode?: "array" | "block" | null | undefined;
|
|
23350
|
+
}>, "many">;
|
|
23351
|
+
blockVariants: z.ZodArray<z.ZodObject<{
|
|
23352
|
+
key: z.ZodString;
|
|
23353
|
+
name: z.ZodString;
|
|
23354
|
+
isDefault: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
23355
|
+
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23356
|
+
thumbnailURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
23357
|
+
}, "strip", z.ZodTypeAny, {
|
|
23358
|
+
name: string;
|
|
23359
|
+
key: string;
|
|
23360
|
+
description?: string | undefined;
|
|
23361
|
+
isDefault?: boolean | undefined;
|
|
23362
|
+
thumbnailURL?: string | undefined;
|
|
23363
|
+
}, {
|
|
23364
|
+
name: string;
|
|
23365
|
+
key: string;
|
|
23366
|
+
description?: string | null | undefined;
|
|
23367
|
+
isDefault?: boolean | null | undefined;
|
|
23368
|
+
thumbnailURL?: string | null | undefined;
|
|
23369
|
+
}>, "many">;
|
|
23370
|
+
usesBrands: z.ZodBoolean;
|
|
23371
|
+
usesThemes: z.ZodBoolean;
|
|
23372
|
+
source: z.ZodEnum<["git", "upload"]>;
|
|
23373
|
+
gitUrl: z.ZodOptional<z.ZodString>;
|
|
23374
|
+
gitBranch: z.ZodOptional<z.ZodString>;
|
|
23375
|
+
gitDirectory: z.ZodOptional<z.ZodString>;
|
|
23376
|
+
}, "strip", z.ZodTypeAny, {
|
|
23377
|
+
id: string;
|
|
23378
|
+
source: "upload" | "git";
|
|
23379
|
+
name: string;
|
|
23380
|
+
isPrivate: boolean;
|
|
23381
|
+
exporterType: "code" | "documentation";
|
|
23382
|
+
isDefaultDocumentationExporter: boolean;
|
|
23383
|
+
configurationProperties: {
|
|
23384
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23385
|
+
category: string;
|
|
23386
|
+
key: string;
|
|
23387
|
+
label: string;
|
|
23388
|
+
values?: string[] | null | undefined;
|
|
23389
|
+
description?: string | null | undefined;
|
|
23390
|
+
default?: string | number | boolean | null | undefined;
|
|
23391
|
+
inputType?: "code" | "plain" | undefined;
|
|
23392
|
+
isMultiline?: boolean | null | undefined;
|
|
23393
|
+
}[];
|
|
23394
|
+
customBlocks: {
|
|
23395
|
+
properties: {
|
|
23396
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23397
|
+
key: string;
|
|
23398
|
+
label: string;
|
|
23399
|
+
values?: string[] | null | undefined;
|
|
23400
|
+
description?: string | null | undefined;
|
|
23401
|
+
default?: string | number | boolean | null | undefined;
|
|
23402
|
+
inputType?: "code" | "plain" | undefined;
|
|
23403
|
+
isMultiline?: boolean | null | undefined;
|
|
23404
|
+
}[];
|
|
23405
|
+
key: string;
|
|
23406
|
+
description?: string | undefined;
|
|
23407
|
+
category?: string | undefined;
|
|
23408
|
+
title?: string | undefined;
|
|
23409
|
+
iconURL?: string | undefined;
|
|
23410
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
23411
|
+
}[];
|
|
23412
|
+
blockVariants: {
|
|
23413
|
+
name: string;
|
|
23414
|
+
key: string;
|
|
23415
|
+
description?: string | undefined;
|
|
23416
|
+
isDefault?: boolean | undefined;
|
|
23417
|
+
thumbnailURL?: string | undefined;
|
|
23418
|
+
}[];
|
|
23419
|
+
usesBrands: boolean;
|
|
23420
|
+
usesThemes: boolean;
|
|
23421
|
+
iconURL?: string | undefined;
|
|
23422
|
+
gitUrl?: string | undefined;
|
|
23423
|
+
gitBranch?: string | undefined;
|
|
23424
|
+
gitDirectory?: string | undefined;
|
|
23425
|
+
}, {
|
|
23426
|
+
id: string;
|
|
23427
|
+
source: "upload" | "git";
|
|
23428
|
+
name: string;
|
|
23429
|
+
isPrivate: boolean;
|
|
23430
|
+
exporterType: "code" | "documentation";
|
|
23431
|
+
isDefaultDocumentationExporter: boolean;
|
|
23432
|
+
configurationProperties: {
|
|
23433
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23434
|
+
category: string;
|
|
23435
|
+
key: string;
|
|
23436
|
+
label: string;
|
|
23437
|
+
values?: string[] | null | undefined;
|
|
23438
|
+
description?: string | null | undefined;
|
|
23439
|
+
default?: string | number | boolean | null | undefined;
|
|
23440
|
+
inputType?: "code" | "plain" | undefined;
|
|
23441
|
+
isMultiline?: boolean | null | undefined;
|
|
23442
|
+
}[];
|
|
23443
|
+
customBlocks: {
|
|
23444
|
+
key: string;
|
|
23445
|
+
description?: string | null | undefined;
|
|
23446
|
+
category?: string | null | undefined;
|
|
23447
|
+
properties?: {
|
|
23448
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23449
|
+
key: string;
|
|
23450
|
+
label: string;
|
|
23451
|
+
values?: string[] | null | undefined;
|
|
23452
|
+
description?: string | null | undefined;
|
|
23453
|
+
default?: string | number | boolean | null | undefined;
|
|
23454
|
+
inputType?: "code" | "plain" | undefined;
|
|
23455
|
+
isMultiline?: boolean | null | undefined;
|
|
23456
|
+
}[] | null | undefined;
|
|
23457
|
+
title?: string | null | undefined;
|
|
23458
|
+
iconURL?: string | null | undefined;
|
|
23459
|
+
mode?: "array" | "block" | null | undefined;
|
|
23460
|
+
}[];
|
|
23461
|
+
blockVariants: {
|
|
23462
|
+
name: string;
|
|
23463
|
+
key: string;
|
|
23464
|
+
description?: string | null | undefined;
|
|
23465
|
+
isDefault?: boolean | null | undefined;
|
|
23466
|
+
thumbnailURL?: string | null | undefined;
|
|
23467
|
+
}[];
|
|
23468
|
+
usesBrands: boolean;
|
|
23469
|
+
usesThemes: boolean;
|
|
23470
|
+
iconURL?: string | undefined;
|
|
23471
|
+
gitUrl?: string | undefined;
|
|
23472
|
+
gitBranch?: string | undefined;
|
|
23473
|
+
gitDirectory?: string | undefined;
|
|
23474
|
+
}>;
|
|
23475
|
+
membership: z.ZodObject<{
|
|
23476
|
+
workspaceId: z.ZodString;
|
|
23477
|
+
exporterId: z.ZodString;
|
|
23478
|
+
role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
23479
|
+
}, "strip", z.ZodTypeAny, {
|
|
23480
|
+
workspaceId: string;
|
|
23481
|
+
exporterId: string;
|
|
23482
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
23483
|
+
}, {
|
|
23484
|
+
workspaceId: string;
|
|
23485
|
+
exporterId: string;
|
|
23486
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
23487
|
+
}>;
|
|
23488
|
+
}, "strip", z.ZodTypeAny, {
|
|
23489
|
+
exporter: {
|
|
23490
|
+
id: string;
|
|
23491
|
+
source: "upload" | "git";
|
|
23492
|
+
name: string;
|
|
23493
|
+
isPrivate: boolean;
|
|
23494
|
+
exporterType: "code" | "documentation";
|
|
23495
|
+
isDefaultDocumentationExporter: boolean;
|
|
23496
|
+
configurationProperties: {
|
|
23497
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23498
|
+
category: string;
|
|
23499
|
+
key: string;
|
|
23500
|
+
label: string;
|
|
23501
|
+
values?: string[] | null | undefined;
|
|
23502
|
+
description?: string | null | undefined;
|
|
23503
|
+
default?: string | number | boolean | null | undefined;
|
|
23504
|
+
inputType?: "code" | "plain" | undefined;
|
|
23505
|
+
isMultiline?: boolean | null | undefined;
|
|
23506
|
+
}[];
|
|
23507
|
+
customBlocks: {
|
|
23508
|
+
properties: {
|
|
23509
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23510
|
+
key: string;
|
|
23511
|
+
label: string;
|
|
23512
|
+
values?: string[] | null | undefined;
|
|
23513
|
+
description?: string | null | undefined;
|
|
23514
|
+
default?: string | number | boolean | null | undefined;
|
|
23515
|
+
inputType?: "code" | "plain" | undefined;
|
|
23516
|
+
isMultiline?: boolean | null | undefined;
|
|
23517
|
+
}[];
|
|
23518
|
+
key: string;
|
|
23519
|
+
description?: string | undefined;
|
|
23520
|
+
category?: string | undefined;
|
|
23521
|
+
title?: string | undefined;
|
|
23522
|
+
iconURL?: string | undefined;
|
|
23523
|
+
mode?: NonNullable<"array" | "block"> | undefined;
|
|
23524
|
+
}[];
|
|
23525
|
+
blockVariants: {
|
|
23526
|
+
name: string;
|
|
23527
|
+
key: string;
|
|
23528
|
+
description?: string | undefined;
|
|
23529
|
+
isDefault?: boolean | undefined;
|
|
23530
|
+
thumbnailURL?: string | undefined;
|
|
23531
|
+
}[];
|
|
23532
|
+
usesBrands: boolean;
|
|
23533
|
+
usesThemes: boolean;
|
|
23534
|
+
iconURL?: string | undefined;
|
|
23535
|
+
gitUrl?: string | undefined;
|
|
23536
|
+
gitBranch?: string | undefined;
|
|
23537
|
+
gitDirectory?: string | undefined;
|
|
23538
|
+
};
|
|
23539
|
+
membership: {
|
|
23540
|
+
workspaceId: string;
|
|
23541
|
+
exporterId: string;
|
|
23542
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
23543
|
+
};
|
|
23544
|
+
}, {
|
|
23545
|
+
exporter: {
|
|
23546
|
+
id: string;
|
|
23547
|
+
source: "upload" | "git";
|
|
23548
|
+
name: string;
|
|
23549
|
+
isPrivate: boolean;
|
|
23550
|
+
exporterType: "code" | "documentation";
|
|
23551
|
+
isDefaultDocumentationExporter: boolean;
|
|
23552
|
+
configurationProperties: {
|
|
23553
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23554
|
+
category: string;
|
|
23555
|
+
key: string;
|
|
23556
|
+
label: string;
|
|
23557
|
+
values?: string[] | null | undefined;
|
|
23558
|
+
description?: string | null | undefined;
|
|
23559
|
+
default?: string | number | boolean | null | undefined;
|
|
23560
|
+
inputType?: "code" | "plain" | undefined;
|
|
23561
|
+
isMultiline?: boolean | null | undefined;
|
|
23562
|
+
}[];
|
|
23563
|
+
customBlocks: {
|
|
23564
|
+
key: string;
|
|
23565
|
+
description?: string | null | undefined;
|
|
23566
|
+
category?: string | null | undefined;
|
|
23567
|
+
properties?: {
|
|
23568
|
+
type: "string" | "number" | "boolean" | "color" | "image" | "typography" | "enum" | "component" | "componentProperties" | "tokenProperties" | "tokenType";
|
|
23569
|
+
key: string;
|
|
23570
|
+
label: string;
|
|
23571
|
+
values?: string[] | null | undefined;
|
|
23572
|
+
description?: string | null | undefined;
|
|
23573
|
+
default?: string | number | boolean | null | undefined;
|
|
23574
|
+
inputType?: "code" | "plain" | undefined;
|
|
23575
|
+
isMultiline?: boolean | null | undefined;
|
|
23576
|
+
}[] | null | undefined;
|
|
23577
|
+
title?: string | null | undefined;
|
|
23578
|
+
iconURL?: string | null | undefined;
|
|
23579
|
+
mode?: "array" | "block" | null | undefined;
|
|
23580
|
+
}[];
|
|
23581
|
+
blockVariants: {
|
|
23582
|
+
name: string;
|
|
23583
|
+
key: string;
|
|
23584
|
+
description?: string | null | undefined;
|
|
23585
|
+
isDefault?: boolean | null | undefined;
|
|
23586
|
+
thumbnailURL?: string | null | undefined;
|
|
23587
|
+
}[];
|
|
23588
|
+
usesBrands: boolean;
|
|
23589
|
+
usesThemes: boolean;
|
|
23590
|
+
iconURL?: string | undefined;
|
|
23591
|
+
gitUrl?: string | undefined;
|
|
23592
|
+
gitBranch?: string | undefined;
|
|
23593
|
+
gitDirectory?: string | undefined;
|
|
23594
|
+
};
|
|
23595
|
+
membership: {
|
|
23596
|
+
workspaceId: string;
|
|
23597
|
+
exporterId: string;
|
|
23598
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
23599
|
+
};
|
|
23600
|
+
}>;
|
|
23601
|
+
type DTOExporterCreateOutput = z.infer<typeof DTOExporterCreateOutput>;
|
|
23602
|
+
declare const DTOExporterGitProviderEnum: z.ZodEnum<["github", "gitlab", "bitbucket", "azure"]>;
|
|
23603
|
+
type DTOExporterGitProviderEnum = z.infer<typeof DTOExporterGitProviderEnum>;
|
|
23604
|
+
declare const DTOExporterCreateInput: z.ZodObject<{
|
|
23605
|
+
url: z.ZodString;
|
|
23606
|
+
provider: z.ZodOptional<z.ZodEnum<["github", "gitlab", "bitbucket", "azure"]>>;
|
|
23607
|
+
}, "strip", z.ZodTypeAny, {
|
|
23608
|
+
url: string;
|
|
23609
|
+
provider?: "github" | "gitlab" | "bitbucket" | "azure" | undefined;
|
|
23610
|
+
}, {
|
|
23611
|
+
url: string;
|
|
23612
|
+
provider?: "github" | "gitlab" | "bitbucket" | "azure" | undefined;
|
|
23613
|
+
}>;
|
|
23614
|
+
type DTOExporterCreateInput = z.infer<typeof DTOExporterCreateInput>;
|
|
23615
|
+
|
|
22933
23616
|
declare const DTOExportJobCreatedBy: z.ZodObject<{
|
|
22934
23617
|
userId: z.ZodString;
|
|
22935
23618
|
userName: z.ZodString;
|
|
@@ -23089,14 +23772,21 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
23089
23772
|
}>>;
|
|
23090
23773
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
23091
23774
|
}, "strip", z.ZodTypeAny, {
|
|
23092
|
-
|
|
23093
|
-
|
|
23775
|
+
documentation?: {
|
|
23776
|
+
environment: "Live" | "Preview";
|
|
23777
|
+
} | undefined;
|
|
23778
|
+
github?: {
|
|
23779
|
+
url: string;
|
|
23780
|
+
userId: string;
|
|
23781
|
+
branch: string;
|
|
23782
|
+
connectionId: string;
|
|
23783
|
+
relativePath: string;
|
|
23784
|
+
} | undefined;
|
|
23785
|
+
gitlab?: {
|
|
23094
23786
|
branch: string;
|
|
23095
23787
|
connectionId: string;
|
|
23096
23788
|
relativePath: string;
|
|
23097
|
-
organizationId: string;
|
|
23098
23789
|
projectId: string;
|
|
23099
|
-
repositoryId: string;
|
|
23100
23790
|
} | undefined;
|
|
23101
23791
|
bitbucket?: {
|
|
23102
23792
|
branch: string;
|
|
@@ -23106,32 +23796,32 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
23106
23796
|
projectKey: string;
|
|
23107
23797
|
repoSlug: string;
|
|
23108
23798
|
} | undefined;
|
|
23109
|
-
|
|
23110
|
-
url: string;
|
|
23111
|
-
userId: string;
|
|
23112
|
-
branch: string;
|
|
23113
|
-
connectionId: string;
|
|
23114
|
-
relativePath: string;
|
|
23115
|
-
} | undefined;
|
|
23116
|
-
gitlab?: {
|
|
23799
|
+
azure?: {
|
|
23117
23800
|
branch: string;
|
|
23118
23801
|
connectionId: string;
|
|
23119
23802
|
relativePath: string;
|
|
23803
|
+
organizationId: string;
|
|
23120
23804
|
projectId: string;
|
|
23805
|
+
repositoryId: string;
|
|
23121
23806
|
} | undefined;
|
|
23807
|
+
s3?: {} | undefined;
|
|
23808
|
+
webhookUrl?: string | undefined;
|
|
23809
|
+
}, {
|
|
23122
23810
|
documentation?: {
|
|
23123
23811
|
environment: "Live" | "Preview";
|
|
23124
23812
|
} | undefined;
|
|
23125
|
-
|
|
23126
|
-
|
|
23127
|
-
|
|
23128
|
-
|
|
23813
|
+
github?: {
|
|
23814
|
+
url: string;
|
|
23815
|
+
userId: string;
|
|
23816
|
+
branch: string;
|
|
23817
|
+
connectionId: string;
|
|
23818
|
+
relativePath: string;
|
|
23819
|
+
} | undefined;
|
|
23820
|
+
gitlab?: {
|
|
23129
23821
|
branch: string;
|
|
23130
23822
|
connectionId: string;
|
|
23131
23823
|
relativePath: string;
|
|
23132
|
-
organizationId: string;
|
|
23133
23824
|
projectId: string;
|
|
23134
|
-
repositoryId: string;
|
|
23135
23825
|
} | undefined;
|
|
23136
23826
|
bitbucket?: {
|
|
23137
23827
|
branch: string;
|
|
@@ -23141,22 +23831,15 @@ declare const DTOExportJobDestinations: z.ZodObject<{
|
|
|
23141
23831
|
projectKey: string;
|
|
23142
23832
|
repoSlug: string;
|
|
23143
23833
|
} | undefined;
|
|
23144
|
-
|
|
23145
|
-
url: string;
|
|
23146
|
-
userId: string;
|
|
23147
|
-
branch: string;
|
|
23148
|
-
connectionId: string;
|
|
23149
|
-
relativePath: string;
|
|
23150
|
-
} | undefined;
|
|
23151
|
-
gitlab?: {
|
|
23834
|
+
azure?: {
|
|
23152
23835
|
branch: string;
|
|
23153
23836
|
connectionId: string;
|
|
23154
23837
|
relativePath: string;
|
|
23838
|
+
organizationId: string;
|
|
23155
23839
|
projectId: string;
|
|
23840
|
+
repositoryId: string;
|
|
23156
23841
|
} | undefined;
|
|
23157
|
-
|
|
23158
|
-
environment: "Live" | "Preview";
|
|
23159
|
-
} | undefined;
|
|
23842
|
+
s3?: {} | undefined;
|
|
23160
23843
|
webhookUrl?: string | undefined;
|
|
23161
23844
|
}>;
|
|
23162
23845
|
type DTOExportJobDestinations = z.infer<typeof DTOExportJobDestinations>;
|
|
@@ -23323,14 +24006,21 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23323
24006
|
}>>;
|
|
23324
24007
|
webhookUrl: z.ZodOptional<z.ZodString>;
|
|
23325
24008
|
}, "strip", z.ZodTypeAny, {
|
|
23326
|
-
|
|
23327
|
-
|
|
24009
|
+
documentation?: {
|
|
24010
|
+
environment: "Live" | "Preview";
|
|
24011
|
+
} | undefined;
|
|
24012
|
+
github?: {
|
|
24013
|
+
url: string;
|
|
24014
|
+
userId: string;
|
|
24015
|
+
branch: string;
|
|
24016
|
+
connectionId: string;
|
|
24017
|
+
relativePath: string;
|
|
24018
|
+
} | undefined;
|
|
24019
|
+
gitlab?: {
|
|
23328
24020
|
branch: string;
|
|
23329
24021
|
connectionId: string;
|
|
23330
24022
|
relativePath: string;
|
|
23331
|
-
organizationId: string;
|
|
23332
24023
|
projectId: string;
|
|
23333
|
-
repositoryId: string;
|
|
23334
24024
|
} | undefined;
|
|
23335
24025
|
bitbucket?: {
|
|
23336
24026
|
branch: string;
|
|
@@ -23340,32 +24030,32 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23340
24030
|
projectKey: string;
|
|
23341
24031
|
repoSlug: string;
|
|
23342
24032
|
} | undefined;
|
|
23343
|
-
|
|
23344
|
-
url: string;
|
|
23345
|
-
userId: string;
|
|
23346
|
-
branch: string;
|
|
23347
|
-
connectionId: string;
|
|
23348
|
-
relativePath: string;
|
|
23349
|
-
} | undefined;
|
|
23350
|
-
gitlab?: {
|
|
24033
|
+
azure?: {
|
|
23351
24034
|
branch: string;
|
|
23352
24035
|
connectionId: string;
|
|
23353
24036
|
relativePath: string;
|
|
24037
|
+
organizationId: string;
|
|
23354
24038
|
projectId: string;
|
|
24039
|
+
repositoryId: string;
|
|
23355
24040
|
} | undefined;
|
|
24041
|
+
s3?: {} | undefined;
|
|
24042
|
+
webhookUrl?: string | undefined;
|
|
24043
|
+
}, {
|
|
23356
24044
|
documentation?: {
|
|
23357
24045
|
environment: "Live" | "Preview";
|
|
23358
24046
|
} | undefined;
|
|
23359
|
-
|
|
23360
|
-
|
|
23361
|
-
|
|
23362
|
-
|
|
24047
|
+
github?: {
|
|
24048
|
+
url: string;
|
|
24049
|
+
userId: string;
|
|
24050
|
+
branch: string;
|
|
24051
|
+
connectionId: string;
|
|
24052
|
+
relativePath: string;
|
|
24053
|
+
} | undefined;
|
|
24054
|
+
gitlab?: {
|
|
23363
24055
|
branch: string;
|
|
23364
24056
|
connectionId: string;
|
|
23365
24057
|
relativePath: string;
|
|
23366
|
-
organizationId: string;
|
|
23367
24058
|
projectId: string;
|
|
23368
|
-
repositoryId: string;
|
|
23369
24059
|
} | undefined;
|
|
23370
24060
|
bitbucket?: {
|
|
23371
24061
|
branch: string;
|
|
@@ -23375,22 +24065,15 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23375
24065
|
projectKey: string;
|
|
23376
24066
|
repoSlug: string;
|
|
23377
24067
|
} | undefined;
|
|
23378
|
-
|
|
23379
|
-
url: string;
|
|
23380
|
-
userId: string;
|
|
23381
|
-
branch: string;
|
|
23382
|
-
connectionId: string;
|
|
23383
|
-
relativePath: string;
|
|
23384
|
-
} | undefined;
|
|
23385
|
-
gitlab?: {
|
|
24068
|
+
azure?: {
|
|
23386
24069
|
branch: string;
|
|
23387
24070
|
connectionId: string;
|
|
23388
24071
|
relativePath: string;
|
|
24072
|
+
organizationId: string;
|
|
23389
24073
|
projectId: string;
|
|
24074
|
+
repositoryId: string;
|
|
23390
24075
|
} | undefined;
|
|
23391
|
-
|
|
23392
|
-
environment: "Live" | "Preview";
|
|
23393
|
-
} | undefined;
|
|
24076
|
+
s3?: {} | undefined;
|
|
23394
24077
|
webhookUrl?: string | undefined;
|
|
23395
24078
|
}>;
|
|
23396
24079
|
exporterId: z.ZodString;
|
|
@@ -23508,6 +24191,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23508
24191
|
version: string;
|
|
23509
24192
|
isReadonly: boolean;
|
|
23510
24193
|
};
|
|
24194
|
+
exporterId: string;
|
|
23511
24195
|
createdBy: {
|
|
23512
24196
|
userId: string;
|
|
23513
24197
|
userName: string;
|
|
@@ -23520,14 +24204,21 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23520
24204
|
};
|
|
23521
24205
|
};
|
|
23522
24206
|
destinations: {
|
|
23523
|
-
|
|
23524
|
-
|
|
24207
|
+
documentation?: {
|
|
24208
|
+
environment: "Live" | "Preview";
|
|
24209
|
+
} | undefined;
|
|
24210
|
+
github?: {
|
|
24211
|
+
url: string;
|
|
24212
|
+
userId: string;
|
|
24213
|
+
branch: string;
|
|
24214
|
+
connectionId: string;
|
|
24215
|
+
relativePath: string;
|
|
24216
|
+
} | undefined;
|
|
24217
|
+
gitlab?: {
|
|
23525
24218
|
branch: string;
|
|
23526
24219
|
connectionId: string;
|
|
23527
24220
|
relativePath: string;
|
|
23528
|
-
organizationId: string;
|
|
23529
24221
|
projectId: string;
|
|
23530
|
-
repositoryId: string;
|
|
23531
24222
|
} | undefined;
|
|
23532
24223
|
bitbucket?: {
|
|
23533
24224
|
branch: string;
|
|
@@ -23537,25 +24228,17 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23537
24228
|
projectKey: string;
|
|
23538
24229
|
repoSlug: string;
|
|
23539
24230
|
} | undefined;
|
|
23540
|
-
|
|
23541
|
-
url: string;
|
|
23542
|
-
userId: string;
|
|
23543
|
-
branch: string;
|
|
23544
|
-
connectionId: string;
|
|
23545
|
-
relativePath: string;
|
|
23546
|
-
} | undefined;
|
|
23547
|
-
gitlab?: {
|
|
24231
|
+
azure?: {
|
|
23548
24232
|
branch: string;
|
|
23549
24233
|
connectionId: string;
|
|
23550
24234
|
relativePath: string;
|
|
24235
|
+
organizationId: string;
|
|
23551
24236
|
projectId: string;
|
|
24237
|
+
repositoryId: string;
|
|
23552
24238
|
} | undefined;
|
|
23553
|
-
|
|
23554
|
-
environment: "Live" | "Preview";
|
|
23555
|
-
} | undefined;
|
|
24239
|
+
s3?: {} | undefined;
|
|
23556
24240
|
webhookUrl?: string | undefined;
|
|
23557
24241
|
};
|
|
23558
|
-
exporterId: string;
|
|
23559
24242
|
scheduleId: string;
|
|
23560
24243
|
finishedAt?: Date | undefined;
|
|
23561
24244
|
index?: number | undefined;
|
|
@@ -23597,6 +24280,7 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23597
24280
|
version: string;
|
|
23598
24281
|
isReadonly: boolean;
|
|
23599
24282
|
};
|
|
24283
|
+
exporterId: string;
|
|
23600
24284
|
createdBy: {
|
|
23601
24285
|
userId: string;
|
|
23602
24286
|
userName: string;
|
|
@@ -23609,14 +24293,21 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23609
24293
|
};
|
|
23610
24294
|
};
|
|
23611
24295
|
destinations: {
|
|
23612
|
-
|
|
23613
|
-
|
|
24296
|
+
documentation?: {
|
|
24297
|
+
environment: "Live" | "Preview";
|
|
24298
|
+
} | undefined;
|
|
24299
|
+
github?: {
|
|
24300
|
+
url: string;
|
|
24301
|
+
userId: string;
|
|
24302
|
+
branch: string;
|
|
24303
|
+
connectionId: string;
|
|
24304
|
+
relativePath: string;
|
|
24305
|
+
} | undefined;
|
|
24306
|
+
gitlab?: {
|
|
23614
24307
|
branch: string;
|
|
23615
24308
|
connectionId: string;
|
|
23616
24309
|
relativePath: string;
|
|
23617
|
-
organizationId: string;
|
|
23618
24310
|
projectId: string;
|
|
23619
|
-
repositoryId: string;
|
|
23620
24311
|
} | undefined;
|
|
23621
24312
|
bitbucket?: {
|
|
23622
24313
|
branch: string;
|
|
@@ -23626,25 +24317,17 @@ declare const DTOExportJob: z.ZodObject<{
|
|
|
23626
24317
|
projectKey: string;
|
|
23627
24318
|
repoSlug: string;
|
|
23628
24319
|
} | undefined;
|
|
23629
|
-
|
|
23630
|
-
url: string;
|
|
23631
|
-
userId: string;
|
|
23632
|
-
branch: string;
|
|
23633
|
-
connectionId: string;
|
|
23634
|
-
relativePath: string;
|
|
23635
|
-
} | undefined;
|
|
23636
|
-
gitlab?: {
|
|
24320
|
+
azure?: {
|
|
23637
24321
|
branch: string;
|
|
23638
24322
|
connectionId: string;
|
|
23639
24323
|
relativePath: string;
|
|
24324
|
+
organizationId: string;
|
|
23640
24325
|
projectId: string;
|
|
24326
|
+
repositoryId: string;
|
|
23641
24327
|
} | undefined;
|
|
23642
|
-
|
|
23643
|
-
environment: "Live" | "Preview";
|
|
23644
|
-
} | undefined;
|
|
24328
|
+
s3?: {} | undefined;
|
|
23645
24329
|
webhookUrl?: string | undefined;
|
|
23646
24330
|
};
|
|
23647
|
-
exporterId: string;
|
|
23648
24331
|
scheduleId: string;
|
|
23649
24332
|
finishedAt?: Date | undefined;
|
|
23650
24333
|
index?: number | undefined;
|
|
@@ -26320,6 +27003,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
26320
27003
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
26321
27004
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
26322
27005
|
}, "strip", z.ZodTypeAny, {
|
|
27006
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
26323
27007
|
workspace: {
|
|
26324
27008
|
id: string;
|
|
26325
27009
|
profile: {
|
|
@@ -26485,9 +27169,9 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
26485
27169
|
password?: string | undefined;
|
|
26486
27170
|
} | undefined;
|
|
26487
27171
|
};
|
|
26488
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
26489
27172
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
26490
27173
|
}, {
|
|
27174
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
26491
27175
|
workspace: {
|
|
26492
27176
|
id: string;
|
|
26493
27177
|
profile: {
|
|
@@ -26653,7 +27337,6 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
26653
27337
|
password?: string | undefined;
|
|
26654
27338
|
} | undefined;
|
|
26655
27339
|
};
|
|
26656
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
26657
27340
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
26658
27341
|
}>;
|
|
26659
27342
|
type DTOUserWorkspaceMembership = z.infer<typeof DTOUserWorkspaceMembership>;
|
|
@@ -27867,6 +28550,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
27867
28550
|
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
27868
28551
|
effectiveRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing"]>;
|
|
27869
28552
|
}, "strip", z.ZodTypeAny, {
|
|
28553
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
27870
28554
|
workspace: {
|
|
27871
28555
|
id: string;
|
|
27872
28556
|
profile: {
|
|
@@ -28032,9 +28716,9 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
28032
28716
|
password?: string | undefined;
|
|
28033
28717
|
} | undefined;
|
|
28034
28718
|
};
|
|
28035
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28036
28719
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28037
28720
|
}, {
|
|
28721
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28038
28722
|
workspace: {
|
|
28039
28723
|
id: string;
|
|
28040
28724
|
profile: {
|
|
@@ -28200,11 +28884,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
28200
28884
|
password?: string | undefined;
|
|
28201
28885
|
} | undefined;
|
|
28202
28886
|
};
|
|
28203
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28204
28887
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28205
28888
|
}>, "many">;
|
|
28206
28889
|
}, "strip", z.ZodTypeAny, {
|
|
28207
28890
|
membership: {
|
|
28891
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28208
28892
|
workspace: {
|
|
28209
28893
|
id: string;
|
|
28210
28894
|
profile: {
|
|
@@ -28370,11 +29054,11 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
28370
29054
|
password?: string | undefined;
|
|
28371
29055
|
} | undefined;
|
|
28372
29056
|
};
|
|
28373
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28374
29057
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28375
29058
|
}[];
|
|
28376
29059
|
}, {
|
|
28377
29060
|
membership: {
|
|
29061
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28378
29062
|
workspace: {
|
|
28379
29063
|
id: string;
|
|
28380
29064
|
profile: {
|
|
@@ -28540,7 +29224,6 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
28540
29224
|
password?: string | undefined;
|
|
28541
29225
|
} | undefined;
|
|
28542
29226
|
};
|
|
28543
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28544
29227
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing";
|
|
28545
29228
|
}[];
|
|
28546
29229
|
}>;
|
|
@@ -33622,4 +34305,4 @@ declare const BlockDefinitionUtils: {
|
|
|
33622
34305
|
};
|
|
33623
34306
|
};
|
|
33624
34307
|
|
|
33625
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExporterProperty, DTOExporterPropertyListResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
34308
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV1, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, elementGroupsToDocumentationGroupStructureDTOV2, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|