@supernova-studio/model 1.48.7 → 1.48.8
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 +325 -251
- package/dist/index.d.ts +325 -251
- package/dist/index.js +485 -470
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1220 -1205
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5019,96 +5019,76 @@ var UserInvites = _zod.z.array(UserInvite).max(MAX_MEMBERS_COUNT);
|
|
|
5019
5019
|
// src/workspace/workspace.ts
|
|
5020
5020
|
var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr);
|
|
5021
5021
|
|
|
5022
|
-
|
|
5023
|
-
|
|
5024
|
-
|
|
5025
|
-
var
|
|
5026
|
-
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
})
|
|
5031
|
-
});
|
|
5032
|
-
var WorkspaceIpSettings = _zod.z.object({
|
|
5033
|
-
isEnabledForCloud: _zod.z.boolean(),
|
|
5034
|
-
isEnabledForDocs: _zod.z.boolean(),
|
|
5035
|
-
entries: _zod.z.array(WorkspaceIpWhitelistEntry)
|
|
5022
|
+
|
|
5023
|
+
// src/forge/agent.ts
|
|
5024
|
+
|
|
5025
|
+
var ForgeAvatarBuilder = _zod.z.object({
|
|
5026
|
+
headType: _zod.z.string(),
|
|
5027
|
+
hairType: _zod.z.string(),
|
|
5028
|
+
accessory1Type: _zod.z.string(),
|
|
5029
|
+
accessory2Type: _zod.z.string()
|
|
5036
5030
|
});
|
|
5037
|
-
var
|
|
5031
|
+
var ForgeAgent = _zod.z.object({
|
|
5032
|
+
avatar: _zod.z.union([_zod.z.string(), ForgeAvatarBuilder]),
|
|
5033
|
+
avatarUrl: _zod.z.string().optional(),
|
|
5034
|
+
behavior: _zod.z.enum(["Coder", "Writer", "Designer"]),
|
|
5035
|
+
id: _zod.z.string(),
|
|
5038
5036
|
name: _zod.z.string(),
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
avatar: nullishToOptional(_zod.z.string()),
|
|
5042
|
-
billingDetails: nullishToOptional(BillingDetails)
|
|
5043
|
-
});
|
|
5044
|
-
var WorkspaceProfileUpdate = WorkspaceProfile.omit({
|
|
5045
|
-
avatar: true
|
|
5037
|
+
personality: _zod.z.enum(["Neutral", "Assertive", "Crazy"]),
|
|
5038
|
+
projectId: _zod.z.string()
|
|
5046
5039
|
});
|
|
5047
|
-
|
|
5040
|
+
|
|
5041
|
+
// src/forge/artifact.ts
|
|
5042
|
+
|
|
5043
|
+
var Artifact = _zod.z.object({
|
|
5048
5044
|
id: _zod.z.string(),
|
|
5049
|
-
|
|
5050
|
-
|
|
5051
|
-
ipWhitelist: nullishToOptional(WorkspaceIpSettings),
|
|
5052
|
-
sso: nullishToOptional(SsoProvider),
|
|
5053
|
-
npmRegistrySettings: nullishToOptional(NpmRegistryConfig),
|
|
5054
|
-
aiFeaturesEnabled: _zod.z.boolean().default(false),
|
|
5055
|
-
projectsEnabled: _zod.z.boolean().default(false),
|
|
5056
|
-
aiAskFeaturesEnabled: _zod.z.boolean().default(false),
|
|
5057
|
-
aiCustomInstruction: _zod.z.string().optional(),
|
|
5058
|
-
hasOpenMeterSubject: _zod.z.boolean()
|
|
5045
|
+
createdAt: _zod.z.coerce.date(),
|
|
5046
|
+
projectIterationId: _zod.z.string()
|
|
5059
5047
|
});
|
|
5060
|
-
var
|
|
5061
|
-
|
|
5062
|
-
|
|
5048
|
+
var ForgeFileArtifact = Artifact.extend({
|
|
5049
|
+
type: _zod.z.enum(["file/text", "file/pdf", "file/image"]),
|
|
5050
|
+
fileName: _zod.z.string(),
|
|
5051
|
+
uploadedFileUrl: _zod.z.string()
|
|
5063
5052
|
});
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
npmRegistrySettings: NpmRegistryConfig.optional(),
|
|
5071
|
-
profile: WorkspaceProfileUpdate.optional(),
|
|
5072
|
-
aiFeaturesEnabled: _zod.z.boolean().optional(),
|
|
5073
|
-
projectsEnabled: _zod.z.boolean().optional(),
|
|
5074
|
-
aiAskFeaturesEnabled: _zod.z.boolean().optional(),
|
|
5075
|
-
aiCustomInstruction: _zod.z.string().optional()
|
|
5053
|
+
var ForgeFigmaArtifact = Artifact.extend({
|
|
5054
|
+
type: _zod.z.literal("figma/node"),
|
|
5055
|
+
figmaFileUrl: _zod.z.string(),
|
|
5056
|
+
figmaNodeId: _zod.z.string(),
|
|
5057
|
+
figmaFileName: _zod.z.string().optional(),
|
|
5058
|
+
previewUrl: _zod.z.string().optional()
|
|
5076
5059
|
});
|
|
5077
|
-
|
|
5078
|
-
|
|
5079
|
-
|
|
5080
|
-
|
|
5081
|
-
|
|
5082
|
-
|
|
5083
|
-
|
|
5084
|
-
|
|
5060
|
+
var ForgeSpecArtifact = Artifact.extend({
|
|
5061
|
+
type: _zod.z.literal("spec"),
|
|
5062
|
+
fileName: _zod.z.string(),
|
|
5063
|
+
yjsDocId: _zod.z.string(),
|
|
5064
|
+
markdownText: _zod.z.string()
|
|
5065
|
+
});
|
|
5066
|
+
var ForgeBuildArtifactFiles = _zod.z.array(
|
|
5067
|
+
_zod.z.object({
|
|
5068
|
+
path: _zod.z.string(),
|
|
5069
|
+
content: _zod.z.string(),
|
|
5070
|
+
isVisibleToUser: _zod.z.boolean().optional()
|
|
5071
|
+
})
|
|
5072
|
+
);
|
|
5073
|
+
var ForgeBuildArtifactEnvironment = _zod.z.object({
|
|
5074
|
+
dependencies: _zod.z.record(_zod.z.string())
|
|
5075
|
+
});
|
|
5076
|
+
var ForgeBuildArtifact = Artifact.extend({
|
|
5077
|
+
type: _zod.z.literal("build"),
|
|
5078
|
+
participantId: _zod.z.string(),
|
|
5079
|
+
files: ForgeBuildArtifactFiles,
|
|
5080
|
+
environment: ForgeBuildArtifactEnvironment
|
|
5085
5081
|
});
|
|
5082
|
+
var ForgeArtifact = _zod.z.union([ForgeBuildArtifact, ForgeSpecArtifact, ForgeFigmaArtifact, ForgeFileArtifact]);
|
|
5086
5083
|
|
|
5087
|
-
// src/
|
|
5084
|
+
// src/forge/id.ts
|
|
5088
5085
|
|
|
5089
|
-
var
|
|
5090
|
-
var WORKSPACE_NAME_MAX_LENGTH = 64;
|
|
5091
|
-
var HANDLE_MIN_LENGTH = 2;
|
|
5092
|
-
var HANDLE_MAX_LENGTH = 64;
|
|
5093
|
-
var CreateWorkspaceInput = _zod.z.object({
|
|
5094
|
-
name: _zod.z.string().min(WORKSPACE_NAME_MIN_LENGTH).max(WORKSPACE_NAME_MAX_LENGTH).trim(),
|
|
5095
|
-
handle: _zod.z.string().regex(slugRegex).min(HANDLE_MIN_LENGTH).max(HANDLE_MAX_LENGTH).refine((value) => _optionalChain([value, 'optionalAccess', _10 => _10.length]) > 0).optional()
|
|
5096
|
-
});
|
|
5086
|
+
var Id = _zod.z.string().uuid();
|
|
5097
5087
|
|
|
5098
|
-
// src/
|
|
5088
|
+
// src/forge/iteration-message.ts
|
|
5099
5089
|
|
|
5100
|
-
var WorkspaceInvitation = _zod.z.object({
|
|
5101
|
-
id: _zod.z.string(),
|
|
5102
|
-
email: _zod.z.string().email(),
|
|
5103
|
-
createdAt: _zod.z.coerce.date(),
|
|
5104
|
-
resentAt: _zod.z.coerce.date().nullish(),
|
|
5105
|
-
role: _zod.z.nativeEnum(WorkspaceRole),
|
|
5106
|
-
seatType: WorkspaceSeatType,
|
|
5107
|
-
workspaceId: _zod.z.string(),
|
|
5108
|
-
invitedBy: _zod.z.string()
|
|
5109
|
-
});
|
|
5110
5090
|
|
|
5111
|
-
// src/
|
|
5091
|
+
// src/forge/participant.ts
|
|
5112
5092
|
|
|
5113
5093
|
|
|
5114
5094
|
// src/users/linked-integrations.ts
|
|
@@ -5225,40 +5205,362 @@ var UserOnboarding = _zod.z.object({
|
|
|
5225
5205
|
isPageDraftOnboardingFinished: _zod.z.boolean().optional(),
|
|
5226
5206
|
isApprovalsOnboardingFinished: _zod.z.boolean().optional()
|
|
5227
5207
|
});
|
|
5228
|
-
var UserProfile = _zod.z.object({
|
|
5229
|
-
name: _zod.z.string(),
|
|
5230
|
-
avatar: nullishToOptional(_zod.z.string()),
|
|
5231
|
-
nickname: nullishToOptional(_zod.z.string()),
|
|
5232
|
-
onboarding: nullishToOptional(UserOnboarding),
|
|
5233
|
-
theme: nullishToOptional(UserTheme),
|
|
5234
|
-
portalTheme: nullishToOptional(PortalTheme)
|
|
5208
|
+
var UserProfile = _zod.z.object({
|
|
5209
|
+
name: _zod.z.string(),
|
|
5210
|
+
avatar: nullishToOptional(_zod.z.string()),
|
|
5211
|
+
nickname: nullishToOptional(_zod.z.string()),
|
|
5212
|
+
onboarding: nullishToOptional(UserOnboarding),
|
|
5213
|
+
theme: nullishToOptional(UserTheme),
|
|
5214
|
+
portalTheme: nullishToOptional(PortalTheme)
|
|
5215
|
+
});
|
|
5216
|
+
|
|
5217
|
+
// src/users/user-test.ts
|
|
5218
|
+
|
|
5219
|
+
var UserTest = _zod.z.object({
|
|
5220
|
+
id: _zod.z.string(),
|
|
5221
|
+
email: _zod.z.string()
|
|
5222
|
+
});
|
|
5223
|
+
|
|
5224
|
+
// src/users/user.ts
|
|
5225
|
+
|
|
5226
|
+
var UserSource = _zod.z.enum(["SignUp", "Invite", "SSO"]);
|
|
5227
|
+
var UserEmailSettings = _zod.z.object({
|
|
5228
|
+
marketingEmails: _zod.z.boolean()
|
|
5229
|
+
});
|
|
5230
|
+
var User = _zod.z.object({
|
|
5231
|
+
id: _zod.z.string(),
|
|
5232
|
+
email: _zod.z.string(),
|
|
5233
|
+
createdAt: _zod.z.coerce.date(),
|
|
5234
|
+
profile: UserProfile,
|
|
5235
|
+
loggedOutAt: _zod.z.coerce.date().optional(),
|
|
5236
|
+
isProtected: _zod.z.boolean(),
|
|
5237
|
+
source: UserSource.optional(),
|
|
5238
|
+
emailSettings: UserEmailSettings.optional()
|
|
5239
|
+
});
|
|
5240
|
+
|
|
5241
|
+
// src/forge/participant.ts
|
|
5242
|
+
var ForgeParticipant = _zod.z.object({
|
|
5243
|
+
id: _zod.z.string(),
|
|
5244
|
+
agentId: _zod.z.string().optional(),
|
|
5245
|
+
agent: ForgeAgent.optional(),
|
|
5246
|
+
projectIterationId: _zod.z.string(),
|
|
5247
|
+
role: _zod.z.enum(["Editor", "Viewer"]),
|
|
5248
|
+
type: _zod.z.enum(["Agent", "User"]),
|
|
5249
|
+
userId: _zod.z.string().optional(),
|
|
5250
|
+
user: User.optional()
|
|
5251
|
+
});
|
|
5252
|
+
|
|
5253
|
+
// src/forge/iteration-message.ts
|
|
5254
|
+
var ForgeIterationMessageStep = _zod.z.object({
|
|
5255
|
+
name: _zod.z.string(),
|
|
5256
|
+
text: _zod.z.string(),
|
|
5257
|
+
status: _zod.z.enum(["pending", "started", "completed", "error"])
|
|
5258
|
+
});
|
|
5259
|
+
var ForgeIterationMessage = _zod.z.object({
|
|
5260
|
+
id: _zod.z.string(),
|
|
5261
|
+
createdAt: _zod.z.coerce.date(),
|
|
5262
|
+
participantId: _zod.z.string(),
|
|
5263
|
+
participant: ForgeParticipant,
|
|
5264
|
+
projectIterationId: _zod.z.string(),
|
|
5265
|
+
steps: _zod.z.array(ForgeIterationMessageStep).optional(),
|
|
5266
|
+
type: _zod.z.enum(["Note", "Action", "Steps"]),
|
|
5267
|
+
text: _zod.z.string()
|
|
5268
|
+
});
|
|
5269
|
+
|
|
5270
|
+
// src/forge/project-artifact-content.ts
|
|
5271
|
+
|
|
5272
|
+
var ForgeProjectArtifactContentData = DocumentationPageContentData;
|
|
5273
|
+
var ForgeProjectArtifactContent = _zod.z.object({
|
|
5274
|
+
id: _zod.z.string(),
|
|
5275
|
+
artifactId: _zod.z.string(),
|
|
5276
|
+
projectId: _zod.z.string(),
|
|
5277
|
+
createdAt: _zod.z.coerce.date(),
|
|
5278
|
+
updatedAt: _zod.z.coerce.date(),
|
|
5279
|
+
data: ForgeProjectArtifactContentData
|
|
5280
|
+
});
|
|
5281
|
+
|
|
5282
|
+
// src/forge/project-artifact.ts
|
|
5283
|
+
|
|
5284
|
+
|
|
5285
|
+
// src/files/files.ts
|
|
5286
|
+
|
|
5287
|
+
var FileFigmaRenderMode = _zod2.default.enum(["Image", "HTML", "JSON"]);
|
|
5288
|
+
var FileSourceUpload = _zod2.default.object({
|
|
5289
|
+
type: _zod2.default.literal("UserUpload"),
|
|
5290
|
+
userId: _zod2.default.string()
|
|
5291
|
+
});
|
|
5292
|
+
var FileSourceFigma = _zod2.default.object({
|
|
5293
|
+
type: _zod2.default.literal("Figma"),
|
|
5294
|
+
renderMode: FileFigmaRenderMode
|
|
5295
|
+
});
|
|
5296
|
+
var FileSource = _zod2.default.discriminatedUnion("type", [FileSourceUpload, FileSourceFigma]);
|
|
5297
|
+
var File = _zod2.default.object({
|
|
5298
|
+
id: _zod2.default.string(),
|
|
5299
|
+
name: _zod2.default.string(),
|
|
5300
|
+
deduplicationKey: _zod2.default.string(),
|
|
5301
|
+
pendingUpload: _zod2.default.boolean().optional(),
|
|
5302
|
+
storagePath: _zod2.default.string(),
|
|
5303
|
+
url: _zod2.default.string(),
|
|
5304
|
+
size: _zod2.default.number(),
|
|
5305
|
+
/**
|
|
5306
|
+
* Object describing where did the file come from. Undefined source indicates a file produced by the
|
|
5307
|
+
* system (e.g. thumbnails, etc)
|
|
5308
|
+
*/
|
|
5309
|
+
source: FileSource.optional()
|
|
5310
|
+
});
|
|
5311
|
+
var FileReference = File.pick({
|
|
5312
|
+
id: true,
|
|
5313
|
+
url: true,
|
|
5314
|
+
source: true
|
|
5315
|
+
}).extend({
|
|
5316
|
+
name: File.shape.name.optional()
|
|
5317
|
+
});
|
|
5318
|
+
|
|
5319
|
+
// src/forge/project-section.ts
|
|
5320
|
+
|
|
5321
|
+
var ForgeProjectSectionChildType = _zod.z.enum(["Artifact", "Feature"]);
|
|
5322
|
+
var SortOrder = _zod.z.number().int();
|
|
5323
|
+
var ForgeSection = _zod.z.object({
|
|
5324
|
+
id: Id,
|
|
5325
|
+
projectId: _zod.z.string(),
|
|
5326
|
+
name: _zod.z.string(),
|
|
5327
|
+
sortOrder: SortOrder.default(0),
|
|
5328
|
+
createdAt: _zod.z.coerce.date(),
|
|
5329
|
+
updatedAt: _zod.z.coerce.date(),
|
|
5330
|
+
childType: ForgeProjectSectionChildType
|
|
5331
|
+
});
|
|
5332
|
+
|
|
5333
|
+
// src/forge/project-artifact.ts
|
|
5334
|
+
var ForgeProjectArtifact = _zod.z.object({
|
|
5335
|
+
id: Id,
|
|
5336
|
+
projectId: _zod.z.string(),
|
|
5337
|
+
iterationId: _zod.z.string().nullish(),
|
|
5338
|
+
title: _zod.z.string(),
|
|
5339
|
+
previewUrl: _zod.z.string().nullish(),
|
|
5340
|
+
sortOrder: SortOrder.default(0),
|
|
5341
|
+
createdAt: _zod.z.coerce.date(),
|
|
5342
|
+
updatedAt: _zod.z.coerce.date(),
|
|
5343
|
+
createdByUserId: _zod.z.string(),
|
|
5344
|
+
sectionId: Id.optional(),
|
|
5345
|
+
threadId: _zod.z.string().optional(),
|
|
5346
|
+
thumbnail: FileReference.optional(),
|
|
5347
|
+
// Default value here is important for backward compatibility for parsing artifacts
|
|
5348
|
+
// from project rooms!
|
|
5349
|
+
isArchived: _zod.z.boolean().default(false)
|
|
5350
|
+
});
|
|
5351
|
+
|
|
5352
|
+
// src/forge/project-feature.ts
|
|
5353
|
+
|
|
5354
|
+
var ProjectFeatureStatus = _zod.z.enum(["Draft", "ReadyForDevelopment"]);
|
|
5355
|
+
var ProjectFeature = _zod.z.object({
|
|
5356
|
+
createdAt: _zod.z.coerce.date(),
|
|
5357
|
+
createdByUserId: _zod.z.string(),
|
|
5358
|
+
description: _zod.z.string(),
|
|
5359
|
+
id: Id,
|
|
5360
|
+
isArchived: _zod.z.boolean(),
|
|
5361
|
+
name: _zod.z.string(),
|
|
5362
|
+
projectId: _zod.z.string(),
|
|
5363
|
+
sectionId: Id.optional(),
|
|
5364
|
+
e2bTemplateId: _zod.z.string().nullish(),
|
|
5365
|
+
e2bIterationId: _zod.z.string().nullish(),
|
|
5366
|
+
sortOrder: SortOrder.default(0),
|
|
5367
|
+
status: ProjectFeatureStatus.default("Draft"),
|
|
5368
|
+
updatedAt: _zod.z.coerce.date().optional(),
|
|
5369
|
+
numberOfIterations: _zod.z.number().min(0).default(0),
|
|
5370
|
+
numberOfBookmarkedIterations: _zod.z.number().min(0).default(0),
|
|
5371
|
+
lastReplyTimestamp: _zod.z.coerce.date().optional(),
|
|
5372
|
+
threadId: _zod.z.string().optional(),
|
|
5373
|
+
thumbnail: FileReference.optional()
|
|
5374
|
+
});
|
|
5375
|
+
|
|
5376
|
+
// src/forge/project-figma-node.ts
|
|
5377
|
+
|
|
5378
|
+
var ForgeProjectFigmaNode = _zod.z.object({
|
|
5379
|
+
id: _zod.z.string().uuid(),
|
|
5380
|
+
projectId: _zod.z.string(),
|
|
5381
|
+
sceneNodeId: _zod.z.string(),
|
|
5382
|
+
format: FigmaNodeRenderFormat,
|
|
5383
|
+
scale: _zod.z.number().optional(),
|
|
5384
|
+
renderState: FigmaNodeRenderState,
|
|
5385
|
+
renderedImage: FigmaNodeRenderedImage.optional(),
|
|
5386
|
+
renderError: FigmaNodeRenderError.optional()
|
|
5387
|
+
});
|
|
5388
|
+
var ForgeProjectFigmaNodeRenderInput = _zod.z.object({
|
|
5389
|
+
url: _zod.z.string(),
|
|
5390
|
+
format: FigmaNodeRenderFormat,
|
|
5391
|
+
scale: _zod.z.number()
|
|
5392
|
+
});
|
|
5393
|
+
|
|
5394
|
+
// src/forge/project-file.ts
|
|
5395
|
+
|
|
5396
|
+
var ForgeProjectFile = _zod.z.object({
|
|
5397
|
+
id: _zod.z.string(),
|
|
5398
|
+
projectId: Id,
|
|
5399
|
+
name: _zod.z.string(),
|
|
5400
|
+
filePath: _zod.z.string(),
|
|
5401
|
+
createdAt: _zod.z.coerce.date().optional(),
|
|
5402
|
+
pendingUpload: _zod.z.boolean().optional(),
|
|
5403
|
+
size: _zod.z.number().int().positive().optional(),
|
|
5404
|
+
checksum: _zod.z.string()
|
|
5405
|
+
});
|
|
5406
|
+
|
|
5407
|
+
// src/forge/project.ts
|
|
5408
|
+
|
|
5409
|
+
var ForgeProjectAccessMode = _zod.z.enum(["InviteOnly", "Open", "Unlisted"]);
|
|
5410
|
+
|
|
5411
|
+
// src/forge/project-invitation.ts
|
|
5412
|
+
|
|
5413
|
+
|
|
5414
|
+
// src/forge/project-membership.ts
|
|
5415
|
+
|
|
5416
|
+
var ForgeProjectRole = _zod.z.enum(["Viewer", "Builder", "Admin"]);
|
|
5417
|
+
var ForgeDefaultProjectRole = ForgeProjectRole.exclude(["Admin"]);
|
|
5418
|
+
var ForgeProjectMembership = _zod.z.object({
|
|
5419
|
+
userId: _zod.z.string(),
|
|
5420
|
+
forgeProjectId: _zod.z.string(),
|
|
5421
|
+
workspaceMembershipId: _zod.z.string(),
|
|
5422
|
+
workspaceRole: WorkspaceRoleSchema,
|
|
5423
|
+
role: ForgeProjectRole
|
|
5424
|
+
});
|
|
5425
|
+
|
|
5426
|
+
// src/forge/project-invitation.ts
|
|
5427
|
+
var ForgeProjectInvitation = _zod.z.object({
|
|
5428
|
+
email: _zod.z.string().email(),
|
|
5429
|
+
forgeProjectId: _zod.z.string(),
|
|
5430
|
+
workspaceInvitationId: _zod.z.string(),
|
|
5431
|
+
role: ForgeProjectRole,
|
|
5432
|
+
createdAt: _zod.z.coerce.date(),
|
|
5433
|
+
updatedAt: _zod.z.coerce.date(),
|
|
5434
|
+
createdById: _zod.z.string()
|
|
5435
|
+
});
|
|
5436
|
+
|
|
5437
|
+
// src/forge/project-iteration.ts
|
|
5438
|
+
|
|
5439
|
+
var ForgeProjectIterationMergeMeta = _zod.z.object({ mergeByUserId: _zod.z.string(), mergeAt: _zod.z.date() });
|
|
5440
|
+
var ForgeProjectIteration = _zod.z.object({
|
|
5441
|
+
branchId: _zod.z.string().optional(),
|
|
5442
|
+
buildArtifactId: _zod.z.string(),
|
|
5443
|
+
createdAt: _zod.z.coerce.date(),
|
|
5444
|
+
forgeProjectId: _zod.z.string(),
|
|
5445
|
+
id: _zod.z.string(),
|
|
5446
|
+
locked: _zod.z.boolean(),
|
|
5447
|
+
messages: _zod.z.array(ForgeIterationMessage),
|
|
5448
|
+
artifacts: _zod.z.array(ForgeArtifact),
|
|
5449
|
+
previousIterationId: _zod.z.string().optional(),
|
|
5450
|
+
mergeMeta: ForgeProjectIterationMergeMeta.optional()
|
|
5451
|
+
});
|
|
5452
|
+
|
|
5453
|
+
// src/forge/relation.ts
|
|
5454
|
+
|
|
5455
|
+
var ForgeRelationType = _zod.z.enum(["Feature", "Document"]);
|
|
5456
|
+
var ForgeRelation = _zod.z.object({
|
|
5457
|
+
id: _zod.z.string(),
|
|
5458
|
+
projectId: _zod.z.string(),
|
|
5459
|
+
sourceItemId: _zod.z.string().uuid(),
|
|
5460
|
+
sourceItemType: ForgeRelationType,
|
|
5461
|
+
targetItemId: _zod.z.string().uuid(),
|
|
5462
|
+
targetItemType: ForgeRelationType,
|
|
5463
|
+
createdAt: _zod.z.string()
|
|
5464
|
+
});
|
|
5465
|
+
|
|
5466
|
+
// src/workspace/workspace.ts
|
|
5467
|
+
var isValidCIDR = (value) => {
|
|
5468
|
+
return _ipcidr2.default.isValidAddress(value);
|
|
5469
|
+
};
|
|
5470
|
+
var WorkspaceDefaultProjectAccessMode = ForgeProjectAccessMode;
|
|
5471
|
+
var WorkspaceDefaultProjectRole = ForgeDefaultProjectRole;
|
|
5472
|
+
var WorkspaceIpWhitelistEntry = _zod.z.object({
|
|
5473
|
+
isEnabled: _zod.z.boolean(),
|
|
5474
|
+
name: _zod.z.string(),
|
|
5475
|
+
range: _zod.z.string().refine(isValidCIDR, {
|
|
5476
|
+
message: "Invalid IP CIDR"
|
|
5477
|
+
})
|
|
5478
|
+
});
|
|
5479
|
+
var WorkspaceIpSettings = _zod.z.object({
|
|
5480
|
+
isEnabledForCloud: _zod.z.boolean(),
|
|
5481
|
+
isEnabledForDocs: _zod.z.boolean(),
|
|
5482
|
+
entries: _zod.z.array(WorkspaceIpWhitelistEntry)
|
|
5483
|
+
});
|
|
5484
|
+
var WorkspaceProfile = _zod.z.object({
|
|
5485
|
+
name: _zod.z.string(),
|
|
5486
|
+
handle: _zod.z.string(),
|
|
5487
|
+
color: _zod.z.string(),
|
|
5488
|
+
avatar: nullishToOptional(_zod.z.string()),
|
|
5489
|
+
billingDetails: nullishToOptional(BillingDetails)
|
|
5490
|
+
});
|
|
5491
|
+
var WorkspaceProfileUpdate = WorkspaceProfile.omit({
|
|
5492
|
+
avatar: true
|
|
5493
|
+
});
|
|
5494
|
+
var Workspace = _zod.z.object({
|
|
5495
|
+
id: _zod.z.string(),
|
|
5496
|
+
profile: WorkspaceProfile,
|
|
5497
|
+
subscription: Subscription,
|
|
5498
|
+
ipWhitelist: nullishToOptional(WorkspaceIpSettings),
|
|
5499
|
+
sso: nullishToOptional(SsoProvider),
|
|
5500
|
+
npmRegistrySettings: nullishToOptional(NpmRegistryConfig),
|
|
5501
|
+
aiFeaturesEnabled: _zod.z.boolean().default(false),
|
|
5502
|
+
projectsEnabled: _zod.z.boolean().default(false),
|
|
5503
|
+
defaultProjectAccessMode: WorkspaceDefaultProjectAccessMode,
|
|
5504
|
+
defaultProjectRole: WorkspaceDefaultProjectRole,
|
|
5505
|
+
aiAskFeaturesEnabled: _zod.z.boolean().default(false),
|
|
5506
|
+
aiCustomInstruction: _zod.z.string().optional(),
|
|
5507
|
+
hasOpenMeterSubject: _zod.z.boolean()
|
|
5508
|
+
});
|
|
5509
|
+
var WorkspaceWithDesignSystems = _zod.z.object({
|
|
5510
|
+
workspace: Workspace,
|
|
5511
|
+
designSystems: _zod.z.array(DesignSystem)
|
|
5512
|
+
});
|
|
5513
|
+
|
|
5514
|
+
// src/workspace/workspace-configuration.ts
|
|
5515
|
+
var WorkspaceConfigurationUpdate = _zod.z.object({
|
|
5516
|
+
id: _zod.z.string(),
|
|
5517
|
+
ipWhitelist: WorkspaceIpSettings.optional(),
|
|
5518
|
+
sso: SsoProvider.optional(),
|
|
5519
|
+
npmRegistrySettings: NpmRegistryConfig.optional(),
|
|
5520
|
+
profile: WorkspaceProfileUpdate.optional(),
|
|
5521
|
+
aiFeaturesEnabled: _zod.z.boolean().optional(),
|
|
5522
|
+
projectsEnabled: _zod.z.boolean().optional(),
|
|
5523
|
+
defaultProjectAccessMode: WorkspaceDefaultProjectAccessMode.optional(),
|
|
5524
|
+
defaultProjectRole: WorkspaceDefaultProjectRole.optional(),
|
|
5525
|
+
aiAskFeaturesEnabled: _zod.z.boolean().optional(),
|
|
5526
|
+
aiCustomInstruction: _zod.z.string().optional()
|
|
5235
5527
|
});
|
|
5236
5528
|
|
|
5237
|
-
// src/
|
|
5529
|
+
// src/workspace/workspace-context.ts
|
|
5238
5530
|
|
|
5239
|
-
var
|
|
5240
|
-
|
|
5241
|
-
|
|
5531
|
+
var WorkspaceContext = _zod.z.object({
|
|
5532
|
+
workspaceId: _zod.z.string(),
|
|
5533
|
+
product: ProductCodeSchema,
|
|
5534
|
+
ipWhitelist: nullishToOptional(WorkspaceIpSettings),
|
|
5535
|
+
publicDesignSystem: _zod.z.boolean().optional()
|
|
5242
5536
|
});
|
|
5243
5537
|
|
|
5244
|
-
// src/
|
|
5538
|
+
// src/workspace/workspace-create.ts
|
|
5245
5539
|
|
|
5246
|
-
var
|
|
5247
|
-
var
|
|
5248
|
-
|
|
5540
|
+
var WORKSPACE_NAME_MIN_LENGTH = 2;
|
|
5541
|
+
var WORKSPACE_NAME_MAX_LENGTH = 64;
|
|
5542
|
+
var HANDLE_MIN_LENGTH = 2;
|
|
5543
|
+
var HANDLE_MAX_LENGTH = 64;
|
|
5544
|
+
var CreateWorkspaceInput = _zod.z.object({
|
|
5545
|
+
name: _zod.z.string().min(WORKSPACE_NAME_MIN_LENGTH).max(WORKSPACE_NAME_MAX_LENGTH).trim(),
|
|
5546
|
+
handle: _zod.z.string().regex(slugRegex).min(HANDLE_MIN_LENGTH).max(HANDLE_MAX_LENGTH).refine((value) => _optionalChain([value, 'optionalAccess', _10 => _10.length]) > 0).optional()
|
|
5249
5547
|
});
|
|
5250
|
-
|
|
5548
|
+
|
|
5549
|
+
// src/workspace/workspace-invitations.ts
|
|
5550
|
+
|
|
5551
|
+
var WorkspaceInvitation = _zod.z.object({
|
|
5251
5552
|
id: _zod.z.string(),
|
|
5252
|
-
email: _zod.z.string(),
|
|
5553
|
+
email: _zod.z.string().email(),
|
|
5253
5554
|
createdAt: _zod.z.coerce.date(),
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
|
|
5555
|
+
resentAt: _zod.z.coerce.date().nullish(),
|
|
5556
|
+
role: _zod.z.nativeEnum(WorkspaceRole),
|
|
5557
|
+
seatType: WorkspaceSeatType,
|
|
5558
|
+
workspaceId: _zod.z.string(),
|
|
5559
|
+
invitedBy: _zod.z.string()
|
|
5259
5560
|
});
|
|
5260
5561
|
|
|
5261
5562
|
// src/workspace/workspace-membership.ts
|
|
5563
|
+
|
|
5262
5564
|
var WorkspaceMembership = _zod.z.object({
|
|
5263
5565
|
id: _zod.z.string(),
|
|
5264
5566
|
userId: _zod.z.string(),
|
|
@@ -5708,407 +6010,116 @@ var Pipeline = _zod.z.object({
|
|
|
5708
6010
|
brandPersistentId: _zod.z.string().optional(),
|
|
5709
6011
|
themePersistentId: _zod.z.string().optional(),
|
|
5710
6012
|
themePersistentIds: _zod.z.string().array().optional(),
|
|
5711
|
-
exporterPropertyValues: ExporterPropertyValueMap.optional(),
|
|
5712
|
-
isExporterDeprecated: _zod.z.boolean(),
|
|
5713
|
-
// Destinations
|
|
5714
|
-
...ExportDestinationsMap.shape
|
|
5715
|
-
});
|
|
5716
|
-
|
|
5717
|
-
// src/data-dumps/code-integration-dump.ts
|
|
5718
|
-
var ExportJobDump = _zod.z.object({
|
|
5719
|
-
id: _zod.z.string(),
|
|
5720
|
-
createdAt: _zod.z.coerce.date(),
|
|
5721
|
-
finishedAt: _zod.z.coerce.date(),
|
|
5722
|
-
exportArtefacts: _zod.z.string()
|
|
5723
|
-
});
|
|
5724
|
-
var CodeIntegrationDump = _zod.z.object({
|
|
5725
|
-
exporters: Exporter.array(),
|
|
5726
|
-
pipelines: Pipeline.array(),
|
|
5727
|
-
exportJobs: ExportJobDump.array()
|
|
5728
|
-
});
|
|
5729
|
-
|
|
5730
|
-
// src/data-dumps/design-system-dump.ts
|
|
5731
|
-
|
|
5732
|
-
|
|
5733
|
-
// src/data-dumps/design-system-version-dump.ts
|
|
5734
|
-
|
|
5735
|
-
|
|
5736
|
-
// src/liveblocks/rooms/design-system-version-room.ts
|
|
5737
|
-
|
|
5738
|
-
var DesignSystemVersionRoom = Entity.extend({
|
|
5739
|
-
designSystemVersionId: _zod.z.string(),
|
|
5740
|
-
liveblocksId: _zod.z.string()
|
|
5741
|
-
});
|
|
5742
|
-
var DesignSystemVersionRoomInternalSettings = _zod.z.object({
|
|
5743
|
-
routingVersion: _zod.z.string(),
|
|
5744
|
-
isDraftFeatureAdopted: _zod.z.boolean(),
|
|
5745
|
-
isApprovalFeatureEnabled: _zod.z.boolean(),
|
|
5746
|
-
approvalRequiredForPublishing: _zod.z.boolean()
|
|
5747
|
-
});
|
|
5748
|
-
var DesignSystemVersionRoomInitialState = _zod.z.object({
|
|
5749
|
-
pages: _zod.z.array(DocumentationPageV2),
|
|
5750
|
-
groups: _zod.z.array(ElementGroup),
|
|
5751
|
-
pageSnapshots: _zod.z.array(DocumentationPageSnapshot),
|
|
5752
|
-
groupSnapshots: _zod.z.array(ElementGroupSnapshot),
|
|
5753
|
-
pageApprovals: _zod.z.array(DocumentationPageApproval),
|
|
5754
|
-
internalSettings: DesignSystemVersionRoomInternalSettings,
|
|
5755
|
-
pageHashes: _zod.z.record(_zod.z.string()).optional()
|
|
5756
|
-
});
|
|
5757
|
-
var DesignSystemVersionRoomUpdate = _zod.z.object({
|
|
5758
|
-
pages: _zod.z.array(DocumentationPageV2),
|
|
5759
|
-
groups: _zod.z.array(ElementGroup),
|
|
5760
|
-
pageIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
5761
|
-
groupIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
5762
|
-
pageSnapshots: _zod.z.array(DocumentationPageSnapshot),
|
|
5763
|
-
groupSnapshots: _zod.z.array(ElementGroupSnapshot),
|
|
5764
|
-
pageSnapshotIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
5765
|
-
groupSnapshotIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
5766
|
-
pageHashesToUpdate: _zod.z.record(_zod.z.string(), _zod.z.string()),
|
|
5767
|
-
pageApprovals: _zod.z.array(DocumentationPageApproval),
|
|
5768
|
-
pageApprovalIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
5769
|
-
executedTransactionIds: _zod.z.array(_zod.z.string())
|
|
5770
|
-
});
|
|
5771
|
-
|
|
5772
|
-
// src/liveblocks/rooms/documentation-page-room.ts
|
|
5773
|
-
|
|
5774
|
-
var DocumentationPageRoom = Entity.extend({
|
|
5775
|
-
designSystemVersionId: _zod.z.string(),
|
|
5776
|
-
documentationPageId: _zod.z.string(),
|
|
5777
|
-
liveblocksId: _zod.z.string(),
|
|
5778
|
-
isDirty: _zod.z.boolean()
|
|
5779
|
-
});
|
|
5780
|
-
var DocumentationPageRoomState = _zod.z.object({
|
|
5781
|
-
pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2))
|
|
5782
|
-
});
|
|
5783
|
-
var DocumentationPageRoomRoomUpdate = _zod.z.object({
|
|
5784
|
-
page: DocumentationPageV2,
|
|
5785
|
-
pageParent: ElementGroup
|
|
5786
|
-
});
|
|
5787
|
-
var DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomRoomUpdate.extend({
|
|
5788
|
-
pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2)),
|
|
5789
|
-
blockDefinitions: _zod.z.array(PageBlockDefinition)
|
|
5790
|
-
});
|
|
5791
|
-
var RestoredDocumentationPage = _zod.z.object({
|
|
5792
|
-
page: DocumentationPageV2,
|
|
5793
|
-
pageParent: ElementGroup,
|
|
5794
|
-
pageContent: DocumentationPageContentData,
|
|
5795
|
-
contentHash: _zod.z.string()
|
|
5796
|
-
});
|
|
5797
|
-
var RestoredDocumentationGroup = _zod.z.object({
|
|
5798
|
-
group: ElementGroup,
|
|
5799
|
-
parent: ElementGroup
|
|
5800
|
-
});
|
|
5801
|
-
|
|
5802
|
-
// src/liveblocks/rooms/forge-feature-room.ts
|
|
5803
|
-
|
|
5804
|
-
var ForgeFeatureRoom = Entity.extend({
|
|
5805
|
-
featureId: _zod.z.string(),
|
|
5806
|
-
projectId: _zod.z.string(),
|
|
5807
|
-
liveblocksId: _zod.z.string()
|
|
5808
|
-
});
|
|
5809
|
-
|
|
5810
|
-
// src/liveblocks/rooms/forge-project-artifact-room.ts
|
|
5811
|
-
|
|
5812
|
-
var ForgeProjectArtifactRoom = Entity.extend({
|
|
5813
|
-
artifactId: _zod.z.string(),
|
|
5814
|
-
projectId: _zod.z.string(),
|
|
5815
|
-
liveblocksId: _zod.z.string(),
|
|
5816
|
-
isDirty: _zod.z.boolean()
|
|
5817
|
-
});
|
|
5818
|
-
|
|
5819
|
-
// src/liveblocks/rooms/forge-project-room.ts
|
|
5820
|
-
|
|
5821
|
-
|
|
5822
|
-
// src/forge/agent.ts
|
|
5823
|
-
|
|
5824
|
-
var ForgeAvatarBuilder = _zod.z.object({
|
|
5825
|
-
headType: _zod.z.string(),
|
|
5826
|
-
hairType: _zod.z.string(),
|
|
5827
|
-
accessory1Type: _zod.z.string(),
|
|
5828
|
-
accessory2Type: _zod.z.string()
|
|
5829
|
-
});
|
|
5830
|
-
var ForgeAgent = _zod.z.object({
|
|
5831
|
-
avatar: _zod.z.union([_zod.z.string(), ForgeAvatarBuilder]),
|
|
5832
|
-
avatarUrl: _zod.z.string().optional(),
|
|
5833
|
-
behavior: _zod.z.enum(["Coder", "Writer", "Designer"]),
|
|
5834
|
-
id: _zod.z.string(),
|
|
5835
|
-
name: _zod.z.string(),
|
|
5836
|
-
personality: _zod.z.enum(["Neutral", "Assertive", "Crazy"]),
|
|
5837
|
-
projectId: _zod.z.string()
|
|
5838
|
-
});
|
|
5839
|
-
|
|
5840
|
-
// src/forge/artifact.ts
|
|
5841
|
-
|
|
5842
|
-
var Artifact = _zod.z.object({
|
|
5843
|
-
id: _zod.z.string(),
|
|
5844
|
-
createdAt: _zod.z.coerce.date(),
|
|
5845
|
-
projectIterationId: _zod.z.string()
|
|
5846
|
-
});
|
|
5847
|
-
var ForgeFileArtifact = Artifact.extend({
|
|
5848
|
-
type: _zod.z.enum(["file/text", "file/pdf", "file/image"]),
|
|
5849
|
-
fileName: _zod.z.string(),
|
|
5850
|
-
uploadedFileUrl: _zod.z.string()
|
|
5851
|
-
});
|
|
5852
|
-
var ForgeFigmaArtifact = Artifact.extend({
|
|
5853
|
-
type: _zod.z.literal("figma/node"),
|
|
5854
|
-
figmaFileUrl: _zod.z.string(),
|
|
5855
|
-
figmaNodeId: _zod.z.string(),
|
|
5856
|
-
figmaFileName: _zod.z.string().optional(),
|
|
5857
|
-
previewUrl: _zod.z.string().optional()
|
|
5858
|
-
});
|
|
5859
|
-
var ForgeSpecArtifact = Artifact.extend({
|
|
5860
|
-
type: _zod.z.literal("spec"),
|
|
5861
|
-
fileName: _zod.z.string(),
|
|
5862
|
-
yjsDocId: _zod.z.string(),
|
|
5863
|
-
markdownText: _zod.z.string()
|
|
5864
|
-
});
|
|
5865
|
-
var ForgeBuildArtifactFiles = _zod.z.array(
|
|
5866
|
-
_zod.z.object({
|
|
5867
|
-
path: _zod.z.string(),
|
|
5868
|
-
content: _zod.z.string(),
|
|
5869
|
-
isVisibleToUser: _zod.z.boolean().optional()
|
|
5870
|
-
})
|
|
5871
|
-
);
|
|
5872
|
-
var ForgeBuildArtifactEnvironment = _zod.z.object({
|
|
5873
|
-
dependencies: _zod.z.record(_zod.z.string())
|
|
5874
|
-
});
|
|
5875
|
-
var ForgeBuildArtifact = Artifact.extend({
|
|
5876
|
-
type: _zod.z.literal("build"),
|
|
5877
|
-
participantId: _zod.z.string(),
|
|
5878
|
-
files: ForgeBuildArtifactFiles,
|
|
5879
|
-
environment: ForgeBuildArtifactEnvironment
|
|
5880
|
-
});
|
|
5881
|
-
var ForgeArtifact = _zod.z.union([ForgeBuildArtifact, ForgeSpecArtifact, ForgeFigmaArtifact, ForgeFileArtifact]);
|
|
5882
|
-
|
|
5883
|
-
// src/forge/id.ts
|
|
5884
|
-
|
|
5885
|
-
var Id = _zod.z.string().uuid();
|
|
5886
|
-
|
|
5887
|
-
// src/forge/iteration-message.ts
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
// src/forge/participant.ts
|
|
5891
|
-
|
|
5892
|
-
var ForgeParticipant = _zod.z.object({
|
|
5893
|
-
id: _zod.z.string(),
|
|
5894
|
-
agentId: _zod.z.string().optional(),
|
|
5895
|
-
agent: ForgeAgent.optional(),
|
|
5896
|
-
projectIterationId: _zod.z.string(),
|
|
5897
|
-
role: _zod.z.enum(["Editor", "Viewer"]),
|
|
5898
|
-
type: _zod.z.enum(["Agent", "User"]),
|
|
5899
|
-
userId: _zod.z.string().optional(),
|
|
5900
|
-
user: User.optional()
|
|
5901
|
-
});
|
|
5902
|
-
|
|
5903
|
-
// src/forge/iteration-message.ts
|
|
5904
|
-
var ForgeIterationMessageStep = _zod.z.object({
|
|
5905
|
-
name: _zod.z.string(),
|
|
5906
|
-
text: _zod.z.string(),
|
|
5907
|
-
status: _zod.z.enum(["pending", "started", "completed", "error"])
|
|
6013
|
+
exporterPropertyValues: ExporterPropertyValueMap.optional(),
|
|
6014
|
+
isExporterDeprecated: _zod.z.boolean(),
|
|
6015
|
+
// Destinations
|
|
6016
|
+
...ExportDestinationsMap.shape
|
|
5908
6017
|
});
|
|
5909
|
-
|
|
6018
|
+
|
|
6019
|
+
// src/data-dumps/code-integration-dump.ts
|
|
6020
|
+
var ExportJobDump = _zod.z.object({
|
|
5910
6021
|
id: _zod.z.string(),
|
|
5911
6022
|
createdAt: _zod.z.coerce.date(),
|
|
5912
|
-
|
|
5913
|
-
|
|
5914
|
-
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
|
|
6023
|
+
finishedAt: _zod.z.coerce.date(),
|
|
6024
|
+
exportArtefacts: _zod.z.string()
|
|
6025
|
+
});
|
|
6026
|
+
var CodeIntegrationDump = _zod.z.object({
|
|
6027
|
+
exporters: Exporter.array(),
|
|
6028
|
+
pipelines: Pipeline.array(),
|
|
6029
|
+
exportJobs: ExportJobDump.array()
|
|
5918
6030
|
});
|
|
5919
6031
|
|
|
5920
|
-
// src/
|
|
6032
|
+
// src/data-dumps/design-system-dump.ts
|
|
5921
6033
|
|
|
5922
|
-
var ForgeProjectArtifactContentData = DocumentationPageContentData;
|
|
5923
|
-
var ForgeProjectArtifactContent = _zod.z.object({
|
|
5924
|
-
id: _zod.z.string(),
|
|
5925
|
-
artifactId: _zod.z.string(),
|
|
5926
|
-
projectId: _zod.z.string(),
|
|
5927
|
-
createdAt: _zod.z.coerce.date(),
|
|
5928
|
-
updatedAt: _zod.z.coerce.date(),
|
|
5929
|
-
data: ForgeProjectArtifactContentData
|
|
5930
|
-
});
|
|
5931
6034
|
|
|
5932
|
-
// src/
|
|
6035
|
+
// src/data-dumps/design-system-version-dump.ts
|
|
5933
6036
|
|
|
5934
6037
|
|
|
5935
|
-
// src/
|
|
6038
|
+
// src/liveblocks/rooms/design-system-version-room.ts
|
|
5936
6039
|
|
|
5937
|
-
var
|
|
5938
|
-
|
|
5939
|
-
|
|
5940
|
-
userId: _zod2.default.string()
|
|
5941
|
-
});
|
|
5942
|
-
var FileSourceFigma = _zod2.default.object({
|
|
5943
|
-
type: _zod2.default.literal("Figma"),
|
|
5944
|
-
renderMode: FileFigmaRenderMode
|
|
5945
|
-
});
|
|
5946
|
-
var FileSource = _zod2.default.discriminatedUnion("type", [FileSourceUpload, FileSourceFigma]);
|
|
5947
|
-
var File = _zod2.default.object({
|
|
5948
|
-
id: _zod2.default.string(),
|
|
5949
|
-
name: _zod2.default.string(),
|
|
5950
|
-
deduplicationKey: _zod2.default.string(),
|
|
5951
|
-
pendingUpload: _zod2.default.boolean().optional(),
|
|
5952
|
-
storagePath: _zod2.default.string(),
|
|
5953
|
-
url: _zod2.default.string(),
|
|
5954
|
-
size: _zod2.default.number(),
|
|
5955
|
-
/**
|
|
5956
|
-
* Object describing where did the file come from. Undefined source indicates a file produced by the
|
|
5957
|
-
* system (e.g. thumbnails, etc)
|
|
5958
|
-
*/
|
|
5959
|
-
source: FileSource.optional()
|
|
6040
|
+
var DesignSystemVersionRoom = Entity.extend({
|
|
6041
|
+
designSystemVersionId: _zod.z.string(),
|
|
6042
|
+
liveblocksId: _zod.z.string()
|
|
5960
6043
|
});
|
|
5961
|
-
var
|
|
5962
|
-
|
|
5963
|
-
|
|
5964
|
-
|
|
5965
|
-
|
|
5966
|
-
name: File.shape.name.optional()
|
|
6044
|
+
var DesignSystemVersionRoomInternalSettings = _zod.z.object({
|
|
6045
|
+
routingVersion: _zod.z.string(),
|
|
6046
|
+
isDraftFeatureAdopted: _zod.z.boolean(),
|
|
6047
|
+
isApprovalFeatureEnabled: _zod.z.boolean(),
|
|
6048
|
+
approvalRequiredForPublishing: _zod.z.boolean()
|
|
5967
6049
|
});
|
|
5968
|
-
|
|
5969
|
-
|
|
5970
|
-
|
|
5971
|
-
|
|
5972
|
-
|
|
5973
|
-
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
name: _zod.z.string(),
|
|
5977
|
-
sortOrder: SortOrder.default(0),
|
|
5978
|
-
createdAt: _zod.z.coerce.date(),
|
|
5979
|
-
updatedAt: _zod.z.coerce.date(),
|
|
5980
|
-
childType: ForgeProjectSectionChildType
|
|
6050
|
+
var DesignSystemVersionRoomInitialState = _zod.z.object({
|
|
6051
|
+
pages: _zod.z.array(DocumentationPageV2),
|
|
6052
|
+
groups: _zod.z.array(ElementGroup),
|
|
6053
|
+
pageSnapshots: _zod.z.array(DocumentationPageSnapshot),
|
|
6054
|
+
groupSnapshots: _zod.z.array(ElementGroupSnapshot),
|
|
6055
|
+
pageApprovals: _zod.z.array(DocumentationPageApproval),
|
|
6056
|
+
internalSettings: DesignSystemVersionRoomInternalSettings,
|
|
6057
|
+
pageHashes: _zod.z.record(_zod.z.string()).optional()
|
|
5981
6058
|
});
|
|
5982
|
-
|
|
5983
|
-
|
|
5984
|
-
|
|
5985
|
-
|
|
5986
|
-
|
|
5987
|
-
|
|
5988
|
-
|
|
5989
|
-
|
|
5990
|
-
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
threadId: _zod.z.string().optional(),
|
|
5996
|
-
thumbnail: FileReference.optional(),
|
|
5997
|
-
// Default value here is important for backward compatibility for parsing artifacts
|
|
5998
|
-
// from project rooms!
|
|
5999
|
-
isArchived: _zod.z.boolean().default(false)
|
|
6059
|
+
var DesignSystemVersionRoomUpdate = _zod.z.object({
|
|
6060
|
+
pages: _zod.z.array(DocumentationPageV2),
|
|
6061
|
+
groups: _zod.z.array(ElementGroup),
|
|
6062
|
+
pageIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
6063
|
+
groupIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
6064
|
+
pageSnapshots: _zod.z.array(DocumentationPageSnapshot),
|
|
6065
|
+
groupSnapshots: _zod.z.array(ElementGroupSnapshot),
|
|
6066
|
+
pageSnapshotIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
6067
|
+
groupSnapshotIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
6068
|
+
pageHashesToUpdate: _zod.z.record(_zod.z.string(), _zod.z.string()),
|
|
6069
|
+
pageApprovals: _zod.z.array(DocumentationPageApproval),
|
|
6070
|
+
pageApprovalIdsToDelete: _zod.z.array(_zod.z.string()),
|
|
6071
|
+
executedTransactionIds: _zod.z.array(_zod.z.string())
|
|
6000
6072
|
});
|
|
6001
6073
|
|
|
6002
|
-
// src/
|
|
6074
|
+
// src/liveblocks/rooms/documentation-page-room.ts
|
|
6003
6075
|
|
|
6004
|
-
var
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
id: Id,
|
|
6010
|
-
isArchived: _zod.z.boolean(),
|
|
6011
|
-
name: _zod.z.string(),
|
|
6012
|
-
projectId: _zod.z.string(),
|
|
6013
|
-
sectionId: Id.optional(),
|
|
6014
|
-
e2bTemplateId: _zod.z.string().nullish(),
|
|
6015
|
-
e2bIterationId: _zod.z.string().nullish(),
|
|
6016
|
-
sortOrder: SortOrder.default(0),
|
|
6017
|
-
status: ProjectFeatureStatus.default("Draft"),
|
|
6018
|
-
updatedAt: _zod.z.coerce.date().optional(),
|
|
6019
|
-
numberOfIterations: _zod.z.number().min(0).default(0),
|
|
6020
|
-
numberOfBookmarkedIterations: _zod.z.number().min(0).default(0),
|
|
6021
|
-
lastReplyTimestamp: _zod.z.coerce.date().optional(),
|
|
6022
|
-
threadId: _zod.z.string().optional(),
|
|
6023
|
-
thumbnail: FileReference.optional()
|
|
6076
|
+
var DocumentationPageRoom = Entity.extend({
|
|
6077
|
+
designSystemVersionId: _zod.z.string(),
|
|
6078
|
+
documentationPageId: _zod.z.string(),
|
|
6079
|
+
liveblocksId: _zod.z.string(),
|
|
6080
|
+
isDirty: _zod.z.boolean()
|
|
6024
6081
|
});
|
|
6025
|
-
|
|
6026
|
-
|
|
6027
|
-
|
|
6028
|
-
var ForgeProjectFigmaNode = _zod.z.object({
|
|
6029
|
-
id: _zod.z.string().uuid(),
|
|
6030
|
-
projectId: _zod.z.string(),
|
|
6031
|
-
sceneNodeId: _zod.z.string(),
|
|
6032
|
-
format: FigmaNodeRenderFormat,
|
|
6033
|
-
scale: _zod.z.number().optional(),
|
|
6034
|
-
renderState: FigmaNodeRenderState,
|
|
6035
|
-
renderedImage: FigmaNodeRenderedImage.optional(),
|
|
6036
|
-
renderError: FigmaNodeRenderError.optional()
|
|
6082
|
+
var DocumentationPageRoomState = _zod.z.object({
|
|
6083
|
+
pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2))
|
|
6037
6084
|
});
|
|
6038
|
-
var
|
|
6039
|
-
|
|
6040
|
-
|
|
6041
|
-
scale: _zod.z.number()
|
|
6085
|
+
var DocumentationPageRoomRoomUpdate = _zod.z.object({
|
|
6086
|
+
page: DocumentationPageV2,
|
|
6087
|
+
pageParent: ElementGroup
|
|
6042
6088
|
});
|
|
6043
|
-
|
|
6044
|
-
|
|
6045
|
-
|
|
6046
|
-
var ForgeProjectFile = _zod.z.object({
|
|
6047
|
-
id: _zod.z.string(),
|
|
6048
|
-
projectId: Id,
|
|
6049
|
-
name: _zod.z.string(),
|
|
6050
|
-
filePath: _zod.z.string(),
|
|
6051
|
-
createdAt: _zod.z.coerce.date().optional(),
|
|
6052
|
-
pendingUpload: _zod.z.boolean().optional(),
|
|
6053
|
-
size: _zod.z.number().int().positive().optional(),
|
|
6054
|
-
checksum: _zod.z.string()
|
|
6089
|
+
var DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomRoomUpdate.extend({
|
|
6090
|
+
pageItems: _zod.z.array(PageBlockEditorModelV2.or(PageSectionEditorModelV2)),
|
|
6091
|
+
blockDefinitions: _zod.z.array(PageBlockDefinition)
|
|
6055
6092
|
});
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
|
|
6059
|
-
|
|
6060
|
-
|
|
6061
|
-
|
|
6062
|
-
var ForgeProjectRole = _zod.z.enum(["Viewer", "Builder", "Admin"]);
|
|
6063
|
-
var ForgeProjectMembership = _zod.z.object({
|
|
6064
|
-
userId: _zod.z.string(),
|
|
6065
|
-
forgeProjectId: _zod.z.string(),
|
|
6066
|
-
workspaceMembershipId: _zod.z.string(),
|
|
6067
|
-
workspaceRole: WorkspaceRoleSchema,
|
|
6068
|
-
role: ForgeProjectRole
|
|
6093
|
+
var RestoredDocumentationPage = _zod.z.object({
|
|
6094
|
+
page: DocumentationPageV2,
|
|
6095
|
+
pageParent: ElementGroup,
|
|
6096
|
+
pageContent: DocumentationPageContentData,
|
|
6097
|
+
contentHash: _zod.z.string()
|
|
6069
6098
|
});
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
email: _zod.z.string().email(),
|
|
6074
|
-
forgeProjectId: _zod.z.string(),
|
|
6075
|
-
workspaceInvitationId: _zod.z.string(),
|
|
6076
|
-
role: ForgeProjectRole,
|
|
6077
|
-
createdAt: _zod.z.coerce.date(),
|
|
6078
|
-
updatedAt: _zod.z.coerce.date(),
|
|
6079
|
-
createdById: _zod.z.string()
|
|
6099
|
+
var RestoredDocumentationGroup = _zod.z.object({
|
|
6100
|
+
group: ElementGroup,
|
|
6101
|
+
parent: ElementGroup
|
|
6080
6102
|
});
|
|
6081
6103
|
|
|
6082
|
-
// src/forge
|
|
6104
|
+
// src/liveblocks/rooms/forge-feature-room.ts
|
|
6083
6105
|
|
|
6084
|
-
var
|
|
6085
|
-
|
|
6086
|
-
|
|
6087
|
-
|
|
6088
|
-
createdAt: _zod.z.coerce.date(),
|
|
6089
|
-
forgeProjectId: _zod.z.string(),
|
|
6090
|
-
id: _zod.z.string(),
|
|
6091
|
-
locked: _zod.z.boolean(),
|
|
6092
|
-
messages: _zod.z.array(ForgeIterationMessage),
|
|
6093
|
-
artifacts: _zod.z.array(ForgeArtifact),
|
|
6094
|
-
previousIterationId: _zod.z.string().optional(),
|
|
6095
|
-
mergeMeta: ForgeProjectIterationMergeMeta.optional()
|
|
6106
|
+
var ForgeFeatureRoom = Entity.extend({
|
|
6107
|
+
featureId: _zod.z.string(),
|
|
6108
|
+
projectId: _zod.z.string(),
|
|
6109
|
+
liveblocksId: _zod.z.string()
|
|
6096
6110
|
});
|
|
6097
6111
|
|
|
6098
|
-
// src/forge
|
|
6112
|
+
// src/liveblocks/rooms/forge-project-artifact-room.ts
|
|
6099
6113
|
|
|
6100
|
-
var
|
|
6101
|
-
|
|
6102
|
-
id: _zod.z.string(),
|
|
6114
|
+
var ForgeProjectArtifactRoom = Entity.extend({
|
|
6115
|
+
artifactId: _zod.z.string(),
|
|
6103
6116
|
projectId: _zod.z.string(),
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
targetItemId: _zod.z.string().uuid(),
|
|
6107
|
-
targetItemType: ForgeRelationType,
|
|
6108
|
-
createdAt: _zod.z.string()
|
|
6117
|
+
liveblocksId: _zod.z.string(),
|
|
6118
|
+
isDirty: _zod.z.boolean()
|
|
6109
6119
|
});
|
|
6110
6120
|
|
|
6111
6121
|
// src/liveblocks/rooms/forge-project-room.ts
|
|
6122
|
+
|
|
6112
6123
|
var ForgeProjectRoom = Entity.extend({
|
|
6113
6124
|
projectId: _zod.z.string(),
|
|
6114
6125
|
liveblocksId: _zod.z.string()
|
|
@@ -7610,5 +7621,9 @@ var PersonalAccessToken = _zod.z.object({
|
|
|
7610
7621
|
|
|
7611
7622
|
|
|
7612
7623
|
|
|
7613
|
-
exports.Address = Address; exports.AnalyzeCodeComponentsInPackage = AnalyzeCodeComponentsInPackage; exports.Asset = Asset; exports.AssetDeleteSchedule = AssetDeleteSchedule; exports.AssetDynamoRecord = AssetDynamoRecord; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetRenderConfiguration = AssetRenderConfiguration; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.AuthV2Request = AuthV2Request; exports.AuthV2Session = AuthV2Session; exports.BaseTheme = BaseTheme; 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.CodeComponent = CodeComponent; exports.CodeComponentParentType = CodeComponentParentType; exports.CodeComponentProperty = CodeComponentProperty; exports.CodeComponentResolvedType = CodeComponentResolvedType; exports.CodeComponentResolvedTypeKind = CodeComponentResolvedTypeKind; exports.CodeComponentUpsertResponse = CodeComponentUpsertResponse; exports.CodeIntegrationDump = CodeIntegrationDump; exports.Collection = Collection; exports.CollectionImportModel = CollectionImportModel; exports.CollectionImportModelInput = CollectionImportModelInput; exports.CollectionOrigin = CollectionOrigin; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.ComponentElementData = ComponentElementData; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; 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.DataSourceStorybookRemote = DataSourceStorybookRemote; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DependencyDefinition = DependencyDefinition; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementSnapshotBase = DesignElementSnapshotBase; exports.DesignElementSnapshotReason = DesignElementSnapshotReason; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemAccessMode = DesignSystemAccessMode; exports.DesignSystemDump = DesignSystemDump; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemInvitation = DesignSystemInvitation; exports.DesignSystemInvite = DesignSystemInvite; exports.DesignSystemInviteEmailData = DesignSystemInviteEmailData; exports.DesignSystemInviteEmailRecipient = DesignSystemInviteEmailRecipient; exports.DesignSystemInviteUpdate = DesignSystemInviteUpdate; exports.DesignSystemMemberUpdate = DesignSystemMemberUpdate; exports.DesignSystemMembers = DesignSystemMembers; exports.DesignSystemMembership = DesignSystemMembership; exports.DesignSystemMembershipUpdates = DesignSystemMembershipUpdates; exports.DesignSystemPendingMemberInvitation = DesignSystemPendingMemberInvitation; exports.DesignSystemRole = DesignSystemRole; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUserInvitation = DesignSystemUserInvitation; exports.DesignSystemVersion = DesignSystemVersion; exports.DesignSystemVersionDump = DesignSystemVersionDump; exports.DesignSystemVersionMultiplayerDump = DesignSystemVersionMultiplayerDump; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemVersionRoomInitialState = DesignSystemVersionRoomInitialState; exports.DesignSystemVersionRoomInternalSettings = DesignSystemVersionRoomInternalSettings; exports.DesignSystemVersionRoomUpdate = DesignSystemVersionRoomUpdate; 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.DocumentationPageApproval = DocumentationPageApproval; exports.DocumentationPageApprovalState = DocumentationPageApprovalState; exports.DocumentationPageContent = DocumentationPageContent; exports.DocumentationPageContentBackup = DocumentationPageContentBackup; exports.DocumentationPageContentData = DocumentationPageContentData; exports.DocumentationPageContentItem = DocumentationPageContentItem; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageDependencies = DocumentationPageDependencies; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageRoomDump = DocumentationPageRoomDump; exports.DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomInitialStateUpdate; exports.DocumentationPageRoomRoomUpdate = DocumentationPageRoomRoomUpdate; exports.DocumentationPageRoomState = DocumentationPageRoomState; exports.DocumentationPageSnapshot = DocumentationPageSnapshot; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DocumentationSettings = DocumentationSettings; exports.DocumentationThreadDump = DocumentationThreadDump; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupDataV1 = ElementGroupDataV1; exports.ElementGroupDataV2 = ElementGroupDataV2; exports.ElementGroupSnapshot = ElementGroupSnapshot; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyImmutableType = ElementPropertyImmutableType; 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.Event = Event; exports.EventDataSourceImported = EventDataSourceImported; exports.EventDocumentationPublished = EventDocumentationPublished; exports.EventVersionReleased = EventVersionReleased; exports.ExportDestinationsMap = ExportDestinationsMap; exports.ExportDestinationsMapUpdate = ExportDestinationsMapUpdate; exports.ExportJob = ExportJob; exports.ExportJobContext = ExportJobContext; exports.ExportJobDebugContext = ExportJobDebugContext; exports.ExportJobDestinationType = ExportJobDestinationType; exports.ExportJobDocsDestinationResult = ExportJobDocsDestinationResult; exports.ExportJobDocumentationChanges = ExportJobDocumentationChanges; exports.ExportJobDocumentationContext = ExportJobDocumentationContext; exports.ExportJobDump = ExportJobDump; exports.ExportJobExporterConfiguration = ExportJobExporterConfiguration; 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.ExporterConfigurationPropertyValue = ExporterConfigurationPropertyValue; 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.ExporterPropertyDefinition = ExporterPropertyDefinition; exports.ExporterPropertyDefinitionArray = ExporterPropertyDefinitionArray; exports.ExporterPropertyDefinitionBoolean = ExporterPropertyDefinitionBoolean; exports.ExporterPropertyDefinitionCode = ExporterPropertyDefinitionCode; exports.ExporterPropertyDefinitionEnum = ExporterPropertyDefinitionEnum; exports.ExporterPropertyDefinitionEnumOption = ExporterPropertyDefinitionEnumOption; exports.ExporterPropertyDefinitionNumber = ExporterPropertyDefinitionNumber; exports.ExporterPropertyDefinitionObject = ExporterPropertyDefinitionObject; exports.ExporterPropertyDefinitionString = ExporterPropertyDefinitionString; exports.ExporterPropertyImageValue = ExporterPropertyImageValue; exports.ExporterPropertyType = ExporterPropertyType; exports.ExporterPropertyValue = ExporterPropertyValue; exports.ExporterPropertyValueMap = ExporterPropertyValueMap; 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.FeatureFlagDefaults = FeatureFlagDefaults; exports.FeatureFlagMap = FeatureFlagMap; exports.FeatureFlagsKeepAliases = FeatureFlagsKeepAliases; exports.FeaturesSummary = FeaturesSummary; exports.FigmaComponent = FigmaComponent; exports.FigmaComponentBooleanProperty = FigmaComponentBooleanProperty; exports.FigmaComponentImportModel = FigmaComponentImportModel; exports.FigmaComponentImportModelInput = FigmaComponentImportModelInput; exports.FigmaComponentInstancePreview = FigmaComponentInstancePreview; exports.FigmaComponentInstanceSwapProperty = FigmaComponentInstanceSwapProperty; exports.FigmaComponentOrigin = FigmaComponentOrigin; exports.FigmaComponentOriginPart = FigmaComponentOriginPart; exports.FigmaComponentProperty = FigmaComponentProperty; exports.FigmaComponentPropertyMap = FigmaComponentPropertyMap; exports.FigmaComponentPropertyOrigin = FigmaComponentPropertyOrigin; exports.FigmaComponentPropertyType = FigmaComponentPropertyType; exports.FigmaComponentTextProperty = FigmaComponentTextProperty; exports.FigmaComponentVariantProperty = FigmaComponentVariantProperty; exports.FigmaExporterAnyDesignNodeSchema = FigmaExporterAnyDesignNodeSchema; exports.FigmaFile = FigmaFile; 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.FigmaNodeReferenceOrigin = FigmaNodeReferenceOrigin; exports.FigmaNodeRelinkData = FigmaNodeRelinkData; exports.FigmaNodeRenderError = FigmaNodeRenderError; exports.FigmaNodeRenderErrorType = FigmaNodeRenderErrorType; exports.FigmaNodeRenderFormat = FigmaNodeRenderFormat; exports.FigmaNodeRenderState = FigmaNodeRenderState; exports.FigmaNodeRenderedImage = FigmaNodeRenderedImage; exports.FigmaNodeRendererPayload = FigmaNodeRendererPayload; exports.FigmaNodeStructureDataV2 = FigmaNodeStructureDataV2; exports.FigmaNodeStructureStateV2 = FigmaNodeStructureStateV2; exports.FigmaNodeStructureV2 = FigmaNodeStructureV2; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.File = File; exports.FileFigmaRenderMode = FileFigmaRenderMode; exports.FileReference = FileReference; exports.FileSource = FileSource; exports.FileSourceFigma = FileSourceFigma; exports.FileSourceUpload = FileSourceUpload; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontTokenData = FontTokenData; exports.FontValue = FontValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.ForgeAgent = ForgeAgent; exports.ForgeArtifact = ForgeArtifact; exports.ForgeAvatarBuilder = ForgeAvatarBuilder; exports.ForgeBuildArtifact = ForgeBuildArtifact; exports.ForgeBuildArtifactEnvironment = ForgeBuildArtifactEnvironment; exports.ForgeBuildArtifactFiles = ForgeBuildArtifactFiles; exports.ForgeChatMessage = ForgeChatMessage; exports.ForgeChatMessageSender = ForgeChatMessageSender; exports.ForgeChatMessageSenderType = ForgeChatMessageSenderType; exports.ForgeChatMessageUserScore = ForgeChatMessageUserScore; exports.ForgeChatMessageUserScoreType = ForgeChatMessageUserScoreType; exports.ForgeChatThread = ForgeChatThread; exports.ForgeFeatureRoom = ForgeFeatureRoom; exports.ForgeFigmaArtifact = ForgeFigmaArtifact; exports.ForgeFileArtifact = ForgeFileArtifact; exports.ForgeIterationMessage = ForgeIterationMessage; exports.ForgeIterationMessageStep = ForgeIterationMessageStep; exports.ForgeParticipant = ForgeParticipant; exports.ForgeProjectArtifact = ForgeProjectArtifact; exports.ForgeProjectArtifactContent = ForgeProjectArtifactContent; exports.ForgeProjectArtifactContentData = ForgeProjectArtifactContentData; exports.ForgeProjectArtifactRoom = ForgeProjectArtifactRoom; exports.ForgeProjectFigmaNode = ForgeProjectFigmaNode; exports.ForgeProjectFigmaNodeRenderInput = ForgeProjectFigmaNodeRenderInput; exports.ForgeProjectFile = ForgeProjectFile; exports.ForgeProjectInvitation = ForgeProjectInvitation; exports.ForgeProjectIteration = ForgeProjectIteration; exports.ForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta; exports.ForgeProjectMembership = ForgeProjectMembership; exports.ForgeProjectRole = ForgeProjectRole; exports.ForgeProjectRoom = ForgeProjectRoom; exports.ForgeProjectRoomInitialState = ForgeProjectRoomInitialState; exports.ForgeProjectRoomUpdate = ForgeProjectRoomUpdate; exports.ForgeProjectSectionChildType = ForgeProjectSectionChildType; exports.ForgeRelation = ForgeRelation; exports.ForgeRelationType = ForgeRelationType; exports.ForgeSection = ForgeSection; exports.ForgeSpecArtifact = ForgeSpecArtifact; exports.GitBranch = GitBranch; exports.GitCommonDestinationOptions = GitCommonDestinationOptions; exports.GitIntegrationType = GitIntegrationType; exports.GitInteropPulsarError = GitInteropPulsarError; 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.Id = Id; 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.ListExporterQuery = ListExporterQuery; 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.PageBlockAssetBlockConfig = PageBlockAssetBlockConfig; 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.PageBlockDefinitionFigmaComponentOptions = PageBlockDefinitionFigmaComponentOptions; 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.PageBlockDefinitionRichTextEditorOptions = PageBlockDefinitionRichTextEditorOptions; exports.PageBlockDefinitionRichTextEditorPropertyStyle = PageBlockDefinitionRichTextEditorPropertyStyle; 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.PageBlockFigmaComponentBlockConfig = PageBlockFigmaComponentBlockConfig; exports.PageBlockFigmaComponentEntityMeta = PageBlockFigmaComponentEntityMeta; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFigmaNodeEntityMeta = PageBlockFigmaNodeEntityMeta; exports.PageBlockFile = PageBlockFile; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockGuideline = PageBlockGuideline; 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.PageBlockItemFileValue = PageBlockItemFileValue; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMarkdownValue = PageBlockItemMarkdownValue; exports.PageBlockItemMultiRichTextValue = PageBlockItemMultiRichTextValue; exports.PageBlockItemMultiSelectValue = PageBlockItemMultiSelectValue; exports.PageBlockItemNumberValue = PageBlockItemNumberValue; exports.PageBlockItemRichTextEditorListNode = PageBlockItemRichTextEditorListNode; exports.PageBlockItemRichTextEditorNode = PageBlockItemRichTextEditorNode; exports.PageBlockItemRichTextEditorParagraphNode = PageBlockItemRichTextEditorParagraphNode; exports.PageBlockItemRichTextEditorValue = PageBlockItemRichTextEditorValue; exports.PageBlockItemRichTextValue = PageBlockItemRichTextValue; exports.PageBlockItemSandboxValue = PageBlockItemSandboxValue; exports.PageBlockItemSingleSelectValue = PageBlockItemSingleSelectValue; exports.PageBlockItemStorybookValue = PageBlockItemStorybookValue; exports.PageBlockItemStorybookValueOld = PageBlockItemStorybookValueOld; exports.PageBlockItemSwatch = PageBlockItemSwatch; exports.PageBlockItemTableCell = PageBlockItemTableCell; exports.PageBlockItemTableImageNode = PageBlockItemTableImageNode; 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.PageBlockSelectedFigmaComponent = PageBlockSelectedFigmaComponent; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockStorybookBlockConfig = PageBlockStorybookBlockConfig; exports.PageBlockStorybookItem = PageBlockStorybookItem; exports.PageBlockSwatch = PageBlockSwatch; 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.PageBlockTokenBlockConfig = PageBlockTokenBlockConfig; exports.PageBlockTokenNameFormat = PageBlockTokenNameFormat; exports.PageBlockTokenValueFormat = PageBlockTokenValueFormat; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.PageRedirect = PageRedirect; exports.PageScreenshotInput = PageScreenshotInput; exports.PageScreenshotOutput = PageScreenshotOutput; 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.PortalSettings = PortalSettings; exports.PortalSettingsSidebar = PortalSettingsSidebar; exports.PortalSettingsSidebarLink = PortalSettingsSidebarLink; exports.PortalSettingsSidebarSection = PortalSettingsSidebarSection; exports.PortalSettingsTheme = PortalSettingsTheme; exports.PortalTheme = PortalTheme; exports.PortalThemePreset = PortalThemePreset; 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.ProjectFeature = ProjectFeature; exports.ProjectFeatureStatus = ProjectFeatureStatus; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocPage = PublishedDocPage; exports.PublishedDocPageVisitsEntry = PublishedDocPageVisitsEntry; 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.Registry = Registry; exports.RegistryType = RegistryType; exports.RenderedAssetFile = RenderedAssetFile; exports.ResolvedAsset = ResolvedAsset; exports.RestoredDocumentationGroup = RestoredDocumentationGroup; exports.RestoredDocumentationPage = RestoredDocumentationPage; exports.RoomType = RoomType; exports.RoomTypeEnum = RoomTypeEnum; exports.RoomTypeSchema = RoomTypeSchema; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.SafeIdSchema = SafeIdSchema; exports.SentryTraceHeaders = SentryTraceHeaders; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShadowValue = ShadowValue; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SortOrder = SortOrder; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportStorybookSummary = SourceImportStorybookSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StorybookEntry = StorybookEntry; exports.StorybookEntryOrigin = StorybookEntryOrigin; exports.StorybookPayload = StorybookPayload; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.SupernovaException = SupernovaException; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UpdateMembershipRolesInput = UpdateMembershipRolesInput; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserAnalyticsCleanupSchedule = UserAnalyticsCleanupSchedule; exports.UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupScheduleDbInput; exports.UserDump = UserDump; exports.UserEmailSettings = UserEmailSettings; 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.UserSession = UserSession; exports.UserSource = UserSource; exports.UserTest = UserTest; exports.UserTheme = UserTheme; exports.UserThemePreset = UserThemePreset; 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.WorkspaceInviteEmailData = WorkspaceInviteEmailData; exports.WorkspaceInviteEmailRecipient = WorkspaceInviteEmailRecipient; 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.WorkspaceSeatType = WorkspaceSeatType; exports.WorkspaceUntypedData = WorkspaceUntypedData; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.applyShallowObjectUpdate = applyShallowObjectUpdate; exports.areShallowObjectsEqual = areShallowObjectsEqual; exports.areTokenTypesCompatible = areTokenTypesCompatible; exports.buildConstantEnum = buildConstantEnum; exports.castStringToDimensionValue = castStringToDimensionValue; exports.chunkedArray = chunkedArray; exports.convertTokenTypedData = convertTokenTypedData; exports.defaultDocumentationItemConfigurationV1 = defaultDocumentationItemConfigurationV1; exports.defaultDocumentationItemConfigurationV2 = defaultDocumentationItemConfigurationV2; exports.defaultDocumentationItemHeaderV1 = defaultDocumentationItemHeaderV1; exports.defaultDocumentationItemHeaderV2 = defaultDocumentationItemHeaderV2; exports.defaultNotificationSettings = defaultNotificationSettings; exports.deriveWorkspaceSeatTypeFromRole = deriveWorkspaceSeatTypeFromRole; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.errorToString = errorToString; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.filterNonNullish = filterNonNullish; exports.forceUnwrapNullish = forceUnwrapNullish; exports.generateShortPersistentId = generateShortPersistentId; exports.getCodenameFromText = getCodenameFromText; exports.getFigmaRenderFormatFileExtension = getFigmaRenderFormatFileExtension; exports.groupBy = groupBy; exports.hasProperty = hasProperty; exports.hasTruthyProperty = hasTruthyProperty; exports.isDataSourceOfType = isDataSourceOfType; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedDesignToken = isImportedDesignToken; exports.isImportedFigmaComponent = isImportedFigmaComponent; exports.isNotNullish = isNotNullish; exports.isNullish = isNullish; exports.isSlugReserved = isSlugReserved; exports.isTokenType = isTokenType; exports.isValidRoleSeatPair = isValidRoleSeatPair; exports.joinRepeatingSpans = joinRepeatingSpans; exports.mapByUnique = mapByUnique; exports.mapPageBlockItemValuesV2 = mapPageBlockItemValuesV2; exports.nonNullFilter = nonNullFilter; exports.nonNullishFilter = nonNullishFilter; exports.nullishToOptional = nullishToOptional; exports.nullsToUndefined = nullsToUndefined; exports.parseUrl = parseUrl; exports.pickDefined = pickDefined; exports.pickLatestGroupSnapshots = pickLatestGroupSnapshots; exports.pickLatestPageSnapshots = pickLatestPageSnapshots; exports.pickLatestSnapshots = pickLatestSnapshots; exports.promiseWithTimeout = promiseWithTimeout; exports.publishedDocEnvironments = publishedDocEnvironments; exports.recordToMap = recordToMap; exports.removeCommentSpans = removeCommentSpans; exports.sleep = sleep; exports.slugRegex = slugRegex; exports.slugify = slugify; exports.storybookValueFromOldValue = storybookValueFromOldValue; 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.workspaceRoleToDesignSystemRole = workspaceRoleToDesignSystemRole; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
|
|
7624
|
+
|
|
7625
|
+
|
|
7626
|
+
|
|
7627
|
+
|
|
7628
|
+
exports.Address = Address; exports.AnalyzeCodeComponentsInPackage = AnalyzeCodeComponentsInPackage; exports.Asset = Asset; exports.AssetDeleteSchedule = AssetDeleteSchedule; exports.AssetDynamoRecord = AssetDynamoRecord; exports.AssetFontProperties = AssetFontProperties; exports.AssetImportModelInput = AssetImportModelInput; exports.AssetOrigin = AssetOrigin; exports.AssetProperties = AssetProperties; exports.AssetReference = AssetReference; exports.AssetRenderConfiguration = AssetRenderConfiguration; exports.AssetScope = AssetScope; exports.AssetType = AssetType; exports.AssetValue = AssetValue; exports.AuthTokens = AuthTokens; exports.AuthV2Request = AuthV2Request; exports.AuthV2Session = AuthV2Session; exports.BaseTheme = BaseTheme; 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.CodeComponent = CodeComponent; exports.CodeComponentParentType = CodeComponentParentType; exports.CodeComponentProperty = CodeComponentProperty; exports.CodeComponentResolvedType = CodeComponentResolvedType; exports.CodeComponentResolvedTypeKind = CodeComponentResolvedTypeKind; exports.CodeComponentUpsertResponse = CodeComponentUpsertResponse; exports.CodeIntegrationDump = CodeIntegrationDump; exports.Collection = Collection; exports.CollectionImportModel = CollectionImportModel; exports.CollectionImportModelInput = CollectionImportModelInput; exports.CollectionOrigin = CollectionOrigin; exports.ColorTokenData = ColorTokenData; exports.ColorTokenInlineData = ColorTokenInlineData; exports.ColorValue = ColorValue; exports.ComponentElementData = ComponentElementData; exports.ContentLoadInstruction = ContentLoadInstruction; exports.ContentLoaderPayload = ContentLoaderPayload; exports.CreateDesignToken = CreateDesignToken; 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.DataSourceStorybookRemote = DataSourceStorybookRemote; exports.DataSourceTokenStudioRemote = DataSourceTokenStudioRemote; exports.DataSourceUploadImportMetadata = DataSourceUploadImportMetadata; exports.DataSourceUploadRemote = DataSourceUploadRemote; exports.DataSourceUploadRemoteSource = DataSourceUploadRemoteSource; exports.DataSourceVersion = DataSourceVersion; exports.DependencyDefinition = DependencyDefinition; exports.DesignElement = DesignElement; exports.DesignElementBase = DesignElementBase; exports.DesignElementBrandedPart = DesignElementBrandedPart; exports.DesignElementCategory = DesignElementCategory; exports.DesignElementGroupableBase = DesignElementGroupableBase; exports.DesignElementGroupablePart = DesignElementGroupablePart; exports.DesignElementGroupableRequiredPart = DesignElementGroupableRequiredPart; exports.DesignElementImportedBase = DesignElementImportedBase; exports.DesignElementOrigin = DesignElementOrigin; exports.DesignElementSlugPart = DesignElementSlugPart; exports.DesignElementSnapshotBase = DesignElementSnapshotBase; exports.DesignElementSnapshotReason = DesignElementSnapshotReason; exports.DesignElementType = DesignElementType; exports.DesignSystem = DesignSystem; exports.DesignSystemAccessMode = DesignSystemAccessMode; exports.DesignSystemDump = DesignSystemDump; exports.DesignSystemElementExportProps = DesignSystemElementExportProps; exports.DesignSystemInvitation = DesignSystemInvitation; exports.DesignSystemInvite = DesignSystemInvite; exports.DesignSystemInviteEmailData = DesignSystemInviteEmailData; exports.DesignSystemInviteEmailRecipient = DesignSystemInviteEmailRecipient; exports.DesignSystemInviteUpdate = DesignSystemInviteUpdate; exports.DesignSystemMemberUpdate = DesignSystemMemberUpdate; exports.DesignSystemMembers = DesignSystemMembers; exports.DesignSystemMembership = DesignSystemMembership; exports.DesignSystemMembershipUpdates = DesignSystemMembershipUpdates; exports.DesignSystemPendingMemberInvitation = DesignSystemPendingMemberInvitation; exports.DesignSystemRole = DesignSystemRole; exports.DesignSystemSwitcher = DesignSystemSwitcher; exports.DesignSystemUserInvitation = DesignSystemUserInvitation; exports.DesignSystemVersion = DesignSystemVersion; exports.DesignSystemVersionDump = DesignSystemVersionDump; exports.DesignSystemVersionMultiplayerDump = DesignSystemVersionMultiplayerDump; exports.DesignSystemVersionRoom = DesignSystemVersionRoom; exports.DesignSystemVersionRoomInitialState = DesignSystemVersionRoomInitialState; exports.DesignSystemVersionRoomInternalSettings = DesignSystemVersionRoomInternalSettings; exports.DesignSystemVersionRoomUpdate = DesignSystemVersionRoomUpdate; 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.DocumentationPageApproval = DocumentationPageApproval; exports.DocumentationPageApprovalState = DocumentationPageApprovalState; exports.DocumentationPageContent = DocumentationPageContent; exports.DocumentationPageContentBackup = DocumentationPageContentBackup; exports.DocumentationPageContentData = DocumentationPageContentData; exports.DocumentationPageContentItem = DocumentationPageContentItem; exports.DocumentationPageDataV1 = DocumentationPageDataV1; exports.DocumentationPageDataV2 = DocumentationPageDataV2; exports.DocumentationPageDependencies = DocumentationPageDependencies; exports.DocumentationPageGroup = DocumentationPageGroup; exports.DocumentationPageRoom = DocumentationPageRoom; exports.DocumentationPageRoomDump = DocumentationPageRoomDump; exports.DocumentationPageRoomInitialStateUpdate = DocumentationPageRoomInitialStateUpdate; exports.DocumentationPageRoomRoomUpdate = DocumentationPageRoomRoomUpdate; exports.DocumentationPageRoomState = DocumentationPageRoomState; exports.DocumentationPageSnapshot = DocumentationPageSnapshot; exports.DocumentationPageV1 = DocumentationPageV1; exports.DocumentationPageV2 = DocumentationPageV2; exports.DocumentationSettings = DocumentationSettings; exports.DocumentationThreadDump = DocumentationThreadDump; exports.DurationTokenData = DurationTokenData; exports.DurationUnit = DurationUnit; exports.DurationValue = DurationValue; exports.ElementGroup = ElementGroup; exports.ElementGroupDataV1 = ElementGroupDataV1; exports.ElementGroupDataV2 = ElementGroupDataV2; exports.ElementGroupSnapshot = ElementGroupSnapshot; exports.ElementPropertyDefinition = ElementPropertyDefinition; exports.ElementPropertyDefinitionOption = ElementPropertyDefinitionOption; exports.ElementPropertyImmutableType = ElementPropertyImmutableType; 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.Event = Event; exports.EventDataSourceImported = EventDataSourceImported; exports.EventDocumentationPublished = EventDocumentationPublished; exports.EventVersionReleased = EventVersionReleased; exports.ExportDestinationsMap = ExportDestinationsMap; exports.ExportDestinationsMapUpdate = ExportDestinationsMapUpdate; exports.ExportJob = ExportJob; exports.ExportJobContext = ExportJobContext; exports.ExportJobDebugContext = ExportJobDebugContext; exports.ExportJobDestinationType = ExportJobDestinationType; exports.ExportJobDocsDestinationResult = ExportJobDocsDestinationResult; exports.ExportJobDocumentationChanges = ExportJobDocumentationChanges; exports.ExportJobDocumentationContext = ExportJobDocumentationContext; exports.ExportJobDump = ExportJobDump; exports.ExportJobExporterConfiguration = ExportJobExporterConfiguration; 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.ExporterConfigurationPropertyValue = ExporterConfigurationPropertyValue; 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.ExporterPropertyDefinition = ExporterPropertyDefinition; exports.ExporterPropertyDefinitionArray = ExporterPropertyDefinitionArray; exports.ExporterPropertyDefinitionBoolean = ExporterPropertyDefinitionBoolean; exports.ExporterPropertyDefinitionCode = ExporterPropertyDefinitionCode; exports.ExporterPropertyDefinitionEnum = ExporterPropertyDefinitionEnum; exports.ExporterPropertyDefinitionEnumOption = ExporterPropertyDefinitionEnumOption; exports.ExporterPropertyDefinitionNumber = ExporterPropertyDefinitionNumber; exports.ExporterPropertyDefinitionObject = ExporterPropertyDefinitionObject; exports.ExporterPropertyDefinitionString = ExporterPropertyDefinitionString; exports.ExporterPropertyImageValue = ExporterPropertyImageValue; exports.ExporterPropertyType = ExporterPropertyType; exports.ExporterPropertyValue = ExporterPropertyValue; exports.ExporterPropertyValueMap = ExporterPropertyValueMap; 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.FeatureFlagDefaults = FeatureFlagDefaults; exports.FeatureFlagMap = FeatureFlagMap; exports.FeatureFlagsKeepAliases = FeatureFlagsKeepAliases; exports.FeaturesSummary = FeaturesSummary; exports.FigmaComponent = FigmaComponent; exports.FigmaComponentBooleanProperty = FigmaComponentBooleanProperty; exports.FigmaComponentImportModel = FigmaComponentImportModel; exports.FigmaComponentImportModelInput = FigmaComponentImportModelInput; exports.FigmaComponentInstancePreview = FigmaComponentInstancePreview; exports.FigmaComponentInstanceSwapProperty = FigmaComponentInstanceSwapProperty; exports.FigmaComponentOrigin = FigmaComponentOrigin; exports.FigmaComponentOriginPart = FigmaComponentOriginPart; exports.FigmaComponentProperty = FigmaComponentProperty; exports.FigmaComponentPropertyMap = FigmaComponentPropertyMap; exports.FigmaComponentPropertyOrigin = FigmaComponentPropertyOrigin; exports.FigmaComponentPropertyType = FigmaComponentPropertyType; exports.FigmaComponentTextProperty = FigmaComponentTextProperty; exports.FigmaComponentVariantProperty = FigmaComponentVariantProperty; exports.FigmaExporterAnyDesignNodeSchema = FigmaExporterAnyDesignNodeSchema; exports.FigmaFile = FigmaFile; 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.FigmaNodeReferenceOrigin = FigmaNodeReferenceOrigin; exports.FigmaNodeRelinkData = FigmaNodeRelinkData; exports.FigmaNodeRenderError = FigmaNodeRenderError; exports.FigmaNodeRenderErrorType = FigmaNodeRenderErrorType; exports.FigmaNodeRenderFormat = FigmaNodeRenderFormat; exports.FigmaNodeRenderState = FigmaNodeRenderState; exports.FigmaNodeRenderedImage = FigmaNodeRenderedImage; exports.FigmaNodeRendererPayload = FigmaNodeRendererPayload; exports.FigmaNodeStructureDataV2 = FigmaNodeStructureDataV2; exports.FigmaNodeStructureStateV2 = FigmaNodeStructureStateV2; exports.FigmaNodeStructureV2 = FigmaNodeStructureV2; exports.FigmaPngRenderImportModel = FigmaPngRenderImportModel; exports.FigmaRenderFormat = FigmaRenderFormat; exports.FigmaRenderImportModel = FigmaRenderImportModel; exports.FigmaSvgRenderImportModel = FigmaSvgRenderImportModel; exports.File = File; exports.FileFigmaRenderMode = FileFigmaRenderMode; exports.FileReference = FileReference; exports.FileSource = FileSource; exports.FileSourceFigma = FileSourceFigma; exports.FileSourceUpload = FileSourceUpload; exports.FileStructureStats = FileStructureStats; exports.FlaggedFeature = FlaggedFeature; exports.FontFamilyTokenData = FontFamilyTokenData; exports.FontFamilyValue = FontFamilyValue; exports.FontSizeTokenData = FontSizeTokenData; exports.FontSizeUnit = FontSizeUnit; exports.FontSizeValue = FontSizeValue; exports.FontTokenData = FontTokenData; exports.FontValue = FontValue; exports.FontWeightTokenData = FontWeightTokenData; exports.FontWeightValue = FontWeightValue; exports.ForgeAgent = ForgeAgent; exports.ForgeArtifact = ForgeArtifact; exports.ForgeAvatarBuilder = ForgeAvatarBuilder; exports.ForgeBuildArtifact = ForgeBuildArtifact; exports.ForgeBuildArtifactEnvironment = ForgeBuildArtifactEnvironment; exports.ForgeBuildArtifactFiles = ForgeBuildArtifactFiles; exports.ForgeChatMessage = ForgeChatMessage; exports.ForgeChatMessageSender = ForgeChatMessageSender; exports.ForgeChatMessageSenderType = ForgeChatMessageSenderType; exports.ForgeChatMessageUserScore = ForgeChatMessageUserScore; exports.ForgeChatMessageUserScoreType = ForgeChatMessageUserScoreType; exports.ForgeChatThread = ForgeChatThread; exports.ForgeDefaultProjectRole = ForgeDefaultProjectRole; exports.ForgeFeatureRoom = ForgeFeatureRoom; exports.ForgeFigmaArtifact = ForgeFigmaArtifact; exports.ForgeFileArtifact = ForgeFileArtifact; exports.ForgeIterationMessage = ForgeIterationMessage; exports.ForgeIterationMessageStep = ForgeIterationMessageStep; exports.ForgeParticipant = ForgeParticipant; exports.ForgeProjectAccessMode = ForgeProjectAccessMode; exports.ForgeProjectArtifact = ForgeProjectArtifact; exports.ForgeProjectArtifactContent = ForgeProjectArtifactContent; exports.ForgeProjectArtifactContentData = ForgeProjectArtifactContentData; exports.ForgeProjectArtifactRoom = ForgeProjectArtifactRoom; exports.ForgeProjectFigmaNode = ForgeProjectFigmaNode; exports.ForgeProjectFigmaNodeRenderInput = ForgeProjectFigmaNodeRenderInput; exports.ForgeProjectFile = ForgeProjectFile; exports.ForgeProjectInvitation = ForgeProjectInvitation; exports.ForgeProjectIteration = ForgeProjectIteration; exports.ForgeProjectIterationMergeMeta = ForgeProjectIterationMergeMeta; exports.ForgeProjectMembership = ForgeProjectMembership; exports.ForgeProjectRole = ForgeProjectRole; exports.ForgeProjectRoom = ForgeProjectRoom; exports.ForgeProjectRoomInitialState = ForgeProjectRoomInitialState; exports.ForgeProjectRoomUpdate = ForgeProjectRoomUpdate; exports.ForgeProjectSectionChildType = ForgeProjectSectionChildType; exports.ForgeRelation = ForgeRelation; exports.ForgeRelationType = ForgeRelationType; exports.ForgeSection = ForgeSection; exports.ForgeSpecArtifact = ForgeSpecArtifact; exports.GitBranch = GitBranch; exports.GitCommonDestinationOptions = GitCommonDestinationOptions; exports.GitIntegrationType = GitIntegrationType; exports.GitInteropPulsarError = GitInteropPulsarError; 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.Id = Id; 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.ListExporterQuery = ListExporterQuery; 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.PageBlockAssetBlockConfig = PageBlockAssetBlockConfig; 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.PageBlockDefinitionFigmaComponentOptions = PageBlockDefinitionFigmaComponentOptions; 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.PageBlockDefinitionRichTextEditorOptions = PageBlockDefinitionRichTextEditorOptions; exports.PageBlockDefinitionRichTextEditorPropertyStyle = PageBlockDefinitionRichTextEditorPropertyStyle; 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.PageBlockFigmaComponentBlockConfig = PageBlockFigmaComponentBlockConfig; exports.PageBlockFigmaComponentEntityMeta = PageBlockFigmaComponentEntityMeta; exports.PageBlockFigmaFrameProperties = PageBlockFigmaFrameProperties; exports.PageBlockFigmaNodeEntityMeta = PageBlockFigmaNodeEntityMeta; exports.PageBlockFile = PageBlockFile; exports.PageBlockFrame = PageBlockFrame; exports.PageBlockFrameOrigin = PageBlockFrameOrigin; exports.PageBlockGuideline = PageBlockGuideline; 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.PageBlockItemFileValue = PageBlockItemFileValue; exports.PageBlockItemImageValue = PageBlockItemImageValue; exports.PageBlockItemMarkdownValue = PageBlockItemMarkdownValue; exports.PageBlockItemMultiRichTextValue = PageBlockItemMultiRichTextValue; exports.PageBlockItemMultiSelectValue = PageBlockItemMultiSelectValue; exports.PageBlockItemNumberValue = PageBlockItemNumberValue; exports.PageBlockItemRichTextEditorListNode = PageBlockItemRichTextEditorListNode; exports.PageBlockItemRichTextEditorNode = PageBlockItemRichTextEditorNode; exports.PageBlockItemRichTextEditorParagraphNode = PageBlockItemRichTextEditorParagraphNode; exports.PageBlockItemRichTextEditorValue = PageBlockItemRichTextEditorValue; exports.PageBlockItemRichTextValue = PageBlockItemRichTextValue; exports.PageBlockItemSandboxValue = PageBlockItemSandboxValue; exports.PageBlockItemSingleSelectValue = PageBlockItemSingleSelectValue; exports.PageBlockItemStorybookValue = PageBlockItemStorybookValue; exports.PageBlockItemStorybookValueOld = PageBlockItemStorybookValueOld; exports.PageBlockItemSwatch = PageBlockItemSwatch; exports.PageBlockItemTableCell = PageBlockItemTableCell; exports.PageBlockItemTableImageNode = PageBlockItemTableImageNode; 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.PageBlockSelectedFigmaComponent = PageBlockSelectedFigmaComponent; exports.PageBlockShortcut = PageBlockShortcut; exports.PageBlockStorybookBlockConfig = PageBlockStorybookBlockConfig; exports.PageBlockStorybookItem = PageBlockStorybookItem; exports.PageBlockSwatch = PageBlockSwatch; 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.PageBlockTokenBlockConfig = PageBlockTokenBlockConfig; exports.PageBlockTokenNameFormat = PageBlockTokenNameFormat; exports.PageBlockTokenValueFormat = PageBlockTokenValueFormat; exports.PageBlockTypeV1 = PageBlockTypeV1; exports.PageBlockUrlPreview = PageBlockUrlPreview; exports.PageBlockV1 = PageBlockV1; exports.PageBlockV2 = PageBlockV2; exports.PageRedirect = PageRedirect; exports.PageScreenshotInput = PageScreenshotInput; exports.PageScreenshotOutput = PageScreenshotOutput; 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.PortalSettings = PortalSettings; exports.PortalSettingsSidebar = PortalSettingsSidebar; exports.PortalSettingsSidebarLink = PortalSettingsSidebarLink; exports.PortalSettingsSidebarSection = PortalSettingsSidebarSection; exports.PortalSettingsTheme = PortalSettingsTheme; exports.PortalTheme = PortalTheme; exports.PortalThemePreset = PortalThemePreset; 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.ProjectFeature = ProjectFeature; exports.ProjectFeatureStatus = ProjectFeatureStatus; exports.PublishedDoc = PublishedDoc; exports.PublishedDocEnvironment = PublishedDocEnvironment; exports.PublishedDocPage = PublishedDocPage; exports.PublishedDocPageVisitsEntry = PublishedDocPageVisitsEntry; 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.Registry = Registry; exports.RegistryType = RegistryType; exports.RenderedAssetFile = RenderedAssetFile; exports.ResolvedAsset = ResolvedAsset; exports.RestoredDocumentationGroup = RestoredDocumentationGroup; exports.RestoredDocumentationPage = RestoredDocumentationPage; exports.RoomType = RoomType; exports.RoomTypeEnum = RoomTypeEnum; exports.RoomTypeSchema = RoomTypeSchema; exports.SHORT_PERSISTENT_ID_LENGTH = SHORT_PERSISTENT_ID_LENGTH; exports.SafeIdSchema = SafeIdSchema; exports.SentryTraceHeaders = SentryTraceHeaders; exports.Session = Session; exports.SessionData = SessionData; exports.ShadowLayerValue = ShadowLayerValue; exports.ShadowTokenData = ShadowTokenData; exports.ShadowType = ShadowType; exports.ShadowValue = ShadowValue; exports.ShallowDesignElement = ShallowDesignElement; exports.Size = Size; exports.SizeOrUndefined = SizeOrUndefined; exports.SizeTokenData = SizeTokenData; exports.SizeUnit = SizeUnit; exports.SizeValue = SizeValue; exports.SortOrder = SortOrder; exports.SourceImportComponentSummary = SourceImportComponentSummary; exports.SourceImportFrameSummary = SourceImportFrameSummary; exports.SourceImportStorybookSummary = SourceImportStorybookSummary; exports.SourceImportSummary = SourceImportSummary; exports.SourceImportSummaryByTokenType = SourceImportSummaryByTokenType; exports.SourceImportTokenSummary = SourceImportTokenSummary; exports.SpaceTokenData = SpaceTokenData; exports.SpaceUnit = SpaceUnit; exports.SpaceValue = SpaceValue; exports.SsoProvider = SsoProvider; exports.StorybookEntry = StorybookEntry; exports.StorybookEntryOrigin = StorybookEntryOrigin; exports.StorybookPayload = StorybookPayload; exports.StringTokenData = StringTokenData; exports.StringValue = StringValue; exports.StripeSubscriptionStatus = StripeSubscriptionStatus; exports.StripeSubscriptionStatusSchema = StripeSubscriptionStatusSchema; exports.Subscription = Subscription; exports.SupernovaException = SupernovaException; exports.TextCase = TextCase; exports.TextCaseTokenData = TextCaseTokenData; exports.TextCaseValue = TextCaseValue; exports.TextDecoration = TextDecoration; exports.TextDecorationTokenData = TextDecorationTokenData; exports.TextDecorationValue = TextDecorationValue; exports.Theme = Theme; exports.ThemeElementData = ThemeElementData; exports.ThemeImportModel = ThemeImportModel; exports.ThemeImportModelInput = ThemeImportModelInput; exports.ThemeOrigin = ThemeOrigin; exports.ThemeOriginObject = ThemeOriginObject; exports.ThemeOriginPart = ThemeOriginPart; exports.ThemeOriginSource = ThemeOriginSource; exports.ThemeOverride = ThemeOverride; exports.ThemeOverrideImportModel = ThemeOverrideImportModel; exports.ThemeOverrideImportModelBase = ThemeOverrideImportModelBase; exports.ThemeOverrideImportModelInput = ThemeOverrideImportModelInput; exports.ThemeOverrideOrigin = ThemeOverrideOrigin; exports.ThemeOverrideOriginPart = ThemeOverrideOriginPart; exports.ThemeUpdateImportModel = ThemeUpdateImportModel; exports.ThemeUpdateImportModelInput = ThemeUpdateImportModelInput; exports.TokenDataAliasSchema = TokenDataAliasSchema; exports.TypographyTokenData = TypographyTokenData; exports.TypographyValue = TypographyValue; exports.UpdateMembershipRolesInput = UpdateMembershipRolesInput; exports.UrlImageImportModel = UrlImageImportModel; exports.User = User; exports.UserAnalyticsCleanupSchedule = UserAnalyticsCleanupSchedule; exports.UserAnalyticsCleanupScheduleDbInput = UserAnalyticsCleanupScheduleDbInput; exports.UserDump = UserDump; exports.UserEmailSettings = UserEmailSettings; 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.UserSession = UserSession; exports.UserSource = UserSource; exports.UserTest = UserTest; exports.UserTheme = UserTheme; exports.UserThemePreset = UserThemePreset; 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.WorkspaceDefaultProjectAccessMode = WorkspaceDefaultProjectAccessMode; exports.WorkspaceDefaultProjectRole = WorkspaceDefaultProjectRole; exports.WorkspaceDump = WorkspaceDump; exports.WorkspaceInvitation = WorkspaceInvitation; exports.WorkspaceInviteEmailData = WorkspaceInviteEmailData; exports.WorkspaceInviteEmailRecipient = WorkspaceInviteEmailRecipient; 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.WorkspaceSeatType = WorkspaceSeatType; exports.WorkspaceUntypedData = WorkspaceUntypedData; exports.WorkspaceWithDesignSystems = WorkspaceWithDesignSystems; exports.ZIndexTokenData = ZIndexTokenData; exports.ZIndexUnit = ZIndexUnit; exports.ZIndexValue = ZIndexValue; exports.addImportModelCollections = addImportModelCollections; exports.applyShallowObjectUpdate = applyShallowObjectUpdate; exports.areShallowObjectsEqual = areShallowObjectsEqual; exports.areTokenTypesCompatible = areTokenTypesCompatible; exports.buildConstantEnum = buildConstantEnum; exports.castStringToDimensionValue = castStringToDimensionValue; exports.chunkedArray = chunkedArray; exports.convertTokenTypedData = convertTokenTypedData; exports.defaultDocumentationItemConfigurationV1 = defaultDocumentationItemConfigurationV1; exports.defaultDocumentationItemConfigurationV2 = defaultDocumentationItemConfigurationV2; exports.defaultDocumentationItemHeaderV1 = defaultDocumentationItemHeaderV1; exports.defaultDocumentationItemHeaderV2 = defaultDocumentationItemHeaderV2; exports.defaultNotificationSettings = defaultNotificationSettings; exports.deriveWorkspaceSeatTypeFromRole = deriveWorkspaceSeatTypeFromRole; exports.designTokenImportModelTypeFilter = designTokenImportModelTypeFilter; exports.designTokenTypeFilter = designTokenTypeFilter; exports.errorToString = errorToString; exports.extractTokenTypedData = extractTokenTypedData; exports.figmaFileStructureImportModelToMap = figmaFileStructureImportModelToMap; exports.figmaFileStructureToMap = figmaFileStructureToMap; exports.filterNonNullish = filterNonNullish; exports.forceUnwrapNullish = forceUnwrapNullish; exports.generateShortPersistentId = generateShortPersistentId; exports.getCodenameFromText = getCodenameFromText; exports.getFigmaRenderFormatFileExtension = getFigmaRenderFormatFileExtension; exports.groupBy = groupBy; exports.hasProperty = hasProperty; exports.hasTruthyProperty = hasTruthyProperty; exports.isDataSourceOfType = isDataSourceOfType; exports.isDesignTokenImportModelOfType = isDesignTokenImportModelOfType; exports.isDesignTokenOfType = isDesignTokenOfType; exports.isImportedAsset = isImportedAsset; exports.isImportedDesignToken = isImportedDesignToken; exports.isImportedFigmaComponent = isImportedFigmaComponent; exports.isNotNullish = isNotNullish; exports.isNullish = isNullish; exports.isSlugReserved = isSlugReserved; exports.isTokenType = isTokenType; exports.isValidRoleSeatPair = isValidRoleSeatPair; exports.joinRepeatingSpans = joinRepeatingSpans; exports.mapByUnique = mapByUnique; exports.mapPageBlockItemValuesV2 = mapPageBlockItemValuesV2; exports.nonNullFilter = nonNullFilter; exports.nonNullishFilter = nonNullishFilter; exports.nullishToOptional = nullishToOptional; exports.nullsToUndefined = nullsToUndefined; exports.parseUrl = parseUrl; exports.pickDefined = pickDefined; exports.pickLatestGroupSnapshots = pickLatestGroupSnapshots; exports.pickLatestPageSnapshots = pickLatestPageSnapshots; exports.pickLatestSnapshots = pickLatestSnapshots; exports.promiseWithTimeout = promiseWithTimeout; exports.publishedDocEnvironments = publishedDocEnvironments; exports.recordToMap = recordToMap; exports.removeCommentSpans = removeCommentSpans; exports.sleep = sleep; exports.slugRegex = slugRegex; exports.slugify = slugify; exports.storybookValueFromOldValue = storybookValueFromOldValue; 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.workspaceRoleToDesignSystemRole = workspaceRoleToDesignSystemRole; exports.zodCreateInputOmit = zodCreateInputOmit; exports.zodUpdateInputOmit = zodUpdateInputOmit;
|
|
7614
7629
|
//# sourceMappingURL=index.js.map
|