@supernova-studio/model 1.16.2 → 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 +385 -113
- package/dist/index.d.ts +385 -113
- package/dist/index.js +56 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +419 -393
- 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,58 @@ 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;
|
|
187637
|
+
}>, "many">;
|
|
187638
|
+
artifactSections: z.ZodArray<z.ZodObject<{
|
|
187639
|
+
id: z.ZodString;
|
|
187640
|
+
projectId: z.ZodString;
|
|
187641
|
+
name: z.ZodString;
|
|
187642
|
+
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187643
|
+
createdAt: z.ZodDate;
|
|
187644
|
+
updatedAt: z.ZodDate;
|
|
187645
|
+
childType: z.ZodEnum<["Artifact", "Feature"]>;
|
|
187646
|
+
}, "strip", z.ZodTypeAny, {
|
|
187647
|
+
id: string;
|
|
187648
|
+
name: string;
|
|
187649
|
+
createdAt: Date;
|
|
187650
|
+
updatedAt: Date;
|
|
187651
|
+
childType: "Artifact" | "Feature";
|
|
187652
|
+
sortOrder: number;
|
|
187653
|
+
projectId: string;
|
|
187654
|
+
}, {
|
|
187655
|
+
id: string;
|
|
187656
|
+
name: string;
|
|
187657
|
+
createdAt: Date;
|
|
187658
|
+
updatedAt: Date;
|
|
187659
|
+
childType: "Artifact" | "Feature";
|
|
187660
|
+
projectId: string;
|
|
187661
|
+
sortOrder?: number | undefined;
|
|
187662
|
+
}>, "many">;
|
|
187663
|
+
featureSections: z.ZodArray<z.ZodObject<{
|
|
187664
|
+
id: z.ZodString;
|
|
187665
|
+
projectId: z.ZodString;
|
|
187666
|
+
name: z.ZodString;
|
|
187667
|
+
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187668
|
+
createdAt: z.ZodDate;
|
|
187669
|
+
updatedAt: z.ZodDate;
|
|
187670
|
+
childType: z.ZodEnum<["Artifact", "Feature"]>;
|
|
187671
|
+
}, "strip", z.ZodTypeAny, {
|
|
187672
|
+
id: string;
|
|
187673
|
+
name: string;
|
|
187674
|
+
createdAt: Date;
|
|
187675
|
+
updatedAt: Date;
|
|
187676
|
+
childType: "Artifact" | "Feature";
|
|
187677
|
+
sortOrder: number;
|
|
187678
|
+
projectId: string;
|
|
187679
|
+
}, {
|
|
187680
|
+
id: string;
|
|
187681
|
+
name: string;
|
|
187682
|
+
createdAt: Date;
|
|
187683
|
+
updatedAt: Date;
|
|
187684
|
+
childType: "Artifact" | "Feature";
|
|
187685
|
+
projectId: string;
|
|
187686
|
+
sortOrder?: number | undefined;
|
|
187543
187687
|
}>, "many">;
|
|
187544
187688
|
}, "strip", z.ZodTypeAny, {
|
|
187545
187689
|
features: {
|
|
@@ -187551,8 +187695,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187551
187695
|
createdByUserId: string;
|
|
187552
187696
|
projectId: string;
|
|
187553
187697
|
updatedAt?: Date | undefined;
|
|
187554
|
-
sectionId?: string | undefined;
|
|
187555
187698
|
isArchived?: boolean | undefined;
|
|
187699
|
+
sectionId?: string | undefined;
|
|
187556
187700
|
}[];
|
|
187557
187701
|
artifacts: {
|
|
187558
187702
|
id: string;
|
|
@@ -187566,6 +187710,24 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187566
187710
|
iterationId?: string | null | undefined;
|
|
187567
187711
|
sectionId?: string | undefined;
|
|
187568
187712
|
}[];
|
|
187713
|
+
artifactSections: {
|
|
187714
|
+
id: string;
|
|
187715
|
+
name: string;
|
|
187716
|
+
createdAt: Date;
|
|
187717
|
+
updatedAt: Date;
|
|
187718
|
+
childType: "Artifact" | "Feature";
|
|
187719
|
+
sortOrder: number;
|
|
187720
|
+
projectId: string;
|
|
187721
|
+
}[];
|
|
187722
|
+
featureSections: {
|
|
187723
|
+
id: string;
|
|
187724
|
+
name: string;
|
|
187725
|
+
createdAt: Date;
|
|
187726
|
+
updatedAt: Date;
|
|
187727
|
+
childType: "Artifact" | "Feature";
|
|
187728
|
+
sortOrder: number;
|
|
187729
|
+
projectId: string;
|
|
187730
|
+
}[];
|
|
187569
187731
|
}, {
|
|
187570
187732
|
features: {
|
|
187571
187733
|
id: string;
|
|
@@ -187576,8 +187738,8 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187576
187738
|
projectId: string;
|
|
187577
187739
|
updatedAt?: Date | undefined;
|
|
187578
187740
|
sortOrder?: number | undefined;
|
|
187579
|
-
sectionId?: string | undefined;
|
|
187580
187741
|
isArchived?: boolean | undefined;
|
|
187742
|
+
sectionId?: string | undefined;
|
|
187581
187743
|
}[];
|
|
187582
187744
|
artifacts: {
|
|
187583
187745
|
id: string;
|
|
@@ -187591,6 +187753,24 @@ declare const ForgeProjectRoomInitialState: z.ZodObject<{
|
|
|
187591
187753
|
iterationId?: string | null | undefined;
|
|
187592
187754
|
sectionId?: string | undefined;
|
|
187593
187755
|
}[];
|
|
187756
|
+
artifactSections: {
|
|
187757
|
+
id: string;
|
|
187758
|
+
name: string;
|
|
187759
|
+
createdAt: Date;
|
|
187760
|
+
updatedAt: Date;
|
|
187761
|
+
childType: "Artifact" | "Feature";
|
|
187762
|
+
projectId: string;
|
|
187763
|
+
sortOrder?: number | undefined;
|
|
187764
|
+
}[];
|
|
187765
|
+
featureSections: {
|
|
187766
|
+
id: string;
|
|
187767
|
+
name: string;
|
|
187768
|
+
createdAt: Date;
|
|
187769
|
+
updatedAt: Date;
|
|
187770
|
+
childType: "Artifact" | "Feature";
|
|
187771
|
+
projectId: string;
|
|
187772
|
+
sortOrder?: number | undefined;
|
|
187773
|
+
}[];
|
|
187594
187774
|
}>;
|
|
187595
187775
|
type ForgeProjectRoomInitialState = z.infer<typeof ForgeProjectRoomInitialState>;
|
|
187596
187776
|
declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
@@ -187649,8 +187829,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187649
187829
|
createdByUserId: string;
|
|
187650
187830
|
projectId: string;
|
|
187651
187831
|
updatedAt?: Date | undefined;
|
|
187652
|
-
sectionId?: string | undefined;
|
|
187653
187832
|
isArchived?: boolean | undefined;
|
|
187833
|
+
sectionId?: string | undefined;
|
|
187654
187834
|
}, {
|
|
187655
187835
|
id: string;
|
|
187656
187836
|
name: string;
|
|
@@ -187660,10 +187840,62 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187660
187840
|
projectId: string;
|
|
187661
187841
|
updatedAt?: Date | undefined;
|
|
187662
187842
|
sortOrder?: number | undefined;
|
|
187663
|
-
sectionId?: string | undefined;
|
|
187664
187843
|
isArchived?: boolean | undefined;
|
|
187844
|
+
sectionId?: string | undefined;
|
|
187665
187845
|
}>, "many">>;
|
|
187666
187846
|
featureIdsToDelete: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
187847
|
+
artifactSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
187848
|
+
id: z.ZodString;
|
|
187849
|
+
projectId: z.ZodString;
|
|
187850
|
+
name: z.ZodString;
|
|
187851
|
+
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187852
|
+
createdAt: z.ZodDate;
|
|
187853
|
+
updatedAt: z.ZodDate;
|
|
187854
|
+
childType: z.ZodEnum<["Artifact", "Feature"]>;
|
|
187855
|
+
}, "strip", z.ZodTypeAny, {
|
|
187856
|
+
id: string;
|
|
187857
|
+
name: string;
|
|
187858
|
+
createdAt: Date;
|
|
187859
|
+
updatedAt: Date;
|
|
187860
|
+
childType: "Artifact" | "Feature";
|
|
187861
|
+
sortOrder: number;
|
|
187862
|
+
projectId: string;
|
|
187863
|
+
}, {
|
|
187864
|
+
id: string;
|
|
187865
|
+
name: string;
|
|
187866
|
+
createdAt: Date;
|
|
187867
|
+
updatedAt: Date;
|
|
187868
|
+
childType: "Artifact" | "Feature";
|
|
187869
|
+
projectId: string;
|
|
187870
|
+
sortOrder?: number | undefined;
|
|
187871
|
+
}>, "many">>;
|
|
187872
|
+
artifactSectionIdsToDelete: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
187873
|
+
featureSections: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
187874
|
+
id: z.ZodString;
|
|
187875
|
+
projectId: z.ZodString;
|
|
187876
|
+
name: z.ZodString;
|
|
187877
|
+
sortOrder: z.ZodDefault<z.ZodNumber>;
|
|
187878
|
+
createdAt: z.ZodDate;
|
|
187879
|
+
updatedAt: z.ZodDate;
|
|
187880
|
+
childType: z.ZodEnum<["Artifact", "Feature"]>;
|
|
187881
|
+
}, "strip", z.ZodTypeAny, {
|
|
187882
|
+
id: string;
|
|
187883
|
+
name: string;
|
|
187884
|
+
createdAt: Date;
|
|
187885
|
+
updatedAt: Date;
|
|
187886
|
+
childType: "Artifact" | "Feature";
|
|
187887
|
+
sortOrder: number;
|
|
187888
|
+
projectId: string;
|
|
187889
|
+
}, {
|
|
187890
|
+
id: string;
|
|
187891
|
+
name: string;
|
|
187892
|
+
createdAt: Date;
|
|
187893
|
+
updatedAt: Date;
|
|
187894
|
+
childType: "Artifact" | "Feature";
|
|
187895
|
+
projectId: string;
|
|
187896
|
+
sortOrder?: number | undefined;
|
|
187897
|
+
}>, "many">>;
|
|
187898
|
+
featureSectionIdsToDelete: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
187667
187899
|
executedTransactionIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
187668
187900
|
}, "strip", z.ZodTypeAny, {
|
|
187669
187901
|
features?: {
|
|
@@ -187675,8 +187907,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187675
187907
|
createdByUserId: string;
|
|
187676
187908
|
projectId: string;
|
|
187677
187909
|
updatedAt?: Date | undefined;
|
|
187678
|
-
sectionId?: string | undefined;
|
|
187679
187910
|
isArchived?: boolean | undefined;
|
|
187911
|
+
sectionId?: string | undefined;
|
|
187680
187912
|
}[] | undefined;
|
|
187681
187913
|
executedTransactionIds?: string[] | undefined;
|
|
187682
187914
|
artifacts?: {
|
|
@@ -187691,8 +187923,28 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187691
187923
|
iterationId?: string | null | undefined;
|
|
187692
187924
|
sectionId?: string | undefined;
|
|
187693
187925
|
}[] | undefined;
|
|
187926
|
+
artifactSections?: {
|
|
187927
|
+
id: string;
|
|
187928
|
+
name: string;
|
|
187929
|
+
createdAt: Date;
|
|
187930
|
+
updatedAt: Date;
|
|
187931
|
+
childType: "Artifact" | "Feature";
|
|
187932
|
+
sortOrder: number;
|
|
187933
|
+
projectId: string;
|
|
187934
|
+
}[] | undefined;
|
|
187935
|
+
featureSections?: {
|
|
187936
|
+
id: string;
|
|
187937
|
+
name: string;
|
|
187938
|
+
createdAt: Date;
|
|
187939
|
+
updatedAt: Date;
|
|
187940
|
+
childType: "Artifact" | "Feature";
|
|
187941
|
+
sortOrder: number;
|
|
187942
|
+
projectId: string;
|
|
187943
|
+
}[] | undefined;
|
|
187694
187944
|
artifactIdsToDelete?: string[] | undefined;
|
|
187695
187945
|
featureIdsToDelete?: string[] | undefined;
|
|
187946
|
+
artifactSectionIdsToDelete?: string[] | undefined;
|
|
187947
|
+
featureSectionIdsToDelete?: string[] | undefined;
|
|
187696
187948
|
}, {
|
|
187697
187949
|
features?: {
|
|
187698
187950
|
id: string;
|
|
@@ -187703,8 +187955,8 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187703
187955
|
projectId: string;
|
|
187704
187956
|
updatedAt?: Date | undefined;
|
|
187705
187957
|
sortOrder?: number | undefined;
|
|
187706
|
-
sectionId?: string | undefined;
|
|
187707
187958
|
isArchived?: boolean | undefined;
|
|
187959
|
+
sectionId?: string | undefined;
|
|
187708
187960
|
}[] | undefined;
|
|
187709
187961
|
executedTransactionIds?: string[] | undefined;
|
|
187710
187962
|
artifacts?: {
|
|
@@ -187719,8 +187971,28 @@ declare const ForgeProjectRoomUpdate: z.ZodObject<{
|
|
|
187719
187971
|
iterationId?: string | null | undefined;
|
|
187720
187972
|
sectionId?: string | undefined;
|
|
187721
187973
|
}[] | undefined;
|
|
187974
|
+
artifactSections?: {
|
|
187975
|
+
id: string;
|
|
187976
|
+
name: string;
|
|
187977
|
+
createdAt: Date;
|
|
187978
|
+
updatedAt: Date;
|
|
187979
|
+
childType: "Artifact" | "Feature";
|
|
187980
|
+
projectId: string;
|
|
187981
|
+
sortOrder?: number | undefined;
|
|
187982
|
+
}[] | undefined;
|
|
187983
|
+
featureSections?: {
|
|
187984
|
+
id: string;
|
|
187985
|
+
name: string;
|
|
187986
|
+
createdAt: Date;
|
|
187987
|
+
updatedAt: Date;
|
|
187988
|
+
childType: "Artifact" | "Feature";
|
|
187989
|
+
projectId: string;
|
|
187990
|
+
sortOrder?: number | undefined;
|
|
187991
|
+
}[] | undefined;
|
|
187722
187992
|
artifactIdsToDelete?: string[] | undefined;
|
|
187723
187993
|
featureIdsToDelete?: string[] | undefined;
|
|
187994
|
+
artifactSectionIdsToDelete?: string[] | undefined;
|
|
187995
|
+
featureSectionIdsToDelete?: string[] | undefined;
|
|
187724
187996
|
}>;
|
|
187725
187997
|
type ForgeProjectRoomUpdate = z.infer<typeof ForgeProjectRoomUpdate>;
|
|
187726
187998
|
|
|
@@ -189235,4 +189507,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
189235
189507
|
token: PersonalAccessToken;
|
|
189236
189508
|
};
|
|
189237
189509
|
|
|
189238
|
-
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 };
|