@supernova-studio/model 1.40.5 → 1.40.7
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 +120 -342
- package/dist/index.d.ts +120 -342
- package/dist/index.js +38 -68
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +411 -441
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -155292,6 +155292,115 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
155292
155292
|
}>;
|
|
155293
155293
|
type ForgeParticipant = z.infer<typeof ForgeParticipant>;
|
|
155294
155294
|
|
|
155295
|
+
declare const ForgeProjectDefaultRole: z.ZodEnum<["Viewer", "Builder"]>;
|
|
155296
|
+
declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
155297
|
+
type ForgeProjectTag = z.infer<typeof ForgeProjectTag>;
|
|
155298
|
+
declare const ForgeProjectAccessMode: z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
155299
|
+
type ForgeProjectAccessMode = z.infer<typeof ForgeProjectAccessMode>;
|
|
155300
|
+
declare const ForgeProject: z.ZodObject<{
|
|
155301
|
+
createdAt: z.ZodDate;
|
|
155302
|
+
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
155303
|
+
fpContextId: z.ZodString;
|
|
155304
|
+
id: z.ZodString;
|
|
155305
|
+
instruction: z.ZodNullable<z.ZodString>;
|
|
155306
|
+
meta: z.ZodObject<{
|
|
155307
|
+
name: z.ZodString;
|
|
155308
|
+
description: z.ZodOptional<z.ZodString>;
|
|
155309
|
+
}, "strip", z.ZodTypeAny, {
|
|
155310
|
+
name: string;
|
|
155311
|
+
description?: string | undefined;
|
|
155312
|
+
}, {
|
|
155313
|
+
name: string;
|
|
155314
|
+
description?: string | undefined;
|
|
155315
|
+
}>;
|
|
155316
|
+
name: z.ZodString;
|
|
155317
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
155318
|
+
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
155319
|
+
workspaceId: z.ZodString;
|
|
155320
|
+
accessMode: z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
155321
|
+
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
155322
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
155323
|
+
emoji: z.ZodOptional<z.ZodString>;
|
|
155324
|
+
}, "strip", z.ZodTypeAny, {
|
|
155325
|
+
instruction: string | null;
|
|
155326
|
+
id: string;
|
|
155327
|
+
name: string;
|
|
155328
|
+
createdAt: Date;
|
|
155329
|
+
tags: string[];
|
|
155330
|
+
workspaceId: string;
|
|
155331
|
+
meta: {
|
|
155332
|
+
name: string;
|
|
155333
|
+
description?: string | undefined;
|
|
155334
|
+
};
|
|
155335
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
155336
|
+
fpContextId: string;
|
|
155337
|
+
defaultRole: "Viewer" | "Builder";
|
|
155338
|
+
updatedAt?: Date | undefined;
|
|
155339
|
+
emoji?: string | undefined;
|
|
155340
|
+
createdByUserId?: string | undefined;
|
|
155341
|
+
isArchived?: boolean | undefined;
|
|
155342
|
+
}, {
|
|
155343
|
+
instruction: string | null;
|
|
155344
|
+
id: string;
|
|
155345
|
+
name: string;
|
|
155346
|
+
createdAt: Date;
|
|
155347
|
+
workspaceId: string;
|
|
155348
|
+
meta: {
|
|
155349
|
+
name: string;
|
|
155350
|
+
description?: string | undefined;
|
|
155351
|
+
};
|
|
155352
|
+
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
155353
|
+
fpContextId: string;
|
|
155354
|
+
updatedAt?: Date | undefined;
|
|
155355
|
+
tags?: string[] | undefined;
|
|
155356
|
+
emoji?: string | undefined;
|
|
155357
|
+
createdByUserId?: string | undefined;
|
|
155358
|
+
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
155359
|
+
isArchived?: boolean | undefined;
|
|
155360
|
+
}>;
|
|
155361
|
+
type ForgeProject = z.infer<typeof ForgeProject>;
|
|
155362
|
+
type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
|
|
155363
|
+
type UpdateForgeProject = Omit<DbUpdate<ForgeProject>, "fpContextId" | "workspaceId" | "createdByUserId">;
|
|
155364
|
+
|
|
155365
|
+
declare const ForgeProjectArtifact: z.ZodObject<{
|
|
155366
|
+
id: z.ZodString;
|
|
155367
|
+
projectId: z.ZodString;
|
|
155368
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
155369
|
+
title: z.ZodString;
|
|
155370
|
+
previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
155371
|
+
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
155372
|
+
createdAt: z.ZodDate;
|
|
155373
|
+
updatedAt: z.ZodDate;
|
|
155374
|
+
createdByUserId: z.ZodString;
|
|
155375
|
+
sectionId: z.ZodOptional<z.ZodString>;
|
|
155376
|
+
threadId: z.ZodOptional<z.ZodString>;
|
|
155377
|
+
}, "strip", z.ZodTypeAny, {
|
|
155378
|
+
id: string;
|
|
155379
|
+
createdAt: Date;
|
|
155380
|
+
updatedAt: Date;
|
|
155381
|
+
title: string;
|
|
155382
|
+
sortOrder: number;
|
|
155383
|
+
createdByUserId: string;
|
|
155384
|
+
projectId: string;
|
|
155385
|
+
threadId?: string | undefined;
|
|
155386
|
+
previewUrl?: string | null | undefined;
|
|
155387
|
+
iterationId?: string | null | undefined;
|
|
155388
|
+
sectionId?: string | undefined;
|
|
155389
|
+
}, {
|
|
155390
|
+
id: string;
|
|
155391
|
+
createdAt: Date;
|
|
155392
|
+
updatedAt: Date;
|
|
155393
|
+
title: string;
|
|
155394
|
+
createdByUserId: string;
|
|
155395
|
+
projectId: string;
|
|
155396
|
+
threadId?: string | undefined;
|
|
155397
|
+
sortOrder?: number | undefined;
|
|
155398
|
+
previewUrl?: string | null | undefined;
|
|
155399
|
+
iterationId?: string | null | undefined;
|
|
155400
|
+
sectionId?: string | undefined;
|
|
155401
|
+
}>;
|
|
155402
|
+
type ForgeProjectArtifact = z.infer<typeof ForgeProjectArtifact>;
|
|
155403
|
+
|
|
155295
155404
|
declare const ForgeProjectArtifactContent: z.ZodObject<{
|
|
155296
155405
|
id: z.ZodString;
|
|
155297
155406
|
artifactId: z.ZodString;
|
|
@@ -157290,267 +157399,6 @@ declare const ForgeProjectArtifactContentData: z.ZodObject<{
|
|
|
157290
157399
|
}>;
|
|
157291
157400
|
type ForgeProjectArtifactContentData = z.infer<typeof ForgeProjectArtifactContentData>;
|
|
157292
157401
|
|
|
157293
|
-
declare const ForgeProjectArtifact: z.ZodObject<{
|
|
157294
|
-
id: z.ZodString;
|
|
157295
|
-
projectId: z.ZodString;
|
|
157296
|
-
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
157297
|
-
title: z.ZodString;
|
|
157298
|
-
previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
157299
|
-
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
157300
|
-
createdAt: z.ZodDate;
|
|
157301
|
-
updatedAt: z.ZodDate;
|
|
157302
|
-
createdByUserId: z.ZodString;
|
|
157303
|
-
sectionId: z.ZodOptional<z.ZodString>;
|
|
157304
|
-
threadId: z.ZodOptional<z.ZodString>;
|
|
157305
|
-
}, "strip", z.ZodTypeAny, {
|
|
157306
|
-
id: string;
|
|
157307
|
-
createdAt: Date;
|
|
157308
|
-
updatedAt: Date;
|
|
157309
|
-
title: string;
|
|
157310
|
-
sortOrder: number;
|
|
157311
|
-
createdByUserId: string;
|
|
157312
|
-
projectId: string;
|
|
157313
|
-
threadId?: string | undefined;
|
|
157314
|
-
previewUrl?: string | null | undefined;
|
|
157315
|
-
iterationId?: string | null | undefined;
|
|
157316
|
-
sectionId?: string | undefined;
|
|
157317
|
-
}, {
|
|
157318
|
-
id: string;
|
|
157319
|
-
createdAt: Date;
|
|
157320
|
-
updatedAt: Date;
|
|
157321
|
-
title: string;
|
|
157322
|
-
createdByUserId: string;
|
|
157323
|
-
projectId: string;
|
|
157324
|
-
threadId?: string | undefined;
|
|
157325
|
-
sortOrder?: number | undefined;
|
|
157326
|
-
previewUrl?: string | null | undefined;
|
|
157327
|
-
iterationId?: string | null | undefined;
|
|
157328
|
-
sectionId?: string | undefined;
|
|
157329
|
-
}>;
|
|
157330
|
-
type ForgeProjectArtifact = z.infer<typeof ForgeProjectArtifact>;
|
|
157331
|
-
|
|
157332
|
-
declare const ForgeProjectContextDependency: z.ZodObject<{
|
|
157333
|
-
packageName: z.ZodString;
|
|
157334
|
-
type: z.ZodLiteral<"npm">;
|
|
157335
|
-
version: z.ZodDefault<z.ZodString>;
|
|
157336
|
-
}, "strip", z.ZodTypeAny, {
|
|
157337
|
-
type: "npm";
|
|
157338
|
-
version: string;
|
|
157339
|
-
packageName: string;
|
|
157340
|
-
}, {
|
|
157341
|
-
type: "npm";
|
|
157342
|
-
packageName: string;
|
|
157343
|
-
version?: string | undefined;
|
|
157344
|
-
}>;
|
|
157345
|
-
type ForgeProjectContextDependency = z.infer<typeof ForgeProjectContextDependency>;
|
|
157346
|
-
declare const ForgeProjectContextTailwindConfig: z.ZodObject<{
|
|
157347
|
-
content: z.ZodString;
|
|
157348
|
-
version: z.ZodString;
|
|
157349
|
-
}, "strip", z.ZodTypeAny, {
|
|
157350
|
-
version: string;
|
|
157351
|
-
content: string;
|
|
157352
|
-
}, {
|
|
157353
|
-
version: string;
|
|
157354
|
-
content: string;
|
|
157355
|
-
}>;
|
|
157356
|
-
type ForgeProjectContextTailwindConfig = z.infer<typeof ForgeProjectContextTailwindConfig>;
|
|
157357
|
-
declare const ForgeProjectContext: z.ZodObject<{
|
|
157358
|
-
definition: z.ZodString;
|
|
157359
|
-
dependencies: z.ZodArray<z.ZodObject<{
|
|
157360
|
-
packageName: z.ZodString;
|
|
157361
|
-
type: z.ZodLiteral<"npm">;
|
|
157362
|
-
version: z.ZodDefault<z.ZodString>;
|
|
157363
|
-
}, "strip", z.ZodTypeAny, {
|
|
157364
|
-
type: "npm";
|
|
157365
|
-
version: string;
|
|
157366
|
-
packageName: string;
|
|
157367
|
-
}, {
|
|
157368
|
-
type: "npm";
|
|
157369
|
-
packageName: string;
|
|
157370
|
-
version?: string | undefined;
|
|
157371
|
-
}>, "many">;
|
|
157372
|
-
designSystemId: z.ZodString;
|
|
157373
|
-
id: z.ZodString;
|
|
157374
|
-
meta: z.ZodObject<{
|
|
157375
|
-
name: z.ZodString;
|
|
157376
|
-
description: z.ZodOptional<z.ZodString>;
|
|
157377
|
-
}, "strip", z.ZodTypeAny, {
|
|
157378
|
-
name: string;
|
|
157379
|
-
description?: string | undefined;
|
|
157380
|
-
}, {
|
|
157381
|
-
name: string;
|
|
157382
|
-
description?: string | undefined;
|
|
157383
|
-
}>;
|
|
157384
|
-
name: z.ZodString;
|
|
157385
|
-
npmProxySettings: z.ZodIntersection<z.ZodObject<{
|
|
157386
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
157387
|
-
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
157388
|
-
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
157389
|
-
bypassProxy: z.ZodDefault<z.ZodBoolean>;
|
|
157390
|
-
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
157391
|
-
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
157392
|
-
}, "strip", z.ZodTypeAny, {
|
|
157393
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
157394
|
-
enabledScopes: string[];
|
|
157395
|
-
bypassProxy: boolean;
|
|
157396
|
-
customRegistryUrl?: string | undefined;
|
|
157397
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
157398
|
-
npmProxyVersion?: number | undefined;
|
|
157399
|
-
}, {
|
|
157400
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
157401
|
-
enabledScopes: string[];
|
|
157402
|
-
customRegistryUrl?: string | undefined;
|
|
157403
|
-
bypassProxy?: boolean | undefined;
|
|
157404
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
157405
|
-
npmProxyVersion?: number | undefined;
|
|
157406
|
-
}>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
|
|
157407
|
-
authType: z.ZodLiteral<"Basic">;
|
|
157408
|
-
username: z.ZodString;
|
|
157409
|
-
password: z.ZodString;
|
|
157410
|
-
}, "strip", z.ZodTypeAny, {
|
|
157411
|
-
password: string;
|
|
157412
|
-
username: string;
|
|
157413
|
-
authType: "Basic";
|
|
157414
|
-
}, {
|
|
157415
|
-
password: string;
|
|
157416
|
-
username: string;
|
|
157417
|
-
authType: "Basic";
|
|
157418
|
-
}>, z.ZodObject<{
|
|
157419
|
-
authType: z.ZodLiteral<"Bearer">;
|
|
157420
|
-
accessToken: z.ZodString;
|
|
157421
|
-
}, "strip", z.ZodTypeAny, {
|
|
157422
|
-
accessToken: string;
|
|
157423
|
-
authType: "Bearer";
|
|
157424
|
-
}, {
|
|
157425
|
-
accessToken: string;
|
|
157426
|
-
authType: "Bearer";
|
|
157427
|
-
}>, z.ZodObject<{
|
|
157428
|
-
authType: z.ZodLiteral<"None">;
|
|
157429
|
-
}, "strip", z.ZodTypeAny, {
|
|
157430
|
-
authType: "None";
|
|
157431
|
-
}, {
|
|
157432
|
-
authType: "None";
|
|
157433
|
-
}>, z.ZodObject<{
|
|
157434
|
-
authType: z.ZodLiteral<"Custom">;
|
|
157435
|
-
authHeaderName: z.ZodString;
|
|
157436
|
-
authHeaderValue: z.ZodString;
|
|
157437
|
-
}, "strip", z.ZodTypeAny, {
|
|
157438
|
-
authType: "Custom";
|
|
157439
|
-
authHeaderName: string;
|
|
157440
|
-
authHeaderValue: string;
|
|
157441
|
-
}, {
|
|
157442
|
-
authType: "Custom";
|
|
157443
|
-
authHeaderName: string;
|
|
157444
|
-
authHeaderValue: string;
|
|
157445
|
-
}>]>>;
|
|
157446
|
-
platform: z.ZodEnum<["React", "Vue", "Angular"]>;
|
|
157447
|
-
styling: z.ZodEnum<["CSS", "Tailwind"]>;
|
|
157448
|
-
tailwindConfig: z.ZodOptional<z.ZodObject<{
|
|
157449
|
-
content: z.ZodString;
|
|
157450
|
-
version: z.ZodString;
|
|
157451
|
-
}, "strip", z.ZodTypeAny, {
|
|
157452
|
-
version: string;
|
|
157453
|
-
content: string;
|
|
157454
|
-
}, {
|
|
157455
|
-
version: string;
|
|
157456
|
-
content: string;
|
|
157457
|
-
}>>;
|
|
157458
|
-
createdAt: z.ZodDate;
|
|
157459
|
-
updatedAt: z.ZodDate;
|
|
157460
|
-
workspaceId: z.ZodString;
|
|
157461
|
-
}, "strip", z.ZodTypeAny, {
|
|
157462
|
-
id: string;
|
|
157463
|
-
name: string;
|
|
157464
|
-
createdAt: Date;
|
|
157465
|
-
updatedAt: Date;
|
|
157466
|
-
workspaceId: string;
|
|
157467
|
-
designSystemId: string;
|
|
157468
|
-
dependencies: {
|
|
157469
|
-
type: "npm";
|
|
157470
|
-
version: string;
|
|
157471
|
-
packageName: string;
|
|
157472
|
-
}[];
|
|
157473
|
-
meta: {
|
|
157474
|
-
name: string;
|
|
157475
|
-
description?: string | undefined;
|
|
157476
|
-
};
|
|
157477
|
-
definition: string;
|
|
157478
|
-
npmProxySettings: {
|
|
157479
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
157480
|
-
enabledScopes: string[];
|
|
157481
|
-
bypassProxy: boolean;
|
|
157482
|
-
customRegistryUrl?: string | undefined;
|
|
157483
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
157484
|
-
npmProxyVersion?: number | undefined;
|
|
157485
|
-
} & ({
|
|
157486
|
-
password: string;
|
|
157487
|
-
username: string;
|
|
157488
|
-
authType: "Basic";
|
|
157489
|
-
} | {
|
|
157490
|
-
accessToken: string;
|
|
157491
|
-
authType: "Bearer";
|
|
157492
|
-
} | {
|
|
157493
|
-
authType: "None";
|
|
157494
|
-
} | {
|
|
157495
|
-
authType: "Custom";
|
|
157496
|
-
authHeaderName: string;
|
|
157497
|
-
authHeaderValue: string;
|
|
157498
|
-
});
|
|
157499
|
-
platform: "Angular" | "Vue" | "React";
|
|
157500
|
-
styling: "CSS" | "Tailwind";
|
|
157501
|
-
tailwindConfig?: {
|
|
157502
|
-
version: string;
|
|
157503
|
-
content: string;
|
|
157504
|
-
} | undefined;
|
|
157505
|
-
}, {
|
|
157506
|
-
id: string;
|
|
157507
|
-
name: string;
|
|
157508
|
-
createdAt: Date;
|
|
157509
|
-
updatedAt: Date;
|
|
157510
|
-
workspaceId: string;
|
|
157511
|
-
designSystemId: string;
|
|
157512
|
-
dependencies: {
|
|
157513
|
-
type: "npm";
|
|
157514
|
-
packageName: string;
|
|
157515
|
-
version?: string | undefined;
|
|
157516
|
-
}[];
|
|
157517
|
-
meta: {
|
|
157518
|
-
name: string;
|
|
157519
|
-
description?: string | undefined;
|
|
157520
|
-
};
|
|
157521
|
-
definition: string;
|
|
157522
|
-
npmProxySettings: {
|
|
157523
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
157524
|
-
enabledScopes: string[];
|
|
157525
|
-
customRegistryUrl?: string | undefined;
|
|
157526
|
-
bypassProxy?: boolean | undefined;
|
|
157527
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
157528
|
-
npmProxyVersion?: number | undefined;
|
|
157529
|
-
} & ({
|
|
157530
|
-
password: string;
|
|
157531
|
-
username: string;
|
|
157532
|
-
authType: "Basic";
|
|
157533
|
-
} | {
|
|
157534
|
-
accessToken: string;
|
|
157535
|
-
authType: "Bearer";
|
|
157536
|
-
} | {
|
|
157537
|
-
authType: "None";
|
|
157538
|
-
} | {
|
|
157539
|
-
authType: "Custom";
|
|
157540
|
-
authHeaderName: string;
|
|
157541
|
-
authHeaderValue: string;
|
|
157542
|
-
});
|
|
157543
|
-
platform: "Angular" | "Vue" | "React";
|
|
157544
|
-
styling: "CSS" | "Tailwind";
|
|
157545
|
-
tailwindConfig?: {
|
|
157546
|
-
version: string;
|
|
157547
|
-
content: string;
|
|
157548
|
-
} | undefined;
|
|
157549
|
-
}>;
|
|
157550
|
-
type ForgeProjectContext = z.infer<typeof ForgeProjectContext>;
|
|
157551
|
-
type CreateForgeProjectContext = Omit<DbCreateInputOmit<ForgeProjectContext>, "workspaceId">;
|
|
157552
|
-
type UpdateForgeProjectContext = Omit<DbUpdate<ForgeProjectContext>, "workspaceId">;
|
|
157553
|
-
|
|
157554
157402
|
declare const ProjectFeatureStatus: z.ZodEnum<["Draft", "ReadyForDevelopment"]>;
|
|
157555
157403
|
declare const ProjectFeature: z.ZodObject<{
|
|
157556
157404
|
createdAt: z.ZodDate;
|
|
@@ -157583,8 +157431,8 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157583
157431
|
numberOfBookmarkedIterations: number;
|
|
157584
157432
|
updatedAt?: Date | undefined;
|
|
157585
157433
|
threadId?: string | undefined;
|
|
157586
|
-
sectionId?: string | undefined;
|
|
157587
157434
|
isArchived?: boolean | undefined;
|
|
157435
|
+
sectionId?: string | undefined;
|
|
157588
157436
|
e2bTemplateId?: string | null | undefined;
|
|
157589
157437
|
e2bIterationId?: string | null | undefined;
|
|
157590
157438
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -157599,8 +157447,8 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157599
157447
|
updatedAt?: Date | undefined;
|
|
157600
157448
|
threadId?: string | undefined;
|
|
157601
157449
|
sortOrder?: number | undefined;
|
|
157602
|
-
sectionId?: string | undefined;
|
|
157603
157450
|
isArchived?: boolean | undefined;
|
|
157451
|
+
sectionId?: string | undefined;
|
|
157604
157452
|
e2bTemplateId?: string | null | undefined;
|
|
157605
157453
|
e2bIterationId?: string | null | undefined;
|
|
157606
157454
|
numberOfIterations?: number | undefined;
|
|
@@ -158901,76 +158749,6 @@ type ForgeSection = z.infer<typeof ForgeSection>;
|
|
|
158901
158749
|
declare const ForgeProjectSectionChildType: z.ZodEnum<["Artifact", "Feature"]>;
|
|
158902
158750
|
type ForgeProjectSectionChildType = z.infer<typeof ForgeProjectSectionChildType>;
|
|
158903
158751
|
|
|
158904
|
-
declare const ForgeProjectDefaultRole: z.ZodEnum<["Viewer", "Builder"]>;
|
|
158905
|
-
declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
158906
|
-
type ForgeProjectTag = z.infer<typeof ForgeProjectTag>;
|
|
158907
|
-
declare const ForgeProjectAccessMode: z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
158908
|
-
type ForgeProjectAccessMode = z.infer<typeof ForgeProjectAccessMode>;
|
|
158909
|
-
declare const ForgeProject: z.ZodObject<{
|
|
158910
|
-
createdAt: z.ZodDate;
|
|
158911
|
-
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
158912
|
-
fpContextId: z.ZodString;
|
|
158913
|
-
id: z.ZodString;
|
|
158914
|
-
instruction: z.ZodNullable<z.ZodString>;
|
|
158915
|
-
meta: z.ZodObject<{
|
|
158916
|
-
name: z.ZodString;
|
|
158917
|
-
description: z.ZodOptional<z.ZodString>;
|
|
158918
|
-
}, "strip", z.ZodTypeAny, {
|
|
158919
|
-
name: string;
|
|
158920
|
-
description?: string | undefined;
|
|
158921
|
-
}, {
|
|
158922
|
-
name: string;
|
|
158923
|
-
description?: string | undefined;
|
|
158924
|
-
}>;
|
|
158925
|
-
name: z.ZodString;
|
|
158926
|
-
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
158927
|
-
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
158928
|
-
workspaceId: z.ZodString;
|
|
158929
|
-
accessMode: z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>;
|
|
158930
|
-
defaultRole: z.ZodDefault<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
158931
|
-
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
158932
|
-
emoji: z.ZodOptional<z.ZodString>;
|
|
158933
|
-
}, "strip", z.ZodTypeAny, {
|
|
158934
|
-
instruction: string | null;
|
|
158935
|
-
id: string;
|
|
158936
|
-
name: string;
|
|
158937
|
-
createdAt: Date;
|
|
158938
|
-
tags: string[];
|
|
158939
|
-
workspaceId: string;
|
|
158940
|
-
meta: {
|
|
158941
|
-
name: string;
|
|
158942
|
-
description?: string | undefined;
|
|
158943
|
-
};
|
|
158944
|
-
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
158945
|
-
fpContextId: string;
|
|
158946
|
-
defaultRole: "Viewer" | "Builder";
|
|
158947
|
-
updatedAt?: Date | undefined;
|
|
158948
|
-
emoji?: string | undefined;
|
|
158949
|
-
createdByUserId?: string | undefined;
|
|
158950
|
-
isArchived?: boolean | undefined;
|
|
158951
|
-
}, {
|
|
158952
|
-
instruction: string | null;
|
|
158953
|
-
id: string;
|
|
158954
|
-
name: string;
|
|
158955
|
-
createdAt: Date;
|
|
158956
|
-
workspaceId: string;
|
|
158957
|
-
meta: {
|
|
158958
|
-
name: string;
|
|
158959
|
-
description?: string | undefined;
|
|
158960
|
-
};
|
|
158961
|
-
accessMode: "Open" | "InviteOnly" | "Unlisted";
|
|
158962
|
-
fpContextId: string;
|
|
158963
|
-
updatedAt?: Date | undefined;
|
|
158964
|
-
tags?: string[] | undefined;
|
|
158965
|
-
emoji?: string | undefined;
|
|
158966
|
-
createdByUserId?: string | undefined;
|
|
158967
|
-
isArchived?: boolean | undefined;
|
|
158968
|
-
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
158969
|
-
}>;
|
|
158970
|
-
type ForgeProject = z.infer<typeof ForgeProject>;
|
|
158971
|
-
type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
|
|
158972
|
-
type UpdateForgeProject = Omit<DbUpdate<ForgeProject>, "fpContextId" | "workspaceId" | "createdByUserId">;
|
|
158973
|
-
|
|
158974
158752
|
declare enum OAuthProviderNames {
|
|
158975
158753
|
Figma = "figma",
|
|
158976
158754
|
Azure = "azure",
|
|
@@ -188250,8 +188028,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188250
188028
|
numberOfBookmarkedIterations: number;
|
|
188251
188029
|
updatedAt?: Date | undefined;
|
|
188252
188030
|
threadId?: string | undefined;
|
|
188253
|
-
sectionId?: string | undefined;
|
|
188254
188031
|
isArchived?: boolean | undefined;
|
|
188032
|
+
sectionId?: string | undefined;
|
|
188255
188033
|
e2bTemplateId?: string | null | undefined;
|
|
188256
188034
|
e2bIterationId?: string | null | undefined;
|
|
188257
188035
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188266,8 +188044,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188266
188044
|
updatedAt?: Date | undefined;
|
|
188267
188045
|
threadId?: string | undefined;
|
|
188268
188046
|
sortOrder?: number | undefined;
|
|
188269
|
-
sectionId?: string | undefined;
|
|
188270
188047
|
isArchived?: boolean | undefined;
|
|
188048
|
+
sectionId?: string | undefined;
|
|
188271
188049
|
e2bTemplateId?: string | null | undefined;
|
|
188272
188050
|
e2bIterationId?: string | null | undefined;
|
|
188273
188051
|
numberOfIterations?: number | undefined;
|
|
@@ -188338,8 +188116,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188338
188116
|
numberOfBookmarkedIterations: number;
|
|
188339
188117
|
updatedAt?: Date | undefined;
|
|
188340
188118
|
threadId?: string | undefined;
|
|
188341
|
-
sectionId?: string | undefined;
|
|
188342
188119
|
isArchived?: boolean | undefined;
|
|
188120
|
+
sectionId?: string | undefined;
|
|
188343
188121
|
e2bTemplateId?: string | null | undefined;
|
|
188344
188122
|
e2bIterationId?: string | null | undefined;
|
|
188345
188123
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188387,8 +188165,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
188387
188165
|
updatedAt?: Date | undefined;
|
|
188388
188166
|
threadId?: string | undefined;
|
|
188389
188167
|
sortOrder?: number | undefined;
|
|
188390
|
-
sectionId?: string | undefined;
|
|
188391
188168
|
isArchived?: boolean | undefined;
|
|
188169
|
+
sectionId?: string | undefined;
|
|
188392
188170
|
e2bTemplateId?: string | null | undefined;
|
|
188393
188171
|
e2bIterationId?: string | null | undefined;
|
|
188394
188172
|
numberOfIterations?: number | undefined;
|
|
@@ -188498,8 +188276,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188498
188276
|
numberOfBookmarkedIterations: number;
|
|
188499
188277
|
updatedAt?: Date | undefined;
|
|
188500
188278
|
threadId?: string | undefined;
|
|
188501
|
-
sectionId?: string | undefined;
|
|
188502
188279
|
isArchived?: boolean | undefined;
|
|
188280
|
+
sectionId?: string | undefined;
|
|
188503
188281
|
e2bTemplateId?: string | null | undefined;
|
|
188504
188282
|
e2bIterationId?: string | null | undefined;
|
|
188505
188283
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188514,8 +188292,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188514
188292
|
updatedAt?: Date | undefined;
|
|
188515
188293
|
threadId?: string | undefined;
|
|
188516
188294
|
sortOrder?: number | undefined;
|
|
188517
|
-
sectionId?: string | undefined;
|
|
188518
188295
|
isArchived?: boolean | undefined;
|
|
188296
|
+
sectionId?: string | undefined;
|
|
188519
188297
|
e2bTemplateId?: string | null | undefined;
|
|
188520
188298
|
e2bIterationId?: string | null | undefined;
|
|
188521
188299
|
numberOfIterations?: number | undefined;
|
|
@@ -188590,8 +188368,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188590
188368
|
numberOfBookmarkedIterations: number;
|
|
188591
188369
|
updatedAt?: Date | undefined;
|
|
188592
188370
|
threadId?: string | undefined;
|
|
188593
|
-
sectionId?: string | undefined;
|
|
188594
188371
|
isArchived?: boolean | undefined;
|
|
188372
|
+
sectionId?: string | undefined;
|
|
188595
188373
|
e2bTemplateId?: string | null | undefined;
|
|
188596
188374
|
e2bIterationId?: string | null | undefined;
|
|
188597
188375
|
lastReplyTimestamp?: Date | undefined;
|
|
@@ -188644,8 +188422,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
188644
188422
|
updatedAt?: Date | undefined;
|
|
188645
188423
|
threadId?: string | undefined;
|
|
188646
188424
|
sortOrder?: number | undefined;
|
|
188647
|
-
sectionId?: string | undefined;
|
|
188648
188425
|
isArchived?: boolean | undefined;
|
|
188426
|
+
sectionId?: string | undefined;
|
|
188649
188427
|
e2bTemplateId?: string | null | undefined;
|
|
188650
188428
|
e2bIterationId?: string | null | undefined;
|
|
188651
188429
|
numberOfIterations?: number | undefined;
|
|
@@ -190215,4 +189993,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
190215
189993
|
token: PersonalAccessToken;
|
|
190216
189994
|
};
|
|
190217
189995
|
|
|
190218
|
-
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectDefaultRole, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
189996
|
+
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectDefaultRole, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeProjectTag, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|