@supernova-studio/model 1.17.1 → 1.17.3
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 +127 -113
- package/dist/index.d.ts +127 -113
- package/dist/index.js +32 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +92 -89
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -154763,108 +154763,6 @@ declare const ForgeParticipant: z.ZodObject<{
|
|
|
154763
154763
|
}>;
|
|
154764
154764
|
type ForgeParticipant = z.infer<typeof ForgeParticipant>;
|
|
154765
154765
|
|
|
154766
|
-
declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
154767
|
-
type ForgeProjectTag = z.infer<typeof ForgeProjectTag>;
|
|
154768
|
-
declare const ForgeProjectAccessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
154769
|
-
type ForgeProjectAccessMode = z.infer<typeof ForgeProjectAccessMode>;
|
|
154770
|
-
declare const ForgeProject: z.ZodObject<{
|
|
154771
|
-
createdAt: z.ZodDate;
|
|
154772
|
-
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
154773
|
-
fpContextId: z.ZodString;
|
|
154774
|
-
id: z.ZodString;
|
|
154775
|
-
instruction: z.ZodNullable<z.ZodString>;
|
|
154776
|
-
meta: z.ZodObject<{
|
|
154777
|
-
name: z.ZodString;
|
|
154778
|
-
description: z.ZodOptional<z.ZodString>;
|
|
154779
|
-
}, "strip", z.ZodTypeAny, {
|
|
154780
|
-
name: string;
|
|
154781
|
-
description?: string | undefined;
|
|
154782
|
-
}, {
|
|
154783
|
-
name: string;
|
|
154784
|
-
description?: string | undefined;
|
|
154785
|
-
}>;
|
|
154786
|
-
name: z.ZodString;
|
|
154787
|
-
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
154788
|
-
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
154789
|
-
workspaceId: z.ZodString;
|
|
154790
|
-
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
154791
|
-
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
154792
|
-
emoji: z.ZodOptional<z.ZodString>;
|
|
154793
|
-
}, "strip", z.ZodTypeAny, {
|
|
154794
|
-
instruction: string | null;
|
|
154795
|
-
id: string;
|
|
154796
|
-
name: string;
|
|
154797
|
-
createdAt: Date;
|
|
154798
|
-
workspaceId: string;
|
|
154799
|
-
tags: string[];
|
|
154800
|
-
meta: {
|
|
154801
|
-
name: string;
|
|
154802
|
-
description?: string | undefined;
|
|
154803
|
-
};
|
|
154804
|
-
accessMode: "Open" | "InviteOnly";
|
|
154805
|
-
fpContextId: string;
|
|
154806
|
-
updatedAt?: Date | undefined;
|
|
154807
|
-
emoji?: string | undefined;
|
|
154808
|
-
createdByUserId?: string | undefined;
|
|
154809
|
-
isArchived?: boolean | undefined;
|
|
154810
|
-
}, {
|
|
154811
|
-
instruction: string | null;
|
|
154812
|
-
id: string;
|
|
154813
|
-
name: string;
|
|
154814
|
-
createdAt: Date;
|
|
154815
|
-
workspaceId: string;
|
|
154816
|
-
meta: {
|
|
154817
|
-
name: string;
|
|
154818
|
-
description?: string | undefined;
|
|
154819
|
-
};
|
|
154820
|
-
accessMode: "Open" | "InviteOnly";
|
|
154821
|
-
fpContextId: string;
|
|
154822
|
-
updatedAt?: Date | undefined;
|
|
154823
|
-
tags?: string[] | undefined;
|
|
154824
|
-
emoji?: string | undefined;
|
|
154825
|
-
createdByUserId?: string | undefined;
|
|
154826
|
-
isArchived?: boolean | undefined;
|
|
154827
|
-
}>;
|
|
154828
|
-
type ForgeProject = z.infer<typeof ForgeProject>;
|
|
154829
|
-
type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
|
|
154830
|
-
type UpdateForgeProject = Omit<DbUpdate<ForgeProject>, "fpContextId" | "workspaceId" | "createdByUserId">;
|
|
154831
|
-
|
|
154832
|
-
declare const ForgeProjectArtifact: z.ZodObject<{
|
|
154833
|
-
id: z.ZodString;
|
|
154834
|
-
projectId: z.ZodString;
|
|
154835
|
-
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
154836
|
-
title: z.ZodString;
|
|
154837
|
-
previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
154838
|
-
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
154839
|
-
createdAt: z.ZodDate;
|
|
154840
|
-
updatedAt: z.ZodDate;
|
|
154841
|
-
createdByUserId: z.ZodString;
|
|
154842
|
-
sectionId: z.ZodOptional<z.ZodString>;
|
|
154843
|
-
}, "strip", z.ZodTypeAny, {
|
|
154844
|
-
id: string;
|
|
154845
|
-
createdAt: Date;
|
|
154846
|
-
updatedAt: Date;
|
|
154847
|
-
title: string;
|
|
154848
|
-
sortOrder: number;
|
|
154849
|
-
createdByUserId: string;
|
|
154850
|
-
projectId: string;
|
|
154851
|
-
previewUrl?: string | null | undefined;
|
|
154852
|
-
iterationId?: string | null | undefined;
|
|
154853
|
-
sectionId?: string | undefined;
|
|
154854
|
-
}, {
|
|
154855
|
-
id: string;
|
|
154856
|
-
createdAt: Date;
|
|
154857
|
-
updatedAt: Date;
|
|
154858
|
-
title: string;
|
|
154859
|
-
createdByUserId: string;
|
|
154860
|
-
projectId: string;
|
|
154861
|
-
sortOrder?: number | undefined;
|
|
154862
|
-
previewUrl?: string | null | undefined;
|
|
154863
|
-
iterationId?: string | null | undefined;
|
|
154864
|
-
sectionId?: string | undefined;
|
|
154865
|
-
}>;
|
|
154866
|
-
type ForgeProjectArtifact = z.infer<typeof ForgeProjectArtifact>;
|
|
154867
|
-
|
|
154868
154766
|
declare const ForgeProjectArtifactContent: z.ZodObject<{
|
|
154869
154767
|
id: z.ZodString;
|
|
154870
154768
|
artifactId: z.ZodString;
|
|
@@ -156863,6 +156761,42 @@ declare const ForgeProjectArtifactContentData: z.ZodObject<{
|
|
|
156863
156761
|
}>;
|
|
156864
156762
|
type ForgeProjectArtifactContentData = z.infer<typeof ForgeProjectArtifactContentData>;
|
|
156865
156763
|
|
|
156764
|
+
declare const ForgeProjectArtifact: z.ZodObject<{
|
|
156765
|
+
id: z.ZodString;
|
|
156766
|
+
projectId: z.ZodString;
|
|
156767
|
+
iterationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
156768
|
+
title: z.ZodString;
|
|
156769
|
+
previewUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
156770
|
+
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
156771
|
+
createdAt: z.ZodDate;
|
|
156772
|
+
updatedAt: z.ZodDate;
|
|
156773
|
+
createdByUserId: z.ZodString;
|
|
156774
|
+
sectionId: z.ZodOptional<z.ZodString>;
|
|
156775
|
+
}, "strip", z.ZodTypeAny, {
|
|
156776
|
+
id: string;
|
|
156777
|
+
createdAt: Date;
|
|
156778
|
+
updatedAt: Date;
|
|
156779
|
+
title: string;
|
|
156780
|
+
sortOrder: number;
|
|
156781
|
+
createdByUserId: string;
|
|
156782
|
+
projectId: string;
|
|
156783
|
+
previewUrl?: string | null | undefined;
|
|
156784
|
+
iterationId?: string | null | undefined;
|
|
156785
|
+
sectionId?: string | undefined;
|
|
156786
|
+
}, {
|
|
156787
|
+
id: string;
|
|
156788
|
+
createdAt: Date;
|
|
156789
|
+
updatedAt: Date;
|
|
156790
|
+
title: string;
|
|
156791
|
+
createdByUserId: string;
|
|
156792
|
+
projectId: string;
|
|
156793
|
+
sortOrder?: number | undefined;
|
|
156794
|
+
previewUrl?: string | null | undefined;
|
|
156795
|
+
iterationId?: string | null | undefined;
|
|
156796
|
+
sectionId?: string | undefined;
|
|
156797
|
+
}>;
|
|
156798
|
+
type ForgeProjectArtifact = z.infer<typeof ForgeProjectArtifact>;
|
|
156799
|
+
|
|
156866
156800
|
declare const ForgeProjectContextDependency: z.ZodObject<{
|
|
156867
156801
|
packageName: z.ZodString;
|
|
156868
156802
|
type: z.ZodLiteral<"npm">;
|
|
@@ -157085,6 +157019,7 @@ type ForgeProjectContext = z.infer<typeof ForgeProjectContext>;
|
|
|
157085
157019
|
type CreateForgeProjectContext = Omit<DbCreateInputOmit<ForgeProjectContext>, "workspaceId">;
|
|
157086
157020
|
type UpdateForgeProjectContext = Omit<DbUpdate<ForgeProjectContext>, "workspaceId">;
|
|
157087
157021
|
|
|
157022
|
+
declare const ProjectFeatureStatus: z.ZodEnum<["Draft", "ReadyForDevelopment"]>;
|
|
157088
157023
|
declare const ProjectFeature: z.ZodObject<{
|
|
157089
157024
|
createdAt: z.ZodDate;
|
|
157090
157025
|
createdByUserId: z.ZodString;
|
|
@@ -157095,8 +157030,10 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157095
157030
|
projectId: z.ZodString;
|
|
157096
157031
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
157097
157032
|
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
157033
|
+
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
157098
157034
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
157099
157035
|
}, "strip", z.ZodTypeAny, {
|
|
157036
|
+
status: "Draft" | "ReadyForDevelopment";
|
|
157100
157037
|
id: string;
|
|
157101
157038
|
name: string;
|
|
157102
157039
|
createdAt: Date;
|
|
@@ -157105,8 +157042,8 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157105
157042
|
createdByUserId: string;
|
|
157106
157043
|
projectId: string;
|
|
157107
157044
|
updatedAt?: Date | undefined;
|
|
157108
|
-
isArchived?: boolean | undefined;
|
|
157109
157045
|
sectionId?: string | undefined;
|
|
157046
|
+
isArchived?: boolean | undefined;
|
|
157110
157047
|
}, {
|
|
157111
157048
|
id: string;
|
|
157112
157049
|
name: string;
|
|
@@ -157114,10 +157051,11 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157114
157051
|
description: string;
|
|
157115
157052
|
createdByUserId: string;
|
|
157116
157053
|
projectId: string;
|
|
157054
|
+
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
157117
157055
|
updatedAt?: Date | undefined;
|
|
157118
157056
|
sortOrder?: number | undefined;
|
|
157119
|
-
isArchived?: boolean | undefined;
|
|
157120
157057
|
sectionId?: string | undefined;
|
|
157058
|
+
isArchived?: boolean | undefined;
|
|
157121
157059
|
}>;
|
|
157122
157060
|
type ProjectFeature = z.infer<typeof ProjectFeature>;
|
|
157123
157061
|
type CreateProjectFeature = Omit<DbCreateInputOmit<ProjectFeature>, "projectId" | "createdByUserId">;
|
|
@@ -158383,6 +158321,72 @@ type ForgeSection = z.infer<typeof ForgeSection>;
|
|
|
158383
158321
|
declare const ForgeProjectSectionChildType: z.ZodEnum<["Artifact", "Feature"]>;
|
|
158384
158322
|
type ForgeProjectSectionChildType = z.infer<typeof ForgeProjectSectionChildType>;
|
|
158385
158323
|
|
|
158324
|
+
declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
158325
|
+
type ForgeProjectTag = z.infer<typeof ForgeProjectTag>;
|
|
158326
|
+
declare const ForgeProjectAccessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
158327
|
+
type ForgeProjectAccessMode = z.infer<typeof ForgeProjectAccessMode>;
|
|
158328
|
+
declare const ForgeProject: z.ZodObject<{
|
|
158329
|
+
createdAt: z.ZodDate;
|
|
158330
|
+
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
158331
|
+
fpContextId: z.ZodString;
|
|
158332
|
+
id: z.ZodString;
|
|
158333
|
+
instruction: z.ZodNullable<z.ZodString>;
|
|
158334
|
+
meta: z.ZodObject<{
|
|
158335
|
+
name: z.ZodString;
|
|
158336
|
+
description: z.ZodOptional<z.ZodString>;
|
|
158337
|
+
}, "strip", z.ZodTypeAny, {
|
|
158338
|
+
name: string;
|
|
158339
|
+
description?: string | undefined;
|
|
158340
|
+
}, {
|
|
158341
|
+
name: string;
|
|
158342
|
+
description?: string | undefined;
|
|
158343
|
+
}>;
|
|
158344
|
+
name: z.ZodString;
|
|
158345
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
158346
|
+
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
158347
|
+
workspaceId: z.ZodString;
|
|
158348
|
+
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
158349
|
+
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
158350
|
+
emoji: z.ZodOptional<z.ZodString>;
|
|
158351
|
+
}, "strip", z.ZodTypeAny, {
|
|
158352
|
+
instruction: string | null;
|
|
158353
|
+
id: string;
|
|
158354
|
+
name: string;
|
|
158355
|
+
createdAt: Date;
|
|
158356
|
+
workspaceId: string;
|
|
158357
|
+
tags: string[];
|
|
158358
|
+
meta: {
|
|
158359
|
+
name: string;
|
|
158360
|
+
description?: string | undefined;
|
|
158361
|
+
};
|
|
158362
|
+
accessMode: "Open" | "InviteOnly";
|
|
158363
|
+
fpContextId: string;
|
|
158364
|
+
updatedAt?: Date | undefined;
|
|
158365
|
+
emoji?: string | undefined;
|
|
158366
|
+
createdByUserId?: string | undefined;
|
|
158367
|
+
isArchived?: boolean | undefined;
|
|
158368
|
+
}, {
|
|
158369
|
+
instruction: string | null;
|
|
158370
|
+
id: string;
|
|
158371
|
+
name: string;
|
|
158372
|
+
createdAt: Date;
|
|
158373
|
+
workspaceId: string;
|
|
158374
|
+
meta: {
|
|
158375
|
+
name: string;
|
|
158376
|
+
description?: string | undefined;
|
|
158377
|
+
};
|
|
158378
|
+
accessMode: "Open" | "InviteOnly";
|
|
158379
|
+
fpContextId: string;
|
|
158380
|
+
updatedAt?: Date | undefined;
|
|
158381
|
+
tags?: string[] | undefined;
|
|
158382
|
+
emoji?: string | undefined;
|
|
158383
|
+
createdByUserId?: string | undefined;
|
|
158384
|
+
isArchived?: boolean | undefined;
|
|
158385
|
+
}>;
|
|
158386
|
+
type ForgeProject = z.infer<typeof ForgeProject>;
|
|
158387
|
+
type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
|
|
158388
|
+
type UpdateForgeProject = Omit<DbUpdate<ForgeProject>, "fpContextId" | "workspaceId" | "createdByUserId">;
|
|
158389
|
+
|
|
158386
158390
|
declare enum OAuthProviderNames {
|
|
158387
158391
|
Figma = "figma",
|
|
158388
158392
|
Azure = "azure",
|
|
@@ -187611,8 +187615,10 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187611
187615
|
projectId: z.ZodString;
|
|
187612
187616
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
187613
187617
|
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187618
|
+
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187614
187619
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187615
187620
|
}, "strip", z.ZodTypeAny, {
|
|
187621
|
+
status: "Draft" | "ReadyForDevelopment";
|
|
187616
187622
|
id: string;
|
|
187617
187623
|
name: string;
|
|
187618
187624
|
createdAt: Date;
|
|
@@ -187621,8 +187627,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187621
187627
|
createdByUserId: string;
|
|
187622
187628
|
projectId: string;
|
|
187623
187629
|
updatedAt?: Date | undefined;
|
|
187624
|
-
isArchived?: boolean | undefined;
|
|
187625
187630
|
sectionId?: string | undefined;
|
|
187631
|
+
isArchived?: boolean | undefined;
|
|
187626
187632
|
}, {
|
|
187627
187633
|
id: string;
|
|
187628
187634
|
name: string;
|
|
@@ -187630,10 +187636,11 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187630
187636
|
description: string;
|
|
187631
187637
|
createdByUserId: string;
|
|
187632
187638
|
projectId: string;
|
|
187639
|
+
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187633
187640
|
updatedAt?: Date | undefined;
|
|
187634
187641
|
sortOrder?: number | undefined;
|
|
187635
|
-
isArchived?: boolean | undefined;
|
|
187636
187642
|
sectionId?: string | undefined;
|
|
187643
|
+
isArchived?: boolean | undefined;
|
|
187637
187644
|
}>, "many">;
|
|
187638
187645
|
artifactSections: z.ZodArray<z.ZodObject<{
|
|
187639
187646
|
id: z.ZodString;
|
|
@@ -187687,6 +187694,7 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187687
187694
|
}>, "many">;
|
|
187688
187695
|
}, "strip", z.ZodTypeAny, {
|
|
187689
187696
|
features: {
|
|
187697
|
+
status: "Draft" | "ReadyForDevelopment";
|
|
187690
187698
|
id: string;
|
|
187691
187699
|
name: string;
|
|
187692
187700
|
createdAt: Date;
|
|
@@ -187695,8 +187703,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187695
187703
|
createdByUserId: string;
|
|
187696
187704
|
projectId: string;
|
|
187697
187705
|
updatedAt?: Date | undefined;
|
|
187698
|
-
isArchived?: boolean | undefined;
|
|
187699
187706
|
sectionId?: string | undefined;
|
|
187707
|
+
isArchived?: boolean | undefined;
|
|
187700
187708
|
}[];
|
|
187701
187709
|
artifacts: {
|
|
187702
187710
|
id: string;
|
|
@@ -187736,10 +187744,11 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187736
187744
|
description: string;
|
|
187737
187745
|
createdByUserId: string;
|
|
187738
187746
|
projectId: string;
|
|
187747
|
+
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187739
187748
|
updatedAt?: Date | undefined;
|
|
187740
187749
|
sortOrder?: number | undefined;
|
|
187741
|
-
isArchived?: boolean | undefined;
|
|
187742
187750
|
sectionId?: string | undefined;
|
|
187751
|
+
isArchived?: boolean | undefined;
|
|
187743
187752
|
}[];
|
|
187744
187753
|
artifacts: {
|
|
187745
187754
|
id: string;
|
|
@@ -187819,8 +187828,10 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187819
187828
|
projectId: z.ZodString;
|
|
187820
187829
|
sectionId: z.ZodOptional<z.ZodString>;
|
|
187821
187830
|
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187831
|
+
status: z.ZodDefault<z.ZodEnum<["Draft", "ReadyForDevelopment"]>>;
|
|
187822
187832
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
187823
187833
|
}, "strip", z.ZodTypeAny, {
|
|
187834
|
+
status: "Draft" | "ReadyForDevelopment";
|
|
187824
187835
|
id: string;
|
|
187825
187836
|
name: string;
|
|
187826
187837
|
createdAt: Date;
|
|
@@ -187829,8 +187840,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187829
187840
|
createdByUserId: string;
|
|
187830
187841
|
projectId: string;
|
|
187831
187842
|
updatedAt?: Date | undefined;
|
|
187832
|
-
isArchived?: boolean | undefined;
|
|
187833
187843
|
sectionId?: string | undefined;
|
|
187844
|
+
isArchived?: boolean | undefined;
|
|
187834
187845
|
}, {
|
|
187835
187846
|
id: string;
|
|
187836
187847
|
name: string;
|
|
@@ -187838,10 +187849,11 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187838
187849
|
description: string;
|
|
187839
187850
|
createdByUserId: string;
|
|
187840
187851
|
projectId: string;
|
|
187852
|
+
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187841
187853
|
updatedAt?: Date | undefined;
|
|
187842
187854
|
sortOrder?: number | undefined;
|
|
187843
|
-
isArchived?: boolean | undefined;
|
|
187844
187855
|
sectionId?: string | undefined;
|
|
187856
|
+
isArchived?: boolean | undefined;
|
|
187845
187857
|
}>, "many">>;
|
|
187846
187858
|
featureIdsToDelete: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
187847
187859
|
artifactSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -187899,6 +187911,7 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187899
187911
|
executedTransactionIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
187900
187912
|
}, "strip", z.ZodTypeAny, {
|
|
187901
187913
|
features?: {
|
|
187914
|
+
status: "Draft" | "ReadyForDevelopment";
|
|
187902
187915
|
id: string;
|
|
187903
187916
|
name: string;
|
|
187904
187917
|
createdAt: Date;
|
|
@@ -187907,8 +187920,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187907
187920
|
createdByUserId: string;
|
|
187908
187921
|
projectId: string;
|
|
187909
187922
|
updatedAt?: Date | undefined;
|
|
187910
|
-
isArchived?: boolean | undefined;
|
|
187911
187923
|
sectionId?: string | undefined;
|
|
187924
|
+
isArchived?: boolean | undefined;
|
|
187912
187925
|
}[] | undefined;
|
|
187913
187926
|
executedTransactionIds?: string[] | undefined;
|
|
187914
187927
|
artifacts?: {
|
|
@@ -187953,10 +187966,11 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187953
187966
|
description: string;
|
|
187954
187967
|
createdByUserId: string;
|
|
187955
187968
|
projectId: string;
|
|
187969
|
+
status?: "Draft" | "ReadyForDevelopment" | undefined;
|
|
187956
187970
|
updatedAt?: Date | undefined;
|
|
187957
187971
|
sortOrder?: number | undefined;
|
|
187958
|
-
isArchived?: boolean | undefined;
|
|
187959
187972
|
sectionId?: string | undefined;
|
|
187973
|
+
isArchived?: boolean | undefined;
|
|
187960
187974
|
}[] | undefined;
|
|
187961
187975
|
executedTransactionIds?: string[] | undefined;
|
|
187962
187976
|
artifacts?: {
|
|
@@ -189507,4 +189521,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
189507
189521
|
token: PersonalAccessToken;
|
|
189508
189522
|
};
|
|
189509
189523
|
|
|
189510
|
-
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 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, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, 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 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, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, 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 StripeCheckoutInput, type StripeCheckoutOutput, 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 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, 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, 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 };
|
|
189524
|
+
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 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, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, 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 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, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, 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 StripeCheckoutInput, type StripeCheckoutOutput, 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 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, 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, 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 };
|