@supernova-studio/model 0.21.1 → 0.22.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.mts CHANGED
@@ -4106,11 +4106,12 @@ declare const ContentLoaderPayload: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4106
4106
  }>]>;
4107
4107
  type ContentLoaderPayload = z.infer<typeof ContentLoaderPayload>;
4108
4108
 
4109
- type SupernovaExceptionType = "AccessDenied" | "ResourceNotFound" | "WrongFormat" | "Timeout" | "Conflict" | "NotImplemented" | "BadRequest" | "WrongActionOrder" | "InvalidOperation" | "UnexpectedError" | "IPRestricted" | "PlanRestricted" | "MissingWorkspacePermission" | "MissingExporterPermission" | "NoAccess";
4109
+ type SupernovaExceptionType = "AccessDenied" | "ResourceNotFound" | "WrongFormat" | "TooMuchWork" | "Timeout" | "Conflict" | "NotImplemented" | "BadRequest" | "WrongActionOrder" | "InvalidOperation" | "UnexpectedError" | "IPRestricted" | "PlanRestricted" | "MissingWorkspacePermission" | "MissingExporterPermission" | "NoAccess";
4110
4110
  declare class SupernovaException extends Error {
4111
4111
  readonly type: SupernovaExceptionType;
4112
4112
  static wrongFormat(message?: string): SupernovaException;
4113
4113
  static accessDenied(message?: string): SupernovaException;
4114
+ static tooMuchWork(message?: string): SupernovaException;
4114
4115
  static notFound(message?: string): SupernovaException;
4115
4116
  static timeout(message?: string): SupernovaException;
4116
4117
  static conflict(message?: string): SupernovaException;
@@ -4210,13 +4211,14 @@ declare const Asset: z.ZodObject<{
4210
4211
  subfamily: string;
4211
4212
  }[];
4212
4213
  }>>>;
4213
- origin: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4214
+ origin: z.ZodOptional<z.ZodObject<{
4214
4215
  originKey: z.ZodString;
4215
4216
  }, "strip", z.ZodTypeAny, {
4216
4217
  originKey: string;
4217
4218
  }, {
4218
4219
  originKey: string;
4219
- }>>>;
4220
+ }>>;
4221
+ originKey: z.ZodOptional<z.ZodString>;
4220
4222
  }, "strip", z.ZodTypeAny, {
4221
4223
  id: string;
4222
4224
  type: "Image" | "Font";
@@ -4232,7 +4234,8 @@ declare const Asset: z.ZodObject<{
4232
4234
  } | null | undefined;
4233
4235
  origin?: {
4234
4236
  originKey: string;
4235
- } | null | undefined;
4237
+ } | undefined;
4238
+ originKey?: string | undefined;
4236
4239
  }, {
4237
4240
  id: string;
4238
4241
  type: "Image" | "Font";
@@ -4248,11 +4251,12 @@ declare const Asset: z.ZodObject<{
4248
4251
  } | null | undefined;
4249
4252
  origin?: {
4250
4253
  originKey: string;
4251
- } | null | undefined;
4254
+ } | undefined;
4255
+ originKey?: string | undefined;
4252
4256
  }>;
4253
4257
  type Asset = z.infer<typeof Asset>;
4254
- type ImportedAsset = OmitStrict<Asset, "origin"> & {
4255
- origin: AssetOrigin;
4258
+ type ImportedAsset = OmitStrict<Asset, "originKey"> & {
4259
+ originKey: string;
4256
4260
  };
4257
4261
  type ResolvedAsset = OmitStrict<Asset, "filePath"> & {
4258
4262
  url: string;
@@ -4939,6 +4943,7 @@ declare const ImportJob: z.ZodObject<{
4939
4943
  importContextId: z.ZodString;
4940
4944
  error: z.ZodOptional<z.ZodString>;
4941
4945
  sourceType: z.ZodEnum<["Figma", "TokenStudio", "FigmaVariablesPlugin"]>;
4946
+ importContextCleanedUp: z.ZodBoolean;
4942
4947
  }, "strip", z.ZodTypeAny, {
4943
4948
  id: string;
4944
4949
  createdAt: Date;
@@ -4949,6 +4954,7 @@ declare const ImportJob: z.ZodObject<{
4949
4954
  importContextId: string;
4950
4955
  sourceIds: string[];
4951
4956
  sourceType: "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
4957
+ importContextCleanedUp: boolean;
4952
4958
  createdByUserId?: string | undefined;
4953
4959
  error?: string | undefined;
4954
4960
  }, {
@@ -4961,6 +4967,7 @@ declare const ImportJob: z.ZodObject<{
4961
4967
  importContextId: string;
4962
4968
  sourceIds: string[];
4963
4969
  sourceType: "Figma" | "TokenStudio" | "FigmaVariablesPlugin";
4970
+ importContextCleanedUp: boolean;
4964
4971
  createdByUserId?: string | undefined;
4965
4972
  error?: string | undefined;
4966
4973
  }>;
@@ -17163,6 +17170,7 @@ declare const FigmaNodeReferenceData: z.ZodObject<{
17163
17170
  assetWidth: z.ZodOptional<z.ZodNumber>;
17164
17171
  assetHeight: z.ZodOptional<z.ZodNumber>;
17165
17172
  assetUrl: z.ZodOptional<z.ZodString>;
17173
+ assetOriginKey: z.ZodOptional<z.ZodString>;
17166
17174
  }, "strip", z.ZodTypeAny, {
17167
17175
  valid: boolean;
17168
17176
  structureElementId: string;
@@ -17173,6 +17181,7 @@ declare const FigmaNodeReferenceData: z.ZodObject<{
17173
17181
  assetWidth?: number | undefined;
17174
17182
  assetHeight?: number | undefined;
17175
17183
  assetUrl?: string | undefined;
17184
+ assetOriginKey?: string | undefined;
17176
17185
  }, {
17177
17186
  valid: boolean;
17178
17187
  structureElementId: string;
@@ -17183,6 +17192,7 @@ declare const FigmaNodeReferenceData: z.ZodObject<{
17183
17192
  assetWidth?: number | undefined;
17184
17193
  assetHeight?: number | undefined;
17185
17194
  assetUrl?: string | undefined;
17195
+ assetOriginKey?: string | undefined;
17186
17196
  }>;
17187
17197
  type FigmaNodeReferenceData = z.infer<typeof FigmaNodeReferenceData>;
17188
17198
  declare const FigmaNodeReferenceElementData: z.ZodObject<{
@@ -17196,6 +17206,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
17196
17206
  assetWidth: z.ZodOptional<z.ZodNumber>;
17197
17207
  assetHeight: z.ZodOptional<z.ZodNumber>;
17198
17208
  assetUrl: z.ZodOptional<z.ZodString>;
17209
+ assetOriginKey: z.ZodOptional<z.ZodString>;
17199
17210
  }, "strip", z.ZodTypeAny, {
17200
17211
  valid: boolean;
17201
17212
  structureElementId: string;
@@ -17206,6 +17217,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
17206
17217
  assetWidth?: number | undefined;
17207
17218
  assetHeight?: number | undefined;
17208
17219
  assetUrl?: string | undefined;
17220
+ assetOriginKey?: string | undefined;
17209
17221
  }, {
17210
17222
  valid: boolean;
17211
17223
  structureElementId: string;
@@ -17216,6 +17228,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
17216
17228
  assetWidth?: number | undefined;
17217
17229
  assetHeight?: number | undefined;
17218
17230
  assetUrl?: string | undefined;
17231
+ assetOriginKey?: string | undefined;
17219
17232
  }>;
17220
17233
  }, "strip", z.ZodTypeAny, {
17221
17234
  value: {
@@ -17228,6 +17241,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
17228
17241
  assetWidth?: number | undefined;
17229
17242
  assetHeight?: number | undefined;
17230
17243
  assetUrl?: string | undefined;
17244
+ assetOriginKey?: string | undefined;
17231
17245
  };
17232
17246
  }, {
17233
17247
  value: {
@@ -17240,6 +17254,7 @@ declare const FigmaNodeReferenceElementData: z.ZodObject<{
17240
17254
  assetWidth?: number | undefined;
17241
17255
  assetHeight?: number | undefined;
17242
17256
  assetUrl?: string | undefined;
17257
+ assetOriginKey?: string | undefined;
17243
17258
  };
17244
17259
  }>;
17245
17260
  type FigmaNodeReferenceElementData = z.infer<typeof FigmaNodeReferenceElementData>;
@@ -25960,6 +25975,14 @@ type FigmaFileStructureDiff = {
25960
25975
  };
25961
25976
  declare function traverseStructure(node: FigmaFileStructureNode, action: (node: FigmaFileStructureNode) => void): void;
25962
25977
 
25978
+ declare const FigmaNodeReferenceOrigin: z.ZodObject<{
25979
+ sourceId: z.ZodString;
25980
+ }, "strip", z.ZodTypeAny, {
25981
+ sourceId: string;
25982
+ }, {
25983
+ sourceId: string;
25984
+ }>;
25985
+ type FigmaNodeReferenceOrigin = z.infer<typeof FigmaNodeReferenceOrigin>;
25963
25986
  declare const FigmaNodeReference: z.ZodObject<{
25964
25987
  id: z.ZodString;
25965
25988
  createdAt: z.ZodDate;
@@ -25986,6 +26009,7 @@ declare const FigmaNodeReference: z.ZodObject<{
25986
26009
  assetWidth: z.ZodOptional<z.ZodNumber>;
25987
26010
  assetHeight: z.ZodOptional<z.ZodNumber>;
25988
26011
  assetUrl: z.ZodOptional<z.ZodString>;
26012
+ assetOriginKey: z.ZodOptional<z.ZodString>;
25989
26013
  }, "strip", z.ZodTypeAny, {
25990
26014
  valid: boolean;
25991
26015
  structureElementId: string;
@@ -25996,6 +26020,7 @@ declare const FigmaNodeReference: z.ZodObject<{
25996
26020
  assetWidth?: number | undefined;
25997
26021
  assetHeight?: number | undefined;
25998
26022
  assetUrl?: string | undefined;
26023
+ assetOriginKey?: string | undefined;
25999
26024
  }, {
26000
26025
  valid: boolean;
26001
26026
  structureElementId: string;
@@ -26006,6 +26031,14 @@ declare const FigmaNodeReference: z.ZodObject<{
26006
26031
  assetWidth?: number | undefined;
26007
26032
  assetHeight?: number | undefined;
26008
26033
  assetUrl?: string | undefined;
26034
+ assetOriginKey?: string | undefined;
26035
+ }>;
26036
+ origin: z.ZodObject<{
26037
+ sourceId: z.ZodString;
26038
+ }, "strip", z.ZodTypeAny, {
26039
+ sourceId: string;
26040
+ }, {
26041
+ sourceId: string;
26009
26042
  }>;
26010
26043
  }, "strip", z.ZodTypeAny, {
26011
26044
  id: string;
@@ -26023,6 +26056,10 @@ declare const FigmaNodeReference: z.ZodObject<{
26023
26056
  assetWidth?: number | undefined;
26024
26057
  assetHeight?: number | undefined;
26025
26058
  assetUrl?: string | undefined;
26059
+ assetOriginKey?: string | undefined;
26060
+ };
26061
+ origin: {
26062
+ sourceId: string;
26026
26063
  };
26027
26064
  meta: {
26028
26065
  name: string;
@@ -26044,6 +26081,10 @@ declare const FigmaNodeReference: z.ZodObject<{
26044
26081
  assetWidth?: number | undefined;
26045
26082
  assetHeight?: number | undefined;
26046
26083
  assetUrl?: string | undefined;
26084
+ assetOriginKey?: string | undefined;
26085
+ };
26086
+ origin: {
26087
+ sourceId: string;
26047
26088
  };
26048
26089
  meta: {
26049
26090
  name: string;
@@ -27133,6 +27174,7 @@ declare const ShallowDesignElement: z.ZodObject<{
27133
27174
  shortPersistentId: z.ZodOptional<z.ZodString>;
27134
27175
  childType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>>;
27135
27176
  sortOrder: z.ZodNumber;
27177
+ origin: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
27136
27178
  }, "strip", z.ZodTypeAny, {
27137
27179
  id: string;
27138
27180
  type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
@@ -27143,6 +27185,7 @@ declare const ShallowDesignElement: z.ZodObject<{
27143
27185
  parentPersistentId?: string | undefined;
27144
27186
  shortPersistentId?: string | undefined;
27145
27187
  childType?: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock" | undefined;
27188
+ origin?: Record<string, any> | undefined;
27146
27189
  }, {
27147
27190
  id: string;
27148
27191
  type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
@@ -27153,6 +27196,7 @@ declare const ShallowDesignElement: z.ZodObject<{
27153
27196
  parentPersistentId?: string | undefined;
27154
27197
  shortPersistentId?: string | undefined;
27155
27198
  childType?: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock" | undefined;
27199
+ origin?: Record<string, any> | undefined;
27156
27200
  }>;
27157
27201
  type ShallowDesignElement = z.infer<typeof ShallowDesignElement>;
27158
27202
  declare const DesignElement: z.ZodObject<{
@@ -47755,19 +47799,19 @@ declare const ImportModelCollection: z.ZodObject<{
47755
47799
  type: z.ZodLiteral<"Url">;
47756
47800
  url: z.ZodString;
47757
47801
  originKey: z.ZodString;
47758
- extension: z.ZodEnum<["png", "svg", "jpg"]>;
47802
+ extension: z.ZodString;
47759
47803
  }, "strip", z.ZodTypeAny, {
47760
47804
  type: "Url";
47761
47805
  url: string;
47762
47806
  originKey: string;
47763
47807
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
47764
- extension: "svg" | "png" | "jpg";
47808
+ extension: string;
47765
47809
  }, {
47766
47810
  type: "Url";
47767
47811
  url: string;
47768
47812
  originKey: string;
47769
47813
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
47770
- extension: "svg" | "png" | "jpg";
47814
+ extension: string;
47771
47815
  }>, z.ZodDiscriminatedUnion<"format", [z.ZodObject<{
47772
47816
  type: z.ZodLiteral<"FigmaRender">;
47773
47817
  originKey: z.ZodString;
@@ -47890,7 +47934,7 @@ declare const ImportModelCollection: z.ZodObject<{
47890
47934
  url: string;
47891
47935
  originKey: string;
47892
47936
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
47893
- extension: "svg" | "png" | "jpg";
47937
+ extension: string;
47894
47938
  } | {
47895
47939
  type: "FigmaRender";
47896
47940
  originKey: string;
@@ -47940,7 +47984,7 @@ declare const ImportModelCollection: z.ZodObject<{
47940
47984
  url: string;
47941
47985
  originKey: string;
47942
47986
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
47943
- extension: "svg" | "png" | "jpg";
47987
+ extension: string;
47944
47988
  } | {
47945
47989
  type: "FigmaRender";
47946
47990
  originKey: string;
@@ -54802,7 +54846,7 @@ declare const ImportModelCollection: z.ZodObject<{
54802
54846
  url: string;
54803
54847
  originKey: string;
54804
54848
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
54805
- extension: "svg" | "png" | "jpg";
54849
+ extension: string;
54806
54850
  } | {
54807
54851
  type: "FigmaRender";
54808
54852
  originKey: string;
@@ -56090,7 +56134,7 @@ declare const ImportModelCollection: z.ZodObject<{
56090
56134
  url: string;
56091
56135
  originKey: string;
56092
56136
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
56093
- extension: "svg" | "png" | "jpg";
56137
+ extension: string;
56094
56138
  } | {
56095
56139
  type: "FigmaRender";
56096
56140
  originKey: string;
@@ -59204,19 +59248,19 @@ declare const ImportModelInputCollection: z.ZodObject<{
59204
59248
  type: z.ZodLiteral<"Url">;
59205
59249
  url: z.ZodString;
59206
59250
  originKey: z.ZodString;
59207
- extension: z.ZodEnum<["png", "svg", "jpg"]>;
59251
+ extension: z.ZodString;
59208
59252
  }, "strip", z.ZodTypeAny, {
59209
59253
  type: "Url";
59210
59254
  url: string;
59211
59255
  originKey: string;
59212
59256
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
59213
- extension: "svg" | "png" | "jpg";
59257
+ extension: string;
59214
59258
  }, {
59215
59259
  type: "Url";
59216
59260
  url: string;
59217
59261
  originKey: string;
59218
59262
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
59219
- extension: "svg" | "png" | "jpg";
59263
+ extension: string;
59220
59264
  }>, z.ZodDiscriminatedUnion<"format", [z.ZodObject<{
59221
59265
  type: z.ZodLiteral<"FigmaRender">;
59222
59266
  originKey: z.ZodString;
@@ -59294,7 +59338,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
59294
59338
  url: string;
59295
59339
  originKey: string;
59296
59340
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
59297
- extension: "svg" | "png" | "jpg";
59341
+ extension: string;
59298
59342
  } | {
59299
59343
  type: "FigmaRender";
59300
59344
  originKey: string;
@@ -59330,7 +59374,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
59330
59374
  url: string;
59331
59375
  originKey: string;
59332
59376
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
59333
- extension: "svg" | "png" | "jpg";
59377
+ extension: string;
59334
59378
  } | {
59335
59379
  type: "FigmaRender";
59336
59380
  originKey: string;
@@ -59373,19 +59417,19 @@ declare const ImportModelInputCollection: z.ZodObject<{
59373
59417
  type: z.ZodLiteral<"Url">;
59374
59418
  url: z.ZodString;
59375
59419
  originKey: z.ZodString;
59376
- extension: z.ZodEnum<["png", "svg", "jpg"]>;
59420
+ extension: z.ZodString;
59377
59421
  }, "strip", z.ZodTypeAny, {
59378
59422
  type: "Url";
59379
59423
  url: string;
59380
59424
  originKey: string;
59381
59425
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
59382
- extension: "svg" | "png" | "jpg";
59426
+ extension: string;
59383
59427
  }, {
59384
59428
  type: "Url";
59385
59429
  url: string;
59386
59430
  originKey: string;
59387
59431
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
59388
- extension: "svg" | "png" | "jpg";
59432
+ extension: string;
59389
59433
  }>, z.ZodDiscriminatedUnion<"format", [z.ZodObject<{
59390
59434
  type: z.ZodLiteral<"FigmaRender">;
59391
59435
  originKey: z.ZodString;
@@ -59497,7 +59541,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
59497
59541
  url: string;
59498
59542
  originKey: string;
59499
59543
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
59500
- extension: "svg" | "png" | "jpg";
59544
+ extension: string;
59501
59545
  } | {
59502
59546
  type: "FigmaRender";
59503
59547
  originKey: string;
@@ -59542,7 +59586,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
59542
59586
  url: string;
59543
59587
  originKey: string;
59544
59588
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
59545
- extension: "svg" | "png" | "jpg";
59589
+ extension: string;
59546
59590
  } | {
59547
59591
  type: "FigmaRender";
59548
59592
  originKey: string;
@@ -66318,7 +66362,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
66318
66362
  url: string;
66319
66363
  originKey: string;
66320
66364
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
66321
- extension: "svg" | "png" | "jpg";
66365
+ extension: string;
66322
66366
  } | {
66323
66367
  type: "FigmaRender";
66324
66368
  originKey: string;
@@ -66360,7 +66404,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
66360
66404
  url: string;
66361
66405
  originKey: string;
66362
66406
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
66363
- extension: "svg" | "png" | "jpg";
66407
+ extension: string;
66364
66408
  } | {
66365
66409
  type: "FigmaRender";
66366
66410
  originKey: string;
@@ -67555,7 +67599,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
67555
67599
  url: string;
67556
67600
  originKey: string;
67557
67601
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
67558
- extension: "svg" | "png" | "jpg";
67602
+ extension: string;
67559
67603
  } | {
67560
67604
  type: "FigmaRender";
67561
67605
  originKey: string;
@@ -67601,7 +67645,7 @@ declare const ImportModelInputCollection: z.ZodObject<{
67601
67645
  url: string;
67602
67646
  originKey: string;
67603
67647
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
67604
- extension: "svg" | "png" | "jpg";
67648
+ extension: string;
67605
67649
  } | {
67606
67650
  type: "FigmaRender";
67607
67651
  originKey: string;
@@ -68461,19 +68505,19 @@ declare const ComponentImportModel: z.ZodObject<{
68461
68505
  type: z.ZodLiteral<"Url">;
68462
68506
  url: z.ZodString;
68463
68507
  originKey: z.ZodString;
68464
- extension: z.ZodEnum<["png", "svg", "jpg"]>;
68508
+ extension: z.ZodString;
68465
68509
  }, "strip", z.ZodTypeAny, {
68466
68510
  type: "Url";
68467
68511
  url: string;
68468
68512
  originKey: string;
68469
68513
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68470
- extension: "svg" | "png" | "jpg";
68514
+ extension: string;
68471
68515
  }, {
68472
68516
  type: "Url";
68473
68517
  url: string;
68474
68518
  originKey: string;
68475
68519
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68476
- extension: "svg" | "png" | "jpg";
68520
+ extension: string;
68477
68521
  }>, z.ZodDiscriminatedUnion<"format", [z.ZodObject<{
68478
68522
  type: z.ZodLiteral<"FigmaRender">;
68479
68523
  originKey: z.ZodString;
@@ -68596,7 +68640,7 @@ declare const ComponentImportModel: z.ZodObject<{
68596
68640
  url: string;
68597
68641
  originKey: string;
68598
68642
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68599
- extension: "svg" | "png" | "jpg";
68643
+ extension: string;
68600
68644
  } | {
68601
68645
  type: "FigmaRender";
68602
68646
  originKey: string;
@@ -68646,7 +68690,7 @@ declare const ComponentImportModel: z.ZodObject<{
68646
68690
  url: string;
68647
68691
  originKey: string;
68648
68692
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68649
- extension: "svg" | "png" | "jpg";
68693
+ extension: string;
68650
68694
  } | {
68651
68695
  type: "FigmaRender";
68652
68696
  originKey: string;
@@ -68693,19 +68737,19 @@ declare const ComponentImportModelInput: z.ZodObject<{
68693
68737
  type: z.ZodLiteral<"Url">;
68694
68738
  url: z.ZodString;
68695
68739
  originKey: z.ZodString;
68696
- extension: z.ZodEnum<["png", "svg", "jpg"]>;
68740
+ extension: z.ZodString;
68697
68741
  }, "strip", z.ZodTypeAny, {
68698
68742
  type: "Url";
68699
68743
  url: string;
68700
68744
  originKey: string;
68701
68745
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68702
- extension: "svg" | "png" | "jpg";
68746
+ extension: string;
68703
68747
  }, {
68704
68748
  type: "Url";
68705
68749
  url: string;
68706
68750
  originKey: string;
68707
68751
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68708
- extension: "svg" | "png" | "jpg";
68752
+ extension: string;
68709
68753
  }>, z.ZodDiscriminatedUnion<"format", [z.ZodObject<{
68710
68754
  type: z.ZodLiteral<"FigmaRender">;
68711
68755
  originKey: z.ZodString;
@@ -68783,7 +68827,7 @@ declare const ComponentImportModelInput: z.ZodObject<{
68783
68827
  url: string;
68784
68828
  originKey: string;
68785
68829
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68786
- extension: "svg" | "png" | "jpg";
68830
+ extension: string;
68787
68831
  } | {
68788
68832
  type: "FigmaRender";
68789
68833
  originKey: string;
@@ -68819,7 +68863,7 @@ declare const ComponentImportModelInput: z.ZodObject<{
68819
68863
  url: string;
68820
68864
  originKey: string;
68821
68865
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68822
- extension: "svg" | "png" | "jpg";
68866
+ extension: string;
68823
68867
  } | {
68824
68868
  type: "FigmaRender";
68825
68869
  originKey: string;
@@ -68863,19 +68907,19 @@ declare const AssetImportModelInput: z.ZodObject<{
68863
68907
  type: z.ZodLiteral<"Url">;
68864
68908
  url: z.ZodString;
68865
68909
  originKey: z.ZodString;
68866
- extension: z.ZodEnum<["png", "svg", "jpg"]>;
68910
+ extension: z.ZodString;
68867
68911
  }, "strip", z.ZodTypeAny, {
68868
68912
  type: "Url";
68869
68913
  url: string;
68870
68914
  originKey: string;
68871
68915
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68872
- extension: "svg" | "png" | "jpg";
68916
+ extension: string;
68873
68917
  }, {
68874
68918
  type: "Url";
68875
68919
  url: string;
68876
68920
  originKey: string;
68877
68921
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68878
- extension: "svg" | "png" | "jpg";
68922
+ extension: string;
68879
68923
  }>, z.ZodDiscriminatedUnion<"format", [z.ZodObject<{
68880
68924
  type: z.ZodLiteral<"FigmaRender">;
68881
68925
  originKey: z.ZodString;
@@ -68987,7 +69031,7 @@ declare const AssetImportModelInput: z.ZodObject<{
68987
69031
  url: string;
68988
69032
  originKey: string;
68989
69033
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
68990
- extension: "svg" | "png" | "jpg";
69034
+ extension: string;
68991
69035
  } | {
68992
69036
  type: "FigmaRender";
68993
69037
  originKey: string;
@@ -69032,7 +69076,7 @@ declare const AssetImportModelInput: z.ZodObject<{
69032
69076
  url: string;
69033
69077
  originKey: string;
69034
69078
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
69035
- extension: "svg" | "png" | "jpg";
69079
+ extension: string;
69036
69080
  } | {
69037
69081
  type: "FigmaRender";
69038
69082
  originKey: string;
@@ -69067,19 +69111,19 @@ declare const UrlImageImportModel: z.ZodObject<{
69067
69111
  type: z.ZodLiteral<"Url">;
69068
69112
  url: z.ZodString;
69069
69113
  originKey: z.ZodString;
69070
- extension: z.ZodEnum<["png", "svg", "jpg"]>;
69114
+ extension: z.ZodString;
69071
69115
  }, "strip", z.ZodTypeAny, {
69072
69116
  type: "Url";
69073
69117
  url: string;
69074
69118
  originKey: string;
69075
69119
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
69076
- extension: "svg" | "png" | "jpg";
69120
+ extension: string;
69077
69121
  }, {
69078
69122
  type: "Url";
69079
69123
  url: string;
69080
69124
  originKey: string;
69081
69125
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
69082
- extension: "svg" | "png" | "jpg";
69126
+ extension: string;
69083
69127
  }>;
69084
69128
  type UrlImageImportModel = z.infer<typeof UrlImageImportModel>;
69085
69129
  declare const FigmaRenderFormat: z.ZodEnum<["Svg", "Png"]>;
@@ -69220,19 +69264,19 @@ declare const ImageImportModel: z.ZodUnion<[z.ZodObject<{
69220
69264
  type: z.ZodLiteral<"Url">;
69221
69265
  url: z.ZodString;
69222
69266
  originKey: z.ZodString;
69223
- extension: z.ZodEnum<["png", "svg", "jpg"]>;
69267
+ extension: z.ZodString;
69224
69268
  }, "strip", z.ZodTypeAny, {
69225
69269
  type: "Url";
69226
69270
  url: string;
69227
69271
  originKey: string;
69228
69272
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
69229
- extension: "svg" | "png" | "jpg";
69273
+ extension: string;
69230
69274
  }, {
69231
69275
  type: "Url";
69232
69276
  url: string;
69233
69277
  originKey: string;
69234
69278
  scope: "DocumentationFrame" | "ComponentThumbnail" | "DesignSystem" | "Documentation";
69235
- extension: "svg" | "png" | "jpg";
69279
+ extension: string;
69236
69280
  }>, z.ZodDiscriminatedUnion<"format", [z.ZodObject<{
69237
69281
  type: z.ZodLiteral<"FigmaRender">;
69238
69282
  originKey: z.ZodString;
@@ -106783,6 +106827,32 @@ declare const CreateWorkspaceInput: z.ZodObject<{
106783
106827
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
106784
106828
  }>, "many">>;
106785
106829
  promoCode: z.ZodOptional<z.ZodString>;
106830
+ status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
106831
+ planInterval: z.ZodOptional<z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>>;
106832
+ seats: z.ZodOptional<z.ZodNumber>;
106833
+ seatLimit: z.ZodOptional<z.ZodNumber>;
106834
+ card: z.ZodOptional<z.ZodObject<{
106835
+ cardId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
106836
+ last4: z.ZodOptional<z.ZodNullable<z.ZodString>>;
106837
+ expiryMonth: z.ZodOptional<z.ZodNullable<z.ZodString>>;
106838
+ expiryYear: z.ZodOptional<z.ZodNullable<z.ZodString>>;
106839
+ brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
106840
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
106841
+ }, "strip", z.ZodTypeAny, {
106842
+ cardId?: string | null | undefined;
106843
+ last4?: string | null | undefined;
106844
+ expiryMonth?: string | null | undefined;
106845
+ expiryYear?: string | null | undefined;
106846
+ brand?: string | null | undefined;
106847
+ name?: string | null | undefined;
106848
+ }, {
106849
+ cardId?: string | null | undefined;
106850
+ last4?: string | null | undefined;
106851
+ expiryMonth?: string | null | undefined;
106852
+ expiryYear?: string | null | undefined;
106853
+ brand?: string | null | undefined;
106854
+ name?: string | null | undefined;
106855
+ }>>;
106786
106856
  }, "strip", z.ZodTypeAny, {
106787
106857
  name: string;
106788
106858
  priceId: string;
@@ -106794,6 +106864,18 @@ declare const CreateWorkspaceInput: z.ZodObject<{
106794
106864
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
106795
106865
  }[] | undefined;
106796
106866
  promoCode?: string | undefined;
106867
+ status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
106868
+ planInterval?: "daily" | "monthly" | "weekly" | "yearly" | undefined;
106869
+ seats?: number | undefined;
106870
+ seatLimit?: number | undefined;
106871
+ card?: {
106872
+ cardId?: string | null | undefined;
106873
+ last4?: string | null | undefined;
106874
+ expiryMonth?: string | null | undefined;
106875
+ expiryYear?: string | null | undefined;
106876
+ brand?: string | null | undefined;
106877
+ name?: string | null | undefined;
106878
+ } | undefined;
106797
106879
  }, {
106798
106880
  name: string;
106799
106881
  priceId: string;
@@ -106805,6 +106887,18 @@ declare const CreateWorkspaceInput: z.ZodObject<{
106805
106887
  role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
106806
106888
  }[] | undefined;
106807
106889
  promoCode?: string | undefined;
106890
+ status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
106891
+ planInterval?: "daily" | "monthly" | "weekly" | "yearly" | undefined;
106892
+ seats?: number | undefined;
106893
+ seatLimit?: number | undefined;
106894
+ card?: {
106895
+ cardId?: string | null | undefined;
106896
+ last4?: string | null | undefined;
106897
+ expiryMonth?: string | null | undefined;
106898
+ expiryYear?: string | null | undefined;
106899
+ brand?: string | null | undefined;
106900
+ name?: string | null | undefined;
106901
+ } | undefined;
106808
106902
  }>;
106809
106903
  type CreateWorkspaceInput = z.infer<typeof CreateWorkspaceInput>;
106810
106904
 
@@ -110149,4 +110243,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110149
110243
  }>;
110150
110244
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
110151
110245
 
110152
- export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataDeprecated, ElementGroupDataV2, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModel, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, 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 UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
110246
+ export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataDeprecated, ElementGroupDataV2, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModel, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, 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 UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };