@supernova-studio/model 0.36.0 → 0.37.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
@@ -861,9 +861,9 @@ declare const PriceSchema: z.ZodObject<{
861
861
  type BillingInterval = z.infer<typeof BillingIntervalSchema>;
862
862
  type Price = z.infer<typeof PriceSchema>;
863
863
 
864
- declare const ProductCodeSchema: z.ZodEnum<["free", "team", "team_test", "company", "enterprise"]>;
864
+ declare const ProductCodeSchema: z.ZodEnum<["free", "team", "company", "enterprise"]>;
865
865
  type ProductCode = z.infer<typeof ProductCodeSchema>;
866
- declare const ProductCode: z.Values<["free", "team", "team_test", "company", "enterprise"]>;
866
+ declare const ProductCode: z.Values<["free", "team", "company", "enterprise"]>;
867
867
 
868
868
  declare const StripeSubscriptionStatusSchema: z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>;
869
869
  declare const InternalStatusSchema: z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>;
@@ -880,7 +880,7 @@ declare const Subscription: z.ZodObject<{
880
880
  status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
881
881
  subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
882
882
  internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
883
- product: z.ZodEnum<["free", "team", "team_test", "company", "enterprise"]>;
883
+ product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
884
884
  featuresSummary: z.ZodOptional<z.ZodObject<{
885
885
  designSystems: z.ZodObject<{
886
886
  max: z.ZodNumber;
@@ -1327,7 +1327,7 @@ declare const Subscription: z.ZodObject<{
1327
1327
  billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
1328
1328
  daysUntilDue: z.ZodOptional<z.ZodNumber>;
1329
1329
  }, "strip", z.ZodTypeAny, {
1330
- product: "free" | "team" | "team_test" | "company" | "enterprise";
1330
+ product: "free" | "team" | "company" | "enterprise";
1331
1331
  planPriceId: string;
1332
1332
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
1333
1333
  seats: number;
@@ -1449,7 +1449,7 @@ declare const Subscription: z.ZodObject<{
1449
1449
  billingType?: "Auto" | "Invoice" | undefined;
1450
1450
  daysUntilDue?: number | undefined;
1451
1451
  }, {
1452
- product: "free" | "team" | "team_test" | "company" | "enterprise";
1452
+ product: "free" | "team" | "company" | "enterprise";
1453
1453
  planPriceId: string;
1454
1454
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
1455
1455
  seats: number;
@@ -12261,7 +12261,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
12261
12261
  value: string;
12262
12262
  referencedTokenId?: string | undefined;
12263
12263
  }>>;
12264
- value: z.ZodArray<z.ZodObject<{
12264
+ value: z.ZodDefault<z.ZodArray<z.ZodObject<{
12265
12265
  entityId: z.ZodString;
12266
12266
  entityType: z.ZodEnum<["Asset", "AssetGroup"]>;
12267
12267
  entityMeta: z.ZodOptional<z.ZodObject<{
@@ -12314,7 +12314,7 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
12314
12314
  referencedTokenId?: string | undefined;
12315
12315
  } | undefined;
12316
12316
  } | undefined;
12317
- }>, "many">;
12317
+ }>, "many">>;
12318
12318
  }, "strip", z.ZodTypeAny, {
12319
12319
  value: {
12320
12320
  entityId: string;
@@ -12336,7 +12336,14 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
12336
12336
  referencedTokenId?: string | undefined;
12337
12337
  } | undefined;
12338
12338
  }, {
12339
- value: {
12339
+ selectedPropertyIds?: string[] | undefined;
12340
+ showSearch?: boolean | undefined;
12341
+ previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
12342
+ backgroundColor?: {
12343
+ value: string;
12344
+ referencedTokenId?: string | undefined;
12345
+ } | undefined;
12346
+ value?: {
12340
12347
  entityId: string;
12341
12348
  entityType: "Asset" | "AssetGroup";
12342
12349
  entityMeta?: {
@@ -12347,22 +12354,15 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
12347
12354
  referencedTokenId?: string | undefined;
12348
12355
  } | undefined;
12349
12356
  } | undefined;
12350
- }[];
12351
- selectedPropertyIds?: string[] | undefined;
12352
- showSearch?: boolean | undefined;
12353
- previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
12354
- backgroundColor?: {
12355
- value: string;
12356
- referencedTokenId?: string | undefined;
12357
- } | undefined;
12357
+ }[] | undefined;
12358
12358
  }>;
12359
12359
  type PageBlockItemAssetValue = z.infer<typeof PageBlockItemAssetValue>;
12360
12360
  declare const PageBlockItemAssetPropertyValue: z.ZodObject<{
12361
- value: z.ZodArray<z.ZodString, "many">;
12361
+ value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
12362
12362
  }, "strip", z.ZodTypeAny, {
12363
12363
  value: string[];
12364
12364
  }, {
12365
- value: string[];
12365
+ value?: string[] | undefined;
12366
12366
  }>;
12367
12367
  type PageBlockItemAssetPropertyValue = z.infer<typeof PageBlockItemAssetPropertyValue>;
12368
12368
  declare const PageBlockItemBooleanValue: z.ZodObject<{
@@ -12414,7 +12414,7 @@ declare const PageBlockItemColorValue: z.ZodRecord<z.ZodString, z.ZodAny>;
12414
12414
  type PageBlockItemColorValue = z.infer<typeof PageBlockItemColorValue>;
12415
12415
  declare const PageBlockItemComponentValue: z.ZodObject<{
12416
12416
  selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12417
- value: z.ZodArray<z.ZodObject<{
12417
+ value: z.ZodDefault<z.ZodArray<z.ZodObject<{
12418
12418
  entityId: z.ZodString;
12419
12419
  entityType: z.ZodEnum<["Component", "ComponentGroup"]>;
12420
12420
  }, "strip", z.ZodTypeAny, {
@@ -12423,7 +12423,7 @@ declare const PageBlockItemComponentValue: z.ZodObject<{
12423
12423
  }, {
12424
12424
  entityId: string;
12425
12425
  entityType: "Component" | "ComponentGroup";
12426
- }>, "many">;
12426
+ }>, "many">>;
12427
12427
  }, "strip", z.ZodTypeAny, {
12428
12428
  value: {
12429
12429
  entityId: string;
@@ -12431,11 +12431,11 @@ declare const PageBlockItemComponentValue: z.ZodObject<{
12431
12431
  }[];
12432
12432
  selectedPropertyIds?: string[] | undefined;
12433
12433
  }, {
12434
- value: {
12434
+ selectedPropertyIds?: string[] | undefined;
12435
+ value?: {
12435
12436
  entityId: string;
12436
12437
  entityType: "Component" | "ComponentGroup";
12437
- }[];
12438
- selectedPropertyIds?: string[] | undefined;
12438
+ }[] | undefined;
12439
12439
  }>;
12440
12440
  type PageBlockItemComponentValue = z.infer<typeof PageBlockItemComponentValue>;
12441
12441
  declare const PageBlockItemComponentPropertyValue: z.ZodObject<{
@@ -12499,7 +12499,7 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
12499
12499
  referencedTokenId?: string | undefined;
12500
12500
  }>>;
12501
12501
  showFrameDetails: z.ZodOptional<z.ZodBoolean>;
12502
- value: z.ZodArray<z.ZodObject<{
12502
+ value: z.ZodDefault<z.ZodArray<z.ZodObject<{
12503
12503
  entityId: z.ZodString;
12504
12504
  entityMeta: z.ZodOptional<z.ZodObject<{
12505
12505
  title: z.ZodOptional<z.ZodString>;
@@ -12549,7 +12549,7 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
12549
12549
  referencedTokenId?: string | undefined;
12550
12550
  } | undefined;
12551
12551
  } | undefined;
12552
- }>, "many">;
12552
+ }>, "many">>;
12553
12553
  }, "strip", z.ZodTypeAny, {
12554
12554
  value: {
12555
12555
  entityId: string;
@@ -12570,7 +12570,14 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
12570
12570
  } | undefined;
12571
12571
  showFrameDetails?: boolean | undefined;
12572
12572
  }, {
12573
- value: {
12573
+ showSearch?: boolean | undefined;
12574
+ previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
12575
+ backgroundColor?: {
12576
+ value: string;
12577
+ referencedTokenId?: string | undefined;
12578
+ } | undefined;
12579
+ showFrameDetails?: boolean | undefined;
12580
+ value?: {
12574
12581
  entityId: string;
12575
12582
  entityMeta?: {
12576
12583
  title?: string | undefined;
@@ -12580,14 +12587,7 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
12580
12587
  referencedTokenId?: string | undefined;
12581
12588
  } | undefined;
12582
12589
  } | undefined;
12583
- }[];
12584
- showSearch?: boolean | undefined;
12585
- previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
12586
- backgroundColor?: {
12587
- value: string;
12588
- referencedTokenId?: string | undefined;
12589
- } | undefined;
12590
- showFrameDetails?: boolean | undefined;
12590
+ }[] | undefined;
12591
12591
  }>;
12592
12592
  type PageBlockItemFigmaNodeValue = z.infer<typeof PageBlockItemFigmaNodeValue>;
12593
12593
  declare const PageBlockItemImageValue: z.ZodObject<{
@@ -12762,11 +12762,11 @@ declare const PageBlockItemMultiRichTextValue: z.ZodObject<{
12762
12762
  }>;
12763
12763
  type PageBlockItemMultiRichTextValue = z.infer<typeof PageBlockItemMultiRichTextValue>;
12764
12764
  declare const PageBlockItemMultiSelectValue: z.ZodObject<{
12765
- value: z.ZodArray<z.ZodString, "many">;
12765
+ value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
12766
12766
  }, "strip", z.ZodTypeAny, {
12767
12767
  value: string[];
12768
12768
  }, {
12769
- value: string[];
12769
+ value?: string[] | undefined;
12770
12770
  }>;
12771
12771
  type PageBlockItemMultiSelectValue = z.infer<typeof PageBlockItemMultiSelectValue>;
12772
12772
  declare const PageBlockItemNumberValue: z.ZodObject<{
@@ -12901,7 +12901,7 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
12901
12901
  selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12902
12902
  selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12903
12903
  themeDisplayMode: z.ZodOptional<z.ZodEnum<["Split", "Override"]>>;
12904
- value: z.ZodArray<z.ZodObject<{
12904
+ value: z.ZodDefault<z.ZodArray<z.ZodObject<{
12905
12905
  entityId: z.ZodString;
12906
12906
  entityType: z.ZodEnum<["Token", "TokenGroup"]>;
12907
12907
  entityMeta: z.ZodOptional<z.ZodObject<{
@@ -12923,7 +12923,7 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
12923
12923
  entityMeta?: {
12924
12924
  showNestedGroups?: boolean | undefined;
12925
12925
  } | undefined;
12926
- }>, "many">;
12926
+ }>, "many">>;
12927
12927
  }, "strip", z.ZodTypeAny, {
12928
12928
  value: {
12929
12929
  entityId: string;
@@ -12936,38 +12936,38 @@ declare const PageBlockItemTokenValue: z.ZodObject<{
12936
12936
  selectedThemeIds?: string[] | undefined;
12937
12937
  themeDisplayMode?: "Override" | "Split" | undefined;
12938
12938
  }, {
12939
- value: {
12939
+ selectedPropertyIds?: string[] | undefined;
12940
+ selectedThemeIds?: string[] | undefined;
12941
+ themeDisplayMode?: "Override" | "Split" | undefined;
12942
+ value?: {
12940
12943
  entityId: string;
12941
12944
  entityType: "Token" | "TokenGroup";
12942
12945
  entityMeta?: {
12943
12946
  showNestedGroups?: boolean | undefined;
12944
12947
  } | undefined;
12945
- }[];
12946
- selectedPropertyIds?: string[] | undefined;
12947
- selectedThemeIds?: string[] | undefined;
12948
- themeDisplayMode?: "Override" | "Split" | undefined;
12948
+ }[] | undefined;
12949
12949
  }>;
12950
12950
  type PageBlockItemTokenValue = z.infer<typeof PageBlockItemTokenValue>;
12951
12951
  declare const PageBlockItemTokenPropertyValue: z.ZodObject<{
12952
12952
  selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12953
12953
  selectedThemeIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12954
- value: z.ZodArray<z.ZodString, "many">;
12954
+ value: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
12955
12955
  }, "strip", z.ZodTypeAny, {
12956
12956
  value: string[];
12957
12957
  selectedPropertyIds?: string[] | undefined;
12958
12958
  selectedThemeIds?: string[] | undefined;
12959
12959
  }, {
12960
- value: string[];
12961
12960
  selectedPropertyIds?: string[] | undefined;
12962
12961
  selectedThemeIds?: string[] | undefined;
12962
+ value?: string[] | undefined;
12963
12963
  }>;
12964
12964
  type PageBlockItemTokenPropertyValue = z.infer<typeof PageBlockItemTokenPropertyValue>;
12965
12965
  declare const PageBlockItemTokenTypeValue: z.ZodObject<{
12966
- value: z.ZodArray<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"]>, "many">;
12966
+ value: z.ZodDefault<z.ZodArray<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"]>, "many">>;
12967
12967
  }, "strip", z.ZodTypeAny, {
12968
12968
  value: ("Image" | "Font" | "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")[];
12969
12969
  }, {
12970
- value: ("Image" | "Font" | "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")[];
12970
+ value?: ("Image" | "Font" | "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")[] | undefined;
12971
12971
  }>;
12972
12972
  type PageBlockItemTokenTypeValue = z.infer<typeof PageBlockItemTokenTypeValue>;
12973
12973
  declare const PageBlockItemUrlValue: z.ZodObject<{
@@ -13959,7 +13959,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
13959
13959
  highlightHeaderColumn: z.ZodOptional<z.ZodBoolean>;
13960
13960
  highlightHeaderRow: z.ZodOptional<z.ZodBoolean>;
13961
13961
  showBorder: z.ZodOptional<z.ZodBoolean>;
13962
- value: z.ZodArray<z.ZodObject<{
13962
+ value: z.ZodDefault<z.ZodArray<z.ZodObject<{
13963
13963
  cells: z.ZodArray<z.ZodObject<{
13964
13964
  id: z.ZodString;
13965
13965
  nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
@@ -14271,7 +14271,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
14271
14271
  })[];
14272
14272
  columnWidth?: number | undefined;
14273
14273
  }[];
14274
- }>, "many">;
14274
+ }>, "many">>;
14275
14275
  }, "strip", z.ZodTypeAny, {
14276
14276
  value: {
14277
14277
  cells: {
@@ -14314,7 +14314,10 @@ declare const PageBlockItemTableValue: z.ZodObject<{
14314
14314
  highlightHeaderRow?: boolean | undefined;
14315
14315
  showBorder?: boolean | undefined;
14316
14316
  }, {
14317
- value: {
14317
+ highlightHeaderColumn?: boolean | undefined;
14318
+ highlightHeaderRow?: boolean | undefined;
14319
+ showBorder?: boolean | undefined;
14320
+ value?: {
14318
14321
  cells: {
14319
14322
  id: string;
14320
14323
  alignment: "Center" | "Left" | "Right";
@@ -14350,10 +14353,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
14350
14353
  })[];
14351
14354
  columnWidth?: number | undefined;
14352
14355
  }[];
14353
- }[];
14354
- highlightHeaderColumn?: boolean | undefined;
14355
- highlightHeaderRow?: boolean | undefined;
14356
- showBorder?: boolean | undefined;
14356
+ }[] | undefined;
14357
14357
  }>;
14358
14358
  type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
14359
14359
 
@@ -92757,8 +92757,9 @@ declare const ImportWarning: z.ZodObject<{
92757
92757
  }>;
92758
92758
  type ImportWarning = z.infer<typeof ImportWarning>;
92759
92759
 
92760
- declare const ElementPropertyType: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
92761
- type ElementPropertyType = z.infer<typeof ElementPropertyType>;
92760
+ declare const ElementPropertyTypeSchema: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
92761
+ type ElementPropertyType = z.infer<typeof ElementPropertyTypeSchema>;
92762
+ declare const ElementPropertyType: z.Values<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
92762
92763
  declare const ElementPropertyTargetType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
92763
92764
  type ElementPropertyTargetType = z.infer<typeof ElementPropertyTargetType>;
92764
92765
  declare const ElementPropertyLinkType: z.ZodEnum<["FigmaComponent", "DocumentationPage"]>;
@@ -92804,7 +92805,7 @@ declare const ElementPropertyDefinition: z.ZodObject<{
92804
92805
  description: z.ZodString;
92805
92806
  type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
92806
92807
  targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
92807
- options: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
92808
+ options: z.ZodOptional<z.ZodArray<z.ZodObject<{
92808
92809
  id: z.ZodString;
92809
92810
  name: z.ZodString;
92810
92811
  backgroundColor: z.ZodOptional<z.ZodObject<{
@@ -92826,8 +92827,8 @@ declare const ElementPropertyDefinition: z.ZodObject<{
92826
92827
  backgroundColor?: {
92827
92828
  value: string;
92828
92829
  } | undefined;
92829
- }>, "many">>>;
92830
- linkElementType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["FigmaComponent", "DocumentationPage"]>>>;
92830
+ }>, "many">>;
92831
+ linkElementType: z.ZodOptional<z.ZodEnum<["FigmaComponent", "DocumentationPage"]>>;
92831
92832
  }, "strip", z.ZodTypeAny, {
92832
92833
  id: string;
92833
92834
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
@@ -92843,8 +92844,8 @@ declare const ElementPropertyDefinition: z.ZodObject<{
92843
92844
  backgroundColor?: {
92844
92845
  value: string;
92845
92846
  } | undefined;
92846
- }[] | null | undefined;
92847
- linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
92847
+ }[] | undefined;
92848
+ linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
92848
92849
  }, {
92849
92850
  id: string;
92850
92851
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
@@ -92860,8 +92861,8 @@ declare const ElementPropertyDefinition: z.ZodObject<{
92860
92861
  backgroundColor?: {
92861
92862
  value: string;
92862
92863
  } | undefined;
92863
- }[] | null | undefined;
92864
- linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
92864
+ }[] | undefined;
92865
+ linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
92865
92866
  }>;
92866
92867
  type ElementPropertyDefinition = z.infer<typeof ElementPropertyDefinition>;
92867
92868
  type CreateElementPropertyDefinition = DbCreateInputOmit<ElementPropertyDefinition>;
@@ -92886,7 +92887,7 @@ declare const ElementPropertyValue: z.ZodObject<{
92886
92887
  numberValue: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
92887
92888
  booleanValue: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
92888
92889
  referenceValue: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92889
- referenceValuePreview: z.ZodOptional<z.ZodNullable<z.ZodString>>;
92890
+ referenceValuePreview: z.ZodOptional<z.ZodString>;
92890
92891
  }, "strip", z.ZodTypeAny, {
92891
92892
  id: string;
92892
92893
  designSystemVersionId: string;
@@ -92896,7 +92897,7 @@ declare const ElementPropertyValue: z.ZodObject<{
92896
92897
  numberValue?: number | null | undefined;
92897
92898
  booleanValue?: boolean | null | undefined;
92898
92899
  referenceValue?: string | null | undefined;
92899
- referenceValuePreview?: string | null | undefined;
92900
+ referenceValuePreview?: string | undefined;
92900
92901
  }, {
92901
92902
  id: string;
92902
92903
  designSystemVersionId: string;
@@ -92906,7 +92907,7 @@ declare const ElementPropertyValue: z.ZodObject<{
92906
92907
  numberValue?: number | null | undefined;
92907
92908
  booleanValue?: boolean | null | undefined;
92908
92909
  referenceValue?: string | null | undefined;
92909
- referenceValuePreview?: string | null | undefined;
92910
+ referenceValuePreview?: string | undefined;
92910
92911
  }>;
92911
92912
  type ElementPropertyValue = z.infer<typeof ElementPropertyValue>;
92912
92913
  type CreateElementPropertyValue = DbCreateInputOmit<ElementPropertyValue>;
@@ -104572,48 +104573,232 @@ declare const RoomTypeSchema: z.ZodNativeEnum<typeof RoomTypeEnum>;
104572
104573
  type RoomType = z.infer<typeof RoomTypeSchema>;
104573
104574
  declare const RoomType: typeof RoomTypeEnum;
104574
104575
 
104575
- type ElementViewBaseColumnType = "Name" | "Description" | "Value" | "UpdatedAt";
104576
- type ElementViewColumn = ElementViewBasePropertyColumn | ElementViewPropertyDefinitionColumn | ElementViewThemeColumn;
104577
- type ElementViewBasePropertyColumn = ElementViewColumnSharedAttributes & {
104576
+ declare const ElementViewBaseColumnType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
104577
+ type ElementViewBaseColumnType = z.infer<typeof ElementViewBaseColumnType>;
104578
+ declare const ElementViewBasePropertyColumn: z.ZodObject<{
104579
+ id: z.ZodString;
104580
+ persistentId: z.ZodString;
104581
+ width: z.ZodNumber;
104582
+ elementDataViewId: z.ZodString;
104583
+ sortPosition: z.ZodNumber;
104584
+ type: z.ZodLiteral<"BaseProperty">;
104585
+ basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
104586
+ }, "strip", z.ZodTypeAny, {
104587
+ id: string;
104578
104588
  type: "BaseProperty";
104579
- basePropertyType: ElementViewBaseColumnType;
104580
- };
104581
- type ElementViewPropertyDefinitionColumn = ElementViewColumnSharedAttributes & {
104589
+ persistentId: string;
104590
+ width: number;
104591
+ elementDataViewId: string;
104592
+ sortPosition: number;
104593
+ basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
104594
+ }, {
104595
+ id: string;
104596
+ type: "BaseProperty";
104597
+ persistentId: string;
104598
+ width: number;
104599
+ elementDataViewId: string;
104600
+ sortPosition: number;
104601
+ basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
104602
+ }>;
104603
+ type ElementViewBasePropertyColumn = z.infer<typeof ElementViewBasePropertyColumn>;
104604
+ declare const ElementViewPropertyDefinitionColumn: z.ZodObject<{
104605
+ id: z.ZodString;
104606
+ persistentId: z.ZodString;
104607
+ width: z.ZodNumber;
104608
+ elementDataViewId: z.ZodString;
104609
+ sortPosition: z.ZodNumber;
104610
+ type: z.ZodLiteral<"PropertyDefinition">;
104611
+ propertyDefinitionId: z.ZodString;
104612
+ }, "strip", z.ZodTypeAny, {
104613
+ id: string;
104582
104614
  type: "PropertyDefinition";
104615
+ persistentId: string;
104616
+ width: number;
104617
+ elementDataViewId: string;
104618
+ sortPosition: number;
104583
104619
  propertyDefinitionId: string;
104584
- };
104585
- type ElementViewThemeColumn = ElementViewColumnSharedAttributes & {
104620
+ }, {
104621
+ id: string;
104622
+ type: "PropertyDefinition";
104623
+ persistentId: string;
104624
+ width: number;
104625
+ elementDataViewId: string;
104626
+ sortPosition: number;
104627
+ propertyDefinitionId: string;
104628
+ }>;
104629
+ type ElementViewPropertyDefinitionColumn = z.infer<typeof ElementViewPropertyDefinitionColumn>;
104630
+ declare const ElementViewThemeColumn: z.ZodObject<{
104631
+ id: z.ZodString;
104632
+ persistentId: z.ZodString;
104633
+ width: z.ZodNumber;
104634
+ elementDataViewId: z.ZodString;
104635
+ sortPosition: z.ZodNumber;
104636
+ type: z.ZodLiteral<"Theme">;
104637
+ themeId: z.ZodString;
104638
+ }, "strip", z.ZodTypeAny, {
104639
+ id: string;
104586
104640
  type: "Theme";
104641
+ persistentId: string;
104642
+ width: number;
104643
+ elementDataViewId: string;
104644
+ sortPosition: number;
104587
104645
  themeId: string;
104588
- };
104589
- type ElementViewColumnSharedAttributes = {
104646
+ }, {
104590
104647
  id: string;
104648
+ type: "Theme";
104591
104649
  persistentId: string;
104650
+ width: number;
104592
104651
  elementDataViewId: string;
104593
104652
  sortPosition: number;
104653
+ themeId: string;
104654
+ }>;
104655
+ type ElementViewThemeColumn = z.infer<typeof ElementViewThemeColumn>;
104656
+ declare const ElementViewColumn: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
104657
+ id: z.ZodString;
104658
+ persistentId: z.ZodString;
104659
+ width: z.ZodNumber;
104660
+ elementDataViewId: z.ZodString;
104661
+ sortPosition: z.ZodNumber;
104662
+ type: z.ZodLiteral<"BaseProperty">;
104663
+ basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
104664
+ }, "strip", z.ZodTypeAny, {
104665
+ id: string;
104666
+ type: "BaseProperty";
104667
+ persistentId: string;
104594
104668
  width: number;
104595
- };
104596
- type ElementViewColumnType = ElementViewColumn["type"];
104669
+ elementDataViewId: string;
104670
+ sortPosition: number;
104671
+ basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
104672
+ }, {
104673
+ id: string;
104674
+ type: "BaseProperty";
104675
+ persistentId: string;
104676
+ width: number;
104677
+ elementDataViewId: string;
104678
+ sortPosition: number;
104679
+ basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
104680
+ }>, z.ZodObject<{
104681
+ id: z.ZodString;
104682
+ persistentId: z.ZodString;
104683
+ width: z.ZodNumber;
104684
+ elementDataViewId: z.ZodString;
104685
+ sortPosition: z.ZodNumber;
104686
+ type: z.ZodLiteral<"PropertyDefinition">;
104687
+ propertyDefinitionId: z.ZodString;
104688
+ }, "strip", z.ZodTypeAny, {
104689
+ id: string;
104690
+ type: "PropertyDefinition";
104691
+ persistentId: string;
104692
+ width: number;
104693
+ elementDataViewId: string;
104694
+ sortPosition: number;
104695
+ propertyDefinitionId: string;
104696
+ }, {
104697
+ id: string;
104698
+ type: "PropertyDefinition";
104699
+ persistentId: string;
104700
+ width: number;
104701
+ elementDataViewId: string;
104702
+ sortPosition: number;
104703
+ propertyDefinitionId: string;
104704
+ }>, z.ZodObject<{
104705
+ id: z.ZodString;
104706
+ persistentId: z.ZodString;
104707
+ width: z.ZodNumber;
104708
+ elementDataViewId: z.ZodString;
104709
+ sortPosition: z.ZodNumber;
104710
+ type: z.ZodLiteral<"Theme">;
104711
+ themeId: z.ZodString;
104712
+ }, "strip", z.ZodTypeAny, {
104713
+ id: string;
104714
+ type: "Theme";
104715
+ persistentId: string;
104716
+ width: number;
104717
+ elementDataViewId: string;
104718
+ sortPosition: number;
104719
+ themeId: string;
104720
+ }, {
104721
+ id: string;
104722
+ type: "Theme";
104723
+ persistentId: string;
104724
+ width: number;
104725
+ elementDataViewId: string;
104726
+ sortPosition: number;
104727
+ themeId: string;
104728
+ }>]>;
104729
+ type ElementViewColumn = z.infer<typeof ElementViewColumn>;
104730
+ declare const ElementViewColumnSharedAttributes: z.ZodObject<{
104731
+ id: z.ZodString;
104732
+ persistentId: z.ZodString;
104733
+ elementDataViewId: z.ZodString;
104734
+ sortPosition: z.ZodNumber;
104735
+ width: z.ZodNumber;
104736
+ }, "strip", z.ZodTypeAny, {
104737
+ id: string;
104738
+ persistentId: string;
104739
+ width: number;
104740
+ elementDataViewId: string;
104741
+ sortPosition: number;
104742
+ }, {
104743
+ id: string;
104744
+ persistentId: string;
104745
+ width: number;
104746
+ elementDataViewId: string;
104747
+ sortPosition: number;
104748
+ }>;
104749
+ type ElementViewColumnSharedAttributes = z.infer<typeof ElementViewColumnSharedAttributes>;
104750
+ declare const ElementViewColumnType: z.ZodUnion<[z.ZodLiteral<"BaseProperty">, z.ZodLiteral<"PropertyDefinition">, z.ZodLiteral<"Theme">]>;
104751
+ type ElementViewColumnType = z.infer<typeof ElementViewColumn>["type"];
104597
104752
  type CreateElementViewColumn = DbCreateInputOmit<ElementViewBasePropertyColumn> | DbCreateInputOmit<ElementViewPropertyDefinitionColumn> | DbCreateInputOmit<ElementViewThemeColumn>;
104598
104753
  type UpdateElementViewColumn = OmitStrict<DbUpdate<ElementViewBasePropertyColumn>, "elementDataViewId"> | OmitStrict<DbUpdate<ElementViewPropertyDefinitionColumn>, "elementDataViewId"> | OmitStrict<DbUpdate<ElementViewThemeColumn>, "elementDataViewId">;
104599
104754
 
104600
- type ElementView = {
104755
+ declare const ElementView: z.ZodObject<{
104756
+ id: z.ZodString;
104757
+ persistentId: z.ZodString;
104758
+ designSystemVersionId: z.ZodString;
104759
+ name: z.ZodString;
104760
+ description: z.ZodString;
104761
+ targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
104762
+ isDefault: z.ZodBoolean;
104763
+ }, "strip", z.ZodTypeAny, {
104601
104764
  id: string;
104765
+ name: string;
104602
104766
  persistentId: string;
104767
+ description: string;
104603
104768
  designSystemVersionId: string;
104769
+ targetElementType: "Component" | "DocumentationPage" | "Token";
104770
+ isDefault: boolean;
104771
+ }, {
104772
+ id: string;
104604
104773
  name: string;
104774
+ persistentId: string;
104605
104775
  description: string;
104606
- targetElementType: ElementPropertyTargetType;
104776
+ designSystemVersionId: string;
104777
+ targetElementType: "Component" | "DocumentationPage" | "Token";
104607
104778
  isDefault: boolean;
104608
- };
104779
+ }>;
104780
+ type ElementView = z.infer<typeof ElementView>;
104609
104781
 
104610
- type Brand = {
104782
+ declare const Brand: z.ZodObject<{
104783
+ id: z.ZodString;
104784
+ designSystemVersionId: z.ZodString;
104785
+ persistentId: z.ZodString;
104786
+ name: z.ZodString;
104787
+ description: z.ZodString;
104788
+ }, "strip", z.ZodTypeAny, {
104611
104789
  id: string;
104612
- designSystemVersionId: string;
104790
+ name: string;
104613
104791
  persistentId: string;
104792
+ description: string;
104793
+ designSystemVersionId: string;
104794
+ }, {
104795
+ id: string;
104614
104796
  name: string;
104797
+ persistentId: string;
104615
104798
  description: string;
104616
- };
104799
+ designSystemVersionId: string;
104800
+ }>;
104801
+ type Brand = z.infer<typeof Brand>;
104617
104802
 
104618
104803
  declare const DesignSystemSwitcher: z.ZodObject<{
104619
104804
  isEnabled: z.ZodBoolean;
@@ -104879,7 +105064,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
104879
105064
  status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
104880
105065
  subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
104881
105066
  internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
104882
- product: z.ZodEnum<["free", "team", "team_test", "company", "enterprise"]>;
105067
+ product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
104883
105068
  featuresSummary: z.ZodOptional<z.ZodObject<{
104884
105069
  designSystems: z.ZodObject<{
104885
105070
  max: z.ZodNumber;
@@ -105326,7 +105511,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
105326
105511
  billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
105327
105512
  daysUntilDue: z.ZodOptional<z.ZodNumber>;
105328
105513
  }, "strip", z.ZodTypeAny, {
105329
- product: "free" | "team" | "team_test" | "company" | "enterprise";
105514
+ product: "free" | "team" | "company" | "enterprise";
105330
105515
  planPriceId: string;
105331
105516
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
105332
105517
  seats: number;
@@ -105448,7 +105633,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
105448
105633
  billingType?: "Auto" | "Invoice" | undefined;
105449
105634
  daysUntilDue?: number | undefined;
105450
105635
  }, {
105451
- product: "free" | "team" | "team_test" | "company" | "enterprise";
105636
+ product: "free" | "team" | "company" | "enterprise";
105452
105637
  planPriceId: string;
105453
105638
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
105454
105639
  seats: number;
@@ -105813,7 +105998,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
105813
105998
  } | undefined;
105814
105999
  };
105815
106000
  subscription: {
105816
- product: "free" | "team" | "team_test" | "company" | "enterprise";
106001
+ product: "free" | "team" | "company" | "enterprise";
105817
106002
  planPriceId: string;
105818
106003
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
105819
106004
  seats: number;
@@ -106020,7 +106205,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
106020
106205
  } | null | undefined;
106021
106206
  };
106022
106207
  subscription: {
106023
- product: "free" | "team" | "team_test" | "company" | "enterprise";
106208
+ product: "free" | "team" | "company" | "enterprise";
106024
106209
  planPriceId: string;
106025
106210
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
106026
106211
  seats: number;
@@ -106229,7 +106414,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
106229
106414
  } | undefined;
106230
106415
  };
106231
106416
  subscription: {
106232
- product: "free" | "team" | "team_test" | "company" | "enterprise";
106417
+ product: "free" | "team" | "company" | "enterprise";
106233
106418
  planPriceId: string;
106234
106419
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
106235
106420
  seats: number;
@@ -106458,7 +106643,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
106458
106643
  } | null | undefined;
106459
106644
  };
106460
106645
  subscription: {
106461
- product: "free" | "team" | "team_test" | "company" | "enterprise";
106646
+ product: "free" | "team" | "company" | "enterprise";
106462
106647
  planPriceId: string;
106463
106648
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
106464
106649
  seats: number;
@@ -106795,9 +106980,9 @@ declare const PublishedDoc: z.ZodObject<{
106795
106980
  updatedAt: Date;
106796
106981
  designSystemVersionId: string;
106797
106982
  storagePath: string;
106983
+ isDefault: boolean;
106798
106984
  isPublic: boolean;
106799
106985
  lastPublishedAt: Date;
106800
- isDefault: boolean;
106801
106986
  environment: "Live" | "Preview";
106802
106987
  checksums: Record<string, string>;
106803
106988
  wasMigrated: boolean;
@@ -106810,9 +106995,9 @@ declare const PublishedDoc: z.ZodObject<{
106810
106995
  updatedAt: Date;
106811
106996
  designSystemVersionId: string;
106812
106997
  storagePath: string;
106998
+ isDefault: boolean;
106813
106999
  isPublic: boolean;
106814
107000
  lastPublishedAt: Date;
106815
- isDefault: boolean;
106816
107001
  environment: "Live" | "Preview";
106817
107002
  checksums: Record<string, string>;
106818
107003
  wasMigrated: boolean;
@@ -106829,17 +107014,40 @@ type DesignElementReference = {
106829
107014
  };
106830
107015
  type CreateDesignElementReference = DbCreateInputOmit<DesignElementReference>;
106831
107016
 
106832
- type DesignSystemVersion = {
107017
+ declare const DesignSystemVersion: z.ZodObject<{
107018
+ id: z.ZodString;
107019
+ version: z.ZodString;
107020
+ createdAt: z.ZodDate;
107021
+ designSystemId: z.ZodString;
107022
+ name: z.ZodString;
107023
+ comment: z.ZodString;
107024
+ isReadonly: z.ZodBoolean;
107025
+ changeLog: z.ZodString;
107026
+ parentId: z.ZodOptional<z.ZodString>;
107027
+ }, "strip", z.ZodTypeAny, {
106833
107028
  id: string;
106834
- version: string;
106835
107029
  createdAt: Date;
107030
+ name: string;
106836
107031
  designSystemId: string;
107032
+ comment: string;
107033
+ version: string;
107034
+ isReadonly: boolean;
107035
+ changeLog: string;
107036
+ parentId?: string | undefined;
107037
+ }, {
107038
+ id: string;
107039
+ createdAt: Date;
106837
107040
  name: string;
107041
+ designSystemId: string;
106838
107042
  comment: string;
107043
+ version: string;
106839
107044
  isReadonly: boolean;
106840
- parentId: string | null;
106841
107045
  changeLog: string;
106842
- };
107046
+ parentId?: string | undefined;
107047
+ }>;
107048
+ type DesignSystemVersion = z.infer<typeof DesignSystemVersion>;
107049
+ type CreateDesignSystemVersion = DbCreateInputOmit<DesignSystemVersion>;
107050
+ type UpdateDesignSystemVersion = OmitStrict<DbUpdate<DesignSystemVersion>, "designSystemId" | "isReadonly" | "version" | "parentId">;
106843
107051
 
106844
107052
  declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2"]>;
106845
107053
  type FlaggedFeature = z.infer<typeof FlaggedFeature>;
@@ -107931,7 +108139,7 @@ type UserInvites = z.infer<typeof UserInvites>;
107931
108139
 
107932
108140
  declare const WorkspaceContext: z.ZodObject<{
107933
108141
  workspaceId: z.ZodString;
107934
- product: z.ZodEnum<["free", "team", "team_test", "company", "enterprise"]>;
108142
+ product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
107935
108143
  ipWhitelist: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
107936
108144
  entries: {
107937
108145
  name: string;
@@ -107967,7 +108175,7 @@ declare const WorkspaceContext: z.ZodObject<{
107967
108175
  } | null | undefined>;
107968
108176
  publicDesignSystem: z.ZodOptional<z.ZodBoolean>;
107969
108177
  }, "strip", z.ZodTypeAny, {
107970
- product: "free" | "team" | "team_test" | "company" | "enterprise";
108178
+ product: "free" | "team" | "company" | "enterprise";
107971
108179
  workspaceId: string;
107972
108180
  ipWhitelist?: {
107973
108181
  entries: {
@@ -107980,7 +108188,7 @@ declare const WorkspaceContext: z.ZodObject<{
107980
108188
  } | undefined;
107981
108189
  publicDesignSystem?: boolean | undefined;
107982
108190
  }, {
107983
- product: "free" | "team" | "team_test" | "company" | "enterprise";
108191
+ product: "free" | "team" | "company" | "enterprise";
107984
108192
  workspaceId: string;
107985
108193
  ipWhitelist?: {
107986
108194
  entries: {
@@ -107999,7 +108207,7 @@ declare const HANDLE_MIN_LENGTH = 2;
107999
108207
  declare const HANDLE_MAX_LENGTH = 64;
108000
108208
  declare const CreateWorkspaceInput: z.ZodObject<{
108001
108209
  name: z.ZodString;
108002
- product: z.ZodEnum<["free", "team", "team_test", "company", "enterprise"]>;
108210
+ product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
108003
108211
  priceId: z.ZodString;
108004
108212
  billingEmail: z.ZodOptional<z.ZodString>;
108005
108213
  handle: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
@@ -108165,7 +108373,7 @@ declare const CreateWorkspaceInput: z.ZodObject<{
108165
108373
  }, "strip", z.ZodTypeAny, {
108166
108374
  name: string;
108167
108375
  priceId: string;
108168
- product: "free" | "team" | "team_test" | "company" | "enterprise";
108376
+ product: "free" | "team" | "company" | "enterprise";
108169
108377
  billingEmail?: string | undefined;
108170
108378
  handle?: string | undefined;
108171
108379
  invites?: {
@@ -108228,7 +108436,7 @@ declare const CreateWorkspaceInput: z.ZodObject<{
108228
108436
  }, {
108229
108437
  name: string;
108230
108438
  priceId: string;
108231
- product: "free" | "team" | "team_test" | "company" | "enterprise";
108439
+ product: "free" | "team" | "company" | "enterprise";
108232
108440
  billingEmail?: string | undefined;
108233
108441
  handle?: string | undefined;
108234
108442
  invites?: {
@@ -108638,7 +108846,7 @@ declare const Workspace: z.ZodObject<{
108638
108846
  status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
108639
108847
  subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
108640
108848
  internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
108641
- product: z.ZodEnum<["free", "team", "team_test", "company", "enterprise"]>;
108849
+ product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
108642
108850
  featuresSummary: z.ZodOptional<z.ZodObject<{
108643
108851
  designSystems: z.ZodObject<{
108644
108852
  max: z.ZodNumber;
@@ -109085,7 +109293,7 @@ declare const Workspace: z.ZodObject<{
109085
109293
  billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
109086
109294
  daysUntilDue: z.ZodOptional<z.ZodNumber>;
109087
109295
  }, "strip", z.ZodTypeAny, {
109088
- product: "free" | "team" | "team_test" | "company" | "enterprise";
109296
+ product: "free" | "team" | "company" | "enterprise";
109089
109297
  planPriceId: string;
109090
109298
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
109091
109299
  seats: number;
@@ -109207,7 +109415,7 @@ declare const Workspace: z.ZodObject<{
109207
109415
  billingType?: "Auto" | "Invoice" | undefined;
109208
109416
  daysUntilDue?: number | undefined;
109209
109417
  }, {
109210
- product: "free" | "team" | "team_test" | "company" | "enterprise";
109418
+ product: "free" | "team" | "company" | "enterprise";
109211
109419
  planPriceId: string;
109212
109420
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
109213
109421
  seats: number;
@@ -109572,7 +109780,7 @@ declare const Workspace: z.ZodObject<{
109572
109780
  } | undefined;
109573
109781
  };
109574
109782
  subscription: {
109575
- product: "free" | "team" | "team_test" | "company" | "enterprise";
109783
+ product: "free" | "team" | "company" | "enterprise";
109576
109784
  planPriceId: string;
109577
109785
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
109578
109786
  seats: number;
@@ -109779,7 +109987,7 @@ declare const Workspace: z.ZodObject<{
109779
109987
  } | null | undefined;
109780
109988
  };
109781
109989
  subscription: {
109782
- product: "free" | "team" | "team_test" | "company" | "enterprise";
109990
+ product: "free" | "team" | "company" | "enterprise";
109783
109991
  planPriceId: string;
109784
109992
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
109785
109993
  seats: number;
@@ -110081,7 +110289,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110081
110289
  status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
110082
110290
  subscriptionStatus: z.ZodOptional<z.ZodEnum<["trialing", "active", "past_due", "canceled", "unpaid", "incomplete_expired", "incomplete", "unknown"]>>;
110083
110291
  internalStatus: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
110084
- product: z.ZodEnum<["free", "team", "team_test", "company", "enterprise"]>;
110292
+ product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
110085
110293
  featuresSummary: z.ZodOptional<z.ZodObject<{
110086
110294
  designSystems: z.ZodObject<{
110087
110295
  max: z.ZodNumber;
@@ -110528,7 +110736,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110528
110736
  billingType: z.ZodOptional<z.ZodEnum<["Auto", "Invoice"]>>;
110529
110737
  daysUntilDue: z.ZodOptional<z.ZodNumber>;
110530
110738
  }, "strip", z.ZodTypeAny, {
110531
- product: "free" | "team" | "team_test" | "company" | "enterprise";
110739
+ product: "free" | "team" | "company" | "enterprise";
110532
110740
  planPriceId: string;
110533
110741
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
110534
110742
  seats: number;
@@ -110650,7 +110858,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110650
110858
  billingType?: "Auto" | "Invoice" | undefined;
110651
110859
  daysUntilDue?: number | undefined;
110652
110860
  }, {
110653
- product: "free" | "team" | "team_test" | "company" | "enterprise";
110861
+ product: "free" | "team" | "company" | "enterprise";
110654
110862
  planPriceId: string;
110655
110863
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
110656
110864
  seats: number;
@@ -111015,7 +111223,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
111015
111223
  } | undefined;
111016
111224
  };
111017
111225
  subscription: {
111018
- product: "free" | "team" | "team_test" | "company" | "enterprise";
111226
+ product: "free" | "team" | "company" | "enterprise";
111019
111227
  planPriceId: string;
111020
111228
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
111021
111229
  seats: number;
@@ -111222,7 +111430,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
111222
111430
  } | null | undefined;
111223
111431
  };
111224
111432
  subscription: {
111225
- product: "free" | "team" | "team_test" | "company" | "enterprise";
111433
+ product: "free" | "team" | "company" | "enterprise";
111226
111434
  planPriceId: string;
111227
111435
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
111228
111436
  seats: number;
@@ -111518,7 +111726,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
111518
111726
  } | undefined;
111519
111727
  };
111520
111728
  subscription: {
111521
- product: "free" | "team" | "team_test" | "company" | "enterprise";
111729
+ product: "free" | "team" | "company" | "enterprise";
111522
111730
  planPriceId: string;
111523
111731
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
111524
111732
  seats: number;
@@ -111747,7 +111955,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
111747
111955
  } | null | undefined;
111748
111956
  };
111749
111957
  subscription: {
111750
- product: "free" | "team" | "team_test" | "company" | "enterprise";
111958
+ product: "free" | "team" | "company" | "enterprise";
111751
111959
  planPriceId: string;
111752
111960
  planInterval: "daily" | "monthly" | "weekly" | "yearly";
111753
111961
  seats: number;
@@ -111933,4 +112141,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
111933
112141
  }>;
111934
112142
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
111935
112143
 
111936
- export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, 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 CreateDocumentationPageContent, 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, DocumentationLinkPreview, DocumentationPage, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV2, 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, FigmaImportContextWithSourcesState, 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, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, 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, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, 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, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, 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 UpdateDocumentationPageContent, 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, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
112144
+ export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, 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, 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 CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, 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, 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, DocumentationLinkPreview, DocumentationPage, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, 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, FigmaImportContextWithSourcesState, 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, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, 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, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, 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, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, 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 UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, 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, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };