@supernova-studio/client 0.36.0 → 0.36.1
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 +1140 -91
- package/dist/index.d.ts +1140 -91
- package/dist/index.js +278 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +896 -627
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/conversion/design-system/index.ts +1 -0
- package/src/api/conversion/design-system/version-to-dto.ts +17 -0
- package/src/api/conversion/design-systems/brand.ts +14 -0
- package/src/api/conversion/design-systems/elements/index.ts +1 -0
- package/src/api/conversion/design-systems/elements/properties/index.ts +2 -0
- package/src/api/conversion/design-systems/elements/properties/property-definition.ts +21 -0
- package/src/api/conversion/design-systems/elements/properties/property-value.ts +28 -0
- package/src/api/conversion/design-systems/index.ts +3 -0
- package/src/api/conversion/design-systems/view.ts +18 -0
- package/src/api/conversion/index.ts +2 -0
- package/src/api/dto/design-systems/brand.ts +17 -0
- package/src/api/dto/design-systems/index.ts +3 -0
- package/src/api/dto/design-systems/version.ts +24 -0
- package/src/api/dto/design-systems/view.ts +45 -0
- package/src/api/dto/elements/index.ts +1 -0
- package/src/api/dto/elements/properties/index.ts +2 -0
- package/src/api/dto/elements/properties/property-definitions.ts +27 -0
- package/src/api/dto/elements/properties/property-values.ts +17 -0
- package/src/yjs/docs-editor/prosemirror-to-blocks.ts +36 -36
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
|
-
import { DocumentationPageV2, ElementGroup, DocumentationPageV1, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
3
1
|
import { z } from 'zod';
|
|
2
|
+
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
3
|
+
import { Brand, ElementPropertyDefinition, ElementPropertyValue, ElementView, ElementViewColumn, DocumentationPageV2, ElementGroup, DocumentationPageV1, DesignSystemVersion, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
4
4
|
import * as Y from 'yjs';
|
|
5
5
|
import { Schema } from 'prosemirror-model';
|
|
6
6
|
|
|
@@ -85,6 +85,771 @@ declare const DTODesignSystem: z.ZodObject<{
|
|
|
85
85
|
}>;
|
|
86
86
|
type DTODesignSystem = z.infer<typeof DTODesignSystem>;
|
|
87
87
|
|
|
88
|
+
declare const DTOBrand: z.ZodObject<{
|
|
89
|
+
id: z.ZodString;
|
|
90
|
+
designSystemVersionId: z.ZodString;
|
|
91
|
+
persistentId: z.ZodString;
|
|
92
|
+
meta: z.ZodObject<{
|
|
93
|
+
name: z.ZodString;
|
|
94
|
+
description: z.ZodOptional<z.ZodString>;
|
|
95
|
+
}, "strip", z.ZodTypeAny, {
|
|
96
|
+
name: string;
|
|
97
|
+
description?: string | undefined;
|
|
98
|
+
}, {
|
|
99
|
+
name: string;
|
|
100
|
+
description?: string | undefined;
|
|
101
|
+
}>;
|
|
102
|
+
}, "strip", z.ZodTypeAny, {
|
|
103
|
+
id: string;
|
|
104
|
+
meta: {
|
|
105
|
+
name: string;
|
|
106
|
+
description?: string | undefined;
|
|
107
|
+
};
|
|
108
|
+
designSystemVersionId: string;
|
|
109
|
+
persistentId: string;
|
|
110
|
+
}, {
|
|
111
|
+
id: string;
|
|
112
|
+
meta: {
|
|
113
|
+
name: string;
|
|
114
|
+
description?: string | undefined;
|
|
115
|
+
};
|
|
116
|
+
designSystemVersionId: string;
|
|
117
|
+
persistentId: string;
|
|
118
|
+
}>;
|
|
119
|
+
type DTOBrand = z.infer<typeof DTOBrand>;
|
|
120
|
+
declare const DTOBrandGetResponse: z.ZodObject<{
|
|
121
|
+
brand: z.ZodObject<{
|
|
122
|
+
id: z.ZodString;
|
|
123
|
+
designSystemVersionId: z.ZodString;
|
|
124
|
+
persistentId: z.ZodString;
|
|
125
|
+
meta: z.ZodObject<{
|
|
126
|
+
name: z.ZodString;
|
|
127
|
+
description: z.ZodOptional<z.ZodString>;
|
|
128
|
+
}, "strip", z.ZodTypeAny, {
|
|
129
|
+
name: string;
|
|
130
|
+
description?: string | undefined;
|
|
131
|
+
}, {
|
|
132
|
+
name: string;
|
|
133
|
+
description?: string | undefined;
|
|
134
|
+
}>;
|
|
135
|
+
}, "strip", z.ZodTypeAny, {
|
|
136
|
+
id: string;
|
|
137
|
+
meta: {
|
|
138
|
+
name: string;
|
|
139
|
+
description?: string | undefined;
|
|
140
|
+
};
|
|
141
|
+
designSystemVersionId: string;
|
|
142
|
+
persistentId: string;
|
|
143
|
+
}, {
|
|
144
|
+
id: string;
|
|
145
|
+
meta: {
|
|
146
|
+
name: string;
|
|
147
|
+
description?: string | undefined;
|
|
148
|
+
};
|
|
149
|
+
designSystemVersionId: string;
|
|
150
|
+
persistentId: string;
|
|
151
|
+
}>;
|
|
152
|
+
}, "strip", z.ZodTypeAny, {
|
|
153
|
+
brand: {
|
|
154
|
+
id: string;
|
|
155
|
+
meta: {
|
|
156
|
+
name: string;
|
|
157
|
+
description?: string | undefined;
|
|
158
|
+
};
|
|
159
|
+
designSystemVersionId: string;
|
|
160
|
+
persistentId: string;
|
|
161
|
+
};
|
|
162
|
+
}, {
|
|
163
|
+
brand: {
|
|
164
|
+
id: string;
|
|
165
|
+
meta: {
|
|
166
|
+
name: string;
|
|
167
|
+
description?: string | undefined;
|
|
168
|
+
};
|
|
169
|
+
designSystemVersionId: string;
|
|
170
|
+
persistentId: string;
|
|
171
|
+
};
|
|
172
|
+
}>;
|
|
173
|
+
type DTOBrandGetResponse = z.infer<typeof DTOBrandGetResponse>;
|
|
174
|
+
declare const DTOBrandsListResponse: z.ZodObject<{
|
|
175
|
+
brands: z.ZodArray<z.ZodObject<{
|
|
176
|
+
id: z.ZodString;
|
|
177
|
+
designSystemVersionId: z.ZodString;
|
|
178
|
+
persistentId: z.ZodString;
|
|
179
|
+
meta: z.ZodObject<{
|
|
180
|
+
name: z.ZodString;
|
|
181
|
+
description: z.ZodOptional<z.ZodString>;
|
|
182
|
+
}, "strip", z.ZodTypeAny, {
|
|
183
|
+
name: string;
|
|
184
|
+
description?: string | undefined;
|
|
185
|
+
}, {
|
|
186
|
+
name: string;
|
|
187
|
+
description?: string | undefined;
|
|
188
|
+
}>;
|
|
189
|
+
}, "strip", z.ZodTypeAny, {
|
|
190
|
+
id: string;
|
|
191
|
+
meta: {
|
|
192
|
+
name: string;
|
|
193
|
+
description?: string | undefined;
|
|
194
|
+
};
|
|
195
|
+
designSystemVersionId: string;
|
|
196
|
+
persistentId: string;
|
|
197
|
+
}, {
|
|
198
|
+
id: string;
|
|
199
|
+
meta: {
|
|
200
|
+
name: string;
|
|
201
|
+
description?: string | undefined;
|
|
202
|
+
};
|
|
203
|
+
designSystemVersionId: string;
|
|
204
|
+
persistentId: string;
|
|
205
|
+
}>, "many">;
|
|
206
|
+
}, "strip", z.ZodTypeAny, {
|
|
207
|
+
brands: {
|
|
208
|
+
id: string;
|
|
209
|
+
meta: {
|
|
210
|
+
name: string;
|
|
211
|
+
description?: string | undefined;
|
|
212
|
+
};
|
|
213
|
+
designSystemVersionId: string;
|
|
214
|
+
persistentId: string;
|
|
215
|
+
}[];
|
|
216
|
+
}, {
|
|
217
|
+
brands: {
|
|
218
|
+
id: string;
|
|
219
|
+
meta: {
|
|
220
|
+
name: string;
|
|
221
|
+
description?: string | undefined;
|
|
222
|
+
};
|
|
223
|
+
designSystemVersionId: string;
|
|
224
|
+
persistentId: string;
|
|
225
|
+
}[];
|
|
226
|
+
}>;
|
|
227
|
+
type DTOBrandsListResponse = z.infer<typeof DTOBrandsListResponse>;
|
|
228
|
+
|
|
229
|
+
declare const DTOElementViewColumnSharedAttributes: z.ZodObject<{
|
|
230
|
+
id: z.ZodString;
|
|
231
|
+
persistentId: z.ZodString;
|
|
232
|
+
width: z.ZodNumber;
|
|
233
|
+
}, "strip", z.ZodTypeAny, {
|
|
234
|
+
id: string;
|
|
235
|
+
persistentId: string;
|
|
236
|
+
width: number;
|
|
237
|
+
}, {
|
|
238
|
+
id: string;
|
|
239
|
+
persistentId: string;
|
|
240
|
+
width: number;
|
|
241
|
+
}>;
|
|
242
|
+
declare const DTOElementViewBasePropertyColumn: z.ZodObject<{
|
|
243
|
+
id: z.ZodString;
|
|
244
|
+
persistentId: z.ZodString;
|
|
245
|
+
width: z.ZodNumber;
|
|
246
|
+
type: z.ZodLiteral<"BaseProperty">;
|
|
247
|
+
basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
|
|
248
|
+
}, "strip", z.ZodTypeAny, {
|
|
249
|
+
id: string;
|
|
250
|
+
type: "BaseProperty";
|
|
251
|
+
persistentId: string;
|
|
252
|
+
width: number;
|
|
253
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
254
|
+
}, {
|
|
255
|
+
id: string;
|
|
256
|
+
type: "BaseProperty";
|
|
257
|
+
persistentId: string;
|
|
258
|
+
width: number;
|
|
259
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
260
|
+
}>;
|
|
261
|
+
declare const DTOElementViewPropertyDefinitionColumn: z.ZodObject<{
|
|
262
|
+
id: z.ZodString;
|
|
263
|
+
persistentId: z.ZodString;
|
|
264
|
+
width: z.ZodNumber;
|
|
265
|
+
type: z.ZodLiteral<"PropertyDefinition">;
|
|
266
|
+
propertyDefinitionId: z.ZodString;
|
|
267
|
+
}, "strip", z.ZodTypeAny, {
|
|
268
|
+
id: string;
|
|
269
|
+
type: "PropertyDefinition";
|
|
270
|
+
persistentId: string;
|
|
271
|
+
width: number;
|
|
272
|
+
propertyDefinitionId: string;
|
|
273
|
+
}, {
|
|
274
|
+
id: string;
|
|
275
|
+
type: "PropertyDefinition";
|
|
276
|
+
persistentId: string;
|
|
277
|
+
width: number;
|
|
278
|
+
propertyDefinitionId: string;
|
|
279
|
+
}>;
|
|
280
|
+
declare const DTOElementViewThemeColumn: z.ZodObject<{
|
|
281
|
+
id: z.ZodString;
|
|
282
|
+
persistentId: z.ZodString;
|
|
283
|
+
width: z.ZodNumber;
|
|
284
|
+
type: z.ZodLiteral<"Theme">;
|
|
285
|
+
themeId: z.ZodString;
|
|
286
|
+
}, "strip", z.ZodTypeAny, {
|
|
287
|
+
id: string;
|
|
288
|
+
type: "Theme";
|
|
289
|
+
persistentId: string;
|
|
290
|
+
width: number;
|
|
291
|
+
themeId: string;
|
|
292
|
+
}, {
|
|
293
|
+
id: string;
|
|
294
|
+
type: "Theme";
|
|
295
|
+
persistentId: string;
|
|
296
|
+
width: number;
|
|
297
|
+
themeId: string;
|
|
298
|
+
}>;
|
|
299
|
+
declare const DTOElementViewColumn: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
300
|
+
id: z.ZodString;
|
|
301
|
+
persistentId: z.ZodString;
|
|
302
|
+
width: z.ZodNumber;
|
|
303
|
+
type: z.ZodLiteral<"BaseProperty">;
|
|
304
|
+
basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
|
|
305
|
+
}, "strip", z.ZodTypeAny, {
|
|
306
|
+
id: string;
|
|
307
|
+
type: "BaseProperty";
|
|
308
|
+
persistentId: string;
|
|
309
|
+
width: number;
|
|
310
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
311
|
+
}, {
|
|
312
|
+
id: string;
|
|
313
|
+
type: "BaseProperty";
|
|
314
|
+
persistentId: string;
|
|
315
|
+
width: number;
|
|
316
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
317
|
+
}>, z.ZodObject<{
|
|
318
|
+
id: z.ZodString;
|
|
319
|
+
persistentId: z.ZodString;
|
|
320
|
+
width: z.ZodNumber;
|
|
321
|
+
type: z.ZodLiteral<"PropertyDefinition">;
|
|
322
|
+
propertyDefinitionId: z.ZodString;
|
|
323
|
+
}, "strip", z.ZodTypeAny, {
|
|
324
|
+
id: string;
|
|
325
|
+
type: "PropertyDefinition";
|
|
326
|
+
persistentId: string;
|
|
327
|
+
width: number;
|
|
328
|
+
propertyDefinitionId: string;
|
|
329
|
+
}, {
|
|
330
|
+
id: string;
|
|
331
|
+
type: "PropertyDefinition";
|
|
332
|
+
persistentId: string;
|
|
333
|
+
width: number;
|
|
334
|
+
propertyDefinitionId: string;
|
|
335
|
+
}>, z.ZodObject<{
|
|
336
|
+
id: z.ZodString;
|
|
337
|
+
persistentId: z.ZodString;
|
|
338
|
+
width: z.ZodNumber;
|
|
339
|
+
type: z.ZodLiteral<"Theme">;
|
|
340
|
+
themeId: z.ZodString;
|
|
341
|
+
}, "strip", z.ZodTypeAny, {
|
|
342
|
+
id: string;
|
|
343
|
+
type: "Theme";
|
|
344
|
+
persistentId: string;
|
|
345
|
+
width: number;
|
|
346
|
+
themeId: string;
|
|
347
|
+
}, {
|
|
348
|
+
id: string;
|
|
349
|
+
type: "Theme";
|
|
350
|
+
persistentId: string;
|
|
351
|
+
width: number;
|
|
352
|
+
themeId: string;
|
|
353
|
+
}>]>;
|
|
354
|
+
declare const DTOElementView: z.ZodObject<{
|
|
355
|
+
meta: z.ZodObject<{
|
|
356
|
+
name: z.ZodString;
|
|
357
|
+
description: z.ZodOptional<z.ZodString>;
|
|
358
|
+
}, "strip", z.ZodTypeAny, {
|
|
359
|
+
name: string;
|
|
360
|
+
description?: string | undefined;
|
|
361
|
+
}, {
|
|
362
|
+
name: string;
|
|
363
|
+
description?: string | undefined;
|
|
364
|
+
}>;
|
|
365
|
+
persistentId: z.ZodString;
|
|
366
|
+
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
367
|
+
id: z.ZodString;
|
|
368
|
+
isDefault: z.ZodBoolean;
|
|
369
|
+
columns: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
370
|
+
id: z.ZodString;
|
|
371
|
+
persistentId: z.ZodString;
|
|
372
|
+
width: z.ZodNumber;
|
|
373
|
+
type: z.ZodLiteral<"BaseProperty">;
|
|
374
|
+
basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
|
|
375
|
+
}, "strip", z.ZodTypeAny, {
|
|
376
|
+
id: string;
|
|
377
|
+
type: "BaseProperty";
|
|
378
|
+
persistentId: string;
|
|
379
|
+
width: number;
|
|
380
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
381
|
+
}, {
|
|
382
|
+
id: string;
|
|
383
|
+
type: "BaseProperty";
|
|
384
|
+
persistentId: string;
|
|
385
|
+
width: number;
|
|
386
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
387
|
+
}>, z.ZodObject<{
|
|
388
|
+
id: z.ZodString;
|
|
389
|
+
persistentId: z.ZodString;
|
|
390
|
+
width: z.ZodNumber;
|
|
391
|
+
type: z.ZodLiteral<"PropertyDefinition">;
|
|
392
|
+
propertyDefinitionId: z.ZodString;
|
|
393
|
+
}, "strip", z.ZodTypeAny, {
|
|
394
|
+
id: string;
|
|
395
|
+
type: "PropertyDefinition";
|
|
396
|
+
persistentId: string;
|
|
397
|
+
width: number;
|
|
398
|
+
propertyDefinitionId: string;
|
|
399
|
+
}, {
|
|
400
|
+
id: string;
|
|
401
|
+
type: "PropertyDefinition";
|
|
402
|
+
persistentId: string;
|
|
403
|
+
width: number;
|
|
404
|
+
propertyDefinitionId: string;
|
|
405
|
+
}>, z.ZodObject<{
|
|
406
|
+
id: z.ZodString;
|
|
407
|
+
persistentId: z.ZodString;
|
|
408
|
+
width: z.ZodNumber;
|
|
409
|
+
type: z.ZodLiteral<"Theme">;
|
|
410
|
+
themeId: z.ZodString;
|
|
411
|
+
}, "strip", z.ZodTypeAny, {
|
|
412
|
+
id: string;
|
|
413
|
+
type: "Theme";
|
|
414
|
+
persistentId: string;
|
|
415
|
+
width: number;
|
|
416
|
+
themeId: string;
|
|
417
|
+
}, {
|
|
418
|
+
id: string;
|
|
419
|
+
type: "Theme";
|
|
420
|
+
persistentId: string;
|
|
421
|
+
width: number;
|
|
422
|
+
themeId: string;
|
|
423
|
+
}>]>, "many">;
|
|
424
|
+
}, "strip", z.ZodTypeAny, {
|
|
425
|
+
id: string;
|
|
426
|
+
meta: {
|
|
427
|
+
name: string;
|
|
428
|
+
description?: string | undefined;
|
|
429
|
+
};
|
|
430
|
+
persistentId: string;
|
|
431
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
432
|
+
isDefault: boolean;
|
|
433
|
+
columns: ({
|
|
434
|
+
id: string;
|
|
435
|
+
type: "BaseProperty";
|
|
436
|
+
persistentId: string;
|
|
437
|
+
width: number;
|
|
438
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
439
|
+
} | {
|
|
440
|
+
id: string;
|
|
441
|
+
type: "PropertyDefinition";
|
|
442
|
+
persistentId: string;
|
|
443
|
+
width: number;
|
|
444
|
+
propertyDefinitionId: string;
|
|
445
|
+
} | {
|
|
446
|
+
id: string;
|
|
447
|
+
type: "Theme";
|
|
448
|
+
persistentId: string;
|
|
449
|
+
width: number;
|
|
450
|
+
themeId: string;
|
|
451
|
+
})[];
|
|
452
|
+
}, {
|
|
453
|
+
id: string;
|
|
454
|
+
meta: {
|
|
455
|
+
name: string;
|
|
456
|
+
description?: string | undefined;
|
|
457
|
+
};
|
|
458
|
+
persistentId: string;
|
|
459
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
460
|
+
isDefault: boolean;
|
|
461
|
+
columns: ({
|
|
462
|
+
id: string;
|
|
463
|
+
type: "BaseProperty";
|
|
464
|
+
persistentId: string;
|
|
465
|
+
width: number;
|
|
466
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
467
|
+
} | {
|
|
468
|
+
id: string;
|
|
469
|
+
type: "PropertyDefinition";
|
|
470
|
+
persistentId: string;
|
|
471
|
+
width: number;
|
|
472
|
+
propertyDefinitionId: string;
|
|
473
|
+
} | {
|
|
474
|
+
id: string;
|
|
475
|
+
type: "Theme";
|
|
476
|
+
persistentId: string;
|
|
477
|
+
width: number;
|
|
478
|
+
themeId: string;
|
|
479
|
+
})[];
|
|
480
|
+
}>;
|
|
481
|
+
type DTOElementView = z.infer<typeof DTOElementView>;
|
|
482
|
+
declare const DTOElementViewsListResponse: z.ZodObject<{
|
|
483
|
+
elementDataViews: z.ZodArray<z.ZodObject<{
|
|
484
|
+
meta: z.ZodObject<{
|
|
485
|
+
name: z.ZodString;
|
|
486
|
+
description: z.ZodOptional<z.ZodString>;
|
|
487
|
+
}, "strip", z.ZodTypeAny, {
|
|
488
|
+
name: string;
|
|
489
|
+
description?: string | undefined;
|
|
490
|
+
}, {
|
|
491
|
+
name: string;
|
|
492
|
+
description?: string | undefined;
|
|
493
|
+
}>;
|
|
494
|
+
persistentId: z.ZodString;
|
|
495
|
+
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
496
|
+
id: z.ZodString;
|
|
497
|
+
isDefault: z.ZodBoolean;
|
|
498
|
+
columns: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
499
|
+
id: z.ZodString;
|
|
500
|
+
persistentId: z.ZodString;
|
|
501
|
+
width: z.ZodNumber;
|
|
502
|
+
type: z.ZodLiteral<"BaseProperty">;
|
|
503
|
+
basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
|
|
504
|
+
}, "strip", z.ZodTypeAny, {
|
|
505
|
+
id: string;
|
|
506
|
+
type: "BaseProperty";
|
|
507
|
+
persistentId: string;
|
|
508
|
+
width: number;
|
|
509
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
510
|
+
}, {
|
|
511
|
+
id: string;
|
|
512
|
+
type: "BaseProperty";
|
|
513
|
+
persistentId: string;
|
|
514
|
+
width: number;
|
|
515
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
516
|
+
}>, z.ZodObject<{
|
|
517
|
+
id: z.ZodString;
|
|
518
|
+
persistentId: z.ZodString;
|
|
519
|
+
width: z.ZodNumber;
|
|
520
|
+
type: z.ZodLiteral<"PropertyDefinition">;
|
|
521
|
+
propertyDefinitionId: z.ZodString;
|
|
522
|
+
}, "strip", z.ZodTypeAny, {
|
|
523
|
+
id: string;
|
|
524
|
+
type: "PropertyDefinition";
|
|
525
|
+
persistentId: string;
|
|
526
|
+
width: number;
|
|
527
|
+
propertyDefinitionId: string;
|
|
528
|
+
}, {
|
|
529
|
+
id: string;
|
|
530
|
+
type: "PropertyDefinition";
|
|
531
|
+
persistentId: string;
|
|
532
|
+
width: number;
|
|
533
|
+
propertyDefinitionId: string;
|
|
534
|
+
}>, z.ZodObject<{
|
|
535
|
+
id: z.ZodString;
|
|
536
|
+
persistentId: z.ZodString;
|
|
537
|
+
width: z.ZodNumber;
|
|
538
|
+
type: z.ZodLiteral<"Theme">;
|
|
539
|
+
themeId: z.ZodString;
|
|
540
|
+
}, "strip", z.ZodTypeAny, {
|
|
541
|
+
id: string;
|
|
542
|
+
type: "Theme";
|
|
543
|
+
persistentId: string;
|
|
544
|
+
width: number;
|
|
545
|
+
themeId: string;
|
|
546
|
+
}, {
|
|
547
|
+
id: string;
|
|
548
|
+
type: "Theme";
|
|
549
|
+
persistentId: string;
|
|
550
|
+
width: number;
|
|
551
|
+
themeId: string;
|
|
552
|
+
}>]>, "many">;
|
|
553
|
+
}, "strip", z.ZodTypeAny, {
|
|
554
|
+
id: string;
|
|
555
|
+
meta: {
|
|
556
|
+
name: string;
|
|
557
|
+
description?: string | undefined;
|
|
558
|
+
};
|
|
559
|
+
persistentId: string;
|
|
560
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
561
|
+
isDefault: boolean;
|
|
562
|
+
columns: ({
|
|
563
|
+
id: string;
|
|
564
|
+
type: "BaseProperty";
|
|
565
|
+
persistentId: string;
|
|
566
|
+
width: number;
|
|
567
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
568
|
+
} | {
|
|
569
|
+
id: string;
|
|
570
|
+
type: "PropertyDefinition";
|
|
571
|
+
persistentId: string;
|
|
572
|
+
width: number;
|
|
573
|
+
propertyDefinitionId: string;
|
|
574
|
+
} | {
|
|
575
|
+
id: string;
|
|
576
|
+
type: "Theme";
|
|
577
|
+
persistentId: string;
|
|
578
|
+
width: number;
|
|
579
|
+
themeId: string;
|
|
580
|
+
})[];
|
|
581
|
+
}, {
|
|
582
|
+
id: string;
|
|
583
|
+
meta: {
|
|
584
|
+
name: string;
|
|
585
|
+
description?: string | undefined;
|
|
586
|
+
};
|
|
587
|
+
persistentId: string;
|
|
588
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
589
|
+
isDefault: boolean;
|
|
590
|
+
columns: ({
|
|
591
|
+
id: string;
|
|
592
|
+
type: "BaseProperty";
|
|
593
|
+
persistentId: string;
|
|
594
|
+
width: number;
|
|
595
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
596
|
+
} | {
|
|
597
|
+
id: string;
|
|
598
|
+
type: "PropertyDefinition";
|
|
599
|
+
persistentId: string;
|
|
600
|
+
width: number;
|
|
601
|
+
propertyDefinitionId: string;
|
|
602
|
+
} | {
|
|
603
|
+
id: string;
|
|
604
|
+
type: "Theme";
|
|
605
|
+
persistentId: string;
|
|
606
|
+
width: number;
|
|
607
|
+
themeId: string;
|
|
608
|
+
})[];
|
|
609
|
+
}>, "many">;
|
|
610
|
+
}, "strip", z.ZodTypeAny, {
|
|
611
|
+
elementDataViews: {
|
|
612
|
+
id: string;
|
|
613
|
+
meta: {
|
|
614
|
+
name: string;
|
|
615
|
+
description?: string | undefined;
|
|
616
|
+
};
|
|
617
|
+
persistentId: string;
|
|
618
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
619
|
+
isDefault: boolean;
|
|
620
|
+
columns: ({
|
|
621
|
+
id: string;
|
|
622
|
+
type: "BaseProperty";
|
|
623
|
+
persistentId: string;
|
|
624
|
+
width: number;
|
|
625
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
626
|
+
} | {
|
|
627
|
+
id: string;
|
|
628
|
+
type: "PropertyDefinition";
|
|
629
|
+
persistentId: string;
|
|
630
|
+
width: number;
|
|
631
|
+
propertyDefinitionId: string;
|
|
632
|
+
} | {
|
|
633
|
+
id: string;
|
|
634
|
+
type: "Theme";
|
|
635
|
+
persistentId: string;
|
|
636
|
+
width: number;
|
|
637
|
+
themeId: string;
|
|
638
|
+
})[];
|
|
639
|
+
}[];
|
|
640
|
+
}, {
|
|
641
|
+
elementDataViews: {
|
|
642
|
+
id: string;
|
|
643
|
+
meta: {
|
|
644
|
+
name: string;
|
|
645
|
+
description?: string | undefined;
|
|
646
|
+
};
|
|
647
|
+
persistentId: string;
|
|
648
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
649
|
+
isDefault: boolean;
|
|
650
|
+
columns: ({
|
|
651
|
+
id: string;
|
|
652
|
+
type: "BaseProperty";
|
|
653
|
+
persistentId: string;
|
|
654
|
+
width: number;
|
|
655
|
+
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
656
|
+
} | {
|
|
657
|
+
id: string;
|
|
658
|
+
type: "PropertyDefinition";
|
|
659
|
+
persistentId: string;
|
|
660
|
+
width: number;
|
|
661
|
+
propertyDefinitionId: string;
|
|
662
|
+
} | {
|
|
663
|
+
id: string;
|
|
664
|
+
type: "Theme";
|
|
665
|
+
persistentId: string;
|
|
666
|
+
width: number;
|
|
667
|
+
themeId: string;
|
|
668
|
+
})[];
|
|
669
|
+
}[];
|
|
670
|
+
}>;
|
|
671
|
+
type DTOElementViewsListResponse = z.infer<typeof DTOElementViewsListResponse>;
|
|
672
|
+
|
|
673
|
+
declare const DTODesignSystemVersion: z.ZodObject<{
|
|
674
|
+
id: z.ZodString;
|
|
675
|
+
createdAt: z.ZodDate;
|
|
676
|
+
meta: z.ZodObject<{
|
|
677
|
+
name: z.ZodString;
|
|
678
|
+
description: z.ZodOptional<z.ZodString>;
|
|
679
|
+
}, "strip", z.ZodTypeAny, {
|
|
680
|
+
name: string;
|
|
681
|
+
description?: string | undefined;
|
|
682
|
+
}, {
|
|
683
|
+
name: string;
|
|
684
|
+
description?: string | undefined;
|
|
685
|
+
}>;
|
|
686
|
+
version: z.ZodString;
|
|
687
|
+
isReadonly: z.ZodBoolean;
|
|
688
|
+
changeLog: z.ZodString;
|
|
689
|
+
designSystemId: z.ZodString;
|
|
690
|
+
}, "strip", z.ZodTypeAny, {
|
|
691
|
+
id: string;
|
|
692
|
+
createdAt: Date;
|
|
693
|
+
meta: {
|
|
694
|
+
name: string;
|
|
695
|
+
description?: string | undefined;
|
|
696
|
+
};
|
|
697
|
+
version: string;
|
|
698
|
+
isReadonly: boolean;
|
|
699
|
+
changeLog: string;
|
|
700
|
+
designSystemId: string;
|
|
701
|
+
}, {
|
|
702
|
+
id: string;
|
|
703
|
+
createdAt: Date;
|
|
704
|
+
meta: {
|
|
705
|
+
name: string;
|
|
706
|
+
description?: string | undefined;
|
|
707
|
+
};
|
|
708
|
+
version: string;
|
|
709
|
+
isReadonly: boolean;
|
|
710
|
+
changeLog: string;
|
|
711
|
+
designSystemId: string;
|
|
712
|
+
}>;
|
|
713
|
+
type DTODesignSystemVersion = z.infer<typeof DTODesignSystemVersion>;
|
|
714
|
+
declare const DTODesignSystemVersionsListResponse: z.ZodObject<{
|
|
715
|
+
designSystemVersions: z.ZodArray<z.ZodObject<{
|
|
716
|
+
id: z.ZodString;
|
|
717
|
+
createdAt: z.ZodDate;
|
|
718
|
+
meta: z.ZodObject<{
|
|
719
|
+
name: z.ZodString;
|
|
720
|
+
description: z.ZodOptional<z.ZodString>;
|
|
721
|
+
}, "strip", z.ZodTypeAny, {
|
|
722
|
+
name: string;
|
|
723
|
+
description?: string | undefined;
|
|
724
|
+
}, {
|
|
725
|
+
name: string;
|
|
726
|
+
description?: string | undefined;
|
|
727
|
+
}>;
|
|
728
|
+
version: z.ZodString;
|
|
729
|
+
isReadonly: z.ZodBoolean;
|
|
730
|
+
changeLog: z.ZodString;
|
|
731
|
+
designSystemId: z.ZodString;
|
|
732
|
+
}, "strip", z.ZodTypeAny, {
|
|
733
|
+
id: string;
|
|
734
|
+
createdAt: Date;
|
|
735
|
+
meta: {
|
|
736
|
+
name: string;
|
|
737
|
+
description?: string | undefined;
|
|
738
|
+
};
|
|
739
|
+
version: string;
|
|
740
|
+
isReadonly: boolean;
|
|
741
|
+
changeLog: string;
|
|
742
|
+
designSystemId: string;
|
|
743
|
+
}, {
|
|
744
|
+
id: string;
|
|
745
|
+
createdAt: Date;
|
|
746
|
+
meta: {
|
|
747
|
+
name: string;
|
|
748
|
+
description?: string | undefined;
|
|
749
|
+
};
|
|
750
|
+
version: string;
|
|
751
|
+
isReadonly: boolean;
|
|
752
|
+
changeLog: string;
|
|
753
|
+
designSystemId: string;
|
|
754
|
+
}>, "many">;
|
|
755
|
+
}, "strip", z.ZodTypeAny, {
|
|
756
|
+
designSystemVersions: {
|
|
757
|
+
id: string;
|
|
758
|
+
createdAt: Date;
|
|
759
|
+
meta: {
|
|
760
|
+
name: string;
|
|
761
|
+
description?: string | undefined;
|
|
762
|
+
};
|
|
763
|
+
version: string;
|
|
764
|
+
isReadonly: boolean;
|
|
765
|
+
changeLog: string;
|
|
766
|
+
designSystemId: string;
|
|
767
|
+
}[];
|
|
768
|
+
}, {
|
|
769
|
+
designSystemVersions: {
|
|
770
|
+
id: string;
|
|
771
|
+
createdAt: Date;
|
|
772
|
+
meta: {
|
|
773
|
+
name: string;
|
|
774
|
+
description?: string | undefined;
|
|
775
|
+
};
|
|
776
|
+
version: string;
|
|
777
|
+
isReadonly: boolean;
|
|
778
|
+
changeLog: string;
|
|
779
|
+
designSystemId: string;
|
|
780
|
+
}[];
|
|
781
|
+
}>;
|
|
782
|
+
type DTODesignSystemVersionsListResponse = z.infer<typeof DTODesignSystemVersionsListResponse>;
|
|
783
|
+
declare const DTODesignSystemVersionGetResponse: z.ZodObject<{
|
|
784
|
+
designSystemVersion: z.ZodObject<{
|
|
785
|
+
id: z.ZodString;
|
|
786
|
+
createdAt: z.ZodDate;
|
|
787
|
+
meta: z.ZodObject<{
|
|
788
|
+
name: z.ZodString;
|
|
789
|
+
description: z.ZodOptional<z.ZodString>;
|
|
790
|
+
}, "strip", z.ZodTypeAny, {
|
|
791
|
+
name: string;
|
|
792
|
+
description?: string | undefined;
|
|
793
|
+
}, {
|
|
794
|
+
name: string;
|
|
795
|
+
description?: string | undefined;
|
|
796
|
+
}>;
|
|
797
|
+
version: z.ZodString;
|
|
798
|
+
isReadonly: z.ZodBoolean;
|
|
799
|
+
changeLog: z.ZodString;
|
|
800
|
+
designSystemId: z.ZodString;
|
|
801
|
+
}, "strip", z.ZodTypeAny, {
|
|
802
|
+
id: string;
|
|
803
|
+
createdAt: Date;
|
|
804
|
+
meta: {
|
|
805
|
+
name: string;
|
|
806
|
+
description?: string | undefined;
|
|
807
|
+
};
|
|
808
|
+
version: string;
|
|
809
|
+
isReadonly: boolean;
|
|
810
|
+
changeLog: string;
|
|
811
|
+
designSystemId: string;
|
|
812
|
+
}, {
|
|
813
|
+
id: string;
|
|
814
|
+
createdAt: Date;
|
|
815
|
+
meta: {
|
|
816
|
+
name: string;
|
|
817
|
+
description?: string | undefined;
|
|
818
|
+
};
|
|
819
|
+
version: string;
|
|
820
|
+
isReadonly: boolean;
|
|
821
|
+
changeLog: string;
|
|
822
|
+
designSystemId: string;
|
|
823
|
+
}>;
|
|
824
|
+
}, "strip", z.ZodTypeAny, {
|
|
825
|
+
designSystemVersion: {
|
|
826
|
+
id: string;
|
|
827
|
+
createdAt: Date;
|
|
828
|
+
meta: {
|
|
829
|
+
name: string;
|
|
830
|
+
description?: string | undefined;
|
|
831
|
+
};
|
|
832
|
+
version: string;
|
|
833
|
+
isReadonly: boolean;
|
|
834
|
+
changeLog: string;
|
|
835
|
+
designSystemId: string;
|
|
836
|
+
};
|
|
837
|
+
}, {
|
|
838
|
+
designSystemVersion: {
|
|
839
|
+
id: string;
|
|
840
|
+
createdAt: Date;
|
|
841
|
+
meta: {
|
|
842
|
+
name: string;
|
|
843
|
+
description?: string | undefined;
|
|
844
|
+
};
|
|
845
|
+
version: string;
|
|
846
|
+
isReadonly: boolean;
|
|
847
|
+
changeLog: string;
|
|
848
|
+
designSystemId: string;
|
|
849
|
+
};
|
|
850
|
+
}>;
|
|
851
|
+
type DTODesignSystemVersionGetResponse = z.infer<typeof DTODesignSystemVersionGetResponse>;
|
|
852
|
+
|
|
88
853
|
declare const DTODocumentationLinkPreviewResponse: z.ZodObject<{
|
|
89
854
|
linkPreview: z.ZodObject<{
|
|
90
855
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -1178,8 +1943,8 @@ declare const DTODocumentationGroupStructureV2: z.ZodObject<{
|
|
|
1178
1943
|
id: z.ZodString;
|
|
1179
1944
|
createdAt: z.ZodDate;
|
|
1180
1945
|
updatedAt: z.ZodDate;
|
|
1181
|
-
persistentId: z.ZodString;
|
|
1182
1946
|
designSystemVersionId: z.ZodString;
|
|
1947
|
+
persistentId: z.ZodString;
|
|
1183
1948
|
slug: z.ZodOptional<z.ZodString>;
|
|
1184
1949
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
1185
1950
|
title: z.ZodString;
|
|
@@ -1193,8 +1958,8 @@ declare const DTODocumentationGroupStructureV2: z.ZodObject<{
|
|
|
1193
1958
|
createdAt: Date;
|
|
1194
1959
|
updatedAt: Date;
|
|
1195
1960
|
type: "Group";
|
|
1196
|
-
persistentId: string;
|
|
1197
1961
|
designSystemVersionId: string;
|
|
1962
|
+
persistentId: string;
|
|
1198
1963
|
shortPersistentId: string;
|
|
1199
1964
|
title: string;
|
|
1200
1965
|
isRoot: boolean;
|
|
@@ -1207,8 +1972,8 @@ declare const DTODocumentationGroupStructureV2: z.ZodObject<{
|
|
|
1207
1972
|
createdAt: Date;
|
|
1208
1973
|
updatedAt: Date;
|
|
1209
1974
|
type: "Group";
|
|
1210
|
-
persistentId: string;
|
|
1211
1975
|
designSystemVersionId: string;
|
|
1976
|
+
persistentId: string;
|
|
1212
1977
|
shortPersistentId: string;
|
|
1213
1978
|
title: string;
|
|
1214
1979
|
isRoot: boolean;
|
|
@@ -1223,8 +1988,8 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1223
1988
|
createdAt: z.ZodDate;
|
|
1224
1989
|
updatedAt: z.ZodDate;
|
|
1225
1990
|
type: z.ZodLiteral<"Group">;
|
|
1226
|
-
persistentId: z.ZodString;
|
|
1227
1991
|
designSystemVersionId: z.ZodString;
|
|
1992
|
+
persistentId: z.ZodString;
|
|
1228
1993
|
slug: z.ZodOptional<z.ZodString>;
|
|
1229
1994
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
1230
1995
|
shortPersistentId: z.ZodString;
|
|
@@ -1421,8 +2186,8 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1421
2186
|
createdAt: Date;
|
|
1422
2187
|
updatedAt: Date;
|
|
1423
2188
|
type: "Group";
|
|
1424
|
-
persistentId: string;
|
|
1425
2189
|
designSystemVersionId: string;
|
|
2190
|
+
persistentId: string;
|
|
1426
2191
|
shortPersistentId: string;
|
|
1427
2192
|
title: string;
|
|
1428
2193
|
isRoot: boolean;
|
|
@@ -1465,8 +2230,8 @@ declare const DTODocumentationGroupV2: z.ZodObject<{
|
|
|
1465
2230
|
createdAt: Date;
|
|
1466
2231
|
updatedAt: Date;
|
|
1467
2232
|
type: "Group";
|
|
1468
|
-
persistentId: string;
|
|
1469
2233
|
designSystemVersionId: string;
|
|
2234
|
+
persistentId: string;
|
|
1470
2235
|
shortPersistentId: string;
|
|
1471
2236
|
title: string;
|
|
1472
2237
|
isRoot: boolean;
|
|
@@ -2955,8 +3720,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
2955
3720
|
id: z.ZodString;
|
|
2956
3721
|
createdAt: z.ZodDate;
|
|
2957
3722
|
updatedAt: z.ZodDate;
|
|
2958
|
-
persistentId: z.ZodString;
|
|
2959
3723
|
designSystemVersionId: z.ZodString;
|
|
3724
|
+
persistentId: z.ZodString;
|
|
2960
3725
|
slug: z.ZodOptional<z.ZodString>;
|
|
2961
3726
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
2962
3727
|
shortPersistentId: z.ZodString;
|
|
@@ -3242,7 +4007,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
3242
4007
|
};
|
|
3243
4008
|
} | null | undefined>;
|
|
3244
4009
|
blocks: z.ZodArray<z.ZodType<_supernova_studio_model.PageBlockV1, z.ZodTypeDef, {
|
|
3245
|
-
type: "
|
|
4010
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "ComponentGroup" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
3246
4011
|
persistentId: string;
|
|
3247
4012
|
designObjectId?: string | null | undefined;
|
|
3248
4013
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -3253,7 +4018,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
3253
4018
|
spans: {
|
|
3254
4019
|
text: string;
|
|
3255
4020
|
attributes: {
|
|
3256
|
-
type: "
|
|
4021
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
3257
4022
|
link?: string | null | undefined;
|
|
3258
4023
|
documentationItemId?: string | null | undefined;
|
|
3259
4024
|
openInNewWindow?: boolean | null | undefined;
|
|
@@ -3429,8 +4194,8 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
3429
4194
|
createdAt: Date;
|
|
3430
4195
|
updatedAt: Date;
|
|
3431
4196
|
path: string;
|
|
3432
|
-
persistentId: string;
|
|
3433
4197
|
designSystemVersionId: string;
|
|
4198
|
+
persistentId: string;
|
|
3434
4199
|
shortPersistentId: string;
|
|
3435
4200
|
title: string;
|
|
3436
4201
|
blocks: _supernova_studio_model.PageBlockV1[];
|
|
@@ -3512,12 +4277,12 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
3512
4277
|
createdAt: Date;
|
|
3513
4278
|
updatedAt: Date;
|
|
3514
4279
|
path: string;
|
|
3515
|
-
persistentId: string;
|
|
3516
4280
|
designSystemVersionId: string;
|
|
4281
|
+
persistentId: string;
|
|
3517
4282
|
shortPersistentId: string;
|
|
3518
4283
|
title: string;
|
|
3519
4284
|
blocks: ({
|
|
3520
|
-
type: "
|
|
4285
|
+
type: "Theme" | "Token" | "Component" | "Tabs" | "Text" | "Link" | "Custom" | "Image" | "Code" | "Table" | "Divider" | "Quote" | "Callout" | "Embed" | "ComponentGroup" | "Heading" | "UnorderedList" | "OrderedList" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "TabItem" | "TableRow" | "TableCell";
|
|
3521
4286
|
persistentId: string;
|
|
3522
4287
|
designObjectId?: string | null | undefined;
|
|
3523
4288
|
designObjectIds?: string[] | null | undefined;
|
|
@@ -3528,7 +4293,7 @@ declare const DocumentationPageV1DTO: z.ZodObject<{
|
|
|
3528
4293
|
spans: {
|
|
3529
4294
|
text: string;
|
|
3530
4295
|
attributes: {
|
|
3531
|
-
type: "
|
|
4296
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
3532
4297
|
link?: string | null | undefined;
|
|
3533
4298
|
documentationItemId?: string | null | undefined;
|
|
3534
4299
|
openInNewWindow?: boolean | null | undefined;
|
|
@@ -3779,8 +4544,8 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
3779
4544
|
updatedAt: z.ZodDate;
|
|
3780
4545
|
path: z.ZodString;
|
|
3781
4546
|
type: z.ZodLiteral<"Page">;
|
|
3782
|
-
persistentId: z.ZodString;
|
|
3783
4547
|
designSystemVersionId: z.ZodString;
|
|
4548
|
+
persistentId: z.ZodString;
|
|
3784
4549
|
slug: z.ZodOptional<z.ZodString>;
|
|
3785
4550
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
3786
4551
|
shortPersistentId: z.ZodString;
|
|
@@ -3975,8 +4740,8 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
3975
4740
|
updatedAt: Date;
|
|
3976
4741
|
path: string;
|
|
3977
4742
|
type: "Page";
|
|
3978
|
-
persistentId: string;
|
|
3979
4743
|
designSystemVersionId: string;
|
|
4744
|
+
persistentId: string;
|
|
3980
4745
|
shortPersistentId: string;
|
|
3981
4746
|
title: string;
|
|
3982
4747
|
configuration: {
|
|
@@ -4017,8 +4782,8 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
4017
4782
|
updatedAt: Date;
|
|
4018
4783
|
path: string;
|
|
4019
4784
|
type: "Page";
|
|
4020
|
-
persistentId: string;
|
|
4021
4785
|
designSystemVersionId: string;
|
|
4786
|
+
persistentId: string;
|
|
4022
4787
|
shortPersistentId: string;
|
|
4023
4788
|
title: string;
|
|
4024
4789
|
configuration: {
|
|
@@ -4063,8 +4828,8 @@ declare const DTODocumentationPageStructureV2: z.ZodObject<{
|
|
|
4063
4828
|
id: z.ZodString;
|
|
4064
4829
|
createdAt: z.ZodDate;
|
|
4065
4830
|
updatedAt: z.ZodDate;
|
|
4066
|
-
persistentId: z.ZodString;
|
|
4067
4831
|
designSystemVersionId: z.ZodString;
|
|
4832
|
+
persistentId: z.ZodString;
|
|
4068
4833
|
slug: z.ZodOptional<z.ZodString>;
|
|
4069
4834
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
4070
4835
|
shortPersistentId: z.ZodString;
|
|
@@ -4077,8 +4842,8 @@ declare const DTODocumentationPageStructureV2: z.ZodObject<{
|
|
|
4077
4842
|
updatedAt: Date;
|
|
4078
4843
|
path: string;
|
|
4079
4844
|
type: "Page";
|
|
4080
|
-
persistentId: string;
|
|
4081
4845
|
designSystemVersionId: string;
|
|
4846
|
+
persistentId: string;
|
|
4082
4847
|
shortPersistentId: string;
|
|
4083
4848
|
title: string;
|
|
4084
4849
|
slug?: string | undefined;
|
|
@@ -4089,8 +4854,8 @@ declare const DTODocumentationPageStructureV2: z.ZodObject<{
|
|
|
4089
4854
|
updatedAt: Date;
|
|
4090
4855
|
path: string;
|
|
4091
4856
|
type: "Page";
|
|
4092
|
-
persistentId: string;
|
|
4093
4857
|
designSystemVersionId: string;
|
|
4858
|
+
persistentId: string;
|
|
4094
4859
|
shortPersistentId: string;
|
|
4095
4860
|
title: string;
|
|
4096
4861
|
slug?: string | undefined;
|
|
@@ -4102,8 +4867,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4102
4867
|
id: z.ZodString;
|
|
4103
4868
|
createdAt: z.ZodDate;
|
|
4104
4869
|
updatedAt: z.ZodDate;
|
|
4105
|
-
persistentId: z.ZodString;
|
|
4106
4870
|
designSystemVersionId: z.ZodString;
|
|
4871
|
+
persistentId: z.ZodString;
|
|
4107
4872
|
slug: z.ZodOptional<z.ZodString>;
|
|
4108
4873
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
4109
4874
|
shortPersistentId: z.ZodString;
|
|
@@ -4116,8 +4881,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4116
4881
|
updatedAt: Date;
|
|
4117
4882
|
path: string;
|
|
4118
4883
|
type: "Page";
|
|
4119
|
-
persistentId: string;
|
|
4120
4884
|
designSystemVersionId: string;
|
|
4885
|
+
persistentId: string;
|
|
4121
4886
|
shortPersistentId: string;
|
|
4122
4887
|
title: string;
|
|
4123
4888
|
slug?: string | undefined;
|
|
@@ -4128,8 +4893,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4128
4893
|
updatedAt: Date;
|
|
4129
4894
|
path: string;
|
|
4130
4895
|
type: "Page";
|
|
4131
|
-
persistentId: string;
|
|
4132
4896
|
designSystemVersionId: string;
|
|
4897
|
+
persistentId: string;
|
|
4133
4898
|
shortPersistentId: string;
|
|
4134
4899
|
title: string;
|
|
4135
4900
|
slug?: string | undefined;
|
|
@@ -4139,8 +4904,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4139
4904
|
id: z.ZodString;
|
|
4140
4905
|
createdAt: z.ZodDate;
|
|
4141
4906
|
updatedAt: z.ZodDate;
|
|
4142
|
-
persistentId: z.ZodString;
|
|
4143
4907
|
designSystemVersionId: z.ZodString;
|
|
4908
|
+
persistentId: z.ZodString;
|
|
4144
4909
|
slug: z.ZodOptional<z.ZodString>;
|
|
4145
4910
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
4146
4911
|
title: z.ZodString;
|
|
@@ -4154,8 +4919,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4154
4919
|
createdAt: Date;
|
|
4155
4920
|
updatedAt: Date;
|
|
4156
4921
|
type: "Group";
|
|
4157
|
-
persistentId: string;
|
|
4158
4922
|
designSystemVersionId: string;
|
|
4923
|
+
persistentId: string;
|
|
4159
4924
|
shortPersistentId: string;
|
|
4160
4925
|
title: string;
|
|
4161
4926
|
isRoot: boolean;
|
|
@@ -4168,8 +4933,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4168
4933
|
createdAt: Date;
|
|
4169
4934
|
updatedAt: Date;
|
|
4170
4935
|
type: "Group";
|
|
4171
|
-
persistentId: string;
|
|
4172
4936
|
designSystemVersionId: string;
|
|
4937
|
+
persistentId: string;
|
|
4173
4938
|
shortPersistentId: string;
|
|
4174
4939
|
title: string;
|
|
4175
4940
|
isRoot: boolean;
|
|
@@ -4185,8 +4950,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4185
4950
|
updatedAt: Date;
|
|
4186
4951
|
path: string;
|
|
4187
4952
|
type: "Page";
|
|
4188
|
-
persistentId: string;
|
|
4189
4953
|
designSystemVersionId: string;
|
|
4954
|
+
persistentId: string;
|
|
4190
4955
|
shortPersistentId: string;
|
|
4191
4956
|
title: string;
|
|
4192
4957
|
slug?: string | undefined;
|
|
@@ -4197,8 +4962,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4197
4962
|
createdAt: Date;
|
|
4198
4963
|
updatedAt: Date;
|
|
4199
4964
|
type: "Group";
|
|
4200
|
-
persistentId: string;
|
|
4201
4965
|
designSystemVersionId: string;
|
|
4966
|
+
persistentId: string;
|
|
4202
4967
|
shortPersistentId: string;
|
|
4203
4968
|
title: string;
|
|
4204
4969
|
isRoot: boolean;
|
|
@@ -4214,8 +4979,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4214
4979
|
updatedAt: Date;
|
|
4215
4980
|
path: string;
|
|
4216
4981
|
type: "Page";
|
|
4217
|
-
persistentId: string;
|
|
4218
4982
|
designSystemVersionId: string;
|
|
4983
|
+
persistentId: string;
|
|
4219
4984
|
shortPersistentId: string;
|
|
4220
4985
|
title: string;
|
|
4221
4986
|
slug?: string | undefined;
|
|
@@ -4226,8 +4991,8 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
4226
4991
|
createdAt: Date;
|
|
4227
4992
|
updatedAt: Date;
|
|
4228
4993
|
type: "Group";
|
|
4229
|
-
persistentId: string;
|
|
4230
4994
|
designSystemVersionId: string;
|
|
4995
|
+
persistentId: string;
|
|
4231
4996
|
shortPersistentId: string;
|
|
4232
4997
|
title: string;
|
|
4233
4998
|
isRoot: boolean;
|
|
@@ -4834,8 +5599,8 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
4834
5599
|
name: string;
|
|
4835
5600
|
description?: string | undefined;
|
|
4836
5601
|
}>;
|
|
4837
|
-
persistentId: z.ZodString;
|
|
4838
5602
|
designSystemVersionId: z.ZodString;
|
|
5603
|
+
persistentId: z.ZodString;
|
|
4839
5604
|
origin: z.ZodObject<{
|
|
4840
5605
|
sourceId: z.ZodString;
|
|
4841
5606
|
fileId: z.ZodOptional<z.ZodString>;
|
|
@@ -4879,8 +5644,8 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
4879
5644
|
name: string;
|
|
4880
5645
|
description?: string | undefined;
|
|
4881
5646
|
};
|
|
4882
|
-
persistentId: string;
|
|
4883
5647
|
designSystemVersionId: string;
|
|
5648
|
+
persistentId: string;
|
|
4884
5649
|
data: {
|
|
4885
5650
|
figmaNodeId: string;
|
|
4886
5651
|
isValid: boolean;
|
|
@@ -4902,8 +5667,8 @@ declare const DTOFigmaNode: z.ZodObject<{
|
|
|
4902
5667
|
name: string;
|
|
4903
5668
|
description?: string | undefined;
|
|
4904
5669
|
};
|
|
4905
|
-
persistentId: string;
|
|
4906
5670
|
designSystemVersionId: string;
|
|
5671
|
+
persistentId: string;
|
|
4907
5672
|
data: {
|
|
4908
5673
|
figmaNodeId: string;
|
|
4909
5674
|
isValid: boolean;
|
|
@@ -4947,8 +5712,8 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
4947
5712
|
name: string;
|
|
4948
5713
|
description?: string | undefined;
|
|
4949
5714
|
}>;
|
|
4950
|
-
persistentId: z.ZodString;
|
|
4951
5715
|
designSystemVersionId: z.ZodString;
|
|
5716
|
+
persistentId: z.ZodString;
|
|
4952
5717
|
origin: z.ZodObject<{
|
|
4953
5718
|
sourceId: z.ZodString;
|
|
4954
5719
|
fileId: z.ZodOptional<z.ZodString>;
|
|
@@ -4992,8 +5757,8 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
4992
5757
|
name: string;
|
|
4993
5758
|
description?: string | undefined;
|
|
4994
5759
|
};
|
|
4995
|
-
persistentId: string;
|
|
4996
5760
|
designSystemVersionId: string;
|
|
5761
|
+
persistentId: string;
|
|
4997
5762
|
data: {
|
|
4998
5763
|
figmaNodeId: string;
|
|
4999
5764
|
isValid: boolean;
|
|
@@ -5015,8 +5780,8 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
5015
5780
|
name: string;
|
|
5016
5781
|
description?: string | undefined;
|
|
5017
5782
|
};
|
|
5018
|
-
persistentId: string;
|
|
5019
5783
|
designSystemVersionId: string;
|
|
5784
|
+
persistentId: string;
|
|
5020
5785
|
data: {
|
|
5021
5786
|
figmaNodeId: string;
|
|
5022
5787
|
isValid: boolean;
|
|
@@ -5041,8 +5806,8 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
5041
5806
|
name: string;
|
|
5042
5807
|
description?: string | undefined;
|
|
5043
5808
|
};
|
|
5044
|
-
persistentId: string;
|
|
5045
5809
|
designSystemVersionId: string;
|
|
5810
|
+
persistentId: string;
|
|
5046
5811
|
data: {
|
|
5047
5812
|
figmaNodeId: string;
|
|
5048
5813
|
isValid: boolean;
|
|
@@ -5067,8 +5832,8 @@ declare const DTOFigmaNodeRenderActionOutput: z.ZodObject<{
|
|
|
5067
5832
|
name: string;
|
|
5068
5833
|
description?: string | undefined;
|
|
5069
5834
|
};
|
|
5070
|
-
persistentId: string;
|
|
5071
5835
|
designSystemVersionId: string;
|
|
5836
|
+
persistentId: string;
|
|
5072
5837
|
data: {
|
|
5073
5838
|
figmaNodeId: string;
|
|
5074
5839
|
isValid: boolean;
|
|
@@ -5112,6 +5877,280 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
|
5112
5877
|
}>;
|
|
5113
5878
|
type DTOFigmaNodeRenderActionInput = z.infer<typeof DTOFigmaNodeRenderActionInput>;
|
|
5114
5879
|
|
|
5880
|
+
declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
5881
|
+
id: z.ZodString;
|
|
5882
|
+
designSystemVersionId: z.ZodString;
|
|
5883
|
+
meta: z.ZodObject<{
|
|
5884
|
+
name: z.ZodString;
|
|
5885
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5886
|
+
}, "strip", z.ZodTypeAny, {
|
|
5887
|
+
name: string;
|
|
5888
|
+
description?: string | undefined;
|
|
5889
|
+
}, {
|
|
5890
|
+
name: string;
|
|
5891
|
+
description?: string | undefined;
|
|
5892
|
+
}>;
|
|
5893
|
+
persistentId: z.ZodString;
|
|
5894
|
+
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
5895
|
+
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
5896
|
+
codeName: z.ZodString;
|
|
5897
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5898
|
+
id: z.ZodString;
|
|
5899
|
+
name: z.ZodString;
|
|
5900
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
5901
|
+
value: z.ZodString;
|
|
5902
|
+
}, "strip", z.ZodTypeAny, {
|
|
5903
|
+
value: string;
|
|
5904
|
+
}, {
|
|
5905
|
+
value: string;
|
|
5906
|
+
}>>;
|
|
5907
|
+
}, "strip", z.ZodTypeAny, {
|
|
5908
|
+
id: string;
|
|
5909
|
+
name: string;
|
|
5910
|
+
backgroundColor?: {
|
|
5911
|
+
value: string;
|
|
5912
|
+
} | undefined;
|
|
5913
|
+
}, {
|
|
5914
|
+
id: string;
|
|
5915
|
+
name: string;
|
|
5916
|
+
backgroundColor?: {
|
|
5917
|
+
value: string;
|
|
5918
|
+
} | undefined;
|
|
5919
|
+
}>, "many">>;
|
|
5920
|
+
linkElementType: z.ZodOptional<z.ZodEnum<["FigmaComponent", "DocumentationPage"]>>;
|
|
5921
|
+
}, "strip", z.ZodTypeAny, {
|
|
5922
|
+
id: string;
|
|
5923
|
+
meta: {
|
|
5924
|
+
name: string;
|
|
5925
|
+
description?: string | undefined;
|
|
5926
|
+
};
|
|
5927
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
5928
|
+
designSystemVersionId: string;
|
|
5929
|
+
persistentId: string;
|
|
5930
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
5931
|
+
codeName: string;
|
|
5932
|
+
options?: {
|
|
5933
|
+
id: string;
|
|
5934
|
+
name: string;
|
|
5935
|
+
backgroundColor?: {
|
|
5936
|
+
value: string;
|
|
5937
|
+
} | undefined;
|
|
5938
|
+
}[] | undefined;
|
|
5939
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
5940
|
+
}, {
|
|
5941
|
+
id: string;
|
|
5942
|
+
meta: {
|
|
5943
|
+
name: string;
|
|
5944
|
+
description?: string | undefined;
|
|
5945
|
+
};
|
|
5946
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
5947
|
+
designSystemVersionId: string;
|
|
5948
|
+
persistentId: string;
|
|
5949
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
5950
|
+
codeName: string;
|
|
5951
|
+
options?: {
|
|
5952
|
+
id: string;
|
|
5953
|
+
name: string;
|
|
5954
|
+
backgroundColor?: {
|
|
5955
|
+
value: string;
|
|
5956
|
+
} | undefined;
|
|
5957
|
+
}[] | undefined;
|
|
5958
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
5959
|
+
}>;
|
|
5960
|
+
type DTOElementPropertyDefinition = z.infer<typeof DTOElementPropertyDefinition>;
|
|
5961
|
+
declare const DTOElementPropertyDefinitionsGetResponse: z.ZodObject<{
|
|
5962
|
+
definitions: z.ZodArray<z.ZodObject<{
|
|
5963
|
+
id: z.ZodString;
|
|
5964
|
+
designSystemVersionId: z.ZodString;
|
|
5965
|
+
meta: z.ZodObject<{
|
|
5966
|
+
name: z.ZodString;
|
|
5967
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5968
|
+
}, "strip", z.ZodTypeAny, {
|
|
5969
|
+
name: string;
|
|
5970
|
+
description?: string | undefined;
|
|
5971
|
+
}, {
|
|
5972
|
+
name: string;
|
|
5973
|
+
description?: string | undefined;
|
|
5974
|
+
}>;
|
|
5975
|
+
persistentId: z.ZodString;
|
|
5976
|
+
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
5977
|
+
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
5978
|
+
codeName: z.ZodString;
|
|
5979
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5980
|
+
id: z.ZodString;
|
|
5981
|
+
name: z.ZodString;
|
|
5982
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
5983
|
+
value: z.ZodString;
|
|
5984
|
+
}, "strip", z.ZodTypeAny, {
|
|
5985
|
+
value: string;
|
|
5986
|
+
}, {
|
|
5987
|
+
value: string;
|
|
5988
|
+
}>>;
|
|
5989
|
+
}, "strip", z.ZodTypeAny, {
|
|
5990
|
+
id: string;
|
|
5991
|
+
name: string;
|
|
5992
|
+
backgroundColor?: {
|
|
5993
|
+
value: string;
|
|
5994
|
+
} | undefined;
|
|
5995
|
+
}, {
|
|
5996
|
+
id: string;
|
|
5997
|
+
name: string;
|
|
5998
|
+
backgroundColor?: {
|
|
5999
|
+
value: string;
|
|
6000
|
+
} | undefined;
|
|
6001
|
+
}>, "many">>;
|
|
6002
|
+
linkElementType: z.ZodOptional<z.ZodEnum<["FigmaComponent", "DocumentationPage"]>>;
|
|
6003
|
+
}, "strip", z.ZodTypeAny, {
|
|
6004
|
+
id: string;
|
|
6005
|
+
meta: {
|
|
6006
|
+
name: string;
|
|
6007
|
+
description?: string | undefined;
|
|
6008
|
+
};
|
|
6009
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
6010
|
+
designSystemVersionId: string;
|
|
6011
|
+
persistentId: string;
|
|
6012
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
6013
|
+
codeName: string;
|
|
6014
|
+
options?: {
|
|
6015
|
+
id: string;
|
|
6016
|
+
name: string;
|
|
6017
|
+
backgroundColor?: {
|
|
6018
|
+
value: string;
|
|
6019
|
+
} | undefined;
|
|
6020
|
+
}[] | undefined;
|
|
6021
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
6022
|
+
}, {
|
|
6023
|
+
id: string;
|
|
6024
|
+
meta: {
|
|
6025
|
+
name: string;
|
|
6026
|
+
description?: string | undefined;
|
|
6027
|
+
};
|
|
6028
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
6029
|
+
designSystemVersionId: string;
|
|
6030
|
+
persistentId: string;
|
|
6031
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
6032
|
+
codeName: string;
|
|
6033
|
+
options?: {
|
|
6034
|
+
id: string;
|
|
6035
|
+
name: string;
|
|
6036
|
+
backgroundColor?: {
|
|
6037
|
+
value: string;
|
|
6038
|
+
} | undefined;
|
|
6039
|
+
}[] | undefined;
|
|
6040
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
6041
|
+
}>, "many">;
|
|
6042
|
+
}, "strip", z.ZodTypeAny, {
|
|
6043
|
+
definitions: {
|
|
6044
|
+
id: string;
|
|
6045
|
+
meta: {
|
|
6046
|
+
name: string;
|
|
6047
|
+
description?: string | undefined;
|
|
6048
|
+
};
|
|
6049
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
6050
|
+
designSystemVersionId: string;
|
|
6051
|
+
persistentId: string;
|
|
6052
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
6053
|
+
codeName: string;
|
|
6054
|
+
options?: {
|
|
6055
|
+
id: string;
|
|
6056
|
+
name: string;
|
|
6057
|
+
backgroundColor?: {
|
|
6058
|
+
value: string;
|
|
6059
|
+
} | undefined;
|
|
6060
|
+
}[] | undefined;
|
|
6061
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
6062
|
+
}[];
|
|
6063
|
+
}, {
|
|
6064
|
+
definitions: {
|
|
6065
|
+
id: string;
|
|
6066
|
+
meta: {
|
|
6067
|
+
name: string;
|
|
6068
|
+
description?: string | undefined;
|
|
6069
|
+
};
|
|
6070
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
6071
|
+
designSystemVersionId: string;
|
|
6072
|
+
persistentId: string;
|
|
6073
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
6074
|
+
codeName: string;
|
|
6075
|
+
options?: {
|
|
6076
|
+
id: string;
|
|
6077
|
+
name: string;
|
|
6078
|
+
backgroundColor?: {
|
|
6079
|
+
value: string;
|
|
6080
|
+
} | undefined;
|
|
6081
|
+
}[] | undefined;
|
|
6082
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
6083
|
+
}[];
|
|
6084
|
+
}>;
|
|
6085
|
+
type DTOElementPropertyDefinitionsGetResponse = z.infer<typeof DTOElementPropertyDefinitionsGetResponse>;
|
|
6086
|
+
|
|
6087
|
+
declare const DTOElementPropertyValue: z.ZodObject<{
|
|
6088
|
+
id: z.ZodString;
|
|
6089
|
+
designSystemVersionId: z.ZodString;
|
|
6090
|
+
definitionId: z.ZodString;
|
|
6091
|
+
targetElementId: z.ZodString;
|
|
6092
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
6093
|
+
valuePreview: z.ZodOptional<z.ZodString>;
|
|
6094
|
+
}, "strip", z.ZodTypeAny, {
|
|
6095
|
+
id: string;
|
|
6096
|
+
designSystemVersionId: string;
|
|
6097
|
+
definitionId: string;
|
|
6098
|
+
targetElementId: string;
|
|
6099
|
+
value?: string | number | boolean | undefined;
|
|
6100
|
+
valuePreview?: string | undefined;
|
|
6101
|
+
}, {
|
|
6102
|
+
id: string;
|
|
6103
|
+
designSystemVersionId: string;
|
|
6104
|
+
definitionId: string;
|
|
6105
|
+
targetElementId: string;
|
|
6106
|
+
value?: string | number | boolean | undefined;
|
|
6107
|
+
valuePreview?: string | undefined;
|
|
6108
|
+
}>;
|
|
6109
|
+
type DTOElementPropertyValue = z.infer<typeof DTOElementPropertyValue>;
|
|
6110
|
+
declare const DTOElementPropertyValuesGetResponse: z.ZodObject<{
|
|
6111
|
+
values: z.ZodArray<z.ZodObject<{
|
|
6112
|
+
id: z.ZodString;
|
|
6113
|
+
designSystemVersionId: z.ZodString;
|
|
6114
|
+
definitionId: z.ZodString;
|
|
6115
|
+
targetElementId: z.ZodString;
|
|
6116
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
6117
|
+
valuePreview: z.ZodOptional<z.ZodString>;
|
|
6118
|
+
}, "strip", z.ZodTypeAny, {
|
|
6119
|
+
id: string;
|
|
6120
|
+
designSystemVersionId: string;
|
|
6121
|
+
definitionId: string;
|
|
6122
|
+
targetElementId: string;
|
|
6123
|
+
value?: string | number | boolean | undefined;
|
|
6124
|
+
valuePreview?: string | undefined;
|
|
6125
|
+
}, {
|
|
6126
|
+
id: string;
|
|
6127
|
+
designSystemVersionId: string;
|
|
6128
|
+
definitionId: string;
|
|
6129
|
+
targetElementId: string;
|
|
6130
|
+
value?: string | number | boolean | undefined;
|
|
6131
|
+
valuePreview?: string | undefined;
|
|
6132
|
+
}>, "many">;
|
|
6133
|
+
}, "strip", z.ZodTypeAny, {
|
|
6134
|
+
values: {
|
|
6135
|
+
id: string;
|
|
6136
|
+
designSystemVersionId: string;
|
|
6137
|
+
definitionId: string;
|
|
6138
|
+
targetElementId: string;
|
|
6139
|
+
value?: string | number | boolean | undefined;
|
|
6140
|
+
valuePreview?: string | undefined;
|
|
6141
|
+
}[];
|
|
6142
|
+
}, {
|
|
6143
|
+
values: {
|
|
6144
|
+
id: string;
|
|
6145
|
+
designSystemVersionId: string;
|
|
6146
|
+
definitionId: string;
|
|
6147
|
+
targetElementId: string;
|
|
6148
|
+
value?: string | number | boolean | undefined;
|
|
6149
|
+
valuePreview?: string | undefined;
|
|
6150
|
+
}[];
|
|
6151
|
+
}>;
|
|
6152
|
+
type DTOElementPropertyValuesGetResponse = z.infer<typeof DTOElementPropertyValuesGetResponse>;
|
|
6153
|
+
|
|
5115
6154
|
declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5116
6155
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
5117
6156
|
output: z.ZodObject<{
|
|
@@ -5356,8 +6395,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
5356
6395
|
name: string;
|
|
5357
6396
|
description?: string | undefined;
|
|
5358
6397
|
}>;
|
|
5359
|
-
persistentId: z.ZodString;
|
|
5360
6398
|
designSystemVersionId: z.ZodString;
|
|
6399
|
+
persistentId: z.ZodString;
|
|
5361
6400
|
origin: z.ZodObject<{
|
|
5362
6401
|
sourceId: z.ZodString;
|
|
5363
6402
|
fileId: z.ZodOptional<z.ZodString>;
|
|
@@ -5401,8 +6440,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
5401
6440
|
name: string;
|
|
5402
6441
|
description?: string | undefined;
|
|
5403
6442
|
};
|
|
5404
|
-
persistentId: string;
|
|
5405
6443
|
designSystemVersionId: string;
|
|
6444
|
+
persistentId: string;
|
|
5406
6445
|
data: {
|
|
5407
6446
|
figmaNodeId: string;
|
|
5408
6447
|
isValid: boolean;
|
|
@@ -5424,8 +6463,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
5424
6463
|
name: string;
|
|
5425
6464
|
description?: string | undefined;
|
|
5426
6465
|
};
|
|
5427
|
-
persistentId: string;
|
|
5428
6466
|
designSystemVersionId: string;
|
|
6467
|
+
persistentId: string;
|
|
5429
6468
|
data: {
|
|
5430
6469
|
figmaNodeId: string;
|
|
5431
6470
|
isValid: boolean;
|
|
@@ -5450,8 +6489,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
5450
6489
|
name: string;
|
|
5451
6490
|
description?: string | undefined;
|
|
5452
6491
|
};
|
|
5453
|
-
persistentId: string;
|
|
5454
6492
|
designSystemVersionId: string;
|
|
6493
|
+
persistentId: string;
|
|
5455
6494
|
data: {
|
|
5456
6495
|
figmaNodeId: string;
|
|
5457
6496
|
isValid: boolean;
|
|
@@ -5476,8 +6515,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
5476
6515
|
name: string;
|
|
5477
6516
|
description?: string | undefined;
|
|
5478
6517
|
};
|
|
5479
|
-
persistentId: string;
|
|
5480
6518
|
designSystemVersionId: string;
|
|
6519
|
+
persistentId: string;
|
|
5481
6520
|
data: {
|
|
5482
6521
|
figmaNodeId: string;
|
|
5483
6522
|
isValid: boolean;
|
|
@@ -7092,8 +8131,8 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
7092
8131
|
name: string;
|
|
7093
8132
|
description?: string | undefined;
|
|
7094
8133
|
}>;
|
|
7095
|
-
persistentId: z.ZodString;
|
|
7096
8134
|
designSystemVersionId: z.ZodString;
|
|
8135
|
+
persistentId: z.ZodString;
|
|
7097
8136
|
origin: z.ZodObject<{
|
|
7098
8137
|
sourceId: z.ZodString;
|
|
7099
8138
|
fileId: z.ZodOptional<z.ZodString>;
|
|
@@ -7137,8 +8176,8 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
7137
8176
|
name: string;
|
|
7138
8177
|
description?: string | undefined;
|
|
7139
8178
|
};
|
|
7140
|
-
persistentId: string;
|
|
7141
8179
|
designSystemVersionId: string;
|
|
8180
|
+
persistentId: string;
|
|
7142
8181
|
data: {
|
|
7143
8182
|
figmaNodeId: string;
|
|
7144
8183
|
isValid: boolean;
|
|
@@ -7160,8 +8199,8 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
7160
8199
|
name: string;
|
|
7161
8200
|
description?: string | undefined;
|
|
7162
8201
|
};
|
|
7163
|
-
persistentId: string;
|
|
7164
8202
|
designSystemVersionId: string;
|
|
8203
|
+
persistentId: string;
|
|
7165
8204
|
data: {
|
|
7166
8205
|
figmaNodeId: string;
|
|
7167
8206
|
isValid: boolean;
|
|
@@ -7185,8 +8224,8 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
7185
8224
|
name: string;
|
|
7186
8225
|
description?: string | undefined;
|
|
7187
8226
|
};
|
|
7188
|
-
persistentId: string;
|
|
7189
8227
|
designSystemVersionId: string;
|
|
8228
|
+
persistentId: string;
|
|
7190
8229
|
data: {
|
|
7191
8230
|
figmaNodeId: string;
|
|
7192
8231
|
isValid: boolean;
|
|
@@ -7210,8 +8249,8 @@ declare const DTOElementsGetOutput: z.ZodObject<{
|
|
|
7210
8249
|
name: string;
|
|
7211
8250
|
description?: string | undefined;
|
|
7212
8251
|
};
|
|
7213
|
-
persistentId: string;
|
|
7214
8252
|
designSystemVersionId: string;
|
|
8253
|
+
persistentId: string;
|
|
7215
8254
|
data: {
|
|
7216
8255
|
figmaNodeId: string;
|
|
7217
8256
|
isValid: boolean;
|
|
@@ -7353,7 +8392,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
7353
8392
|
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
7354
8393
|
subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
|
|
7355
8394
|
internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
7356
|
-
product: z.ZodEnum<["free", "team", "
|
|
8395
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
7357
8396
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
7358
8397
|
designSystems: z.ZodObject<{
|
|
7359
8398
|
max: z.ZodNumber;
|
|
@@ -7800,7 +8839,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
7800
8839
|
billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
|
|
7801
8840
|
daysUntilDue: z.ZodOptional<z.ZodNumber>;
|
|
7802
8841
|
}, "strip", z.ZodTypeAny, {
|
|
7803
|
-
product: "free" | "team" | "
|
|
8842
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
7804
8843
|
planPriceId: string;
|
|
7805
8844
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
7806
8845
|
seats: number;
|
|
@@ -7922,7 +8961,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
7922
8961
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
7923
8962
|
daysUntilDue?: number | undefined;
|
|
7924
8963
|
}, {
|
|
7925
|
-
product: "free" | "team" | "
|
|
8964
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
7926
8965
|
planPriceId: string;
|
|
7927
8966
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
7928
8967
|
seats: number;
|
|
@@ -8103,7 +9142,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
8103
9142
|
} | undefined;
|
|
8104
9143
|
};
|
|
8105
9144
|
subscription: {
|
|
8106
|
-
product: "free" | "team" | "
|
|
9145
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
8107
9146
|
planPriceId: string;
|
|
8108
9147
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
8109
9148
|
seats: number;
|
|
@@ -8262,7 +9301,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
8262
9301
|
} | null | undefined;
|
|
8263
9302
|
};
|
|
8264
9303
|
subscription: {
|
|
8265
|
-
product: "free" | "team" | "
|
|
9304
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
8266
9305
|
planPriceId: string;
|
|
8267
9306
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
8268
9307
|
seats: number;
|
|
@@ -8425,7 +9464,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
8425
9464
|
} | undefined;
|
|
8426
9465
|
};
|
|
8427
9466
|
subscription: {
|
|
8428
|
-
product: "free" | "team" | "
|
|
9467
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
8429
9468
|
planPriceId: string;
|
|
8430
9469
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
8431
9470
|
seats: number;
|
|
@@ -8588,7 +9627,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
8588
9627
|
} | null | undefined;
|
|
8589
9628
|
};
|
|
8590
9629
|
subscription: {
|
|
8591
|
-
product: "free" | "team" | "
|
|
9630
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
8592
9631
|
planPriceId: string;
|
|
8593
9632
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
8594
9633
|
seats: number;
|
|
@@ -8846,7 +9885,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
8846
9885
|
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
8847
9886
|
subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
|
|
8848
9887
|
internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
8849
|
-
product: z.ZodEnum<["free", "team", "
|
|
9888
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
8850
9889
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
8851
9890
|
designSystems: z.ZodObject<{
|
|
8852
9891
|
max: z.ZodNumber;
|
|
@@ -9293,7 +10332,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
9293
10332
|
billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
|
|
9294
10333
|
daysUntilDue: z.ZodOptional<z.ZodNumber>;
|
|
9295
10334
|
}, "strip", z.ZodTypeAny, {
|
|
9296
|
-
product: "free" | "team" | "
|
|
10335
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
9297
10336
|
planPriceId: string;
|
|
9298
10337
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
9299
10338
|
seats: number;
|
|
@@ -9415,7 +10454,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
9415
10454
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
9416
10455
|
daysUntilDue?: number | undefined;
|
|
9417
10456
|
}, {
|
|
9418
|
-
product: "free" | "team" | "
|
|
10457
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
9419
10458
|
planPriceId: string;
|
|
9420
10459
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
9421
10460
|
seats: number;
|
|
@@ -9596,7 +10635,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
9596
10635
|
} | undefined;
|
|
9597
10636
|
};
|
|
9598
10637
|
subscription: {
|
|
9599
|
-
product: "free" | "team" | "
|
|
10638
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
9600
10639
|
planPriceId: string;
|
|
9601
10640
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
9602
10641
|
seats: number;
|
|
@@ -9755,7 +10794,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
9755
10794
|
} | null | undefined;
|
|
9756
10795
|
};
|
|
9757
10796
|
subscription: {
|
|
9758
|
-
product: "free" | "team" | "
|
|
10797
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
9759
10798
|
planPriceId: string;
|
|
9760
10799
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
9761
10800
|
seats: number;
|
|
@@ -9918,7 +10957,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
9918
10957
|
} | undefined;
|
|
9919
10958
|
};
|
|
9920
10959
|
subscription: {
|
|
9921
|
-
product: "free" | "team" | "
|
|
10960
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
9922
10961
|
planPriceId: string;
|
|
9923
10962
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
9924
10963
|
seats: number;
|
|
@@ -10081,7 +11120,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
10081
11120
|
} | null | undefined;
|
|
10082
11121
|
};
|
|
10083
11122
|
subscription: {
|
|
10084
|
-
product: "free" | "team" | "
|
|
11123
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
10085
11124
|
planPriceId: string;
|
|
10086
11125
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
10087
11126
|
seats: number;
|
|
@@ -10246,7 +11285,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
10246
11285
|
} | undefined;
|
|
10247
11286
|
};
|
|
10248
11287
|
subscription: {
|
|
10249
|
-
product: "free" | "team" | "
|
|
11288
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
10250
11289
|
planPriceId: string;
|
|
10251
11290
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
10252
11291
|
seats: number;
|
|
@@ -10411,7 +11450,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
10411
11450
|
} | null | undefined;
|
|
10412
11451
|
};
|
|
10413
11452
|
subscription: {
|
|
10414
|
-
product: "free" | "team" | "
|
|
11453
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
10415
11454
|
planPriceId: string;
|
|
10416
11455
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
10417
11456
|
seats: number;
|
|
@@ -10705,7 +11744,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
10705
11744
|
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
10706
11745
|
subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
|
|
10707
11746
|
internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
10708
|
-
product: z.ZodEnum<["free", "team", "
|
|
11747
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
10709
11748
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
10710
11749
|
designSystems: z.ZodObject<{
|
|
10711
11750
|
max: z.ZodNumber;
|
|
@@ -11152,7 +12191,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
11152
12191
|
billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
|
|
11153
12192
|
daysUntilDue: z.ZodOptional<z.ZodNumber>;
|
|
11154
12193
|
}, "strip", z.ZodTypeAny, {
|
|
11155
|
-
product: "free" | "team" | "
|
|
12194
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
11156
12195
|
planPriceId: string;
|
|
11157
12196
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
11158
12197
|
seats: number;
|
|
@@ -11274,7 +12313,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
11274
12313
|
billingType?: "Auto" | "Invoice" | undefined;
|
|
11275
12314
|
daysUntilDue?: number | undefined;
|
|
11276
12315
|
}, {
|
|
11277
|
-
product: "free" | "team" | "
|
|
12316
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
11278
12317
|
planPriceId: string;
|
|
11279
12318
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
11280
12319
|
seats: number;
|
|
@@ -11455,7 +12494,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
11455
12494
|
} | undefined;
|
|
11456
12495
|
};
|
|
11457
12496
|
subscription: {
|
|
11458
|
-
product: "free" | "team" | "
|
|
12497
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
11459
12498
|
planPriceId: string;
|
|
11460
12499
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
11461
12500
|
seats: number;
|
|
@@ -11614,7 +12653,7 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
11614
12653
|
} | null | undefined;
|
|
11615
12654
|
};
|
|
11616
12655
|
subscription: {
|
|
11617
|
-
product: "free" | "team" | "
|
|
12656
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
11618
12657
|
planPriceId: string;
|
|
11619
12658
|
planInterval: "daily" | "monthly" | "weekly" | "yearly";
|
|
11620
12659
|
seats: number;
|
|
@@ -11751,6 +12790,14 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
11751
12790
|
}>;
|
|
11752
12791
|
type DTOWorkspace = z.infer<typeof DTOWorkspace>;
|
|
11753
12792
|
|
|
12793
|
+
declare function designSystemBrandToDto(brand: Brand): DTOBrand;
|
|
12794
|
+
|
|
12795
|
+
declare function elementPropertyDefinitionToDto(elementProperyDefinition: ElementPropertyDefinition): DTOElementPropertyDefinition;
|
|
12796
|
+
|
|
12797
|
+
declare function elementPropertyValueToDto(elementPropertyValue: ElementPropertyValue): DTOElementPropertyValue;
|
|
12798
|
+
|
|
12799
|
+
declare function elementViewToDto(elementView: ElementView, columns: ElementViewColumn[]): DTOElementView;
|
|
12800
|
+
|
|
11754
12801
|
declare function documentationElementsToHierarchyDto(docPages: DocumentationPageV2[], docGroups: ElementGroup[]): DTODocumentationHierarchyV2;
|
|
11755
12802
|
|
|
11756
12803
|
declare function elementGroupsToDocumentationGroupStructureDTO(groups: ElementGroup[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupStructureV2[];
|
|
@@ -11768,6 +12815,8 @@ declare function documentationPagesToDTOV1(pages: DocumentationPageV1[], groups:
|
|
|
11768
12815
|
declare function documentationPagesToStructureDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[]): DTODocumentationPageStructureV2[];
|
|
11769
12816
|
declare function documentationPagesToDTOV2(pages: DocumentationPageV2[], groups: ElementGroup[]): DTODocumentationPageV2[];
|
|
11770
12817
|
|
|
12818
|
+
declare function designSystemVersionToDto(version: DesignSystemVersion): DTODesignSystemVersion;
|
|
12819
|
+
|
|
11771
12820
|
declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
11772
12821
|
definitions: z.ZodArray<z.ZodObject<{
|
|
11773
12822
|
id: z.ZodString;
|
|
@@ -11787,14 +12836,14 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
11787
12836
|
variantOptions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
11788
12837
|
}, "strip", z.ZodTypeAny, {
|
|
11789
12838
|
id: string;
|
|
11790
|
-
type: "
|
|
12839
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
11791
12840
|
name: string;
|
|
11792
12841
|
description?: string | undefined;
|
|
11793
12842
|
options?: Record<string, any> | undefined;
|
|
11794
12843
|
variantOptions?: Record<string, Record<string, any>> | undefined;
|
|
11795
12844
|
}, {
|
|
11796
12845
|
id: string;
|
|
11797
|
-
type: "
|
|
12846
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
11798
12847
|
name: string;
|
|
11799
12848
|
description?: string | undefined;
|
|
11800
12849
|
options?: Record<string, any> | undefined;
|
|
@@ -11890,7 +12939,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
11890
12939
|
}, "strip", z.ZodTypeAny, {
|
|
11891
12940
|
properties: {
|
|
11892
12941
|
id: string;
|
|
11893
|
-
type: "
|
|
12942
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
11894
12943
|
name: string;
|
|
11895
12944
|
description?: string | undefined;
|
|
11896
12945
|
options?: Record<string, any> | undefined;
|
|
@@ -11929,7 +12978,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
11929
12978
|
}, {
|
|
11930
12979
|
properties: {
|
|
11931
12980
|
id: string;
|
|
11932
|
-
type: "
|
|
12981
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
11933
12982
|
name: string;
|
|
11934
12983
|
description?: string | undefined;
|
|
11935
12984
|
options?: Record<string, any> | undefined;
|
|
@@ -11989,7 +13038,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
11989
13038
|
maxSelected: number;
|
|
11990
13039
|
}>>;
|
|
11991
13040
|
}, "strip", z.ZodTypeAny, {
|
|
11992
|
-
dataType: "
|
|
13041
|
+
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
11993
13042
|
items?: {
|
|
11994
13043
|
numberOfItems: number;
|
|
11995
13044
|
allowLinks: boolean;
|
|
@@ -11999,7 +13048,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
11999
13048
|
maxSelected: number;
|
|
12000
13049
|
} | undefined;
|
|
12001
13050
|
}, {
|
|
12002
|
-
dataType: "
|
|
13051
|
+
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
12003
13052
|
items?: {
|
|
12004
13053
|
numberOfItems: number;
|
|
12005
13054
|
allowLinks: boolean;
|
|
@@ -12054,7 +13103,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
12054
13103
|
item: {
|
|
12055
13104
|
properties: {
|
|
12056
13105
|
id: string;
|
|
12057
|
-
type: "
|
|
13106
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
12058
13107
|
name: string;
|
|
12059
13108
|
description?: string | undefined;
|
|
12060
13109
|
options?: Record<string, any> | undefined;
|
|
@@ -12093,7 +13142,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
12093
13142
|
};
|
|
12094
13143
|
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
12095
13144
|
behavior: {
|
|
12096
|
-
dataType: "
|
|
13145
|
+
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
12097
13146
|
items?: {
|
|
12098
13147
|
numberOfItems: number;
|
|
12099
13148
|
allowLinks: boolean;
|
|
@@ -12125,7 +13174,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
12125
13174
|
item: {
|
|
12126
13175
|
properties: {
|
|
12127
13176
|
id: string;
|
|
12128
|
-
type: "
|
|
13177
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
12129
13178
|
name: string;
|
|
12130
13179
|
description?: string | undefined;
|
|
12131
13180
|
options?: Record<string, any> | undefined;
|
|
@@ -12164,7 +13213,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
12164
13213
|
};
|
|
12165
13214
|
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
12166
13215
|
behavior: {
|
|
12167
|
-
dataType: "
|
|
13216
|
+
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
12168
13217
|
items?: {
|
|
12169
13218
|
numberOfItems: number;
|
|
12170
13219
|
allowLinks: boolean;
|
|
@@ -12198,7 +13247,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
12198
13247
|
item: {
|
|
12199
13248
|
properties: {
|
|
12200
13249
|
id: string;
|
|
12201
|
-
type: "
|
|
13250
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
12202
13251
|
name: string;
|
|
12203
13252
|
description?: string | undefined;
|
|
12204
13253
|
options?: Record<string, any> | undefined;
|
|
@@ -12237,7 +13286,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
12237
13286
|
};
|
|
12238
13287
|
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
12239
13288
|
behavior: {
|
|
12240
|
-
dataType: "
|
|
13289
|
+
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
12241
13290
|
items?: {
|
|
12242
13291
|
numberOfItems: number;
|
|
12243
13292
|
allowLinks: boolean;
|
|
@@ -12271,7 +13320,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
12271
13320
|
item: {
|
|
12272
13321
|
properties: {
|
|
12273
13322
|
id: string;
|
|
12274
|
-
type: "
|
|
13323
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
12275
13324
|
name: string;
|
|
12276
13325
|
description?: string | undefined;
|
|
12277
13326
|
options?: Record<string, any> | undefined;
|
|
@@ -12310,7 +13359,7 @@ declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
|
12310
13359
|
};
|
|
12311
13360
|
category: "Text" | "Code" | "Embed" | "Layout" | "Media" | "Figma" | "Guidelines" | "Tokens" | "Components" | "Assets" | "Data" | "Other";
|
|
12312
13361
|
behavior: {
|
|
12313
|
-
dataType: "
|
|
13362
|
+
dataType: "Token" | "Component" | "FigmaNode" | "Asset" | "Item";
|
|
12314
13363
|
items?: {
|
|
12315
13364
|
numberOfItems: number;
|
|
12316
13365
|
allowLinks: boolean;
|
|
@@ -14991,7 +16040,7 @@ declare const BlockParsingUtils: {
|
|
|
14991
16040
|
declare const BlockDefinitionUtils: {
|
|
14992
16041
|
firstRichTextProperty(definition: PageBlockDefinition): {
|
|
14993
16042
|
id: string;
|
|
14994
|
-
type: "
|
|
16043
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
14995
16044
|
name: string;
|
|
14996
16045
|
description?: string | undefined;
|
|
14997
16046
|
options?: Record<string, any> | undefined;
|
|
@@ -14999,7 +16048,7 @@ declare const BlockDefinitionUtils: {
|
|
|
14999
16048
|
} | undefined;
|
|
15000
16049
|
firstMultiRichTextProperty(definition: PageBlockDefinition): {
|
|
15001
16050
|
id: string;
|
|
15002
|
-
type: "
|
|
16051
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
15003
16052
|
name: string;
|
|
15004
16053
|
description?: string | undefined;
|
|
15005
16054
|
options?: Record<string, any> | undefined;
|
|
@@ -15007,7 +16056,7 @@ declare const BlockDefinitionUtils: {
|
|
|
15007
16056
|
} | undefined;
|
|
15008
16057
|
firstTableProperty(definition: PageBlockDefinition): {
|
|
15009
16058
|
id: string;
|
|
15010
|
-
type: "
|
|
16059
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
15011
16060
|
name: string;
|
|
15012
16061
|
description?: string | undefined;
|
|
15013
16062
|
options?: Record<string, any> | undefined;
|
|
@@ -15015,7 +16064,7 @@ declare const BlockDefinitionUtils: {
|
|
|
15015
16064
|
} | undefined;
|
|
15016
16065
|
firstEmbedProperty(definition: PageBlockDefinition): {
|
|
15017
16066
|
id: string;
|
|
15018
|
-
type: "
|
|
16067
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
15019
16068
|
name: string;
|
|
15020
16069
|
description?: string | undefined;
|
|
15021
16070
|
options?: Record<string, any> | undefined;
|
|
@@ -15023,7 +16072,7 @@ declare const BlockDefinitionUtils: {
|
|
|
15023
16072
|
} | undefined;
|
|
15024
16073
|
richTextProperty(definition: PageBlockDefinition, propertyKey: string): {
|
|
15025
16074
|
id: string;
|
|
15026
|
-
type: "
|
|
16075
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
15027
16076
|
name: string;
|
|
15028
16077
|
description?: string | undefined;
|
|
15029
16078
|
options?: Record<string, any> | undefined;
|
|
@@ -15031,7 +16080,7 @@ declare const BlockDefinitionUtils: {
|
|
|
15031
16080
|
};
|
|
15032
16081
|
property(definition: PageBlockDefinition, propertyKey: string, expectedPropertyType?: PageBlockDefinitionPropertyType): {
|
|
15033
16082
|
id: string;
|
|
15034
|
-
type: "
|
|
16083
|
+
type: "Token" | "Component" | "Text" | "Number" | "Boolean" | "URL" | "FigmaNode" | "Image" | "Color" | "RichText" | "MultiRichText" | "SingleSelect" | "MultiSelect" | "TokenType" | "TokenProperty" | "ComponentProperty" | "Asset" | "AssetProperty" | "EmbedURL" | "Markdown" | "Code" | "CodeSandbox" | "Table" | "Divider" | "Storybook";
|
|
15035
16084
|
name: string;
|
|
15036
16085
|
description?: string | undefined;
|
|
15037
16086
|
options?: Record<string, any> | undefined;
|
|
@@ -15039,4 +16088,4 @@ declare const BlockDefinitionUtils: {
|
|
|
15039
16088
|
};
|
|
15040
16089
|
};
|
|
15041
16090
|
|
|
15042
|
-
export { BlockDefinitionUtils, BlockParsingUtils, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignSystem, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageStructureV2, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceRole, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, WorkspaceConfigurationPayload, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTO, elementGroupsToDocumentationGroupStructureDTO, getMockPageBlockDefinitions, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
16091
|
+
export { BlockDefinitionUtils, BlockParsingUtils, DTOBrand, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignSystem, DTODesignSystemVersion, DTODesignSystemVersionGetResponse, DTODesignSystemVersionsListResponse, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupStructureV2, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, 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, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOLiveblocksAuthRequest, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceRole, DocumentationPageEditorModel, DocumentationPageV1DTO, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, WorkspaceConfigurationPayload, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, designSystemBrandToDto, designSystemVersionToDto, documentationElementsToHierarchyDto, documentationHierarchyToYjs, documentationPagesToDTOV1, documentationPagesToDTOV2, documentationPagesToStructureDTOV2, elementGroupsToDocumentationGroupDTO, elementGroupsToDocumentationGroupStructureDTO, elementPropertyDefinitionToDto, elementPropertyValueToDto, elementViewToDto, getMockPageBlockDefinitions, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYXmlFragment, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|