@supernova-studio/model 1.12.1 → 1.13.0

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
@@ -893,6 +893,19 @@ declare const FeaturesSummary: z.ZodObject<{
893
893
  errorReason: string;
894
894
  max?: number | undefined;
895
895
  }>;
896
+ forgeActiveProjects: z.ZodObject<{
897
+ max: z.ZodOptional<z.ZodNumber>;
898
+ errorMessage: z.ZodString;
899
+ errorReason: z.ZodString;
900
+ }, "strip", z.ZodTypeAny, {
901
+ errorMessage: string;
902
+ errorReason: string;
903
+ max?: number | undefined;
904
+ }, {
905
+ errorMessage: string;
906
+ errorReason: string;
907
+ max?: number | undefined;
908
+ }>;
896
909
  }, "strip", z.ZodTypeAny, {
897
910
  analytics: {
898
911
  errorMessage: string;
@@ -1021,6 +1034,11 @@ declare const FeaturesSummary: z.ZodObject<{
1021
1034
  errorReason: string;
1022
1035
  max?: number | undefined;
1023
1036
  };
1037
+ forgeActiveProjects: {
1038
+ errorMessage: string;
1039
+ errorReason: string;
1040
+ max?: number | undefined;
1041
+ };
1024
1042
  }, {
1025
1043
  analytics: {
1026
1044
  errorMessage: string;
@@ -1149,6 +1167,11 @@ declare const FeaturesSummary: z.ZodObject<{
1149
1167
  errorReason: string;
1150
1168
  max?: number | undefined;
1151
1169
  };
1170
+ forgeActiveProjects: {
1171
+ errorMessage: string;
1172
+ errorReason: string;
1173
+ max?: number | undefined;
1174
+ };
1152
1175
  }>;
1153
1176
  type FeaturesSummary = z.infer<typeof FeaturesSummary>;
1154
1177
 
@@ -154720,6 +154743,2004 @@ declare const ForgeParticipant: z.ZodObject<{
154720
154743
  }>;
154721
154744
  type ForgeParticipant = z.infer<typeof ForgeParticipant>;
154722
154745
 
154746
+ declare const ForgeProjectArtifactContent: z.ZodObject<{
154747
+ id: z.ZodString;
154748
+ artifactId: z.ZodString;
154749
+ projectId: z.ZodString;
154750
+ createdAt: z.ZodDate;
154751
+ updatedAt: z.ZodDate;
154752
+ data: z.ZodObject<{
154753
+ items: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
154754
+ id: z.ZodString;
154755
+ type: z.ZodLiteral<"Block">;
154756
+ data: z.ZodObject<{
154757
+ packageId: z.ZodString;
154758
+ variantId: z.ZodOptional<z.ZodString>;
154759
+ indentLevel: z.ZodNumber;
154760
+ appearance: z.ZodOptional<z.ZodObject<{
154761
+ itemBackgroundColor: z.ZodOptional<z.ZodObject<{
154762
+ value: z.ZodString;
154763
+ referencedTokenId: z.ZodOptional<z.ZodString>;
154764
+ }, "strip", z.ZodTypeAny, {
154765
+ value: string;
154766
+ referencedTokenId?: string | undefined;
154767
+ }, {
154768
+ value: string;
154769
+ referencedTokenId?: string | undefined;
154770
+ }>>;
154771
+ numberOfColumns: z.ZodOptional<z.ZodNumber>;
154772
+ }, "strip", z.ZodTypeAny, {
154773
+ numberOfColumns?: number | undefined;
154774
+ itemBackgroundColor?: {
154775
+ value: string;
154776
+ referencedTokenId?: string | undefined;
154777
+ } | undefined;
154778
+ }, {
154779
+ numberOfColumns?: number | undefined;
154780
+ itemBackgroundColor?: {
154781
+ value: string;
154782
+ referencedTokenId?: string | undefined;
154783
+ } | undefined;
154784
+ }>>;
154785
+ items: z.ZodArray<z.ZodObject<{
154786
+ id: z.ZodString;
154787
+ linksTo: z.ZodOptional<z.ZodObject<{
154788
+ type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
154789
+ documentationItemId: z.ZodOptional<z.ZodString>;
154790
+ pageHeadingId: z.ZodOptional<z.ZodString>;
154791
+ url: z.ZodOptional<z.ZodString>;
154792
+ openInNewTab: z.ZodOptional<z.ZodBoolean>;
154793
+ }, "strip", z.ZodTypeAny, {
154794
+ type: "DocumentationItem" | "PageHeading" | "Url";
154795
+ url?: string | undefined;
154796
+ documentationItemId?: string | undefined;
154797
+ pageHeadingId?: string | undefined;
154798
+ openInNewTab?: boolean | undefined;
154799
+ }, {
154800
+ type: "DocumentationItem" | "PageHeading" | "Url";
154801
+ url?: string | undefined;
154802
+ documentationItemId?: string | undefined;
154803
+ pageHeadingId?: string | undefined;
154804
+ openInNewTab?: boolean | undefined;
154805
+ }>>;
154806
+ props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
154807
+ value: z.ZodAny;
154808
+ }, "strip", z.ZodTypeAny, {
154809
+ value?: any;
154810
+ }, {
154811
+ value?: any;
154812
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
154813
+ }, "strip", z.ZodTypeAny, {
154814
+ id: string;
154815
+ props: Record<string, {
154816
+ value?: any;
154817
+ } & Record<string, any>>;
154818
+ linksTo?: {
154819
+ type: "DocumentationItem" | "PageHeading" | "Url";
154820
+ url?: string | undefined;
154821
+ documentationItemId?: string | undefined;
154822
+ pageHeadingId?: string | undefined;
154823
+ openInNewTab?: boolean | undefined;
154824
+ } | undefined;
154825
+ }, {
154826
+ id: string;
154827
+ props: Record<string, {
154828
+ value?: any;
154829
+ } & Record<string, any>>;
154830
+ linksTo?: {
154831
+ type: "DocumentationItem" | "PageHeading" | "Url";
154832
+ url?: string | undefined;
154833
+ documentationItemId?: string | undefined;
154834
+ pageHeadingId?: string | undefined;
154835
+ openInNewTab?: boolean | undefined;
154836
+ } | undefined;
154837
+ }>, "many">;
154838
+ }, "strip", z.ZodTypeAny, {
154839
+ items: {
154840
+ id: string;
154841
+ props: Record<string, {
154842
+ value?: any;
154843
+ } & Record<string, any>>;
154844
+ linksTo?: {
154845
+ type: "DocumentationItem" | "PageHeading" | "Url";
154846
+ url?: string | undefined;
154847
+ documentationItemId?: string | undefined;
154848
+ pageHeadingId?: string | undefined;
154849
+ openInNewTab?: boolean | undefined;
154850
+ } | undefined;
154851
+ }[];
154852
+ packageId: string;
154853
+ indentLevel: number;
154854
+ appearance?: {
154855
+ numberOfColumns?: number | undefined;
154856
+ itemBackgroundColor?: {
154857
+ value: string;
154858
+ referencedTokenId?: string | undefined;
154859
+ } | undefined;
154860
+ } | undefined;
154861
+ variantId?: string | undefined;
154862
+ }, {
154863
+ items: {
154864
+ id: string;
154865
+ props: Record<string, {
154866
+ value?: any;
154867
+ } & Record<string, any>>;
154868
+ linksTo?: {
154869
+ type: "DocumentationItem" | "PageHeading" | "Url";
154870
+ url?: string | undefined;
154871
+ documentationItemId?: string | undefined;
154872
+ pageHeadingId?: string | undefined;
154873
+ openInNewTab?: boolean | undefined;
154874
+ } | undefined;
154875
+ }[];
154876
+ packageId: string;
154877
+ indentLevel: number;
154878
+ appearance?: {
154879
+ numberOfColumns?: number | undefined;
154880
+ itemBackgroundColor?: {
154881
+ value: string;
154882
+ referencedTokenId?: string | undefined;
154883
+ } | undefined;
154884
+ } | undefined;
154885
+ variantId?: string | undefined;
154886
+ }>;
154887
+ }, "strip", z.ZodTypeAny, {
154888
+ type: "Block";
154889
+ data: {
154890
+ items: {
154891
+ id: string;
154892
+ props: Record<string, {
154893
+ value?: any;
154894
+ } & Record<string, any>>;
154895
+ linksTo?: {
154896
+ type: "DocumentationItem" | "PageHeading" | "Url";
154897
+ url?: string | undefined;
154898
+ documentationItemId?: string | undefined;
154899
+ pageHeadingId?: string | undefined;
154900
+ openInNewTab?: boolean | undefined;
154901
+ } | undefined;
154902
+ }[];
154903
+ packageId: string;
154904
+ indentLevel: number;
154905
+ appearance?: {
154906
+ numberOfColumns?: number | undefined;
154907
+ itemBackgroundColor?: {
154908
+ value: string;
154909
+ referencedTokenId?: string | undefined;
154910
+ } | undefined;
154911
+ } | undefined;
154912
+ variantId?: string | undefined;
154913
+ };
154914
+ id: string;
154915
+ }, {
154916
+ type: "Block";
154917
+ data: {
154918
+ items: {
154919
+ id: string;
154920
+ props: Record<string, {
154921
+ value?: any;
154922
+ } & Record<string, any>>;
154923
+ linksTo?: {
154924
+ type: "DocumentationItem" | "PageHeading" | "Url";
154925
+ url?: string | undefined;
154926
+ documentationItemId?: string | undefined;
154927
+ pageHeadingId?: string | undefined;
154928
+ openInNewTab?: boolean | undefined;
154929
+ } | undefined;
154930
+ }[];
154931
+ packageId: string;
154932
+ indentLevel: number;
154933
+ appearance?: {
154934
+ numberOfColumns?: number | undefined;
154935
+ itemBackgroundColor?: {
154936
+ value: string;
154937
+ referencedTokenId?: string | undefined;
154938
+ } | undefined;
154939
+ } | undefined;
154940
+ variantId?: string | undefined;
154941
+ };
154942
+ id: string;
154943
+ }>, z.ZodObject<{
154944
+ id: z.ZodString;
154945
+ type: z.ZodLiteral<"Section">;
154946
+ variantId: z.ZodOptional<z.ZodString>;
154947
+ sectionType: z.ZodEnum<["Tabs"]>;
154948
+ appearance: z.ZodObject<{
154949
+ expandToEdges: z.ZodBoolean;
154950
+ contentExpandToEdges: z.ZodBoolean;
154951
+ backgroundColor: z.ZodOptional<z.ZodObject<{
154952
+ value: z.ZodString;
154953
+ referencedTokenId: z.ZodOptional<z.ZodString>;
154954
+ }, "strip", z.ZodTypeAny, {
154955
+ value: string;
154956
+ referencedTokenId?: string | undefined;
154957
+ }, {
154958
+ value: string;
154959
+ referencedTokenId?: string | undefined;
154960
+ }>>;
154961
+ foregroundColor: z.ZodOptional<z.ZodObject<{
154962
+ value: z.ZodString;
154963
+ referencedTokenId: z.ZodOptional<z.ZodString>;
154964
+ }, "strip", z.ZodTypeAny, {
154965
+ value: string;
154966
+ referencedTokenId?: string | undefined;
154967
+ }, {
154968
+ value: string;
154969
+ referencedTokenId?: string | undefined;
154970
+ }>>;
154971
+ padding: z.ZodOptional<z.ZodObject<{
154972
+ top: z.ZodOptional<z.ZodNumber>;
154973
+ bottom: z.ZodOptional<z.ZodNumber>;
154974
+ left: z.ZodOptional<z.ZodNumber>;
154975
+ right: z.ZodOptional<z.ZodNumber>;
154976
+ }, "strip", z.ZodTypeAny, {
154977
+ top?: number | undefined;
154978
+ bottom?: number | undefined;
154979
+ left?: number | undefined;
154980
+ right?: number | undefined;
154981
+ }, {
154982
+ top?: number | undefined;
154983
+ bottom?: number | undefined;
154984
+ left?: number | undefined;
154985
+ right?: number | undefined;
154986
+ }>>;
154987
+ }, "strip", z.ZodTypeAny, {
154988
+ expandToEdges: boolean;
154989
+ contentExpandToEdges: boolean;
154990
+ backgroundColor?: {
154991
+ value: string;
154992
+ referencedTokenId?: string | undefined;
154993
+ } | undefined;
154994
+ foregroundColor?: {
154995
+ value: string;
154996
+ referencedTokenId?: string | undefined;
154997
+ } | undefined;
154998
+ padding?: {
154999
+ top?: number | undefined;
155000
+ bottom?: number | undefined;
155001
+ left?: number | undefined;
155002
+ right?: number | undefined;
155003
+ } | undefined;
155004
+ }, {
155005
+ expandToEdges: boolean;
155006
+ contentExpandToEdges: boolean;
155007
+ backgroundColor?: {
155008
+ value: string;
155009
+ referencedTokenId?: string | undefined;
155010
+ } | undefined;
155011
+ foregroundColor?: {
155012
+ value: string;
155013
+ referencedTokenId?: string | undefined;
155014
+ } | undefined;
155015
+ padding?: {
155016
+ top?: number | undefined;
155017
+ bottom?: number | undefined;
155018
+ left?: number | undefined;
155019
+ right?: number | undefined;
155020
+ } | undefined;
155021
+ }>;
155022
+ items: z.ZodArray<z.ZodObject<{
155023
+ id: z.ZodString;
155024
+ title: z.ZodString;
155025
+ columns: z.ZodArray<z.ZodObject<{
155026
+ id: z.ZodString;
155027
+ blocks: z.ZodArray<z.ZodObject<{
155028
+ id: z.ZodString;
155029
+ type: z.ZodLiteral<"Block">;
155030
+ data: z.ZodObject<{
155031
+ packageId: z.ZodString;
155032
+ variantId: z.ZodOptional<z.ZodString>;
155033
+ indentLevel: z.ZodNumber;
155034
+ appearance: z.ZodOptional<z.ZodObject<{
155035
+ itemBackgroundColor: z.ZodOptional<z.ZodObject<{
155036
+ value: z.ZodString;
155037
+ referencedTokenId: z.ZodOptional<z.ZodString>;
155038
+ }, "strip", z.ZodTypeAny, {
155039
+ value: string;
155040
+ referencedTokenId?: string | undefined;
155041
+ }, {
155042
+ value: string;
155043
+ referencedTokenId?: string | undefined;
155044
+ }>>;
155045
+ numberOfColumns: z.ZodOptional<z.ZodNumber>;
155046
+ }, "strip", z.ZodTypeAny, {
155047
+ numberOfColumns?: number | undefined;
155048
+ itemBackgroundColor?: {
155049
+ value: string;
155050
+ referencedTokenId?: string | undefined;
155051
+ } | undefined;
155052
+ }, {
155053
+ numberOfColumns?: number | undefined;
155054
+ itemBackgroundColor?: {
155055
+ value: string;
155056
+ referencedTokenId?: string | undefined;
155057
+ } | undefined;
155058
+ }>>;
155059
+ items: z.ZodArray<z.ZodObject<{
155060
+ id: z.ZodString;
155061
+ linksTo: z.ZodOptional<z.ZodObject<{
155062
+ type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
155063
+ documentationItemId: z.ZodOptional<z.ZodString>;
155064
+ pageHeadingId: z.ZodOptional<z.ZodString>;
155065
+ url: z.ZodOptional<z.ZodString>;
155066
+ openInNewTab: z.ZodOptional<z.ZodBoolean>;
155067
+ }, "strip", z.ZodTypeAny, {
155068
+ type: "DocumentationItem" | "PageHeading" | "Url";
155069
+ url?: string | undefined;
155070
+ documentationItemId?: string | undefined;
155071
+ pageHeadingId?: string | undefined;
155072
+ openInNewTab?: boolean | undefined;
155073
+ }, {
155074
+ type: "DocumentationItem" | "PageHeading" | "Url";
155075
+ url?: string | undefined;
155076
+ documentationItemId?: string | undefined;
155077
+ pageHeadingId?: string | undefined;
155078
+ openInNewTab?: boolean | undefined;
155079
+ }>>;
155080
+ props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
155081
+ value: z.ZodAny;
155082
+ }, "strip", z.ZodTypeAny, {
155083
+ value?: any;
155084
+ }, {
155085
+ value?: any;
155086
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
155087
+ }, "strip", z.ZodTypeAny, {
155088
+ id: string;
155089
+ props: Record<string, {
155090
+ value?: any;
155091
+ } & Record<string, any>>;
155092
+ linksTo?: {
155093
+ type: "DocumentationItem" | "PageHeading" | "Url";
155094
+ url?: string | undefined;
155095
+ documentationItemId?: string | undefined;
155096
+ pageHeadingId?: string | undefined;
155097
+ openInNewTab?: boolean | undefined;
155098
+ } | undefined;
155099
+ }, {
155100
+ id: string;
155101
+ props: Record<string, {
155102
+ value?: any;
155103
+ } & Record<string, any>>;
155104
+ linksTo?: {
155105
+ type: "DocumentationItem" | "PageHeading" | "Url";
155106
+ url?: string | undefined;
155107
+ documentationItemId?: string | undefined;
155108
+ pageHeadingId?: string | undefined;
155109
+ openInNewTab?: boolean | undefined;
155110
+ } | undefined;
155111
+ }>, "many">;
155112
+ }, "strip", z.ZodTypeAny, {
155113
+ items: {
155114
+ id: string;
155115
+ props: Record<string, {
155116
+ value?: any;
155117
+ } & Record<string, any>>;
155118
+ linksTo?: {
155119
+ type: "DocumentationItem" | "PageHeading" | "Url";
155120
+ url?: string | undefined;
155121
+ documentationItemId?: string | undefined;
155122
+ pageHeadingId?: string | undefined;
155123
+ openInNewTab?: boolean | undefined;
155124
+ } | undefined;
155125
+ }[];
155126
+ packageId: string;
155127
+ indentLevel: number;
155128
+ appearance?: {
155129
+ numberOfColumns?: number | undefined;
155130
+ itemBackgroundColor?: {
155131
+ value: string;
155132
+ referencedTokenId?: string | undefined;
155133
+ } | undefined;
155134
+ } | undefined;
155135
+ variantId?: string | undefined;
155136
+ }, {
155137
+ items: {
155138
+ id: string;
155139
+ props: Record<string, {
155140
+ value?: any;
155141
+ } & Record<string, any>>;
155142
+ linksTo?: {
155143
+ type: "DocumentationItem" | "PageHeading" | "Url";
155144
+ url?: string | undefined;
155145
+ documentationItemId?: string | undefined;
155146
+ pageHeadingId?: string | undefined;
155147
+ openInNewTab?: boolean | undefined;
155148
+ } | undefined;
155149
+ }[];
155150
+ packageId: string;
155151
+ indentLevel: number;
155152
+ appearance?: {
155153
+ numberOfColumns?: number | undefined;
155154
+ itemBackgroundColor?: {
155155
+ value: string;
155156
+ referencedTokenId?: string | undefined;
155157
+ } | undefined;
155158
+ } | undefined;
155159
+ variantId?: string | undefined;
155160
+ }>;
155161
+ }, "strip", z.ZodTypeAny, {
155162
+ type: "Block";
155163
+ data: {
155164
+ items: {
155165
+ id: string;
155166
+ props: Record<string, {
155167
+ value?: any;
155168
+ } & Record<string, any>>;
155169
+ linksTo?: {
155170
+ type: "DocumentationItem" | "PageHeading" | "Url";
155171
+ url?: string | undefined;
155172
+ documentationItemId?: string | undefined;
155173
+ pageHeadingId?: string | undefined;
155174
+ openInNewTab?: boolean | undefined;
155175
+ } | undefined;
155176
+ }[];
155177
+ packageId: string;
155178
+ indentLevel: number;
155179
+ appearance?: {
155180
+ numberOfColumns?: number | undefined;
155181
+ itemBackgroundColor?: {
155182
+ value: string;
155183
+ referencedTokenId?: string | undefined;
155184
+ } | undefined;
155185
+ } | undefined;
155186
+ variantId?: string | undefined;
155187
+ };
155188
+ id: string;
155189
+ }, {
155190
+ type: "Block";
155191
+ data: {
155192
+ items: {
155193
+ id: string;
155194
+ props: Record<string, {
155195
+ value?: any;
155196
+ } & Record<string, any>>;
155197
+ linksTo?: {
155198
+ type: "DocumentationItem" | "PageHeading" | "Url";
155199
+ url?: string | undefined;
155200
+ documentationItemId?: string | undefined;
155201
+ pageHeadingId?: string | undefined;
155202
+ openInNewTab?: boolean | undefined;
155203
+ } | undefined;
155204
+ }[];
155205
+ packageId: string;
155206
+ indentLevel: number;
155207
+ appearance?: {
155208
+ numberOfColumns?: number | undefined;
155209
+ itemBackgroundColor?: {
155210
+ value: string;
155211
+ referencedTokenId?: string | undefined;
155212
+ } | undefined;
155213
+ } | undefined;
155214
+ variantId?: string | undefined;
155215
+ };
155216
+ id: string;
155217
+ }>, "many">;
155218
+ }, "strip", z.ZodTypeAny, {
155219
+ id: string;
155220
+ blocks: {
155221
+ type: "Block";
155222
+ data: {
155223
+ items: {
155224
+ id: string;
155225
+ props: Record<string, {
155226
+ value?: any;
155227
+ } & Record<string, any>>;
155228
+ linksTo?: {
155229
+ type: "DocumentationItem" | "PageHeading" | "Url";
155230
+ url?: string | undefined;
155231
+ documentationItemId?: string | undefined;
155232
+ pageHeadingId?: string | undefined;
155233
+ openInNewTab?: boolean | undefined;
155234
+ } | undefined;
155235
+ }[];
155236
+ packageId: string;
155237
+ indentLevel: number;
155238
+ appearance?: {
155239
+ numberOfColumns?: number | undefined;
155240
+ itemBackgroundColor?: {
155241
+ value: string;
155242
+ referencedTokenId?: string | undefined;
155243
+ } | undefined;
155244
+ } | undefined;
155245
+ variantId?: string | undefined;
155246
+ };
155247
+ id: string;
155248
+ }[];
155249
+ }, {
155250
+ id: string;
155251
+ blocks: {
155252
+ type: "Block";
155253
+ data: {
155254
+ items: {
155255
+ id: string;
155256
+ props: Record<string, {
155257
+ value?: any;
155258
+ } & Record<string, any>>;
155259
+ linksTo?: {
155260
+ type: "DocumentationItem" | "PageHeading" | "Url";
155261
+ url?: string | undefined;
155262
+ documentationItemId?: string | undefined;
155263
+ pageHeadingId?: string | undefined;
155264
+ openInNewTab?: boolean | undefined;
155265
+ } | undefined;
155266
+ }[];
155267
+ packageId: string;
155268
+ indentLevel: number;
155269
+ appearance?: {
155270
+ numberOfColumns?: number | undefined;
155271
+ itemBackgroundColor?: {
155272
+ value: string;
155273
+ referencedTokenId?: string | undefined;
155274
+ } | undefined;
155275
+ } | undefined;
155276
+ variantId?: string | undefined;
155277
+ };
155278
+ id: string;
155279
+ }[];
155280
+ }>, "many">;
155281
+ }, "strip", z.ZodTypeAny, {
155282
+ id: string;
155283
+ title: string;
155284
+ columns: {
155285
+ id: string;
155286
+ blocks: {
155287
+ type: "Block";
155288
+ data: {
155289
+ items: {
155290
+ id: string;
155291
+ props: Record<string, {
155292
+ value?: any;
155293
+ } & Record<string, any>>;
155294
+ linksTo?: {
155295
+ type: "DocumentationItem" | "PageHeading" | "Url";
155296
+ url?: string | undefined;
155297
+ documentationItemId?: string | undefined;
155298
+ pageHeadingId?: string | undefined;
155299
+ openInNewTab?: boolean | undefined;
155300
+ } | undefined;
155301
+ }[];
155302
+ packageId: string;
155303
+ indentLevel: number;
155304
+ appearance?: {
155305
+ numberOfColumns?: number | undefined;
155306
+ itemBackgroundColor?: {
155307
+ value: string;
155308
+ referencedTokenId?: string | undefined;
155309
+ } | undefined;
155310
+ } | undefined;
155311
+ variantId?: string | undefined;
155312
+ };
155313
+ id: string;
155314
+ }[];
155315
+ }[];
155316
+ }, {
155317
+ id: string;
155318
+ title: string;
155319
+ columns: {
155320
+ id: string;
155321
+ blocks: {
155322
+ type: "Block";
155323
+ data: {
155324
+ items: {
155325
+ id: string;
155326
+ props: Record<string, {
155327
+ value?: any;
155328
+ } & Record<string, any>>;
155329
+ linksTo?: {
155330
+ type: "DocumentationItem" | "PageHeading" | "Url";
155331
+ url?: string | undefined;
155332
+ documentationItemId?: string | undefined;
155333
+ pageHeadingId?: string | undefined;
155334
+ openInNewTab?: boolean | undefined;
155335
+ } | undefined;
155336
+ }[];
155337
+ packageId: string;
155338
+ indentLevel: number;
155339
+ appearance?: {
155340
+ numberOfColumns?: number | undefined;
155341
+ itemBackgroundColor?: {
155342
+ value: string;
155343
+ referencedTokenId?: string | undefined;
155344
+ } | undefined;
155345
+ } | undefined;
155346
+ variantId?: string | undefined;
155347
+ };
155348
+ id: string;
155349
+ }[];
155350
+ }[];
155351
+ }>, "many">;
155352
+ }, "strip", z.ZodTypeAny, {
155353
+ type: "Section";
155354
+ id: string;
155355
+ items: {
155356
+ id: string;
155357
+ title: string;
155358
+ columns: {
155359
+ id: string;
155360
+ blocks: {
155361
+ type: "Block";
155362
+ data: {
155363
+ items: {
155364
+ id: string;
155365
+ props: Record<string, {
155366
+ value?: any;
155367
+ } & Record<string, any>>;
155368
+ linksTo?: {
155369
+ type: "DocumentationItem" | "PageHeading" | "Url";
155370
+ url?: string | undefined;
155371
+ documentationItemId?: string | undefined;
155372
+ pageHeadingId?: string | undefined;
155373
+ openInNewTab?: boolean | undefined;
155374
+ } | undefined;
155375
+ }[];
155376
+ packageId: string;
155377
+ indentLevel: number;
155378
+ appearance?: {
155379
+ numberOfColumns?: number | undefined;
155380
+ itemBackgroundColor?: {
155381
+ value: string;
155382
+ referencedTokenId?: string | undefined;
155383
+ } | undefined;
155384
+ } | undefined;
155385
+ variantId?: string | undefined;
155386
+ };
155387
+ id: string;
155388
+ }[];
155389
+ }[];
155390
+ }[];
155391
+ appearance: {
155392
+ expandToEdges: boolean;
155393
+ contentExpandToEdges: boolean;
155394
+ backgroundColor?: {
155395
+ value: string;
155396
+ referencedTokenId?: string | undefined;
155397
+ } | undefined;
155398
+ foregroundColor?: {
155399
+ value: string;
155400
+ referencedTokenId?: string | undefined;
155401
+ } | undefined;
155402
+ padding?: {
155403
+ top?: number | undefined;
155404
+ bottom?: number | undefined;
155405
+ left?: number | undefined;
155406
+ right?: number | undefined;
155407
+ } | undefined;
155408
+ };
155409
+ sectionType: "Tabs";
155410
+ variantId?: string | undefined;
155411
+ }, {
155412
+ type: "Section";
155413
+ id: string;
155414
+ items: {
155415
+ id: string;
155416
+ title: string;
155417
+ columns: {
155418
+ id: string;
155419
+ blocks: {
155420
+ type: "Block";
155421
+ data: {
155422
+ items: {
155423
+ id: string;
155424
+ props: Record<string, {
155425
+ value?: any;
155426
+ } & Record<string, any>>;
155427
+ linksTo?: {
155428
+ type: "DocumentationItem" | "PageHeading" | "Url";
155429
+ url?: string | undefined;
155430
+ documentationItemId?: string | undefined;
155431
+ pageHeadingId?: string | undefined;
155432
+ openInNewTab?: boolean | undefined;
155433
+ } | undefined;
155434
+ }[];
155435
+ packageId: string;
155436
+ indentLevel: number;
155437
+ appearance?: {
155438
+ numberOfColumns?: number | undefined;
155439
+ itemBackgroundColor?: {
155440
+ value: string;
155441
+ referencedTokenId?: string | undefined;
155442
+ } | undefined;
155443
+ } | undefined;
155444
+ variantId?: string | undefined;
155445
+ };
155446
+ id: string;
155447
+ }[];
155448
+ }[];
155449
+ }[];
155450
+ appearance: {
155451
+ expandToEdges: boolean;
155452
+ contentExpandToEdges: boolean;
155453
+ backgroundColor?: {
155454
+ value: string;
155455
+ referencedTokenId?: string | undefined;
155456
+ } | undefined;
155457
+ foregroundColor?: {
155458
+ value: string;
155459
+ referencedTokenId?: string | undefined;
155460
+ } | undefined;
155461
+ padding?: {
155462
+ top?: number | undefined;
155463
+ bottom?: number | undefined;
155464
+ left?: number | undefined;
155465
+ right?: number | undefined;
155466
+ } | undefined;
155467
+ };
155468
+ sectionType: "Tabs";
155469
+ variantId?: string | undefined;
155470
+ }>]>, "many">;
155471
+ }, "strip", z.ZodTypeAny, {
155472
+ items: ({
155473
+ type: "Block";
155474
+ data: {
155475
+ items: {
155476
+ id: string;
155477
+ props: Record<string, {
155478
+ value?: any;
155479
+ } & Record<string, any>>;
155480
+ linksTo?: {
155481
+ type: "DocumentationItem" | "PageHeading" | "Url";
155482
+ url?: string | undefined;
155483
+ documentationItemId?: string | undefined;
155484
+ pageHeadingId?: string | undefined;
155485
+ openInNewTab?: boolean | undefined;
155486
+ } | undefined;
155487
+ }[];
155488
+ packageId: string;
155489
+ indentLevel: number;
155490
+ appearance?: {
155491
+ numberOfColumns?: number | undefined;
155492
+ itemBackgroundColor?: {
155493
+ value: string;
155494
+ referencedTokenId?: string | undefined;
155495
+ } | undefined;
155496
+ } | undefined;
155497
+ variantId?: string | undefined;
155498
+ };
155499
+ id: string;
155500
+ } | {
155501
+ type: "Section";
155502
+ id: string;
155503
+ items: {
155504
+ id: string;
155505
+ title: string;
155506
+ columns: {
155507
+ id: string;
155508
+ blocks: {
155509
+ type: "Block";
155510
+ data: {
155511
+ items: {
155512
+ id: string;
155513
+ props: Record<string, {
155514
+ value?: any;
155515
+ } & Record<string, any>>;
155516
+ linksTo?: {
155517
+ type: "DocumentationItem" | "PageHeading" | "Url";
155518
+ url?: string | undefined;
155519
+ documentationItemId?: string | undefined;
155520
+ pageHeadingId?: string | undefined;
155521
+ openInNewTab?: boolean | undefined;
155522
+ } | undefined;
155523
+ }[];
155524
+ packageId: string;
155525
+ indentLevel: number;
155526
+ appearance?: {
155527
+ numberOfColumns?: number | undefined;
155528
+ itemBackgroundColor?: {
155529
+ value: string;
155530
+ referencedTokenId?: string | undefined;
155531
+ } | undefined;
155532
+ } | undefined;
155533
+ variantId?: string | undefined;
155534
+ };
155535
+ id: string;
155536
+ }[];
155537
+ }[];
155538
+ }[];
155539
+ appearance: {
155540
+ expandToEdges: boolean;
155541
+ contentExpandToEdges: boolean;
155542
+ backgroundColor?: {
155543
+ value: string;
155544
+ referencedTokenId?: string | undefined;
155545
+ } | undefined;
155546
+ foregroundColor?: {
155547
+ value: string;
155548
+ referencedTokenId?: string | undefined;
155549
+ } | undefined;
155550
+ padding?: {
155551
+ top?: number | undefined;
155552
+ bottom?: number | undefined;
155553
+ left?: number | undefined;
155554
+ right?: number | undefined;
155555
+ } | undefined;
155556
+ };
155557
+ sectionType: "Tabs";
155558
+ variantId?: string | undefined;
155559
+ })[];
155560
+ }, {
155561
+ items: ({
155562
+ type: "Block";
155563
+ data: {
155564
+ items: {
155565
+ id: string;
155566
+ props: Record<string, {
155567
+ value?: any;
155568
+ } & Record<string, any>>;
155569
+ linksTo?: {
155570
+ type: "DocumentationItem" | "PageHeading" | "Url";
155571
+ url?: string | undefined;
155572
+ documentationItemId?: string | undefined;
155573
+ pageHeadingId?: string | undefined;
155574
+ openInNewTab?: boolean | undefined;
155575
+ } | undefined;
155576
+ }[];
155577
+ packageId: string;
155578
+ indentLevel: number;
155579
+ appearance?: {
155580
+ numberOfColumns?: number | undefined;
155581
+ itemBackgroundColor?: {
155582
+ value: string;
155583
+ referencedTokenId?: string | undefined;
155584
+ } | undefined;
155585
+ } | undefined;
155586
+ variantId?: string | undefined;
155587
+ };
155588
+ id: string;
155589
+ } | {
155590
+ type: "Section";
155591
+ id: string;
155592
+ items: {
155593
+ id: string;
155594
+ title: string;
155595
+ columns: {
155596
+ id: string;
155597
+ blocks: {
155598
+ type: "Block";
155599
+ data: {
155600
+ items: {
155601
+ id: string;
155602
+ props: Record<string, {
155603
+ value?: any;
155604
+ } & Record<string, any>>;
155605
+ linksTo?: {
155606
+ type: "DocumentationItem" | "PageHeading" | "Url";
155607
+ url?: string | undefined;
155608
+ documentationItemId?: string | undefined;
155609
+ pageHeadingId?: string | undefined;
155610
+ openInNewTab?: boolean | undefined;
155611
+ } | undefined;
155612
+ }[];
155613
+ packageId: string;
155614
+ indentLevel: number;
155615
+ appearance?: {
155616
+ numberOfColumns?: number | undefined;
155617
+ itemBackgroundColor?: {
155618
+ value: string;
155619
+ referencedTokenId?: string | undefined;
155620
+ } | undefined;
155621
+ } | undefined;
155622
+ variantId?: string | undefined;
155623
+ };
155624
+ id: string;
155625
+ }[];
155626
+ }[];
155627
+ }[];
155628
+ appearance: {
155629
+ expandToEdges: boolean;
155630
+ contentExpandToEdges: boolean;
155631
+ backgroundColor?: {
155632
+ value: string;
155633
+ referencedTokenId?: string | undefined;
155634
+ } | undefined;
155635
+ foregroundColor?: {
155636
+ value: string;
155637
+ referencedTokenId?: string | undefined;
155638
+ } | undefined;
155639
+ padding?: {
155640
+ top?: number | undefined;
155641
+ bottom?: number | undefined;
155642
+ left?: number | undefined;
155643
+ right?: number | undefined;
155644
+ } | undefined;
155645
+ };
155646
+ sectionType: "Tabs";
155647
+ variantId?: string | undefined;
155648
+ })[];
155649
+ }>;
155650
+ }, "strip", z.ZodTypeAny, {
155651
+ data: {
155652
+ items: ({
155653
+ type: "Block";
155654
+ data: {
155655
+ items: {
155656
+ id: string;
155657
+ props: Record<string, {
155658
+ value?: any;
155659
+ } & Record<string, any>>;
155660
+ linksTo?: {
155661
+ type: "DocumentationItem" | "PageHeading" | "Url";
155662
+ url?: string | undefined;
155663
+ documentationItemId?: string | undefined;
155664
+ pageHeadingId?: string | undefined;
155665
+ openInNewTab?: boolean | undefined;
155666
+ } | undefined;
155667
+ }[];
155668
+ packageId: string;
155669
+ indentLevel: number;
155670
+ appearance?: {
155671
+ numberOfColumns?: number | undefined;
155672
+ itemBackgroundColor?: {
155673
+ value: string;
155674
+ referencedTokenId?: string | undefined;
155675
+ } | undefined;
155676
+ } | undefined;
155677
+ variantId?: string | undefined;
155678
+ };
155679
+ id: string;
155680
+ } | {
155681
+ type: "Section";
155682
+ id: string;
155683
+ items: {
155684
+ id: string;
155685
+ title: string;
155686
+ columns: {
155687
+ id: string;
155688
+ blocks: {
155689
+ type: "Block";
155690
+ data: {
155691
+ items: {
155692
+ id: string;
155693
+ props: Record<string, {
155694
+ value?: any;
155695
+ } & Record<string, any>>;
155696
+ linksTo?: {
155697
+ type: "DocumentationItem" | "PageHeading" | "Url";
155698
+ url?: string | undefined;
155699
+ documentationItemId?: string | undefined;
155700
+ pageHeadingId?: string | undefined;
155701
+ openInNewTab?: boolean | undefined;
155702
+ } | undefined;
155703
+ }[];
155704
+ packageId: string;
155705
+ indentLevel: number;
155706
+ appearance?: {
155707
+ numberOfColumns?: number | undefined;
155708
+ itemBackgroundColor?: {
155709
+ value: string;
155710
+ referencedTokenId?: string | undefined;
155711
+ } | undefined;
155712
+ } | undefined;
155713
+ variantId?: string | undefined;
155714
+ };
155715
+ id: string;
155716
+ }[];
155717
+ }[];
155718
+ }[];
155719
+ appearance: {
155720
+ expandToEdges: boolean;
155721
+ contentExpandToEdges: boolean;
155722
+ backgroundColor?: {
155723
+ value: string;
155724
+ referencedTokenId?: string | undefined;
155725
+ } | undefined;
155726
+ foregroundColor?: {
155727
+ value: string;
155728
+ referencedTokenId?: string | undefined;
155729
+ } | undefined;
155730
+ padding?: {
155731
+ top?: number | undefined;
155732
+ bottom?: number | undefined;
155733
+ left?: number | undefined;
155734
+ right?: number | undefined;
155735
+ } | undefined;
155736
+ };
155737
+ sectionType: "Tabs";
155738
+ variantId?: string | undefined;
155739
+ })[];
155740
+ };
155741
+ id: string;
155742
+ createdAt: Date;
155743
+ updatedAt: Date;
155744
+ projectId: string;
155745
+ artifactId: string;
155746
+ }, {
155747
+ data: {
155748
+ items: ({
155749
+ type: "Block";
155750
+ data: {
155751
+ items: {
155752
+ id: string;
155753
+ props: Record<string, {
155754
+ value?: any;
155755
+ } & Record<string, any>>;
155756
+ linksTo?: {
155757
+ type: "DocumentationItem" | "PageHeading" | "Url";
155758
+ url?: string | undefined;
155759
+ documentationItemId?: string | undefined;
155760
+ pageHeadingId?: string | undefined;
155761
+ openInNewTab?: boolean | undefined;
155762
+ } | undefined;
155763
+ }[];
155764
+ packageId: string;
155765
+ indentLevel: number;
155766
+ appearance?: {
155767
+ numberOfColumns?: number | undefined;
155768
+ itemBackgroundColor?: {
155769
+ value: string;
155770
+ referencedTokenId?: string | undefined;
155771
+ } | undefined;
155772
+ } | undefined;
155773
+ variantId?: string | undefined;
155774
+ };
155775
+ id: string;
155776
+ } | {
155777
+ type: "Section";
155778
+ id: string;
155779
+ items: {
155780
+ id: string;
155781
+ title: string;
155782
+ columns: {
155783
+ id: string;
155784
+ blocks: {
155785
+ type: "Block";
155786
+ data: {
155787
+ items: {
155788
+ id: string;
155789
+ props: Record<string, {
155790
+ value?: any;
155791
+ } & Record<string, any>>;
155792
+ linksTo?: {
155793
+ type: "DocumentationItem" | "PageHeading" | "Url";
155794
+ url?: string | undefined;
155795
+ documentationItemId?: string | undefined;
155796
+ pageHeadingId?: string | undefined;
155797
+ openInNewTab?: boolean | undefined;
155798
+ } | undefined;
155799
+ }[];
155800
+ packageId: string;
155801
+ indentLevel: number;
155802
+ appearance?: {
155803
+ numberOfColumns?: number | undefined;
155804
+ itemBackgroundColor?: {
155805
+ value: string;
155806
+ referencedTokenId?: string | undefined;
155807
+ } | undefined;
155808
+ } | undefined;
155809
+ variantId?: string | undefined;
155810
+ };
155811
+ id: string;
155812
+ }[];
155813
+ }[];
155814
+ }[];
155815
+ appearance: {
155816
+ expandToEdges: boolean;
155817
+ contentExpandToEdges: boolean;
155818
+ backgroundColor?: {
155819
+ value: string;
155820
+ referencedTokenId?: string | undefined;
155821
+ } | undefined;
155822
+ foregroundColor?: {
155823
+ value: string;
155824
+ referencedTokenId?: string | undefined;
155825
+ } | undefined;
155826
+ padding?: {
155827
+ top?: number | undefined;
155828
+ bottom?: number | undefined;
155829
+ left?: number | undefined;
155830
+ right?: number | undefined;
155831
+ } | undefined;
155832
+ };
155833
+ sectionType: "Tabs";
155834
+ variantId?: string | undefined;
155835
+ })[];
155836
+ };
155837
+ id: string;
155838
+ createdAt: Date;
155839
+ updatedAt: Date;
155840
+ projectId: string;
155841
+ artifactId: string;
155842
+ }>;
155843
+ type ForgeProjectArtifactContent = z.infer<typeof ForgeProjectArtifactContent>;
155844
+ declare const ForgeProjectArtifactContentData: z.ZodObject<{
155845
+ items: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
155846
+ id: z.ZodString;
155847
+ type: z.ZodLiteral<"Block">;
155848
+ data: z.ZodObject<{
155849
+ packageId: z.ZodString;
155850
+ variantId: z.ZodOptional<z.ZodString>;
155851
+ indentLevel: z.ZodNumber;
155852
+ appearance: z.ZodOptional<z.ZodObject<{
155853
+ itemBackgroundColor: z.ZodOptional<z.ZodObject<{
155854
+ value: z.ZodString;
155855
+ referencedTokenId: z.ZodOptional<z.ZodString>;
155856
+ }, "strip", z.ZodTypeAny, {
155857
+ value: string;
155858
+ referencedTokenId?: string | undefined;
155859
+ }, {
155860
+ value: string;
155861
+ referencedTokenId?: string | undefined;
155862
+ }>>;
155863
+ numberOfColumns: z.ZodOptional<z.ZodNumber>;
155864
+ }, "strip", z.ZodTypeAny, {
155865
+ numberOfColumns?: number | undefined;
155866
+ itemBackgroundColor?: {
155867
+ value: string;
155868
+ referencedTokenId?: string | undefined;
155869
+ } | undefined;
155870
+ }, {
155871
+ numberOfColumns?: number | undefined;
155872
+ itemBackgroundColor?: {
155873
+ value: string;
155874
+ referencedTokenId?: string | undefined;
155875
+ } | undefined;
155876
+ }>>;
155877
+ items: z.ZodArray<z.ZodObject<{
155878
+ id: z.ZodString;
155879
+ linksTo: z.ZodOptional<z.ZodObject<{
155880
+ type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
155881
+ documentationItemId: z.ZodOptional<z.ZodString>;
155882
+ pageHeadingId: z.ZodOptional<z.ZodString>;
155883
+ url: z.ZodOptional<z.ZodString>;
155884
+ openInNewTab: z.ZodOptional<z.ZodBoolean>;
155885
+ }, "strip", z.ZodTypeAny, {
155886
+ type: "DocumentationItem" | "PageHeading" | "Url";
155887
+ url?: string | undefined;
155888
+ documentationItemId?: string | undefined;
155889
+ pageHeadingId?: string | undefined;
155890
+ openInNewTab?: boolean | undefined;
155891
+ }, {
155892
+ type: "DocumentationItem" | "PageHeading" | "Url";
155893
+ url?: string | undefined;
155894
+ documentationItemId?: string | undefined;
155895
+ pageHeadingId?: string | undefined;
155896
+ openInNewTab?: boolean | undefined;
155897
+ }>>;
155898
+ props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
155899
+ value: z.ZodAny;
155900
+ }, "strip", z.ZodTypeAny, {
155901
+ value?: any;
155902
+ }, {
155903
+ value?: any;
155904
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
155905
+ }, "strip", z.ZodTypeAny, {
155906
+ id: string;
155907
+ props: Record<string, {
155908
+ value?: any;
155909
+ } & Record<string, any>>;
155910
+ linksTo?: {
155911
+ type: "DocumentationItem" | "PageHeading" | "Url";
155912
+ url?: string | undefined;
155913
+ documentationItemId?: string | undefined;
155914
+ pageHeadingId?: string | undefined;
155915
+ openInNewTab?: boolean | undefined;
155916
+ } | undefined;
155917
+ }, {
155918
+ id: string;
155919
+ props: Record<string, {
155920
+ value?: any;
155921
+ } & Record<string, any>>;
155922
+ linksTo?: {
155923
+ type: "DocumentationItem" | "PageHeading" | "Url";
155924
+ url?: string | undefined;
155925
+ documentationItemId?: string | undefined;
155926
+ pageHeadingId?: string | undefined;
155927
+ openInNewTab?: boolean | undefined;
155928
+ } | undefined;
155929
+ }>, "many">;
155930
+ }, "strip", z.ZodTypeAny, {
155931
+ items: {
155932
+ id: string;
155933
+ props: Record<string, {
155934
+ value?: any;
155935
+ } & Record<string, any>>;
155936
+ linksTo?: {
155937
+ type: "DocumentationItem" | "PageHeading" | "Url";
155938
+ url?: string | undefined;
155939
+ documentationItemId?: string | undefined;
155940
+ pageHeadingId?: string | undefined;
155941
+ openInNewTab?: boolean | undefined;
155942
+ } | undefined;
155943
+ }[];
155944
+ packageId: string;
155945
+ indentLevel: number;
155946
+ appearance?: {
155947
+ numberOfColumns?: number | undefined;
155948
+ itemBackgroundColor?: {
155949
+ value: string;
155950
+ referencedTokenId?: string | undefined;
155951
+ } | undefined;
155952
+ } | undefined;
155953
+ variantId?: string | undefined;
155954
+ }, {
155955
+ items: {
155956
+ id: string;
155957
+ props: Record<string, {
155958
+ value?: any;
155959
+ } & Record<string, any>>;
155960
+ linksTo?: {
155961
+ type: "DocumentationItem" | "PageHeading" | "Url";
155962
+ url?: string | undefined;
155963
+ documentationItemId?: string | undefined;
155964
+ pageHeadingId?: string | undefined;
155965
+ openInNewTab?: boolean | undefined;
155966
+ } | undefined;
155967
+ }[];
155968
+ packageId: string;
155969
+ indentLevel: number;
155970
+ appearance?: {
155971
+ numberOfColumns?: number | undefined;
155972
+ itemBackgroundColor?: {
155973
+ value: string;
155974
+ referencedTokenId?: string | undefined;
155975
+ } | undefined;
155976
+ } | undefined;
155977
+ variantId?: string | undefined;
155978
+ }>;
155979
+ }, "strip", z.ZodTypeAny, {
155980
+ type: "Block";
155981
+ data: {
155982
+ items: {
155983
+ id: string;
155984
+ props: Record<string, {
155985
+ value?: any;
155986
+ } & Record<string, any>>;
155987
+ linksTo?: {
155988
+ type: "DocumentationItem" | "PageHeading" | "Url";
155989
+ url?: string | undefined;
155990
+ documentationItemId?: string | undefined;
155991
+ pageHeadingId?: string | undefined;
155992
+ openInNewTab?: boolean | undefined;
155993
+ } | undefined;
155994
+ }[];
155995
+ packageId: string;
155996
+ indentLevel: number;
155997
+ appearance?: {
155998
+ numberOfColumns?: number | undefined;
155999
+ itemBackgroundColor?: {
156000
+ value: string;
156001
+ referencedTokenId?: string | undefined;
156002
+ } | undefined;
156003
+ } | undefined;
156004
+ variantId?: string | undefined;
156005
+ };
156006
+ id: string;
156007
+ }, {
156008
+ type: "Block";
156009
+ data: {
156010
+ items: {
156011
+ id: string;
156012
+ props: Record<string, {
156013
+ value?: any;
156014
+ } & Record<string, any>>;
156015
+ linksTo?: {
156016
+ type: "DocumentationItem" | "PageHeading" | "Url";
156017
+ url?: string | undefined;
156018
+ documentationItemId?: string | undefined;
156019
+ pageHeadingId?: string | undefined;
156020
+ openInNewTab?: boolean | undefined;
156021
+ } | undefined;
156022
+ }[];
156023
+ packageId: string;
156024
+ indentLevel: number;
156025
+ appearance?: {
156026
+ numberOfColumns?: number | undefined;
156027
+ itemBackgroundColor?: {
156028
+ value: string;
156029
+ referencedTokenId?: string | undefined;
156030
+ } | undefined;
156031
+ } | undefined;
156032
+ variantId?: string | undefined;
156033
+ };
156034
+ id: string;
156035
+ }>, z.ZodObject<{
156036
+ id: z.ZodString;
156037
+ type: z.ZodLiteral<"Section">;
156038
+ variantId: z.ZodOptional<z.ZodString>;
156039
+ sectionType: z.ZodEnum<["Tabs"]>;
156040
+ appearance: z.ZodObject<{
156041
+ expandToEdges: z.ZodBoolean;
156042
+ contentExpandToEdges: z.ZodBoolean;
156043
+ backgroundColor: z.ZodOptional<z.ZodObject<{
156044
+ value: z.ZodString;
156045
+ referencedTokenId: z.ZodOptional<z.ZodString>;
156046
+ }, "strip", z.ZodTypeAny, {
156047
+ value: string;
156048
+ referencedTokenId?: string | undefined;
156049
+ }, {
156050
+ value: string;
156051
+ referencedTokenId?: string | undefined;
156052
+ }>>;
156053
+ foregroundColor: z.ZodOptional<z.ZodObject<{
156054
+ value: z.ZodString;
156055
+ referencedTokenId: z.ZodOptional<z.ZodString>;
156056
+ }, "strip", z.ZodTypeAny, {
156057
+ value: string;
156058
+ referencedTokenId?: string | undefined;
156059
+ }, {
156060
+ value: string;
156061
+ referencedTokenId?: string | undefined;
156062
+ }>>;
156063
+ padding: z.ZodOptional<z.ZodObject<{
156064
+ top: z.ZodOptional<z.ZodNumber>;
156065
+ bottom: z.ZodOptional<z.ZodNumber>;
156066
+ left: z.ZodOptional<z.ZodNumber>;
156067
+ right: z.ZodOptional<z.ZodNumber>;
156068
+ }, "strip", z.ZodTypeAny, {
156069
+ top?: number | undefined;
156070
+ bottom?: number | undefined;
156071
+ left?: number | undefined;
156072
+ right?: number | undefined;
156073
+ }, {
156074
+ top?: number | undefined;
156075
+ bottom?: number | undefined;
156076
+ left?: number | undefined;
156077
+ right?: number | undefined;
156078
+ }>>;
156079
+ }, "strip", z.ZodTypeAny, {
156080
+ expandToEdges: boolean;
156081
+ contentExpandToEdges: boolean;
156082
+ backgroundColor?: {
156083
+ value: string;
156084
+ referencedTokenId?: string | undefined;
156085
+ } | undefined;
156086
+ foregroundColor?: {
156087
+ value: string;
156088
+ referencedTokenId?: string | undefined;
156089
+ } | undefined;
156090
+ padding?: {
156091
+ top?: number | undefined;
156092
+ bottom?: number | undefined;
156093
+ left?: number | undefined;
156094
+ right?: number | undefined;
156095
+ } | undefined;
156096
+ }, {
156097
+ expandToEdges: boolean;
156098
+ contentExpandToEdges: boolean;
156099
+ backgroundColor?: {
156100
+ value: string;
156101
+ referencedTokenId?: string | undefined;
156102
+ } | undefined;
156103
+ foregroundColor?: {
156104
+ value: string;
156105
+ referencedTokenId?: string | undefined;
156106
+ } | undefined;
156107
+ padding?: {
156108
+ top?: number | undefined;
156109
+ bottom?: number | undefined;
156110
+ left?: number | undefined;
156111
+ right?: number | undefined;
156112
+ } | undefined;
156113
+ }>;
156114
+ items: z.ZodArray<z.ZodObject<{
156115
+ id: z.ZodString;
156116
+ title: z.ZodString;
156117
+ columns: z.ZodArray<z.ZodObject<{
156118
+ id: z.ZodString;
156119
+ blocks: z.ZodArray<z.ZodObject<{
156120
+ id: z.ZodString;
156121
+ type: z.ZodLiteral<"Block">;
156122
+ data: z.ZodObject<{
156123
+ packageId: z.ZodString;
156124
+ variantId: z.ZodOptional<z.ZodString>;
156125
+ indentLevel: z.ZodNumber;
156126
+ appearance: z.ZodOptional<z.ZodObject<{
156127
+ itemBackgroundColor: z.ZodOptional<z.ZodObject<{
156128
+ value: z.ZodString;
156129
+ referencedTokenId: z.ZodOptional<z.ZodString>;
156130
+ }, "strip", z.ZodTypeAny, {
156131
+ value: string;
156132
+ referencedTokenId?: string | undefined;
156133
+ }, {
156134
+ value: string;
156135
+ referencedTokenId?: string | undefined;
156136
+ }>>;
156137
+ numberOfColumns: z.ZodOptional<z.ZodNumber>;
156138
+ }, "strip", z.ZodTypeAny, {
156139
+ numberOfColumns?: number | undefined;
156140
+ itemBackgroundColor?: {
156141
+ value: string;
156142
+ referencedTokenId?: string | undefined;
156143
+ } | undefined;
156144
+ }, {
156145
+ numberOfColumns?: number | undefined;
156146
+ itemBackgroundColor?: {
156147
+ value: string;
156148
+ referencedTokenId?: string | undefined;
156149
+ } | undefined;
156150
+ }>>;
156151
+ items: z.ZodArray<z.ZodObject<{
156152
+ id: z.ZodString;
156153
+ linksTo: z.ZodOptional<z.ZodObject<{
156154
+ type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
156155
+ documentationItemId: z.ZodOptional<z.ZodString>;
156156
+ pageHeadingId: z.ZodOptional<z.ZodString>;
156157
+ url: z.ZodOptional<z.ZodString>;
156158
+ openInNewTab: z.ZodOptional<z.ZodBoolean>;
156159
+ }, "strip", z.ZodTypeAny, {
156160
+ type: "DocumentationItem" | "PageHeading" | "Url";
156161
+ url?: string | undefined;
156162
+ documentationItemId?: string | undefined;
156163
+ pageHeadingId?: string | undefined;
156164
+ openInNewTab?: boolean | undefined;
156165
+ }, {
156166
+ type: "DocumentationItem" | "PageHeading" | "Url";
156167
+ url?: string | undefined;
156168
+ documentationItemId?: string | undefined;
156169
+ pageHeadingId?: string | undefined;
156170
+ openInNewTab?: boolean | undefined;
156171
+ }>>;
156172
+ props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
156173
+ value: z.ZodAny;
156174
+ }, "strip", z.ZodTypeAny, {
156175
+ value?: any;
156176
+ }, {
156177
+ value?: any;
156178
+ }>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
156179
+ }, "strip", z.ZodTypeAny, {
156180
+ id: string;
156181
+ props: Record<string, {
156182
+ value?: any;
156183
+ } & Record<string, any>>;
156184
+ linksTo?: {
156185
+ type: "DocumentationItem" | "PageHeading" | "Url";
156186
+ url?: string | undefined;
156187
+ documentationItemId?: string | undefined;
156188
+ pageHeadingId?: string | undefined;
156189
+ openInNewTab?: boolean | undefined;
156190
+ } | undefined;
156191
+ }, {
156192
+ id: string;
156193
+ props: Record<string, {
156194
+ value?: any;
156195
+ } & Record<string, any>>;
156196
+ linksTo?: {
156197
+ type: "DocumentationItem" | "PageHeading" | "Url";
156198
+ url?: string | undefined;
156199
+ documentationItemId?: string | undefined;
156200
+ pageHeadingId?: string | undefined;
156201
+ openInNewTab?: boolean | undefined;
156202
+ } | undefined;
156203
+ }>, "many">;
156204
+ }, "strip", z.ZodTypeAny, {
156205
+ items: {
156206
+ id: string;
156207
+ props: Record<string, {
156208
+ value?: any;
156209
+ } & Record<string, any>>;
156210
+ linksTo?: {
156211
+ type: "DocumentationItem" | "PageHeading" | "Url";
156212
+ url?: string | undefined;
156213
+ documentationItemId?: string | undefined;
156214
+ pageHeadingId?: string | undefined;
156215
+ openInNewTab?: boolean | undefined;
156216
+ } | undefined;
156217
+ }[];
156218
+ packageId: string;
156219
+ indentLevel: number;
156220
+ appearance?: {
156221
+ numberOfColumns?: number | undefined;
156222
+ itemBackgroundColor?: {
156223
+ value: string;
156224
+ referencedTokenId?: string | undefined;
156225
+ } | undefined;
156226
+ } | undefined;
156227
+ variantId?: string | undefined;
156228
+ }, {
156229
+ items: {
156230
+ id: string;
156231
+ props: Record<string, {
156232
+ value?: any;
156233
+ } & Record<string, any>>;
156234
+ linksTo?: {
156235
+ type: "DocumentationItem" | "PageHeading" | "Url";
156236
+ url?: string | undefined;
156237
+ documentationItemId?: string | undefined;
156238
+ pageHeadingId?: string | undefined;
156239
+ openInNewTab?: boolean | undefined;
156240
+ } | undefined;
156241
+ }[];
156242
+ packageId: string;
156243
+ indentLevel: number;
156244
+ appearance?: {
156245
+ numberOfColumns?: number | undefined;
156246
+ itemBackgroundColor?: {
156247
+ value: string;
156248
+ referencedTokenId?: string | undefined;
156249
+ } | undefined;
156250
+ } | undefined;
156251
+ variantId?: string | undefined;
156252
+ }>;
156253
+ }, "strip", z.ZodTypeAny, {
156254
+ type: "Block";
156255
+ data: {
156256
+ items: {
156257
+ id: string;
156258
+ props: Record<string, {
156259
+ value?: any;
156260
+ } & Record<string, any>>;
156261
+ linksTo?: {
156262
+ type: "DocumentationItem" | "PageHeading" | "Url";
156263
+ url?: string | undefined;
156264
+ documentationItemId?: string | undefined;
156265
+ pageHeadingId?: string | undefined;
156266
+ openInNewTab?: boolean | undefined;
156267
+ } | undefined;
156268
+ }[];
156269
+ packageId: string;
156270
+ indentLevel: number;
156271
+ appearance?: {
156272
+ numberOfColumns?: number | undefined;
156273
+ itemBackgroundColor?: {
156274
+ value: string;
156275
+ referencedTokenId?: string | undefined;
156276
+ } | undefined;
156277
+ } | undefined;
156278
+ variantId?: string | undefined;
156279
+ };
156280
+ id: string;
156281
+ }, {
156282
+ type: "Block";
156283
+ data: {
156284
+ items: {
156285
+ id: string;
156286
+ props: Record<string, {
156287
+ value?: any;
156288
+ } & Record<string, any>>;
156289
+ linksTo?: {
156290
+ type: "DocumentationItem" | "PageHeading" | "Url";
156291
+ url?: string | undefined;
156292
+ documentationItemId?: string | undefined;
156293
+ pageHeadingId?: string | undefined;
156294
+ openInNewTab?: boolean | undefined;
156295
+ } | undefined;
156296
+ }[];
156297
+ packageId: string;
156298
+ indentLevel: number;
156299
+ appearance?: {
156300
+ numberOfColumns?: number | undefined;
156301
+ itemBackgroundColor?: {
156302
+ value: string;
156303
+ referencedTokenId?: string | undefined;
156304
+ } | undefined;
156305
+ } | undefined;
156306
+ variantId?: string | undefined;
156307
+ };
156308
+ id: string;
156309
+ }>, "many">;
156310
+ }, "strip", z.ZodTypeAny, {
156311
+ id: string;
156312
+ blocks: {
156313
+ type: "Block";
156314
+ data: {
156315
+ items: {
156316
+ id: string;
156317
+ props: Record<string, {
156318
+ value?: any;
156319
+ } & Record<string, any>>;
156320
+ linksTo?: {
156321
+ type: "DocumentationItem" | "PageHeading" | "Url";
156322
+ url?: string | undefined;
156323
+ documentationItemId?: string | undefined;
156324
+ pageHeadingId?: string | undefined;
156325
+ openInNewTab?: boolean | undefined;
156326
+ } | undefined;
156327
+ }[];
156328
+ packageId: string;
156329
+ indentLevel: number;
156330
+ appearance?: {
156331
+ numberOfColumns?: number | undefined;
156332
+ itemBackgroundColor?: {
156333
+ value: string;
156334
+ referencedTokenId?: string | undefined;
156335
+ } | undefined;
156336
+ } | undefined;
156337
+ variantId?: string | undefined;
156338
+ };
156339
+ id: string;
156340
+ }[];
156341
+ }, {
156342
+ id: string;
156343
+ blocks: {
156344
+ type: "Block";
156345
+ data: {
156346
+ items: {
156347
+ id: string;
156348
+ props: Record<string, {
156349
+ value?: any;
156350
+ } & Record<string, any>>;
156351
+ linksTo?: {
156352
+ type: "DocumentationItem" | "PageHeading" | "Url";
156353
+ url?: string | undefined;
156354
+ documentationItemId?: string | undefined;
156355
+ pageHeadingId?: string | undefined;
156356
+ openInNewTab?: boolean | undefined;
156357
+ } | undefined;
156358
+ }[];
156359
+ packageId: string;
156360
+ indentLevel: number;
156361
+ appearance?: {
156362
+ numberOfColumns?: number | undefined;
156363
+ itemBackgroundColor?: {
156364
+ value: string;
156365
+ referencedTokenId?: string | undefined;
156366
+ } | undefined;
156367
+ } | undefined;
156368
+ variantId?: string | undefined;
156369
+ };
156370
+ id: string;
156371
+ }[];
156372
+ }>, "many">;
156373
+ }, "strip", z.ZodTypeAny, {
156374
+ id: string;
156375
+ title: string;
156376
+ columns: {
156377
+ id: string;
156378
+ blocks: {
156379
+ type: "Block";
156380
+ data: {
156381
+ items: {
156382
+ id: string;
156383
+ props: Record<string, {
156384
+ value?: any;
156385
+ } & Record<string, any>>;
156386
+ linksTo?: {
156387
+ type: "DocumentationItem" | "PageHeading" | "Url";
156388
+ url?: string | undefined;
156389
+ documentationItemId?: string | undefined;
156390
+ pageHeadingId?: string | undefined;
156391
+ openInNewTab?: boolean | undefined;
156392
+ } | undefined;
156393
+ }[];
156394
+ packageId: string;
156395
+ indentLevel: number;
156396
+ appearance?: {
156397
+ numberOfColumns?: number | undefined;
156398
+ itemBackgroundColor?: {
156399
+ value: string;
156400
+ referencedTokenId?: string | undefined;
156401
+ } | undefined;
156402
+ } | undefined;
156403
+ variantId?: string | undefined;
156404
+ };
156405
+ id: string;
156406
+ }[];
156407
+ }[];
156408
+ }, {
156409
+ id: string;
156410
+ title: string;
156411
+ columns: {
156412
+ id: string;
156413
+ blocks: {
156414
+ type: "Block";
156415
+ data: {
156416
+ items: {
156417
+ id: string;
156418
+ props: Record<string, {
156419
+ value?: any;
156420
+ } & Record<string, any>>;
156421
+ linksTo?: {
156422
+ type: "DocumentationItem" | "PageHeading" | "Url";
156423
+ url?: string | undefined;
156424
+ documentationItemId?: string | undefined;
156425
+ pageHeadingId?: string | undefined;
156426
+ openInNewTab?: boolean | undefined;
156427
+ } | undefined;
156428
+ }[];
156429
+ packageId: string;
156430
+ indentLevel: number;
156431
+ appearance?: {
156432
+ numberOfColumns?: number | undefined;
156433
+ itemBackgroundColor?: {
156434
+ value: string;
156435
+ referencedTokenId?: string | undefined;
156436
+ } | undefined;
156437
+ } | undefined;
156438
+ variantId?: string | undefined;
156439
+ };
156440
+ id: string;
156441
+ }[];
156442
+ }[];
156443
+ }>, "many">;
156444
+ }, "strip", z.ZodTypeAny, {
156445
+ type: "Section";
156446
+ id: string;
156447
+ items: {
156448
+ id: string;
156449
+ title: string;
156450
+ columns: {
156451
+ id: string;
156452
+ blocks: {
156453
+ type: "Block";
156454
+ data: {
156455
+ items: {
156456
+ id: string;
156457
+ props: Record<string, {
156458
+ value?: any;
156459
+ } & Record<string, any>>;
156460
+ linksTo?: {
156461
+ type: "DocumentationItem" | "PageHeading" | "Url";
156462
+ url?: string | undefined;
156463
+ documentationItemId?: string | undefined;
156464
+ pageHeadingId?: string | undefined;
156465
+ openInNewTab?: boolean | undefined;
156466
+ } | undefined;
156467
+ }[];
156468
+ packageId: string;
156469
+ indentLevel: number;
156470
+ appearance?: {
156471
+ numberOfColumns?: number | undefined;
156472
+ itemBackgroundColor?: {
156473
+ value: string;
156474
+ referencedTokenId?: string | undefined;
156475
+ } | undefined;
156476
+ } | undefined;
156477
+ variantId?: string | undefined;
156478
+ };
156479
+ id: string;
156480
+ }[];
156481
+ }[];
156482
+ }[];
156483
+ appearance: {
156484
+ expandToEdges: boolean;
156485
+ contentExpandToEdges: boolean;
156486
+ backgroundColor?: {
156487
+ value: string;
156488
+ referencedTokenId?: string | undefined;
156489
+ } | undefined;
156490
+ foregroundColor?: {
156491
+ value: string;
156492
+ referencedTokenId?: string | undefined;
156493
+ } | undefined;
156494
+ padding?: {
156495
+ top?: number | undefined;
156496
+ bottom?: number | undefined;
156497
+ left?: number | undefined;
156498
+ right?: number | undefined;
156499
+ } | undefined;
156500
+ };
156501
+ sectionType: "Tabs";
156502
+ variantId?: string | undefined;
156503
+ }, {
156504
+ type: "Section";
156505
+ id: string;
156506
+ items: {
156507
+ id: string;
156508
+ title: string;
156509
+ columns: {
156510
+ id: string;
156511
+ blocks: {
156512
+ type: "Block";
156513
+ data: {
156514
+ items: {
156515
+ id: string;
156516
+ props: Record<string, {
156517
+ value?: any;
156518
+ } & Record<string, any>>;
156519
+ linksTo?: {
156520
+ type: "DocumentationItem" | "PageHeading" | "Url";
156521
+ url?: string | undefined;
156522
+ documentationItemId?: string | undefined;
156523
+ pageHeadingId?: string | undefined;
156524
+ openInNewTab?: boolean | undefined;
156525
+ } | undefined;
156526
+ }[];
156527
+ packageId: string;
156528
+ indentLevel: number;
156529
+ appearance?: {
156530
+ numberOfColumns?: number | undefined;
156531
+ itemBackgroundColor?: {
156532
+ value: string;
156533
+ referencedTokenId?: string | undefined;
156534
+ } | undefined;
156535
+ } | undefined;
156536
+ variantId?: string | undefined;
156537
+ };
156538
+ id: string;
156539
+ }[];
156540
+ }[];
156541
+ }[];
156542
+ appearance: {
156543
+ expandToEdges: boolean;
156544
+ contentExpandToEdges: boolean;
156545
+ backgroundColor?: {
156546
+ value: string;
156547
+ referencedTokenId?: string | undefined;
156548
+ } | undefined;
156549
+ foregroundColor?: {
156550
+ value: string;
156551
+ referencedTokenId?: string | undefined;
156552
+ } | undefined;
156553
+ padding?: {
156554
+ top?: number | undefined;
156555
+ bottom?: number | undefined;
156556
+ left?: number | undefined;
156557
+ right?: number | undefined;
156558
+ } | undefined;
156559
+ };
156560
+ sectionType: "Tabs";
156561
+ variantId?: string | undefined;
156562
+ }>]>, "many">;
156563
+ }, "strip", z.ZodTypeAny, {
156564
+ items: ({
156565
+ type: "Block";
156566
+ data: {
156567
+ items: {
156568
+ id: string;
156569
+ props: Record<string, {
156570
+ value?: any;
156571
+ } & Record<string, any>>;
156572
+ linksTo?: {
156573
+ type: "DocumentationItem" | "PageHeading" | "Url";
156574
+ url?: string | undefined;
156575
+ documentationItemId?: string | undefined;
156576
+ pageHeadingId?: string | undefined;
156577
+ openInNewTab?: boolean | undefined;
156578
+ } | undefined;
156579
+ }[];
156580
+ packageId: string;
156581
+ indentLevel: number;
156582
+ appearance?: {
156583
+ numberOfColumns?: number | undefined;
156584
+ itemBackgroundColor?: {
156585
+ value: string;
156586
+ referencedTokenId?: string | undefined;
156587
+ } | undefined;
156588
+ } | undefined;
156589
+ variantId?: string | undefined;
156590
+ };
156591
+ id: string;
156592
+ } | {
156593
+ type: "Section";
156594
+ id: string;
156595
+ items: {
156596
+ id: string;
156597
+ title: string;
156598
+ columns: {
156599
+ id: string;
156600
+ blocks: {
156601
+ type: "Block";
156602
+ data: {
156603
+ items: {
156604
+ id: string;
156605
+ props: Record<string, {
156606
+ value?: any;
156607
+ } & Record<string, any>>;
156608
+ linksTo?: {
156609
+ type: "DocumentationItem" | "PageHeading" | "Url";
156610
+ url?: string | undefined;
156611
+ documentationItemId?: string | undefined;
156612
+ pageHeadingId?: string | undefined;
156613
+ openInNewTab?: boolean | undefined;
156614
+ } | undefined;
156615
+ }[];
156616
+ packageId: string;
156617
+ indentLevel: number;
156618
+ appearance?: {
156619
+ numberOfColumns?: number | undefined;
156620
+ itemBackgroundColor?: {
156621
+ value: string;
156622
+ referencedTokenId?: string | undefined;
156623
+ } | undefined;
156624
+ } | undefined;
156625
+ variantId?: string | undefined;
156626
+ };
156627
+ id: string;
156628
+ }[];
156629
+ }[];
156630
+ }[];
156631
+ appearance: {
156632
+ expandToEdges: boolean;
156633
+ contentExpandToEdges: boolean;
156634
+ backgroundColor?: {
156635
+ value: string;
156636
+ referencedTokenId?: string | undefined;
156637
+ } | undefined;
156638
+ foregroundColor?: {
156639
+ value: string;
156640
+ referencedTokenId?: string | undefined;
156641
+ } | undefined;
156642
+ padding?: {
156643
+ top?: number | undefined;
156644
+ bottom?: number | undefined;
156645
+ left?: number | undefined;
156646
+ right?: number | undefined;
156647
+ } | undefined;
156648
+ };
156649
+ sectionType: "Tabs";
156650
+ variantId?: string | undefined;
156651
+ })[];
156652
+ }, {
156653
+ items: ({
156654
+ type: "Block";
156655
+ data: {
156656
+ items: {
156657
+ id: string;
156658
+ props: Record<string, {
156659
+ value?: any;
156660
+ } & Record<string, any>>;
156661
+ linksTo?: {
156662
+ type: "DocumentationItem" | "PageHeading" | "Url";
156663
+ url?: string | undefined;
156664
+ documentationItemId?: string | undefined;
156665
+ pageHeadingId?: string | undefined;
156666
+ openInNewTab?: boolean | undefined;
156667
+ } | undefined;
156668
+ }[];
156669
+ packageId: string;
156670
+ indentLevel: number;
156671
+ appearance?: {
156672
+ numberOfColumns?: number | undefined;
156673
+ itemBackgroundColor?: {
156674
+ value: string;
156675
+ referencedTokenId?: string | undefined;
156676
+ } | undefined;
156677
+ } | undefined;
156678
+ variantId?: string | undefined;
156679
+ };
156680
+ id: string;
156681
+ } | {
156682
+ type: "Section";
156683
+ id: string;
156684
+ items: {
156685
+ id: string;
156686
+ title: string;
156687
+ columns: {
156688
+ id: string;
156689
+ blocks: {
156690
+ type: "Block";
156691
+ data: {
156692
+ items: {
156693
+ id: string;
156694
+ props: Record<string, {
156695
+ value?: any;
156696
+ } & Record<string, any>>;
156697
+ linksTo?: {
156698
+ type: "DocumentationItem" | "PageHeading" | "Url";
156699
+ url?: string | undefined;
156700
+ documentationItemId?: string | undefined;
156701
+ pageHeadingId?: string | undefined;
156702
+ openInNewTab?: boolean | undefined;
156703
+ } | undefined;
156704
+ }[];
156705
+ packageId: string;
156706
+ indentLevel: number;
156707
+ appearance?: {
156708
+ numberOfColumns?: number | undefined;
156709
+ itemBackgroundColor?: {
156710
+ value: string;
156711
+ referencedTokenId?: string | undefined;
156712
+ } | undefined;
156713
+ } | undefined;
156714
+ variantId?: string | undefined;
156715
+ };
156716
+ id: string;
156717
+ }[];
156718
+ }[];
156719
+ }[];
156720
+ appearance: {
156721
+ expandToEdges: boolean;
156722
+ contentExpandToEdges: boolean;
156723
+ backgroundColor?: {
156724
+ value: string;
156725
+ referencedTokenId?: string | undefined;
156726
+ } | undefined;
156727
+ foregroundColor?: {
156728
+ value: string;
156729
+ referencedTokenId?: string | undefined;
156730
+ } | undefined;
156731
+ padding?: {
156732
+ top?: number | undefined;
156733
+ bottom?: number | undefined;
156734
+ left?: number | undefined;
156735
+ right?: number | undefined;
156736
+ } | undefined;
156737
+ };
156738
+ sectionType: "Tabs";
156739
+ variantId?: string | undefined;
156740
+ })[];
156741
+ }>;
156742
+ type ForgeProjectArtifactContentData = z.infer<typeof ForgeProjectArtifactContentData>;
156743
+
154723
156744
  declare const ForgeProjectArtifact: z.ZodObject<{
154724
156745
  id: z.ZodString;
154725
156746
  projectId: z.ZodString;
@@ -186910,4 +188931,4 @@ type PersonalAccessTokenWithUser = {
186910
188931
  token: PersonalAccessToken;
186911
188932
  };
186912
188933
 
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 };
188934
+ 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 };