@supernova-studio/model 0.47.49 → 0.47.50
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 +316 -252
- package/dist/index.d.ts +316 -252
- package/dist/index.js +551 -518
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1902 -1869
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/components/asset-rendering.ts +22 -0
- package/src/dsm/components/index.ts +1 -0
- package/src/dsm/import/image.ts +16 -1
- package/src/dsm/index.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -453,6 +453,26 @@ function isImportedAsset(asset) {
|
|
|
453
453
|
return !!asset.originKey;
|
|
454
454
|
}
|
|
455
455
|
|
|
456
|
+
// src/dsm/components/asset-rendering.ts
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
// src/dsm/import/support/figma-files.ts
|
|
460
|
+
|
|
461
|
+
var FigmaFileDownloadScope = _zod.z.object({
|
|
462
|
+
styles: _zod.z.boolean(),
|
|
463
|
+
components: _zod.z.boolean(),
|
|
464
|
+
currentVersion: _zod.z.literal("__latest__").nullable(),
|
|
465
|
+
publishedVersion: _zod.z.string().nullable(),
|
|
466
|
+
downloadChunkSize: _zod.z.number().optional(),
|
|
467
|
+
maxFileDepth: _zod.z.number().optional()
|
|
468
|
+
});
|
|
469
|
+
var FigmaFileAccessData = _zod.z.object({
|
|
470
|
+
accessToken: _zod.z.string()
|
|
471
|
+
});
|
|
472
|
+
|
|
473
|
+
// src/dsm/import/support/import-context.ts
|
|
474
|
+
|
|
475
|
+
|
|
456
476
|
// src/dsm/data-sources/data-source.ts
|
|
457
477
|
|
|
458
478
|
|
|
@@ -2171,155 +2191,440 @@ var ImportJob = Entity.extend({
|
|
|
2171
2191
|
importContextCleanedUp: _zod.z.boolean()
|
|
2172
2192
|
});
|
|
2173
2193
|
|
|
2174
|
-
// src/dsm/
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2194
|
+
// src/dsm/import/support/import-context.ts
|
|
2195
|
+
var ImportFunctionInput = _zod.z.object({
|
|
2196
|
+
importJobId: _zod.z.string(),
|
|
2197
|
+
importContextId: _zod.z.string(),
|
|
2198
|
+
designSystemId: _zod.z.string().optional()
|
|
2199
|
+
});
|
|
2200
|
+
var ImportedFigmaSourceData = _zod.z.object({
|
|
2201
|
+
sourceId: _zod.z.string(),
|
|
2202
|
+
figmaRemote: DataSourceFigmaRemote
|
|
2203
|
+
});
|
|
2204
|
+
var FigmaImportBaseContext = _zod.z.object({
|
|
2205
|
+
designSystemId: _zod.z.string(),
|
|
2206
|
+
/**
|
|
2207
|
+
* Data required for accessing Figma files. This should contain access data for all file ids
|
|
2208
|
+
* mentioned in the `importedSourceDataBySourceId`
|
|
2209
|
+
*
|
|
2210
|
+
* fileId: file data
|
|
2211
|
+
*/
|
|
2212
|
+
fileAccessByFileId: _zod.z.record(FigmaFileAccessData),
|
|
2213
|
+
/**
|
|
2214
|
+
* Figma source data for which import was requested
|
|
2215
|
+
*
|
|
2216
|
+
* sourceId: source data
|
|
2217
|
+
*/
|
|
2218
|
+
importedSourceDataBySourceId: _zod.z.record(ImportedFigmaSourceData),
|
|
2219
|
+
/**
|
|
2220
|
+
* Array of warnings that will be written into the import result summary at the end
|
|
2221
|
+
* of import job execution and displayed by the client.
|
|
2222
|
+
*/
|
|
2223
|
+
importWarnings: _zod.z.record(ImportWarning.array()).default({})
|
|
2224
|
+
});
|
|
2225
|
+
var FigmaImportContextWithSourcesState = FigmaImportBaseContext.extend({
|
|
2226
|
+
sourcesWithMissingAccess: _zod.z.array(_zod.z.string()).default([]),
|
|
2227
|
+
shadowOpacityOptional: _zod.z.boolean().default(false)
|
|
2228
|
+
});
|
|
2229
|
+
var ChangedImportedFigmaSourceData = ImportedFigmaSourceData.extend({
|
|
2230
|
+
importMetadata: DataSourceFigmaImportMetadata
|
|
2231
|
+
});
|
|
2232
|
+
var FigmaImportContextWithDownloadScopes = FigmaImportContextWithSourcesState.extend({
|
|
2233
|
+
/**
|
|
2234
|
+
* Describes what to download from each file, this should contain all file id mentioned in
|
|
2235
|
+
* importMetadataBySourceId.
|
|
2236
|
+
*
|
|
2237
|
+
* File id -> file download scope
|
|
2238
|
+
*/
|
|
2239
|
+
fileDownloadScopesByFileId: _zod.z.record(FigmaFileDownloadScope),
|
|
2240
|
+
/**
|
|
2241
|
+
* Sources filtered down to the ones that have changed since last import and therefore need to be
|
|
2242
|
+
* imported again.
|
|
2243
|
+
*
|
|
2244
|
+
* Source id -> import metadata
|
|
2245
|
+
*/
|
|
2246
|
+
changedImportedSourceDataBySourceId: _zod.z.record(ChangedImportedFigmaSourceData)
|
|
2181
2247
|
});
|
|
2182
2248
|
|
|
2183
|
-
// src/dsm/
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
// src/dsm/documentation/block-definitions/item.ts
|
|
2249
|
+
// src/dsm/import/support/import-model-collections.ts
|
|
2187
2250
|
|
|
2188
2251
|
|
|
2189
|
-
// src/dsm/
|
|
2252
|
+
// src/dsm/import/image.ts
|
|
2190
2253
|
|
|
2191
|
-
var
|
|
2192
|
-
var
|
|
2193
|
-
|
|
2194
|
-
var PageBlockDefinitionLayoutResizing = _zod.z.enum(["Fill", "Hug"]);
|
|
2195
|
-
var PageBlockDefinitionLayoutBase = _zod.z.object({
|
|
2196
|
-
type: PageBlockDefinitionLayoutType,
|
|
2197
|
-
gap: PageBlockDefinitionLayoutGap.optional(),
|
|
2198
|
-
columnAlign: PageBlockDefinitionLayoutAlign.optional(),
|
|
2199
|
-
columnResizing: PageBlockDefinitionLayoutResizing.optional()
|
|
2254
|
+
var ImageImportModelType = _zod.z.enum(["Url", "FigmaRender"]);
|
|
2255
|
+
var ImageImportModelBase = _zod.z.object({
|
|
2256
|
+
scope: AssetScope
|
|
2200
2257
|
});
|
|
2201
|
-
var
|
|
2202
|
-
|
|
2258
|
+
var UrlImageImportModel = ImageImportModelBase.extend({
|
|
2259
|
+
type: _zod.z.literal(ImageImportModelType.enum.Url),
|
|
2260
|
+
url: _zod.z.string(),
|
|
2261
|
+
originKey: _zod.z.string(),
|
|
2262
|
+
extension: _zod.z.string()
|
|
2203
2263
|
});
|
|
2204
|
-
var
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
maxColumns: _zod.z.number().optional(),
|
|
2212
|
-
defaultColumns: _zod.z.number().optional(),
|
|
2213
|
-
appearance: PageBlockDefinitionAppearance.optional()
|
|
2264
|
+
var FigmaRenderFormat = _zod.z.enum(["Svg", "Png", "Pdf"]);
|
|
2265
|
+
var FigmaRenderBase = ImageImportModelBase.extend({
|
|
2266
|
+
type: _zod.z.literal(ImageImportModelType.enum.FigmaRender),
|
|
2267
|
+
fileId: _zod.z.string(),
|
|
2268
|
+
fileVersionId: _zod.z.string().optional(),
|
|
2269
|
+
nodeId: _zod.z.string(),
|
|
2270
|
+
originKey: _zod.z.string()
|
|
2214
2271
|
});
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
"RichText",
|
|
2219
|
-
"MultiRichText",
|
|
2220
|
-
"Text",
|
|
2221
|
-
"Boolean",
|
|
2222
|
-
"Number",
|
|
2223
|
-
"SingleSelect",
|
|
2224
|
-
"MultiSelect",
|
|
2225
|
-
"Image",
|
|
2226
|
-
"Token",
|
|
2227
|
-
"TokenType",
|
|
2228
|
-
"TokenProperty",
|
|
2229
|
-
"Component",
|
|
2230
|
-
"ComponentProperty",
|
|
2231
|
-
"Asset",
|
|
2232
|
-
"AssetProperty",
|
|
2233
|
-
"FigmaNode",
|
|
2234
|
-
"EmbedURL",
|
|
2235
|
-
"URL",
|
|
2236
|
-
"Markdown",
|
|
2237
|
-
"Code",
|
|
2238
|
-
"CodeSandbox",
|
|
2239
|
-
"Table",
|
|
2240
|
-
"Divider",
|
|
2241
|
-
"Storybook",
|
|
2242
|
-
"Color",
|
|
2243
|
-
"FigmaComponent"
|
|
2244
|
-
]);
|
|
2245
|
-
var PageBlockDefinitionRichTextPropertyStyle = _zod.z.enum([
|
|
2246
|
-
"Title1",
|
|
2247
|
-
"Title2",
|
|
2248
|
-
"Title3",
|
|
2249
|
-
"Title4",
|
|
2250
|
-
"Title5",
|
|
2251
|
-
"Quote",
|
|
2252
|
-
"Callout",
|
|
2253
|
-
"Default"
|
|
2254
|
-
]);
|
|
2255
|
-
var PageBlockDefinitionMultiRichTextPropertyStyle = _zod.z.enum(["OL", "UL", "Default"]);
|
|
2256
|
-
var PageBlockDefinitionTextPropertyStyle = _zod.z.enum([
|
|
2257
|
-
"Title1",
|
|
2258
|
-
"Title2",
|
|
2259
|
-
"Title3",
|
|
2260
|
-
"Title4",
|
|
2261
|
-
"Title5",
|
|
2262
|
-
"Default",
|
|
2263
|
-
"DefaultBold",
|
|
2264
|
-
"DefaultSemibold",
|
|
2265
|
-
"Small",
|
|
2266
|
-
"SmallBold",
|
|
2267
|
-
"SmallSemibold",
|
|
2268
|
-
"Custom"
|
|
2269
|
-
]);
|
|
2270
|
-
var PageBlockDefinitionTextPropertyColor = _zod.z.enum(["Neutral", "NeutralFaded"]);
|
|
2271
|
-
var PageBlockDefinitionBooleanPropertyStyle = _zod.z.enum(["SegmentedControl", "ToggleButton", "Checkbox"]);
|
|
2272
|
-
var PageBlockDefinitionSingleSelectPropertyStyle = _zod.z.enum([
|
|
2273
|
-
"SegmentedControl",
|
|
2274
|
-
"ToggleButton",
|
|
2275
|
-
"Select",
|
|
2276
|
-
"Checkbox"
|
|
2277
|
-
]);
|
|
2278
|
-
var PageBlockDefinitionSingleSelectPropertyColor = _zod.z.enum([
|
|
2279
|
-
"Green",
|
|
2280
|
-
"Red",
|
|
2281
|
-
"Yellow",
|
|
2282
|
-
"Blue",
|
|
2283
|
-
"Purple",
|
|
2284
|
-
"Orange",
|
|
2285
|
-
"Pink",
|
|
2286
|
-
"Teal",
|
|
2287
|
-
"Brown",
|
|
2288
|
-
"Grey",
|
|
2289
|
-
"LightGrey",
|
|
2290
|
-
"Cyan",
|
|
2291
|
-
"Fuchsia"
|
|
2292
|
-
]);
|
|
2293
|
-
var IconSet = _zod.z.enum([
|
|
2294
|
-
"CheckCircle",
|
|
2295
|
-
"CrossCircle",
|
|
2296
|
-
"Alert"
|
|
2297
|
-
]);
|
|
2298
|
-
var PageBlockDefinitionMultiSelectPropertyStyle = _zod.z.enum(["SegmentedControl", "Select", "Checkbox"]);
|
|
2299
|
-
var PageBlockDefinitionImageAspectRatio = _zod.z.enum(["Auto", "Square", "Landscape", "Portrait", "Wide"]);
|
|
2300
|
-
var PageBlockDefinitionImageWidth = _zod.z.enum(["Full", "Icon", "Small", "Medium", "Large", "Poster"]);
|
|
2301
|
-
var PageBlockDefinitionSelectChoice = _zod.z.object({
|
|
2302
|
-
value: _zod.z.string(),
|
|
2303
|
-
name: _zod.z.string(),
|
|
2304
|
-
icon: IconSet.optional(),
|
|
2305
|
-
customIconUrl: _zod.z.string().optional(),
|
|
2306
|
-
color: PageBlockDefinitionSingleSelectPropertyColor.optional()
|
|
2272
|
+
var FigmaPngRenderImportModel = FigmaRenderBase.extend({
|
|
2273
|
+
format: _zod.z.literal(FigmaRenderFormat.enum.Png),
|
|
2274
|
+
scale: _zod.z.number()
|
|
2307
2275
|
});
|
|
2308
|
-
var
|
|
2309
|
-
|
|
2310
|
-
richTextStyle: PageBlockDefinitionRichTextPropertyStyle.optional()
|
|
2276
|
+
var FigmaSvgRenderImportModel = FigmaRenderBase.extend({
|
|
2277
|
+
format: _zod.z.literal(FigmaRenderFormat.enum.Svg)
|
|
2311
2278
|
});
|
|
2312
|
-
var
|
|
2313
|
-
|
|
2279
|
+
var FigmaRenderImportModel = _zod.z.discriminatedUnion("format", [
|
|
2280
|
+
FigmaPngRenderImportModel,
|
|
2281
|
+
FigmaSvgRenderImportModel
|
|
2282
|
+
]);
|
|
2283
|
+
var ImageImportModel = _zod.z.union([UrlImageImportModel, FigmaRenderImportModel]);
|
|
2284
|
+
function getFigmaRenderFormatFileExtension(format) {
|
|
2285
|
+
switch (format) {
|
|
2286
|
+
case "Pdf":
|
|
2287
|
+
return "pdf";
|
|
2288
|
+
case "Png":
|
|
2289
|
+
return "png";
|
|
2290
|
+
case "Svg":
|
|
2291
|
+
return "svg";
|
|
2292
|
+
}
|
|
2293
|
+
}
|
|
2294
|
+
|
|
2295
|
+
// src/dsm/import/component.ts
|
|
2296
|
+
|
|
2297
|
+
|
|
2298
|
+
// src/dsm/import/base.ts
|
|
2299
|
+
|
|
2300
|
+
var ImportModelBase = _zod.z.object({
|
|
2301
|
+
id: _zod.z.string(),
|
|
2302
|
+
meta: ObjectMeta,
|
|
2303
|
+
origin: DesignElementOrigin,
|
|
2304
|
+
brandPersistentId: _zod.z.string(),
|
|
2305
|
+
sortOrder: _zod.z.number()
|
|
2314
2306
|
});
|
|
2315
|
-
var
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2307
|
+
var ImportModelInputBase = ImportModelBase.omit({
|
|
2308
|
+
brandPersistentId: true,
|
|
2309
|
+
origin: true,
|
|
2310
|
+
sortOrder: true
|
|
2311
|
+
}).extend({
|
|
2312
|
+
originId: _zod.z.string(),
|
|
2313
|
+
originMetadata: _zod.z.record(_zod.z.any())
|
|
2321
2314
|
});
|
|
2322
|
-
|
|
2315
|
+
|
|
2316
|
+
// src/dsm/import/component.ts
|
|
2317
|
+
var ComponentImportModelPart = _zod.z.object({
|
|
2318
|
+
thumbnail: ImageImportModel
|
|
2319
|
+
});
|
|
2320
|
+
var ComponentImportModel = ImportModelBase.extend(ComponentImportModelPart.shape).extend({
|
|
2321
|
+
isAsset: _zod.z.boolean(),
|
|
2322
|
+
svg: FigmaSvgRenderImportModel.optional(),
|
|
2323
|
+
origin: ComponentOrigin
|
|
2324
|
+
});
|
|
2325
|
+
var ComponentImportModelInput = ImportModelInputBase.extend(ComponentImportModelPart.shape).extend({
|
|
2326
|
+
originMetadata: ComponentOriginPart
|
|
2327
|
+
});
|
|
2328
|
+
var AssetImportModelInput = ImportModelInputBase.extend(ComponentImportModelPart.shape).extend({
|
|
2329
|
+
svg: FigmaSvgRenderImportModel,
|
|
2330
|
+
originMetadata: ComponentOriginPart
|
|
2331
|
+
});
|
|
2332
|
+
|
|
2333
|
+
// src/dsm/import/theme.ts
|
|
2334
|
+
|
|
2335
|
+
var ThemeOverrideImportModelBase = DesignTokenTypedData.and(
|
|
2336
|
+
_zod.z.object({
|
|
2337
|
+
id: _zod.z.string(),
|
|
2338
|
+
meta: ObjectMeta
|
|
2339
|
+
})
|
|
2340
|
+
);
|
|
2341
|
+
var ThemeOverrideImportModel = ThemeOverrideImportModelBase.and(
|
|
2342
|
+
_zod.z.object({
|
|
2343
|
+
origin: ThemeOverrideOrigin
|
|
2344
|
+
})
|
|
2345
|
+
);
|
|
2346
|
+
var ThemeOverrideImportModelInput = ThemeOverrideImportModelBase.and(
|
|
2347
|
+
_zod.z.object({
|
|
2348
|
+
originId: _zod.z.string(),
|
|
2349
|
+
originMetadata: ThemeOverrideOriginPart
|
|
2350
|
+
})
|
|
2351
|
+
);
|
|
2352
|
+
var ThemeImportModel = _zod.z.object({
|
|
2353
|
+
meta: ObjectMeta,
|
|
2354
|
+
brandPersistentId: _zod.z.string(),
|
|
2355
|
+
originSource: ThemeOriginSource,
|
|
2356
|
+
overrides: _zod.z.array(ThemeOverrideImportModel),
|
|
2357
|
+
sortOrder: _zod.z.number()
|
|
2358
|
+
});
|
|
2359
|
+
var ThemeImportModelInput = _zod.z.object({
|
|
2360
|
+
meta: ObjectMeta,
|
|
2361
|
+
originObjects: _zod.z.array(ThemeOriginObject),
|
|
2362
|
+
overrides: _zod.z.array(ThemeOverrideImportModelInput)
|
|
2363
|
+
});
|
|
2364
|
+
var ThemeUpdateImportModel = _zod.z.object({
|
|
2365
|
+
themePersistentId: _zod.z.string(),
|
|
2366
|
+
overrides: _zod.z.array(ThemeOverrideImportModel)
|
|
2367
|
+
});
|
|
2368
|
+
var ThemeUpdateImportModelInput = _zod.z.object({
|
|
2369
|
+
themePersistentId: _zod.z.string(),
|
|
2370
|
+
overrides: _zod.z.array(ThemeOverrideImportModelInput)
|
|
2371
|
+
});
|
|
2372
|
+
|
|
2373
|
+
// src/dsm/import/tokens.ts
|
|
2374
|
+
|
|
2375
|
+
var DesignTokenImportModelPart = _zod.z.object({
|
|
2376
|
+
collection: _zod.z.string().optional(),
|
|
2377
|
+
codeSyntax: _zod.z.record(_zod.z.coerce.string()).optional()
|
|
2378
|
+
});
|
|
2379
|
+
var DesignTokenImportModelBase = ImportModelBase.extend(DesignTokenImportModelPart.shape).extend({
|
|
2380
|
+
origin: DesignTokenOrigin
|
|
2381
|
+
});
|
|
2382
|
+
var DesignTokenImportModelInputBase = ImportModelInputBase.extend(DesignTokenImportModelPart.shape).extend({
|
|
2383
|
+
originMetadata: DesignTokenOriginPart
|
|
2384
|
+
});
|
|
2385
|
+
var DesignTokenImportModel = DesignTokenTypedData.and(DesignTokenImportModelBase);
|
|
2386
|
+
var DesignTokenImportModelInput = DesignTokenTypedData.and(DesignTokenImportModelInputBase);
|
|
2387
|
+
function isDesignTokenImportModelOfType(designToken, type) {
|
|
2388
|
+
return designToken.type === type;
|
|
2389
|
+
}
|
|
2390
|
+
function designTokenImportModelTypeFilter(type) {
|
|
2391
|
+
return (designToken) => isDesignTokenImportModelOfType(designToken, type);
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
// src/dsm/import/figma-frames.ts
|
|
2395
|
+
|
|
2396
|
+
var FigmaFileStructureNodeImportModelBase = FigmaFileStructureNodeBase.extend({
|
|
2397
|
+
image: FigmaPngRenderImportModel
|
|
2398
|
+
});
|
|
2399
|
+
var FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModelBase.extend({
|
|
2400
|
+
children: _zod.z.lazy(() => FigmaFileStructureNodeImportModel.array())
|
|
2401
|
+
});
|
|
2402
|
+
var FigmaFileStructureImportModelPart = _zod.z.object({
|
|
2403
|
+
data: _zod.z.object({
|
|
2404
|
+
rootNode: FigmaFileStructureNodeImportModel,
|
|
2405
|
+
assetsInFile: FigmaFileStructureStatistics
|
|
2406
|
+
})
|
|
2407
|
+
});
|
|
2408
|
+
var FigmaFileStructureImportModel = ImportModelBase.extend(FigmaFileStructureImportModelPart.shape).extend({
|
|
2409
|
+
origin: FigmaFileStructureOrigin
|
|
2410
|
+
});
|
|
2411
|
+
var FigmaFileStructureImportModelInput = ImportModelInputBase.extend(
|
|
2412
|
+
FigmaFileStructureImportModelPart.shape
|
|
2413
|
+
).extend({
|
|
2414
|
+
fileVersionId: _zod.z.string()
|
|
2415
|
+
});
|
|
2416
|
+
function figmaFileStructureImportModelToMap(root) {
|
|
2417
|
+
const map = /* @__PURE__ */ new Map();
|
|
2418
|
+
recursiveFigmaFileStructureToMap2(root, map);
|
|
2419
|
+
return map;
|
|
2420
|
+
}
|
|
2421
|
+
function recursiveFigmaFileStructureToMap2(node, map) {
|
|
2422
|
+
map.set(node.id, node);
|
|
2423
|
+
for (const child of node.children)
|
|
2424
|
+
recursiveFigmaFileStructureToMap2(child, map);
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
// src/dsm/import/data-source.ts
|
|
2428
|
+
|
|
2429
|
+
var DataSourceImportModel = _zod.z.object({
|
|
2430
|
+
id: _zod.z.string(),
|
|
2431
|
+
fileName: _zod.z.string().optional(),
|
|
2432
|
+
thumbnailUrl: _zod.z.string().optional()
|
|
2433
|
+
});
|
|
2434
|
+
|
|
2435
|
+
// src/dsm/import/support/import-model-collections.ts
|
|
2436
|
+
var ImportModelInputCollection = _zod.z.object({
|
|
2437
|
+
source: DataSourceImportModel,
|
|
2438
|
+
tokens: _zod.z.array(DesignTokenImportModelInput).default([]),
|
|
2439
|
+
components: _zod.z.array(ComponentImportModelInput).default([]),
|
|
2440
|
+
assets: _zod.z.array(AssetImportModelInput).default([]),
|
|
2441
|
+
themeUpdates: _zod.z.array(ThemeUpdateImportModelInput).default([]),
|
|
2442
|
+
themes: _zod.z.array(ThemeImportModelInput).default([]),
|
|
2443
|
+
figmaFileStructure: FigmaFileStructureImportModelInput.optional()
|
|
2444
|
+
});
|
|
2445
|
+
var ImportModelCollection = _zod.z.object({
|
|
2446
|
+
sources: _zod.z.array(DataSourceImportModel),
|
|
2447
|
+
tokens: _zod.z.array(DesignTokenImportModel).default([]),
|
|
2448
|
+
components: _zod.z.array(ComponentImportModel).default([]),
|
|
2449
|
+
themeUpdates: _zod.z.array(ThemeUpdateImportModel).default([]),
|
|
2450
|
+
themes: _zod.z.array(ThemeImportModel).default([]),
|
|
2451
|
+
figmaFileStructures: _zod.z.array(FigmaFileStructureImportModel)
|
|
2452
|
+
});
|
|
2453
|
+
function addImportModelCollections(lhs, rhs) {
|
|
2454
|
+
return {
|
|
2455
|
+
sources: [...lhs.sources, ...rhs.sources],
|
|
2456
|
+
tokens: [...lhs.tokens, ...rhs.tokens],
|
|
2457
|
+
components: [...lhs.components, ...rhs.components],
|
|
2458
|
+
themeUpdates: [...lhs.themeUpdates, ...rhs.themeUpdates],
|
|
2459
|
+
themes: [...lhs.themes, ...rhs.themes],
|
|
2460
|
+
figmaFileStructures: [...lhs.figmaFileStructures, ...rhs.figmaFileStructures]
|
|
2461
|
+
};
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
// src/dsm/components/asset-rendering.ts
|
|
2465
|
+
var AssetRenderConfiguration = _zod.z.object({
|
|
2466
|
+
prefix: _zod.z.string().optional(),
|
|
2467
|
+
suffix: _zod.z.string().optional(),
|
|
2468
|
+
scale: _zod.z.number(),
|
|
2469
|
+
format: FigmaRenderFormat
|
|
2470
|
+
});
|
|
2471
|
+
var RenderedAssetFile = _zod.z.object({
|
|
2472
|
+
assetPersistentId: _zod.z.string(),
|
|
2473
|
+
assetName: _zod.z.string(),
|
|
2474
|
+
renderedImageFileName: _zod.z.string(),
|
|
2475
|
+
renderedImageUrl: _zod.z.string(),
|
|
2476
|
+
settings: AssetRenderConfiguration
|
|
2477
|
+
});
|
|
2478
|
+
|
|
2479
|
+
// src/dsm/documentation/block-definitions/aux.ts
|
|
2480
|
+
|
|
2481
|
+
var PageBlockDefinitionAppearance = _zod.z.object({
|
|
2482
|
+
isBordered: _zod.z.boolean().optional(),
|
|
2483
|
+
hasBackground: _zod.z.boolean().optional(),
|
|
2484
|
+
isEditorPresentationDifferent: _zod.z.boolean().optional(),
|
|
2485
|
+
showBlockHeaderInEditor: _zod.z.boolean().optional()
|
|
2486
|
+
});
|
|
2487
|
+
|
|
2488
|
+
// src/dsm/documentation/block-definitions/definition.ts
|
|
2489
|
+
|
|
2490
|
+
|
|
2491
|
+
// src/dsm/documentation/block-definitions/item.ts
|
|
2492
|
+
|
|
2493
|
+
|
|
2494
|
+
// src/dsm/documentation/block-definitions/variant.ts
|
|
2495
|
+
|
|
2496
|
+
var PageBlockDefinitionLayoutType = _zod.z.enum(["Column", "Row"]);
|
|
2497
|
+
var PageBlockDefinitionLayoutGap = _zod.z.enum(["Small", "Medium", "Large", "None"]);
|
|
2498
|
+
var PageBlockDefinitionLayoutAlign = _zod.z.enum(["Start", "Center", "End"]);
|
|
2499
|
+
var PageBlockDefinitionLayoutResizing = _zod.z.enum(["Fill", "Hug"]);
|
|
2500
|
+
var PageBlockDefinitionLayoutBase = _zod.z.object({
|
|
2501
|
+
type: PageBlockDefinitionLayoutType,
|
|
2502
|
+
gap: PageBlockDefinitionLayoutGap.optional(),
|
|
2503
|
+
columnAlign: PageBlockDefinitionLayoutAlign.optional(),
|
|
2504
|
+
columnResizing: PageBlockDefinitionLayoutResizing.optional()
|
|
2505
|
+
});
|
|
2506
|
+
var PageBlockDefinitionLayout = PageBlockDefinitionLayoutBase.extend({
|
|
2507
|
+
children: _zod.z.lazy(() => _zod.z.array(PageBlockDefinitionLayout.or(_zod.z.string())))
|
|
2508
|
+
});
|
|
2509
|
+
var PageBlockDefinitionVariant = _zod.z.object({
|
|
2510
|
+
id: _zod.z.string(),
|
|
2511
|
+
name: _zod.z.string(),
|
|
2512
|
+
image: _zod.z.string().optional(),
|
|
2513
|
+
description: _zod.z.string().optional(),
|
|
2514
|
+
documentationLink: _zod.z.string().optional(),
|
|
2515
|
+
layout: PageBlockDefinitionLayout,
|
|
2516
|
+
maxColumns: _zod.z.number().optional(),
|
|
2517
|
+
defaultColumns: _zod.z.number().optional(),
|
|
2518
|
+
appearance: PageBlockDefinitionAppearance.optional()
|
|
2519
|
+
});
|
|
2520
|
+
|
|
2521
|
+
// src/dsm/documentation/block-definitions/item.ts
|
|
2522
|
+
var PageBlockDefinitionPropertyType = _zod.z.enum([
|
|
2523
|
+
"RichText",
|
|
2524
|
+
"MultiRichText",
|
|
2525
|
+
"Text",
|
|
2526
|
+
"Boolean",
|
|
2527
|
+
"Number",
|
|
2528
|
+
"SingleSelect",
|
|
2529
|
+
"MultiSelect",
|
|
2530
|
+
"Image",
|
|
2531
|
+
"Token",
|
|
2532
|
+
"TokenType",
|
|
2533
|
+
"TokenProperty",
|
|
2534
|
+
"Component",
|
|
2535
|
+
"ComponentProperty",
|
|
2536
|
+
"Asset",
|
|
2537
|
+
"AssetProperty",
|
|
2538
|
+
"FigmaNode",
|
|
2539
|
+
"EmbedURL",
|
|
2540
|
+
"URL",
|
|
2541
|
+
"Markdown",
|
|
2542
|
+
"Code",
|
|
2543
|
+
"CodeSandbox",
|
|
2544
|
+
"Table",
|
|
2545
|
+
"Divider",
|
|
2546
|
+
"Storybook",
|
|
2547
|
+
"Color",
|
|
2548
|
+
"FigmaComponent"
|
|
2549
|
+
]);
|
|
2550
|
+
var PageBlockDefinitionRichTextPropertyStyle = _zod.z.enum([
|
|
2551
|
+
"Title1",
|
|
2552
|
+
"Title2",
|
|
2553
|
+
"Title3",
|
|
2554
|
+
"Title4",
|
|
2555
|
+
"Title5",
|
|
2556
|
+
"Quote",
|
|
2557
|
+
"Callout",
|
|
2558
|
+
"Default"
|
|
2559
|
+
]);
|
|
2560
|
+
var PageBlockDefinitionMultiRichTextPropertyStyle = _zod.z.enum(["OL", "UL", "Default"]);
|
|
2561
|
+
var PageBlockDefinitionTextPropertyStyle = _zod.z.enum([
|
|
2562
|
+
"Title1",
|
|
2563
|
+
"Title2",
|
|
2564
|
+
"Title3",
|
|
2565
|
+
"Title4",
|
|
2566
|
+
"Title5",
|
|
2567
|
+
"Default",
|
|
2568
|
+
"DefaultBold",
|
|
2569
|
+
"DefaultSemibold",
|
|
2570
|
+
"Small",
|
|
2571
|
+
"SmallBold",
|
|
2572
|
+
"SmallSemibold",
|
|
2573
|
+
"Custom"
|
|
2574
|
+
]);
|
|
2575
|
+
var PageBlockDefinitionTextPropertyColor = _zod.z.enum(["Neutral", "NeutralFaded"]);
|
|
2576
|
+
var PageBlockDefinitionBooleanPropertyStyle = _zod.z.enum(["SegmentedControl", "ToggleButton", "Checkbox"]);
|
|
2577
|
+
var PageBlockDefinitionSingleSelectPropertyStyle = _zod.z.enum([
|
|
2578
|
+
"SegmentedControl",
|
|
2579
|
+
"ToggleButton",
|
|
2580
|
+
"Select",
|
|
2581
|
+
"Checkbox"
|
|
2582
|
+
]);
|
|
2583
|
+
var PageBlockDefinitionSingleSelectPropertyColor = _zod.z.enum([
|
|
2584
|
+
"Green",
|
|
2585
|
+
"Red",
|
|
2586
|
+
"Yellow",
|
|
2587
|
+
"Blue",
|
|
2588
|
+
"Purple",
|
|
2589
|
+
"Orange",
|
|
2590
|
+
"Pink",
|
|
2591
|
+
"Teal",
|
|
2592
|
+
"Brown",
|
|
2593
|
+
"Grey",
|
|
2594
|
+
"LightGrey",
|
|
2595
|
+
"Cyan",
|
|
2596
|
+
"Fuchsia"
|
|
2597
|
+
]);
|
|
2598
|
+
var IconSet = _zod.z.enum([
|
|
2599
|
+
"CheckCircle",
|
|
2600
|
+
"CrossCircle",
|
|
2601
|
+
"Alert"
|
|
2602
|
+
]);
|
|
2603
|
+
var PageBlockDefinitionMultiSelectPropertyStyle = _zod.z.enum(["SegmentedControl", "Select", "Checkbox"]);
|
|
2604
|
+
var PageBlockDefinitionImageAspectRatio = _zod.z.enum(["Auto", "Square", "Landscape", "Portrait", "Wide"]);
|
|
2605
|
+
var PageBlockDefinitionImageWidth = _zod.z.enum(["Full", "Icon", "Small", "Medium", "Large", "Poster"]);
|
|
2606
|
+
var PageBlockDefinitionSelectChoice = _zod.z.object({
|
|
2607
|
+
value: _zod.z.string(),
|
|
2608
|
+
name: _zod.z.string(),
|
|
2609
|
+
icon: IconSet.optional(),
|
|
2610
|
+
customIconUrl: _zod.z.string().optional(),
|
|
2611
|
+
color: PageBlockDefinitionSingleSelectPropertyColor.optional()
|
|
2612
|
+
});
|
|
2613
|
+
var PageBlockDefinitionUntypedPropertyOptions = _zod.z.record(_zod.z.any());
|
|
2614
|
+
var PageBlockDefinitionRichTextOptions = _zod.z.object({
|
|
2615
|
+
richTextStyle: PageBlockDefinitionRichTextPropertyStyle.optional()
|
|
2616
|
+
});
|
|
2617
|
+
var PageBlockDefinitionMutiRichTextOptions = _zod.z.object({
|
|
2618
|
+
multiRichTextStyle: PageBlockDefinitionMultiRichTextPropertyStyle.optional()
|
|
2619
|
+
});
|
|
2620
|
+
var PageBlockDefinitionTextOptions = _zod.z.object({
|
|
2621
|
+
placeholder: _zod.z.string().optional(),
|
|
2622
|
+
defaultValue: _zod.z.string().optional(),
|
|
2623
|
+
textStyle: PageBlockDefinitionTextPropertyStyle.optional(),
|
|
2624
|
+
color: PageBlockDefinitionTextPropertyColor.optional(),
|
|
2625
|
+
allowLineBreaks: _zod.z.boolean().optional()
|
|
2626
|
+
});
|
|
2627
|
+
var PageBlockDefinitionSelectOptions = _zod.z.object({
|
|
2323
2628
|
singleSelectStyle: PageBlockDefinitionSingleSelectPropertyStyle.optional(),
|
|
2324
2629
|
defaultChoice: _zod.z.string(),
|
|
2325
2630
|
choices: _zod.z.array(PageBlockDefinitionSelectChoice)
|
|
@@ -2405,413 +2710,138 @@ var PageBlockDefinition = _zod.z.object({
|
|
|
2405
2710
|
behavior: PageBlockDefinitionBehavior,
|
|
2406
2711
|
editorOptions: _zod.z.object({
|
|
2407
2712
|
onboarding: PageBlockDefinitionOnboarding.optional()
|
|
2408
|
-
}),
|
|
2409
|
-
appearance: PageBlockDefinitionAppearance.optional()
|
|
2410
|
-
});
|
|
2411
|
-
|
|
2412
|
-
// src/dsm/documentation/group.ts
|
|
2413
|
-
|
|
2414
|
-
var DocumentationPageGroup = _zod.z.object({
|
|
2415
|
-
type: _zod.z.literal("ElementGroup"),
|
|
2416
|
-
childType: _zod.z.literal("DocumentationPage"),
|
|
2417
|
-
id: _zod.z.string(),
|
|
2418
|
-
persistentId: _zod.z.string(),
|
|
2419
|
-
shortPersistentId: _zod.z.string(),
|
|
2420
|
-
designSystemVersionId: _zod.z.string(),
|
|
2421
|
-
parentPersistentId: _zod.z.string().nullish(),
|
|
2422
|
-
sortOrder: _zod.z.number(),
|
|
2423
|
-
title: _zod.z.string(),
|
|
2424
|
-
slug: _zod.z.string(),
|
|
2425
|
-
userSlug: _zod.z.string().nullish(),
|
|
2426
|
-
createdAt: _zod.z.coerce.date(),
|
|
2427
|
-
updatedAt: _zod.z.coerce.date()
|
|
2428
|
-
});
|
|
2429
|
-
|
|
2430
|
-
// src/dsm/documentation/link-preview.ts
|
|
2431
|
-
|
|
2432
|
-
var DocumentationLinkPreview = _zod.z.object({
|
|
2433
|
-
title: _zod.z.string().optional(),
|
|
2434
|
-
description: _zod.z.string().optional(),
|
|
2435
|
-
thumbnail: PageBlockImageReference.optional()
|
|
2436
|
-
});
|
|
2437
|
-
|
|
2438
|
-
// src/dsm/documentation/page-anchor.ts
|
|
2439
|
-
|
|
2440
|
-
var DocumentationPageAnchor = _zod.z.object({
|
|
2441
|
-
blockId: _zod.z.string(),
|
|
2442
|
-
level: _zod.z.number(),
|
|
2443
|
-
text: _zod.z.string()
|
|
2444
|
-
});
|
|
2445
|
-
|
|
2446
|
-
// src/dsm/documentation/page-content-backup.ts
|
|
2447
|
-
|
|
2448
|
-
var DocumentationPageContentBackup = _zod.z.object({
|
|
2449
|
-
id: _zod.z.string(),
|
|
2450
|
-
designSystemVersionId: _zod.z.string(),
|
|
2451
|
-
createdAt: _zod.z.coerce.date(),
|
|
2452
|
-
updatedAt: _zod.z.coerce.date(),
|
|
2453
|
-
documentationPageId: _zod.z.string(),
|
|
2454
|
-
documentationPageName: _zod.z.string(),
|
|
2455
|
-
storagePath: _zod.z.string()
|
|
2456
|
-
});
|
|
2457
|
-
|
|
2458
|
-
// src/dsm/documentation/page-content.ts
|
|
2459
|
-
|
|
2460
|
-
var DocumentationPageContentItem = _zod.z.discriminatedUnion("type", [
|
|
2461
|
-
PageBlockEditorModelV2,
|
|
2462
|
-
PageSectionEditorModelV2
|
|
2463
|
-
]);
|
|
2464
|
-
var DocumentationPageContentData = _zod.z.object({
|
|
2465
|
-
items: _zod.z.array(DocumentationPageContentItem)
|
|
2466
|
-
});
|
|
2467
|
-
var DocumentationPageContent = _zod.z.object({
|
|
2468
|
-
id: _zod.z.string(),
|
|
2469
|
-
designSystemVersionId: _zod.z.string(),
|
|
2470
|
-
createdAt: _zod.z.coerce.date(),
|
|
2471
|
-
updatedAt: _zod.z.coerce.date(),
|
|
2472
|
-
documentationPageId: _zod.z.string(),
|
|
2473
|
-
data: DocumentationPageContentData
|
|
2474
|
-
});
|
|
2475
|
-
|
|
2476
|
-
// src/dsm/documentation/page.ts
|
|
2477
|
-
|
|
2478
|
-
var DocumentationPage = _zod.z.object({
|
|
2479
|
-
type: _zod.z.literal("DocumentationPage"),
|
|
2480
|
-
id: _zod.z.string(),
|
|
2481
|
-
persistentId: _zod.z.string(),
|
|
2482
|
-
shortPersistentId: _zod.z.string(),
|
|
2483
|
-
designSystemVersionId: _zod.z.string(),
|
|
2484
|
-
parentPersistentId: _zod.z.string().nullish(),
|
|
2485
|
-
sortOrder: _zod.z.number(),
|
|
2486
|
-
title: _zod.z.string(),
|
|
2487
|
-
slug: _zod.z.string(),
|
|
2488
|
-
userSlug: _zod.z.string().nullish(),
|
|
2489
|
-
createdAt: _zod.z.coerce.date(),
|
|
2490
|
-
updatedAt: _zod.z.coerce.date()
|
|
2491
|
-
});
|
|
2492
|
-
|
|
2493
|
-
// src/dsm/documentation/thread.ts
|
|
2494
|
-
|
|
2495
|
-
var DocumentationComment = _zod.z.object({
|
|
2496
|
-
id: _zod.z.string(),
|
|
2497
|
-
authorId: _zod.z.string(),
|
|
2498
|
-
threadId: _zod.z.string(),
|
|
2499
|
-
roomId: _zod.z.string(),
|
|
2500
|
-
createdAt: _zod.z.coerce.date(),
|
|
2501
|
-
editedAt: _zod.z.coerce.date().optional(),
|
|
2502
|
-
deletedAt: _zod.z.coerce.date().optional(),
|
|
2503
|
-
body: _zod.z.string()
|
|
2504
|
-
});
|
|
2505
|
-
var DocumentationCommentThread = _zod.z.object({
|
|
2506
|
-
id: _zod.z.string(),
|
|
2507
|
-
roomId: _zod.z.string(),
|
|
2508
|
-
pagePersistentId: _zod.z.string(),
|
|
2509
|
-
brandId: _zod.z.string(),
|
|
2510
|
-
designSystemVersionId: _zod.z.string(),
|
|
2511
|
-
designSystemId: _zod.z.string(),
|
|
2512
|
-
blockId: _zod.z.string().optional(),
|
|
2513
|
-
resolved: _zod.z.boolean(),
|
|
2514
|
-
createdAt: _zod.z.coerce.date(),
|
|
2515
|
-
updatedAt: _zod.z.coerce.date()
|
|
2516
|
-
});
|
|
2517
|
-
|
|
2518
|
-
// src/dsm/element-snapshots/base.ts
|
|
2519
|
-
|
|
2520
|
-
var DesignElementSnapshotReason = _zod.z.enum(["Publish", "Deletion"]);
|
|
2521
|
-
var DesignElementSnapshotBase = _zod.z.object({
|
|
2522
|
-
id: _zod.z.string(),
|
|
2523
|
-
designSystemVersionId: _zod.z.string(),
|
|
2524
|
-
createdAt: _zod.z.coerce.date(),
|
|
2525
|
-
updatedAt: _zod.z.coerce.date(),
|
|
2526
|
-
reason: DesignElementSnapshotReason
|
|
2527
|
-
});
|
|
2528
|
-
|
|
2529
|
-
// src/dsm/element-snapshots/documentation-page-snapshot.ts
|
|
2530
|
-
|
|
2531
|
-
var DocumentationPageSnapshot = DesignElementSnapshotBase.extend({
|
|
2532
|
-
page: DocumentationPageV2,
|
|
2533
|
-
pageContentHash: _zod.z.string()
|
|
2534
|
-
});
|
|
2535
|
-
|
|
2536
|
-
// src/dsm/element-snapshots/group-snapshot.ts
|
|
2537
|
-
var ElementGroupSnapshot = DesignElementSnapshotBase.extend({
|
|
2538
|
-
group: ElementGroup
|
|
2539
|
-
});
|
|
2540
|
-
|
|
2541
|
-
// src/dsm/import/support/figma-files.ts
|
|
2542
|
-
|
|
2543
|
-
var FigmaFileDownloadScope = _zod.z.object({
|
|
2544
|
-
styles: _zod.z.boolean(),
|
|
2545
|
-
components: _zod.z.boolean(),
|
|
2546
|
-
currentVersion: _zod.z.literal("__latest__").nullable(),
|
|
2547
|
-
publishedVersion: _zod.z.string().nullable(),
|
|
2548
|
-
downloadChunkSize: _zod.z.number().optional(),
|
|
2549
|
-
maxFileDepth: _zod.z.number().optional()
|
|
2550
|
-
});
|
|
2551
|
-
var FigmaFileAccessData = _zod.z.object({
|
|
2552
|
-
accessToken: _zod.z.string()
|
|
2553
|
-
});
|
|
2554
|
-
|
|
2555
|
-
// src/dsm/import/support/import-context.ts
|
|
2556
|
-
|
|
2557
|
-
var ImportFunctionInput = _zod.z.object({
|
|
2558
|
-
importJobId: _zod.z.string(),
|
|
2559
|
-
importContextId: _zod.z.string(),
|
|
2560
|
-
designSystemId: _zod.z.string().optional()
|
|
2561
|
-
});
|
|
2562
|
-
var ImportedFigmaSourceData = _zod.z.object({
|
|
2563
|
-
sourceId: _zod.z.string(),
|
|
2564
|
-
figmaRemote: DataSourceFigmaRemote
|
|
2565
|
-
});
|
|
2566
|
-
var FigmaImportBaseContext = _zod.z.object({
|
|
2567
|
-
designSystemId: _zod.z.string(),
|
|
2568
|
-
/**
|
|
2569
|
-
* Data required for accessing Figma files. This should contain access data for all file ids
|
|
2570
|
-
* mentioned in the `importedSourceDataBySourceId`
|
|
2571
|
-
*
|
|
2572
|
-
* fileId: file data
|
|
2573
|
-
*/
|
|
2574
|
-
fileAccessByFileId: _zod.z.record(FigmaFileAccessData),
|
|
2575
|
-
/**
|
|
2576
|
-
* Figma source data for which import was requested
|
|
2577
|
-
*
|
|
2578
|
-
* sourceId: source data
|
|
2579
|
-
*/
|
|
2580
|
-
importedSourceDataBySourceId: _zod.z.record(ImportedFigmaSourceData),
|
|
2581
|
-
/**
|
|
2582
|
-
* Array of warnings that will be written into the import result summary at the end
|
|
2583
|
-
* of import job execution and displayed by the client.
|
|
2584
|
-
*/
|
|
2585
|
-
importWarnings: _zod.z.record(ImportWarning.array()).default({})
|
|
2586
|
-
});
|
|
2587
|
-
var FigmaImportContextWithSourcesState = FigmaImportBaseContext.extend({
|
|
2588
|
-
sourcesWithMissingAccess: _zod.z.array(_zod.z.string()).default([]),
|
|
2589
|
-
shadowOpacityOptional: _zod.z.boolean().default(false)
|
|
2590
|
-
});
|
|
2591
|
-
var ChangedImportedFigmaSourceData = ImportedFigmaSourceData.extend({
|
|
2592
|
-
importMetadata: DataSourceFigmaImportMetadata
|
|
2593
|
-
});
|
|
2594
|
-
var FigmaImportContextWithDownloadScopes = FigmaImportContextWithSourcesState.extend({
|
|
2595
|
-
/**
|
|
2596
|
-
* Describes what to download from each file, this should contain all file id mentioned in
|
|
2597
|
-
* importMetadataBySourceId.
|
|
2598
|
-
*
|
|
2599
|
-
* File id -> file download scope
|
|
2600
|
-
*/
|
|
2601
|
-
fileDownloadScopesByFileId: _zod.z.record(FigmaFileDownloadScope),
|
|
2602
|
-
/**
|
|
2603
|
-
* Sources filtered down to the ones that have changed since last import and therefore need to be
|
|
2604
|
-
* imported again.
|
|
2605
|
-
*
|
|
2606
|
-
* Source id -> import metadata
|
|
2607
|
-
*/
|
|
2608
|
-
changedImportedSourceDataBySourceId: _zod.z.record(ChangedImportedFigmaSourceData)
|
|
2609
|
-
});
|
|
2610
|
-
|
|
2611
|
-
// src/dsm/import/support/import-model-collections.ts
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
// src/dsm/import/image.ts
|
|
2615
|
-
|
|
2616
|
-
var ImageImportModelType = _zod.z.enum(["Url", "FigmaRender"]);
|
|
2617
|
-
var ImageImportModelBase = _zod.z.object({
|
|
2618
|
-
scope: AssetScope
|
|
2619
|
-
});
|
|
2620
|
-
var UrlImageImportModel = ImageImportModelBase.extend({
|
|
2621
|
-
type: _zod.z.literal(ImageImportModelType.enum.Url),
|
|
2622
|
-
url: _zod.z.string(),
|
|
2623
|
-
originKey: _zod.z.string(),
|
|
2624
|
-
extension: _zod.z.string()
|
|
2625
|
-
});
|
|
2626
|
-
var FigmaRenderFormat = _zod.z.enum(["Svg", "Png"]);
|
|
2627
|
-
var FigmaRenderBase = ImageImportModelBase.extend({
|
|
2628
|
-
type: _zod.z.literal(ImageImportModelType.enum.FigmaRender),
|
|
2629
|
-
fileId: _zod.z.string(),
|
|
2630
|
-
fileVersionId: _zod.z.string().optional(),
|
|
2631
|
-
nodeId: _zod.z.string(),
|
|
2632
|
-
originKey: _zod.z.string()
|
|
2633
|
-
});
|
|
2634
|
-
var FigmaPngRenderImportModel = FigmaRenderBase.extend({
|
|
2635
|
-
format: _zod.z.literal(FigmaRenderFormat.enum.Png),
|
|
2636
|
-
scale: _zod.z.number()
|
|
2637
|
-
});
|
|
2638
|
-
var FigmaSvgRenderImportModel = FigmaRenderBase.extend({
|
|
2639
|
-
format: _zod.z.literal(FigmaRenderFormat.enum.Svg)
|
|
2713
|
+
}),
|
|
2714
|
+
appearance: PageBlockDefinitionAppearance.optional()
|
|
2640
2715
|
});
|
|
2641
|
-
var FigmaRenderImportModel = _zod.z.discriminatedUnion("format", [
|
|
2642
|
-
FigmaPngRenderImportModel,
|
|
2643
|
-
FigmaSvgRenderImportModel
|
|
2644
|
-
]);
|
|
2645
|
-
var ImageImportModel = _zod.z.union([UrlImageImportModel, FigmaRenderImportModel]);
|
|
2646
|
-
|
|
2647
|
-
// src/dsm/import/component.ts
|
|
2648
|
-
|
|
2649
2716
|
|
|
2650
|
-
// src/dsm/
|
|
2717
|
+
// src/dsm/documentation/group.ts
|
|
2651
2718
|
|
|
2652
|
-
var
|
|
2719
|
+
var DocumentationPageGroup = _zod.z.object({
|
|
2720
|
+
type: _zod.z.literal("ElementGroup"),
|
|
2721
|
+
childType: _zod.z.literal("DocumentationPage"),
|
|
2653
2722
|
id: _zod.z.string(),
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
originId: _zod.z.string(),
|
|
2665
|
-
originMetadata: _zod.z.record(_zod.z.any())
|
|
2723
|
+
persistentId: _zod.z.string(),
|
|
2724
|
+
shortPersistentId: _zod.z.string(),
|
|
2725
|
+
designSystemVersionId: _zod.z.string(),
|
|
2726
|
+
parentPersistentId: _zod.z.string().nullish(),
|
|
2727
|
+
sortOrder: _zod.z.number(),
|
|
2728
|
+
title: _zod.z.string(),
|
|
2729
|
+
slug: _zod.z.string(),
|
|
2730
|
+
userSlug: _zod.z.string().nullish(),
|
|
2731
|
+
createdAt: _zod.z.coerce.date(),
|
|
2732
|
+
updatedAt: _zod.z.coerce.date()
|
|
2666
2733
|
});
|
|
2667
2734
|
|
|
2668
|
-
// src/dsm/
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
svg: FigmaSvgRenderImportModel.optional(),
|
|
2675
|
-
origin: ComponentOrigin
|
|
2676
|
-
});
|
|
2677
|
-
var ComponentImportModelInput = ImportModelInputBase.extend(ComponentImportModelPart.shape).extend({
|
|
2678
|
-
originMetadata: ComponentOriginPart
|
|
2679
|
-
});
|
|
2680
|
-
var AssetImportModelInput = ImportModelInputBase.extend(ComponentImportModelPart.shape).extend({
|
|
2681
|
-
svg: FigmaSvgRenderImportModel,
|
|
2682
|
-
originMetadata: ComponentOriginPart
|
|
2735
|
+
// src/dsm/documentation/link-preview.ts
|
|
2736
|
+
|
|
2737
|
+
var DocumentationLinkPreview = _zod.z.object({
|
|
2738
|
+
title: _zod.z.string().optional(),
|
|
2739
|
+
description: _zod.z.string().optional(),
|
|
2740
|
+
thumbnail: PageBlockImageReference.optional()
|
|
2683
2741
|
});
|
|
2684
2742
|
|
|
2685
|
-
// src/dsm/
|
|
2743
|
+
// src/dsm/documentation/page-anchor.ts
|
|
2686
2744
|
|
|
2687
|
-
var
|
|
2688
|
-
_zod.z.
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
})
|
|
2692
|
-
);
|
|
2693
|
-
var ThemeOverrideImportModel = ThemeOverrideImportModelBase.and(
|
|
2694
|
-
_zod.z.object({
|
|
2695
|
-
origin: ThemeOverrideOrigin
|
|
2696
|
-
})
|
|
2697
|
-
);
|
|
2698
|
-
var ThemeOverrideImportModelInput = ThemeOverrideImportModelBase.and(
|
|
2699
|
-
_zod.z.object({
|
|
2700
|
-
originId: _zod.z.string(),
|
|
2701
|
-
originMetadata: ThemeOverrideOriginPart
|
|
2702
|
-
})
|
|
2703
|
-
);
|
|
2704
|
-
var ThemeImportModel = _zod.z.object({
|
|
2705
|
-
meta: ObjectMeta,
|
|
2706
|
-
brandPersistentId: _zod.z.string(),
|
|
2707
|
-
originSource: ThemeOriginSource,
|
|
2708
|
-
overrides: _zod.z.array(ThemeOverrideImportModel),
|
|
2709
|
-
sortOrder: _zod.z.number()
|
|
2710
|
-
});
|
|
2711
|
-
var ThemeImportModelInput = _zod.z.object({
|
|
2712
|
-
meta: ObjectMeta,
|
|
2713
|
-
originObjects: _zod.z.array(ThemeOriginObject),
|
|
2714
|
-
overrides: _zod.z.array(ThemeOverrideImportModelInput)
|
|
2715
|
-
});
|
|
2716
|
-
var ThemeUpdateImportModel = _zod.z.object({
|
|
2717
|
-
themePersistentId: _zod.z.string(),
|
|
2718
|
-
overrides: _zod.z.array(ThemeOverrideImportModel)
|
|
2719
|
-
});
|
|
2720
|
-
var ThemeUpdateImportModelInput = _zod.z.object({
|
|
2721
|
-
themePersistentId: _zod.z.string(),
|
|
2722
|
-
overrides: _zod.z.array(ThemeOverrideImportModelInput)
|
|
2745
|
+
var DocumentationPageAnchor = _zod.z.object({
|
|
2746
|
+
blockId: _zod.z.string(),
|
|
2747
|
+
level: _zod.z.number(),
|
|
2748
|
+
text: _zod.z.string()
|
|
2723
2749
|
});
|
|
2724
2750
|
|
|
2725
|
-
// src/dsm/
|
|
2751
|
+
// src/dsm/documentation/page-content-backup.ts
|
|
2726
2752
|
|
|
2727
|
-
var
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
originMetadata: DesignTokenOriginPart
|
|
2753
|
+
var DocumentationPageContentBackup = _zod.z.object({
|
|
2754
|
+
id: _zod.z.string(),
|
|
2755
|
+
designSystemVersionId: _zod.z.string(),
|
|
2756
|
+
createdAt: _zod.z.coerce.date(),
|
|
2757
|
+
updatedAt: _zod.z.coerce.date(),
|
|
2758
|
+
documentationPageId: _zod.z.string(),
|
|
2759
|
+
documentationPageName: _zod.z.string(),
|
|
2760
|
+
storagePath: _zod.z.string()
|
|
2736
2761
|
});
|
|
2737
|
-
var DesignTokenImportModel = DesignTokenTypedData.and(DesignTokenImportModelBase);
|
|
2738
|
-
var DesignTokenImportModelInput = DesignTokenTypedData.and(DesignTokenImportModelInputBase);
|
|
2739
|
-
function isDesignTokenImportModelOfType(designToken, type) {
|
|
2740
|
-
return designToken.type === type;
|
|
2741
|
-
}
|
|
2742
|
-
function designTokenImportModelTypeFilter(type) {
|
|
2743
|
-
return (designToken) => isDesignTokenImportModelOfType(designToken, type);
|
|
2744
|
-
}
|
|
2745
2762
|
|
|
2746
|
-
// src/dsm/
|
|
2763
|
+
// src/dsm/documentation/page-content.ts
|
|
2747
2764
|
|
|
2748
|
-
var
|
|
2749
|
-
|
|
2765
|
+
var DocumentationPageContentItem = _zod.z.discriminatedUnion("type", [
|
|
2766
|
+
PageBlockEditorModelV2,
|
|
2767
|
+
PageSectionEditorModelV2
|
|
2768
|
+
]);
|
|
2769
|
+
var DocumentationPageContentData = _zod.z.object({
|
|
2770
|
+
items: _zod.z.array(DocumentationPageContentItem)
|
|
2750
2771
|
});
|
|
2751
|
-
var
|
|
2752
|
-
|
|
2772
|
+
var DocumentationPageContent = _zod.z.object({
|
|
2773
|
+
id: _zod.z.string(),
|
|
2774
|
+
designSystemVersionId: _zod.z.string(),
|
|
2775
|
+
createdAt: _zod.z.coerce.date(),
|
|
2776
|
+
updatedAt: _zod.z.coerce.date(),
|
|
2777
|
+
documentationPageId: _zod.z.string(),
|
|
2778
|
+
data: DocumentationPageContentData
|
|
2753
2779
|
});
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2780
|
+
|
|
2781
|
+
// src/dsm/documentation/page.ts
|
|
2782
|
+
|
|
2783
|
+
var DocumentationPage = _zod.z.object({
|
|
2784
|
+
type: _zod.z.literal("DocumentationPage"),
|
|
2785
|
+
id: _zod.z.string(),
|
|
2786
|
+
persistentId: _zod.z.string(),
|
|
2787
|
+
shortPersistentId: _zod.z.string(),
|
|
2788
|
+
designSystemVersionId: _zod.z.string(),
|
|
2789
|
+
parentPersistentId: _zod.z.string().nullish(),
|
|
2790
|
+
sortOrder: _zod.z.number(),
|
|
2791
|
+
title: _zod.z.string(),
|
|
2792
|
+
slug: _zod.z.string(),
|
|
2793
|
+
userSlug: _zod.z.string().nullish(),
|
|
2794
|
+
createdAt: _zod.z.coerce.date(),
|
|
2795
|
+
updatedAt: _zod.z.coerce.date()
|
|
2759
2796
|
});
|
|
2760
|
-
|
|
2761
|
-
|
|
2797
|
+
|
|
2798
|
+
// src/dsm/documentation/thread.ts
|
|
2799
|
+
|
|
2800
|
+
var DocumentationComment = _zod.z.object({
|
|
2801
|
+
id: _zod.z.string(),
|
|
2802
|
+
authorId: _zod.z.string(),
|
|
2803
|
+
threadId: _zod.z.string(),
|
|
2804
|
+
roomId: _zod.z.string(),
|
|
2805
|
+
createdAt: _zod.z.coerce.date(),
|
|
2806
|
+
editedAt: _zod.z.coerce.date().optional(),
|
|
2807
|
+
deletedAt: _zod.z.coerce.date().optional(),
|
|
2808
|
+
body: _zod.z.string()
|
|
2762
2809
|
});
|
|
2763
|
-
var
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2810
|
+
var DocumentationCommentThread = _zod.z.object({
|
|
2811
|
+
id: _zod.z.string(),
|
|
2812
|
+
roomId: _zod.z.string(),
|
|
2813
|
+
pagePersistentId: _zod.z.string(),
|
|
2814
|
+
brandId: _zod.z.string(),
|
|
2815
|
+
designSystemVersionId: _zod.z.string(),
|
|
2816
|
+
designSystemId: _zod.z.string(),
|
|
2817
|
+
blockId: _zod.z.string().optional(),
|
|
2818
|
+
resolved: _zod.z.boolean(),
|
|
2819
|
+
createdAt: _zod.z.coerce.date(),
|
|
2820
|
+
updatedAt: _zod.z.coerce.date()
|
|
2767
2821
|
});
|
|
2768
|
-
function figmaFileStructureImportModelToMap(root) {
|
|
2769
|
-
const map = /* @__PURE__ */ new Map();
|
|
2770
|
-
recursiveFigmaFileStructureToMap2(root, map);
|
|
2771
|
-
return map;
|
|
2772
|
-
}
|
|
2773
|
-
function recursiveFigmaFileStructureToMap2(node, map) {
|
|
2774
|
-
map.set(node.id, node);
|
|
2775
|
-
for (const child of node.children)
|
|
2776
|
-
recursiveFigmaFileStructureToMap2(child, map);
|
|
2777
|
-
}
|
|
2778
2822
|
|
|
2779
|
-
// src/dsm/
|
|
2823
|
+
// src/dsm/element-snapshots/base.ts
|
|
2780
2824
|
|
|
2781
|
-
var
|
|
2825
|
+
var DesignElementSnapshotReason = _zod.z.enum(["Publish", "Deletion"]);
|
|
2826
|
+
var DesignElementSnapshotBase = _zod.z.object({
|
|
2782
2827
|
id: _zod.z.string(),
|
|
2783
|
-
|
|
2784
|
-
|
|
2828
|
+
designSystemVersionId: _zod.z.string(),
|
|
2829
|
+
createdAt: _zod.z.coerce.date(),
|
|
2830
|
+
updatedAt: _zod.z.coerce.date(),
|
|
2831
|
+
reason: DesignElementSnapshotReason
|
|
2785
2832
|
});
|
|
2786
2833
|
|
|
2787
|
-
// src/dsm/
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
assets: _zod.z.array(AssetImportModelInput).default([]),
|
|
2793
|
-
themeUpdates: _zod.z.array(ThemeUpdateImportModelInput).default([]),
|
|
2794
|
-
themes: _zod.z.array(ThemeImportModelInput).default([]),
|
|
2795
|
-
figmaFileStructure: FigmaFileStructureImportModelInput.optional()
|
|
2834
|
+
// src/dsm/element-snapshots/documentation-page-snapshot.ts
|
|
2835
|
+
|
|
2836
|
+
var DocumentationPageSnapshot = DesignElementSnapshotBase.extend({
|
|
2837
|
+
page: DocumentationPageV2,
|
|
2838
|
+
pageContentHash: _zod.z.string()
|
|
2796
2839
|
});
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
themeUpdates: _zod.z.array(ThemeUpdateImportModel).default([]),
|
|
2802
|
-
themes: _zod.z.array(ThemeImportModel).default([]),
|
|
2803
|
-
figmaFileStructures: _zod.z.array(FigmaFileStructureImportModel)
|
|
2840
|
+
|
|
2841
|
+
// src/dsm/element-snapshots/group-snapshot.ts
|
|
2842
|
+
var ElementGroupSnapshot = DesignElementSnapshotBase.extend({
|
|
2843
|
+
group: ElementGroup
|
|
2804
2844
|
});
|
|
2805
|
-
function addImportModelCollections(lhs, rhs) {
|
|
2806
|
-
return {
|
|
2807
|
-
sources: [...lhs.sources, ...rhs.sources],
|
|
2808
|
-
tokens: [...lhs.tokens, ...rhs.tokens],
|
|
2809
|
-
components: [...lhs.components, ...rhs.components],
|
|
2810
|
-
themeUpdates: [...lhs.themeUpdates, ...rhs.themeUpdates],
|
|
2811
|
-
themes: [...lhs.themes, ...rhs.themes],
|
|
2812
|
-
figmaFileStructures: [...lhs.figmaFileStructures, ...rhs.figmaFileStructures]
|
|
2813
|
-
};
|
|
2814
|
-
}
|
|
2815
2845
|
|
|
2816
2846
|
// src/dsm/views/column.ts
|
|
2817
2847
|
|
|
@@ -5454,5 +5484,8 @@ var PersonalAccessToken = _zod.z.object({
|
|
|
5454
5484
|
|
|
5455
5485
|
|
|
5456
5486
|
|
|
5457
|
-
exports.Address = Address; exports.Asset = Asset; exports.AssetDeleteSchedule = AssetDeleteSchedule; exports.AssetDynamoRecord = AssetDynamoRecord; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProcessStatus = AssetProcessStatus; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.BillingDetails = BillingDetails; exports.BillingIntervalSchema = BillingIntervalSchema; exports.BillingType = BillingType; exports.BillingTypeSchema = BillingTypeSchema; exports.BlurTokenData = BlurTokenData; exports.BlurType = BlurType; exports.BlurValue = BlurValue; exports.BorderPosition = BorderPosition; exports.BorderRadiusTokenData = BorderRadiusTokenData; exports.BorderRadiusUnit = BorderRadiusUnit; exports.BorderRadiusValue = BorderRadiusValue; exports.BorderStyle = BorderStyle; exports.BorderTokenData = BorderTokenData; exports.BorderValue = BorderValue; exports.BorderWidthTokenData = BorderWidthTokenData; exports.BorderWidthUnit = BorderWidthUnit; exports.BorderWidthValue = BorderWidthValue; exports.Brand = Brand; exports.BrandedElementGroup = BrandedElementGroup; exports.CardSchema = CardSchema; exports.ChangedImportedFigmaSourceData = ChangedImportedFigmaSourceData; exports.CodeIntegrationDump = CodeIntegrationDump; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.Component = Component; exports.ComponentElementData = ComponentElementData; exports.ComponentImportModel = ComponentImportModel; exports.ComponentImportModelInput = ComponentImportModelInput; exports.ComponentOrigin = ComponentOrigin; exports.ComponentOriginPart = ComponentOriginPart; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; exports.CreateUserInput = CreateUserInput; exports.CreateWorkspaceInput = CreateWorkspaceInput; exports.CustomDomain = CustomDomain; exports.Customer = Customer; exports.DataSource = DataSource; exports.DataSourceAutoImportMode = DataSourceAutoImportMode; exports.DataSourceFigmaFileData = DataSourceFigmaFileData; exports.DataSourceFigmaFileVersionData = DataSourceFigmaFileVersionData; exports.DataSourceFigmaImportMetadata = DataSourceFigmaImportMetadata; exports.DataSourceFigmaRemote = DataSourceFigmaRemote; exports.DataSourceFigmaScope = DataSourceFigmaScope; exports.DataSourceFigmaState = DataSourceFigmaState; exports.DataSourceImportModel = DataSourceImportModel; exports.DataSourceRemote = DataSourceRemote; exports.DataSourceRemoteType = DataSourceRemoteType; exports.DataSourceStats = DataSourceStats; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementSnapshotBase = DesignElementSnapshotBase; exports.DesignElementSnapshotReason = DesignElementSnapshotReason; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemCreateInput = DesignSystemCreateInput; exports.DesignSystemDump = DesignSystemDump; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUpdateInput = DesignSystemUpdateInput; exports.DesignSystemVersion = DesignSystemVersion; exports.DesignSystemVersionDump = DesignSystemVersionDump; exports.DesignSystemVersionMultiplayerDump = DesignSystemVersionMultiplayerDump; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemVersionRoomInitialState = DesignSystemVersionRoomInitialState; exports.DesignSystemVersionRoomInternalSettings = DesignSystemVersionRoomInternalSettings; exports.DesignSystemVersionRoomUpdate = DesignSystemVersionRoomUpdate; exports.DesignSystemWithWorkspace = DesignSystemWithWorkspace; exports.DesignToken = DesignToken; exports.DesignTokenImportModel = DesignTokenImportModel; exports.DesignTokenImportModelBase = DesignTokenImportModelBase; exports.DesignTokenImportModelInput = DesignTokenImportModelInput; exports.DesignTokenImportModelInputBase = DesignTokenImportModelInputBase; exports.DesignTokenOrigin = DesignTokenOrigin; exports.DesignTokenOriginPart = DesignTokenOriginPart; exports.DesignTokenType = DesignTokenType; exports.DesignTokenTypedData = DesignTokenTypedData; exports.DimensionTokenData = DimensionTokenData; exports.DimensionUnit = DimensionUnit; exports.DimensionValue = DimensionValue; exports.DocumentationComment = DocumentationComment; exports.DocumentationCommentThread = DocumentationCommentThread; exports.DocumentationGroupBehavior = DocumentationGroupBehavior; exports.DocumentationGroupV1 = DocumentationGroupV1; exports.DocumentationItemConfigurationV1 = DocumentationItemConfigurationV1; exports.DocumentationItemConfigurationV2 = DocumentationItemConfigurationV2; exports.DocumentationItemHeaderAlignment = DocumentationItemHeaderAlignment; exports.DocumentationItemHeaderAlignmentSchema = DocumentationItemHeaderAlignmentSchema; exports.DocumentationItemHeaderImageScaleType = DocumentationItemHeaderImageScaleType; exports.DocumentationItemHeaderImageScaleTypeSchema = DocumentationItemHeaderImageScaleTypeSchema; exports.DocumentationItemHeaderV1 = DocumentationItemHeaderV1; exports.DocumentationItemHeaderV2 = DocumentationItemHeaderV2; exports.DocumentationLinkPreview = DocumentationLinkPreview; exports.DocumentationPage = DocumentationPage; exports.DocumentationPageAnchor = DocumentationPageAnchor; exports.DocumentationPageContent = DocumentationPageContent; exports.DocumentationPageContentBackup = DocumentationPageContentBackup; exports.DocumentationPageContentData = DocumentationPageContentData; exports.DocumentationPageContentItem = DocumentationPageContentItem; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageRoomDump = DocumentationPageRoomDump; exports.DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomInitialStateUpdate; exports.DocumentationPageRoomRoomUpdate = DocumentationPageRoomRoomUpdate; exports.DocumentationPageRoomState = DocumentationPageRoomState; exports.DocumentationPageSnapshot = DocumentationPageSnapshot; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DocumentationThreadDump = DocumentationThreadDump; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupDataV1 = ElementGroupDataV1; exports.ElementGroupDataV2 = ElementGroupDataV2; exports.ElementGroupSnapshot = ElementGroupSnapshot; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyLinkType = ElementPropertyLinkType; exports.ElementPropertyTargetType = ElementPropertyTargetType; exports.ElementPropertyType = ElementPropertyType; exports.ElementPropertyTypeSchema = ElementPropertyTypeSchema; exports.ElementPropertyValue = ElementPropertyValue; exports.ElementView = ElementView; exports.ElementViewBaseColumnType = ElementViewBaseColumnType; exports.ElementViewBasePropertyColumn = ElementViewBasePropertyColumn; exports.ElementViewColumn = ElementViewColumn; exports.ElementViewColumnSharedAttributes = ElementViewColumnSharedAttributes; exports.ElementViewColumnType = ElementViewColumnType; exports.ElementViewPropertyDefinitionColumn = ElementViewPropertyDefinitionColumn; exports.ElementViewThemeColumn = ElementViewThemeColumn; exports.Entity = Entity; exports.ExportDestinationsMap = ExportDestinationsMap; exports.ExportJob = ExportJob; exports.ExportJobContext = ExportJobContext; exports.ExportJobDestinationType = ExportJobDestinationType; exports.ExportJobDocsDestinationResult = ExportJobDocsDestinationResult; exports.ExportJobDocumentationContext = ExportJobDocumentationContext; exports.ExportJobDump = ExportJobDump; exports.ExportJobFindByFilter = ExportJobFindByFilter; exports.ExportJobLogEntry = ExportJobLogEntry; exports.ExportJobLogEntryType = ExportJobLogEntryType; exports.ExportJobPullRequestDestinationResult = ExportJobPullRequestDestinationResult; exports.ExportJobResult = ExportJobResult; exports.ExportJobS3DestinationResult = ExportJobS3DestinationResult; exports.ExportJobStatus = ExportJobStatus; exports.Exporter = Exporter; exports.ExporterDestinationAzure = ExporterDestinationAzure; exports.ExporterDestinationBitbucket = ExporterDestinationBitbucket; exports.ExporterDestinationDocs = ExporterDestinationDocs; exports.ExporterDestinationGithub = ExporterDestinationGithub; exports.ExporterDestinationGitlab = ExporterDestinationGitlab; exports.ExporterDestinationS3 = ExporterDestinationS3; exports.ExporterDetails = ExporterDetails; exports.ExporterFunctionPayload = ExporterFunctionPayload; exports.ExporterPropertyImageValue = ExporterPropertyImageValue; exports.ExporterPropertyValue = ExporterPropertyValue; exports.ExporterPropertyValuesCollection = ExporterPropertyValuesCollection; exports.ExporterPulsarDetails = ExporterPulsarDetails; exports.ExporterSource = ExporterSource; exports.ExporterTag = ExporterTag; exports.ExporterType = ExporterType; exports.ExporterWorkspaceMembership = ExporterWorkspaceMembership; exports.ExporterWorkspaceMembershipRole = ExporterWorkspaceMembershipRole; exports.ExtendedIntegrationType = ExtendedIntegrationType; exports.ExternalOAuthRequest = ExternalOAuthRequest; exports.ExternalServiceType = ExternalServiceType; exports.FeatureFlag = FeatureFlag; exports.FeatureFlagMap = FeatureFlagMap; exports.FeaturesSummary = FeaturesSummary; exports.FigmaFileAccessData = FigmaFileAccessData; exports.FigmaFileDownloadScope = FigmaFileDownloadScope; exports.FigmaFileStructure = FigmaFileStructure; exports.FigmaFileStructureData = FigmaFileStructureData; exports.FigmaFileStructureElementData = FigmaFileStructureElementData; exports.FigmaFileStructureImportModel = FigmaFileStructureImportModel; exports.FigmaFileStructureImportModelInput = FigmaFileStructureImportModelInput; exports.FigmaFileStructureNode = FigmaFileStructureNode; exports.FigmaFileStructureNodeBase = FigmaFileStructureNodeBase; exports.FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModel; exports.FigmaFileStructureNodeType = FigmaFileStructureNodeType; exports.FigmaFileStructureOrigin = FigmaFileStructureOrigin; exports.FigmaFileStructureStatistics = FigmaFileStructureStatistics; exports.FigmaImportBaseContext = FigmaImportBaseContext; exports.FigmaImportContextWithDownloadScopes = FigmaImportContextWithDownloadScopes; exports.FigmaImportContextWithSourcesState = FigmaImportContextWithSourcesState; exports.FigmaNodeReference = FigmaNodeReference; exports.FigmaNodeReferenceData = FigmaNodeReferenceData; exports.FigmaNodeReferenceElementData = FigmaNodeReferenceElementData; exports.FigmaNodeReferenceOrigin = FigmaNodeReferenceOrigin; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.GitBranch = GitBranch; exports.GitIntegrationType = GitIntegrationType; exports.GitObjectsQuery = GitObjectsQuery; exports.GitOrganization = GitOrganization; exports.GitProject = GitProject; exports.GitProvider = GitProvider; exports.GitProviderNames = GitProviderNames; exports.GitRepository = GitRepository; exports.GradientLayerData = GradientLayerData; exports.GradientLayerValue = GradientLayerValue; exports.GradientStop = GradientStop; exports.GradientTokenData = GradientTokenData; exports.GradientTokenValue = GradientTokenValue; exports.GradientType = GradientType; exports.HANDLE_MAX_LENGTH = HANDLE_MAX_LENGTH; exports.HANDLE_MIN_LENGTH = HANDLE_MIN_LENGTH; exports.HierarchicalElements = HierarchicalElements; exports.IconSet = IconSet; exports.ImageImportModel = ImageImportModel; exports.ImageImportModelType = ImageImportModelType; exports.ImportFunctionInput = ImportFunctionInput; exports.ImportJob = ImportJob; exports.ImportJobOperation = ImportJobOperation; exports.ImportJobState = ImportJobState; exports.ImportModelBase = ImportModelBase; exports.ImportModelCollection = ImportModelCollection; exports.ImportModelInputBase = ImportModelInputBase; exports.ImportModelInputCollection = ImportModelInputCollection; exports.ImportWarning = ImportWarning; exports.ImportWarningType = ImportWarningType; exports.ImportedFigmaSourceData = ImportedFigmaSourceData; exports.Integration = Integration; exports.IntegrationAuthType = IntegrationAuthType; exports.IntegrationCredentials = IntegrationCredentials; exports.IntegrationCredentialsProfile = IntegrationCredentialsProfile; exports.IntegrationCredentialsState = IntegrationCredentialsState; exports.IntegrationCredentialsType = IntegrationCredentialsType; exports.IntegrationDesignSystem = IntegrationDesignSystem; exports.IntegrationToken = IntegrationToken; exports.IntegrationTokenSchemaOld = IntegrationTokenSchemaOld; exports.IntegrationType = IntegrationType; exports.IntegrationUserInfo = IntegrationUserInfo; exports.InternalStatus = InternalStatus; exports.InternalStatusSchema = InternalStatusSchema; exports.InvoiceCouponSchema = InvoiceCouponSchema; exports.InvoiceLineSchema = InvoiceLineSchema; exports.InvoiceSchema = InvoiceSchema; exports.LetterSpacingTokenData = LetterSpacingTokenData; exports.LetterSpacingUnit = LetterSpacingUnit; exports.LetterSpacingValue = LetterSpacingValue; exports.LineHeightTokenData = LineHeightTokenData; exports.LineHeightUnit = LineHeightUnit; exports.LineHeightValue = LineHeightValue; exports.LiveblocksNotificationSettings = LiveblocksNotificationSettings; exports.MAX_MEMBERS_COUNT = MAX_MEMBERS_COUNT; exports.NpmPackage = NpmPackage; exports.NpmProxyToken = NpmProxyToken; exports.NpmProxyTokenPayload = NpmProxyTokenPayload; exports.NpmRegistrCustomAuthConfig = NpmRegistrCustomAuthConfig; exports.NpmRegistryAuthConfig = NpmRegistryAuthConfig; exports.NpmRegistryAuthType = NpmRegistryAuthType; exports.NpmRegistryBasicAuthConfig = NpmRegistryBasicAuthConfig; exports.NpmRegistryBearerAuthConfig = NpmRegistryBearerAuthConfig; exports.NpmRegistryConfig = NpmRegistryConfig; exports.NpmRegistryNoAuthConfig = NpmRegistryNoAuthConfig; exports.NpmRegistryType = NpmRegistryType; exports.OAuthProvider = OAuthProvider; exports.OAuthProviderNames = OAuthProviderNames; exports.OAuthProviderSchema = OAuthProviderSchema; exports.ObjectMeta = ObjectMeta; exports.OpacityTokenData = OpacityTokenData; exports.OpacityValue = OpacityValue; exports.PageBlockAlignment = PageBlockAlignment; exports.PageBlockAppearanceV2 = PageBlockAppearanceV2; exports.PageBlockAsset = PageBlockAsset; exports.PageBlockAssetComponent = PageBlockAssetComponent; exports.PageBlockAssetEntityMeta = PageBlockAssetEntityMeta; exports.PageBlockAssetType = PageBlockAssetType; exports.PageBlockBaseV1 = PageBlockBaseV1; exports.PageBlockBehaviorDataType = PageBlockBehaviorDataType; exports.PageBlockBehaviorSelectionType = PageBlockBehaviorSelectionType; exports.PageBlockCalloutType = PageBlockCalloutType; exports.PageBlockCategory = PageBlockCategory; exports.PageBlockCodeLanguage = PageBlockCodeLanguage; exports.PageBlockColorV2 = PageBlockColorV2; exports.PageBlockCustomBlockPropertyImageValue = PageBlockCustomBlockPropertyImageValue; exports.PageBlockCustomBlockPropertyValue = PageBlockCustomBlockPropertyValue; exports.PageBlockDataV2 = PageBlockDataV2; exports.PageBlockDefinition = PageBlockDefinition; exports.PageBlockDefinitionAppearance = PageBlockDefinitionAppearance; exports.PageBlockDefinitionBehavior = PageBlockDefinitionBehavior; exports.PageBlockDefinitionBooleanOptions = PageBlockDefinitionBooleanOptions; exports.PageBlockDefinitionBooleanPropertyStyle = PageBlockDefinitionBooleanPropertyStyle; exports.PageBlockDefinitionComponentOptions = PageBlockDefinitionComponentOptions; exports.PageBlockDefinitionImageAspectRatio = PageBlockDefinitionImageAspectRatio; exports.PageBlockDefinitionImageOptions = PageBlockDefinitionImageOptions; exports.PageBlockDefinitionImageWidth = PageBlockDefinitionImageWidth; exports.PageBlockDefinitionItem = PageBlockDefinitionItem; exports.PageBlockDefinitionLayout = PageBlockDefinitionLayout; exports.PageBlockDefinitionLayoutAlign = PageBlockDefinitionLayoutAlign; exports.PageBlockDefinitionLayoutBase = PageBlockDefinitionLayoutBase; exports.PageBlockDefinitionLayoutGap = PageBlockDefinitionLayoutGap; exports.PageBlockDefinitionLayoutResizing = PageBlockDefinitionLayoutResizing; exports.PageBlockDefinitionLayoutType = PageBlockDefinitionLayoutType; exports.PageBlockDefinitionMultiRichTextPropertyStyle = PageBlockDefinitionMultiRichTextPropertyStyle; exports.PageBlockDefinitionMultiSelectPropertyStyle = PageBlockDefinitionMultiSelectPropertyStyle; exports.PageBlockDefinitionMutiRichTextOptions = PageBlockDefinitionMutiRichTextOptions; exports.PageBlockDefinitionNumberOptions = PageBlockDefinitionNumberOptions; exports.PageBlockDefinitionOnboarding = PageBlockDefinitionOnboarding; exports.PageBlockDefinitionProperty = PageBlockDefinitionProperty; exports.PageBlockDefinitionPropertyType = PageBlockDefinitionPropertyType; exports.PageBlockDefinitionRichTextOptions = PageBlockDefinitionRichTextOptions; exports.PageBlockDefinitionRichTextPropertyStyle = PageBlockDefinitionRichTextPropertyStyle; exports.PageBlockDefinitionSelectChoice = PageBlockDefinitionSelectChoice; exports.PageBlockDefinitionSelectOptions = PageBlockDefinitionSelectOptions; exports.PageBlockDefinitionSingleSelectPropertyColor = PageBlockDefinitionSingleSelectPropertyColor; exports.PageBlockDefinitionSingleSelectPropertyStyle = PageBlockDefinitionSingleSelectPropertyStyle; exports.PageBlockDefinitionTextOptions = PageBlockDefinitionTextOptions; exports.PageBlockDefinitionTextPropertyColor = PageBlockDefinitionTextPropertyColor; exports.PageBlockDefinitionTextPropertyStyle = PageBlockDefinitionTextPropertyStyle; exports.PageBlockDefinitionUntypedPropertyOptions = PageBlockDefinitionUntypedPropertyOptions; exports.PageBlockDefinitionVariant = PageBlockDefinitionVariant; exports.PageBlockDefinitionsMap = PageBlockDefinitionsMap; exports.PageBlockEditorModelV2 = PageBlockEditorModelV2; exports.PageBlockFigmaComponentEntityMeta = PageBlockFigmaComponentEntityMeta; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFigmaNodeEntityMeta = PageBlockFigmaNodeEntityMeta; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockImageAlignment = PageBlockImageAlignment; exports.PageBlockImageReference = PageBlockImageReference; exports.PageBlockImageResourceReference = PageBlockImageResourceReference; exports.PageBlockImageType = PageBlockImageType; exports.PageBlockItemAssetPropertyValue = PageBlockItemAssetPropertyValue; exports.PageBlockItemAssetValue = PageBlockItemAssetValue; exports.PageBlockItemBooleanValue = PageBlockItemBooleanValue; exports.PageBlockItemCodeValue = PageBlockItemCodeValue; exports.PageBlockItemColorValue = PageBlockItemColorValue; exports.PageBlockItemComponentPropertyValue = PageBlockItemComponentPropertyValue; exports.PageBlockItemComponentValue = PageBlockItemComponentValue; exports.PageBlockItemDividerValue = PageBlockItemDividerValue; exports.PageBlockItemEmbedValue = PageBlockItemEmbedValue; exports.PageBlockItemFigmaComponentValue = PageBlockItemFigmaComponentValue; exports.PageBlockItemFigmaNodeValue = PageBlockItemFigmaNodeValue; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMarkdownValue = PageBlockItemMarkdownValue; exports.PageBlockItemMultiRichTextValue = PageBlockItemMultiRichTextValue; exports.PageBlockItemMultiSelectValue = PageBlockItemMultiSelectValue; exports.PageBlockItemNumberValue = PageBlockItemNumberValue; exports.PageBlockItemRichTextValue = PageBlockItemRichTextValue; exports.PageBlockItemSandboxValue = PageBlockItemSandboxValue; exports.PageBlockItemSingleSelectValue = PageBlockItemSingleSelectValue; exports.PageBlockItemStorybookValue = PageBlockItemStorybookValue; exports.PageBlockItemTableCell = PageBlockItemTableCell; exports.PageBlockItemTableImageNode = PageBlockItemTableImageNode; exports.PageBlockItemTableMultiRichTextNode = PageBlockItemTableMultiRichTextNode; exports.PageBlockItemTableNode = PageBlockItemTableNode; exports.PageBlockItemTableRichTextNode = PageBlockItemTableRichTextNode; exports.PageBlockItemTableRow = PageBlockItemTableRow; exports.PageBlockItemTableValue = PageBlockItemTableValue; exports.PageBlockItemTextValue = PageBlockItemTextValue; exports.PageBlockItemTokenPropertyValue = PageBlockItemTokenPropertyValue; exports.PageBlockItemTokenTypeValue = PageBlockItemTokenTypeValue; exports.PageBlockItemTokenValue = PageBlockItemTokenValue; exports.PageBlockItemUntypedValue = PageBlockItemUntypedValue; exports.PageBlockItemUrlValue = PageBlockItemUrlValue; exports.PageBlockItemV2 = PageBlockItemV2; exports.PageBlockLinkPreview = PageBlockLinkPreview; exports.PageBlockLinkType = PageBlockLinkType; exports.PageBlockLinkV2 = PageBlockLinkV2; exports.PageBlockPreviewContainerSize = PageBlockPreviewContainerSize; exports.PageBlockRenderCodeProperties = PageBlockRenderCodeProperties; exports.PageBlockResourceFrameNodeReference = PageBlockResourceFrameNodeReference; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockTableCellAlignment = PageBlockTableCellAlignment; exports.PageBlockTableColumn = PageBlockTableColumn; exports.PageBlockTableProperties = PageBlockTableProperties; exports.PageBlockText = PageBlockText; exports.PageBlockTextSpan = PageBlockTextSpan; exports.PageBlockTextSpanAttribute = PageBlockTextSpanAttribute; exports.PageBlockTextSpanAttributeType = PageBlockTextSpanAttributeType; exports.PageBlockTheme = PageBlockTheme; exports.PageBlockThemeDisplayMode = PageBlockThemeDisplayMode; exports.PageBlockThemeType = PageBlockThemeType; exports.PageBlockTilesAlignment = PageBlockTilesAlignment; exports.PageBlockTilesLayout = PageBlockTilesLayout; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.PageSectionAppearanceV2 = PageSectionAppearanceV2; exports.PageSectionColumnV2 = PageSectionColumnV2; exports.PageSectionEditorModelV2 = PageSectionEditorModelV2; exports.PageSectionItemV2 = PageSectionItemV2; exports.PageSectionPaddingV2 = PageSectionPaddingV2; exports.PageSectionTypeV2 = PageSectionTypeV2; exports.ParagraphIndentTokenData = ParagraphIndentTokenData; exports.ParagraphIndentUnit = ParagraphIndentUnit; exports.ParagraphIndentValue = ParagraphIndentValue; exports.ParagraphSpacingTokenData = ParagraphSpacingTokenData; exports.ParagraphSpacingUnit = ParagraphSpacingUnit; exports.ParagraphSpacingValue = ParagraphSpacingValue; exports.PeriodSchema = PeriodSchema; exports.PersonalAccessToken = PersonalAccessToken; exports.Pipeline = Pipeline; exports.PipelineDestinationExtraType = PipelineDestinationExtraType; exports.PipelineDestinationGitType = PipelineDestinationGitType; exports.PipelineDestinationType = PipelineDestinationType; exports.PipelineEventType = PipelineEventType; exports.PluginOAuthRequestSchema = PluginOAuthRequestSchema; exports.Point2D = Point2D; exports.PostStripeCheckoutBodyInputSchema = PostStripeCheckoutBodyInputSchema; exports.PostStripeCheckoutOutputSchema = PostStripeCheckoutOutputSchema; exports.PostStripePortalSessionBodyInputSchema = PostStripePortalSessionBodyInputSchema; exports.PostStripePortalSessionOutputSchema = PostStripePortalSessionOutputSchema; exports.PostStripePortalUpdateSessionBodyInputSchema = PostStripePortalUpdateSessionBodyInputSchema; exports.PriceSchema = PriceSchema; exports.ProductCode = ProductCode; exports.ProductCodeSchema = ProductCodeSchema; exports.ProductCopyTokenData = ProductCopyTokenData; exports.ProductCopyValue = ProductCopyValue; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocPage = PublishedDocPage; exports.PublishedDocRoutingVersion = PublishedDocRoutingVersion; exports.PublishedDocsChecksums = PublishedDocsChecksums; exports.PublishedDocsDump = PublishedDocsDump; exports.PulsarBaseProperty = PulsarBaseProperty; exports.PulsarContributionConfigurationProperty = PulsarContributionConfigurationProperty; exports.PulsarContributionVariant = PulsarContributionVariant; exports.PulsarCustomBlock = PulsarCustomBlock; exports.PulsarPropertyType = PulsarPropertyType; exports.RESERVED_SLUGS = RESERVED_SLUGS; exports.RESERVED_SLUG_PREFIX = RESERVED_SLUG_PREFIX; exports.ResolvedAsset = ResolvedAsset; exports.RoomType = RoomType; exports.RoomTypeEnum = RoomTypeEnum; exports.RoomTypeSchema = RoomTypeSchema; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.SafeIdSchema = SafeIdSchema; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.SupernovaException = SupernovaException; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UpdateMembershipRolesInput = UpdateMembershipRolesInput; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserAnalyticsCleanupSchedule = UserAnalyticsCleanupSchedule; exports.UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupScheduleDbInput; exports.UserDump = UserDump; exports.UserIdentity = UserIdentity; exports.UserInvite = UserInvite; exports.UserInvites = UserInvites; exports.UserLinkedIntegrations = UserLinkedIntegrations; exports.UserMinified = UserMinified; exports.UserNotificationSettings = UserNotificationSettings; exports.UserOnboarding = UserOnboarding; exports.UserOnboardingDepartment = UserOnboardingDepartment; exports.UserOnboardingJobLevel = UserOnboardingJobLevel; exports.UserProfile = UserProfile; exports.UserProfileUpdate = UserProfileUpdate; exports.UserSession = UserSession; exports.UserTest = UserTest; exports.VersionCreationJob = VersionCreationJob; exports.VersionCreationJobStatus = VersionCreationJobStatus; exports.Visibility = Visibility; exports.VisibilityTokenData = VisibilityTokenData; exports.VisibilityValue = VisibilityValue; exports.Workspace = Workspace; exports.WorkspaceConfigurationUpdate = WorkspaceConfigurationUpdate; exports.WorkspaceContext = WorkspaceContext; exports.WorkspaceDump = WorkspaceDump; exports.WorkspaceInvitation = WorkspaceInvitation; exports.WorkspaceIpSettings = WorkspaceIpSettings; exports.WorkspaceIpWhitelistEntry = WorkspaceIpWhitelistEntry; exports.WorkspaceMembership = WorkspaceMembership; exports.WorkspaceOAuthRequestSchema = WorkspaceOAuthRequestSchema; exports.WorkspaceProfile = WorkspaceProfile; exports.WorkspaceProfileUpdate = WorkspaceProfileUpdate; exports.WorkspaceRole = WorkspaceRole; exports.WorkspaceRoleSchema = WorkspaceRoleSchema; exports.WorkspaceRoom = WorkspaceRoom; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.buildConstantEnum = buildConstantEnum; exports.defaultDocumentationItemConfigurationV1 = defaultDocumentationItemConfigurationV1; exports.defaultDocumentationItemConfigurationV2 = defaultDocumentationItemConfigurationV2; exports.defaultDocumentationItemHeaderV1 = defaultDocumentationItemHeaderV1; exports.defaultDocumentationItemHeaderV2 = defaultDocumentationItemHeaderV2; exports.defaultNotificationSettings = defaultNotificationSettings; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.filterNonNullish = filterNonNullish; exports.forceUnwrapNullish = forceUnwrapNullish; exports.getCodenameFromText = getCodenameFromText; exports.groupBy = groupBy; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedComponent = isImportedComponent; exports.isImportedDesignToken = isImportedDesignToken; exports.isSlugReserved = isSlugReserved; exports.isTokenType = isTokenType; exports.mapByUnique = mapByUnique; exports.mapPageBlockItemValuesV2 = mapPageBlockItemValuesV2; exports.nonNullFilter = nonNullFilter; exports.nonNullishFilter = nonNullishFilter; exports.nullishToOptional = nullishToOptional; exports.parseUrl = parseUrl; exports.promiseWithTimeout = promiseWithTimeout; exports.publishedDocEnvironments = publishedDocEnvironments; exports.sleep = sleep; exports.slugRegex = slugRegex; exports.slugify = slugify; exports.tokenAliasOrValue = tokenAliasOrValue; exports.tokenElementTypes = tokenElementTypes; exports.traversePageBlockItemValuesV2 = traversePageBlockItemValuesV2; exports.traversePageBlockItemsV2 = traversePageBlockItemsV2; exports.traversePageBlocksV1 = traversePageBlocksV1; exports.traversePageItemsV2 = traversePageItemsV2; exports.traverseStructure = traverseStructure; exports.trimLeadingSlash = trimLeadingSlash; exports.trimTrailingSlash = trimTrailingSlash; exports.tryParseShortPersistentId = tryParseShortPersistentId; exports.tryParseUrl = tryParseUrl; exports.uniqueBy = uniqueBy; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
|
|
5487
|
+
|
|
5488
|
+
|
|
5489
|
+
|
|
5490
|
+
exports.Address = Address; exports.Asset = Asset; exports.AssetDeleteSchedule = AssetDeleteSchedule; exports.AssetDynamoRecord = AssetDynamoRecord; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProcessStatus = AssetProcessStatus; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetRenderConfiguration = AssetRenderConfiguration; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.BillingDetails = BillingDetails; exports.BillingIntervalSchema = BillingIntervalSchema; exports.BillingType = BillingType; exports.BillingTypeSchema = BillingTypeSchema; exports.BlurTokenData = BlurTokenData; exports.BlurType = BlurType; exports.BlurValue = BlurValue; exports.BorderPosition = BorderPosition; exports.BorderRadiusTokenData = BorderRadiusTokenData; exports.BorderRadiusUnit = BorderRadiusUnit; exports.BorderRadiusValue = BorderRadiusValue; exports.BorderStyle = BorderStyle; exports.BorderTokenData = BorderTokenData; exports.BorderValue = BorderValue; exports.BorderWidthTokenData = BorderWidthTokenData; exports.BorderWidthUnit = BorderWidthUnit; exports.BorderWidthValue = BorderWidthValue; exports.Brand = Brand; exports.BrandedElementGroup = BrandedElementGroup; exports.CardSchema = CardSchema; exports.ChangedImportedFigmaSourceData = ChangedImportedFigmaSourceData; exports.CodeIntegrationDump = CodeIntegrationDump; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.Component = Component; exports.ComponentElementData = ComponentElementData; exports.ComponentImportModel = ComponentImportModel; exports.ComponentImportModelInput = ComponentImportModelInput; exports.ComponentOrigin = ComponentOrigin; exports.ComponentOriginPart = ComponentOriginPart; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; exports.CreateUserInput = CreateUserInput; exports.CreateWorkspaceInput = CreateWorkspaceInput; exports.CustomDomain = CustomDomain; exports.Customer = Customer; exports.DataSource = DataSource; exports.DataSourceAutoImportMode = DataSourceAutoImportMode; exports.DataSourceFigmaFileData = DataSourceFigmaFileData; exports.DataSourceFigmaFileVersionData = DataSourceFigmaFileVersionData; exports.DataSourceFigmaImportMetadata = DataSourceFigmaImportMetadata; exports.DataSourceFigmaRemote = DataSourceFigmaRemote; exports.DataSourceFigmaScope = DataSourceFigmaScope; exports.DataSourceFigmaState = DataSourceFigmaState; exports.DataSourceImportModel = DataSourceImportModel; exports.DataSourceRemote = DataSourceRemote; exports.DataSourceRemoteType = DataSourceRemoteType; exports.DataSourceStats = DataSourceStats; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementSnapshotBase = DesignElementSnapshotBase; exports.DesignElementSnapshotReason = DesignElementSnapshotReason; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemCreateInput = DesignSystemCreateInput; exports.DesignSystemDump = DesignSystemDump; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUpdateInput = DesignSystemUpdateInput; exports.DesignSystemVersion = DesignSystemVersion; exports.DesignSystemVersionDump = DesignSystemVersionDump; exports.DesignSystemVersionMultiplayerDump = DesignSystemVersionMultiplayerDump; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemVersionRoomInitialState = DesignSystemVersionRoomInitialState; exports.DesignSystemVersionRoomInternalSettings = DesignSystemVersionRoomInternalSettings; exports.DesignSystemVersionRoomUpdate = DesignSystemVersionRoomUpdate; exports.DesignSystemWithWorkspace = DesignSystemWithWorkspace; exports.DesignToken = DesignToken; exports.DesignTokenImportModel = DesignTokenImportModel; exports.DesignTokenImportModelBase = DesignTokenImportModelBase; exports.DesignTokenImportModelInput = DesignTokenImportModelInput; exports.DesignTokenImportModelInputBase = DesignTokenImportModelInputBase; exports.DesignTokenOrigin = DesignTokenOrigin; exports.DesignTokenOriginPart = DesignTokenOriginPart; exports.DesignTokenType = DesignTokenType; exports.DesignTokenTypedData = DesignTokenTypedData; exports.DimensionTokenData = DimensionTokenData; exports.DimensionUnit = DimensionUnit; exports.DimensionValue = DimensionValue; exports.DocumentationComment = DocumentationComment; exports.DocumentationCommentThread = DocumentationCommentThread; exports.DocumentationGroupBehavior = DocumentationGroupBehavior; exports.DocumentationGroupV1 = DocumentationGroupV1; exports.DocumentationItemConfigurationV1 = DocumentationItemConfigurationV1; exports.DocumentationItemConfigurationV2 = DocumentationItemConfigurationV2; exports.DocumentationItemHeaderAlignment = DocumentationItemHeaderAlignment; exports.DocumentationItemHeaderAlignmentSchema = DocumentationItemHeaderAlignmentSchema; exports.DocumentationItemHeaderImageScaleType = DocumentationItemHeaderImageScaleType; exports.DocumentationItemHeaderImageScaleTypeSchema = DocumentationItemHeaderImageScaleTypeSchema; exports.DocumentationItemHeaderV1 = DocumentationItemHeaderV1; exports.DocumentationItemHeaderV2 = DocumentationItemHeaderV2; exports.DocumentationLinkPreview = DocumentationLinkPreview; exports.DocumentationPage = DocumentationPage; exports.DocumentationPageAnchor = DocumentationPageAnchor; exports.DocumentationPageContent = DocumentationPageContent; exports.DocumentationPageContentBackup = DocumentationPageContentBackup; exports.DocumentationPageContentData = DocumentationPageContentData; exports.DocumentationPageContentItem = DocumentationPageContentItem; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageRoomDump = DocumentationPageRoomDump; exports.DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomInitialStateUpdate; exports.DocumentationPageRoomRoomUpdate = DocumentationPageRoomRoomUpdate; exports.DocumentationPageRoomState = DocumentationPageRoomState; exports.DocumentationPageSnapshot = DocumentationPageSnapshot; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DocumentationThreadDump = DocumentationThreadDump; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupDataV1 = ElementGroupDataV1; exports.ElementGroupDataV2 = ElementGroupDataV2; exports.ElementGroupSnapshot = ElementGroupSnapshot; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyLinkType = ElementPropertyLinkType; exports.ElementPropertyTargetType = ElementPropertyTargetType; exports.ElementPropertyType = ElementPropertyType; exports.ElementPropertyTypeSchema = ElementPropertyTypeSchema; exports.ElementPropertyValue = ElementPropertyValue; exports.ElementView = ElementView; exports.ElementViewBaseColumnType = ElementViewBaseColumnType; exports.ElementViewBasePropertyColumn = ElementViewBasePropertyColumn; exports.ElementViewColumn = ElementViewColumn; exports.ElementViewColumnSharedAttributes = ElementViewColumnSharedAttributes; exports.ElementViewColumnType = ElementViewColumnType; exports.ElementViewPropertyDefinitionColumn = ElementViewPropertyDefinitionColumn; exports.ElementViewThemeColumn = ElementViewThemeColumn; exports.Entity = Entity; exports.ExportDestinationsMap = ExportDestinationsMap; exports.ExportJob = ExportJob; exports.ExportJobContext = ExportJobContext; exports.ExportJobDestinationType = ExportJobDestinationType; exports.ExportJobDocsDestinationResult = ExportJobDocsDestinationResult; exports.ExportJobDocumentationContext = ExportJobDocumentationContext; exports.ExportJobDump = ExportJobDump; exports.ExportJobFindByFilter = ExportJobFindByFilter; exports.ExportJobLogEntry = ExportJobLogEntry; exports.ExportJobLogEntryType = ExportJobLogEntryType; exports.ExportJobPullRequestDestinationResult = ExportJobPullRequestDestinationResult; exports.ExportJobResult = ExportJobResult; exports.ExportJobS3DestinationResult = ExportJobS3DestinationResult; exports.ExportJobStatus = ExportJobStatus; exports.Exporter = Exporter; exports.ExporterDestinationAzure = ExporterDestinationAzure; exports.ExporterDestinationBitbucket = ExporterDestinationBitbucket; exports.ExporterDestinationDocs = ExporterDestinationDocs; exports.ExporterDestinationGithub = ExporterDestinationGithub; exports.ExporterDestinationGitlab = ExporterDestinationGitlab; exports.ExporterDestinationS3 = ExporterDestinationS3; exports.ExporterDetails = ExporterDetails; exports.ExporterFunctionPayload = ExporterFunctionPayload; exports.ExporterPropertyImageValue = ExporterPropertyImageValue; exports.ExporterPropertyValue = ExporterPropertyValue; exports.ExporterPropertyValuesCollection = ExporterPropertyValuesCollection; exports.ExporterPulsarDetails = ExporterPulsarDetails; exports.ExporterSource = ExporterSource; exports.ExporterTag = ExporterTag; exports.ExporterType = ExporterType; exports.ExporterWorkspaceMembership = ExporterWorkspaceMembership; exports.ExporterWorkspaceMembershipRole = ExporterWorkspaceMembershipRole; exports.ExtendedIntegrationType = ExtendedIntegrationType; exports.ExternalOAuthRequest = ExternalOAuthRequest; exports.ExternalServiceType = ExternalServiceType; exports.FeatureFlag = FeatureFlag; exports.FeatureFlagMap = FeatureFlagMap; exports.FeaturesSummary = FeaturesSummary; exports.FigmaFileAccessData = FigmaFileAccessData; exports.FigmaFileDownloadScope = FigmaFileDownloadScope; exports.FigmaFileStructure = FigmaFileStructure; exports.FigmaFileStructureData = FigmaFileStructureData; exports.FigmaFileStructureElementData = FigmaFileStructureElementData; exports.FigmaFileStructureImportModel = FigmaFileStructureImportModel; exports.FigmaFileStructureImportModelInput = FigmaFileStructureImportModelInput; exports.FigmaFileStructureNode = FigmaFileStructureNode; exports.FigmaFileStructureNodeBase = FigmaFileStructureNodeBase; exports.FigmaFileStructureNodeImportModel = FigmaFileStructureNodeImportModel; exports.FigmaFileStructureNodeType = FigmaFileStructureNodeType; exports.FigmaFileStructureOrigin = FigmaFileStructureOrigin; exports.FigmaFileStructureStatistics = FigmaFileStructureStatistics; exports.FigmaImportBaseContext = FigmaImportBaseContext; exports.FigmaImportContextWithDownloadScopes = FigmaImportContextWithDownloadScopes; exports.FigmaImportContextWithSourcesState = FigmaImportContextWithSourcesState; exports.FigmaNodeReference = FigmaNodeReference; exports.FigmaNodeReferenceData = FigmaNodeReferenceData; exports.FigmaNodeReferenceElementData = FigmaNodeReferenceElementData; exports.FigmaNodeReferenceOrigin = FigmaNodeReferenceOrigin; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.GitBranch = GitBranch; exports.GitIntegrationType = GitIntegrationType; exports.GitObjectsQuery = GitObjectsQuery; exports.GitOrganization = GitOrganization; exports.GitProject = GitProject; exports.GitProvider = GitProvider; exports.GitProviderNames = GitProviderNames; exports.GitRepository = GitRepository; exports.GradientLayerData = GradientLayerData; exports.GradientLayerValue = GradientLayerValue; exports.GradientStop = GradientStop; exports.GradientTokenData = GradientTokenData; exports.GradientTokenValue = GradientTokenValue; exports.GradientType = GradientType; exports.HANDLE_MAX_LENGTH = HANDLE_MAX_LENGTH; exports.HANDLE_MIN_LENGTH = HANDLE_MIN_LENGTH; exports.HierarchicalElements = HierarchicalElements; exports.IconSet = IconSet; exports.ImageImportModel = ImageImportModel; exports.ImageImportModelType = ImageImportModelType; exports.ImportFunctionInput = ImportFunctionInput; exports.ImportJob = ImportJob; exports.ImportJobOperation = ImportJobOperation; exports.ImportJobState = ImportJobState; exports.ImportModelBase = ImportModelBase; exports.ImportModelCollection = ImportModelCollection; exports.ImportModelInputBase = ImportModelInputBase; exports.ImportModelInputCollection = ImportModelInputCollection; exports.ImportWarning = ImportWarning; exports.ImportWarningType = ImportWarningType; exports.ImportedFigmaSourceData = ImportedFigmaSourceData; exports.Integration = Integration; exports.IntegrationAuthType = IntegrationAuthType; exports.IntegrationCredentials = IntegrationCredentials; exports.IntegrationCredentialsProfile = IntegrationCredentialsProfile; exports.IntegrationCredentialsState = IntegrationCredentialsState; exports.IntegrationCredentialsType = IntegrationCredentialsType; exports.IntegrationDesignSystem = IntegrationDesignSystem; exports.IntegrationToken = IntegrationToken; exports.IntegrationTokenSchemaOld = IntegrationTokenSchemaOld; exports.IntegrationType = IntegrationType; exports.IntegrationUserInfo = IntegrationUserInfo; exports.InternalStatus = InternalStatus; exports.InternalStatusSchema = InternalStatusSchema; exports.InvoiceCouponSchema = InvoiceCouponSchema; exports.InvoiceLineSchema = InvoiceLineSchema; exports.InvoiceSchema = InvoiceSchema; exports.LetterSpacingTokenData = LetterSpacingTokenData; exports.LetterSpacingUnit = LetterSpacingUnit; exports.LetterSpacingValue = LetterSpacingValue; exports.LineHeightTokenData = LineHeightTokenData; exports.LineHeightUnit = LineHeightUnit; exports.LineHeightValue = LineHeightValue; exports.LiveblocksNotificationSettings = LiveblocksNotificationSettings; exports.MAX_MEMBERS_COUNT = MAX_MEMBERS_COUNT; exports.NpmPackage = NpmPackage; exports.NpmProxyToken = NpmProxyToken; exports.NpmProxyTokenPayload = NpmProxyTokenPayload; exports.NpmRegistrCustomAuthConfig = NpmRegistrCustomAuthConfig; exports.NpmRegistryAuthConfig = NpmRegistryAuthConfig; exports.NpmRegistryAuthType = NpmRegistryAuthType; exports.NpmRegistryBasicAuthConfig = NpmRegistryBasicAuthConfig; exports.NpmRegistryBearerAuthConfig = NpmRegistryBearerAuthConfig; exports.NpmRegistryConfig = NpmRegistryConfig; exports.NpmRegistryNoAuthConfig = NpmRegistryNoAuthConfig; exports.NpmRegistryType = NpmRegistryType; exports.OAuthProvider = OAuthProvider; exports.OAuthProviderNames = OAuthProviderNames; exports.OAuthProviderSchema = OAuthProviderSchema; exports.ObjectMeta = ObjectMeta; exports.OpacityTokenData = OpacityTokenData; exports.OpacityValue = OpacityValue; exports.PageBlockAlignment = PageBlockAlignment; exports.PageBlockAppearanceV2 = PageBlockAppearanceV2; exports.PageBlockAsset = PageBlockAsset; exports.PageBlockAssetComponent = PageBlockAssetComponent; exports.PageBlockAssetEntityMeta = PageBlockAssetEntityMeta; exports.PageBlockAssetType = PageBlockAssetType; exports.PageBlockBaseV1 = PageBlockBaseV1; exports.PageBlockBehaviorDataType = PageBlockBehaviorDataType; exports.PageBlockBehaviorSelectionType = PageBlockBehaviorSelectionType; exports.PageBlockCalloutType = PageBlockCalloutType; exports.PageBlockCategory = PageBlockCategory; exports.PageBlockCodeLanguage = PageBlockCodeLanguage; exports.PageBlockColorV2 = PageBlockColorV2; exports.PageBlockCustomBlockPropertyImageValue = PageBlockCustomBlockPropertyImageValue; exports.PageBlockCustomBlockPropertyValue = PageBlockCustomBlockPropertyValue; exports.PageBlockDataV2 = PageBlockDataV2; exports.PageBlockDefinition = PageBlockDefinition; exports.PageBlockDefinitionAppearance = PageBlockDefinitionAppearance; exports.PageBlockDefinitionBehavior = PageBlockDefinitionBehavior; exports.PageBlockDefinitionBooleanOptions = PageBlockDefinitionBooleanOptions; exports.PageBlockDefinitionBooleanPropertyStyle = PageBlockDefinitionBooleanPropertyStyle; exports.PageBlockDefinitionComponentOptions = PageBlockDefinitionComponentOptions; exports.PageBlockDefinitionImageAspectRatio = PageBlockDefinitionImageAspectRatio; exports.PageBlockDefinitionImageOptions = PageBlockDefinitionImageOptions; exports.PageBlockDefinitionImageWidth = PageBlockDefinitionImageWidth; exports.PageBlockDefinitionItem = PageBlockDefinitionItem; exports.PageBlockDefinitionLayout = PageBlockDefinitionLayout; exports.PageBlockDefinitionLayoutAlign = PageBlockDefinitionLayoutAlign; exports.PageBlockDefinitionLayoutBase = PageBlockDefinitionLayoutBase; exports.PageBlockDefinitionLayoutGap = PageBlockDefinitionLayoutGap; exports.PageBlockDefinitionLayoutResizing = PageBlockDefinitionLayoutResizing; exports.PageBlockDefinitionLayoutType = PageBlockDefinitionLayoutType; exports.PageBlockDefinitionMultiRichTextPropertyStyle = PageBlockDefinitionMultiRichTextPropertyStyle; exports.PageBlockDefinitionMultiSelectPropertyStyle = PageBlockDefinitionMultiSelectPropertyStyle; exports.PageBlockDefinitionMutiRichTextOptions = PageBlockDefinitionMutiRichTextOptions; exports.PageBlockDefinitionNumberOptions = PageBlockDefinitionNumberOptions; exports.PageBlockDefinitionOnboarding = PageBlockDefinitionOnboarding; exports.PageBlockDefinitionProperty = PageBlockDefinitionProperty; exports.PageBlockDefinitionPropertyType = PageBlockDefinitionPropertyType; exports.PageBlockDefinitionRichTextOptions = PageBlockDefinitionRichTextOptions; exports.PageBlockDefinitionRichTextPropertyStyle = PageBlockDefinitionRichTextPropertyStyle; exports.PageBlockDefinitionSelectChoice = PageBlockDefinitionSelectChoice; exports.PageBlockDefinitionSelectOptions = PageBlockDefinitionSelectOptions; exports.PageBlockDefinitionSingleSelectPropertyColor = PageBlockDefinitionSingleSelectPropertyColor; exports.PageBlockDefinitionSingleSelectPropertyStyle = PageBlockDefinitionSingleSelectPropertyStyle; exports.PageBlockDefinitionTextOptions = PageBlockDefinitionTextOptions; exports.PageBlockDefinitionTextPropertyColor = PageBlockDefinitionTextPropertyColor; exports.PageBlockDefinitionTextPropertyStyle = PageBlockDefinitionTextPropertyStyle; exports.PageBlockDefinitionUntypedPropertyOptions = PageBlockDefinitionUntypedPropertyOptions; exports.PageBlockDefinitionVariant = PageBlockDefinitionVariant; exports.PageBlockDefinitionsMap = PageBlockDefinitionsMap; exports.PageBlockEditorModelV2 = PageBlockEditorModelV2; exports.PageBlockFigmaComponentEntityMeta = PageBlockFigmaComponentEntityMeta; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFigmaNodeEntityMeta = PageBlockFigmaNodeEntityMeta; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockImageAlignment = PageBlockImageAlignment; exports.PageBlockImageReference = PageBlockImageReference; exports.PageBlockImageResourceReference = PageBlockImageResourceReference; exports.PageBlockImageType = PageBlockImageType; exports.PageBlockItemAssetPropertyValue = PageBlockItemAssetPropertyValue; exports.PageBlockItemAssetValue = PageBlockItemAssetValue; exports.PageBlockItemBooleanValue = PageBlockItemBooleanValue; exports.PageBlockItemCodeValue = PageBlockItemCodeValue; exports.PageBlockItemColorValue = PageBlockItemColorValue; exports.PageBlockItemComponentPropertyValue = PageBlockItemComponentPropertyValue; exports.PageBlockItemComponentValue = PageBlockItemComponentValue; exports.PageBlockItemDividerValue = PageBlockItemDividerValue; exports.PageBlockItemEmbedValue = PageBlockItemEmbedValue; exports.PageBlockItemFigmaComponentValue = PageBlockItemFigmaComponentValue; exports.PageBlockItemFigmaNodeValue = PageBlockItemFigmaNodeValue; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMarkdownValue = PageBlockItemMarkdownValue; exports.PageBlockItemMultiRichTextValue = PageBlockItemMultiRichTextValue; exports.PageBlockItemMultiSelectValue = PageBlockItemMultiSelectValue; exports.PageBlockItemNumberValue = PageBlockItemNumberValue; exports.PageBlockItemRichTextValue = PageBlockItemRichTextValue; exports.PageBlockItemSandboxValue = PageBlockItemSandboxValue; exports.PageBlockItemSingleSelectValue = PageBlockItemSingleSelectValue; exports.PageBlockItemStorybookValue = PageBlockItemStorybookValue; exports.PageBlockItemTableCell = PageBlockItemTableCell; exports.PageBlockItemTableImageNode = PageBlockItemTableImageNode; exports.PageBlockItemTableMultiRichTextNode = PageBlockItemTableMultiRichTextNode; exports.PageBlockItemTableNode = PageBlockItemTableNode; exports.PageBlockItemTableRichTextNode = PageBlockItemTableRichTextNode; exports.PageBlockItemTableRow = PageBlockItemTableRow; exports.PageBlockItemTableValue = PageBlockItemTableValue; exports.PageBlockItemTextValue = PageBlockItemTextValue; exports.PageBlockItemTokenPropertyValue = PageBlockItemTokenPropertyValue; exports.PageBlockItemTokenTypeValue = PageBlockItemTokenTypeValue; exports.PageBlockItemTokenValue = PageBlockItemTokenValue; exports.PageBlockItemUntypedValue = PageBlockItemUntypedValue; exports.PageBlockItemUrlValue = PageBlockItemUrlValue; exports.PageBlockItemV2 = PageBlockItemV2; exports.PageBlockLinkPreview = PageBlockLinkPreview; exports.PageBlockLinkType = PageBlockLinkType; exports.PageBlockLinkV2 = PageBlockLinkV2; exports.PageBlockPreviewContainerSize = PageBlockPreviewContainerSize; exports.PageBlockRenderCodeProperties = PageBlockRenderCodeProperties; exports.PageBlockResourceFrameNodeReference = PageBlockResourceFrameNodeReference; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockTableCellAlignment = PageBlockTableCellAlignment; exports.PageBlockTableColumn = PageBlockTableColumn; exports.PageBlockTableProperties = PageBlockTableProperties; exports.PageBlockText = PageBlockText; exports.PageBlockTextSpan = PageBlockTextSpan; exports.PageBlockTextSpanAttribute = PageBlockTextSpanAttribute; exports.PageBlockTextSpanAttributeType = PageBlockTextSpanAttributeType; exports.PageBlockTheme = PageBlockTheme; exports.PageBlockThemeDisplayMode = PageBlockThemeDisplayMode; exports.PageBlockThemeType = PageBlockThemeType; exports.PageBlockTilesAlignment = PageBlockTilesAlignment; exports.PageBlockTilesLayout = PageBlockTilesLayout; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.PageSectionAppearanceV2 = PageSectionAppearanceV2; exports.PageSectionColumnV2 = PageSectionColumnV2; exports.PageSectionEditorModelV2 = PageSectionEditorModelV2; exports.PageSectionItemV2 = PageSectionItemV2; exports.PageSectionPaddingV2 = PageSectionPaddingV2; exports.PageSectionTypeV2 = PageSectionTypeV2; exports.ParagraphIndentTokenData = ParagraphIndentTokenData; exports.ParagraphIndentUnit = ParagraphIndentUnit; exports.ParagraphIndentValue = ParagraphIndentValue; exports.ParagraphSpacingTokenData = ParagraphSpacingTokenData; exports.ParagraphSpacingUnit = ParagraphSpacingUnit; exports.ParagraphSpacingValue = ParagraphSpacingValue; exports.PeriodSchema = PeriodSchema; exports.PersonalAccessToken = PersonalAccessToken; exports.Pipeline = Pipeline; exports.PipelineDestinationExtraType = PipelineDestinationExtraType; exports.PipelineDestinationGitType = PipelineDestinationGitType; exports.PipelineDestinationType = PipelineDestinationType; exports.PipelineEventType = PipelineEventType; exports.PluginOAuthRequestSchema = PluginOAuthRequestSchema; exports.Point2D = Point2D; exports.PostStripeCheckoutBodyInputSchema = PostStripeCheckoutBodyInputSchema; exports.PostStripeCheckoutOutputSchema = PostStripeCheckoutOutputSchema; exports.PostStripePortalSessionBodyInputSchema = PostStripePortalSessionBodyInputSchema; exports.PostStripePortalSessionOutputSchema = PostStripePortalSessionOutputSchema; exports.PostStripePortalUpdateSessionBodyInputSchema = PostStripePortalUpdateSessionBodyInputSchema; exports.PriceSchema = PriceSchema; exports.ProductCode = ProductCode; exports.ProductCodeSchema = ProductCodeSchema; exports.ProductCopyTokenData = ProductCopyTokenData; exports.ProductCopyValue = ProductCopyValue; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocPage = PublishedDocPage; exports.PublishedDocRoutingVersion = PublishedDocRoutingVersion; exports.PublishedDocsChecksums = PublishedDocsChecksums; exports.PublishedDocsDump = PublishedDocsDump; exports.PulsarBaseProperty = PulsarBaseProperty; exports.PulsarContributionConfigurationProperty = PulsarContributionConfigurationProperty; exports.PulsarContributionVariant = PulsarContributionVariant; exports.PulsarCustomBlock = PulsarCustomBlock; exports.PulsarPropertyType = PulsarPropertyType; exports.RESERVED_SLUGS = RESERVED_SLUGS; exports.RESERVED_SLUG_PREFIX = RESERVED_SLUG_PREFIX; exports.RenderedAssetFile = RenderedAssetFile; exports.ResolvedAsset = ResolvedAsset; exports.RoomType = RoomType; exports.RoomTypeEnum = RoomTypeEnum; exports.RoomTypeSchema = RoomTypeSchema; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.SafeIdSchema = SafeIdSchema; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.SupernovaException = SupernovaException; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UpdateMembershipRolesInput = UpdateMembershipRolesInput; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserAnalyticsCleanupSchedule = UserAnalyticsCleanupSchedule; exports.UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupScheduleDbInput; exports.UserDump = UserDump; exports.UserIdentity = UserIdentity; exports.UserInvite = UserInvite; exports.UserInvites = UserInvites; exports.UserLinkedIntegrations = UserLinkedIntegrations; exports.UserMinified = UserMinified; exports.UserNotificationSettings = UserNotificationSettings; exports.UserOnboarding = UserOnboarding; exports.UserOnboardingDepartment = UserOnboardingDepartment; exports.UserOnboardingJobLevel = UserOnboardingJobLevel; exports.UserProfile = UserProfile; exports.UserProfileUpdate = UserProfileUpdate; exports.UserSession = UserSession; exports.UserTest = UserTest; exports.VersionCreationJob = VersionCreationJob; exports.VersionCreationJobStatus = VersionCreationJobStatus; exports.Visibility = Visibility; exports.VisibilityTokenData = VisibilityTokenData; exports.VisibilityValue = VisibilityValue; exports.Workspace = Workspace; exports.WorkspaceConfigurationUpdate = WorkspaceConfigurationUpdate; exports.WorkspaceContext = WorkspaceContext; exports.WorkspaceDump = WorkspaceDump; exports.WorkspaceInvitation = WorkspaceInvitation; exports.WorkspaceIpSettings = WorkspaceIpSettings; exports.WorkspaceIpWhitelistEntry = WorkspaceIpWhitelistEntry; exports.WorkspaceMembership = WorkspaceMembership; exports.WorkspaceOAuthRequestSchema = WorkspaceOAuthRequestSchema; exports.WorkspaceProfile = WorkspaceProfile; exports.WorkspaceProfileUpdate = WorkspaceProfileUpdate; exports.WorkspaceRole = WorkspaceRole; exports.WorkspaceRoleSchema = WorkspaceRoleSchema; exports.WorkspaceRoom = WorkspaceRoom; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.buildConstantEnum = buildConstantEnum; exports.defaultDocumentationItemConfigurationV1 = defaultDocumentationItemConfigurationV1; exports.defaultDocumentationItemConfigurationV2 = defaultDocumentationItemConfigurationV2; exports.defaultDocumentationItemHeaderV1 = defaultDocumentationItemHeaderV1; exports.defaultDocumentationItemHeaderV2 = defaultDocumentationItemHeaderV2; exports.defaultNotificationSettings = defaultNotificationSettings; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.filterNonNullish = filterNonNullish; exports.forceUnwrapNullish = forceUnwrapNullish; exports.getCodenameFromText = getCodenameFromText; exports.getFigmaRenderFormatFileExtension = getFigmaRenderFormatFileExtension; exports.groupBy = groupBy; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedComponent = isImportedComponent; exports.isImportedDesignToken = isImportedDesignToken; exports.isSlugReserved = isSlugReserved; exports.isTokenType = isTokenType; exports.mapByUnique = mapByUnique; exports.mapPageBlockItemValuesV2 = mapPageBlockItemValuesV2; exports.nonNullFilter = nonNullFilter; exports.nonNullishFilter = nonNullishFilter; exports.nullishToOptional = nullishToOptional; exports.parseUrl = parseUrl; exports.promiseWithTimeout = promiseWithTimeout; exports.publishedDocEnvironments = publishedDocEnvironments; exports.sleep = sleep; exports.slugRegex = slugRegex; exports.slugify = slugify; exports.tokenAliasOrValue = tokenAliasOrValue; exports.tokenElementTypes = tokenElementTypes; exports.traversePageBlockItemValuesV2 = traversePageBlockItemValuesV2; exports.traversePageBlockItemsV2 = traversePageBlockItemsV2; exports.traversePageBlocksV1 = traversePageBlocksV1; exports.traversePageItemsV2 = traversePageItemsV2; exports.traverseStructure = traverseStructure; exports.trimLeadingSlash = trimLeadingSlash; exports.trimTrailingSlash = trimTrailingSlash; exports.tryParseShortPersistentId = tryParseShortPersistentId; exports.tryParseUrl = tryParseUrl; exports.uniqueBy = uniqueBy; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
|
|
5458
5491
|
//# sourceMappingURL=index.js.map
|