@supernova-studio/model 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -3769,6 +3769,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
3769
3769
  } | undefined;
3770
3770
  }>>;
3771
3771
  downloadChunkSize: z.ZodOptional<z.ZodNumber>;
3772
+ figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
3772
3773
  }, "strip", z.ZodTypeAny, {
3773
3774
  type: "Figma";
3774
3775
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -3794,6 +3795,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
3794
3795
  } | undefined;
3795
3796
  } | undefined;
3796
3797
  downloadChunkSize?: number | undefined;
3798
+ figmaRenderChunkSize?: number | undefined;
3797
3799
  }, {
3798
3800
  type: "Figma";
3799
3801
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -3819,6 +3821,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
3819
3821
  } | undefined;
3820
3822
  } | undefined;
3821
3823
  downloadChunkSize?: number | undefined;
3824
+ figmaRenderChunkSize?: number | undefined;
3822
3825
  }>;
3823
3826
  type DataSourceFigmaRemote = z.infer<typeof DataSourceFigmaRemote>;
3824
3827
  declare const DataSourceTokenStudioRemote: z.ZodObject<{
@@ -3949,6 +3952,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3949
3952
  } | undefined;
3950
3953
  }>>;
3951
3954
  downloadChunkSize: z.ZodOptional<z.ZodNumber>;
3955
+ figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
3952
3956
  }, "strip", z.ZodTypeAny, {
3953
3957
  type: "Figma";
3954
3958
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -3974,6 +3978,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3974
3978
  } | undefined;
3975
3979
  } | undefined;
3976
3980
  downloadChunkSize?: number | undefined;
3981
+ figmaRenderChunkSize?: number | undefined;
3977
3982
  }, {
3978
3983
  type: "Figma";
3979
3984
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -3999,6 +4004,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
3999
4004
  } | undefined;
4000
4005
  } | undefined;
4001
4006
  downloadChunkSize?: number | undefined;
4007
+ figmaRenderChunkSize?: number | undefined;
4002
4008
  }>, z.ZodObject<{
4003
4009
  type: z.ZodLiteral<"FigmaVariablesPlugin">;
4004
4010
  remoteId: z.ZodString;
@@ -6080,142 +6086,6 @@ declare const PageBlockUrlPreview: z.ZodObject<{
6080
6086
  description?: string | null | undefined;
6081
6087
  thumbnailUrl?: string | null | undefined;
6082
6088
  }>;
6083
- declare const PageBlockAsset: z.ZodObject<{
6084
- type: z.ZodEnum<["image", "figmaFrame"]>;
6085
- id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
6086
- url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
6087
- figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
6088
- persistentId: string;
6089
- sourceId: string;
6090
- sourceFrameId: string;
6091
- title?: string | undefined;
6092
- description?: string | undefined;
6093
- backgroundColor?: {
6094
- value: string;
6095
- } | undefined;
6096
- origin?: {
6097
- sourceFileName?: string | undefined;
6098
- title?: string | undefined;
6099
- previewUrl?: string | undefined;
6100
- valid?: boolean | undefined;
6101
- referenceId?: string | undefined;
6102
- assetId?: string | undefined;
6103
- assetScale?: number | undefined;
6104
- width?: number | undefined;
6105
- height?: number | undefined;
6106
- } | undefined;
6107
- }, z.ZodTypeDef, {
6108
- persistentId: string;
6109
- sourceId: string;
6110
- sourceFrameId: string;
6111
- title?: string | null | undefined;
6112
- description?: string | null | undefined;
6113
- backgroundColor?: {
6114
- value: string;
6115
- } | null | undefined;
6116
- origin?: {
6117
- sourceFileName?: string | null | undefined;
6118
- title?: string | null | undefined;
6119
- previewUrl?: string | null | undefined;
6120
- valid?: boolean | null | undefined;
6121
- referenceId?: string | null | undefined;
6122
- assetId?: string | null | undefined;
6123
- assetScale?: number | null | undefined;
6124
- width?: number | null | undefined;
6125
- height?: number | null | undefined;
6126
- } | null | undefined;
6127
- }>>>, {
6128
- persistentId: string;
6129
- sourceId: string;
6130
- sourceFrameId: string;
6131
- title?: string | undefined;
6132
- description?: string | undefined;
6133
- backgroundColor?: {
6134
- value: string;
6135
- } | undefined;
6136
- origin?: {
6137
- sourceFileName?: string | undefined;
6138
- title?: string | undefined;
6139
- previewUrl?: string | undefined;
6140
- valid?: boolean | undefined;
6141
- referenceId?: string | undefined;
6142
- assetId?: string | undefined;
6143
- assetScale?: number | undefined;
6144
- width?: number | undefined;
6145
- height?: number | undefined;
6146
- } | undefined;
6147
- } | undefined, {
6148
- persistentId: string;
6149
- sourceId: string;
6150
- sourceFrameId: string;
6151
- title?: string | null | undefined;
6152
- description?: string | null | undefined;
6153
- backgroundColor?: {
6154
- value: string;
6155
- } | null | undefined;
6156
- origin?: {
6157
- sourceFileName?: string | null | undefined;
6158
- title?: string | null | undefined;
6159
- previewUrl?: string | null | undefined;
6160
- valid?: boolean | null | undefined;
6161
- referenceId?: string | null | undefined;
6162
- assetId?: string | null | undefined;
6163
- assetScale?: number | null | undefined;
6164
- width?: number | null | undefined;
6165
- height?: number | null | undefined;
6166
- } | null | undefined;
6167
- } | null | undefined>;
6168
- }, "strip", z.ZodTypeAny, {
6169
- type: "image" | "figmaFrame";
6170
- id?: string | undefined;
6171
- url?: string | undefined;
6172
- figmaFrame?: {
6173
- persistentId: string;
6174
- sourceId: string;
6175
- sourceFrameId: string;
6176
- title?: string | undefined;
6177
- description?: string | undefined;
6178
- backgroundColor?: {
6179
- value: string;
6180
- } | undefined;
6181
- origin?: {
6182
- sourceFileName?: string | undefined;
6183
- title?: string | undefined;
6184
- previewUrl?: string | undefined;
6185
- valid?: boolean | undefined;
6186
- referenceId?: string | undefined;
6187
- assetId?: string | undefined;
6188
- assetScale?: number | undefined;
6189
- width?: number | undefined;
6190
- height?: number | undefined;
6191
- } | undefined;
6192
- } | undefined;
6193
- }, {
6194
- type: "image" | "figmaFrame";
6195
- id?: string | null | undefined;
6196
- url?: string | null | undefined;
6197
- figmaFrame?: {
6198
- persistentId: string;
6199
- sourceId: string;
6200
- sourceFrameId: string;
6201
- title?: string | null | undefined;
6202
- description?: string | null | undefined;
6203
- backgroundColor?: {
6204
- value: string;
6205
- } | null | undefined;
6206
- origin?: {
6207
- sourceFileName?: string | null | undefined;
6208
- title?: string | null | undefined;
6209
- previewUrl?: string | null | undefined;
6210
- valid?: boolean | null | undefined;
6211
- referenceId?: string | null | undefined;
6212
- assetId?: string | null | undefined;
6213
- assetScale?: number | null | undefined;
6214
- width?: number | null | undefined;
6215
- height?: number | null | undefined;
6216
- } | null | undefined;
6217
- } | null | undefined;
6218
- }>;
6219
6089
  declare const PageBlockLinkPreview: z.ZodObject<{
6220
6090
  title: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
6221
6091
  valid: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
@@ -6685,55 +6555,6 @@ declare const PageBlockAssetComponent: z.ZodObject<{
6685
6555
  value: string;
6686
6556
  } | null | undefined;
6687
6557
  }>;
6688
- declare const PageBlockTableColumn: z.ZodObject<{
6689
- id: z.ZodString;
6690
- width: z.ZodObject<{
6691
- aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
6692
- value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
6693
- unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
6694
- measure: number;
6695
- }, z.ZodTypeDef, {
6696
- unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
6697
- measure: number;
6698
- }>>>, {
6699
- unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
6700
- measure: number;
6701
- } | undefined, {
6702
- unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
6703
- measure: number;
6704
- } | null | undefined>;
6705
- }, "strip", z.ZodTypeAny, {
6706
- aliasTo?: string | undefined;
6707
- value?: {
6708
- unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
6709
- measure: number;
6710
- } | undefined;
6711
- }, {
6712
- aliasTo?: string | null | undefined;
6713
- value?: {
6714
- unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
6715
- measure: number;
6716
- } | null | undefined;
6717
- }>;
6718
- }, "strip", z.ZodTypeAny, {
6719
- id: string;
6720
- width: {
6721
- aliasTo?: string | undefined;
6722
- value?: {
6723
- unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
6724
- measure: number;
6725
- } | undefined;
6726
- };
6727
- }, {
6728
- id: string;
6729
- width: {
6730
- aliasTo?: string | null | undefined;
6731
- value?: {
6732
- unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
6733
- measure: number;
6734
- } | null | undefined;
6735
- };
6736
- }>;
6737
6558
  declare const PageBlockTableProperties: z.ZodObject<{
6738
6559
  showBorders: z.ZodBoolean;
6739
6560
  showHeaderRow: z.ZodBoolean;
@@ -7075,6 +6896,193 @@ declare const PageBlockFrameOrigin: z.ZodObject<{
7075
6896
  height?: number | null | undefined;
7076
6897
  }>;
7077
6898
  type PageBlockFrameOrigin = z.infer<typeof PageBlockFrameOrigin>;
6899
+ declare const PageBlockAsset: z.ZodObject<{
6900
+ type: z.ZodEnum<["image", "figmaFrame"]>;
6901
+ id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
6902
+ url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
6903
+ figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
6904
+ persistentId: string;
6905
+ sourceId: string;
6906
+ sourceFrameId: string;
6907
+ title?: string | undefined;
6908
+ description?: string | undefined;
6909
+ backgroundColor?: {
6910
+ value: string;
6911
+ } | undefined;
6912
+ origin?: {
6913
+ sourceFileName?: string | undefined;
6914
+ title?: string | undefined;
6915
+ previewUrl?: string | undefined;
6916
+ valid?: boolean | undefined;
6917
+ referenceId?: string | undefined;
6918
+ assetId?: string | undefined;
6919
+ assetScale?: number | undefined;
6920
+ width?: number | undefined;
6921
+ height?: number | undefined;
6922
+ } | undefined;
6923
+ }, z.ZodTypeDef, {
6924
+ persistentId: string;
6925
+ sourceId: string;
6926
+ sourceFrameId: string;
6927
+ title?: string | null | undefined;
6928
+ description?: string | null | undefined;
6929
+ backgroundColor?: {
6930
+ value: string;
6931
+ } | null | undefined;
6932
+ origin?: {
6933
+ sourceFileName?: string | null | undefined;
6934
+ title?: string | null | undefined;
6935
+ previewUrl?: string | null | undefined;
6936
+ valid?: boolean | null | undefined;
6937
+ referenceId?: string | null | undefined;
6938
+ assetId?: string | null | undefined;
6939
+ assetScale?: number | null | undefined;
6940
+ width?: number | null | undefined;
6941
+ height?: number | null | undefined;
6942
+ } | null | undefined;
6943
+ }>>>, {
6944
+ persistentId: string;
6945
+ sourceId: string;
6946
+ sourceFrameId: string;
6947
+ title?: string | undefined;
6948
+ description?: string | undefined;
6949
+ backgroundColor?: {
6950
+ value: string;
6951
+ } | undefined;
6952
+ origin?: {
6953
+ sourceFileName?: string | undefined;
6954
+ title?: string | undefined;
6955
+ previewUrl?: string | undefined;
6956
+ valid?: boolean | undefined;
6957
+ referenceId?: string | undefined;
6958
+ assetId?: string | undefined;
6959
+ assetScale?: number | undefined;
6960
+ width?: number | undefined;
6961
+ height?: number | undefined;
6962
+ } | undefined;
6963
+ } | undefined, {
6964
+ persistentId: string;
6965
+ sourceId: string;
6966
+ sourceFrameId: string;
6967
+ title?: string | null | undefined;
6968
+ description?: string | null | undefined;
6969
+ backgroundColor?: {
6970
+ value: string;
6971
+ } | null | undefined;
6972
+ origin?: {
6973
+ sourceFileName?: string | null | undefined;
6974
+ title?: string | null | undefined;
6975
+ previewUrl?: string | null | undefined;
6976
+ valid?: boolean | null | undefined;
6977
+ referenceId?: string | null | undefined;
6978
+ assetId?: string | null | undefined;
6979
+ assetScale?: number | null | undefined;
6980
+ width?: number | null | undefined;
6981
+ height?: number | null | undefined;
6982
+ } | null | undefined;
6983
+ } | null | undefined>;
6984
+ }, "strip", z.ZodTypeAny, {
6985
+ type: "image" | "figmaFrame";
6986
+ id?: string | undefined;
6987
+ url?: string | undefined;
6988
+ figmaFrame?: {
6989
+ persistentId: string;
6990
+ sourceId: string;
6991
+ sourceFrameId: string;
6992
+ title?: string | undefined;
6993
+ description?: string | undefined;
6994
+ backgroundColor?: {
6995
+ value: string;
6996
+ } | undefined;
6997
+ origin?: {
6998
+ sourceFileName?: string | undefined;
6999
+ title?: string | undefined;
7000
+ previewUrl?: string | undefined;
7001
+ valid?: boolean | undefined;
7002
+ referenceId?: string | undefined;
7003
+ assetId?: string | undefined;
7004
+ assetScale?: number | undefined;
7005
+ width?: number | undefined;
7006
+ height?: number | undefined;
7007
+ } | undefined;
7008
+ } | undefined;
7009
+ }, {
7010
+ type: "image" | "figmaFrame";
7011
+ id?: string | null | undefined;
7012
+ url?: string | null | undefined;
7013
+ figmaFrame?: {
7014
+ persistentId: string;
7015
+ sourceId: string;
7016
+ sourceFrameId: string;
7017
+ title?: string | null | undefined;
7018
+ description?: string | null | undefined;
7019
+ backgroundColor?: {
7020
+ value: string;
7021
+ } | null | undefined;
7022
+ origin?: {
7023
+ sourceFileName?: string | null | undefined;
7024
+ title?: string | null | undefined;
7025
+ previewUrl?: string | null | undefined;
7026
+ valid?: boolean | null | undefined;
7027
+ referenceId?: string | null | undefined;
7028
+ assetId?: string | null | undefined;
7029
+ assetScale?: number | null | undefined;
7030
+ width?: number | null | undefined;
7031
+ height?: number | null | undefined;
7032
+ } | null | undefined;
7033
+ } | null | undefined;
7034
+ }>;
7035
+ type PageBlockAsset = z.infer<typeof PageBlockAsset>;
7036
+ declare const PageBlockTableColumn: z.ZodObject<{
7037
+ id: z.ZodString;
7038
+ width: z.ZodObject<{
7039
+ aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
7040
+ value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
7041
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
7042
+ measure: number;
7043
+ }, z.ZodTypeDef, {
7044
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
7045
+ measure: number;
7046
+ }>>>, {
7047
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
7048
+ measure: number;
7049
+ } | undefined, {
7050
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
7051
+ measure: number;
7052
+ } | null | undefined>;
7053
+ }, "strip", z.ZodTypeAny, {
7054
+ aliasTo?: string | undefined;
7055
+ value?: {
7056
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
7057
+ measure: number;
7058
+ } | undefined;
7059
+ }, {
7060
+ aliasTo?: string | null | undefined;
7061
+ value?: {
7062
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
7063
+ measure: number;
7064
+ } | null | undefined;
7065
+ }>;
7066
+ }, "strip", z.ZodTypeAny, {
7067
+ id: string;
7068
+ width: {
7069
+ aliasTo?: string | undefined;
7070
+ value?: {
7071
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
7072
+ measure: number;
7073
+ } | undefined;
7074
+ };
7075
+ }, {
7076
+ id: string;
7077
+ width: {
7078
+ aliasTo?: string | null | undefined;
7079
+ value?: {
7080
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
7081
+ measure: number;
7082
+ } | null | undefined;
7083
+ };
7084
+ }>;
7085
+ type PageBlockTableColumn = z.infer<typeof PageBlockTableColumn>;
7078
7086
  declare const PageBlockBaseV1: z.ZodObject<{
7079
7087
  persistentId: z.ZodString;
7080
7088
  type: z.ZodEnum<["Text", "Heading", "Code", "UnorderedList", "OrderedList", "Quote", "Callout", "Divider", "Image", "Embed", "Link", "Shortcuts", "FigmaEmbed", "YoutubeEmbed", "StorybookEmbed", "Token", "TokenGroup", "TokenList", "Component", "ComponentGroup", "Theme", "ComponentSandbox", "Custom", "FigmaFrames", "ComponentAssets", "RenderCode", "Tabs", "TabItem", "Table", "TableRow", "TableCell"]>;
@@ -15370,6 +15378,7 @@ declare const DocumentationItemConfiguration: z.ZodObject<{
15370
15378
  };
15371
15379
  }>;
15372
15380
  type DocumentationItemConfiguration = z.infer<typeof DocumentationItemConfiguration>;
15381
+ declare const defaultDocumentationItemConfiguration: DocumentationItemConfiguration;
15373
15382
 
15374
15383
  declare const DurationUnit: z.ZodEnum<["Ms"]>;
15375
15384
  type DurationUnit = z.infer<typeof DurationUnit>;
@@ -41719,6 +41728,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
41719
41728
  } | undefined;
41720
41729
  }>>;
41721
41730
  downloadChunkSize: z.ZodOptional<z.ZodNumber>;
41731
+ figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
41722
41732
  }, "strip", z.ZodTypeAny, {
41723
41733
  type: "Figma";
41724
41734
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -41744,6 +41754,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
41744
41754
  } | undefined;
41745
41755
  } | undefined;
41746
41756
  downloadChunkSize?: number | undefined;
41757
+ figmaRenderChunkSize?: number | undefined;
41747
41758
  }, {
41748
41759
  type: "Figma";
41749
41760
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -41769,6 +41780,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
41769
41780
  } | undefined;
41770
41781
  } | undefined;
41771
41782
  downloadChunkSize?: number | undefined;
41783
+ figmaRenderChunkSize?: number | undefined;
41772
41784
  }>;
41773
41785
  }, "strip", z.ZodTypeAny, {
41774
41786
  sourceId: string;
@@ -41797,6 +41809,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
41797
41809
  } | undefined;
41798
41810
  } | undefined;
41799
41811
  downloadChunkSize?: number | undefined;
41812
+ figmaRenderChunkSize?: number | undefined;
41800
41813
  };
41801
41814
  }, {
41802
41815
  sourceId: string;
@@ -41825,6 +41838,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
41825
41838
  } | undefined;
41826
41839
  } | undefined;
41827
41840
  downloadChunkSize?: number | undefined;
41841
+ figmaRenderChunkSize?: number | undefined;
41828
41842
  };
41829
41843
  }>;
41830
41844
  type ImportedFigmaSourceData = z.infer<typeof ImportedFigmaSourceData>;
@@ -41921,6 +41935,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
41921
41935
  } | undefined;
41922
41936
  }>>;
41923
41937
  downloadChunkSize: z.ZodOptional<z.ZodNumber>;
41938
+ figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
41924
41939
  }, "strip", z.ZodTypeAny, {
41925
41940
  type: "Figma";
41926
41941
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -41946,6 +41961,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
41946
41961
  } | undefined;
41947
41962
  } | undefined;
41948
41963
  downloadChunkSize?: number | undefined;
41964
+ figmaRenderChunkSize?: number | undefined;
41949
41965
  }, {
41950
41966
  type: "Figma";
41951
41967
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -41971,6 +41987,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
41971
41987
  } | undefined;
41972
41988
  } | undefined;
41973
41989
  downloadChunkSize?: number | undefined;
41990
+ figmaRenderChunkSize?: number | undefined;
41974
41991
  }>;
41975
41992
  }, "strip", z.ZodTypeAny, {
41976
41993
  sourceId: string;
@@ -41999,6 +42016,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
41999
42016
  } | undefined;
42000
42017
  } | undefined;
42001
42018
  downloadChunkSize?: number | undefined;
42019
+ figmaRenderChunkSize?: number | undefined;
42002
42020
  };
42003
42021
  }, {
42004
42022
  sourceId: string;
@@ -42027,6 +42045,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
42027
42045
  } | undefined;
42028
42046
  } | undefined;
42029
42047
  downloadChunkSize?: number | undefined;
42048
+ figmaRenderChunkSize?: number | undefined;
42030
42049
  };
42031
42050
  }>>;
42032
42051
  }, "strip", z.ZodTypeAny, {
@@ -42061,6 +42080,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
42061
42080
  } | undefined;
42062
42081
  } | undefined;
42063
42082
  downloadChunkSize?: number | undefined;
42083
+ figmaRenderChunkSize?: number | undefined;
42064
42084
  };
42065
42085
  }>;
42066
42086
  }, {
@@ -42095,6 +42115,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
42095
42115
  } | undefined;
42096
42116
  } | undefined;
42097
42117
  downloadChunkSize?: number | undefined;
42118
+ figmaRenderChunkSize?: number | undefined;
42098
42119
  };
42099
42120
  }>;
42100
42121
  }>;
@@ -42172,6 +42193,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
42172
42193
  } | undefined;
42173
42194
  }>>;
42174
42195
  downloadChunkSize: z.ZodOptional<z.ZodNumber>;
42196
+ figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
42175
42197
  }, "strip", z.ZodTypeAny, {
42176
42198
  type: "Figma";
42177
42199
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -42197,6 +42219,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
42197
42219
  } | undefined;
42198
42220
  } | undefined;
42199
42221
  downloadChunkSize?: number | undefined;
42222
+ figmaRenderChunkSize?: number | undefined;
42200
42223
  }, {
42201
42224
  type: "Figma";
42202
42225
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -42222,6 +42245,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
42222
42245
  } | undefined;
42223
42246
  } | undefined;
42224
42247
  downloadChunkSize?: number | undefined;
42248
+ figmaRenderChunkSize?: number | undefined;
42225
42249
  }>;
42226
42250
  importMetadata: z.ZodObject<{
42227
42251
  fileData: z.ZodOptional<z.ZodObject<{
@@ -42295,6 +42319,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
42295
42319
  } | undefined;
42296
42320
  } | undefined;
42297
42321
  downloadChunkSize?: number | undefined;
42322
+ figmaRenderChunkSize?: number | undefined;
42298
42323
  };
42299
42324
  importMetadata: {
42300
42325
  fileData?: {
@@ -42334,6 +42359,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
42334
42359
  } | undefined;
42335
42360
  } | undefined;
42336
42361
  downloadChunkSize?: number | undefined;
42362
+ figmaRenderChunkSize?: number | undefined;
42337
42363
  };
42338
42364
  importMetadata: {
42339
42365
  fileData?: {
@@ -42430,6 +42456,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42430
42456
  } | undefined;
42431
42457
  }>>;
42432
42458
  downloadChunkSize: z.ZodOptional<z.ZodNumber>;
42459
+ figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
42433
42460
  }, "strip", z.ZodTypeAny, {
42434
42461
  type: "Figma";
42435
42462
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -42455,6 +42482,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42455
42482
  } | undefined;
42456
42483
  } | undefined;
42457
42484
  downloadChunkSize?: number | undefined;
42485
+ figmaRenderChunkSize?: number | undefined;
42458
42486
  }, {
42459
42487
  type: "Figma";
42460
42488
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -42480,6 +42508,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42480
42508
  } | undefined;
42481
42509
  } | undefined;
42482
42510
  downloadChunkSize?: number | undefined;
42511
+ figmaRenderChunkSize?: number | undefined;
42483
42512
  }>;
42484
42513
  }, "strip", z.ZodTypeAny, {
42485
42514
  sourceId: string;
@@ -42508,6 +42537,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42508
42537
  } | undefined;
42509
42538
  } | undefined;
42510
42539
  downloadChunkSize?: number | undefined;
42540
+ figmaRenderChunkSize?: number | undefined;
42511
42541
  };
42512
42542
  }, {
42513
42543
  sourceId: string;
@@ -42536,6 +42566,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42536
42566
  } | undefined;
42537
42567
  } | undefined;
42538
42568
  downloadChunkSize?: number | undefined;
42569
+ figmaRenderChunkSize?: number | undefined;
42539
42570
  };
42540
42571
  }>>;
42541
42572
  fileDownloadScopesByFileId: z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -42630,6 +42661,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42630
42661
  } | undefined;
42631
42662
  }>>;
42632
42663
  downloadChunkSize: z.ZodOptional<z.ZodNumber>;
42664
+ figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
42633
42665
  }, "strip", z.ZodTypeAny, {
42634
42666
  type: "Figma";
42635
42667
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -42655,6 +42687,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42655
42687
  } | undefined;
42656
42688
  } | undefined;
42657
42689
  downloadChunkSize?: number | undefined;
42690
+ figmaRenderChunkSize?: number | undefined;
42658
42691
  }, {
42659
42692
  type: "Figma";
42660
42693
  state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
@@ -42680,6 +42713,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42680
42713
  } | undefined;
42681
42714
  } | undefined;
42682
42715
  downloadChunkSize?: number | undefined;
42716
+ figmaRenderChunkSize?: number | undefined;
42683
42717
  }>;
42684
42718
  importMetadata: z.ZodObject<{
42685
42719
  fileData: z.ZodOptional<z.ZodObject<{
@@ -42753,6 +42787,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42753
42787
  } | undefined;
42754
42788
  } | undefined;
42755
42789
  downloadChunkSize?: number | undefined;
42790
+ figmaRenderChunkSize?: number | undefined;
42756
42791
  };
42757
42792
  importMetadata: {
42758
42793
  fileData?: {
@@ -42792,6 +42827,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42792
42827
  } | undefined;
42793
42828
  } | undefined;
42794
42829
  downloadChunkSize?: number | undefined;
42830
+ figmaRenderChunkSize?: number | undefined;
42795
42831
  };
42796
42832
  importMetadata: {
42797
42833
  fileData?: {
@@ -42837,6 +42873,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42837
42873
  } | undefined;
42838
42874
  } | undefined;
42839
42875
  downloadChunkSize?: number | undefined;
42876
+ figmaRenderChunkSize?: number | undefined;
42840
42877
  };
42841
42878
  }>;
42842
42879
  fileDownloadScopesByFileId: Record<string, {
@@ -42873,6 +42910,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42873
42910
  } | undefined;
42874
42911
  } | undefined;
42875
42912
  downloadChunkSize?: number | undefined;
42913
+ figmaRenderChunkSize?: number | undefined;
42876
42914
  };
42877
42915
  importMetadata: {
42878
42916
  fileData?: {
@@ -42918,6 +42956,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42918
42956
  } | undefined;
42919
42957
  } | undefined;
42920
42958
  downloadChunkSize?: number | undefined;
42959
+ figmaRenderChunkSize?: number | undefined;
42921
42960
  };
42922
42961
  }>;
42923
42962
  fileDownloadScopesByFileId: Record<string, {
@@ -42954,6 +42993,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
42954
42993
  } | undefined;
42955
42994
  } | undefined;
42956
42995
  downloadChunkSize?: number | undefined;
42996
+ figmaRenderChunkSize?: number | undefined;
42957
42997
  };
42958
42998
  importMetadata: {
42959
42999
  fileData?: {
@@ -94589,147 +94629,181 @@ type ContentLoaderPayload = z.infer<typeof ContentLoaderPayload>;
94589
94629
  declare const slugRegex: RegExp;
94590
94630
 
94591
94631
  declare const NpmRegistryAuthType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
94592
- declare const NpmRegistryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
94632
+ declare const NpmRegistryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
94633
+ declare const NpmRegistryTypeWithoutAzure: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94593
94634
  declare const NpmRegistryBasicAuthConfig: z.ZodObject<{
94635
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
94594
94636
  authType: z.ZodLiteral<"Basic">;
94595
94637
  username: z.ZodString;
94596
94638
  password: z.ZodString;
94597
94639
  }, "strip", z.ZodTypeAny, {
94640
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
94598
94641
  authType: "Basic";
94599
94642
  username: string;
94600
94643
  password: string;
94601
94644
  }, {
94645
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
94602
94646
  authType: "Basic";
94603
94647
  username: string;
94604
94648
  password: string;
94605
94649
  }>;
94606
94650
  declare const NpmRegistryBearerAuthConfig: z.ZodObject<{
94651
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94607
94652
  authType: z.ZodLiteral<"Bearer">;
94608
94653
  accessToken: z.ZodString;
94609
94654
  }, "strip", z.ZodTypeAny, {
94610
94655
  accessToken: string;
94656
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94611
94657
  authType: "Bearer";
94612
94658
  }, {
94613
94659
  accessToken: string;
94660
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94614
94661
  authType: "Bearer";
94615
94662
  }>;
94616
94663
  declare const NpmRegistryNoAuthConfig: z.ZodObject<{
94664
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94617
94665
  authType: z.ZodLiteral<"None">;
94618
94666
  }, "strip", z.ZodTypeAny, {
94667
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94619
94668
  authType: "None";
94620
94669
  }, {
94670
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94621
94671
  authType: "None";
94622
94672
  }>;
94623
94673
  declare const NpmRegistrCustomAuthConfig: z.ZodObject<{
94674
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94624
94675
  authType: z.ZodLiteral<"Custom">;
94625
94676
  authHeaderName: z.ZodString;
94626
94677
  authHeaderValue: z.ZodString;
94627
94678
  }, "strip", z.ZodTypeAny, {
94679
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94628
94680
  authType: "Custom";
94629
94681
  authHeaderName: string;
94630
94682
  authHeaderValue: string;
94631
94683
  }, {
94684
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94632
94685
  authType: "Custom";
94633
94686
  authHeaderName: string;
94634
94687
  authHeaderValue: string;
94635
94688
  }>;
94636
94689
  declare const NpmRegistryAuthConfig: z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
94690
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
94637
94691
  authType: z.ZodLiteral<"Basic">;
94638
94692
  username: z.ZodString;
94639
94693
  password: z.ZodString;
94640
94694
  }, "strip", z.ZodTypeAny, {
94695
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
94641
94696
  authType: "Basic";
94642
94697
  username: string;
94643
94698
  password: string;
94644
94699
  }, {
94700
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
94645
94701
  authType: "Basic";
94646
94702
  username: string;
94647
94703
  password: string;
94648
94704
  }>, z.ZodObject<{
94705
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94649
94706
  authType: z.ZodLiteral<"Bearer">;
94650
94707
  accessToken: z.ZodString;
94651
94708
  }, "strip", z.ZodTypeAny, {
94652
94709
  accessToken: string;
94710
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94653
94711
  authType: "Bearer";
94654
94712
  }, {
94655
94713
  accessToken: string;
94714
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94656
94715
  authType: "Bearer";
94657
94716
  }>, z.ZodObject<{
94717
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94658
94718
  authType: z.ZodLiteral<"None">;
94659
94719
  }, "strip", z.ZodTypeAny, {
94720
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94660
94721
  authType: "None";
94661
94722
  }, {
94723
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94662
94724
  authType: "None";
94663
94725
  }>, z.ZodObject<{
94726
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94664
94727
  authType: z.ZodLiteral<"Custom">;
94665
94728
  authHeaderName: z.ZodString;
94666
94729
  authHeaderValue: z.ZodString;
94667
94730
  }, "strip", z.ZodTypeAny, {
94731
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94668
94732
  authType: "Custom";
94669
94733
  authHeaderName: string;
94670
94734
  authHeaderValue: string;
94671
94735
  }, {
94736
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94672
94737
  authType: "Custom";
94673
94738
  authHeaderName: string;
94674
94739
  authHeaderValue: string;
94675
94740
  }>]>;
94676
94741
  declare const NpmRegistryConfig: z.ZodIntersection<z.ZodObject<{
94677
- registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
94678
94742
  enabledScopes: z.ZodArray<z.ZodString, "many">;
94679
94743
  customRegistryUrl: z.ZodOptional<z.ZodString>;
94680
94744
  bypassProxy: z.ZodDefault<z.ZodBoolean>;
94681
94745
  npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
94682
94746
  npmProxyVersion: z.ZodOptional<z.ZodNumber>;
94683
94747
  }, "strip", z.ZodTypeAny, {
94684
- registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
94685
94748
  enabledScopes: string[];
94686
94749
  bypassProxy: boolean;
94687
94750
  customRegistryUrl?: string | undefined;
94688
94751
  npmProxyRegistryConfigId?: string | undefined;
94689
94752
  npmProxyVersion?: number | undefined;
94690
94753
  }, {
94691
- registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
94692
94754
  enabledScopes: string[];
94693
94755
  customRegistryUrl?: string | undefined;
94694
94756
  bypassProxy?: boolean | undefined;
94695
94757
  npmProxyRegistryConfigId?: string | undefined;
94696
94758
  npmProxyVersion?: number | undefined;
94697
94759
  }>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
94760
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
94698
94761
  authType: z.ZodLiteral<"Basic">;
94699
94762
  username: z.ZodString;
94700
94763
  password: z.ZodString;
94701
94764
  }, "strip", z.ZodTypeAny, {
94765
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
94702
94766
  authType: "Basic";
94703
94767
  username: string;
94704
94768
  password: string;
94705
94769
  }, {
94770
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
94706
94771
  authType: "Basic";
94707
94772
  username: string;
94708
94773
  password: string;
94709
94774
  }>, z.ZodObject<{
94775
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94710
94776
  authType: z.ZodLiteral<"Bearer">;
94711
94777
  accessToken: z.ZodString;
94712
94778
  }, "strip", z.ZodTypeAny, {
94713
94779
  accessToken: string;
94780
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94714
94781
  authType: "Bearer";
94715
94782
  }, {
94716
94783
  accessToken: string;
94784
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94717
94785
  authType: "Bearer";
94718
94786
  }>, z.ZodObject<{
94787
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94719
94788
  authType: z.ZodLiteral<"None">;
94720
94789
  }, "strip", z.ZodTypeAny, {
94790
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94721
94791
  authType: "None";
94722
94792
  }, {
94793
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94723
94794
  authType: "None";
94724
94795
  }>, z.ZodObject<{
94796
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
94725
94797
  authType: z.ZodLiteral<"Custom">;
94726
94798
  authHeaderName: z.ZodString;
94727
94799
  authHeaderValue: z.ZodString;
94728
94800
  }, "strip", z.ZodTypeAny, {
94801
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94729
94802
  authType: "Custom";
94730
94803
  authHeaderName: string;
94731
94804
  authHeaderValue: string;
94732
94805
  }, {
94806
+ registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
94733
94807
  authType: "Custom";
94734
94808
  authHeaderName: string;
94735
94809
  authHeaderValue: string;
@@ -98158,4 +98232,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
98158
98232
  }>;
98159
98233
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
98160
98234
 
98161
- export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BasePulsarProperty, 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, 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, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, 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, ExportJob, ExportJobStatus, Exporter, ExporterDetails, 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, 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, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyOptions, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemImageReference, 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, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, 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, PulsarContributionBlock, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarPropertyType, 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, 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, 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, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
98235
+ export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BasePulsarProperty, 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, 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, DocumentationItemConfiguration, DocumentationItemHeader, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, 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, ExportJob, ExportJobStatus, Exporter, ExporterDetails, 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, 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, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyOptions, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemImageReference, 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, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, 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, PulsarContributionBlock, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarPropertyType, 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, 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, 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, colorValueFormatDescription, colorValueRegex, defaultDocumentationItemConfiguration, defaultDocumentationItemHeader, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, slugRegex, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };