@supernova-studio/model 1.44.8 → 1.45.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 +842 -125
- package/dist/index.d.ts +842 -125
- package/dist/index.js +46 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +465 -423
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11806,13 +11806,13 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
11806
11806
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
11807
11807
|
isProtected: z$1.ZodBoolean;
|
|
11808
11808
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
11809
|
-
emailSettings: z$1.ZodObject<{
|
|
11809
|
+
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
11810
11810
|
marketingEmails: z$1.ZodBoolean;
|
|
11811
11811
|
}, "strip", z$1.ZodTypeAny, {
|
|
11812
11812
|
marketingEmails: boolean;
|
|
11813
11813
|
}, {
|
|
11814
11814
|
marketingEmails: boolean;
|
|
11815
|
-
}
|
|
11815
|
+
}>>;
|
|
11816
11816
|
}, "strip", z$1.ZodTypeAny, {
|
|
11817
11817
|
email: string;
|
|
11818
11818
|
id: string;
|
|
@@ -11857,11 +11857,11 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
11857
11857
|
};
|
|
11858
11858
|
createdAt: Date;
|
|
11859
11859
|
isProtected: boolean;
|
|
11860
|
-
emailSettings: {
|
|
11861
|
-
marketingEmails: boolean;
|
|
11862
|
-
};
|
|
11863
11860
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
11864
11861
|
loggedOutAt?: Date | undefined;
|
|
11862
|
+
emailSettings?: {
|
|
11863
|
+
marketingEmails: boolean;
|
|
11864
|
+
} | undefined;
|
|
11865
11865
|
}, {
|
|
11866
11866
|
email: string;
|
|
11867
11867
|
id: string;
|
|
@@ -11906,11 +11906,11 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
11906
11906
|
};
|
|
11907
11907
|
createdAt: Date;
|
|
11908
11908
|
isProtected: boolean;
|
|
11909
|
-
emailSettings: {
|
|
11910
|
-
marketingEmails: boolean;
|
|
11911
|
-
};
|
|
11912
11909
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
11913
11910
|
loggedOutAt?: Date | undefined;
|
|
11911
|
+
emailSettings?: {
|
|
11912
|
+
marketingEmails: boolean;
|
|
11913
|
+
} | undefined;
|
|
11914
11914
|
}>;
|
|
11915
11915
|
workspaces: z$1.ZodArray<z$1.ZodObject<{
|
|
11916
11916
|
workspace: z$1.ZodObject<{
|
|
@@ -22058,11 +22058,11 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
22058
22058
|
};
|
|
22059
22059
|
createdAt: Date;
|
|
22060
22060
|
isProtected: boolean;
|
|
22061
|
-
emailSettings: {
|
|
22062
|
-
marketingEmails: boolean;
|
|
22063
|
-
};
|
|
22064
22061
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
22065
22062
|
loggedOutAt?: Date | undefined;
|
|
22063
|
+
emailSettings?: {
|
|
22064
|
+
marketingEmails: boolean;
|
|
22065
|
+
} | undefined;
|
|
22066
22066
|
};
|
|
22067
22067
|
}, {
|
|
22068
22068
|
workspaces: {
|
|
@@ -23000,11 +23000,11 @@ declare const UserDump: z$1.ZodObject<{
|
|
|
23000
23000
|
};
|
|
23001
23001
|
createdAt: Date;
|
|
23002
23002
|
isProtected: boolean;
|
|
23003
|
-
emailSettings: {
|
|
23004
|
-
marketingEmails: boolean;
|
|
23005
|
-
};
|
|
23006
23003
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
23007
23004
|
loggedOutAt?: Date | undefined;
|
|
23005
|
+
emailSettings?: {
|
|
23006
|
+
marketingEmails: boolean;
|
|
23007
|
+
} | undefined;
|
|
23008
23008
|
};
|
|
23009
23009
|
}>;
|
|
23010
23010
|
type UserDump = z$1.infer<typeof UserDump>;
|
|
@@ -32596,13 +32596,13 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32596
32596
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
32597
32597
|
isProtected: z$1.ZodBoolean;
|
|
32598
32598
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
32599
|
-
emailSettings: z$1.ZodObject<{
|
|
32599
|
+
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
32600
32600
|
marketingEmails: z$1.ZodBoolean;
|
|
32601
32601
|
}, "strip", z$1.ZodTypeAny, {
|
|
32602
32602
|
marketingEmails: boolean;
|
|
32603
32603
|
}, {
|
|
32604
32604
|
marketingEmails: boolean;
|
|
32605
|
-
}
|
|
32605
|
+
}>>;
|
|
32606
32606
|
}, "strip", z$1.ZodTypeAny, {
|
|
32607
32607
|
email: string;
|
|
32608
32608
|
id: string;
|
|
@@ -32647,11 +32647,11 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32647
32647
|
};
|
|
32648
32648
|
createdAt: Date;
|
|
32649
32649
|
isProtected: boolean;
|
|
32650
|
-
emailSettings: {
|
|
32651
|
-
marketingEmails: boolean;
|
|
32652
|
-
};
|
|
32653
32650
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32654
32651
|
loggedOutAt?: Date | undefined;
|
|
32652
|
+
emailSettings?: {
|
|
32653
|
+
marketingEmails: boolean;
|
|
32654
|
+
} | undefined;
|
|
32655
32655
|
}, {
|
|
32656
32656
|
email: string;
|
|
32657
32657
|
id: string;
|
|
@@ -32696,11 +32696,11 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32696
32696
|
};
|
|
32697
32697
|
createdAt: Date;
|
|
32698
32698
|
isProtected: boolean;
|
|
32699
|
-
emailSettings: {
|
|
32700
|
-
marketingEmails: boolean;
|
|
32701
|
-
};
|
|
32702
32699
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32703
32700
|
loggedOutAt?: Date | undefined;
|
|
32701
|
+
emailSettings?: {
|
|
32702
|
+
marketingEmails: boolean;
|
|
32703
|
+
} | undefined;
|
|
32704
32704
|
}>>;
|
|
32705
32705
|
}, "strip", z$1.ZodTypeAny, {
|
|
32706
32706
|
session: {
|
|
@@ -32760,11 +32760,11 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32760
32760
|
};
|
|
32761
32761
|
createdAt: Date;
|
|
32762
32762
|
isProtected: boolean;
|
|
32763
|
-
emailSettings: {
|
|
32764
|
-
marketingEmails: boolean;
|
|
32765
|
-
};
|
|
32766
32763
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32767
32764
|
loggedOutAt?: Date | undefined;
|
|
32765
|
+
emailSettings?: {
|
|
32766
|
+
marketingEmails: boolean;
|
|
32767
|
+
} | undefined;
|
|
32768
32768
|
} | null;
|
|
32769
32769
|
}, {
|
|
32770
32770
|
session: {
|
|
@@ -32824,11 +32824,11 @@ declare const UserSession: z$1.ZodObject<{
|
|
|
32824
32824
|
};
|
|
32825
32825
|
createdAt: Date;
|
|
32826
32826
|
isProtected: boolean;
|
|
32827
|
-
emailSettings: {
|
|
32828
|
-
marketingEmails: boolean;
|
|
32829
|
-
};
|
|
32830
32827
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
32831
32828
|
loggedOutAt?: Date | undefined;
|
|
32829
|
+
emailSettings?: {
|
|
32830
|
+
marketingEmails: boolean;
|
|
32831
|
+
} | undefined;
|
|
32832
32832
|
} | null;
|
|
32833
32833
|
}>;
|
|
32834
32834
|
type UserSession = z$1.infer<typeof UserSession>;
|
|
@@ -144907,13 +144907,13 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144907
144907
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
144908
144908
|
isProtected: z$1.ZodBoolean;
|
|
144909
144909
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
144910
|
-
emailSettings: z$1.ZodObject<{
|
|
144910
|
+
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
144911
144911
|
marketingEmails: z$1.ZodBoolean;
|
|
144912
144912
|
}, "strip", z$1.ZodTypeAny, {
|
|
144913
144913
|
marketingEmails: boolean;
|
|
144914
144914
|
}, {
|
|
144915
144915
|
marketingEmails: boolean;
|
|
144916
|
-
}
|
|
144916
|
+
}>>;
|
|
144917
144917
|
}, "strip", z$1.ZodTypeAny, {
|
|
144918
144918
|
email: string;
|
|
144919
144919
|
id: string;
|
|
@@ -144958,11 +144958,11 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
144958
144958
|
};
|
|
144959
144959
|
createdAt: Date;
|
|
144960
144960
|
isProtected: boolean;
|
|
144961
|
-
emailSettings: {
|
|
144962
|
-
marketingEmails: boolean;
|
|
144963
|
-
};
|
|
144964
144961
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
144965
144962
|
loggedOutAt?: Date | undefined;
|
|
144963
|
+
emailSettings?: {
|
|
144964
|
+
marketingEmails: boolean;
|
|
144965
|
+
} | undefined;
|
|
144966
144966
|
}, {
|
|
144967
144967
|
email: string;
|
|
144968
144968
|
id: string;
|
|
@@ -145007,11 +145007,11 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145007
145007
|
};
|
|
145008
145008
|
createdAt: Date;
|
|
145009
145009
|
isProtected: boolean;
|
|
145010
|
-
emailSettings: {
|
|
145011
|
-
marketingEmails: boolean;
|
|
145012
|
-
};
|
|
145013
145010
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
145014
145011
|
loggedOutAt?: Date | undefined;
|
|
145012
|
+
emailSettings?: {
|
|
145013
|
+
marketingEmails: boolean;
|
|
145014
|
+
} | undefined;
|
|
145015
145015
|
}>;
|
|
145016
145016
|
documentationDomain: z$1.ZodOptional<z$1.ZodString>;
|
|
145017
145017
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -145163,11 +145163,11 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145163
145163
|
};
|
|
145164
145164
|
createdAt: Date;
|
|
145165
145165
|
isProtected: boolean;
|
|
145166
|
-
emailSettings: {
|
|
145167
|
-
marketingEmails: boolean;
|
|
145168
|
-
};
|
|
145169
145166
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
145170
145167
|
loggedOutAt?: Date | undefined;
|
|
145168
|
+
emailSettings?: {
|
|
145169
|
+
marketingEmails: boolean;
|
|
145170
|
+
} | undefined;
|
|
145171
145171
|
};
|
|
145172
145172
|
designSystem: {
|
|
145173
145173
|
id: string;
|
|
@@ -145342,11 +145342,11 @@ declare const DesignSystemInviteEmailData: z$1.ZodObject<{
|
|
|
145342
145342
|
};
|
|
145343
145343
|
createdAt: Date;
|
|
145344
145344
|
isProtected: boolean;
|
|
145345
|
-
emailSettings: {
|
|
145346
|
-
marketingEmails: boolean;
|
|
145347
|
-
};
|
|
145348
145345
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
145349
145346
|
loggedOutAt?: Date | undefined;
|
|
145347
|
+
emailSettings?: {
|
|
145348
|
+
marketingEmails: boolean;
|
|
145349
|
+
} | undefined;
|
|
145350
145350
|
};
|
|
145351
145351
|
designSystem: {
|
|
145352
145352
|
id: string;
|
|
@@ -146210,13 +146210,13 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146210
146210
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
146211
146211
|
isProtected: z$1.ZodBoolean;
|
|
146212
146212
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
146213
|
-
emailSettings: z$1.ZodObject<{
|
|
146213
|
+
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
146214
146214
|
marketingEmails: z$1.ZodBoolean;
|
|
146215
146215
|
}, "strip", z$1.ZodTypeAny, {
|
|
146216
146216
|
marketingEmails: boolean;
|
|
146217
146217
|
}, {
|
|
146218
146218
|
marketingEmails: boolean;
|
|
146219
|
-
}
|
|
146219
|
+
}>>;
|
|
146220
146220
|
}, "strip", z$1.ZodTypeAny, {
|
|
146221
146221
|
email: string;
|
|
146222
146222
|
id: string;
|
|
@@ -146261,11 +146261,11 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146261
146261
|
};
|
|
146262
146262
|
createdAt: Date;
|
|
146263
146263
|
isProtected: boolean;
|
|
146264
|
-
emailSettings: {
|
|
146265
|
-
marketingEmails: boolean;
|
|
146266
|
-
};
|
|
146267
146264
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146268
146265
|
loggedOutAt?: Date | undefined;
|
|
146266
|
+
emailSettings?: {
|
|
146267
|
+
marketingEmails: boolean;
|
|
146268
|
+
} | undefined;
|
|
146269
146269
|
}, {
|
|
146270
146270
|
email: string;
|
|
146271
146271
|
id: string;
|
|
@@ -146310,11 +146310,11 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146310
146310
|
};
|
|
146311
146311
|
createdAt: Date;
|
|
146312
146312
|
isProtected: boolean;
|
|
146313
|
-
emailSettings: {
|
|
146314
|
-
marketingEmails: boolean;
|
|
146315
|
-
};
|
|
146316
146313
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146317
146314
|
loggedOutAt?: Date | undefined;
|
|
146315
|
+
emailSettings?: {
|
|
146316
|
+
marketingEmails: boolean;
|
|
146317
|
+
} | undefined;
|
|
146318
146318
|
}>;
|
|
146319
146319
|
documentationDomain: z$1.ZodOptional<z$1.ZodString>;
|
|
146320
146320
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -146466,11 +146466,11 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146466
146466
|
};
|
|
146467
146467
|
createdAt: Date;
|
|
146468
146468
|
isProtected: boolean;
|
|
146469
|
-
emailSettings: {
|
|
146470
|
-
marketingEmails: boolean;
|
|
146471
|
-
};
|
|
146472
146469
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146473
146470
|
loggedOutAt?: Date | undefined;
|
|
146471
|
+
emailSettings?: {
|
|
146472
|
+
marketingEmails: boolean;
|
|
146473
|
+
} | undefined;
|
|
146474
146474
|
};
|
|
146475
146475
|
documentationDomain?: string | undefined;
|
|
146476
146476
|
}, {
|
|
@@ -146622,11 +146622,11 @@ declare const WorkspaceInviteEmailData: z$1.ZodObject<{
|
|
|
146622
146622
|
};
|
|
146623
146623
|
createdAt: Date;
|
|
146624
146624
|
isProtected: boolean;
|
|
146625
|
-
emailSettings: {
|
|
146626
|
-
marketingEmails: boolean;
|
|
146627
|
-
};
|
|
146628
146625
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
146629
146626
|
loggedOutAt?: Date | undefined;
|
|
146627
|
+
emailSettings?: {
|
|
146628
|
+
marketingEmails: boolean;
|
|
146629
|
+
} | undefined;
|
|
146630
146630
|
};
|
|
146631
146631
|
documentationDomain?: string | undefined;
|
|
146632
146632
|
}>;
|
|
@@ -154098,6 +154098,171 @@ declare const FeatureFlag: z$1.ZodObject<{
|
|
|
154098
154098
|
}>;
|
|
154099
154099
|
type FeatureFlag = z$1.infer<typeof FeatureFlag>;
|
|
154100
154100
|
|
|
154101
|
+
declare const FileFigmaRenderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
154102
|
+
type FileFigmaRenderMode = z__default.infer<typeof FileFigmaRenderMode>;
|
|
154103
|
+
declare const FileSourceUpload: z__default.ZodObject<{
|
|
154104
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
154105
|
+
userId: z__default.ZodString;
|
|
154106
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154107
|
+
type: "UserUpload";
|
|
154108
|
+
userId: string;
|
|
154109
|
+
}, {
|
|
154110
|
+
type: "UserUpload";
|
|
154111
|
+
userId: string;
|
|
154112
|
+
}>;
|
|
154113
|
+
type FileSourceUpload = z__default.infer<typeof FileSourceUpload>;
|
|
154114
|
+
declare const FileSourceFigma: z__default.ZodObject<{
|
|
154115
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
154116
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
154117
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154118
|
+
type: "Figma";
|
|
154119
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154120
|
+
}, {
|
|
154121
|
+
type: "Figma";
|
|
154122
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154123
|
+
}>;
|
|
154124
|
+
type FileSourceFigma = z__default.infer<typeof FileSourceFigma>;
|
|
154125
|
+
declare const FileSource: z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
154126
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
154127
|
+
userId: z__default.ZodString;
|
|
154128
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154129
|
+
type: "UserUpload";
|
|
154130
|
+
userId: string;
|
|
154131
|
+
}, {
|
|
154132
|
+
type: "UserUpload";
|
|
154133
|
+
userId: string;
|
|
154134
|
+
}>, z__default.ZodObject<{
|
|
154135
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
154136
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
154137
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154138
|
+
type: "Figma";
|
|
154139
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154140
|
+
}, {
|
|
154141
|
+
type: "Figma";
|
|
154142
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154143
|
+
}>]>;
|
|
154144
|
+
type FileSource = z__default.infer<typeof FileSource>;
|
|
154145
|
+
declare const File: z__default.ZodObject<{
|
|
154146
|
+
id: z__default.ZodString;
|
|
154147
|
+
name: z__default.ZodString;
|
|
154148
|
+
deduplicationKey: z__default.ZodString;
|
|
154149
|
+
pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
154150
|
+
storagePath: z__default.ZodString;
|
|
154151
|
+
url: z__default.ZodString;
|
|
154152
|
+
size: z__default.ZodNumber;
|
|
154153
|
+
/**
|
|
154154
|
+
* Object describing where did the file come from. Undefined source indicates a file produced by the
|
|
154155
|
+
* system (e.g. thumbnails, etc)
|
|
154156
|
+
*/
|
|
154157
|
+
source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
154158
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
154159
|
+
userId: z__default.ZodString;
|
|
154160
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154161
|
+
type: "UserUpload";
|
|
154162
|
+
userId: string;
|
|
154163
|
+
}, {
|
|
154164
|
+
type: "UserUpload";
|
|
154165
|
+
userId: string;
|
|
154166
|
+
}>, z__default.ZodObject<{
|
|
154167
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
154168
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
154169
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154170
|
+
type: "Figma";
|
|
154171
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154172
|
+
}, {
|
|
154173
|
+
type: "Figma";
|
|
154174
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154175
|
+
}>]>>;
|
|
154176
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154177
|
+
id: string;
|
|
154178
|
+
name: string;
|
|
154179
|
+
url: string;
|
|
154180
|
+
storagePath: string;
|
|
154181
|
+
size: number;
|
|
154182
|
+
deduplicationKey: string;
|
|
154183
|
+
source?: {
|
|
154184
|
+
type: "UserUpload";
|
|
154185
|
+
userId: string;
|
|
154186
|
+
} | {
|
|
154187
|
+
type: "Figma";
|
|
154188
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154189
|
+
} | undefined;
|
|
154190
|
+
pendingUpload?: boolean | undefined;
|
|
154191
|
+
}, {
|
|
154192
|
+
id: string;
|
|
154193
|
+
name: string;
|
|
154194
|
+
url: string;
|
|
154195
|
+
storagePath: string;
|
|
154196
|
+
size: number;
|
|
154197
|
+
deduplicationKey: string;
|
|
154198
|
+
source?: {
|
|
154199
|
+
type: "UserUpload";
|
|
154200
|
+
userId: string;
|
|
154201
|
+
} | {
|
|
154202
|
+
type: "Figma";
|
|
154203
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154204
|
+
} | undefined;
|
|
154205
|
+
pendingUpload?: boolean | undefined;
|
|
154206
|
+
}>;
|
|
154207
|
+
type File = z__default.infer<typeof File>;
|
|
154208
|
+
declare const FileReference: z__default.ZodObject<Pick<{
|
|
154209
|
+
id: z__default.ZodString;
|
|
154210
|
+
name: z__default.ZodString;
|
|
154211
|
+
deduplicationKey: z__default.ZodString;
|
|
154212
|
+
pendingUpload: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
154213
|
+
storagePath: z__default.ZodString;
|
|
154214
|
+
url: z__default.ZodString;
|
|
154215
|
+
size: z__default.ZodNumber;
|
|
154216
|
+
/**
|
|
154217
|
+
* Object describing where did the file come from. Undefined source indicates a file produced by the
|
|
154218
|
+
* system (e.g. thumbnails, etc)
|
|
154219
|
+
*/
|
|
154220
|
+
source: z__default.ZodOptional<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
154221
|
+
type: z__default.ZodLiteral<"UserUpload">;
|
|
154222
|
+
userId: z__default.ZodString;
|
|
154223
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154224
|
+
type: "UserUpload";
|
|
154225
|
+
userId: string;
|
|
154226
|
+
}, {
|
|
154227
|
+
type: "UserUpload";
|
|
154228
|
+
userId: string;
|
|
154229
|
+
}>, z__default.ZodObject<{
|
|
154230
|
+
type: z__default.ZodLiteral<"Figma">;
|
|
154231
|
+
renderMode: z__default.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
154232
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154233
|
+
type: "Figma";
|
|
154234
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154235
|
+
}, {
|
|
154236
|
+
type: "Figma";
|
|
154237
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154238
|
+
}>]>>;
|
|
154239
|
+
}, "id" | "source" | "url"> & {
|
|
154240
|
+
name: z__default.ZodOptional<z__default.ZodString>;
|
|
154241
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
154242
|
+
id: string;
|
|
154243
|
+
url: string;
|
|
154244
|
+
name?: string | undefined;
|
|
154245
|
+
source?: {
|
|
154246
|
+
type: "UserUpload";
|
|
154247
|
+
userId: string;
|
|
154248
|
+
} | {
|
|
154249
|
+
type: "Figma";
|
|
154250
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154251
|
+
} | undefined;
|
|
154252
|
+
}, {
|
|
154253
|
+
id: string;
|
|
154254
|
+
url: string;
|
|
154255
|
+
name?: string | undefined;
|
|
154256
|
+
source?: {
|
|
154257
|
+
type: "UserUpload";
|
|
154258
|
+
userId: string;
|
|
154259
|
+
} | {
|
|
154260
|
+
type: "Figma";
|
|
154261
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
154262
|
+
} | undefined;
|
|
154263
|
+
}>;
|
|
154264
|
+
type FileReference = z__default.infer<typeof FileReference>;
|
|
154265
|
+
|
|
154101
154266
|
declare const ForgeAvatarBuilder: z$1.ZodObject<{
|
|
154102
154267
|
headType: z$1.ZodString;
|
|
154103
154268
|
hairType: z$1.ZodString;
|
|
@@ -154751,13 +154916,13 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154751
154916
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
154752
154917
|
isProtected: z$1.ZodBoolean;
|
|
154753
154918
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
154754
|
-
emailSettings: z$1.ZodObject<{
|
|
154919
|
+
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
154755
154920
|
marketingEmails: z$1.ZodBoolean;
|
|
154756
154921
|
}, "strip", z$1.ZodTypeAny, {
|
|
154757
154922
|
marketingEmails: boolean;
|
|
154758
154923
|
}, {
|
|
154759
154924
|
marketingEmails: boolean;
|
|
154760
|
-
}
|
|
154925
|
+
}>>;
|
|
154761
154926
|
}, "strip", z$1.ZodTypeAny, {
|
|
154762
154927
|
email: string;
|
|
154763
154928
|
id: string;
|
|
@@ -154802,11 +154967,11 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154802
154967
|
};
|
|
154803
154968
|
createdAt: Date;
|
|
154804
154969
|
isProtected: boolean;
|
|
154805
|
-
emailSettings: {
|
|
154806
|
-
marketingEmails: boolean;
|
|
154807
|
-
};
|
|
154808
154970
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154809
154971
|
loggedOutAt?: Date | undefined;
|
|
154972
|
+
emailSettings?: {
|
|
154973
|
+
marketingEmails: boolean;
|
|
154974
|
+
} | undefined;
|
|
154810
154975
|
}, {
|
|
154811
154976
|
email: string;
|
|
154812
154977
|
id: string;
|
|
@@ -154851,11 +155016,11 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154851
155016
|
};
|
|
154852
155017
|
createdAt: Date;
|
|
154853
155018
|
isProtected: boolean;
|
|
154854
|
-
emailSettings: {
|
|
154855
|
-
marketingEmails: boolean;
|
|
154856
|
-
};
|
|
154857
155019
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154858
155020
|
loggedOutAt?: Date | undefined;
|
|
155021
|
+
emailSettings?: {
|
|
155022
|
+
marketingEmails: boolean;
|
|
155023
|
+
} | undefined;
|
|
154859
155024
|
}>>;
|
|
154860
155025
|
}, "strip", z$1.ZodTypeAny, {
|
|
154861
155026
|
type: "User" | "Agent";
|
|
@@ -154906,11 +155071,11 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154906
155071
|
};
|
|
154907
155072
|
createdAt: Date;
|
|
154908
155073
|
isProtected: boolean;
|
|
154909
|
-
emailSettings: {
|
|
154910
|
-
marketingEmails: boolean;
|
|
154911
|
-
};
|
|
154912
155074
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154913
155075
|
loggedOutAt?: Date | undefined;
|
|
155076
|
+
emailSettings?: {
|
|
155077
|
+
marketingEmails: boolean;
|
|
155078
|
+
} | undefined;
|
|
154914
155079
|
} | undefined;
|
|
154915
155080
|
userId?: string | undefined;
|
|
154916
155081
|
agentId?: string | undefined;
|
|
@@ -154977,11 +155142,11 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
154977
155142
|
};
|
|
154978
155143
|
createdAt: Date;
|
|
154979
155144
|
isProtected: boolean;
|
|
154980
|
-
emailSettings: {
|
|
154981
|
-
marketingEmails: boolean;
|
|
154982
|
-
};
|
|
154983
155145
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
154984
155146
|
loggedOutAt?: Date | undefined;
|
|
155147
|
+
emailSettings?: {
|
|
155148
|
+
marketingEmails: boolean;
|
|
155149
|
+
} | undefined;
|
|
154985
155150
|
} | undefined;
|
|
154986
155151
|
userId?: string | undefined;
|
|
154987
155152
|
agentId?: string | undefined;
|
|
@@ -155072,11 +155237,11 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
155072
155237
|
};
|
|
155073
155238
|
createdAt: Date;
|
|
155074
155239
|
isProtected: boolean;
|
|
155075
|
-
emailSettings: {
|
|
155076
|
-
marketingEmails: boolean;
|
|
155077
|
-
};
|
|
155078
155240
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155079
155241
|
loggedOutAt?: Date | undefined;
|
|
155242
|
+
emailSettings?: {
|
|
155243
|
+
marketingEmails: boolean;
|
|
155244
|
+
} | undefined;
|
|
155080
155245
|
} | undefined;
|
|
155081
155246
|
userId?: string | undefined;
|
|
155082
155247
|
agentId?: string | undefined;
|
|
@@ -155156,11 +155321,11 @@ declare const ForgeIterationMessage: z$1.ZodObject<{
|
|
|
155156
155321
|
};
|
|
155157
155322
|
createdAt: Date;
|
|
155158
155323
|
isProtected: boolean;
|
|
155159
|
-
emailSettings: {
|
|
155160
|
-
marketingEmails: boolean;
|
|
155161
|
-
};
|
|
155162
155324
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155163
155325
|
loggedOutAt?: Date | undefined;
|
|
155326
|
+
emailSettings?: {
|
|
155327
|
+
marketingEmails: boolean;
|
|
155328
|
+
} | undefined;
|
|
155164
155329
|
} | undefined;
|
|
155165
155330
|
userId?: string | undefined;
|
|
155166
155331
|
agentId?: string | undefined;
|
|
@@ -155459,13 +155624,13 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155459
155624
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
155460
155625
|
isProtected: z$1.ZodBoolean;
|
|
155461
155626
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
155462
|
-
emailSettings: z$1.ZodObject<{
|
|
155627
|
+
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
155463
155628
|
marketingEmails: z$1.ZodBoolean;
|
|
155464
155629
|
}, "strip", z$1.ZodTypeAny, {
|
|
155465
155630
|
marketingEmails: boolean;
|
|
155466
155631
|
}, {
|
|
155467
155632
|
marketingEmails: boolean;
|
|
155468
|
-
}
|
|
155633
|
+
}>>;
|
|
155469
155634
|
}, "strip", z$1.ZodTypeAny, {
|
|
155470
155635
|
email: string;
|
|
155471
155636
|
id: string;
|
|
@@ -155510,11 +155675,11 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155510
155675
|
};
|
|
155511
155676
|
createdAt: Date;
|
|
155512
155677
|
isProtected: boolean;
|
|
155513
|
-
emailSettings: {
|
|
155514
|
-
marketingEmails: boolean;
|
|
155515
|
-
};
|
|
155516
155678
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155517
155679
|
loggedOutAt?: Date | undefined;
|
|
155680
|
+
emailSettings?: {
|
|
155681
|
+
marketingEmails: boolean;
|
|
155682
|
+
} | undefined;
|
|
155518
155683
|
}, {
|
|
155519
155684
|
email: string;
|
|
155520
155685
|
id: string;
|
|
@@ -155559,11 +155724,11 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155559
155724
|
};
|
|
155560
155725
|
createdAt: Date;
|
|
155561
155726
|
isProtected: boolean;
|
|
155562
|
-
emailSettings: {
|
|
155563
|
-
marketingEmails: boolean;
|
|
155564
|
-
};
|
|
155565
155727
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155566
155728
|
loggedOutAt?: Date | undefined;
|
|
155729
|
+
emailSettings?: {
|
|
155730
|
+
marketingEmails: boolean;
|
|
155731
|
+
} | undefined;
|
|
155567
155732
|
}>>;
|
|
155568
155733
|
}, "strip", z$1.ZodTypeAny, {
|
|
155569
155734
|
type: "User" | "Agent";
|
|
@@ -155614,11 +155779,11 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155614
155779
|
};
|
|
155615
155780
|
createdAt: Date;
|
|
155616
155781
|
isProtected: boolean;
|
|
155617
|
-
emailSettings: {
|
|
155618
|
-
marketingEmails: boolean;
|
|
155619
|
-
};
|
|
155620
155782
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155621
155783
|
loggedOutAt?: Date | undefined;
|
|
155784
|
+
emailSettings?: {
|
|
155785
|
+
marketingEmails: boolean;
|
|
155786
|
+
} | undefined;
|
|
155622
155787
|
} | undefined;
|
|
155623
155788
|
userId?: string | undefined;
|
|
155624
155789
|
agentId?: string | undefined;
|
|
@@ -155685,11 +155850,11 @@ declare const ForgeParticipant: z$1.ZodObject<{
|
|
|
155685
155850
|
};
|
|
155686
155851
|
createdAt: Date;
|
|
155687
155852
|
isProtected: boolean;
|
|
155688
|
-
emailSettings: {
|
|
155689
|
-
marketingEmails: boolean;
|
|
155690
|
-
};
|
|
155691
155853
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
155692
155854
|
loggedOutAt?: Date | undefined;
|
|
155855
|
+
emailSettings?: {
|
|
155856
|
+
marketingEmails: boolean;
|
|
155857
|
+
} | undefined;
|
|
155693
155858
|
} | undefined;
|
|
155694
155859
|
userId?: string | undefined;
|
|
155695
155860
|
agentId?: string | undefined;
|
|
@@ -157720,6 +157885,58 @@ declare const ForgeProjectArtifact: z$1.ZodObject<{
|
|
|
157720
157885
|
createdByUserId: z$1.ZodString;
|
|
157721
157886
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
157722
157887
|
threadId: z$1.ZodOptional<z$1.ZodString>;
|
|
157888
|
+
thumbnail: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
157889
|
+
id: z$1.ZodString;
|
|
157890
|
+
name: z$1.ZodString;
|
|
157891
|
+
deduplicationKey: z$1.ZodString;
|
|
157892
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
157893
|
+
storagePath: z$1.ZodString;
|
|
157894
|
+
url: z$1.ZodString;
|
|
157895
|
+
size: z$1.ZodNumber;
|
|
157896
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
157897
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
157898
|
+
userId: z$1.ZodString;
|
|
157899
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
157900
|
+
type: "UserUpload";
|
|
157901
|
+
userId: string;
|
|
157902
|
+
}, {
|
|
157903
|
+
type: "UserUpload";
|
|
157904
|
+
userId: string;
|
|
157905
|
+
}>, z$1.ZodObject<{
|
|
157906
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
157907
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
157908
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
157909
|
+
type: "Figma";
|
|
157910
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157911
|
+
}, {
|
|
157912
|
+
type: "Figma";
|
|
157913
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157914
|
+
}>]>>;
|
|
157915
|
+
}, "id" | "source" | "url"> & {
|
|
157916
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
157917
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
157918
|
+
id: string;
|
|
157919
|
+
url: string;
|
|
157920
|
+
name?: string | undefined;
|
|
157921
|
+
source?: {
|
|
157922
|
+
type: "UserUpload";
|
|
157923
|
+
userId: string;
|
|
157924
|
+
} | {
|
|
157925
|
+
type: "Figma";
|
|
157926
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157927
|
+
} | undefined;
|
|
157928
|
+
}, {
|
|
157929
|
+
id: string;
|
|
157930
|
+
url: string;
|
|
157931
|
+
name?: string | undefined;
|
|
157932
|
+
source?: {
|
|
157933
|
+
type: "UserUpload";
|
|
157934
|
+
userId: string;
|
|
157935
|
+
} | {
|
|
157936
|
+
type: "Figma";
|
|
157937
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157938
|
+
} | undefined;
|
|
157939
|
+
}>>;
|
|
157723
157940
|
}, "strip", z$1.ZodTypeAny, {
|
|
157724
157941
|
id: string;
|
|
157725
157942
|
createdAt: Date;
|
|
@@ -157730,6 +157947,18 @@ declare const ForgeProjectArtifact: z$1.ZodObject<{
|
|
|
157730
157947
|
projectId: string;
|
|
157731
157948
|
threadId?: string | undefined;
|
|
157732
157949
|
previewUrl?: string | null | undefined;
|
|
157950
|
+
thumbnail?: {
|
|
157951
|
+
id: string;
|
|
157952
|
+
url: string;
|
|
157953
|
+
name?: string | undefined;
|
|
157954
|
+
source?: {
|
|
157955
|
+
type: "UserUpload";
|
|
157956
|
+
userId: string;
|
|
157957
|
+
} | {
|
|
157958
|
+
type: "Figma";
|
|
157959
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157960
|
+
} | undefined;
|
|
157961
|
+
} | undefined;
|
|
157733
157962
|
iterationId?: string | null | undefined;
|
|
157734
157963
|
sectionId?: string | undefined;
|
|
157735
157964
|
}, {
|
|
@@ -157742,6 +157971,18 @@ declare const ForgeProjectArtifact: z$1.ZodObject<{
|
|
|
157742
157971
|
threadId?: string | undefined;
|
|
157743
157972
|
sortOrder?: number | undefined;
|
|
157744
157973
|
previewUrl?: string | null | undefined;
|
|
157974
|
+
thumbnail?: {
|
|
157975
|
+
id: string;
|
|
157976
|
+
url: string;
|
|
157977
|
+
name?: string | undefined;
|
|
157978
|
+
source?: {
|
|
157979
|
+
type: "UserUpload";
|
|
157980
|
+
userId: string;
|
|
157981
|
+
} | {
|
|
157982
|
+
type: "Figma";
|
|
157983
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
157984
|
+
} | undefined;
|
|
157985
|
+
} | undefined;
|
|
157745
157986
|
iterationId?: string | null | undefined;
|
|
157746
157987
|
sectionId?: string | undefined;
|
|
157747
157988
|
}>;
|
|
@@ -157766,6 +158007,58 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
157766
158007
|
numberOfBookmarkedIterations: z$1.ZodDefault<z$1.ZodNumber>;
|
|
157767
158008
|
lastReplyTimestamp: z$1.ZodOptional<z$1.ZodDate>;
|
|
157768
158009
|
threadId: z$1.ZodOptional<z$1.ZodString>;
|
|
158010
|
+
thumbnail: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
158011
|
+
id: z$1.ZodString;
|
|
158012
|
+
name: z$1.ZodString;
|
|
158013
|
+
deduplicationKey: z$1.ZodString;
|
|
158014
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
158015
|
+
storagePath: z$1.ZodString;
|
|
158016
|
+
url: z$1.ZodString;
|
|
158017
|
+
size: z$1.ZodNumber;
|
|
158018
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
158019
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
158020
|
+
userId: z$1.ZodString;
|
|
158021
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
158022
|
+
type: "UserUpload";
|
|
158023
|
+
userId: string;
|
|
158024
|
+
}, {
|
|
158025
|
+
type: "UserUpload";
|
|
158026
|
+
userId: string;
|
|
158027
|
+
}>, z$1.ZodObject<{
|
|
158028
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
158029
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
158030
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
158031
|
+
type: "Figma";
|
|
158032
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158033
|
+
}, {
|
|
158034
|
+
type: "Figma";
|
|
158035
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158036
|
+
}>]>>;
|
|
158037
|
+
}, "id" | "source" | "url"> & {
|
|
158038
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
158039
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
158040
|
+
id: string;
|
|
158041
|
+
url: string;
|
|
158042
|
+
name?: string | undefined;
|
|
158043
|
+
source?: {
|
|
158044
|
+
type: "UserUpload";
|
|
158045
|
+
userId: string;
|
|
158046
|
+
} | {
|
|
158047
|
+
type: "Figma";
|
|
158048
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158049
|
+
} | undefined;
|
|
158050
|
+
}, {
|
|
158051
|
+
id: string;
|
|
158052
|
+
url: string;
|
|
158053
|
+
name?: string | undefined;
|
|
158054
|
+
source?: {
|
|
158055
|
+
type: "UserUpload";
|
|
158056
|
+
userId: string;
|
|
158057
|
+
} | {
|
|
158058
|
+
type: "Figma";
|
|
158059
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158060
|
+
} | undefined;
|
|
158061
|
+
}>>;
|
|
157769
158062
|
}, "strip", z$1.ZodTypeAny, {
|
|
157770
158063
|
status: "Draft" | "ReadyForDevelopment";
|
|
157771
158064
|
id: string;
|
|
@@ -157779,6 +158072,18 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
157779
158072
|
numberOfBookmarkedIterations: number;
|
|
157780
158073
|
updatedAt?: Date | undefined;
|
|
157781
158074
|
threadId?: string | undefined;
|
|
158075
|
+
thumbnail?: {
|
|
158076
|
+
id: string;
|
|
158077
|
+
url: string;
|
|
158078
|
+
name?: string | undefined;
|
|
158079
|
+
source?: {
|
|
158080
|
+
type: "UserUpload";
|
|
158081
|
+
userId: string;
|
|
158082
|
+
} | {
|
|
158083
|
+
type: "Figma";
|
|
158084
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158085
|
+
} | undefined;
|
|
158086
|
+
} | undefined;
|
|
157782
158087
|
sectionId?: string | undefined;
|
|
157783
158088
|
isArchived?: boolean | undefined;
|
|
157784
158089
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -157795,6 +158100,18 @@ declare const ProjectFeature: z$1.ZodObject<{
|
|
|
157795
158100
|
updatedAt?: Date | undefined;
|
|
157796
158101
|
threadId?: string | undefined;
|
|
157797
158102
|
sortOrder?: number | undefined;
|
|
158103
|
+
thumbnail?: {
|
|
158104
|
+
id: string;
|
|
158105
|
+
url: string;
|
|
158106
|
+
name?: string | undefined;
|
|
158107
|
+
source?: {
|
|
158108
|
+
type: "UserUpload";
|
|
158109
|
+
userId: string;
|
|
158110
|
+
} | {
|
|
158111
|
+
type: "Figma";
|
|
158112
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
158113
|
+
} | undefined;
|
|
158114
|
+
} | undefined;
|
|
157798
158115
|
sectionId?: string | undefined;
|
|
157799
158116
|
isArchived?: boolean | undefined;
|
|
157800
158117
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -158252,13 +158569,13 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158252
158569
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
158253
158570
|
isProtected: z$1.ZodBoolean;
|
|
158254
158571
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
158255
|
-
emailSettings: z$1.ZodObject<{
|
|
158572
|
+
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
158256
158573
|
marketingEmails: z$1.ZodBoolean;
|
|
158257
158574
|
}, "strip", z$1.ZodTypeAny, {
|
|
158258
158575
|
marketingEmails: boolean;
|
|
158259
158576
|
}, {
|
|
158260
158577
|
marketingEmails: boolean;
|
|
158261
|
-
}
|
|
158578
|
+
}>>;
|
|
158262
158579
|
}, "strip", z$1.ZodTypeAny, {
|
|
158263
158580
|
email: string;
|
|
158264
158581
|
id: string;
|
|
@@ -158303,11 +158620,11 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158303
158620
|
};
|
|
158304
158621
|
createdAt: Date;
|
|
158305
158622
|
isProtected: boolean;
|
|
158306
|
-
emailSettings: {
|
|
158307
|
-
marketingEmails: boolean;
|
|
158308
|
-
};
|
|
158309
158623
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158310
158624
|
loggedOutAt?: Date | undefined;
|
|
158625
|
+
emailSettings?: {
|
|
158626
|
+
marketingEmails: boolean;
|
|
158627
|
+
} | undefined;
|
|
158311
158628
|
}, {
|
|
158312
158629
|
email: string;
|
|
158313
158630
|
id: string;
|
|
@@ -158352,11 +158669,11 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158352
158669
|
};
|
|
158353
158670
|
createdAt: Date;
|
|
158354
158671
|
isProtected: boolean;
|
|
158355
|
-
emailSettings: {
|
|
158356
|
-
marketingEmails: boolean;
|
|
158357
|
-
};
|
|
158358
158672
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158359
158673
|
loggedOutAt?: Date | undefined;
|
|
158674
|
+
emailSettings?: {
|
|
158675
|
+
marketingEmails: boolean;
|
|
158676
|
+
} | undefined;
|
|
158360
158677
|
}>>;
|
|
158361
158678
|
}, "strip", z$1.ZodTypeAny, {
|
|
158362
158679
|
type: "User" | "Agent";
|
|
@@ -158407,11 +158724,11 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158407
158724
|
};
|
|
158408
158725
|
createdAt: Date;
|
|
158409
158726
|
isProtected: boolean;
|
|
158410
|
-
emailSettings: {
|
|
158411
|
-
marketingEmails: boolean;
|
|
158412
|
-
};
|
|
158413
158727
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158414
158728
|
loggedOutAt?: Date | undefined;
|
|
158729
|
+
emailSettings?: {
|
|
158730
|
+
marketingEmails: boolean;
|
|
158731
|
+
} | undefined;
|
|
158415
158732
|
} | undefined;
|
|
158416
158733
|
userId?: string | undefined;
|
|
158417
158734
|
agentId?: string | undefined;
|
|
@@ -158478,11 +158795,11 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158478
158795
|
};
|
|
158479
158796
|
createdAt: Date;
|
|
158480
158797
|
isProtected: boolean;
|
|
158481
|
-
emailSettings: {
|
|
158482
|
-
marketingEmails: boolean;
|
|
158483
|
-
};
|
|
158484
158798
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158485
158799
|
loggedOutAt?: Date | undefined;
|
|
158800
|
+
emailSettings?: {
|
|
158801
|
+
marketingEmails: boolean;
|
|
158802
|
+
} | undefined;
|
|
158486
158803
|
} | undefined;
|
|
158487
158804
|
userId?: string | undefined;
|
|
158488
158805
|
agentId?: string | undefined;
|
|
@@ -158573,11 +158890,11 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158573
158890
|
};
|
|
158574
158891
|
createdAt: Date;
|
|
158575
158892
|
isProtected: boolean;
|
|
158576
|
-
emailSettings: {
|
|
158577
|
-
marketingEmails: boolean;
|
|
158578
|
-
};
|
|
158579
158893
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158580
158894
|
loggedOutAt?: Date | undefined;
|
|
158895
|
+
emailSettings?: {
|
|
158896
|
+
marketingEmails: boolean;
|
|
158897
|
+
} | undefined;
|
|
158581
158898
|
} | undefined;
|
|
158582
158899
|
userId?: string | undefined;
|
|
158583
158900
|
agentId?: string | undefined;
|
|
@@ -158657,11 +158974,11 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158657
158974
|
};
|
|
158658
158975
|
createdAt: Date;
|
|
158659
158976
|
isProtected: boolean;
|
|
158660
|
-
emailSettings: {
|
|
158661
|
-
marketingEmails: boolean;
|
|
158662
|
-
};
|
|
158663
158977
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158664
158978
|
loggedOutAt?: Date | undefined;
|
|
158979
|
+
emailSettings?: {
|
|
158980
|
+
marketingEmails: boolean;
|
|
158981
|
+
} | undefined;
|
|
158665
158982
|
} | undefined;
|
|
158666
158983
|
userId?: string | undefined;
|
|
158667
158984
|
agentId?: string | undefined;
|
|
@@ -158886,11 +159203,11 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
158886
159203
|
};
|
|
158887
159204
|
createdAt: Date;
|
|
158888
159205
|
isProtected: boolean;
|
|
158889
|
-
emailSettings: {
|
|
158890
|
-
marketingEmails: boolean;
|
|
158891
|
-
};
|
|
158892
159206
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
158893
159207
|
loggedOutAt?: Date | undefined;
|
|
159208
|
+
emailSettings?: {
|
|
159209
|
+
marketingEmails: boolean;
|
|
159210
|
+
} | undefined;
|
|
158894
159211
|
} | undefined;
|
|
158895
159212
|
userId?: string | undefined;
|
|
158896
159213
|
agentId?: string | undefined;
|
|
@@ -159022,11 +159339,11 @@ declare const ForgeProjectIteration: z$1.ZodObject<{
|
|
|
159022
159339
|
};
|
|
159023
159340
|
createdAt: Date;
|
|
159024
159341
|
isProtected: boolean;
|
|
159025
|
-
emailSettings: {
|
|
159026
|
-
marketingEmails: boolean;
|
|
159027
|
-
};
|
|
159028
159342
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
159029
159343
|
loggedOutAt?: Date | undefined;
|
|
159344
|
+
emailSettings?: {
|
|
159345
|
+
marketingEmails: boolean;
|
|
159346
|
+
} | undefined;
|
|
159030
159347
|
} | undefined;
|
|
159031
159348
|
userId?: string | undefined;
|
|
159032
159349
|
agentId?: string | undefined;
|
|
@@ -188409,6 +188726,58 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188409
188726
|
createdByUserId: z$1.ZodString;
|
|
188410
188727
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
188411
188728
|
threadId: z$1.ZodOptional<z$1.ZodString>;
|
|
188729
|
+
thumbnail: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
188730
|
+
id: z$1.ZodString;
|
|
188731
|
+
name: z$1.ZodString;
|
|
188732
|
+
deduplicationKey: z$1.ZodString;
|
|
188733
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
188734
|
+
storagePath: z$1.ZodString;
|
|
188735
|
+
url: z$1.ZodString;
|
|
188736
|
+
size: z$1.ZodNumber;
|
|
188737
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
188738
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
188739
|
+
userId: z$1.ZodString;
|
|
188740
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
188741
|
+
type: "UserUpload";
|
|
188742
|
+
userId: string;
|
|
188743
|
+
}, {
|
|
188744
|
+
type: "UserUpload";
|
|
188745
|
+
userId: string;
|
|
188746
|
+
}>, z$1.ZodObject<{
|
|
188747
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
188748
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
188749
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
188750
|
+
type: "Figma";
|
|
188751
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188752
|
+
}, {
|
|
188753
|
+
type: "Figma";
|
|
188754
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188755
|
+
}>]>>;
|
|
188756
|
+
}, "id" | "source" | "url"> & {
|
|
188757
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
188758
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
188759
|
+
id: string;
|
|
188760
|
+
url: string;
|
|
188761
|
+
name?: string | undefined;
|
|
188762
|
+
source?: {
|
|
188763
|
+
type: "UserUpload";
|
|
188764
|
+
userId: string;
|
|
188765
|
+
} | {
|
|
188766
|
+
type: "Figma";
|
|
188767
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188768
|
+
} | undefined;
|
|
188769
|
+
}, {
|
|
188770
|
+
id: string;
|
|
188771
|
+
url: string;
|
|
188772
|
+
name?: string | undefined;
|
|
188773
|
+
source?: {
|
|
188774
|
+
type: "UserUpload";
|
|
188775
|
+
userId: string;
|
|
188776
|
+
} | {
|
|
188777
|
+
type: "Figma";
|
|
188778
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188779
|
+
} | undefined;
|
|
188780
|
+
}>>;
|
|
188412
188781
|
}, "strip", z$1.ZodTypeAny, {
|
|
188413
188782
|
id: string;
|
|
188414
188783
|
createdAt: Date;
|
|
@@ -188419,6 +188788,18 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188419
188788
|
projectId: string;
|
|
188420
188789
|
threadId?: string | undefined;
|
|
188421
188790
|
previewUrl?: string | null | undefined;
|
|
188791
|
+
thumbnail?: {
|
|
188792
|
+
id: string;
|
|
188793
|
+
url: string;
|
|
188794
|
+
name?: string | undefined;
|
|
188795
|
+
source?: {
|
|
188796
|
+
type: "UserUpload";
|
|
188797
|
+
userId: string;
|
|
188798
|
+
} | {
|
|
188799
|
+
type: "Figma";
|
|
188800
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188801
|
+
} | undefined;
|
|
188802
|
+
} | undefined;
|
|
188422
188803
|
iterationId?: string | null | undefined;
|
|
188423
188804
|
sectionId?: string | undefined;
|
|
188424
188805
|
}, {
|
|
@@ -188431,6 +188812,18 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188431
188812
|
threadId?: string | undefined;
|
|
188432
188813
|
sortOrder?: number | undefined;
|
|
188433
188814
|
previewUrl?: string | null | undefined;
|
|
188815
|
+
thumbnail?: {
|
|
188816
|
+
id: string;
|
|
188817
|
+
url: string;
|
|
188818
|
+
name?: string | undefined;
|
|
188819
|
+
source?: {
|
|
188820
|
+
type: "UserUpload";
|
|
188821
|
+
userId: string;
|
|
188822
|
+
} | {
|
|
188823
|
+
type: "Figma";
|
|
188824
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188825
|
+
} | undefined;
|
|
188826
|
+
} | undefined;
|
|
188434
188827
|
iterationId?: string | null | undefined;
|
|
188435
188828
|
sectionId?: string | undefined;
|
|
188436
188829
|
}>, "many">;
|
|
@@ -188452,6 +188845,58 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188452
188845
|
numberOfBookmarkedIterations: z$1.ZodDefault<z$1.ZodNumber>;
|
|
188453
188846
|
lastReplyTimestamp: z$1.ZodOptional<z$1.ZodDate>;
|
|
188454
188847
|
threadId: z$1.ZodOptional<z$1.ZodString>;
|
|
188848
|
+
thumbnail: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
188849
|
+
id: z$1.ZodString;
|
|
188850
|
+
name: z$1.ZodString;
|
|
188851
|
+
deduplicationKey: z$1.ZodString;
|
|
188852
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
188853
|
+
storagePath: z$1.ZodString;
|
|
188854
|
+
url: z$1.ZodString;
|
|
188855
|
+
size: z$1.ZodNumber;
|
|
188856
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
188857
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
188858
|
+
userId: z$1.ZodString;
|
|
188859
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
188860
|
+
type: "UserUpload";
|
|
188861
|
+
userId: string;
|
|
188862
|
+
}, {
|
|
188863
|
+
type: "UserUpload";
|
|
188864
|
+
userId: string;
|
|
188865
|
+
}>, z$1.ZodObject<{
|
|
188866
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
188867
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
188868
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
188869
|
+
type: "Figma";
|
|
188870
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188871
|
+
}, {
|
|
188872
|
+
type: "Figma";
|
|
188873
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188874
|
+
}>]>>;
|
|
188875
|
+
}, "id" | "source" | "url"> & {
|
|
188876
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
188877
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
188878
|
+
id: string;
|
|
188879
|
+
url: string;
|
|
188880
|
+
name?: string | undefined;
|
|
188881
|
+
source?: {
|
|
188882
|
+
type: "UserUpload";
|
|
188883
|
+
userId: string;
|
|
188884
|
+
} | {
|
|
188885
|
+
type: "Figma";
|
|
188886
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188887
|
+
} | undefined;
|
|
188888
|
+
}, {
|
|
188889
|
+
id: string;
|
|
188890
|
+
url: string;
|
|
188891
|
+
name?: string | undefined;
|
|
188892
|
+
source?: {
|
|
188893
|
+
type: "UserUpload";
|
|
188894
|
+
userId: string;
|
|
188895
|
+
} | {
|
|
188896
|
+
type: "Figma";
|
|
188897
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188898
|
+
} | undefined;
|
|
188899
|
+
}>>;
|
|
188455
188900
|
}, "strip", z$1.ZodTypeAny, {
|
|
188456
188901
|
status: "Draft" | "ReadyForDevelopment";
|
|
188457
188902
|
id: string;
|
|
@@ -188465,6 +188910,18 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188465
188910
|
numberOfBookmarkedIterations: number;
|
|
188466
188911
|
updatedAt?: Date | undefined;
|
|
188467
188912
|
threadId?: string | undefined;
|
|
188913
|
+
thumbnail?: {
|
|
188914
|
+
id: string;
|
|
188915
|
+
url: string;
|
|
188916
|
+
name?: string | undefined;
|
|
188917
|
+
source?: {
|
|
188918
|
+
type: "UserUpload";
|
|
188919
|
+
userId: string;
|
|
188920
|
+
} | {
|
|
188921
|
+
type: "Figma";
|
|
188922
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188923
|
+
} | undefined;
|
|
188924
|
+
} | undefined;
|
|
188468
188925
|
sectionId?: string | undefined;
|
|
188469
188926
|
isArchived?: boolean | undefined;
|
|
188470
188927
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -188481,6 +188938,18 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188481
188938
|
updatedAt?: Date | undefined;
|
|
188482
188939
|
threadId?: string | undefined;
|
|
188483
188940
|
sortOrder?: number | undefined;
|
|
188941
|
+
thumbnail?: {
|
|
188942
|
+
id: string;
|
|
188943
|
+
url: string;
|
|
188944
|
+
name?: string | undefined;
|
|
188945
|
+
source?: {
|
|
188946
|
+
type: "UserUpload";
|
|
188947
|
+
userId: string;
|
|
188948
|
+
} | {
|
|
188949
|
+
type: "Figma";
|
|
188950
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
188951
|
+
} | undefined;
|
|
188952
|
+
} | undefined;
|
|
188484
188953
|
sectionId?: string | undefined;
|
|
188485
188954
|
isArchived?: boolean | undefined;
|
|
188486
188955
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -188578,6 +189047,18 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188578
189047
|
numberOfBookmarkedIterations: number;
|
|
188579
189048
|
updatedAt?: Date | undefined;
|
|
188580
189049
|
threadId?: string | undefined;
|
|
189050
|
+
thumbnail?: {
|
|
189051
|
+
id: string;
|
|
189052
|
+
url: string;
|
|
189053
|
+
name?: string | undefined;
|
|
189054
|
+
source?: {
|
|
189055
|
+
type: "UserUpload";
|
|
189056
|
+
userId: string;
|
|
189057
|
+
} | {
|
|
189058
|
+
type: "Figma";
|
|
189059
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189060
|
+
} | undefined;
|
|
189061
|
+
} | undefined;
|
|
188581
189062
|
sectionId?: string | undefined;
|
|
188582
189063
|
isArchived?: boolean | undefined;
|
|
188583
189064
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -188594,6 +189075,18 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188594
189075
|
projectId: string;
|
|
188595
189076
|
threadId?: string | undefined;
|
|
188596
189077
|
previewUrl?: string | null | undefined;
|
|
189078
|
+
thumbnail?: {
|
|
189079
|
+
id: string;
|
|
189080
|
+
url: string;
|
|
189081
|
+
name?: string | undefined;
|
|
189082
|
+
source?: {
|
|
189083
|
+
type: "UserUpload";
|
|
189084
|
+
userId: string;
|
|
189085
|
+
} | {
|
|
189086
|
+
type: "Figma";
|
|
189087
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189088
|
+
} | undefined;
|
|
189089
|
+
} | undefined;
|
|
188597
189090
|
iterationId?: string | null | undefined;
|
|
188598
189091
|
sectionId?: string | undefined;
|
|
188599
189092
|
}[];
|
|
@@ -188636,6 +189129,18 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188636
189129
|
updatedAt?: Date | undefined;
|
|
188637
189130
|
threadId?: string | undefined;
|
|
188638
189131
|
sortOrder?: number | undefined;
|
|
189132
|
+
thumbnail?: {
|
|
189133
|
+
id: string;
|
|
189134
|
+
url: string;
|
|
189135
|
+
name?: string | undefined;
|
|
189136
|
+
source?: {
|
|
189137
|
+
type: "UserUpload";
|
|
189138
|
+
userId: string;
|
|
189139
|
+
} | {
|
|
189140
|
+
type: "Figma";
|
|
189141
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189142
|
+
} | undefined;
|
|
189143
|
+
} | undefined;
|
|
188639
189144
|
sectionId?: string | undefined;
|
|
188640
189145
|
isArchived?: boolean | undefined;
|
|
188641
189146
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -188654,6 +189159,18 @@ declare const ForgeProjectRoomInitialState: z$1.ZodObject<{
|
|
|
188654
189159
|
threadId?: string | undefined;
|
|
188655
189160
|
sortOrder?: number | undefined;
|
|
188656
189161
|
previewUrl?: string | null | undefined;
|
|
189162
|
+
thumbnail?: {
|
|
189163
|
+
id: string;
|
|
189164
|
+
url: string;
|
|
189165
|
+
name?: string | undefined;
|
|
189166
|
+
source?: {
|
|
189167
|
+
type: "UserUpload";
|
|
189168
|
+
userId: string;
|
|
189169
|
+
} | {
|
|
189170
|
+
type: "Figma";
|
|
189171
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189172
|
+
} | undefined;
|
|
189173
|
+
} | undefined;
|
|
188657
189174
|
iterationId?: string | null | undefined;
|
|
188658
189175
|
sectionId?: string | undefined;
|
|
188659
189176
|
}[];
|
|
@@ -188699,6 +189216,58 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188699
189216
|
createdByUserId: z$1.ZodString;
|
|
188700
189217
|
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
188701
189218
|
threadId: z$1.ZodOptional<z$1.ZodString>;
|
|
189219
|
+
thumbnail: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
189220
|
+
id: z$1.ZodString;
|
|
189221
|
+
name: z$1.ZodString;
|
|
189222
|
+
deduplicationKey: z$1.ZodString;
|
|
189223
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
189224
|
+
storagePath: z$1.ZodString;
|
|
189225
|
+
url: z$1.ZodString;
|
|
189226
|
+
size: z$1.ZodNumber;
|
|
189227
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
189228
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
189229
|
+
userId: z$1.ZodString;
|
|
189230
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
189231
|
+
type: "UserUpload";
|
|
189232
|
+
userId: string;
|
|
189233
|
+
}, {
|
|
189234
|
+
type: "UserUpload";
|
|
189235
|
+
userId: string;
|
|
189236
|
+
}>, z$1.ZodObject<{
|
|
189237
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
189238
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
189239
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
189240
|
+
type: "Figma";
|
|
189241
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189242
|
+
}, {
|
|
189243
|
+
type: "Figma";
|
|
189244
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189245
|
+
}>]>>;
|
|
189246
|
+
}, "id" | "source" | "url"> & {
|
|
189247
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
189248
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
189249
|
+
id: string;
|
|
189250
|
+
url: string;
|
|
189251
|
+
name?: string | undefined;
|
|
189252
|
+
source?: {
|
|
189253
|
+
type: "UserUpload";
|
|
189254
|
+
userId: string;
|
|
189255
|
+
} | {
|
|
189256
|
+
type: "Figma";
|
|
189257
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189258
|
+
} | undefined;
|
|
189259
|
+
}, {
|
|
189260
|
+
id: string;
|
|
189261
|
+
url: string;
|
|
189262
|
+
name?: string | undefined;
|
|
189263
|
+
source?: {
|
|
189264
|
+
type: "UserUpload";
|
|
189265
|
+
userId: string;
|
|
189266
|
+
} | {
|
|
189267
|
+
type: "Figma";
|
|
189268
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189269
|
+
} | undefined;
|
|
189270
|
+
}>>;
|
|
188702
189271
|
}, "strip", z$1.ZodTypeAny, {
|
|
188703
189272
|
id: string;
|
|
188704
189273
|
createdAt: Date;
|
|
@@ -188709,6 +189278,18 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188709
189278
|
projectId: string;
|
|
188710
189279
|
threadId?: string | undefined;
|
|
188711
189280
|
previewUrl?: string | null | undefined;
|
|
189281
|
+
thumbnail?: {
|
|
189282
|
+
id: string;
|
|
189283
|
+
url: string;
|
|
189284
|
+
name?: string | undefined;
|
|
189285
|
+
source?: {
|
|
189286
|
+
type: "UserUpload";
|
|
189287
|
+
userId: string;
|
|
189288
|
+
} | {
|
|
189289
|
+
type: "Figma";
|
|
189290
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189291
|
+
} | undefined;
|
|
189292
|
+
} | undefined;
|
|
188712
189293
|
iterationId?: string | null | undefined;
|
|
188713
189294
|
sectionId?: string | undefined;
|
|
188714
189295
|
}, {
|
|
@@ -188721,6 +189302,18 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188721
189302
|
threadId?: string | undefined;
|
|
188722
189303
|
sortOrder?: number | undefined;
|
|
188723
189304
|
previewUrl?: string | null | undefined;
|
|
189305
|
+
thumbnail?: {
|
|
189306
|
+
id: string;
|
|
189307
|
+
url: string;
|
|
189308
|
+
name?: string | undefined;
|
|
189309
|
+
source?: {
|
|
189310
|
+
type: "UserUpload";
|
|
189311
|
+
userId: string;
|
|
189312
|
+
} | {
|
|
189313
|
+
type: "Figma";
|
|
189314
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189315
|
+
} | undefined;
|
|
189316
|
+
} | undefined;
|
|
188724
189317
|
iterationId?: string | null | undefined;
|
|
188725
189318
|
sectionId?: string | undefined;
|
|
188726
189319
|
}>, "many">>;
|
|
@@ -188743,6 +189336,58 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188743
189336
|
numberOfBookmarkedIterations: z$1.ZodDefault<z$1.ZodNumber>;
|
|
188744
189337
|
lastReplyTimestamp: z$1.ZodOptional<z$1.ZodDate>;
|
|
188745
189338
|
threadId: z$1.ZodOptional<z$1.ZodString>;
|
|
189339
|
+
thumbnail: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
189340
|
+
id: z$1.ZodString;
|
|
189341
|
+
name: z$1.ZodString;
|
|
189342
|
+
deduplicationKey: z$1.ZodString;
|
|
189343
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
189344
|
+
storagePath: z$1.ZodString;
|
|
189345
|
+
url: z$1.ZodString;
|
|
189346
|
+
size: z$1.ZodNumber;
|
|
189347
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
189348
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
189349
|
+
userId: z$1.ZodString;
|
|
189350
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
189351
|
+
type: "UserUpload";
|
|
189352
|
+
userId: string;
|
|
189353
|
+
}, {
|
|
189354
|
+
type: "UserUpload";
|
|
189355
|
+
userId: string;
|
|
189356
|
+
}>, z$1.ZodObject<{
|
|
189357
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
189358
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
189359
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
189360
|
+
type: "Figma";
|
|
189361
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189362
|
+
}, {
|
|
189363
|
+
type: "Figma";
|
|
189364
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189365
|
+
}>]>>;
|
|
189366
|
+
}, "id" | "source" | "url"> & {
|
|
189367
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
189368
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
189369
|
+
id: string;
|
|
189370
|
+
url: string;
|
|
189371
|
+
name?: string | undefined;
|
|
189372
|
+
source?: {
|
|
189373
|
+
type: "UserUpload";
|
|
189374
|
+
userId: string;
|
|
189375
|
+
} | {
|
|
189376
|
+
type: "Figma";
|
|
189377
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189378
|
+
} | undefined;
|
|
189379
|
+
}, {
|
|
189380
|
+
id: string;
|
|
189381
|
+
url: string;
|
|
189382
|
+
name?: string | undefined;
|
|
189383
|
+
source?: {
|
|
189384
|
+
type: "UserUpload";
|
|
189385
|
+
userId: string;
|
|
189386
|
+
} | {
|
|
189387
|
+
type: "Figma";
|
|
189388
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189389
|
+
} | undefined;
|
|
189390
|
+
}>>;
|
|
188746
189391
|
}, "strip", z$1.ZodTypeAny, {
|
|
188747
189392
|
status: "Draft" | "ReadyForDevelopment";
|
|
188748
189393
|
id: string;
|
|
@@ -188756,6 +189401,18 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188756
189401
|
numberOfBookmarkedIterations: number;
|
|
188757
189402
|
updatedAt?: Date | undefined;
|
|
188758
189403
|
threadId?: string | undefined;
|
|
189404
|
+
thumbnail?: {
|
|
189405
|
+
id: string;
|
|
189406
|
+
url: string;
|
|
189407
|
+
name?: string | undefined;
|
|
189408
|
+
source?: {
|
|
189409
|
+
type: "UserUpload";
|
|
189410
|
+
userId: string;
|
|
189411
|
+
} | {
|
|
189412
|
+
type: "Figma";
|
|
189413
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189414
|
+
} | undefined;
|
|
189415
|
+
} | undefined;
|
|
188759
189416
|
sectionId?: string | undefined;
|
|
188760
189417
|
isArchived?: boolean | undefined;
|
|
188761
189418
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -188772,6 +189429,18 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188772
189429
|
updatedAt?: Date | undefined;
|
|
188773
189430
|
threadId?: string | undefined;
|
|
188774
189431
|
sortOrder?: number | undefined;
|
|
189432
|
+
thumbnail?: {
|
|
189433
|
+
id: string;
|
|
189434
|
+
url: string;
|
|
189435
|
+
name?: string | undefined;
|
|
189436
|
+
source?: {
|
|
189437
|
+
type: "UserUpload";
|
|
189438
|
+
userId: string;
|
|
189439
|
+
} | {
|
|
189440
|
+
type: "Figma";
|
|
189441
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189442
|
+
} | undefined;
|
|
189443
|
+
} | undefined;
|
|
188775
189444
|
sectionId?: string | undefined;
|
|
188776
189445
|
isArchived?: boolean | undefined;
|
|
188777
189446
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -188873,6 +189542,18 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188873
189542
|
numberOfBookmarkedIterations: number;
|
|
188874
189543
|
updatedAt?: Date | undefined;
|
|
188875
189544
|
threadId?: string | undefined;
|
|
189545
|
+
thumbnail?: {
|
|
189546
|
+
id: string;
|
|
189547
|
+
url: string;
|
|
189548
|
+
name?: string | undefined;
|
|
189549
|
+
source?: {
|
|
189550
|
+
type: "UserUpload";
|
|
189551
|
+
userId: string;
|
|
189552
|
+
} | {
|
|
189553
|
+
type: "Figma";
|
|
189554
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189555
|
+
} | undefined;
|
|
189556
|
+
} | undefined;
|
|
188876
189557
|
sectionId?: string | undefined;
|
|
188877
189558
|
isArchived?: boolean | undefined;
|
|
188878
189559
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -188890,6 +189571,18 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188890
189571
|
projectId: string;
|
|
188891
189572
|
threadId?: string | undefined;
|
|
188892
189573
|
previewUrl?: string | null | undefined;
|
|
189574
|
+
thumbnail?: {
|
|
189575
|
+
id: string;
|
|
189576
|
+
url: string;
|
|
189577
|
+
name?: string | undefined;
|
|
189578
|
+
source?: {
|
|
189579
|
+
type: "UserUpload";
|
|
189580
|
+
userId: string;
|
|
189581
|
+
} | {
|
|
189582
|
+
type: "Figma";
|
|
189583
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189584
|
+
} | undefined;
|
|
189585
|
+
} | undefined;
|
|
188893
189586
|
iterationId?: string | null | undefined;
|
|
188894
189587
|
sectionId?: string | undefined;
|
|
188895
189588
|
}[] | undefined;
|
|
@@ -188936,6 +189629,18 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188936
189629
|
updatedAt?: Date | undefined;
|
|
188937
189630
|
threadId?: string | undefined;
|
|
188938
189631
|
sortOrder?: number | undefined;
|
|
189632
|
+
thumbnail?: {
|
|
189633
|
+
id: string;
|
|
189634
|
+
url: string;
|
|
189635
|
+
name?: string | undefined;
|
|
189636
|
+
source?: {
|
|
189637
|
+
type: "UserUpload";
|
|
189638
|
+
userId: string;
|
|
189639
|
+
} | {
|
|
189640
|
+
type: "Figma";
|
|
189641
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189642
|
+
} | undefined;
|
|
189643
|
+
} | undefined;
|
|
188939
189644
|
sectionId?: string | undefined;
|
|
188940
189645
|
isArchived?: boolean | undefined;
|
|
188941
189646
|
e2bTemplateId?: string | null | undefined;
|
|
@@ -188955,6 +189660,18 @@ declare const ForgeProjectRoomUpdate: z$1.ZodObject<{
|
|
|
188955
189660
|
threadId?: string | undefined;
|
|
188956
189661
|
sortOrder?: number | undefined;
|
|
188957
189662
|
previewUrl?: string | null | undefined;
|
|
189663
|
+
thumbnail?: {
|
|
189664
|
+
id: string;
|
|
189665
|
+
url: string;
|
|
189666
|
+
name?: string | undefined;
|
|
189667
|
+
source?: {
|
|
189668
|
+
type: "UserUpload";
|
|
189669
|
+
userId: string;
|
|
189670
|
+
} | {
|
|
189671
|
+
type: "Figma";
|
|
189672
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
189673
|
+
} | undefined;
|
|
189674
|
+
} | undefined;
|
|
188958
189675
|
iterationId?: string | null | undefined;
|
|
188959
189676
|
sectionId?: string | undefined;
|
|
188960
189677
|
}[] | undefined;
|
|
@@ -190405,13 +191122,13 @@ declare const User: z$1.ZodObject<{
|
|
|
190405
191122
|
loggedOutAt: z$1.ZodOptional<z$1.ZodDate>;
|
|
190406
191123
|
isProtected: z$1.ZodBoolean;
|
|
190407
191124
|
source: z$1.ZodOptional<z$1.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
190408
|
-
emailSettings: z$1.ZodObject<{
|
|
191125
|
+
emailSettings: z$1.ZodOptional<z$1.ZodObject<{
|
|
190409
191126
|
marketingEmails: z$1.ZodBoolean;
|
|
190410
191127
|
}, "strip", z$1.ZodTypeAny, {
|
|
190411
191128
|
marketingEmails: boolean;
|
|
190412
191129
|
}, {
|
|
190413
191130
|
marketingEmails: boolean;
|
|
190414
|
-
}
|
|
191131
|
+
}>>;
|
|
190415
191132
|
}, "strip", z$1.ZodTypeAny, {
|
|
190416
191133
|
email: string;
|
|
190417
191134
|
id: string;
|
|
@@ -190456,11 +191173,11 @@ declare const User: z$1.ZodObject<{
|
|
|
190456
191173
|
};
|
|
190457
191174
|
createdAt: Date;
|
|
190458
191175
|
isProtected: boolean;
|
|
190459
|
-
emailSettings: {
|
|
190460
|
-
marketingEmails: boolean;
|
|
190461
|
-
};
|
|
190462
191176
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
190463
191177
|
loggedOutAt?: Date | undefined;
|
|
191178
|
+
emailSettings?: {
|
|
191179
|
+
marketingEmails: boolean;
|
|
191180
|
+
} | undefined;
|
|
190464
191181
|
}, {
|
|
190465
191182
|
email: string;
|
|
190466
191183
|
id: string;
|
|
@@ -190505,11 +191222,11 @@ declare const User: z$1.ZodObject<{
|
|
|
190505
191222
|
};
|
|
190506
191223
|
createdAt: Date;
|
|
190507
191224
|
isProtected: boolean;
|
|
190508
|
-
emailSettings: {
|
|
190509
|
-
marketingEmails: boolean;
|
|
190510
|
-
};
|
|
190511
191225
|
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
190512
191226
|
loggedOutAt?: Date | undefined;
|
|
191227
|
+
emailSettings?: {
|
|
191228
|
+
marketingEmails: boolean;
|
|
191229
|
+
} | undefined;
|
|
190513
191230
|
}>;
|
|
190514
191231
|
type User = z$1.infer<typeof User>;
|
|
190515
191232
|
|
|
@@ -190518,4 +191235,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
190518
191235
|
token: PersonalAccessToken;
|
|
190519
191236
|
};
|
|
190520
191237
|
|
|
190521
|
-
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProjectArtifactRoom, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeParticipant, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeRelation, ForgeRelationType, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageScreenshotInput, PageScreenshotOutput, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, SentryTraceHeaders, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserEmailSettings, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, hasTruthyProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
191238
|
+
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BaseTheme, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeFeatureRoom, type CreateForgeProjectArtifactRoom, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateForgeProjectRoom, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreateProjectFeature, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, File, FileFigmaRenderMode, FileReference, FileSource, FileSourceFigma, FileSourceUpload, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatMessageUserScore, ForgeChatMessageUserScoreType, ForgeChatThread, type ForgeFeatureParsedRoomId, ForgeFeatureRoom, type ForgeFeatureRoomOwner, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeParticipant, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectFigmaNode, ForgeProjectFigmaNodeRenderInput, ForgeProjectFile, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, ForgeProjectRoomInitialState, type ForgeProjectRoomOwner, ForgeProjectRoomUpdate, ForgeProjectSectionChildType, ForgeRelation, ForgeRelationType, ForgeSection, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, Id, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type NullToUndefined, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageScreenshotInput, PageScreenshotOutput, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, ProjectFeatureStatus, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, SentryTraceHeaders, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SortOrder, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeFeatureRoom, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectRoom, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdateProjectFeature, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserEmailSettings, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceSeatType, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, deriveWorkspaceSeatTypeFromRole, designTokenImportModelTypeFilter, designTokenTypeFilter, errorToString, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, hasTruthyProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, nullsToUndefined, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|