@supernova-studio/model 1.17.0 → 1.17.1
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 +207 -113
- package/dist/index.d.ts +207 -113
- package/dist/index.js +49 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +419 -399
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -154763,6 +154763,108 @@ 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
|
+
|
|
154766
154868
|
declare const ForgeProjectArtifactContent: z.ZodObject<{
|
|
154767
154869
|
id: z.ZodString;
|
|
154768
154870
|
artifactId: z.ZodString;
|
|
@@ -156761,42 +156863,6 @@ declare const ForgeProjectArtifactContentData: z.ZodObject<{
|
|
|
156761
156863
|
}>;
|
|
156762
156864
|
type ForgeProjectArtifactContentData = z.infer<typeof ForgeProjectArtifactContentData>;
|
|
156763
156865
|
|
|
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
|
-
|
|
156800
156866
|
declare const ForgeProjectContextDependency: z.ZodObject<{
|
|
156801
156867
|
packageName: z.ZodString;
|
|
156802
156868
|
type: z.ZodLiteral<"npm">;
|
|
@@ -157039,8 +157105,8 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157039
157105
|
createdByUserId: string;
|
|
157040
157106
|
projectId: string;
|
|
157041
157107
|
updatedAt?: Date | undefined;
|
|
157042
|
-
sectionId?: string | undefined;
|
|
157043
157108
|
isArchived?: boolean | undefined;
|
|
157109
|
+
sectionId?: string | undefined;
|
|
157044
157110
|
}, {
|
|
157045
157111
|
id: string;
|
|
157046
157112
|
name: string;
|
|
@@ -157050,13 +157116,107 @@ declare const ProjectFeature: z.ZodObject<{
|
|
|
157050
157116
|
projectId: string;
|
|
157051
157117
|
updatedAt?: Date | undefined;
|
|
157052
157118
|
sortOrder?: number | undefined;
|
|
157053
|
-
sectionId?: string | undefined;
|
|
157054
157119
|
isArchived?: boolean | undefined;
|
|
157120
|
+
sectionId?: string | undefined;
|
|
157055
157121
|
}>;
|
|
157056
157122
|
type ProjectFeature = z.infer<typeof ProjectFeature>;
|
|
157057
157123
|
type CreateProjectFeature = Omit<DbCreateInputOmit<ProjectFeature>, "projectId" | "createdByUserId">;
|
|
157058
157124
|
type UpdateProjectFeature = DbUpdate<CreateProjectFeature & Pick<ProjectFeature, "id">>;
|
|
157059
157125
|
|
|
157126
|
+
declare const ForgeProjectFigmaNode: z.ZodObject<{
|
|
157127
|
+
id: z.ZodString;
|
|
157128
|
+
projectId: z.ZodString;
|
|
157129
|
+
sceneNodeId: z.ZodString;
|
|
157130
|
+
format: z.ZodEnum<["Png", "Svg"]>;
|
|
157131
|
+
scale: z.ZodOptional<z.ZodNumber>;
|
|
157132
|
+
renderState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
157133
|
+
renderedImage: z.ZodOptional<z.ZodObject<{
|
|
157134
|
+
resourceId: z.ZodString;
|
|
157135
|
+
format: z.ZodEnum<["Png", "Svg"]>;
|
|
157136
|
+
scale: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
157137
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
157138
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>;
|
|
157139
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157140
|
+
originKey: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
157141
|
+
}, "strip", z.ZodTypeAny, {
|
|
157142
|
+
resourceId: string;
|
|
157143
|
+
format: "Png" | "Svg";
|
|
157144
|
+
url?: string | undefined;
|
|
157145
|
+
width?: number | undefined;
|
|
157146
|
+
height?: number | undefined;
|
|
157147
|
+
originKey?: string | undefined;
|
|
157148
|
+
scale?: number | undefined;
|
|
157149
|
+
}, {
|
|
157150
|
+
resourceId: string;
|
|
157151
|
+
format: "Png" | "Svg";
|
|
157152
|
+
url?: string | null | undefined;
|
|
157153
|
+
width?: number | null | undefined;
|
|
157154
|
+
height?: number | null | undefined;
|
|
157155
|
+
originKey?: string | null | undefined;
|
|
157156
|
+
scale?: number | null | undefined;
|
|
157157
|
+
}>>;
|
|
157158
|
+
renderError: z.ZodOptional<z.ZodObject<{
|
|
157159
|
+
type: z.ZodEnum<["MissingIntegration", "NodeNotFound", "RenderError"]>;
|
|
157160
|
+
}, "strip", z.ZodTypeAny, {
|
|
157161
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
157162
|
+
}, {
|
|
157163
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
157164
|
+
}>>;
|
|
157165
|
+
}, "strip", z.ZodTypeAny, {
|
|
157166
|
+
id: string;
|
|
157167
|
+
format: "Png" | "Svg";
|
|
157168
|
+
sceneNodeId: string;
|
|
157169
|
+
renderState: "InProgress" | "Success" | "Failed";
|
|
157170
|
+
projectId: string;
|
|
157171
|
+
scale?: number | undefined;
|
|
157172
|
+
renderedImage?: {
|
|
157173
|
+
resourceId: string;
|
|
157174
|
+
format: "Png" | "Svg";
|
|
157175
|
+
url?: string | undefined;
|
|
157176
|
+
width?: number | undefined;
|
|
157177
|
+
height?: number | undefined;
|
|
157178
|
+
originKey?: string | undefined;
|
|
157179
|
+
scale?: number | undefined;
|
|
157180
|
+
} | undefined;
|
|
157181
|
+
renderError?: {
|
|
157182
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
157183
|
+
} | undefined;
|
|
157184
|
+
}, {
|
|
157185
|
+
id: string;
|
|
157186
|
+
format: "Png" | "Svg";
|
|
157187
|
+
sceneNodeId: string;
|
|
157188
|
+
renderState: "InProgress" | "Success" | "Failed";
|
|
157189
|
+
projectId: string;
|
|
157190
|
+
scale?: number | undefined;
|
|
157191
|
+
renderedImage?: {
|
|
157192
|
+
resourceId: string;
|
|
157193
|
+
format: "Png" | "Svg";
|
|
157194
|
+
url?: string | null | undefined;
|
|
157195
|
+
width?: number | null | undefined;
|
|
157196
|
+
height?: number | null | undefined;
|
|
157197
|
+
originKey?: string | null | undefined;
|
|
157198
|
+
scale?: number | null | undefined;
|
|
157199
|
+
} | undefined;
|
|
157200
|
+
renderError?: {
|
|
157201
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
157202
|
+
} | undefined;
|
|
157203
|
+
}>;
|
|
157204
|
+
type ForgeProjectFigmaNode = z.infer<typeof ForgeProjectFigmaNode>;
|
|
157205
|
+
declare const ForgeProjectFigmaNodeRenderInput: z.ZodObject<{
|
|
157206
|
+
url: z.ZodString;
|
|
157207
|
+
format: z.ZodEnum<["Png", "Svg"]>;
|
|
157208
|
+
scale: z.ZodNumber;
|
|
157209
|
+
}, "strip", z.ZodTypeAny, {
|
|
157210
|
+
url: string;
|
|
157211
|
+
format: "Png" | "Svg";
|
|
157212
|
+
scale: number;
|
|
157213
|
+
}, {
|
|
157214
|
+
url: string;
|
|
157215
|
+
format: "Png" | "Svg";
|
|
157216
|
+
scale: number;
|
|
157217
|
+
}>;
|
|
157218
|
+
type ForgeProjectFigmaNodeRenderInput = z.infer<typeof ForgeProjectFigmaNodeRenderInput>;
|
|
157219
|
+
|
|
157060
157220
|
declare const ForgeProjectInvitation: z.ZodObject<{
|
|
157061
157221
|
email: z.ZodString;
|
|
157062
157222
|
forgeProjectId: z.ZodString;
|
|
@@ -158223,72 +158383,6 @@ type ForgeSection = z.infer<typeof ForgeSection>;
|
|
|
158223
158383
|
declare const ForgeProjectSectionChildType: z.ZodEnum<["Artifact", "Feature"]>;
|
|
158224
158384
|
type ForgeProjectSectionChildType = z.infer<typeof ForgeProjectSectionChildType>;
|
|
158225
158385
|
|
|
158226
|
-
declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
158227
|
-
type ForgeProjectTag = z.infer<typeof ForgeProjectTag>;
|
|
158228
|
-
declare const ForgeProjectAccessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
158229
|
-
type ForgeProjectAccessMode = z.infer<typeof ForgeProjectAccessMode>;
|
|
158230
|
-
declare const ForgeProject: z.ZodObject<{
|
|
158231
|
-
createdAt: z.ZodDate;
|
|
158232
|
-
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
158233
|
-
fpContextId: z.ZodString;
|
|
158234
|
-
id: z.ZodString;
|
|
158235
|
-
instruction: z.ZodNullable<z.ZodString>;
|
|
158236
|
-
meta: z.ZodObject<{
|
|
158237
|
-
name: z.ZodString;
|
|
158238
|
-
description: z.ZodOptional<z.ZodString>;
|
|
158239
|
-
}, "strip", z.ZodTypeAny, {
|
|
158240
|
-
name: string;
|
|
158241
|
-
description?: string | undefined;
|
|
158242
|
-
}, {
|
|
158243
|
-
name: string;
|
|
158244
|
-
description?: string | undefined;
|
|
158245
|
-
}>;
|
|
158246
|
-
name: z.ZodString;
|
|
158247
|
-
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
158248
|
-
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
158249
|
-
workspaceId: z.ZodString;
|
|
158250
|
-
accessMode: z.ZodEnum<["InviteOnly", "Open"]>;
|
|
158251
|
-
isArchived: z.ZodOptional<z.ZodBoolean>;
|
|
158252
|
-
emoji: z.ZodOptional<z.ZodString>;
|
|
158253
|
-
}, "strip", z.ZodTypeAny, {
|
|
158254
|
-
instruction: string | null;
|
|
158255
|
-
id: string;
|
|
158256
|
-
name: string;
|
|
158257
|
-
createdAt: Date;
|
|
158258
|
-
workspaceId: string;
|
|
158259
|
-
tags: string[];
|
|
158260
|
-
meta: {
|
|
158261
|
-
name: string;
|
|
158262
|
-
description?: string | undefined;
|
|
158263
|
-
};
|
|
158264
|
-
accessMode: "Open" | "InviteOnly";
|
|
158265
|
-
fpContextId: string;
|
|
158266
|
-
updatedAt?: Date | undefined;
|
|
158267
|
-
emoji?: string | undefined;
|
|
158268
|
-
createdByUserId?: string | undefined;
|
|
158269
|
-
isArchived?: boolean | undefined;
|
|
158270
|
-
}, {
|
|
158271
|
-
instruction: string | null;
|
|
158272
|
-
id: string;
|
|
158273
|
-
name: string;
|
|
158274
|
-
createdAt: Date;
|
|
158275
|
-
workspaceId: string;
|
|
158276
|
-
meta: {
|
|
158277
|
-
name: string;
|
|
158278
|
-
description?: string | undefined;
|
|
158279
|
-
};
|
|
158280
|
-
accessMode: "Open" | "InviteOnly";
|
|
158281
|
-
fpContextId: string;
|
|
158282
|
-
updatedAt?: Date | undefined;
|
|
158283
|
-
tags?: string[] | undefined;
|
|
158284
|
-
emoji?: string | undefined;
|
|
158285
|
-
createdByUserId?: string | undefined;
|
|
158286
|
-
isArchived?: boolean | undefined;
|
|
158287
|
-
}>;
|
|
158288
|
-
type ForgeProject = z.infer<typeof ForgeProject>;
|
|
158289
|
-
type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
|
|
158290
|
-
type UpdateForgeProject = Omit<DbUpdate<ForgeProject>, "fpContextId" | "workspaceId" | "createdByUserId">;
|
|
158291
|
-
|
|
158292
158386
|
declare enum OAuthProviderNames {
|
|
158293
158387
|
Figma = "figma",
|
|
158294
158388
|
Azure = "azure",
|
|
@@ -187527,8 +187621,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187527
187621
|
createdByUserId: string;
|
|
187528
187622
|
projectId: string;
|
|
187529
187623
|
updatedAt?: Date | undefined;
|
|
187530
|
-
sectionId?: string | undefined;
|
|
187531
187624
|
isArchived?: boolean | undefined;
|
|
187625
|
+
sectionId?: string | undefined;
|
|
187532
187626
|
}, {
|
|
187533
187627
|
id: string;
|
|
187534
187628
|
name: string;
|
|
@@ -187538,8 +187632,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187538
187632
|
projectId: string;
|
|
187539
187633
|
updatedAt?: Date | undefined;
|
|
187540
187634
|
sortOrder?: number | undefined;
|
|
187541
|
-
sectionId?: string | undefined;
|
|
187542
187635
|
isArchived?: boolean | undefined;
|
|
187636
|
+
sectionId?: string | undefined;
|
|
187543
187637
|
}>, "many">;
|
|
187544
187638
|
artifactSections: z.ZodArray<z.ZodObject<{
|
|
187545
187639
|
id: z.ZodString;
|
|
@@ -187601,8 +187695,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187601
187695
|
createdByUserId: string;
|
|
187602
187696
|
projectId: string;
|
|
187603
187697
|
updatedAt?: Date | undefined;
|
|
187604
|
-
sectionId?: string | undefined;
|
|
187605
187698
|
isArchived?: boolean | undefined;
|
|
187699
|
+
sectionId?: string | undefined;
|
|
187606
187700
|
}[];
|
|
187607
187701
|
artifacts: {
|
|
187608
187702
|
id: string;
|
|
@@ -187644,8 +187738,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187644
187738
|
projectId: string;
|
|
187645
187739
|
updatedAt?: Date | undefined;
|
|
187646
187740
|
sortOrder?: number | undefined;
|
|
187647
|
-
sectionId?: string | undefined;
|
|
187648
187741
|
isArchived?: boolean | undefined;
|
|
187742
|
+
sectionId?: string | undefined;
|
|
187649
187743
|
}[];
|
|
187650
187744
|
artifacts: {
|
|
187651
187745
|
id: string;
|
|
@@ -187735,8 +187829,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187735
187829
|
createdByUserId: string;
|
|
187736
187830
|
projectId: string;
|
|
187737
187831
|
updatedAt?: Date | undefined;
|
|
187738
|
-
sectionId?: string | undefined;
|
|
187739
187832
|
isArchived?: boolean | undefined;
|
|
187833
|
+
sectionId?: string | undefined;
|
|
187740
187834
|
}, {
|
|
187741
187835
|
id: string;
|
|
187742
187836
|
name: string;
|
|
@@ -187746,8 +187840,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187746
187840
|
projectId: string;
|
|
187747
187841
|
updatedAt?: Date | undefined;
|
|
187748
187842
|
sortOrder?: number | undefined;
|
|
187749
|
-
sectionId?: string | undefined;
|
|
187750
187843
|
isArchived?: boolean | undefined;
|
|
187844
|
+
sectionId?: string | undefined;
|
|
187751
187845
|
}>, "many">>;
|
|
187752
187846
|
featureIdsToDelete: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
187753
187847
|
artifactSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -187813,8 +187907,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187813
187907
|
createdByUserId: string;
|
|
187814
187908
|
projectId: string;
|
|
187815
187909
|
updatedAt?: Date | undefined;
|
|
187816
|
-
sectionId?: string | undefined;
|
|
187817
187910
|
isArchived?: boolean | undefined;
|
|
187911
|
+
sectionId?: string | undefined;
|
|
187818
187912
|
}[] | undefined;
|
|
187819
187913
|
executedTransactionIds?: string[] | undefined;
|
|
187820
187914
|
artifacts?: {
|
|
@@ -187861,8 +187955,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187861
187955
|
projectId: string;
|
|
187862
187956
|
updatedAt?: Date | undefined;
|
|
187863
187957
|
sortOrder?: number | undefined;
|
|
187864
|
-
sectionId?: string | undefined;
|
|
187865
187958
|
isArchived?: boolean | undefined;
|
|
187959
|
+
sectionId?: string | undefined;
|
|
187866
187960
|
}[] | undefined;
|
|
187867
187961
|
executedTransactionIds?: string[] | undefined;
|
|
187868
187962
|
artifacts?: {
|
|
@@ -189413,4 +189507,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
189413
189507
|
token: PersonalAccessToken;
|
|
189414
189508
|
};
|
|
189415
189509
|
|
|
189416
|
-
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, 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 };
|
|
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 };
|