@supernova-studio/model 0.47.33 → 0.47.34
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 +101453 -85718
- package/dist/index.d.ts +101453 -85718
- package/dist/index.js +424 -319
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1944 -1839
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/data-dumps/code-integration-dump.ts +18 -0
- package/src/data-dumps/design-system-dump.ts +14 -0
- package/src/data-dumps/design-system-version-dump.ts +46 -0
- package/src/data-dumps/index.ts +5 -0
- package/src/data-dumps/published-docs-dump.ts +9 -0
- package/src/data-dumps/workspace-dump.ts +14 -0
- package/src/dsm/assets/asset.ts +7 -4
- package/src/dsm/data-sources/data-source.ts +15 -18
- package/src/index.ts +1 -0
- package/src/workspace/workspace.ts +4 -6
package/dist/index.js
CHANGED
|
@@ -283,154 +283,11 @@ var CustomDomain = _zod.z.object({
|
|
|
283
283
|
errorCode: _zod.z.string().nullish()
|
|
284
284
|
});
|
|
285
285
|
|
|
286
|
-
// src/
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
// src/users/linked-integrations.ts
|
|
290
|
-
|
|
291
|
-
var IntegrationAuthType = _zod.z.union([_zod.z.literal("OAuth2"), _zod.z.literal("PAT")]);
|
|
292
|
-
var ExternalServiceType = _zod.z.union([
|
|
293
|
-
_zod.z.literal("figma"),
|
|
294
|
-
_zod.z.literal("github"),
|
|
295
|
-
_zod.z.literal("azure"),
|
|
296
|
-
_zod.z.literal("gitlab"),
|
|
297
|
-
_zod.z.literal("bitbucket")
|
|
298
|
-
]);
|
|
299
|
-
var IntegrationUserInfo = _zod.z.object({
|
|
300
|
-
id: _zod.z.string(),
|
|
301
|
-
handle: _zod.z.string().optional(),
|
|
302
|
-
avatarUrl: _zod.z.string().optional(),
|
|
303
|
-
email: _zod.z.string().optional(),
|
|
304
|
-
authType: IntegrationAuthType.optional(),
|
|
305
|
-
customUrl: _zod.z.string().optional()
|
|
306
|
-
});
|
|
307
|
-
var UserLinkedIntegrations = _zod.z.object({
|
|
308
|
-
figma: IntegrationUserInfo.optional(),
|
|
309
|
-
github: IntegrationUserInfo.array().optional(),
|
|
310
|
-
azure: IntegrationUserInfo.array().optional(),
|
|
311
|
-
gitlab: IntegrationUserInfo.array().optional(),
|
|
312
|
-
bitbucket: IntegrationUserInfo.array().optional()
|
|
313
|
-
});
|
|
314
|
-
|
|
315
|
-
// src/users/user-analytics-cleanup-schedule.ts
|
|
316
|
-
|
|
317
|
-
var UserAnalyticsCleanupSchedule = _zod.z.object({
|
|
318
|
-
userId: _zod.z.string(),
|
|
319
|
-
createdAt: _zod.z.coerce.date(),
|
|
320
|
-
deleteAt: _zod.z.coerce.date()
|
|
321
|
-
});
|
|
322
|
-
var UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupSchedule.omit({
|
|
323
|
-
createdAt: true
|
|
324
|
-
});
|
|
325
|
-
|
|
326
|
-
// src/users/user-create.ts
|
|
327
|
-
|
|
328
|
-
var CreateUserInput = _zod.z.object({
|
|
329
|
-
email: _zod.z.string(),
|
|
330
|
-
name: _zod.z.string(),
|
|
331
|
-
username: _zod.z.string()
|
|
332
|
-
});
|
|
333
|
-
|
|
334
|
-
// src/users/user-identity.ts
|
|
335
|
-
|
|
336
|
-
var UserIdentity = _zod.z.object({
|
|
337
|
-
id: _zod.z.string(),
|
|
338
|
-
userId: _zod.z.string()
|
|
339
|
-
});
|
|
340
|
-
|
|
341
|
-
// src/users/user-minified.ts
|
|
342
|
-
|
|
343
|
-
var UserMinified = _zod.z.object({
|
|
344
|
-
id: _zod.z.string(),
|
|
345
|
-
name: _zod.z.string(),
|
|
346
|
-
email: _zod.z.string(),
|
|
347
|
-
avatar: _zod.z.string().optional()
|
|
348
|
-
});
|
|
349
|
-
|
|
350
|
-
// src/users/user-notification-settings.ts
|
|
351
|
-
|
|
352
|
-
var LiveblocksNotificationSettings = _zod.z.object({
|
|
353
|
-
sendCommentNotificationEmails: _zod.z.boolean()
|
|
354
|
-
});
|
|
355
|
-
var UserNotificationSettings = _zod.z.object({
|
|
356
|
-
liveblocksNotificationSettings: LiveblocksNotificationSettings
|
|
357
|
-
});
|
|
358
|
-
var defaultNotificationSettings = {
|
|
359
|
-
liveblocksNotificationSettings: {
|
|
360
|
-
sendCommentNotificationEmails: true
|
|
361
|
-
}
|
|
362
|
-
};
|
|
363
|
-
|
|
364
|
-
// src/users/user-profile.ts
|
|
365
|
-
|
|
366
|
-
var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
|
|
367
|
-
var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
|
|
368
|
-
var UserOnboarding = _zod.z.object({
|
|
369
|
-
companyName: _zod.z.string().optional(),
|
|
370
|
-
numberOfPeopleInOrg: _zod.z.string().optional(),
|
|
371
|
-
numberOfPeopleInDesignTeam: _zod.z.string().optional(),
|
|
372
|
-
department: UserOnboardingDepartment.optional(),
|
|
373
|
-
jobTitle: _zod.z.string().optional(),
|
|
374
|
-
phase: _zod.z.string().optional(),
|
|
375
|
-
jobLevel: UserOnboardingJobLevel.optional(),
|
|
376
|
-
designSystemName: _zod.z.string().optional(),
|
|
377
|
-
defaultDestination: _zod.z.string().optional(),
|
|
378
|
-
figmaUrl: _zod.z.string().optional()
|
|
379
|
-
});
|
|
380
|
-
var UserProfile = _zod.z.object({
|
|
381
|
-
name: _zod.z.string(),
|
|
382
|
-
avatar: _zod.z.string().optional(),
|
|
383
|
-
nickname: _zod.z.string().optional(),
|
|
384
|
-
onboarding: UserOnboarding.optional()
|
|
385
|
-
});
|
|
386
|
-
var UserProfileUpdate = UserProfile.partial().omit({
|
|
387
|
-
avatar: true
|
|
388
|
-
});
|
|
389
|
-
|
|
390
|
-
// src/users/user-test.ts
|
|
391
|
-
|
|
392
|
-
var UserTest = _zod.z.object({
|
|
393
|
-
id: _zod.z.string(),
|
|
394
|
-
email: _zod.z.string()
|
|
395
|
-
});
|
|
286
|
+
// src/data-dumps/code-integration-dump.ts
|
|
396
287
|
|
|
397
|
-
// src/users/user.ts
|
|
398
288
|
|
|
399
|
-
|
|
400
|
-
id: _zod.z.string(),
|
|
401
|
-
email: _zod.z.string(),
|
|
402
|
-
emailVerified: _zod.z.boolean(),
|
|
403
|
-
createdAt: _zod.z.coerce.date(),
|
|
404
|
-
trialExpiresAt: _zod.z.coerce.date().optional(),
|
|
405
|
-
profile: UserProfile,
|
|
406
|
-
linkedIntegrations: UserLinkedIntegrations.optional(),
|
|
407
|
-
loggedOutAt: _zod.z.coerce.date().optional(),
|
|
408
|
-
isProtected: _zod.z.boolean()
|
|
409
|
-
});
|
|
289
|
+
// src/export/export-runner/export-context.ts
|
|
410
290
|
|
|
411
|
-
// src/docs-server/session.ts
|
|
412
|
-
var NpmProxyToken = _zod.z.object({
|
|
413
|
-
access: _zod.z.string(),
|
|
414
|
-
expiresAt: _zod.z.number()
|
|
415
|
-
});
|
|
416
|
-
var SessionData = _zod.z.object({
|
|
417
|
-
returnToUrl: _zod.z.string().optional(),
|
|
418
|
-
npmProxyToken: NpmProxyToken.optional()
|
|
419
|
-
});
|
|
420
|
-
var Session = _zod.z.object({
|
|
421
|
-
id: _zod.z.string(),
|
|
422
|
-
expiresAt: _zod.z.coerce.date(),
|
|
423
|
-
userId: _zod.z.string().nullable(),
|
|
424
|
-
data: SessionData
|
|
425
|
-
});
|
|
426
|
-
var AuthTokens = _zod.z.object({
|
|
427
|
-
access: _zod.z.string(),
|
|
428
|
-
refresh: _zod.z.string()
|
|
429
|
-
});
|
|
430
|
-
var UserSession = _zod.z.object({
|
|
431
|
-
session: Session,
|
|
432
|
-
user: User.nullable()
|
|
433
|
-
});
|
|
434
291
|
|
|
435
292
|
// src/dsm/assets/asset-dynamo-record.ts
|
|
436
293
|
|
|
@@ -487,99 +344,17 @@ var Asset = _zod.z.object({
|
|
|
487
344
|
origin: AssetOrigin.optional(),
|
|
488
345
|
originKey: _zod.z.string().optional()
|
|
489
346
|
});
|
|
347
|
+
var ResolvedAsset = Asset.omit({
|
|
348
|
+
filePath: true
|
|
349
|
+
}).extend({
|
|
350
|
+
url: _zod.z.string()
|
|
351
|
+
});
|
|
490
352
|
function isImportedAsset(asset) {
|
|
491
353
|
return !!asset.originKey;
|
|
492
354
|
}
|
|
493
355
|
|
|
494
356
|
// src/dsm/data-sources/data-source.ts
|
|
495
357
|
|
|
496
|
-
var DataSourceRemoteType = _zod.z.enum(["Figma", "TokenStudio", "FigmaVariablesPlugin"]);
|
|
497
|
-
var DataSourceUploadRemoteSource = _zod.z.enum(["TokenStudio", "FigmaVariablesPlugin", "Custom"]);
|
|
498
|
-
var DataSourceFigmaState = _zod.z.enum(["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]);
|
|
499
|
-
var DataSourceAutoImportMode = _zod.z.enum(["Never", "Hourly"]);
|
|
500
|
-
var DataSourceStats = _zod.z.object({
|
|
501
|
-
tokens: zeroNumberByDefault(),
|
|
502
|
-
components: zeroNumberByDefault(),
|
|
503
|
-
assets: zeroNumberByDefault(),
|
|
504
|
-
frames: zeroNumberByDefault()
|
|
505
|
-
});
|
|
506
|
-
var DataSourceFigmaFileData = _zod.z.object({
|
|
507
|
-
lastUpdatedAt: _zod.z.coerce.date()
|
|
508
|
-
});
|
|
509
|
-
var DataSourceFigmaFileVersionData = _zod.z.object({
|
|
510
|
-
id: _zod.z.string(),
|
|
511
|
-
label: _zod.z.string().optional(),
|
|
512
|
-
description: _zod.z.string().optional(),
|
|
513
|
-
createdAt: _zod.z.coerce.date()
|
|
514
|
-
});
|
|
515
|
-
var DataSourceFigmaScope = _zod.z.object({
|
|
516
|
-
assets: _zod.z.boolean(),
|
|
517
|
-
components: _zod.z.boolean(),
|
|
518
|
-
documentationFrames: _zod.z.boolean(),
|
|
519
|
-
tokens: _zod.z.boolean(),
|
|
520
|
-
themePersistentId: _zod.z.string().optional(),
|
|
521
|
-
isUnpublishedContentFallbackEnabled: _zod.z.boolean()
|
|
522
|
-
});
|
|
523
|
-
var DataSourceFigmaImportMetadata = _zod.z.object({
|
|
524
|
-
fileData: DataSourceFigmaFileData.optional(),
|
|
525
|
-
importedPublishedVersion: DataSourceFigmaFileVersionData.optional()
|
|
526
|
-
});
|
|
527
|
-
var DataSourceFigmaRemote = _zod.z.object({
|
|
528
|
-
type: _zod.z.literal(DataSourceRemoteType.Enum.Figma),
|
|
529
|
-
fileId: _zod.z.string(),
|
|
530
|
-
preferredCredentialId: _zod.z.string().optional(),
|
|
531
|
-
ownerId: _zod.z.string(),
|
|
532
|
-
// todo remove or keep to reference who created data source
|
|
533
|
-
ownerName: _zod.z.string(),
|
|
534
|
-
// todo probably remove
|
|
535
|
-
scope: DataSourceFigmaScope,
|
|
536
|
-
state: DataSourceFigmaState,
|
|
537
|
-
requiresSync: _zod.z.boolean().optional().transform((v) => _nullishCoalesce(v, () => ( false))),
|
|
538
|
-
lastImportMetadata: DataSourceFigmaImportMetadata.optional(),
|
|
539
|
-
downloadChunkSize: _zod.z.number().optional(),
|
|
540
|
-
figmaRenderChunkSize: _zod.z.number().optional(),
|
|
541
|
-
maxFileDepth: _zod.z.number().optional()
|
|
542
|
-
});
|
|
543
|
-
var DataSourceTokenStudioRemote = _zod.z.object({
|
|
544
|
-
type: _zod.z.literal(DataSourceRemoteType.Enum.TokenStudio)
|
|
545
|
-
});
|
|
546
|
-
var DataSourceUploadImportMetadata = _zod.z.record(_zod.z.any());
|
|
547
|
-
var DataSourceUploadRemote = _zod.z.object({
|
|
548
|
-
type: _zod.z.literal(DataSourceRemoteType.Enum.FigmaVariablesPlugin),
|
|
549
|
-
remoteId: _zod.z.string(),
|
|
550
|
-
remoteSourceType: DataSourceUploadRemoteSource,
|
|
551
|
-
lastImportMetadata: DataSourceUploadImportMetadata.optional()
|
|
552
|
-
});
|
|
553
|
-
var DataSourceRemote = _zod.z.discriminatedUnion("type", [
|
|
554
|
-
DataSourceFigmaRemote,
|
|
555
|
-
DataSourceUploadRemote,
|
|
556
|
-
DataSourceTokenStudioRemote
|
|
557
|
-
]);
|
|
558
|
-
var DataSourceVersion = _zod.z.object({
|
|
559
|
-
id: _zod.z.string(),
|
|
560
|
-
createdAt: _zod.z.coerce.date(),
|
|
561
|
-
label: _zod.z.string().nullish(),
|
|
562
|
-
description: _zod.z.string().nullish()
|
|
563
|
-
});
|
|
564
|
-
function zeroNumberByDefault() {
|
|
565
|
-
return _zod.z.number().nullish().transform((v) => _nullishCoalesce(v, () => ( 0)));
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
// src/dsm/data-sources/import-job.ts
|
|
569
|
-
|
|
570
|
-
var ImportJobState = _zod.z.enum(["PendingInput", "Queued", "InProgress", "Failed", "Success"]);
|
|
571
|
-
var ImportJobOperation = _zod.z.enum(["Check", "Import"]);
|
|
572
|
-
var ImportJob = Entity.extend({
|
|
573
|
-
designSystemId: _zod.z.string(),
|
|
574
|
-
designSystemVersionId: _zod.z.string(),
|
|
575
|
-
sourceIds: _zod.z.array(_zod.z.string()),
|
|
576
|
-
state: ImportJobState,
|
|
577
|
-
createdByUserId: _zod.z.string().optional(),
|
|
578
|
-
importContextId: _zod.z.string(),
|
|
579
|
-
error: _zod.z.string().optional(),
|
|
580
|
-
sourceType: DataSourceRemoteType,
|
|
581
|
-
importContextCleanedUp: _zod.z.boolean()
|
|
582
|
-
});
|
|
583
358
|
|
|
584
359
|
// src/dsm/data-sources/import-summary.ts
|
|
585
360
|
|
|
@@ -2420,9 +2195,9 @@ function addImportModelCollections(lhs, rhs) {
|
|
|
2420
2195
|
|
|
2421
2196
|
// src/dsm/data-sources/import-summary.ts
|
|
2422
2197
|
var FileStructureStats = _zod.z.object({
|
|
2423
|
-
frames:
|
|
2424
|
-
components:
|
|
2425
|
-
componentSets:
|
|
2198
|
+
frames: zeroNumberByDefault(),
|
|
2199
|
+
components: zeroNumberByDefault(),
|
|
2200
|
+
componentSets: zeroNumberByDefault()
|
|
2426
2201
|
});
|
|
2427
2202
|
var SourceImportSummaryByTokenTypeKey = DesignTokenType.or(
|
|
2428
2203
|
// Backward compatibility
|
|
@@ -2430,20 +2205,20 @@ var SourceImportSummaryByTokenTypeKey = DesignTokenType.or(
|
|
|
2430
2205
|
);
|
|
2431
2206
|
var SourceImportSummaryByTokenType = _zod.z.record(SourceImportSummaryByTokenTypeKey, _zod.z.number());
|
|
2432
2207
|
var SourceImportTokenSummary = _zod.z.object({
|
|
2433
|
-
tokensCreated:
|
|
2434
|
-
tokensUpdated:
|
|
2435
|
-
tokensDeleted:
|
|
2208
|
+
tokensCreated: zeroNumberByDefault(),
|
|
2209
|
+
tokensUpdated: zeroNumberByDefault(),
|
|
2210
|
+
tokensDeleted: zeroNumberByDefault(),
|
|
2436
2211
|
tokensCreatedPerType: SourceImportSummaryByTokenType.nullish().transform((v) => _nullishCoalesce(v, () => ( {}))),
|
|
2437
2212
|
tokensUpdatedPerType: SourceImportSummaryByTokenType.nullish().transform((v) => _nullishCoalesce(v, () => ( {}))),
|
|
2438
2213
|
tokensDeletedPerType: SourceImportSummaryByTokenType.nullish().transform((v) => _nullishCoalesce(v, () => ( {})))
|
|
2439
2214
|
});
|
|
2440
2215
|
var SourceImportComponentSummary = _zod.z.object({
|
|
2441
|
-
componentsCreated:
|
|
2442
|
-
componentsUpdated:
|
|
2443
|
-
componentsDeleted:
|
|
2444
|
-
componentAssetsCreated:
|
|
2445
|
-
componentAssetsUpdated:
|
|
2446
|
-
componentAssetsDeleted:
|
|
2216
|
+
componentsCreated: zeroNumberByDefault(),
|
|
2217
|
+
componentsUpdated: zeroNumberByDefault(),
|
|
2218
|
+
componentsDeleted: zeroNumberByDefault(),
|
|
2219
|
+
componentAssetsCreated: zeroNumberByDefault(),
|
|
2220
|
+
componentAssetsUpdated: zeroNumberByDefault(),
|
|
2221
|
+
componentAssetsDeleted: zeroNumberByDefault()
|
|
2447
2222
|
});
|
|
2448
2223
|
var SourceImportFrameSummary = _zod.z.object({
|
|
2449
2224
|
assetsInFile: nullishToOptional(FileStructureStats.optional()),
|
|
@@ -2460,24 +2235,127 @@ var SourceImportSummary = _zod.z.object({
|
|
|
2460
2235
|
...SourceImportComponentSummary.shape,
|
|
2461
2236
|
...FileStructureStats.shape
|
|
2462
2237
|
});
|
|
2463
|
-
function
|
|
2238
|
+
function zeroNumberByDefault() {
|
|
2464
2239
|
return _zod.z.number().nullish().transform((v) => _nullishCoalesce(v, () => ( 0)));
|
|
2465
2240
|
}
|
|
2466
2241
|
|
|
2467
|
-
// src/dsm/
|
|
2468
|
-
|
|
2469
|
-
var
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2242
|
+
// src/dsm/data-sources/data-source.ts
|
|
2243
|
+
var DataSourceRemoteType = _zod.z.enum(["Figma", "TokenStudio", "FigmaVariablesPlugin"]);
|
|
2244
|
+
var DataSourceUploadRemoteSource = _zod.z.enum(["TokenStudio", "FigmaVariablesPlugin", "Custom"]);
|
|
2245
|
+
var DataSourceFigmaState = _zod.z.enum(["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]);
|
|
2246
|
+
var DataSourceAutoImportMode = _zod.z.enum(["Never", "Hourly"]);
|
|
2247
|
+
var DataSourceStats = _zod.z.object({
|
|
2248
|
+
tokens: zeroNumberByDefault2(),
|
|
2249
|
+
components: zeroNumberByDefault2(),
|
|
2250
|
+
assets: zeroNumberByDefault2(),
|
|
2251
|
+
frames: zeroNumberByDefault2()
|
|
2252
|
+
});
|
|
2253
|
+
var DataSourceFigmaFileData = _zod.z.object({
|
|
2254
|
+
lastUpdatedAt: _zod.z.coerce.date()
|
|
2255
|
+
});
|
|
2256
|
+
var DataSourceFigmaFileVersionData = _zod.z.object({
|
|
2257
|
+
id: _zod.z.string(),
|
|
2258
|
+
label: _zod.z.string().optional(),
|
|
2259
|
+
description: _zod.z.string().optional(),
|
|
2260
|
+
createdAt: _zod.z.coerce.date()
|
|
2261
|
+
});
|
|
2262
|
+
var DataSourceFigmaScope = _zod.z.object({
|
|
2263
|
+
assets: _zod.z.boolean(),
|
|
2264
|
+
components: _zod.z.boolean(),
|
|
2265
|
+
documentationFrames: _zod.z.boolean(),
|
|
2266
|
+
tokens: _zod.z.boolean(),
|
|
2267
|
+
themePersistentId: _zod.z.string().optional(),
|
|
2268
|
+
isUnpublishedContentFallbackEnabled: _zod.z.boolean()
|
|
2269
|
+
});
|
|
2270
|
+
var DataSourceFigmaImportMetadata = _zod.z.object({
|
|
2271
|
+
fileData: DataSourceFigmaFileData.optional(),
|
|
2272
|
+
importedPublishedVersion: DataSourceFigmaFileVersionData.optional()
|
|
2273
|
+
});
|
|
2274
|
+
var DataSourceFigmaRemote = _zod.z.object({
|
|
2275
|
+
type: _zod.z.literal(DataSourceRemoteType.Enum.Figma),
|
|
2276
|
+
fileId: _zod.z.string(),
|
|
2277
|
+
preferredCredentialId: _zod.z.string().optional(),
|
|
2278
|
+
ownerId: _zod.z.string(),
|
|
2279
|
+
// todo remove or keep to reference who created data source
|
|
2280
|
+
ownerName: _zod.z.string(),
|
|
2281
|
+
// todo probably remove
|
|
2282
|
+
scope: DataSourceFigmaScope,
|
|
2283
|
+
state: DataSourceFigmaState,
|
|
2284
|
+
requiresSync: _zod.z.boolean().optional().transform((v) => _nullishCoalesce(v, () => ( false))),
|
|
2285
|
+
lastImportMetadata: DataSourceFigmaImportMetadata.optional(),
|
|
2286
|
+
downloadChunkSize: _zod.z.number().optional(),
|
|
2287
|
+
figmaRenderChunkSize: _zod.z.number().optional(),
|
|
2288
|
+
maxFileDepth: _zod.z.number().optional()
|
|
2289
|
+
});
|
|
2290
|
+
var DataSourceTokenStudioRemote = _zod.z.object({
|
|
2291
|
+
type: _zod.z.literal(DataSourceRemoteType.Enum.TokenStudio)
|
|
2292
|
+
});
|
|
2293
|
+
var DataSourceUploadImportMetadata = _zod.z.record(_zod.z.any());
|
|
2294
|
+
var DataSourceUploadRemote = _zod.z.object({
|
|
2295
|
+
type: _zod.z.literal(DataSourceRemoteType.Enum.FigmaVariablesPlugin),
|
|
2296
|
+
remoteId: _zod.z.string(),
|
|
2297
|
+
remoteSourceType: DataSourceUploadRemoteSource,
|
|
2298
|
+
lastImportMetadata: DataSourceUploadImportMetadata.optional()
|
|
2299
|
+
});
|
|
2300
|
+
var DataSourceRemote = _zod.z.discriminatedUnion("type", [
|
|
2301
|
+
DataSourceFigmaRemote,
|
|
2302
|
+
DataSourceUploadRemote,
|
|
2303
|
+
DataSourceTokenStudioRemote
|
|
2304
|
+
]);
|
|
2305
|
+
var DataSource = _zod.z.object({
|
|
2306
|
+
id: _zod.z.string(),
|
|
2307
|
+
name: _zod.z.string(),
|
|
2308
|
+
thumbnailUrl: _zod.z.string().optional(),
|
|
2309
|
+
createdAt: _zod.z.coerce.date().optional(),
|
|
2310
|
+
lastImportedAt: _zod.z.coerce.date().optional(),
|
|
2311
|
+
lastImportSummary: SourceImportSummary.optional(),
|
|
2312
|
+
designSystemId: _zod.z.string(),
|
|
2313
|
+
brandPersistentId: _zod.z.string(),
|
|
2314
|
+
autoImportMode: DataSourceAutoImportMode,
|
|
2315
|
+
stats: DataSourceStats,
|
|
2316
|
+
remote: DataSourceRemote,
|
|
2317
|
+
sortOrder: _zod.z.number()
|
|
2318
|
+
});
|
|
2319
|
+
var DataSourceVersion = _zod.z.object({
|
|
2320
|
+
id: _zod.z.string(),
|
|
2321
|
+
createdAt: _zod.z.coerce.date(),
|
|
2322
|
+
label: _zod.z.string().nullish(),
|
|
2323
|
+
description: _zod.z.string().nullish()
|
|
2324
|
+
});
|
|
2325
|
+
function zeroNumberByDefault2() {
|
|
2326
|
+
return _zod.z.number().nullish().transform((v) => _nullishCoalesce(v, () => ( 0)));
|
|
2327
|
+
}
|
|
2328
|
+
|
|
2329
|
+
// src/dsm/data-sources/import-job.ts
|
|
2330
|
+
|
|
2331
|
+
var ImportJobState = _zod.z.enum(["PendingInput", "Queued", "InProgress", "Failed", "Success"]);
|
|
2332
|
+
var ImportJobOperation = _zod.z.enum(["Check", "Import"]);
|
|
2333
|
+
var ImportJob = Entity.extend({
|
|
2334
|
+
designSystemId: _zod.z.string(),
|
|
2335
|
+
designSystemVersionId: _zod.z.string(),
|
|
2336
|
+
sourceIds: _zod.z.array(_zod.z.string()),
|
|
2337
|
+
state: ImportJobState,
|
|
2338
|
+
createdByUserId: _zod.z.string().optional(),
|
|
2339
|
+
importContextId: _zod.z.string(),
|
|
2340
|
+
error: _zod.z.string().optional(),
|
|
2341
|
+
sourceType: DataSourceRemoteType,
|
|
2342
|
+
importContextCleanedUp: _zod.z.boolean()
|
|
2474
2343
|
});
|
|
2475
2344
|
|
|
2476
|
-
// src/dsm/documentation/block-definitions/
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2345
|
+
// src/dsm/documentation/block-definitions/aux.ts
|
|
2346
|
+
|
|
2347
|
+
var PageBlockDefinitionAppearance = _zod.z.object({
|
|
2348
|
+
isBordered: _zod.z.boolean().optional(),
|
|
2349
|
+
hasBackground: _zod.z.boolean().optional(),
|
|
2350
|
+
isEditorPresentationDifferent: _zod.z.boolean().optional(),
|
|
2351
|
+
showBlockHeaderInEditor: _zod.z.boolean().optional()
|
|
2352
|
+
});
|
|
2353
|
+
|
|
2354
|
+
// src/dsm/documentation/block-definitions/definition.ts
|
|
2355
|
+
|
|
2356
|
+
|
|
2357
|
+
// src/dsm/documentation/block-definitions/item.ts
|
|
2358
|
+
|
|
2481
2359
|
|
|
2482
2360
|
// src/dsm/documentation/block-definitions/variant.ts
|
|
2483
2361
|
|
|
@@ -2936,8 +2814,8 @@ var UserInvites = _zod.z.array(UserInvite).max(MAX_MEMBERS_COUNT);
|
|
|
2936
2814
|
|
|
2937
2815
|
|
|
2938
2816
|
// src/workspace/workspace.ts
|
|
2939
|
-
|
|
2940
2817
|
var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
|
|
2818
|
+
|
|
2941
2819
|
var isValidCIDR = (value) => {
|
|
2942
2820
|
return _ipcidr2.default.isValidAddress(value);
|
|
2943
2821
|
};
|
|
@@ -2969,8 +2847,7 @@ var Workspace = _zod.z.object({
|
|
|
2969
2847
|
subscription: Subscription,
|
|
2970
2848
|
ipWhitelist: nullishToOptional(WorkspaceIpSettings),
|
|
2971
2849
|
sso: nullishToOptional(SsoProvider),
|
|
2972
|
-
npmRegistrySettings: nullishToOptional(NpmRegistryConfig)
|
|
2973
|
-
designSystems: _zod.z.array(DesignSystem).nullish()
|
|
2850
|
+
npmRegistrySettings: nullishToOptional(NpmRegistryConfig)
|
|
2974
2851
|
});
|
|
2975
2852
|
var WorkspaceWithDesignSystems = _zod.z.object({
|
|
2976
2853
|
workspace: Workspace,
|
|
@@ -3036,6 +2913,128 @@ var WorkspaceInvitation = _zod.z.object({
|
|
|
3036
2913
|
invitedBy: _zod.z.string()
|
|
3037
2914
|
});
|
|
3038
2915
|
|
|
2916
|
+
// src/users/linked-integrations.ts
|
|
2917
|
+
|
|
2918
|
+
var IntegrationAuthType = _zod.z.union([_zod.z.literal("OAuth2"), _zod.z.literal("PAT")]);
|
|
2919
|
+
var ExternalServiceType = _zod.z.union([
|
|
2920
|
+
_zod.z.literal("figma"),
|
|
2921
|
+
_zod.z.literal("github"),
|
|
2922
|
+
_zod.z.literal("azure"),
|
|
2923
|
+
_zod.z.literal("gitlab"),
|
|
2924
|
+
_zod.z.literal("bitbucket")
|
|
2925
|
+
]);
|
|
2926
|
+
var IntegrationUserInfo = _zod.z.object({
|
|
2927
|
+
id: _zod.z.string(),
|
|
2928
|
+
handle: _zod.z.string().optional(),
|
|
2929
|
+
avatarUrl: _zod.z.string().optional(),
|
|
2930
|
+
email: _zod.z.string().optional(),
|
|
2931
|
+
authType: IntegrationAuthType.optional(),
|
|
2932
|
+
customUrl: _zod.z.string().optional()
|
|
2933
|
+
});
|
|
2934
|
+
var UserLinkedIntegrations = _zod.z.object({
|
|
2935
|
+
figma: IntegrationUserInfo.optional(),
|
|
2936
|
+
github: IntegrationUserInfo.array().optional(),
|
|
2937
|
+
azure: IntegrationUserInfo.array().optional(),
|
|
2938
|
+
gitlab: IntegrationUserInfo.array().optional(),
|
|
2939
|
+
bitbucket: IntegrationUserInfo.array().optional()
|
|
2940
|
+
});
|
|
2941
|
+
|
|
2942
|
+
// src/users/user-analytics-cleanup-schedule.ts
|
|
2943
|
+
|
|
2944
|
+
var UserAnalyticsCleanupSchedule = _zod.z.object({
|
|
2945
|
+
userId: _zod.z.string(),
|
|
2946
|
+
createdAt: _zod.z.coerce.date(),
|
|
2947
|
+
deleteAt: _zod.z.coerce.date()
|
|
2948
|
+
});
|
|
2949
|
+
var UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupSchedule.omit({
|
|
2950
|
+
createdAt: true
|
|
2951
|
+
});
|
|
2952
|
+
|
|
2953
|
+
// src/users/user-create.ts
|
|
2954
|
+
|
|
2955
|
+
var CreateUserInput = _zod.z.object({
|
|
2956
|
+
email: _zod.z.string(),
|
|
2957
|
+
name: _zod.z.string(),
|
|
2958
|
+
username: _zod.z.string()
|
|
2959
|
+
});
|
|
2960
|
+
|
|
2961
|
+
// src/users/user-identity.ts
|
|
2962
|
+
|
|
2963
|
+
var UserIdentity = _zod.z.object({
|
|
2964
|
+
id: _zod.z.string(),
|
|
2965
|
+
userId: _zod.z.string()
|
|
2966
|
+
});
|
|
2967
|
+
|
|
2968
|
+
// src/users/user-minified.ts
|
|
2969
|
+
|
|
2970
|
+
var UserMinified = _zod.z.object({
|
|
2971
|
+
id: _zod.z.string(),
|
|
2972
|
+
name: _zod.z.string(),
|
|
2973
|
+
email: _zod.z.string(),
|
|
2974
|
+
avatar: _zod.z.string().optional()
|
|
2975
|
+
});
|
|
2976
|
+
|
|
2977
|
+
// src/users/user-notification-settings.ts
|
|
2978
|
+
|
|
2979
|
+
var LiveblocksNotificationSettings = _zod.z.object({
|
|
2980
|
+
sendCommentNotificationEmails: _zod.z.boolean()
|
|
2981
|
+
});
|
|
2982
|
+
var UserNotificationSettings = _zod.z.object({
|
|
2983
|
+
liveblocksNotificationSettings: LiveblocksNotificationSettings
|
|
2984
|
+
});
|
|
2985
|
+
var defaultNotificationSettings = {
|
|
2986
|
+
liveblocksNotificationSettings: {
|
|
2987
|
+
sendCommentNotificationEmails: true
|
|
2988
|
+
}
|
|
2989
|
+
};
|
|
2990
|
+
|
|
2991
|
+
// src/users/user-profile.ts
|
|
2992
|
+
|
|
2993
|
+
var UserOnboardingDepartment = _zod.z.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
|
|
2994
|
+
var UserOnboardingJobLevel = _zod.z.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
|
|
2995
|
+
var UserOnboarding = _zod.z.object({
|
|
2996
|
+
companyName: _zod.z.string().optional(),
|
|
2997
|
+
numberOfPeopleInOrg: _zod.z.string().optional(),
|
|
2998
|
+
numberOfPeopleInDesignTeam: _zod.z.string().optional(),
|
|
2999
|
+
department: UserOnboardingDepartment.optional(),
|
|
3000
|
+
jobTitle: _zod.z.string().optional(),
|
|
3001
|
+
phase: _zod.z.string().optional(),
|
|
3002
|
+
jobLevel: UserOnboardingJobLevel.optional(),
|
|
3003
|
+
designSystemName: _zod.z.string().optional(),
|
|
3004
|
+
defaultDestination: _zod.z.string().optional(),
|
|
3005
|
+
figmaUrl: _zod.z.string().optional()
|
|
3006
|
+
});
|
|
3007
|
+
var UserProfile = _zod.z.object({
|
|
3008
|
+
name: _zod.z.string(),
|
|
3009
|
+
avatar: _zod.z.string().optional(),
|
|
3010
|
+
nickname: _zod.z.string().optional(),
|
|
3011
|
+
onboarding: UserOnboarding.optional()
|
|
3012
|
+
});
|
|
3013
|
+
var UserProfileUpdate = UserProfile.partial().omit({
|
|
3014
|
+
avatar: true
|
|
3015
|
+
});
|
|
3016
|
+
|
|
3017
|
+
// src/users/user-test.ts
|
|
3018
|
+
|
|
3019
|
+
var UserTest = _zod.z.object({
|
|
3020
|
+
id: _zod.z.string(),
|
|
3021
|
+
email: _zod.z.string()
|
|
3022
|
+
});
|
|
3023
|
+
|
|
3024
|
+
// src/users/user.ts
|
|
3025
|
+
|
|
3026
|
+
var User = _zod.z.object({
|
|
3027
|
+
id: _zod.z.string(),
|
|
3028
|
+
email: _zod.z.string(),
|
|
3029
|
+
emailVerified: _zod.z.boolean(),
|
|
3030
|
+
createdAt: _zod.z.coerce.date(),
|
|
3031
|
+
trialExpiresAt: _zod.z.coerce.date().optional(),
|
|
3032
|
+
profile: UserProfile,
|
|
3033
|
+
linkedIntegrations: UserLinkedIntegrations.optional(),
|
|
3034
|
+
loggedOutAt: _zod.z.coerce.date().optional(),
|
|
3035
|
+
isProtected: _zod.z.boolean()
|
|
3036
|
+
});
|
|
3037
|
+
|
|
3039
3038
|
// src/workspace/workspace-membership.ts
|
|
3040
3039
|
|
|
3041
3040
|
var WorkspaceMembership = _zod.z.object({
|
|
@@ -3214,7 +3213,6 @@ var VersionCreationJob = _zod.z.object({
|
|
|
3214
3213
|
});
|
|
3215
3214
|
|
|
3216
3215
|
// src/export/export-runner/export-context.ts
|
|
3217
|
-
|
|
3218
3216
|
var ExportJobDocumentationContext = _zod.z.object({
|
|
3219
3217
|
isSingleVersionDocs: _zod.z.boolean(),
|
|
3220
3218
|
versionSlug: _zod.z.string(),
|
|
@@ -3521,18 +3519,129 @@ var Pipeline = _zod.z.object({
|
|
|
3521
3519
|
...ExportDestinationsMap.shape
|
|
3522
3520
|
});
|
|
3523
3521
|
|
|
3524
|
-
// src/
|
|
3525
|
-
|
|
3526
|
-
var FlaggedFeature = _zod.z.enum(["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]);
|
|
3527
|
-
var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
|
|
3528
|
-
var FeatureFlag = _zod.z.object({
|
|
3522
|
+
// src/data-dumps/code-integration-dump.ts
|
|
3523
|
+
var ExportJobDump = _zod.z.object({
|
|
3529
3524
|
id: _zod.z.string(),
|
|
3530
|
-
feature: FlaggedFeature,
|
|
3531
3525
|
createdAt: _zod.z.coerce.date(),
|
|
3532
|
-
|
|
3533
|
-
|
|
3526
|
+
finishedAt: _zod.z.coerce.date(),
|
|
3527
|
+
exportArtefacts: _zod.z.string()
|
|
3528
|
+
});
|
|
3529
|
+
var CodeIntegrationDump = _zod.z.object({
|
|
3530
|
+
exporters: Exporter.array(),
|
|
3531
|
+
pipelines: Pipeline.array(),
|
|
3532
|
+
exportJobs: ExportJobDump.array()
|
|
3533
|
+
});
|
|
3534
|
+
|
|
3535
|
+
// src/data-dumps/design-system-dump.ts
|
|
3536
|
+
|
|
3537
|
+
|
|
3538
|
+
// src/data-dumps/design-system-version-dump.ts
|
|
3539
|
+
|
|
3540
|
+
|
|
3541
|
+
// src/liveblocks/rooms/design-system-version-room.ts
|
|
3542
|
+
|
|
3543
|
+
var DesignSystemVersionRoom = Entity.extend({
|
|
3544
|
+
designSystemVersionId: _zod.z.string(),
|
|
3545
|
+
liveblocksId: _zod.z.string()
|
|
3546
|
+
});
|
|
3547
|
+
var DesignSystemVersionRoomInternalSettings = _zod.z.object({
|
|
3548
|
+
routingVersion: _zod.z.string()
|
|
3549
|
+
});
|
|
3550
|
+
var DesignSystemVersionRoomInitialState = _zod.z.object({
|
|
3551
|
+
pages: _zod.z.array(DocumentationPageV2),
|
|
3552
|
+
groups: _zod.z.array(ElementGroup),
|
|
3553
|
+
internalSettings: DesignSystemVersionRoomInternalSettings
|
|
3554
|
+
});
|
|
3555
|
+
var DesignSystemVersionRoomUpdate = _zod.z.object({
|
|
3556
|
+
pages: _zod.z.array(DocumentationPageV2),
|
|
3557
|
+
groups: _zod.z.array(ElementGroup),
|
|
3558
|
+
deletedPageIds: _zod.z.array(_zod.z.string()),
|
|
3559
|
+
deletedGroupIds: _zod.z.array(_zod.z.string())
|
|
3560
|
+
});
|
|
3561
|
+
|
|
3562
|
+
// src/liveblocks/rooms/documentation-page-room.ts
|
|
3563
|
+
|
|
3564
|
+
var DocumentationPageRoom = Entity.extend({
|
|
3565
|
+
designSystemVersionId: _zod.z.string(),
|
|
3566
|
+
documentationPageId: _zod.z.string(),
|
|
3567
|
+
liveblocksId: _zod.z.string(),
|
|
3568
|
+
isDirty: _zod.z.boolean()
|
|
3569
|
+
});
|
|
3570
|
+
var DocumentationPageRoomState = _zod.z.object({
|
|
3571
|
+
pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2)),
|
|
3572
|
+
itemConfiguration: DocumentationItemConfigurationV2
|
|
3573
|
+
});
|
|
3574
|
+
var DocumentationPageRoomRoomUpdate = _zod.z.object({
|
|
3575
|
+
page: DocumentationPageV2,
|
|
3576
|
+
pageParent: ElementGroup
|
|
3577
|
+
});
|
|
3578
|
+
var DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomRoomUpdate.extend({
|
|
3579
|
+
pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2)),
|
|
3580
|
+
blockDefinitions: _zod.z.array(PageBlockDefinition)
|
|
3581
|
+
});
|
|
3582
|
+
|
|
3583
|
+
// src/liveblocks/rooms/room-type.ts
|
|
3584
|
+
|
|
3585
|
+
var RoomTypeEnum = /* @__PURE__ */ ((RoomTypeEnum2) => {
|
|
3586
|
+
RoomTypeEnum2["DocumentationPage"] = "documentation-page";
|
|
3587
|
+
RoomTypeEnum2["DesignSystemVersion"] = "design-system-version";
|
|
3588
|
+
RoomTypeEnum2["Workspace"] = "workspace";
|
|
3589
|
+
return RoomTypeEnum2;
|
|
3590
|
+
})(RoomTypeEnum || {});
|
|
3591
|
+
var RoomTypeSchema = _zod.z.nativeEnum(RoomTypeEnum);
|
|
3592
|
+
var RoomType = RoomTypeSchema.enum;
|
|
3593
|
+
|
|
3594
|
+
// src/liveblocks/rooms/workspace-room.ts
|
|
3595
|
+
|
|
3596
|
+
var WorkspaceRoom = Entity.extend({
|
|
3597
|
+
workspaceId: _zod.z.string(),
|
|
3598
|
+
liveblocksId: _zod.z.string()
|
|
3599
|
+
});
|
|
3600
|
+
|
|
3601
|
+
// src/data-dumps/published-docs-dump.ts
|
|
3602
|
+
|
|
3603
|
+
var PublishedDocsDump = _zod.z.object({
|
|
3604
|
+
documentation: PublishedDoc,
|
|
3605
|
+
pages: PublishedDocPage.array()
|
|
3534
3606
|
});
|
|
3535
3607
|
|
|
3608
|
+
// src/data-dumps/design-system-version-dump.ts
|
|
3609
|
+
var DocumentationThreadDump = _zod.z.object({
|
|
3610
|
+
thread: DocumentationCommentThread,
|
|
3611
|
+
comments: DocumentationComment.array()
|
|
3612
|
+
});
|
|
3613
|
+
var DocumentationPageRoomDump = _zod.z.object({
|
|
3614
|
+
room: DocumentationPageRoom,
|
|
3615
|
+
threads: DocumentationThreadDump.array()
|
|
3616
|
+
});
|
|
3617
|
+
var DesignSystemVersionMultiplayerDump = _zod.z.object({
|
|
3618
|
+
documentationPages: DocumentationPageRoomDump.array()
|
|
3619
|
+
});
|
|
3620
|
+
var DesignSystemVersionDump = _zod.z.object({
|
|
3621
|
+
version: DesignSystemVersion,
|
|
3622
|
+
brands: Brand.array(),
|
|
3623
|
+
elements: DesignElement.array(),
|
|
3624
|
+
elementPropertyDefinitions: ElementPropertyDefinition.array(),
|
|
3625
|
+
elementPropertyValues: ElementPropertyValue.array(),
|
|
3626
|
+
elementViews: ElementView.array(),
|
|
3627
|
+
elementColumns: ElementViewColumn.array(),
|
|
3628
|
+
documentationPageContents: DocumentationPageContent.array(),
|
|
3629
|
+
documentationPageRooms: DocumentationPageRoomDump.array(),
|
|
3630
|
+
publishedDocumentations: PublishedDocsDump.array()
|
|
3631
|
+
});
|
|
3632
|
+
|
|
3633
|
+
// src/data-dumps/design-system-dump.ts
|
|
3634
|
+
var DesignSystemDump = _zod.z.object({
|
|
3635
|
+
designSystem: DesignSystem,
|
|
3636
|
+
dataSources: DataSource.array(),
|
|
3637
|
+
versions: DesignSystemVersionDump.array(),
|
|
3638
|
+
customDomain: CustomDomain.optional(),
|
|
3639
|
+
files: ResolvedAsset.array()
|
|
3640
|
+
});
|
|
3641
|
+
|
|
3642
|
+
// src/data-dumps/workspace-dump.ts
|
|
3643
|
+
|
|
3644
|
+
|
|
3536
3645
|
// src/integrations/external-oauth-request.ts
|
|
3537
3646
|
|
|
3538
3647
|
|
|
@@ -4599,64 +4708,49 @@ var WorkspaceOAuthRequestSchema = _zod.z.object({
|
|
|
4599
4708
|
createdAt: _zod.z.coerce.date()
|
|
4600
4709
|
});
|
|
4601
4710
|
|
|
4602
|
-
// src/
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
var DesignSystemVersionRoomInternalSettings = _zod.z.object({
|
|
4609
|
-
routingVersion: _zod.z.string()
|
|
4610
|
-
});
|
|
4611
|
-
var DesignSystemVersionRoomInitialState = _zod.z.object({
|
|
4612
|
-
pages: _zod.z.array(DocumentationPageV2),
|
|
4613
|
-
groups: _zod.z.array(ElementGroup),
|
|
4614
|
-
internalSettings: DesignSystemVersionRoomInternalSettings
|
|
4615
|
-
});
|
|
4616
|
-
var DesignSystemVersionRoomUpdate = _zod.z.object({
|
|
4617
|
-
pages: _zod.z.array(DocumentationPageV2),
|
|
4618
|
-
groups: _zod.z.array(ElementGroup),
|
|
4619
|
-
deletedPageIds: _zod.z.array(_zod.z.string()),
|
|
4620
|
-
deletedGroupIds: _zod.z.array(_zod.z.string())
|
|
4711
|
+
// src/data-dumps/workspace-dump.ts
|
|
4712
|
+
var WorkspaceDump = _zod.z.object({
|
|
4713
|
+
workspace: Workspace,
|
|
4714
|
+
designSystems: DesignSystemDump.array(),
|
|
4715
|
+
codeIntegration: CodeIntegrationDump,
|
|
4716
|
+
integrations: Integration.array()
|
|
4621
4717
|
});
|
|
4622
4718
|
|
|
4623
|
-
// src/
|
|
4719
|
+
// src/docs-server/session.ts
|
|
4624
4720
|
|
|
4625
|
-
var
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
liveblocksId: _zod.z.string(),
|
|
4629
|
-
isDirty: _zod.z.boolean()
|
|
4721
|
+
var NpmProxyToken = _zod.z.object({
|
|
4722
|
+
access: _zod.z.string(),
|
|
4723
|
+
expiresAt: _zod.z.number()
|
|
4630
4724
|
});
|
|
4631
|
-
var
|
|
4632
|
-
|
|
4633
|
-
|
|
4725
|
+
var SessionData = _zod.z.object({
|
|
4726
|
+
returnToUrl: _zod.z.string().optional(),
|
|
4727
|
+
npmProxyToken: NpmProxyToken.optional()
|
|
4634
4728
|
});
|
|
4635
|
-
var
|
|
4636
|
-
|
|
4637
|
-
|
|
4729
|
+
var Session = _zod.z.object({
|
|
4730
|
+
id: _zod.z.string(),
|
|
4731
|
+
expiresAt: _zod.z.coerce.date(),
|
|
4732
|
+
userId: _zod.z.string().nullable(),
|
|
4733
|
+
data: SessionData
|
|
4638
4734
|
});
|
|
4639
|
-
var
|
|
4640
|
-
|
|
4641
|
-
|
|
4735
|
+
var AuthTokens = _zod.z.object({
|
|
4736
|
+
access: _zod.z.string(),
|
|
4737
|
+
refresh: _zod.z.string()
|
|
4738
|
+
});
|
|
4739
|
+
var UserSession = _zod.z.object({
|
|
4740
|
+
session: Session,
|
|
4741
|
+
user: User.nullable()
|
|
4642
4742
|
});
|
|
4643
4743
|
|
|
4644
|
-
// src/
|
|
4645
|
-
|
|
4646
|
-
var RoomTypeEnum = /* @__PURE__ */ ((RoomTypeEnum2) => {
|
|
4647
|
-
RoomTypeEnum2["DocumentationPage"] = "documentation-page";
|
|
4648
|
-
RoomTypeEnum2["DesignSystemVersion"] = "design-system-version";
|
|
4649
|
-
RoomTypeEnum2["Workspace"] = "workspace";
|
|
4650
|
-
return RoomTypeEnum2;
|
|
4651
|
-
})(RoomTypeEnum || {});
|
|
4652
|
-
var RoomTypeSchema = _zod.z.nativeEnum(RoomTypeEnum);
|
|
4653
|
-
var RoomType = RoomTypeSchema.enum;
|
|
4654
|
-
|
|
4655
|
-
// src/liveblocks/rooms/workspace-room.ts
|
|
4744
|
+
// src/feature-flags/feature-flags.ts
|
|
4656
4745
|
|
|
4657
|
-
var
|
|
4658
|
-
|
|
4659
|
-
|
|
4746
|
+
var FlaggedFeature = _zod.z.enum(["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]);
|
|
4747
|
+
var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
|
|
4748
|
+
var FeatureFlag = _zod.z.object({
|
|
4749
|
+
id: _zod.z.string(),
|
|
4750
|
+
feature: FlaggedFeature,
|
|
4751
|
+
createdAt: _zod.z.coerce.date(),
|
|
4752
|
+
enabled: _zod.z.boolean(),
|
|
4753
|
+
designSystemId: _zod.z.string().optional()
|
|
4660
4754
|
});
|
|
4661
4755
|
|
|
4662
4756
|
// src/npm/npm-package.ts
|
|
@@ -5302,5 +5396,16 @@ var PersonalAccessToken = _zod.z.object({
|
|
|
5302
5396
|
|
|
5303
5397
|
|
|
5304
5398
|
|
|
5305
|
-
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.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.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.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemCreateInput = DesignSystemCreateInput; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUpdateInput = DesignSystemUpdateInput; exports.DesignSystemVersion = DesignSystemVersion; 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.DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomInitialStateUpdate; exports.DocumentationPageRoomRoomUpdate = DocumentationPageRoomRoomUpdate; exports.DocumentationPageRoomState = DocumentationPageRoomState; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupDataV1 = ElementGroupDataV1; exports.ElementGroupDataV2 = ElementGroupDataV2; 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.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.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.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.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.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;
|
|
5399
|
+
|
|
5400
|
+
|
|
5401
|
+
|
|
5402
|
+
|
|
5403
|
+
|
|
5404
|
+
|
|
5405
|
+
|
|
5406
|
+
|
|
5407
|
+
|
|
5408
|
+
|
|
5409
|
+
|
|
5410
|
+
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.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.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.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.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;
|
|
5306
5411
|
//# sourceMappingURL=index.js.map
|