@supernova-studio/model 1.12.1 → 1.12.2

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.ts CHANGED
@@ -154720,6 +154720,2004 @@ declare const ForgeParticipant: z.ZodObject<{
154720
154720
  }>;
154721
154721
  type ForgeParticipant = z.infer<typeof ForgeParticipant>;
154722
154722
 
154723
+ declare const ForgeProjectArtifactContent: z.ZodObject<{
154724
+ id: z.ZodString;
154725
+ artifactId: z.ZodString;
154726
+ projectId: z.ZodString;
154727
+ createdAt: z.ZodDate;
154728
+ updatedAt: z.ZodDate;
154729
+ data: z.ZodObject<{
154730
+ items: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
154731
+ id: z.ZodString;
154732
+ type: z.ZodLiteral<"Block">;
154733
+ data: z.ZodObject<{
154734
+ packageId: z.ZodString;
154735
+ variantId: z.ZodOptional<z.ZodString>;
154736
+ indentLevel: z.ZodNumber;
154737
+ appearance: z.ZodOptional<z.ZodObject<{
154738
+ itemBackgroundColor: z.ZodOptional<z.ZodObject<{
154739
+ value: z.ZodString;
154740
+ referencedTokenId: z.ZodOptional<z.ZodString>;
154741
+ }, "strip", z.ZodTypeAny, {
154742
+ value: string;
154743
+ referencedTokenId?: string | undefined;
154744
+ }, {
154745
+ value: string;
154746
+ referencedTokenId?: string | undefined;
154747
+ }>>;
154748
+ numberOfColumns: z.ZodOptional<z.ZodNumber>;
154749
+ }, "strip", z.ZodTypeAny, {
154750
+ numberOfColumns?: number | undefined;
154751
+ itemBackgroundColor?: {
154752
+ value: string;
154753
+ referencedTokenId?: string | undefined;
154754
+ } | undefined;
154755
+ }, {
154756
+ numberOfColumns?: number | undefined;
154757
+ itemBackgroundColor?: {
154758
+ value: string;
154759
+ referencedTokenId?: string | undefined;
154760
+ } | undefined;
154761
+ }>>;
154762
+ items: z.ZodArray<z.ZodObject<{
154763
+ id: z.ZodString;
154764
+ linksTo: z.ZodOptional<z.ZodObject<{
154765
+ type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
154766
+ documentationItemId: z.ZodOptional<z.ZodString>;
154767
+ pageHeadingId: z.ZodOptional<z.ZodString>;
154768
+ url: z.ZodOptional<z.ZodString>;
154769
+ openInNewTab: z.ZodOptional<z.ZodBoolean>;
154770
+ }, "strip", z.ZodTypeAny, {
154771
+ type: "DocumentationItem" | "PageHeading" | "Url";
154772
+ url?: string | undefined;
154773
+ documentationItemId?: string | undefined;
154774
+ pageHeadingId?: string | undefined;
154775
+ openInNewTab?: boolean | undefined;
154776
+ }, {
154777
+ type: "DocumentationItem" | "PageHeading" | "Url";
154778
+ url?: string | undefined;
154779
+ documentationItemId?: string | undefined;
154780
+ pageHeadingId?: string | undefined;
154781
+ openInNewTab?: boolean | undefined;
154782
+ }>>;
154783
+ props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
154784
+ value: z.ZodAny;
154785
+ }, "strip", z.ZodTypeAny, {
154786
+ value?: any;
154787
+ }, {
154788
+ value?: any;
154789
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
154790
+ }, "strip", z.ZodTypeAny, {
154791
+ id: string;
154792
+ props: Record<string, {
154793
+ value?: any;
154794
+ } & Record<string, any>>;
154795
+ linksTo?: {
154796
+ type: "DocumentationItem" | "PageHeading" | "Url";
154797
+ url?: string | undefined;
154798
+ documentationItemId?: string | undefined;
154799
+ pageHeadingId?: string | undefined;
154800
+ openInNewTab?: boolean | undefined;
154801
+ } | undefined;
154802
+ }, {
154803
+ id: string;
154804
+ props: Record<string, {
154805
+ value?: any;
154806
+ } & Record<string, any>>;
154807
+ linksTo?: {
154808
+ type: "DocumentationItem" | "PageHeading" | "Url";
154809
+ url?: string | undefined;
154810
+ documentationItemId?: string | undefined;
154811
+ pageHeadingId?: string | undefined;
154812
+ openInNewTab?: boolean | undefined;
154813
+ } | undefined;
154814
+ }>, "many">;
154815
+ }, "strip", z.ZodTypeAny, {
154816
+ items: {
154817
+ id: string;
154818
+ props: Record<string, {
154819
+ value?: any;
154820
+ } & Record<string, any>>;
154821
+ linksTo?: {
154822
+ type: "DocumentationItem" | "PageHeading" | "Url";
154823
+ url?: string | undefined;
154824
+ documentationItemId?: string | undefined;
154825
+ pageHeadingId?: string | undefined;
154826
+ openInNewTab?: boolean | undefined;
154827
+ } | undefined;
154828
+ }[];
154829
+ packageId: string;
154830
+ indentLevel: number;
154831
+ appearance?: {
154832
+ numberOfColumns?: number | undefined;
154833
+ itemBackgroundColor?: {
154834
+ value: string;
154835
+ referencedTokenId?: string | undefined;
154836
+ } | undefined;
154837
+ } | undefined;
154838
+ variantId?: string | undefined;
154839
+ }, {
154840
+ items: {
154841
+ id: string;
154842
+ props: Record<string, {
154843
+ value?: any;
154844
+ } & Record<string, any>>;
154845
+ linksTo?: {
154846
+ type: "DocumentationItem" | "PageHeading" | "Url";
154847
+ url?: string | undefined;
154848
+ documentationItemId?: string | undefined;
154849
+ pageHeadingId?: string | undefined;
154850
+ openInNewTab?: boolean | undefined;
154851
+ } | undefined;
154852
+ }[];
154853
+ packageId: string;
154854
+ indentLevel: number;
154855
+ appearance?: {
154856
+ numberOfColumns?: number | undefined;
154857
+ itemBackgroundColor?: {
154858
+ value: string;
154859
+ referencedTokenId?: string | undefined;
154860
+ } | undefined;
154861
+ } | undefined;
154862
+ variantId?: string | undefined;
154863
+ }>;
154864
+ }, "strip", z.ZodTypeAny, {
154865
+ type: "Block";
154866
+ data: {
154867
+ items: {
154868
+ id: string;
154869
+ props: Record<string, {
154870
+ value?: any;
154871
+ } & Record<string, any>>;
154872
+ linksTo?: {
154873
+ type: "DocumentationItem" | "PageHeading" | "Url";
154874
+ url?: string | undefined;
154875
+ documentationItemId?: string | undefined;
154876
+ pageHeadingId?: string | undefined;
154877
+ openInNewTab?: boolean | undefined;
154878
+ } | undefined;
154879
+ }[];
154880
+ packageId: string;
154881
+ indentLevel: number;
154882
+ appearance?: {
154883
+ numberOfColumns?: number | undefined;
154884
+ itemBackgroundColor?: {
154885
+ value: string;
154886
+ referencedTokenId?: string | undefined;
154887
+ } | undefined;
154888
+ } | undefined;
154889
+ variantId?: string | undefined;
154890
+ };
154891
+ id: string;
154892
+ }, {
154893
+ type: "Block";
154894
+ data: {
154895
+ items: {
154896
+ id: string;
154897
+ props: Record<string, {
154898
+ value?: any;
154899
+ } & Record<string, any>>;
154900
+ linksTo?: {
154901
+ type: "DocumentationItem" | "PageHeading" | "Url";
154902
+ url?: string | undefined;
154903
+ documentationItemId?: string | undefined;
154904
+ pageHeadingId?: string | undefined;
154905
+ openInNewTab?: boolean | undefined;
154906
+ } | undefined;
154907
+ }[];
154908
+ packageId: string;
154909
+ indentLevel: number;
154910
+ appearance?: {
154911
+ numberOfColumns?: number | undefined;
154912
+ itemBackgroundColor?: {
154913
+ value: string;
154914
+ referencedTokenId?: string | undefined;
154915
+ } | undefined;
154916
+ } | undefined;
154917
+ variantId?: string | undefined;
154918
+ };
154919
+ id: string;
154920
+ }>, z.ZodObject<{
154921
+ id: z.ZodString;
154922
+ type: z.ZodLiteral<"Section">;
154923
+ variantId: z.ZodOptional<z.ZodString>;
154924
+ sectionType: z.ZodEnum<["Tabs"]>;
154925
+ appearance: z.ZodObject<{
154926
+ expandToEdges: z.ZodBoolean;
154927
+ contentExpandToEdges: z.ZodBoolean;
154928
+ backgroundColor: z.ZodOptional<z.ZodObject<{
154929
+ value: z.ZodString;
154930
+ referencedTokenId: z.ZodOptional<z.ZodString>;
154931
+ }, "strip", z.ZodTypeAny, {
154932
+ value: string;
154933
+ referencedTokenId?: string | undefined;
154934
+ }, {
154935
+ value: string;
154936
+ referencedTokenId?: string | undefined;
154937
+ }>>;
154938
+ foregroundColor: z.ZodOptional<z.ZodObject<{
154939
+ value: z.ZodString;
154940
+ referencedTokenId: z.ZodOptional<z.ZodString>;
154941
+ }, "strip", z.ZodTypeAny, {
154942
+ value: string;
154943
+ referencedTokenId?: string | undefined;
154944
+ }, {
154945
+ value: string;
154946
+ referencedTokenId?: string | undefined;
154947
+ }>>;
154948
+ padding: z.ZodOptional<z.ZodObject<{
154949
+ top: z.ZodOptional<z.ZodNumber>;
154950
+ bottom: z.ZodOptional<z.ZodNumber>;
154951
+ left: z.ZodOptional<z.ZodNumber>;
154952
+ right: z.ZodOptional<z.ZodNumber>;
154953
+ }, "strip", z.ZodTypeAny, {
154954
+ top?: number | undefined;
154955
+ bottom?: number | undefined;
154956
+ left?: number | undefined;
154957
+ right?: number | undefined;
154958
+ }, {
154959
+ top?: number | undefined;
154960
+ bottom?: number | undefined;
154961
+ left?: number | undefined;
154962
+ right?: number | undefined;
154963
+ }>>;
154964
+ }, "strip", z.ZodTypeAny, {
154965
+ expandToEdges: boolean;
154966
+ contentExpandToEdges: boolean;
154967
+ backgroundColor?: {
154968
+ value: string;
154969
+ referencedTokenId?: string | undefined;
154970
+ } | undefined;
154971
+ foregroundColor?: {
154972
+ value: string;
154973
+ referencedTokenId?: string | undefined;
154974
+ } | undefined;
154975
+ padding?: {
154976
+ top?: number | undefined;
154977
+ bottom?: number | undefined;
154978
+ left?: number | undefined;
154979
+ right?: number | undefined;
154980
+ } | undefined;
154981
+ }, {
154982
+ expandToEdges: boolean;
154983
+ contentExpandToEdges: boolean;
154984
+ backgroundColor?: {
154985
+ value: string;
154986
+ referencedTokenId?: string | undefined;
154987
+ } | undefined;
154988
+ foregroundColor?: {
154989
+ value: string;
154990
+ referencedTokenId?: string | undefined;
154991
+ } | undefined;
154992
+ padding?: {
154993
+ top?: number | undefined;
154994
+ bottom?: number | undefined;
154995
+ left?: number | undefined;
154996
+ right?: number | undefined;
154997
+ } | undefined;
154998
+ }>;
154999
+ items: z.ZodArray<z.ZodObject<{
155000
+ id: z.ZodString;
155001
+ title: z.ZodString;
155002
+ columns: z.ZodArray<z.ZodObject<{
155003
+ id: z.ZodString;
155004
+ blocks: z.ZodArray<z.ZodObject<{
155005
+ id: z.ZodString;
155006
+ type: z.ZodLiteral<"Block">;
155007
+ data: z.ZodObject<{
155008
+ packageId: z.ZodString;
155009
+ variantId: z.ZodOptional<z.ZodString>;
155010
+ indentLevel: z.ZodNumber;
155011
+ appearance: z.ZodOptional<z.ZodObject<{
155012
+ itemBackgroundColor: z.ZodOptional<z.ZodObject<{
155013
+ value: z.ZodString;
155014
+ referencedTokenId: z.ZodOptional<z.ZodString>;
155015
+ }, "strip", z.ZodTypeAny, {
155016
+ value: string;
155017
+ referencedTokenId?: string | undefined;
155018
+ }, {
155019
+ value: string;
155020
+ referencedTokenId?: string | undefined;
155021
+ }>>;
155022
+ numberOfColumns: z.ZodOptional<z.ZodNumber>;
155023
+ }, "strip", z.ZodTypeAny, {
155024
+ numberOfColumns?: number | undefined;
155025
+ itemBackgroundColor?: {
155026
+ value: string;
155027
+ referencedTokenId?: string | undefined;
155028
+ } | undefined;
155029
+ }, {
155030
+ numberOfColumns?: number | undefined;
155031
+ itemBackgroundColor?: {
155032
+ value: string;
155033
+ referencedTokenId?: string | undefined;
155034
+ } | undefined;
155035
+ }>>;
155036
+ items: z.ZodArray<z.ZodObject<{
155037
+ id: z.ZodString;
155038
+ linksTo: z.ZodOptional<z.ZodObject<{
155039
+ type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
155040
+ documentationItemId: z.ZodOptional<z.ZodString>;
155041
+ pageHeadingId: z.ZodOptional<z.ZodString>;
155042
+ url: z.ZodOptional<z.ZodString>;
155043
+ openInNewTab: z.ZodOptional<z.ZodBoolean>;
155044
+ }, "strip", z.ZodTypeAny, {
155045
+ type: "DocumentationItem" | "PageHeading" | "Url";
155046
+ url?: string | undefined;
155047
+ documentationItemId?: string | undefined;
155048
+ pageHeadingId?: string | undefined;
155049
+ openInNewTab?: boolean | undefined;
155050
+ }, {
155051
+ type: "DocumentationItem" | "PageHeading" | "Url";
155052
+ url?: string | undefined;
155053
+ documentationItemId?: string | undefined;
155054
+ pageHeadingId?: string | undefined;
155055
+ openInNewTab?: boolean | undefined;
155056
+ }>>;
155057
+ props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
155058
+ value: z.ZodAny;
155059
+ }, "strip", z.ZodTypeAny, {
155060
+ value?: any;
155061
+ }, {
155062
+ value?: any;
155063
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
155064
+ }, "strip", z.ZodTypeAny, {
155065
+ id: string;
155066
+ props: Record<string, {
155067
+ value?: any;
155068
+ } & Record<string, any>>;
155069
+ linksTo?: {
155070
+ type: "DocumentationItem" | "PageHeading" | "Url";
155071
+ url?: string | undefined;
155072
+ documentationItemId?: string | undefined;
155073
+ pageHeadingId?: string | undefined;
155074
+ openInNewTab?: boolean | undefined;
155075
+ } | undefined;
155076
+ }, {
155077
+ id: string;
155078
+ props: Record<string, {
155079
+ value?: any;
155080
+ } & Record<string, any>>;
155081
+ linksTo?: {
155082
+ type: "DocumentationItem" | "PageHeading" | "Url";
155083
+ url?: string | undefined;
155084
+ documentationItemId?: string | undefined;
155085
+ pageHeadingId?: string | undefined;
155086
+ openInNewTab?: boolean | undefined;
155087
+ } | undefined;
155088
+ }>, "many">;
155089
+ }, "strip", z.ZodTypeAny, {
155090
+ items: {
155091
+ id: string;
155092
+ props: Record<string, {
155093
+ value?: any;
155094
+ } & Record<string, any>>;
155095
+ linksTo?: {
155096
+ type: "DocumentationItem" | "PageHeading" | "Url";
155097
+ url?: string | undefined;
155098
+ documentationItemId?: string | undefined;
155099
+ pageHeadingId?: string | undefined;
155100
+ openInNewTab?: boolean | undefined;
155101
+ } | undefined;
155102
+ }[];
155103
+ packageId: string;
155104
+ indentLevel: number;
155105
+ appearance?: {
155106
+ numberOfColumns?: number | undefined;
155107
+ itemBackgroundColor?: {
155108
+ value: string;
155109
+ referencedTokenId?: string | undefined;
155110
+ } | undefined;
155111
+ } | undefined;
155112
+ variantId?: string | undefined;
155113
+ }, {
155114
+ items: {
155115
+ id: string;
155116
+ props: Record<string, {
155117
+ value?: any;
155118
+ } & Record<string, any>>;
155119
+ linksTo?: {
155120
+ type: "DocumentationItem" | "PageHeading" | "Url";
155121
+ url?: string | undefined;
155122
+ documentationItemId?: string | undefined;
155123
+ pageHeadingId?: string | undefined;
155124
+ openInNewTab?: boolean | undefined;
155125
+ } | undefined;
155126
+ }[];
155127
+ packageId: string;
155128
+ indentLevel: number;
155129
+ appearance?: {
155130
+ numberOfColumns?: number | undefined;
155131
+ itemBackgroundColor?: {
155132
+ value: string;
155133
+ referencedTokenId?: string | undefined;
155134
+ } | undefined;
155135
+ } | undefined;
155136
+ variantId?: string | undefined;
155137
+ }>;
155138
+ }, "strip", z.ZodTypeAny, {
155139
+ type: "Block";
155140
+ data: {
155141
+ items: {
155142
+ id: string;
155143
+ props: Record<string, {
155144
+ value?: any;
155145
+ } & Record<string, any>>;
155146
+ linksTo?: {
155147
+ type: "DocumentationItem" | "PageHeading" | "Url";
155148
+ url?: string | undefined;
155149
+ documentationItemId?: string | undefined;
155150
+ pageHeadingId?: string | undefined;
155151
+ openInNewTab?: boolean | undefined;
155152
+ } | undefined;
155153
+ }[];
155154
+ packageId: string;
155155
+ indentLevel: number;
155156
+ appearance?: {
155157
+ numberOfColumns?: number | undefined;
155158
+ itemBackgroundColor?: {
155159
+ value: string;
155160
+ referencedTokenId?: string | undefined;
155161
+ } | undefined;
155162
+ } | undefined;
155163
+ variantId?: string | undefined;
155164
+ };
155165
+ id: string;
155166
+ }, {
155167
+ type: "Block";
155168
+ data: {
155169
+ items: {
155170
+ id: string;
155171
+ props: Record<string, {
155172
+ value?: any;
155173
+ } & Record<string, any>>;
155174
+ linksTo?: {
155175
+ type: "DocumentationItem" | "PageHeading" | "Url";
155176
+ url?: string | undefined;
155177
+ documentationItemId?: string | undefined;
155178
+ pageHeadingId?: string | undefined;
155179
+ openInNewTab?: boolean | undefined;
155180
+ } | undefined;
155181
+ }[];
155182
+ packageId: string;
155183
+ indentLevel: number;
155184
+ appearance?: {
155185
+ numberOfColumns?: number | undefined;
155186
+ itemBackgroundColor?: {
155187
+ value: string;
155188
+ referencedTokenId?: string | undefined;
155189
+ } | undefined;
155190
+ } | undefined;
155191
+ variantId?: string | undefined;
155192
+ };
155193
+ id: string;
155194
+ }>, "many">;
155195
+ }, "strip", z.ZodTypeAny, {
155196
+ id: string;
155197
+ blocks: {
155198
+ type: "Block";
155199
+ data: {
155200
+ items: {
155201
+ id: string;
155202
+ props: Record<string, {
155203
+ value?: any;
155204
+ } & Record<string, any>>;
155205
+ linksTo?: {
155206
+ type: "DocumentationItem" | "PageHeading" | "Url";
155207
+ url?: string | undefined;
155208
+ documentationItemId?: string | undefined;
155209
+ pageHeadingId?: string | undefined;
155210
+ openInNewTab?: boolean | undefined;
155211
+ } | undefined;
155212
+ }[];
155213
+ packageId: string;
155214
+ indentLevel: number;
155215
+ appearance?: {
155216
+ numberOfColumns?: number | undefined;
155217
+ itemBackgroundColor?: {
155218
+ value: string;
155219
+ referencedTokenId?: string | undefined;
155220
+ } | undefined;
155221
+ } | undefined;
155222
+ variantId?: string | undefined;
155223
+ };
155224
+ id: string;
155225
+ }[];
155226
+ }, {
155227
+ id: string;
155228
+ blocks: {
155229
+ type: "Block";
155230
+ data: {
155231
+ items: {
155232
+ id: string;
155233
+ props: Record<string, {
155234
+ value?: any;
155235
+ } & Record<string, any>>;
155236
+ linksTo?: {
155237
+ type: "DocumentationItem" | "PageHeading" | "Url";
155238
+ url?: string | undefined;
155239
+ documentationItemId?: string | undefined;
155240
+ pageHeadingId?: string | undefined;
155241
+ openInNewTab?: boolean | undefined;
155242
+ } | undefined;
155243
+ }[];
155244
+ packageId: string;
155245
+ indentLevel: number;
155246
+ appearance?: {
155247
+ numberOfColumns?: number | undefined;
155248
+ itemBackgroundColor?: {
155249
+ value: string;
155250
+ referencedTokenId?: string | undefined;
155251
+ } | undefined;
155252
+ } | undefined;
155253
+ variantId?: string | undefined;
155254
+ };
155255
+ id: string;
155256
+ }[];
155257
+ }>, "many">;
155258
+ }, "strip", z.ZodTypeAny, {
155259
+ id: string;
155260
+ title: string;
155261
+ columns: {
155262
+ id: string;
155263
+ blocks: {
155264
+ type: "Block";
155265
+ data: {
155266
+ items: {
155267
+ id: string;
155268
+ props: Record<string, {
155269
+ value?: any;
155270
+ } & Record<string, any>>;
155271
+ linksTo?: {
155272
+ type: "DocumentationItem" | "PageHeading" | "Url";
155273
+ url?: string | undefined;
155274
+ documentationItemId?: string | undefined;
155275
+ pageHeadingId?: string | undefined;
155276
+ openInNewTab?: boolean | undefined;
155277
+ } | undefined;
155278
+ }[];
155279
+ packageId: string;
155280
+ indentLevel: number;
155281
+ appearance?: {
155282
+ numberOfColumns?: number | undefined;
155283
+ itemBackgroundColor?: {
155284
+ value: string;
155285
+ referencedTokenId?: string | undefined;
155286
+ } | undefined;
155287
+ } | undefined;
155288
+ variantId?: string | undefined;
155289
+ };
155290
+ id: string;
155291
+ }[];
155292
+ }[];
155293
+ }, {
155294
+ id: string;
155295
+ title: string;
155296
+ columns: {
155297
+ id: string;
155298
+ blocks: {
155299
+ type: "Block";
155300
+ data: {
155301
+ items: {
155302
+ id: string;
155303
+ props: Record<string, {
155304
+ value?: any;
155305
+ } & Record<string, any>>;
155306
+ linksTo?: {
155307
+ type: "DocumentationItem" | "PageHeading" | "Url";
155308
+ url?: string | undefined;
155309
+ documentationItemId?: string | undefined;
155310
+ pageHeadingId?: string | undefined;
155311
+ openInNewTab?: boolean | undefined;
155312
+ } | undefined;
155313
+ }[];
155314
+ packageId: string;
155315
+ indentLevel: number;
155316
+ appearance?: {
155317
+ numberOfColumns?: number | undefined;
155318
+ itemBackgroundColor?: {
155319
+ value: string;
155320
+ referencedTokenId?: string | undefined;
155321
+ } | undefined;
155322
+ } | undefined;
155323
+ variantId?: string | undefined;
155324
+ };
155325
+ id: string;
155326
+ }[];
155327
+ }[];
155328
+ }>, "many">;
155329
+ }, "strip", z.ZodTypeAny, {
155330
+ type: "Section";
155331
+ id: string;
155332
+ items: {
155333
+ id: string;
155334
+ title: string;
155335
+ columns: {
155336
+ id: string;
155337
+ blocks: {
155338
+ type: "Block";
155339
+ data: {
155340
+ items: {
155341
+ id: string;
155342
+ props: Record<string, {
155343
+ value?: any;
155344
+ } & Record<string, any>>;
155345
+ linksTo?: {
155346
+ type: "DocumentationItem" | "PageHeading" | "Url";
155347
+ url?: string | undefined;
155348
+ documentationItemId?: string | undefined;
155349
+ pageHeadingId?: string | undefined;
155350
+ openInNewTab?: boolean | undefined;
155351
+ } | undefined;
155352
+ }[];
155353
+ packageId: string;
155354
+ indentLevel: number;
155355
+ appearance?: {
155356
+ numberOfColumns?: number | undefined;
155357
+ itemBackgroundColor?: {
155358
+ value: string;
155359
+ referencedTokenId?: string | undefined;
155360
+ } | undefined;
155361
+ } | undefined;
155362
+ variantId?: string | undefined;
155363
+ };
155364
+ id: string;
155365
+ }[];
155366
+ }[];
155367
+ }[];
155368
+ appearance: {
155369
+ expandToEdges: boolean;
155370
+ contentExpandToEdges: boolean;
155371
+ backgroundColor?: {
155372
+ value: string;
155373
+ referencedTokenId?: string | undefined;
155374
+ } | undefined;
155375
+ foregroundColor?: {
155376
+ value: string;
155377
+ referencedTokenId?: string | undefined;
155378
+ } | undefined;
155379
+ padding?: {
155380
+ top?: number | undefined;
155381
+ bottom?: number | undefined;
155382
+ left?: number | undefined;
155383
+ right?: number | undefined;
155384
+ } | undefined;
155385
+ };
155386
+ sectionType: "Tabs";
155387
+ variantId?: string | undefined;
155388
+ }, {
155389
+ type: "Section";
155390
+ id: string;
155391
+ items: {
155392
+ id: string;
155393
+ title: string;
155394
+ columns: {
155395
+ id: string;
155396
+ blocks: {
155397
+ type: "Block";
155398
+ data: {
155399
+ items: {
155400
+ id: string;
155401
+ props: Record<string, {
155402
+ value?: any;
155403
+ } & Record<string, any>>;
155404
+ linksTo?: {
155405
+ type: "DocumentationItem" | "PageHeading" | "Url";
155406
+ url?: string | undefined;
155407
+ documentationItemId?: string | undefined;
155408
+ pageHeadingId?: string | undefined;
155409
+ openInNewTab?: boolean | undefined;
155410
+ } | undefined;
155411
+ }[];
155412
+ packageId: string;
155413
+ indentLevel: number;
155414
+ appearance?: {
155415
+ numberOfColumns?: number | undefined;
155416
+ itemBackgroundColor?: {
155417
+ value: string;
155418
+ referencedTokenId?: string | undefined;
155419
+ } | undefined;
155420
+ } | undefined;
155421
+ variantId?: string | undefined;
155422
+ };
155423
+ id: string;
155424
+ }[];
155425
+ }[];
155426
+ }[];
155427
+ appearance: {
155428
+ expandToEdges: boolean;
155429
+ contentExpandToEdges: boolean;
155430
+ backgroundColor?: {
155431
+ value: string;
155432
+ referencedTokenId?: string | undefined;
155433
+ } | undefined;
155434
+ foregroundColor?: {
155435
+ value: string;
155436
+ referencedTokenId?: string | undefined;
155437
+ } | undefined;
155438
+ padding?: {
155439
+ top?: number | undefined;
155440
+ bottom?: number | undefined;
155441
+ left?: number | undefined;
155442
+ right?: number | undefined;
155443
+ } | undefined;
155444
+ };
155445
+ sectionType: "Tabs";
155446
+ variantId?: string | undefined;
155447
+ }>]>, "many">;
155448
+ }, "strip", z.ZodTypeAny, {
155449
+ items: ({
155450
+ type: "Block";
155451
+ data: {
155452
+ items: {
155453
+ id: string;
155454
+ props: Record<string, {
155455
+ value?: any;
155456
+ } & Record<string, any>>;
155457
+ linksTo?: {
155458
+ type: "DocumentationItem" | "PageHeading" | "Url";
155459
+ url?: string | undefined;
155460
+ documentationItemId?: string | undefined;
155461
+ pageHeadingId?: string | undefined;
155462
+ openInNewTab?: boolean | undefined;
155463
+ } | undefined;
155464
+ }[];
155465
+ packageId: string;
155466
+ indentLevel: number;
155467
+ appearance?: {
155468
+ numberOfColumns?: number | undefined;
155469
+ itemBackgroundColor?: {
155470
+ value: string;
155471
+ referencedTokenId?: string | undefined;
155472
+ } | undefined;
155473
+ } | undefined;
155474
+ variantId?: string | undefined;
155475
+ };
155476
+ id: string;
155477
+ } | {
155478
+ type: "Section";
155479
+ id: string;
155480
+ items: {
155481
+ id: string;
155482
+ title: string;
155483
+ columns: {
155484
+ id: string;
155485
+ blocks: {
155486
+ type: "Block";
155487
+ data: {
155488
+ items: {
155489
+ id: string;
155490
+ props: Record<string, {
155491
+ value?: any;
155492
+ } & Record<string, any>>;
155493
+ linksTo?: {
155494
+ type: "DocumentationItem" | "PageHeading" | "Url";
155495
+ url?: string | undefined;
155496
+ documentationItemId?: string | undefined;
155497
+ pageHeadingId?: string | undefined;
155498
+ openInNewTab?: boolean | undefined;
155499
+ } | undefined;
155500
+ }[];
155501
+ packageId: string;
155502
+ indentLevel: number;
155503
+ appearance?: {
155504
+ numberOfColumns?: number | undefined;
155505
+ itemBackgroundColor?: {
155506
+ value: string;
155507
+ referencedTokenId?: string | undefined;
155508
+ } | undefined;
155509
+ } | undefined;
155510
+ variantId?: string | undefined;
155511
+ };
155512
+ id: string;
155513
+ }[];
155514
+ }[];
155515
+ }[];
155516
+ appearance: {
155517
+ expandToEdges: boolean;
155518
+ contentExpandToEdges: boolean;
155519
+ backgroundColor?: {
155520
+ value: string;
155521
+ referencedTokenId?: string | undefined;
155522
+ } | undefined;
155523
+ foregroundColor?: {
155524
+ value: string;
155525
+ referencedTokenId?: string | undefined;
155526
+ } | undefined;
155527
+ padding?: {
155528
+ top?: number | undefined;
155529
+ bottom?: number | undefined;
155530
+ left?: number | undefined;
155531
+ right?: number | undefined;
155532
+ } | undefined;
155533
+ };
155534
+ sectionType: "Tabs";
155535
+ variantId?: string | undefined;
155536
+ })[];
155537
+ }, {
155538
+ items: ({
155539
+ type: "Block";
155540
+ data: {
155541
+ items: {
155542
+ id: string;
155543
+ props: Record<string, {
155544
+ value?: any;
155545
+ } & Record<string, any>>;
155546
+ linksTo?: {
155547
+ type: "DocumentationItem" | "PageHeading" | "Url";
155548
+ url?: string | undefined;
155549
+ documentationItemId?: string | undefined;
155550
+ pageHeadingId?: string | undefined;
155551
+ openInNewTab?: boolean | undefined;
155552
+ } | undefined;
155553
+ }[];
155554
+ packageId: string;
155555
+ indentLevel: number;
155556
+ appearance?: {
155557
+ numberOfColumns?: number | undefined;
155558
+ itemBackgroundColor?: {
155559
+ value: string;
155560
+ referencedTokenId?: string | undefined;
155561
+ } | undefined;
155562
+ } | undefined;
155563
+ variantId?: string | undefined;
155564
+ };
155565
+ id: string;
155566
+ } | {
155567
+ type: "Section";
155568
+ id: string;
155569
+ items: {
155570
+ id: string;
155571
+ title: string;
155572
+ columns: {
155573
+ id: string;
155574
+ blocks: {
155575
+ type: "Block";
155576
+ data: {
155577
+ items: {
155578
+ id: string;
155579
+ props: Record<string, {
155580
+ value?: any;
155581
+ } & Record<string, any>>;
155582
+ linksTo?: {
155583
+ type: "DocumentationItem" | "PageHeading" | "Url";
155584
+ url?: string | undefined;
155585
+ documentationItemId?: string | undefined;
155586
+ pageHeadingId?: string | undefined;
155587
+ openInNewTab?: boolean | undefined;
155588
+ } | undefined;
155589
+ }[];
155590
+ packageId: string;
155591
+ indentLevel: number;
155592
+ appearance?: {
155593
+ numberOfColumns?: number | undefined;
155594
+ itemBackgroundColor?: {
155595
+ value: string;
155596
+ referencedTokenId?: string | undefined;
155597
+ } | undefined;
155598
+ } | undefined;
155599
+ variantId?: string | undefined;
155600
+ };
155601
+ id: string;
155602
+ }[];
155603
+ }[];
155604
+ }[];
155605
+ appearance: {
155606
+ expandToEdges: boolean;
155607
+ contentExpandToEdges: boolean;
155608
+ backgroundColor?: {
155609
+ value: string;
155610
+ referencedTokenId?: string | undefined;
155611
+ } | undefined;
155612
+ foregroundColor?: {
155613
+ value: string;
155614
+ referencedTokenId?: string | undefined;
155615
+ } | undefined;
155616
+ padding?: {
155617
+ top?: number | undefined;
155618
+ bottom?: number | undefined;
155619
+ left?: number | undefined;
155620
+ right?: number | undefined;
155621
+ } | undefined;
155622
+ };
155623
+ sectionType: "Tabs";
155624
+ variantId?: string | undefined;
155625
+ })[];
155626
+ }>;
155627
+ }, "strip", z.ZodTypeAny, {
155628
+ data: {
155629
+ items: ({
155630
+ type: "Block";
155631
+ data: {
155632
+ items: {
155633
+ id: string;
155634
+ props: Record<string, {
155635
+ value?: any;
155636
+ } & Record<string, any>>;
155637
+ linksTo?: {
155638
+ type: "DocumentationItem" | "PageHeading" | "Url";
155639
+ url?: string | undefined;
155640
+ documentationItemId?: string | undefined;
155641
+ pageHeadingId?: string | undefined;
155642
+ openInNewTab?: boolean | undefined;
155643
+ } | undefined;
155644
+ }[];
155645
+ packageId: string;
155646
+ indentLevel: number;
155647
+ appearance?: {
155648
+ numberOfColumns?: number | undefined;
155649
+ itemBackgroundColor?: {
155650
+ value: string;
155651
+ referencedTokenId?: string | undefined;
155652
+ } | undefined;
155653
+ } | undefined;
155654
+ variantId?: string | undefined;
155655
+ };
155656
+ id: string;
155657
+ } | {
155658
+ type: "Section";
155659
+ id: string;
155660
+ items: {
155661
+ id: string;
155662
+ title: string;
155663
+ columns: {
155664
+ id: string;
155665
+ blocks: {
155666
+ type: "Block";
155667
+ data: {
155668
+ items: {
155669
+ id: string;
155670
+ props: Record<string, {
155671
+ value?: any;
155672
+ } & Record<string, any>>;
155673
+ linksTo?: {
155674
+ type: "DocumentationItem" | "PageHeading" | "Url";
155675
+ url?: string | undefined;
155676
+ documentationItemId?: string | undefined;
155677
+ pageHeadingId?: string | undefined;
155678
+ openInNewTab?: boolean | undefined;
155679
+ } | undefined;
155680
+ }[];
155681
+ packageId: string;
155682
+ indentLevel: number;
155683
+ appearance?: {
155684
+ numberOfColumns?: number | undefined;
155685
+ itemBackgroundColor?: {
155686
+ value: string;
155687
+ referencedTokenId?: string | undefined;
155688
+ } | undefined;
155689
+ } | undefined;
155690
+ variantId?: string | undefined;
155691
+ };
155692
+ id: string;
155693
+ }[];
155694
+ }[];
155695
+ }[];
155696
+ appearance: {
155697
+ expandToEdges: boolean;
155698
+ contentExpandToEdges: boolean;
155699
+ backgroundColor?: {
155700
+ value: string;
155701
+ referencedTokenId?: string | undefined;
155702
+ } | undefined;
155703
+ foregroundColor?: {
155704
+ value: string;
155705
+ referencedTokenId?: string | undefined;
155706
+ } | undefined;
155707
+ padding?: {
155708
+ top?: number | undefined;
155709
+ bottom?: number | undefined;
155710
+ left?: number | undefined;
155711
+ right?: number | undefined;
155712
+ } | undefined;
155713
+ };
155714
+ sectionType: "Tabs";
155715
+ variantId?: string | undefined;
155716
+ })[];
155717
+ };
155718
+ id: string;
155719
+ createdAt: Date;
155720
+ updatedAt: Date;
155721
+ projectId: string;
155722
+ artifactId: string;
155723
+ }, {
155724
+ data: {
155725
+ items: ({
155726
+ type: "Block";
155727
+ data: {
155728
+ items: {
155729
+ id: string;
155730
+ props: Record<string, {
155731
+ value?: any;
155732
+ } & Record<string, any>>;
155733
+ linksTo?: {
155734
+ type: "DocumentationItem" | "PageHeading" | "Url";
155735
+ url?: string | undefined;
155736
+ documentationItemId?: string | undefined;
155737
+ pageHeadingId?: string | undefined;
155738
+ openInNewTab?: boolean | undefined;
155739
+ } | undefined;
155740
+ }[];
155741
+ packageId: string;
155742
+ indentLevel: number;
155743
+ appearance?: {
155744
+ numberOfColumns?: number | undefined;
155745
+ itemBackgroundColor?: {
155746
+ value: string;
155747
+ referencedTokenId?: string | undefined;
155748
+ } | undefined;
155749
+ } | undefined;
155750
+ variantId?: string | undefined;
155751
+ };
155752
+ id: string;
155753
+ } | {
155754
+ type: "Section";
155755
+ id: string;
155756
+ items: {
155757
+ id: string;
155758
+ title: string;
155759
+ columns: {
155760
+ id: string;
155761
+ blocks: {
155762
+ type: "Block";
155763
+ data: {
155764
+ items: {
155765
+ id: string;
155766
+ props: Record<string, {
155767
+ value?: any;
155768
+ } & Record<string, any>>;
155769
+ linksTo?: {
155770
+ type: "DocumentationItem" | "PageHeading" | "Url";
155771
+ url?: string | undefined;
155772
+ documentationItemId?: string | undefined;
155773
+ pageHeadingId?: string | undefined;
155774
+ openInNewTab?: boolean | undefined;
155775
+ } | undefined;
155776
+ }[];
155777
+ packageId: string;
155778
+ indentLevel: number;
155779
+ appearance?: {
155780
+ numberOfColumns?: number | undefined;
155781
+ itemBackgroundColor?: {
155782
+ value: string;
155783
+ referencedTokenId?: string | undefined;
155784
+ } | undefined;
155785
+ } | undefined;
155786
+ variantId?: string | undefined;
155787
+ };
155788
+ id: string;
155789
+ }[];
155790
+ }[];
155791
+ }[];
155792
+ appearance: {
155793
+ expandToEdges: boolean;
155794
+ contentExpandToEdges: boolean;
155795
+ backgroundColor?: {
155796
+ value: string;
155797
+ referencedTokenId?: string | undefined;
155798
+ } | undefined;
155799
+ foregroundColor?: {
155800
+ value: string;
155801
+ referencedTokenId?: string | undefined;
155802
+ } | undefined;
155803
+ padding?: {
155804
+ top?: number | undefined;
155805
+ bottom?: number | undefined;
155806
+ left?: number | undefined;
155807
+ right?: number | undefined;
155808
+ } | undefined;
155809
+ };
155810
+ sectionType: "Tabs";
155811
+ variantId?: string | undefined;
155812
+ })[];
155813
+ };
155814
+ id: string;
155815
+ createdAt: Date;
155816
+ updatedAt: Date;
155817
+ projectId: string;
155818
+ artifactId: string;
155819
+ }>;
155820
+ type ForgeProjectArtifactContent = z.infer<typeof ForgeProjectArtifactContent>;
155821
+ declare const ForgeProjectArtifactContentData: z.ZodObject<{
155822
+ items: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
155823
+ id: z.ZodString;
155824
+ type: z.ZodLiteral<"Block">;
155825
+ data: z.ZodObject<{
155826
+ packageId: z.ZodString;
155827
+ variantId: z.ZodOptional<z.ZodString>;
155828
+ indentLevel: z.ZodNumber;
155829
+ appearance: z.ZodOptional<z.ZodObject<{
155830
+ itemBackgroundColor: z.ZodOptional<z.ZodObject<{
155831
+ value: z.ZodString;
155832
+ referencedTokenId: z.ZodOptional<z.ZodString>;
155833
+ }, "strip", z.ZodTypeAny, {
155834
+ value: string;
155835
+ referencedTokenId?: string | undefined;
155836
+ }, {
155837
+ value: string;
155838
+ referencedTokenId?: string | undefined;
155839
+ }>>;
155840
+ numberOfColumns: z.ZodOptional<z.ZodNumber>;
155841
+ }, "strip", z.ZodTypeAny, {
155842
+ numberOfColumns?: number | undefined;
155843
+ itemBackgroundColor?: {
155844
+ value: string;
155845
+ referencedTokenId?: string | undefined;
155846
+ } | undefined;
155847
+ }, {
155848
+ numberOfColumns?: number | undefined;
155849
+ itemBackgroundColor?: {
155850
+ value: string;
155851
+ referencedTokenId?: string | undefined;
155852
+ } | undefined;
155853
+ }>>;
155854
+ items: z.ZodArray<z.ZodObject<{
155855
+ id: z.ZodString;
155856
+ linksTo: z.ZodOptional<z.ZodObject<{
155857
+ type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
155858
+ documentationItemId: z.ZodOptional<z.ZodString>;
155859
+ pageHeadingId: z.ZodOptional<z.ZodString>;
155860
+ url: z.ZodOptional<z.ZodString>;
155861
+ openInNewTab: z.ZodOptional<z.ZodBoolean>;
155862
+ }, "strip", z.ZodTypeAny, {
155863
+ type: "DocumentationItem" | "PageHeading" | "Url";
155864
+ url?: string | undefined;
155865
+ documentationItemId?: string | undefined;
155866
+ pageHeadingId?: string | undefined;
155867
+ openInNewTab?: boolean | undefined;
155868
+ }, {
155869
+ type: "DocumentationItem" | "PageHeading" | "Url";
155870
+ url?: string | undefined;
155871
+ documentationItemId?: string | undefined;
155872
+ pageHeadingId?: string | undefined;
155873
+ openInNewTab?: boolean | undefined;
155874
+ }>>;
155875
+ props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
155876
+ value: z.ZodAny;
155877
+ }, "strip", z.ZodTypeAny, {
155878
+ value?: any;
155879
+ }, {
155880
+ value?: any;
155881
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
155882
+ }, "strip", z.ZodTypeAny, {
155883
+ id: string;
155884
+ props: Record<string, {
155885
+ value?: any;
155886
+ } & Record<string, any>>;
155887
+ linksTo?: {
155888
+ type: "DocumentationItem" | "PageHeading" | "Url";
155889
+ url?: string | undefined;
155890
+ documentationItemId?: string | undefined;
155891
+ pageHeadingId?: string | undefined;
155892
+ openInNewTab?: boolean | undefined;
155893
+ } | undefined;
155894
+ }, {
155895
+ id: string;
155896
+ props: Record<string, {
155897
+ value?: any;
155898
+ } & Record<string, any>>;
155899
+ linksTo?: {
155900
+ type: "DocumentationItem" | "PageHeading" | "Url";
155901
+ url?: string | undefined;
155902
+ documentationItemId?: string | undefined;
155903
+ pageHeadingId?: string | undefined;
155904
+ openInNewTab?: boolean | undefined;
155905
+ } | undefined;
155906
+ }>, "many">;
155907
+ }, "strip", z.ZodTypeAny, {
155908
+ items: {
155909
+ id: string;
155910
+ props: Record<string, {
155911
+ value?: any;
155912
+ } & Record<string, any>>;
155913
+ linksTo?: {
155914
+ type: "DocumentationItem" | "PageHeading" | "Url";
155915
+ url?: string | undefined;
155916
+ documentationItemId?: string | undefined;
155917
+ pageHeadingId?: string | undefined;
155918
+ openInNewTab?: boolean | undefined;
155919
+ } | undefined;
155920
+ }[];
155921
+ packageId: string;
155922
+ indentLevel: number;
155923
+ appearance?: {
155924
+ numberOfColumns?: number | undefined;
155925
+ itemBackgroundColor?: {
155926
+ value: string;
155927
+ referencedTokenId?: string | undefined;
155928
+ } | undefined;
155929
+ } | undefined;
155930
+ variantId?: string | undefined;
155931
+ }, {
155932
+ items: {
155933
+ id: string;
155934
+ props: Record<string, {
155935
+ value?: any;
155936
+ } & Record<string, any>>;
155937
+ linksTo?: {
155938
+ type: "DocumentationItem" | "PageHeading" | "Url";
155939
+ url?: string | undefined;
155940
+ documentationItemId?: string | undefined;
155941
+ pageHeadingId?: string | undefined;
155942
+ openInNewTab?: boolean | undefined;
155943
+ } | undefined;
155944
+ }[];
155945
+ packageId: string;
155946
+ indentLevel: number;
155947
+ appearance?: {
155948
+ numberOfColumns?: number | undefined;
155949
+ itemBackgroundColor?: {
155950
+ value: string;
155951
+ referencedTokenId?: string | undefined;
155952
+ } | undefined;
155953
+ } | undefined;
155954
+ variantId?: string | undefined;
155955
+ }>;
155956
+ }, "strip", z.ZodTypeAny, {
155957
+ type: "Block";
155958
+ data: {
155959
+ items: {
155960
+ id: string;
155961
+ props: Record<string, {
155962
+ value?: any;
155963
+ } & Record<string, any>>;
155964
+ linksTo?: {
155965
+ type: "DocumentationItem" | "PageHeading" | "Url";
155966
+ url?: string | undefined;
155967
+ documentationItemId?: string | undefined;
155968
+ pageHeadingId?: string | undefined;
155969
+ openInNewTab?: boolean | undefined;
155970
+ } | undefined;
155971
+ }[];
155972
+ packageId: string;
155973
+ indentLevel: number;
155974
+ appearance?: {
155975
+ numberOfColumns?: number | undefined;
155976
+ itemBackgroundColor?: {
155977
+ value: string;
155978
+ referencedTokenId?: string | undefined;
155979
+ } | undefined;
155980
+ } | undefined;
155981
+ variantId?: string | undefined;
155982
+ };
155983
+ id: string;
155984
+ }, {
155985
+ type: "Block";
155986
+ data: {
155987
+ items: {
155988
+ id: string;
155989
+ props: Record<string, {
155990
+ value?: any;
155991
+ } & Record<string, any>>;
155992
+ linksTo?: {
155993
+ type: "DocumentationItem" | "PageHeading" | "Url";
155994
+ url?: string | undefined;
155995
+ documentationItemId?: string | undefined;
155996
+ pageHeadingId?: string | undefined;
155997
+ openInNewTab?: boolean | undefined;
155998
+ } | undefined;
155999
+ }[];
156000
+ packageId: string;
156001
+ indentLevel: number;
156002
+ appearance?: {
156003
+ numberOfColumns?: number | undefined;
156004
+ itemBackgroundColor?: {
156005
+ value: string;
156006
+ referencedTokenId?: string | undefined;
156007
+ } | undefined;
156008
+ } | undefined;
156009
+ variantId?: string | undefined;
156010
+ };
156011
+ id: string;
156012
+ }>, z.ZodObject<{
156013
+ id: z.ZodString;
156014
+ type: z.ZodLiteral<"Section">;
156015
+ variantId: z.ZodOptional<z.ZodString>;
156016
+ sectionType: z.ZodEnum<["Tabs"]>;
156017
+ appearance: z.ZodObject<{
156018
+ expandToEdges: z.ZodBoolean;
156019
+ contentExpandToEdges: z.ZodBoolean;
156020
+ backgroundColor: z.ZodOptional<z.ZodObject<{
156021
+ value: z.ZodString;
156022
+ referencedTokenId: z.ZodOptional<z.ZodString>;
156023
+ }, "strip", z.ZodTypeAny, {
156024
+ value: string;
156025
+ referencedTokenId?: string | undefined;
156026
+ }, {
156027
+ value: string;
156028
+ referencedTokenId?: string | undefined;
156029
+ }>>;
156030
+ foregroundColor: z.ZodOptional<z.ZodObject<{
156031
+ value: z.ZodString;
156032
+ referencedTokenId: z.ZodOptional<z.ZodString>;
156033
+ }, "strip", z.ZodTypeAny, {
156034
+ value: string;
156035
+ referencedTokenId?: string | undefined;
156036
+ }, {
156037
+ value: string;
156038
+ referencedTokenId?: string | undefined;
156039
+ }>>;
156040
+ padding: z.ZodOptional<z.ZodObject<{
156041
+ top: z.ZodOptional<z.ZodNumber>;
156042
+ bottom: z.ZodOptional<z.ZodNumber>;
156043
+ left: z.ZodOptional<z.ZodNumber>;
156044
+ right: z.ZodOptional<z.ZodNumber>;
156045
+ }, "strip", z.ZodTypeAny, {
156046
+ top?: number | undefined;
156047
+ bottom?: number | undefined;
156048
+ left?: number | undefined;
156049
+ right?: number | undefined;
156050
+ }, {
156051
+ top?: number | undefined;
156052
+ bottom?: number | undefined;
156053
+ left?: number | undefined;
156054
+ right?: number | undefined;
156055
+ }>>;
156056
+ }, "strip", z.ZodTypeAny, {
156057
+ expandToEdges: boolean;
156058
+ contentExpandToEdges: boolean;
156059
+ backgroundColor?: {
156060
+ value: string;
156061
+ referencedTokenId?: string | undefined;
156062
+ } | undefined;
156063
+ foregroundColor?: {
156064
+ value: string;
156065
+ referencedTokenId?: string | undefined;
156066
+ } | undefined;
156067
+ padding?: {
156068
+ top?: number | undefined;
156069
+ bottom?: number | undefined;
156070
+ left?: number | undefined;
156071
+ right?: number | undefined;
156072
+ } | undefined;
156073
+ }, {
156074
+ expandToEdges: boolean;
156075
+ contentExpandToEdges: boolean;
156076
+ backgroundColor?: {
156077
+ value: string;
156078
+ referencedTokenId?: string | undefined;
156079
+ } | undefined;
156080
+ foregroundColor?: {
156081
+ value: string;
156082
+ referencedTokenId?: string | undefined;
156083
+ } | undefined;
156084
+ padding?: {
156085
+ top?: number | undefined;
156086
+ bottom?: number | undefined;
156087
+ left?: number | undefined;
156088
+ right?: number | undefined;
156089
+ } | undefined;
156090
+ }>;
156091
+ items: z.ZodArray<z.ZodObject<{
156092
+ id: z.ZodString;
156093
+ title: z.ZodString;
156094
+ columns: z.ZodArray<z.ZodObject<{
156095
+ id: z.ZodString;
156096
+ blocks: z.ZodArray<z.ZodObject<{
156097
+ id: z.ZodString;
156098
+ type: z.ZodLiteral<"Block">;
156099
+ data: z.ZodObject<{
156100
+ packageId: z.ZodString;
156101
+ variantId: z.ZodOptional<z.ZodString>;
156102
+ indentLevel: z.ZodNumber;
156103
+ appearance: z.ZodOptional<z.ZodObject<{
156104
+ itemBackgroundColor: z.ZodOptional<z.ZodObject<{
156105
+ value: z.ZodString;
156106
+ referencedTokenId: z.ZodOptional<z.ZodString>;
156107
+ }, "strip", z.ZodTypeAny, {
156108
+ value: string;
156109
+ referencedTokenId?: string | undefined;
156110
+ }, {
156111
+ value: string;
156112
+ referencedTokenId?: string | undefined;
156113
+ }>>;
156114
+ numberOfColumns: z.ZodOptional<z.ZodNumber>;
156115
+ }, "strip", z.ZodTypeAny, {
156116
+ numberOfColumns?: number | undefined;
156117
+ itemBackgroundColor?: {
156118
+ value: string;
156119
+ referencedTokenId?: string | undefined;
156120
+ } | undefined;
156121
+ }, {
156122
+ numberOfColumns?: number | undefined;
156123
+ itemBackgroundColor?: {
156124
+ value: string;
156125
+ referencedTokenId?: string | undefined;
156126
+ } | undefined;
156127
+ }>>;
156128
+ items: z.ZodArray<z.ZodObject<{
156129
+ id: z.ZodString;
156130
+ linksTo: z.ZodOptional<z.ZodObject<{
156131
+ type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
156132
+ documentationItemId: z.ZodOptional<z.ZodString>;
156133
+ pageHeadingId: z.ZodOptional<z.ZodString>;
156134
+ url: z.ZodOptional<z.ZodString>;
156135
+ openInNewTab: z.ZodOptional<z.ZodBoolean>;
156136
+ }, "strip", z.ZodTypeAny, {
156137
+ type: "DocumentationItem" | "PageHeading" | "Url";
156138
+ url?: string | undefined;
156139
+ documentationItemId?: string | undefined;
156140
+ pageHeadingId?: string | undefined;
156141
+ openInNewTab?: boolean | undefined;
156142
+ }, {
156143
+ type: "DocumentationItem" | "PageHeading" | "Url";
156144
+ url?: string | undefined;
156145
+ documentationItemId?: string | undefined;
156146
+ pageHeadingId?: string | undefined;
156147
+ openInNewTab?: boolean | undefined;
156148
+ }>>;
156149
+ props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
156150
+ value: z.ZodAny;
156151
+ }, "strip", z.ZodTypeAny, {
156152
+ value?: any;
156153
+ }, {
156154
+ value?: any;
156155
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
156156
+ }, "strip", z.ZodTypeAny, {
156157
+ id: string;
156158
+ props: Record<string, {
156159
+ value?: any;
156160
+ } & Record<string, any>>;
156161
+ linksTo?: {
156162
+ type: "DocumentationItem" | "PageHeading" | "Url";
156163
+ url?: string | undefined;
156164
+ documentationItemId?: string | undefined;
156165
+ pageHeadingId?: string | undefined;
156166
+ openInNewTab?: boolean | undefined;
156167
+ } | undefined;
156168
+ }, {
156169
+ id: string;
156170
+ props: Record<string, {
156171
+ value?: any;
156172
+ } & Record<string, any>>;
156173
+ linksTo?: {
156174
+ type: "DocumentationItem" | "PageHeading" | "Url";
156175
+ url?: string | undefined;
156176
+ documentationItemId?: string | undefined;
156177
+ pageHeadingId?: string | undefined;
156178
+ openInNewTab?: boolean | undefined;
156179
+ } | undefined;
156180
+ }>, "many">;
156181
+ }, "strip", z.ZodTypeAny, {
156182
+ items: {
156183
+ id: string;
156184
+ props: Record<string, {
156185
+ value?: any;
156186
+ } & Record<string, any>>;
156187
+ linksTo?: {
156188
+ type: "DocumentationItem" | "PageHeading" | "Url";
156189
+ url?: string | undefined;
156190
+ documentationItemId?: string | undefined;
156191
+ pageHeadingId?: string | undefined;
156192
+ openInNewTab?: boolean | undefined;
156193
+ } | undefined;
156194
+ }[];
156195
+ packageId: string;
156196
+ indentLevel: number;
156197
+ appearance?: {
156198
+ numberOfColumns?: number | undefined;
156199
+ itemBackgroundColor?: {
156200
+ value: string;
156201
+ referencedTokenId?: string | undefined;
156202
+ } | undefined;
156203
+ } | undefined;
156204
+ variantId?: string | undefined;
156205
+ }, {
156206
+ items: {
156207
+ id: string;
156208
+ props: Record<string, {
156209
+ value?: any;
156210
+ } & Record<string, any>>;
156211
+ linksTo?: {
156212
+ type: "DocumentationItem" | "PageHeading" | "Url";
156213
+ url?: string | undefined;
156214
+ documentationItemId?: string | undefined;
156215
+ pageHeadingId?: string | undefined;
156216
+ openInNewTab?: boolean | undefined;
156217
+ } | undefined;
156218
+ }[];
156219
+ packageId: string;
156220
+ indentLevel: number;
156221
+ appearance?: {
156222
+ numberOfColumns?: number | undefined;
156223
+ itemBackgroundColor?: {
156224
+ value: string;
156225
+ referencedTokenId?: string | undefined;
156226
+ } | undefined;
156227
+ } | undefined;
156228
+ variantId?: string | undefined;
156229
+ }>;
156230
+ }, "strip", z.ZodTypeAny, {
156231
+ type: "Block";
156232
+ data: {
156233
+ items: {
156234
+ id: string;
156235
+ props: Record<string, {
156236
+ value?: any;
156237
+ } & Record<string, any>>;
156238
+ linksTo?: {
156239
+ type: "DocumentationItem" | "PageHeading" | "Url";
156240
+ url?: string | undefined;
156241
+ documentationItemId?: string | undefined;
156242
+ pageHeadingId?: string | undefined;
156243
+ openInNewTab?: boolean | undefined;
156244
+ } | undefined;
156245
+ }[];
156246
+ packageId: string;
156247
+ indentLevel: number;
156248
+ appearance?: {
156249
+ numberOfColumns?: number | undefined;
156250
+ itemBackgroundColor?: {
156251
+ value: string;
156252
+ referencedTokenId?: string | undefined;
156253
+ } | undefined;
156254
+ } | undefined;
156255
+ variantId?: string | undefined;
156256
+ };
156257
+ id: string;
156258
+ }, {
156259
+ type: "Block";
156260
+ data: {
156261
+ items: {
156262
+ id: string;
156263
+ props: Record<string, {
156264
+ value?: any;
156265
+ } & Record<string, any>>;
156266
+ linksTo?: {
156267
+ type: "DocumentationItem" | "PageHeading" | "Url";
156268
+ url?: string | undefined;
156269
+ documentationItemId?: string | undefined;
156270
+ pageHeadingId?: string | undefined;
156271
+ openInNewTab?: boolean | undefined;
156272
+ } | undefined;
156273
+ }[];
156274
+ packageId: string;
156275
+ indentLevel: number;
156276
+ appearance?: {
156277
+ numberOfColumns?: number | undefined;
156278
+ itemBackgroundColor?: {
156279
+ value: string;
156280
+ referencedTokenId?: string | undefined;
156281
+ } | undefined;
156282
+ } | undefined;
156283
+ variantId?: string | undefined;
156284
+ };
156285
+ id: string;
156286
+ }>, "many">;
156287
+ }, "strip", z.ZodTypeAny, {
156288
+ id: string;
156289
+ blocks: {
156290
+ type: "Block";
156291
+ data: {
156292
+ items: {
156293
+ id: string;
156294
+ props: Record<string, {
156295
+ value?: any;
156296
+ } & Record<string, any>>;
156297
+ linksTo?: {
156298
+ type: "DocumentationItem" | "PageHeading" | "Url";
156299
+ url?: string | undefined;
156300
+ documentationItemId?: string | undefined;
156301
+ pageHeadingId?: string | undefined;
156302
+ openInNewTab?: boolean | undefined;
156303
+ } | undefined;
156304
+ }[];
156305
+ packageId: string;
156306
+ indentLevel: number;
156307
+ appearance?: {
156308
+ numberOfColumns?: number | undefined;
156309
+ itemBackgroundColor?: {
156310
+ value: string;
156311
+ referencedTokenId?: string | undefined;
156312
+ } | undefined;
156313
+ } | undefined;
156314
+ variantId?: string | undefined;
156315
+ };
156316
+ id: string;
156317
+ }[];
156318
+ }, {
156319
+ id: string;
156320
+ blocks: {
156321
+ type: "Block";
156322
+ data: {
156323
+ items: {
156324
+ id: string;
156325
+ props: Record<string, {
156326
+ value?: any;
156327
+ } & Record<string, any>>;
156328
+ linksTo?: {
156329
+ type: "DocumentationItem" | "PageHeading" | "Url";
156330
+ url?: string | undefined;
156331
+ documentationItemId?: string | undefined;
156332
+ pageHeadingId?: string | undefined;
156333
+ openInNewTab?: boolean | undefined;
156334
+ } | undefined;
156335
+ }[];
156336
+ packageId: string;
156337
+ indentLevel: number;
156338
+ appearance?: {
156339
+ numberOfColumns?: number | undefined;
156340
+ itemBackgroundColor?: {
156341
+ value: string;
156342
+ referencedTokenId?: string | undefined;
156343
+ } | undefined;
156344
+ } | undefined;
156345
+ variantId?: string | undefined;
156346
+ };
156347
+ id: string;
156348
+ }[];
156349
+ }>, "many">;
156350
+ }, "strip", z.ZodTypeAny, {
156351
+ id: string;
156352
+ title: string;
156353
+ columns: {
156354
+ id: string;
156355
+ blocks: {
156356
+ type: "Block";
156357
+ data: {
156358
+ items: {
156359
+ id: string;
156360
+ props: Record<string, {
156361
+ value?: any;
156362
+ } & Record<string, any>>;
156363
+ linksTo?: {
156364
+ type: "DocumentationItem" | "PageHeading" | "Url";
156365
+ url?: string | undefined;
156366
+ documentationItemId?: string | undefined;
156367
+ pageHeadingId?: string | undefined;
156368
+ openInNewTab?: boolean | undefined;
156369
+ } | undefined;
156370
+ }[];
156371
+ packageId: string;
156372
+ indentLevel: number;
156373
+ appearance?: {
156374
+ numberOfColumns?: number | undefined;
156375
+ itemBackgroundColor?: {
156376
+ value: string;
156377
+ referencedTokenId?: string | undefined;
156378
+ } | undefined;
156379
+ } | undefined;
156380
+ variantId?: string | undefined;
156381
+ };
156382
+ id: string;
156383
+ }[];
156384
+ }[];
156385
+ }, {
156386
+ id: string;
156387
+ title: string;
156388
+ columns: {
156389
+ id: string;
156390
+ blocks: {
156391
+ type: "Block";
156392
+ data: {
156393
+ items: {
156394
+ id: string;
156395
+ props: Record<string, {
156396
+ value?: any;
156397
+ } & Record<string, any>>;
156398
+ linksTo?: {
156399
+ type: "DocumentationItem" | "PageHeading" | "Url";
156400
+ url?: string | undefined;
156401
+ documentationItemId?: string | undefined;
156402
+ pageHeadingId?: string | undefined;
156403
+ openInNewTab?: boolean | undefined;
156404
+ } | undefined;
156405
+ }[];
156406
+ packageId: string;
156407
+ indentLevel: number;
156408
+ appearance?: {
156409
+ numberOfColumns?: number | undefined;
156410
+ itemBackgroundColor?: {
156411
+ value: string;
156412
+ referencedTokenId?: string | undefined;
156413
+ } | undefined;
156414
+ } | undefined;
156415
+ variantId?: string | undefined;
156416
+ };
156417
+ id: string;
156418
+ }[];
156419
+ }[];
156420
+ }>, "many">;
156421
+ }, "strip", z.ZodTypeAny, {
156422
+ type: "Section";
156423
+ id: string;
156424
+ items: {
156425
+ id: string;
156426
+ title: string;
156427
+ columns: {
156428
+ id: string;
156429
+ blocks: {
156430
+ type: "Block";
156431
+ data: {
156432
+ items: {
156433
+ id: string;
156434
+ props: Record<string, {
156435
+ value?: any;
156436
+ } & Record<string, any>>;
156437
+ linksTo?: {
156438
+ type: "DocumentationItem" | "PageHeading" | "Url";
156439
+ url?: string | undefined;
156440
+ documentationItemId?: string | undefined;
156441
+ pageHeadingId?: string | undefined;
156442
+ openInNewTab?: boolean | undefined;
156443
+ } | undefined;
156444
+ }[];
156445
+ packageId: string;
156446
+ indentLevel: number;
156447
+ appearance?: {
156448
+ numberOfColumns?: number | undefined;
156449
+ itemBackgroundColor?: {
156450
+ value: string;
156451
+ referencedTokenId?: string | undefined;
156452
+ } | undefined;
156453
+ } | undefined;
156454
+ variantId?: string | undefined;
156455
+ };
156456
+ id: string;
156457
+ }[];
156458
+ }[];
156459
+ }[];
156460
+ appearance: {
156461
+ expandToEdges: boolean;
156462
+ contentExpandToEdges: boolean;
156463
+ backgroundColor?: {
156464
+ value: string;
156465
+ referencedTokenId?: string | undefined;
156466
+ } | undefined;
156467
+ foregroundColor?: {
156468
+ value: string;
156469
+ referencedTokenId?: string | undefined;
156470
+ } | undefined;
156471
+ padding?: {
156472
+ top?: number | undefined;
156473
+ bottom?: number | undefined;
156474
+ left?: number | undefined;
156475
+ right?: number | undefined;
156476
+ } | undefined;
156477
+ };
156478
+ sectionType: "Tabs";
156479
+ variantId?: string | undefined;
156480
+ }, {
156481
+ type: "Section";
156482
+ id: string;
156483
+ items: {
156484
+ id: string;
156485
+ title: string;
156486
+ columns: {
156487
+ id: string;
156488
+ blocks: {
156489
+ type: "Block";
156490
+ data: {
156491
+ items: {
156492
+ id: string;
156493
+ props: Record<string, {
156494
+ value?: any;
156495
+ } & Record<string, any>>;
156496
+ linksTo?: {
156497
+ type: "DocumentationItem" | "PageHeading" | "Url";
156498
+ url?: string | undefined;
156499
+ documentationItemId?: string | undefined;
156500
+ pageHeadingId?: string | undefined;
156501
+ openInNewTab?: boolean | undefined;
156502
+ } | undefined;
156503
+ }[];
156504
+ packageId: string;
156505
+ indentLevel: number;
156506
+ appearance?: {
156507
+ numberOfColumns?: number | undefined;
156508
+ itemBackgroundColor?: {
156509
+ value: string;
156510
+ referencedTokenId?: string | undefined;
156511
+ } | undefined;
156512
+ } | undefined;
156513
+ variantId?: string | undefined;
156514
+ };
156515
+ id: string;
156516
+ }[];
156517
+ }[];
156518
+ }[];
156519
+ appearance: {
156520
+ expandToEdges: boolean;
156521
+ contentExpandToEdges: boolean;
156522
+ backgroundColor?: {
156523
+ value: string;
156524
+ referencedTokenId?: string | undefined;
156525
+ } | undefined;
156526
+ foregroundColor?: {
156527
+ value: string;
156528
+ referencedTokenId?: string | undefined;
156529
+ } | undefined;
156530
+ padding?: {
156531
+ top?: number | undefined;
156532
+ bottom?: number | undefined;
156533
+ left?: number | undefined;
156534
+ right?: number | undefined;
156535
+ } | undefined;
156536
+ };
156537
+ sectionType: "Tabs";
156538
+ variantId?: string | undefined;
156539
+ }>]>, "many">;
156540
+ }, "strip", z.ZodTypeAny, {
156541
+ items: ({
156542
+ type: "Block";
156543
+ data: {
156544
+ items: {
156545
+ id: string;
156546
+ props: Record<string, {
156547
+ value?: any;
156548
+ } & Record<string, any>>;
156549
+ linksTo?: {
156550
+ type: "DocumentationItem" | "PageHeading" | "Url";
156551
+ url?: string | undefined;
156552
+ documentationItemId?: string | undefined;
156553
+ pageHeadingId?: string | undefined;
156554
+ openInNewTab?: boolean | undefined;
156555
+ } | undefined;
156556
+ }[];
156557
+ packageId: string;
156558
+ indentLevel: number;
156559
+ appearance?: {
156560
+ numberOfColumns?: number | undefined;
156561
+ itemBackgroundColor?: {
156562
+ value: string;
156563
+ referencedTokenId?: string | undefined;
156564
+ } | undefined;
156565
+ } | undefined;
156566
+ variantId?: string | undefined;
156567
+ };
156568
+ id: string;
156569
+ } | {
156570
+ type: "Section";
156571
+ id: string;
156572
+ items: {
156573
+ id: string;
156574
+ title: string;
156575
+ columns: {
156576
+ id: string;
156577
+ blocks: {
156578
+ type: "Block";
156579
+ data: {
156580
+ items: {
156581
+ id: string;
156582
+ props: Record<string, {
156583
+ value?: any;
156584
+ } & Record<string, any>>;
156585
+ linksTo?: {
156586
+ type: "DocumentationItem" | "PageHeading" | "Url";
156587
+ url?: string | undefined;
156588
+ documentationItemId?: string | undefined;
156589
+ pageHeadingId?: string | undefined;
156590
+ openInNewTab?: boolean | undefined;
156591
+ } | undefined;
156592
+ }[];
156593
+ packageId: string;
156594
+ indentLevel: number;
156595
+ appearance?: {
156596
+ numberOfColumns?: number | undefined;
156597
+ itemBackgroundColor?: {
156598
+ value: string;
156599
+ referencedTokenId?: string | undefined;
156600
+ } | undefined;
156601
+ } | undefined;
156602
+ variantId?: string | undefined;
156603
+ };
156604
+ id: string;
156605
+ }[];
156606
+ }[];
156607
+ }[];
156608
+ appearance: {
156609
+ expandToEdges: boolean;
156610
+ contentExpandToEdges: boolean;
156611
+ backgroundColor?: {
156612
+ value: string;
156613
+ referencedTokenId?: string | undefined;
156614
+ } | undefined;
156615
+ foregroundColor?: {
156616
+ value: string;
156617
+ referencedTokenId?: string | undefined;
156618
+ } | undefined;
156619
+ padding?: {
156620
+ top?: number | undefined;
156621
+ bottom?: number | undefined;
156622
+ left?: number | undefined;
156623
+ right?: number | undefined;
156624
+ } | undefined;
156625
+ };
156626
+ sectionType: "Tabs";
156627
+ variantId?: string | undefined;
156628
+ })[];
156629
+ }, {
156630
+ items: ({
156631
+ type: "Block";
156632
+ data: {
156633
+ items: {
156634
+ id: string;
156635
+ props: Record<string, {
156636
+ value?: any;
156637
+ } & Record<string, any>>;
156638
+ linksTo?: {
156639
+ type: "DocumentationItem" | "PageHeading" | "Url";
156640
+ url?: string | undefined;
156641
+ documentationItemId?: string | undefined;
156642
+ pageHeadingId?: string | undefined;
156643
+ openInNewTab?: boolean | undefined;
156644
+ } | undefined;
156645
+ }[];
156646
+ packageId: string;
156647
+ indentLevel: number;
156648
+ appearance?: {
156649
+ numberOfColumns?: number | undefined;
156650
+ itemBackgroundColor?: {
156651
+ value: string;
156652
+ referencedTokenId?: string | undefined;
156653
+ } | undefined;
156654
+ } | undefined;
156655
+ variantId?: string | undefined;
156656
+ };
156657
+ id: string;
156658
+ } | {
156659
+ type: "Section";
156660
+ id: string;
156661
+ items: {
156662
+ id: string;
156663
+ title: string;
156664
+ columns: {
156665
+ id: string;
156666
+ blocks: {
156667
+ type: "Block";
156668
+ data: {
156669
+ items: {
156670
+ id: string;
156671
+ props: Record<string, {
156672
+ value?: any;
156673
+ } & Record<string, any>>;
156674
+ linksTo?: {
156675
+ type: "DocumentationItem" | "PageHeading" | "Url";
156676
+ url?: string | undefined;
156677
+ documentationItemId?: string | undefined;
156678
+ pageHeadingId?: string | undefined;
156679
+ openInNewTab?: boolean | undefined;
156680
+ } | undefined;
156681
+ }[];
156682
+ packageId: string;
156683
+ indentLevel: number;
156684
+ appearance?: {
156685
+ numberOfColumns?: number | undefined;
156686
+ itemBackgroundColor?: {
156687
+ value: string;
156688
+ referencedTokenId?: string | undefined;
156689
+ } | undefined;
156690
+ } | undefined;
156691
+ variantId?: string | undefined;
156692
+ };
156693
+ id: string;
156694
+ }[];
156695
+ }[];
156696
+ }[];
156697
+ appearance: {
156698
+ expandToEdges: boolean;
156699
+ contentExpandToEdges: boolean;
156700
+ backgroundColor?: {
156701
+ value: string;
156702
+ referencedTokenId?: string | undefined;
156703
+ } | undefined;
156704
+ foregroundColor?: {
156705
+ value: string;
156706
+ referencedTokenId?: string | undefined;
156707
+ } | undefined;
156708
+ padding?: {
156709
+ top?: number | undefined;
156710
+ bottom?: number | undefined;
156711
+ left?: number | undefined;
156712
+ right?: number | undefined;
156713
+ } | undefined;
156714
+ };
156715
+ sectionType: "Tabs";
156716
+ variantId?: string | undefined;
156717
+ })[];
156718
+ }>;
156719
+ type ForgeProjectArtifactContentData = z.infer<typeof ForgeProjectArtifactContentData>;
156720
+
154723
156721
  declare const ForgeProjectArtifact: z.ZodObject<{
154724
156722
  id: z.ZodString;
154725
156723
  projectId: z.ZodString;
@@ -186910,4 +188908,4 @@ type PersonalAccessTokenWithUser = {
186910
188908
  token: PersonalAccessToken;
186911
188909
  };
186912
188910
 
186913
- 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 CreateFeature, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeProjecRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, type ForgeProjectRoomOwner, ForgeProjectTag, 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, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFeature, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeProjecRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
188911
+ 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 CreateFeature, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeProjecRoom, type CreateForgeProject, type CreateForgeProjectArtifactRoom, type CreateForgeProjectContext, type CreateForgeProjectInvitation, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, type DefinedProps, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectAccessMode, ForgeProjectArtifact, ForgeProjectArtifactContent, ForgeProjectArtifactContentData, type ForgeProjectArtifactParsedRoomId, ForgeProjectArtifactRoom, type ForgeProjectArtifactRoomOwner, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectInvitation, ForgeProjectIteration, ForgeProjectIterationMergeMeta, ForgeProjectMembership, type ForgeProjectParsedRoomId, ForgeProjectRole, ForgeProjectRoom, type ForgeProjectRoomOwner, ForgeProjectTag, 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, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsSidebar, PortalSettingsSidebarLink, PortalSettingsSidebarSection, PortalSettingsTheme, PortalTheme, PortalThemePreset, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, ProjectFeature, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFeature, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeProjecRoom, type UpdateForgeProject, type UpdateForgeProjectArtifactRoom, type UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, UserThemePreset, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickDefined, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };