@supernova-studio/model 1.9.1 → 1.9.3

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
@@ -173,7 +173,7 @@ declare const ContentLoaderPayload: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
173
173
  }>]>;
174
174
  type ContentLoaderPayload = z.infer<typeof ContentLoaderPayload>;
175
175
 
176
- type SupernovaExceptionType = "AccessDenied" | "ResourceNotFound" | "WrongFormat" | "TooMuchWork" | "Timeout" | "Conflict" | "NotImplemented" | "BadRequest" | "WrongActionOrder" | "InvalidOperation" | "UnexpectedError" | "IPRestricted" | "PlanRestricted" | "MissingWorkspacePermission" | "MissingExporterPermission" | "MissingIntegration" | "MissingIntegrationAccess" | "NoAccess" | "MissingCredentials" | "ValidationError" | "ThirdPartyError" | "CodeMismatch" | "PasswordMismatch" | "PasswordSameAsUsername";
176
+ type SupernovaExceptionType = "AccessDenied" | "ResourceNotFound" | "WrongFormat" | "TooMuchWork" | "Timeout" | "Conflict" | "NotImplemented" | "BadRequest" | "WrongActionOrder" | "InvalidOperation" | "UnexpectedError" | "IPRestricted" | "PlanRestricted" | "MissingWorkspacePermission" | "MissingExporterPermission" | "MissingIntegration" | "MissingIntegrationAccess" | "NoAccess" | "MissingCredentials" | "ValidationError" | "ThirdPartyError";
177
177
  declare class SupernovaException extends Error {
178
178
  readonly type: SupernovaExceptionType;
179
179
  static wrongFormat(message?: string): SupernovaException;
@@ -197,9 +197,6 @@ declare class SupernovaException extends Error {
197
197
  static missingCredentials(message?: string): SupernovaException;
198
198
  static thirdPartyError(message?: string): SupernovaException;
199
199
  static badRequest(message?: string): SupernovaException;
200
- static codeMismatch(message?: string): SupernovaException;
201
- static passwordMismatch(message?: string): SupernovaException;
202
- static passwordSameAsUsername(message?: string): SupernovaException;
203
200
  constructor(type: SupernovaExceptionType, message?: string);
204
201
  }
205
202
 
@@ -309,6 +306,48 @@ declare const PluginOAuthRequestSchema: z.ZodObject<{
309
306
  }>;
310
307
  type PluginOAuthRequest = z.infer<typeof PluginOAuthRequestSchema>;
311
308
 
309
+ declare const AuthV2Request: z.ZodObject<{
310
+ code: z.ZodOptional<z.ZodString>;
311
+ state: z.ZodString;
312
+ codeChallenge: z.ZodString;
313
+ codeChallengeMethod: z.ZodString;
314
+ redirectUri: z.ZodString;
315
+ sessionId: z.ZodString;
316
+ }, "strip", z.ZodTypeAny, {
317
+ state: string;
318
+ codeChallenge: string;
319
+ codeChallengeMethod: string;
320
+ redirectUri: string;
321
+ sessionId: string;
322
+ code?: string | undefined;
323
+ }, {
324
+ state: string;
325
+ codeChallenge: string;
326
+ codeChallengeMethod: string;
327
+ redirectUri: string;
328
+ sessionId: string;
329
+ code?: string | undefined;
330
+ }>;
331
+ type AuthV2Request = z.infer<typeof AuthV2Request>;
332
+
333
+ declare const AuthV2Session: z.ZodObject<{
334
+ id: z.ZodString;
335
+ refreshToken: z.ZodString;
336
+ expiresAt: z.ZodDate;
337
+ createdAt: z.ZodDate;
338
+ }, "strip", z.ZodTypeAny, {
339
+ id: string;
340
+ createdAt: Date;
341
+ refreshToken: string;
342
+ expiresAt: Date;
343
+ }, {
344
+ id: string;
345
+ createdAt: Date;
346
+ refreshToken: string;
347
+ expiresAt: Date;
348
+ }>;
349
+ type AuthV2Session = z.infer<typeof AuthV2Session>;
350
+
312
351
  declare const CardSchema: z.ZodObject<{
313
352
  cardId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
314
353
  last4: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -7900,6 +7939,9 @@ declare const DesignSystemDump: z.ZodObject<{
7900
7939
  }>]>>>;
7901
7940
  originKey: z.ZodOptional<z.ZodString>;
7902
7941
  createdAt: z.ZodOptional<z.ZodDate>;
7942
+ pendingUpload: z.ZodOptional<z.ZodBoolean>;
7943
+ size: z.ZodOptional<z.ZodNumber>;
7944
+ checksum: z.ZodOptional<z.ZodString>;
7903
7945
  }, "strip", z.ZodTypeAny, {
7904
7946
  type: "Image" | "Font";
7905
7947
  id: string;
@@ -7918,6 +7960,9 @@ declare const DesignSystemDump: z.ZodObject<{
7918
7960
  } | null | undefined;
7919
7961
  originKey?: string | undefined;
7920
7962
  originalFileName?: string | null | undefined;
7963
+ pendingUpload?: boolean | undefined;
7964
+ size?: number | undefined;
7965
+ checksum?: string | undefined;
7921
7966
  }, {
7922
7967
  type: "Image" | "Font";
7923
7968
  id: string;
@@ -7936,6 +7981,9 @@ declare const DesignSystemDump: z.ZodObject<{
7936
7981
  } | null | undefined;
7937
7982
  originKey?: string | undefined;
7938
7983
  originalFileName?: string | null | undefined;
7984
+ pendingUpload?: boolean | undefined;
7985
+ size?: number | undefined;
7986
+ checksum?: string | undefined;
7939
7987
  }>, "many">;
7940
7988
  }, "strip", z.ZodTypeAny, {
7941
7989
  files: {
@@ -7956,6 +8004,9 @@ declare const DesignSystemDump: z.ZodObject<{
7956
8004
  } | null | undefined;
7957
8005
  originKey?: string | undefined;
7958
8006
  originalFileName?: string | null | undefined;
8007
+ pendingUpload?: boolean | undefined;
8008
+ size?: number | undefined;
8009
+ checksum?: string | undefined;
7959
8010
  }[];
7960
8011
  designSystem: {
7961
8012
  id: string;
@@ -8404,6 +8455,9 @@ declare const DesignSystemDump: z.ZodObject<{
8404
8455
  } | null | undefined;
8405
8456
  originKey?: string | undefined;
8406
8457
  originalFileName?: string | null | undefined;
8458
+ pendingUpload?: boolean | undefined;
8459
+ size?: number | undefined;
8460
+ checksum?: string | undefined;
8407
8461
  }[];
8408
8462
  designSystem: {
8409
8463
  id: string;
@@ -17011,6 +17065,9 @@ declare const UserDump: z.ZodObject<{
17011
17065
  }>]>>>;
17012
17066
  originKey: z.ZodOptional<z.ZodString>;
17013
17067
  createdAt: z.ZodOptional<z.ZodDate>;
17068
+ pendingUpload: z.ZodOptional<z.ZodBoolean>;
17069
+ size: z.ZodOptional<z.ZodNumber>;
17070
+ checksum: z.ZodOptional<z.ZodString>;
17014
17071
  }, "strip", z.ZodTypeAny, {
17015
17072
  type: "Image" | "Font";
17016
17073
  id: string;
@@ -17029,6 +17086,9 @@ declare const UserDump: z.ZodObject<{
17029
17086
  } | null | undefined;
17030
17087
  originKey?: string | undefined;
17031
17088
  originalFileName?: string | null | undefined;
17089
+ pendingUpload?: boolean | undefined;
17090
+ size?: number | undefined;
17091
+ checksum?: string | undefined;
17032
17092
  }, {
17033
17093
  type: "Image" | "Font";
17034
17094
  id: string;
@@ -17047,6 +17107,9 @@ declare const UserDump: z.ZodObject<{
17047
17107
  } | null | undefined;
17048
17108
  originKey?: string | undefined;
17049
17109
  originalFileName?: string | null | undefined;
17110
+ pendingUpload?: boolean | undefined;
17111
+ size?: number | undefined;
17112
+ checksum?: string | undefined;
17050
17113
  }>, "many">;
17051
17114
  }, "strip", z.ZodTypeAny, {
17052
17115
  files: {
@@ -17067,6 +17130,9 @@ declare const UserDump: z.ZodObject<{
17067
17130
  } | null | undefined;
17068
17131
  originKey?: string | undefined;
17069
17132
  originalFileName?: string | null | undefined;
17133
+ pendingUpload?: boolean | undefined;
17134
+ size?: number | undefined;
17135
+ checksum?: string | undefined;
17070
17136
  }[];
17071
17137
  designSystem: {
17072
17138
  id: string;
@@ -17515,6 +17581,9 @@ declare const UserDump: z.ZodObject<{
17515
17581
  } | null | undefined;
17516
17582
  originKey?: string | undefined;
17517
17583
  originalFileName?: string | null | undefined;
17584
+ pendingUpload?: boolean | undefined;
17585
+ size?: number | undefined;
17586
+ checksum?: string | undefined;
17518
17587
  }[];
17519
17588
  designSystem: {
17520
17589
  id: string;
@@ -20430,9 +20499,9 @@ declare const UserDump: z.ZodObject<{
20430
20499
  avatar?: string | undefined;
20431
20500
  } | undefined;
20432
20501
  username?: string | undefined;
20502
+ refreshToken?: string | undefined;
20433
20503
  expiresAt?: Date | undefined;
20434
20504
  customUrl?: string | undefined;
20435
- refreshToken?: string | undefined;
20436
20505
  tokenName?: string | undefined;
20437
20506
  refreshedAt?: Date | undefined;
20438
20507
  appInstallationId?: string | undefined;
@@ -20460,9 +20529,9 @@ declare const UserDump: z.ZodObject<{
20460
20529
  avatar?: string | undefined;
20461
20530
  } | undefined;
20462
20531
  username?: string | undefined;
20532
+ refreshToken?: string | undefined;
20463
20533
  expiresAt?: Date | undefined;
20464
20534
  customUrl?: string | undefined;
20465
- refreshToken?: string | undefined;
20466
20535
  tokenName?: string | undefined;
20467
20536
  refreshedAt?: Date | undefined;
20468
20537
  appInstallationId?: string | undefined;
@@ -20496,9 +20565,9 @@ declare const UserDump: z.ZodObject<{
20496
20565
  avatar?: string | undefined;
20497
20566
  } | undefined;
20498
20567
  username?: string | undefined;
20568
+ refreshToken?: string | undefined;
20499
20569
  expiresAt?: Date | undefined;
20500
20570
  customUrl?: string | undefined;
20501
- refreshToken?: string | undefined;
20502
20571
  tokenName?: string | undefined;
20503
20572
  refreshedAt?: Date | undefined;
20504
20573
  appInstallationId?: string | undefined;
@@ -20532,9 +20601,9 @@ declare const UserDump: z.ZodObject<{
20532
20601
  avatar?: string | undefined;
20533
20602
  } | undefined;
20534
20603
  username?: string | undefined;
20604
+ refreshToken?: string | undefined;
20535
20605
  expiresAt?: Date | undefined;
20536
20606
  customUrl?: string | undefined;
20537
- refreshToken?: string | undefined;
20538
20607
  tokenName?: string | undefined;
20539
20608
  refreshedAt?: Date | undefined;
20540
20609
  appInstallationId?: string | undefined;
@@ -20783,6 +20852,9 @@ declare const UserDump: z.ZodObject<{
20783
20852
  } | null | undefined;
20784
20853
  originKey?: string | undefined;
20785
20854
  originalFileName?: string | null | undefined;
20855
+ pendingUpload?: boolean | undefined;
20856
+ size?: number | undefined;
20857
+ checksum?: string | undefined;
20786
20858
  }[];
20787
20859
  designSystem: {
20788
20860
  id: string;
@@ -21532,9 +21604,9 @@ declare const UserDump: z.ZodObject<{
21532
21604
  avatar?: string | undefined;
21533
21605
  } | undefined;
21534
21606
  username?: string | undefined;
21607
+ refreshToken?: string | undefined;
21535
21608
  expiresAt?: Date | undefined;
21536
21609
  customUrl?: string | undefined;
21537
- refreshToken?: string | undefined;
21538
21610
  tokenName?: string | undefined;
21539
21611
  refreshedAt?: Date | undefined;
21540
21612
  appInstallationId?: string | undefined;
@@ -21783,6 +21855,9 @@ declare const UserDump: z.ZodObject<{
21783
21855
  } | null | undefined;
21784
21856
  originKey?: string | undefined;
21785
21857
  originalFileName?: string | null | undefined;
21858
+ pendingUpload?: boolean | undefined;
21859
+ size?: number | undefined;
21860
+ checksum?: string | undefined;
21786
21861
  }[];
21787
21862
  designSystem: {
21788
21863
  id: string;
@@ -22532,9 +22607,9 @@ declare const UserDump: z.ZodObject<{
22532
22607
  avatar?: string | undefined;
22533
22608
  } | undefined;
22534
22609
  username?: string | undefined;
22610
+ refreshToken?: string | undefined;
22535
22611
  expiresAt?: Date | undefined;
22536
22612
  customUrl?: string | undefined;
22537
- refreshToken?: string | undefined;
22538
22613
  tokenName?: string | undefined;
22539
22614
  refreshedAt?: Date | undefined;
22540
22615
  appInstallationId?: string | undefined;
@@ -22785,6 +22860,9 @@ declare const UserDump: z.ZodObject<{
22785
22860
  } | null | undefined;
22786
22861
  originKey?: string | undefined;
22787
22862
  originalFileName?: string | null | undefined;
22863
+ pendingUpload?: boolean | undefined;
22864
+ size?: number | undefined;
22865
+ checksum?: string | undefined;
22788
22866
  }[];
22789
22867
  designSystem: {
22790
22868
  id: string;
@@ -23527,9 +23605,9 @@ declare const UserDump: z.ZodObject<{
23527
23605
  avatar?: string | undefined;
23528
23606
  } | undefined;
23529
23607
  username?: string | undefined;
23608
+ refreshToken?: string | undefined;
23530
23609
  expiresAt?: Date | undefined;
23531
23610
  customUrl?: string | undefined;
23532
- refreshToken?: string | undefined;
23533
23611
  tokenName?: string | undefined;
23534
23612
  refreshedAt?: Date | undefined;
23535
23613
  appInstallationId?: string | undefined;
@@ -23817,6 +23895,9 @@ declare const UserDump: z.ZodObject<{
23817
23895
  } | null | undefined;
23818
23896
  originKey?: string | undefined;
23819
23897
  originalFileName?: string | null | undefined;
23898
+ pendingUpload?: boolean | undefined;
23899
+ size?: number | undefined;
23900
+ checksum?: string | undefined;
23820
23901
  }[];
23821
23902
  designSystem: {
23822
23903
  id: string;
@@ -24559,9 +24640,9 @@ declare const UserDump: z.ZodObject<{
24559
24640
  avatar?: string | undefined;
24560
24641
  } | undefined;
24561
24642
  username?: string | undefined;
24643
+ refreshToken?: string | undefined;
24562
24644
  expiresAt?: Date | undefined;
24563
24645
  customUrl?: string | undefined;
24564
- refreshToken?: string | undefined;
24565
24646
  tokenName?: string | undefined;
24566
24647
  refreshedAt?: Date | undefined;
24567
24648
  appInstallationId?: string | undefined;
@@ -29425,6 +29506,9 @@ declare const WorkspaceDump: z.ZodObject<{
29425
29506
  }>]>>>;
29426
29507
  originKey: z.ZodOptional<z.ZodString>;
29427
29508
  createdAt: z.ZodOptional<z.ZodDate>;
29509
+ pendingUpload: z.ZodOptional<z.ZodBoolean>;
29510
+ size: z.ZodOptional<z.ZodNumber>;
29511
+ checksum: z.ZodOptional<z.ZodString>;
29428
29512
  }, "strip", z.ZodTypeAny, {
29429
29513
  type: "Image" | "Font";
29430
29514
  id: string;
@@ -29443,6 +29527,9 @@ declare const WorkspaceDump: z.ZodObject<{
29443
29527
  } | null | undefined;
29444
29528
  originKey?: string | undefined;
29445
29529
  originalFileName?: string | null | undefined;
29530
+ pendingUpload?: boolean | undefined;
29531
+ size?: number | undefined;
29532
+ checksum?: string | undefined;
29446
29533
  }, {
29447
29534
  type: "Image" | "Font";
29448
29535
  id: string;
@@ -29461,6 +29548,9 @@ declare const WorkspaceDump: z.ZodObject<{
29461
29548
  } | null | undefined;
29462
29549
  originKey?: string | undefined;
29463
29550
  originalFileName?: string | null | undefined;
29551
+ pendingUpload?: boolean | undefined;
29552
+ size?: number | undefined;
29553
+ checksum?: string | undefined;
29464
29554
  }>, "many">;
29465
29555
  }, "strip", z.ZodTypeAny, {
29466
29556
  files: {
@@ -29481,6 +29571,9 @@ declare const WorkspaceDump: z.ZodObject<{
29481
29571
  } | null | undefined;
29482
29572
  originKey?: string | undefined;
29483
29573
  originalFileName?: string | null | undefined;
29574
+ pendingUpload?: boolean | undefined;
29575
+ size?: number | undefined;
29576
+ checksum?: string | undefined;
29484
29577
  }[];
29485
29578
  designSystem: {
29486
29579
  id: string;
@@ -29929,6 +30022,9 @@ declare const WorkspaceDump: z.ZodObject<{
29929
30022
  } | null | undefined;
29930
30023
  originKey?: string | undefined;
29931
30024
  originalFileName?: string | null | undefined;
30025
+ pendingUpload?: boolean | undefined;
30026
+ size?: number | undefined;
30027
+ checksum?: string | undefined;
29932
30028
  }[];
29933
30029
  designSystem: {
29934
30030
  id: string;
@@ -32844,9 +32940,9 @@ declare const WorkspaceDump: z.ZodObject<{
32844
32940
  avatar?: string | undefined;
32845
32941
  } | undefined;
32846
32942
  username?: string | undefined;
32943
+ refreshToken?: string | undefined;
32847
32944
  expiresAt?: Date | undefined;
32848
32945
  customUrl?: string | undefined;
32849
- refreshToken?: string | undefined;
32850
32946
  tokenName?: string | undefined;
32851
32947
  refreshedAt?: Date | undefined;
32852
32948
  appInstallationId?: string | undefined;
@@ -32874,9 +32970,9 @@ declare const WorkspaceDump: z.ZodObject<{
32874
32970
  avatar?: string | undefined;
32875
32971
  } | undefined;
32876
32972
  username?: string | undefined;
32973
+ refreshToken?: string | undefined;
32877
32974
  expiresAt?: Date | undefined;
32878
32975
  customUrl?: string | undefined;
32879
- refreshToken?: string | undefined;
32880
32976
  tokenName?: string | undefined;
32881
32977
  refreshedAt?: Date | undefined;
32882
32978
  appInstallationId?: string | undefined;
@@ -32910,9 +33006,9 @@ declare const WorkspaceDump: z.ZodObject<{
32910
33006
  avatar?: string | undefined;
32911
33007
  } | undefined;
32912
33008
  username?: string | undefined;
33009
+ refreshToken?: string | undefined;
32913
33010
  expiresAt?: Date | undefined;
32914
33011
  customUrl?: string | undefined;
32915
- refreshToken?: string | undefined;
32916
33012
  tokenName?: string | undefined;
32917
33013
  refreshedAt?: Date | undefined;
32918
33014
  appInstallationId?: string | undefined;
@@ -32946,9 +33042,9 @@ declare const WorkspaceDump: z.ZodObject<{
32946
33042
  avatar?: string | undefined;
32947
33043
  } | undefined;
32948
33044
  username?: string | undefined;
33045
+ refreshToken?: string | undefined;
32949
33046
  expiresAt?: Date | undefined;
32950
33047
  customUrl?: string | undefined;
32951
- refreshToken?: string | undefined;
32952
33048
  tokenName?: string | undefined;
32953
33049
  refreshedAt?: Date | undefined;
32954
33050
  appInstallationId?: string | undefined;
@@ -33197,6 +33293,9 @@ declare const WorkspaceDump: z.ZodObject<{
33197
33293
  } | null | undefined;
33198
33294
  originKey?: string | undefined;
33199
33295
  originalFileName?: string | null | undefined;
33296
+ pendingUpload?: boolean | undefined;
33297
+ size?: number | undefined;
33298
+ checksum?: string | undefined;
33200
33299
  }[];
33201
33300
  designSystem: {
33202
33301
  id: string;
@@ -33946,9 +34045,9 @@ declare const WorkspaceDump: z.ZodObject<{
33946
34045
  avatar?: string | undefined;
33947
34046
  } | undefined;
33948
34047
  username?: string | undefined;
34048
+ refreshToken?: string | undefined;
33949
34049
  expiresAt?: Date | undefined;
33950
34050
  customUrl?: string | undefined;
33951
- refreshToken?: string | undefined;
33952
34051
  tokenName?: string | undefined;
33953
34052
  refreshedAt?: Date | undefined;
33954
34053
  appInstallationId?: string | undefined;
@@ -34197,6 +34296,9 @@ declare const WorkspaceDump: z.ZodObject<{
34197
34296
  } | null | undefined;
34198
34297
  originKey?: string | undefined;
34199
34298
  originalFileName?: string | null | undefined;
34299
+ pendingUpload?: boolean | undefined;
34300
+ size?: number | undefined;
34301
+ checksum?: string | undefined;
34200
34302
  }[];
34201
34303
  designSystem: {
34202
34304
  id: string;
@@ -34946,9 +35048,9 @@ declare const WorkspaceDump: z.ZodObject<{
34946
35048
  avatar?: string | undefined;
34947
35049
  } | undefined;
34948
35050
  username?: string | undefined;
35051
+ refreshToken?: string | undefined;
34949
35052
  expiresAt?: Date | undefined;
34950
35053
  customUrl?: string | undefined;
34951
- refreshToken?: string | undefined;
34952
35054
  tokenName?: string | undefined;
34953
35055
  refreshedAt?: Date | undefined;
34954
35056
  appInstallationId?: string | undefined;
@@ -35439,13 +35541,13 @@ declare const AssetDynamoRecord: z.ZodObject<{
35439
35541
  }, "strip", z.ZodTypeAny, {
35440
35542
  path: string;
35441
35543
  id: string;
35442
- designSystemId: string;
35443
35544
  expiresAt: number;
35545
+ designSystemId: string;
35444
35546
  }, {
35445
35547
  path: string;
35446
35548
  id: string;
35447
- designSystemId: string;
35448
35549
  expiresAt: number;
35550
+ designSystemId: string;
35449
35551
  }>;
35450
35552
  type AssetDynamoRecord = z.infer<typeof AssetDynamoRecord>;
35451
35553
 
@@ -35569,6 +35671,9 @@ declare const Asset: z.ZodObject<{
35569
35671
  }>]>>>;
35570
35672
  originKey: z.ZodOptional<z.ZodString>;
35571
35673
  createdAt: z.ZodOptional<z.ZodDate>;
35674
+ pendingUpload: z.ZodOptional<z.ZodBoolean>;
35675
+ size: z.ZodOptional<z.ZodNumber>;
35676
+ checksum: z.ZodOptional<z.ZodString>;
35572
35677
  }, "strip", z.ZodTypeAny, {
35573
35678
  type: "Image" | "Font";
35574
35679
  id: string;
@@ -35587,6 +35692,9 @@ declare const Asset: z.ZodObject<{
35587
35692
  } | null | undefined;
35588
35693
  originKey?: string | undefined;
35589
35694
  originalFileName?: string | null | undefined;
35695
+ pendingUpload?: boolean | undefined;
35696
+ size?: number | undefined;
35697
+ checksum?: string | undefined;
35590
35698
  }, {
35591
35699
  type: "Image" | "Font";
35592
35700
  id: string;
@@ -35605,6 +35713,9 @@ declare const Asset: z.ZodObject<{
35605
35713
  } | null | undefined;
35606
35714
  originKey?: string | undefined;
35607
35715
  originalFileName?: string | null | undefined;
35716
+ pendingUpload?: boolean | undefined;
35717
+ size?: number | undefined;
35718
+ checksum?: string | undefined;
35608
35719
  }>;
35609
35720
  type Asset = z.infer<typeof Asset>;
35610
35721
  declare const ResolvedAsset: z.ZodObject<z.objectUtil.extendShape<{
@@ -35647,6 +35758,9 @@ declare const ResolvedAsset: z.ZodObject<z.objectUtil.extendShape<{
35647
35758
  }>]>>>;
35648
35759
  originKey: z.ZodOptional<z.ZodString>;
35649
35760
  createdAt: z.ZodOptional<z.ZodDate>;
35761
+ pendingUpload: z.ZodOptional<z.ZodBoolean>;
35762
+ size: z.ZodOptional<z.ZodNumber>;
35763
+ checksum: z.ZodOptional<z.ZodString>;
35650
35764
  }, {
35651
35765
  url: z.ZodString;
35652
35766
  }>, "strip", z.ZodTypeAny, {
@@ -35668,6 +35782,9 @@ declare const ResolvedAsset: z.ZodObject<z.objectUtil.extendShape<{
35668
35782
  } | null | undefined;
35669
35783
  originKey?: string | undefined;
35670
35784
  originalFileName?: string | null | undefined;
35785
+ pendingUpload?: boolean | undefined;
35786
+ size?: number | undefined;
35787
+ checksum?: string | undefined;
35671
35788
  }, {
35672
35789
  type: "Image" | "Font";
35673
35790
  id: string;
@@ -35687,6 +35804,9 @@ declare const ResolvedAsset: z.ZodObject<z.objectUtil.extendShape<{
35687
35804
  } | null | undefined;
35688
35805
  originKey?: string | undefined;
35689
35806
  originalFileName?: string | null | undefined;
35807
+ pendingUpload?: boolean | undefined;
35808
+ size?: number | undefined;
35809
+ checksum?: string | undefined;
35690
35810
  }>;
35691
35811
  type ResolvedAsset = z.infer<typeof ResolvedAsset>;
35692
35812
  type ImportedAsset = OmitStrict<Asset, "originKey"> & {
@@ -42121,6 +42241,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
42121
42241
  } | null | undefined;
42122
42242
  url?: string | null | undefined;
42123
42243
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
42244
+ size?: {
42245
+ width?: number | null | undefined;
42246
+ height?: number | null | undefined;
42247
+ } | null | undefined;
42124
42248
  backgroundColor?: {
42125
42249
  value: string;
42126
42250
  } | null | undefined;
@@ -42278,10 +42402,6 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
42278
42402
  assetScale?: number | null | undefined;
42279
42403
  } | null | undefined;
42280
42404
  }[] | null | undefined;
42281
- size?: {
42282
- width?: number | null | undefined;
42283
- height?: number | null | undefined;
42284
- } | null | undefined;
42285
42405
  renderCodeProperties?: {
42286
42406
  showCode: boolean;
42287
42407
  showControls?: boolean | undefined;
@@ -42402,6 +42522,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
42402
42522
  } | null | undefined;
42403
42523
  url?: string | null | undefined;
42404
42524
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
42525
+ size?: {
42526
+ width?: number | null | undefined;
42527
+ height?: number | null | undefined;
42528
+ } | null | undefined;
42405
42529
  backgroundColor?: {
42406
42530
  value: string;
42407
42531
  } | null | undefined;
@@ -42559,10 +42683,6 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
42559
42683
  assetScale?: number | null | undefined;
42560
42684
  } | null | undefined;
42561
42685
  }[] | null | undefined;
42562
- size?: {
42563
- width?: number | null | undefined;
42564
- height?: number | null | undefined;
42565
- } | null | undefined;
42566
42686
  renderCodeProperties?: {
42567
42687
  showCode: boolean;
42568
42688
  showControls?: boolean | undefined;
@@ -42751,6 +42871,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
42751
42871
  } | null | undefined;
42752
42872
  url?: string | null | undefined;
42753
42873
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
42874
+ size?: {
42875
+ width?: number | null | undefined;
42876
+ height?: number | null | undefined;
42877
+ } | null | undefined;
42754
42878
  backgroundColor?: {
42755
42879
  value: string;
42756
42880
  } | null | undefined;
@@ -42908,10 +43032,6 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
42908
43032
  assetScale?: number | null | undefined;
42909
43033
  } | null | undefined;
42910
43034
  }[] | null | undefined;
42911
- size?: {
42912
- width?: number | null | undefined;
42913
- height?: number | null | undefined;
42914
- } | null | undefined;
42915
43035
  renderCodeProperties?: {
42916
43036
  showCode: boolean;
42917
43037
  showControls?: boolean | undefined;
@@ -43032,6 +43152,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
43032
43152
  } | null | undefined;
43033
43153
  url?: string | null | undefined;
43034
43154
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
43155
+ size?: {
43156
+ width?: number | null | undefined;
43157
+ height?: number | null | undefined;
43158
+ } | null | undefined;
43035
43159
  backgroundColor?: {
43036
43160
  value: string;
43037
43161
  } | null | undefined;
@@ -43189,10 +43313,6 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
43189
43313
  assetScale?: number | null | undefined;
43190
43314
  } | null | undefined;
43191
43315
  }[] | null | undefined;
43192
- size?: {
43193
- width?: number | null | undefined;
43194
- height?: number | null | undefined;
43195
- } | null | undefined;
43196
43316
  renderCodeProperties?: {
43197
43317
  showCode: boolean;
43198
43318
  showControls?: boolean | undefined;
@@ -43399,6 +43519,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
43399
43519
  } | null | undefined;
43400
43520
  url?: string | null | undefined;
43401
43521
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
43522
+ size?: {
43523
+ width?: number | null | undefined;
43524
+ height?: number | null | undefined;
43525
+ } | null | undefined;
43402
43526
  backgroundColor?: {
43403
43527
  value: string;
43404
43528
  } | null | undefined;
@@ -43556,10 +43680,6 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
43556
43680
  assetScale?: number | null | undefined;
43557
43681
  } | null | undefined;
43558
43682
  }[] | null | undefined;
43559
- size?: {
43560
- width?: number | null | undefined;
43561
- height?: number | null | undefined;
43562
- } | null | undefined;
43563
43683
  renderCodeProperties?: {
43564
43684
  showCode: boolean;
43565
43685
  showControls?: boolean | undefined;
@@ -43680,6 +43800,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
43680
43800
  } | null | undefined;
43681
43801
  url?: string | null | undefined;
43682
43802
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
43803
+ size?: {
43804
+ width?: number | null | undefined;
43805
+ height?: number | null | undefined;
43806
+ } | null | undefined;
43683
43807
  backgroundColor?: {
43684
43808
  value: string;
43685
43809
  } | null | undefined;
@@ -43837,10 +43961,6 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
43837
43961
  assetScale?: number | null | undefined;
43838
43962
  } | null | undefined;
43839
43963
  }[] | null | undefined;
43840
- size?: {
43841
- width?: number | null | undefined;
43842
- height?: number | null | undefined;
43843
- } | null | undefined;
43844
43964
  renderCodeProperties?: {
43845
43965
  showCode: boolean;
43846
43966
  showControls?: boolean | undefined;
@@ -44077,6 +44197,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
44077
44197
  } | null | undefined;
44078
44198
  url?: string | null | undefined;
44079
44199
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
44200
+ size?: {
44201
+ width?: number | null | undefined;
44202
+ height?: number | null | undefined;
44203
+ } | null | undefined;
44080
44204
  backgroundColor?: {
44081
44205
  value: string;
44082
44206
  } | null | undefined;
@@ -44234,10 +44358,6 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
44234
44358
  assetScale?: number | null | undefined;
44235
44359
  } | null | undefined;
44236
44360
  }[] | null | undefined;
44237
- size?: {
44238
- width?: number | null | undefined;
44239
- height?: number | null | undefined;
44240
- } | null | undefined;
44241
44361
  renderCodeProperties?: {
44242
44362
  showCode: boolean;
44243
44363
  showControls?: boolean | undefined;
@@ -44358,6 +44478,10 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
44358
44478
  } | null | undefined;
44359
44479
  url?: string | null | undefined;
44360
44480
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
44481
+ size?: {
44482
+ width?: number | null | undefined;
44483
+ height?: number | null | undefined;
44484
+ } | null | undefined;
44361
44485
  backgroundColor?: {
44362
44486
  value: string;
44363
44487
  } | null | undefined;
@@ -44515,10 +44639,6 @@ declare const DocumentationPageSnapshot: z.ZodObject<z.objectUtil.extendShape<{
44515
44639
  assetScale?: number | null | undefined;
44516
44640
  } | null | undefined;
44517
44641
  }[] | null | undefined;
44518
- size?: {
44519
- width?: number | null | undefined;
44520
- height?: number | null | undefined;
44521
- } | null | undefined;
44522
44642
  renderCodeProperties?: {
44523
44643
  showCode: boolean;
44524
44644
  showControls?: boolean | undefined;
@@ -48717,6 +48837,10 @@ declare const PageBlockBaseV1: z.ZodObject<{
48717
48837
  } | undefined;
48718
48838
  url?: string | undefined;
48719
48839
  tokenType?: NonNullable<"String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur"> | undefined;
48840
+ size?: {
48841
+ width: number;
48842
+ height: number;
48843
+ } | undefined;
48720
48844
  backgroundColor?: {
48721
48845
  value: string;
48722
48846
  } | undefined;
@@ -48874,10 +48998,6 @@ declare const PageBlockBaseV1: z.ZodObject<{
48874
48998
  assetScale?: number | undefined;
48875
48999
  } | undefined;
48876
49000
  }[] | undefined;
48877
- size?: {
48878
- width: number;
48879
- height: number;
48880
- } | undefined;
48881
49001
  renderCodeProperties?: {
48882
49002
  showCode: boolean;
48883
49003
  showControls?: boolean | undefined;
@@ -48997,6 +49117,10 @@ declare const PageBlockBaseV1: z.ZodObject<{
48997
49117
  } | null | undefined;
48998
49118
  url?: string | null | undefined;
48999
49119
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
49120
+ size?: {
49121
+ width?: number | null | undefined;
49122
+ height?: number | null | undefined;
49123
+ } | null | undefined;
49000
49124
  backgroundColor?: {
49001
49125
  value: string;
49002
49126
  } | null | undefined;
@@ -49154,10 +49278,6 @@ declare const PageBlockBaseV1: z.ZodObject<{
49154
49278
  assetScale?: number | null | undefined;
49155
49279
  } | null | undefined;
49156
49280
  }[] | null | undefined;
49157
- size?: {
49158
- width?: number | null | undefined;
49159
- height?: number | null | undefined;
49160
- } | null | undefined;
49161
49281
  renderCodeProperties?: {
49162
49282
  showCode: boolean;
49163
49283
  showControls?: boolean | undefined;
@@ -53088,6 +53208,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
53088
53208
  } | null | undefined;
53089
53209
  url?: string | null | undefined;
53090
53210
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
53211
+ size?: {
53212
+ width?: number | null | undefined;
53213
+ height?: number | null | undefined;
53214
+ } | null | undefined;
53091
53215
  backgroundColor?: {
53092
53216
  value: string;
53093
53217
  } | null | undefined;
@@ -53245,10 +53369,6 @@ declare const DocumentationPageDataV1: z.ZodObject<{
53245
53369
  assetScale?: number | null | undefined;
53246
53370
  } | null | undefined;
53247
53371
  }[] | null | undefined;
53248
- size?: {
53249
- width?: number | null | undefined;
53250
- height?: number | null | undefined;
53251
- } | null | undefined;
53252
53372
  renderCodeProperties?: {
53253
53373
  showCode: boolean;
53254
53374
  showControls?: boolean | undefined;
@@ -53369,6 +53489,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
53369
53489
  } | null | undefined;
53370
53490
  url?: string | null | undefined;
53371
53491
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
53492
+ size?: {
53493
+ width?: number | null | undefined;
53494
+ height?: number | null | undefined;
53495
+ } | null | undefined;
53372
53496
  backgroundColor?: {
53373
53497
  value: string;
53374
53498
  } | null | undefined;
@@ -53526,10 +53650,6 @@ declare const DocumentationPageDataV1: z.ZodObject<{
53526
53650
  assetScale?: number | null | undefined;
53527
53651
  } | null | undefined;
53528
53652
  }[] | null | undefined;
53529
- size?: {
53530
- width?: number | null | undefined;
53531
- height?: number | null | undefined;
53532
- } | null | undefined;
53533
53653
  renderCodeProperties?: {
53534
53654
  showCode: boolean;
53535
53655
  showControls?: boolean | undefined;
@@ -53996,6 +54116,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
53996
54116
  } | null | undefined;
53997
54117
  url?: string | null | undefined;
53998
54118
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
54119
+ size?: {
54120
+ width?: number | null | undefined;
54121
+ height?: number | null | undefined;
54122
+ } | null | undefined;
53999
54123
  backgroundColor?: {
54000
54124
  value: string;
54001
54125
  } | null | undefined;
@@ -54153,10 +54277,6 @@ declare const DocumentationPageDataV1: z.ZodObject<{
54153
54277
  assetScale?: number | null | undefined;
54154
54278
  } | null | undefined;
54155
54279
  }[] | null | undefined;
54156
- size?: {
54157
- width?: number | null | undefined;
54158
- height?: number | null | undefined;
54159
- } | null | undefined;
54160
54280
  renderCodeProperties?: {
54161
54281
  showCode: boolean;
54162
54282
  showControls?: boolean | undefined;
@@ -54277,6 +54397,10 @@ declare const DocumentationPageDataV1: z.ZodObject<{
54277
54397
  } | null | undefined;
54278
54398
  url?: string | null | undefined;
54279
54399
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
54400
+ size?: {
54401
+ width?: number | null | undefined;
54402
+ height?: number | null | undefined;
54403
+ } | null | undefined;
54280
54404
  backgroundColor?: {
54281
54405
  value: string;
54282
54406
  } | null | undefined;
@@ -54434,10 +54558,6 @@ declare const DocumentationPageDataV1: z.ZodObject<{
54434
54558
  assetScale?: number | null | undefined;
54435
54559
  } | null | undefined;
54436
54560
  }[] | null | undefined;
54437
- size?: {
54438
- width?: number | null | undefined;
54439
- height?: number | null | undefined;
54440
- } | null | undefined;
54441
54561
  renderCodeProperties?: {
54442
54562
  showCode: boolean;
54443
54563
  showControls?: boolean | undefined;
@@ -61513,6 +61633,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
61513
61633
  } | null | undefined;
61514
61634
  url?: string | null | undefined;
61515
61635
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
61636
+ size?: {
61637
+ width?: number | null | undefined;
61638
+ height?: number | null | undefined;
61639
+ } | null | undefined;
61516
61640
  backgroundColor?: {
61517
61641
  value: string;
61518
61642
  } | null | undefined;
@@ -61670,10 +61794,6 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
61670
61794
  assetScale?: number | null | undefined;
61671
61795
  } | null | undefined;
61672
61796
  }[] | null | undefined;
61673
- size?: {
61674
- width?: number | null | undefined;
61675
- height?: number | null | undefined;
61676
- } | null | undefined;
61677
61797
  renderCodeProperties?: {
61678
61798
  showCode: boolean;
61679
61799
  showControls?: boolean | undefined;
@@ -61794,6 +61914,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
61794
61914
  } | null | undefined;
61795
61915
  url?: string | null | undefined;
61796
61916
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
61917
+ size?: {
61918
+ width?: number | null | undefined;
61919
+ height?: number | null | undefined;
61920
+ } | null | undefined;
61797
61921
  backgroundColor?: {
61798
61922
  value: string;
61799
61923
  } | null | undefined;
@@ -61951,10 +62075,6 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
61951
62075
  assetScale?: number | null | undefined;
61952
62076
  } | null | undefined;
61953
62077
  }[] | null | undefined;
61954
- size?: {
61955
- width?: number | null | undefined;
61956
- height?: number | null | undefined;
61957
- } | null | undefined;
61958
62078
  renderCodeProperties?: {
61959
62079
  showCode: boolean;
61960
62080
  showControls?: boolean | undefined;
@@ -62421,6 +62541,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
62421
62541
  } | null | undefined;
62422
62542
  url?: string | null | undefined;
62423
62543
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
62544
+ size?: {
62545
+ width?: number | null | undefined;
62546
+ height?: number | null | undefined;
62547
+ } | null | undefined;
62424
62548
  backgroundColor?: {
62425
62549
  value: string;
62426
62550
  } | null | undefined;
@@ -62578,10 +62702,6 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
62578
62702
  assetScale?: number | null | undefined;
62579
62703
  } | null | undefined;
62580
62704
  }[] | null | undefined;
62581
- size?: {
62582
- width?: number | null | undefined;
62583
- height?: number | null | undefined;
62584
- } | null | undefined;
62585
62705
  renderCodeProperties?: {
62586
62706
  showCode: boolean;
62587
62707
  showControls?: boolean | undefined;
@@ -62702,6 +62822,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
62702
62822
  } | null | undefined;
62703
62823
  url?: string | null | undefined;
62704
62824
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
62825
+ size?: {
62826
+ width?: number | null | undefined;
62827
+ height?: number | null | undefined;
62828
+ } | null | undefined;
62705
62829
  backgroundColor?: {
62706
62830
  value: string;
62707
62831
  } | null | undefined;
@@ -62859,10 +62983,6 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
62859
62983
  assetScale?: number | null | undefined;
62860
62984
  } | null | undefined;
62861
62985
  }[] | null | undefined;
62862
- size?: {
62863
- width?: number | null | undefined;
62864
- height?: number | null | undefined;
62865
- } | null | undefined;
62866
62986
  renderCodeProperties?: {
62867
62987
  showCode: boolean;
62868
62988
  showControls?: boolean | undefined;
@@ -63143,6 +63263,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
63143
63263
  } | null | undefined;
63144
63264
  url?: string | null | undefined;
63145
63265
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
63266
+ size?: {
63267
+ width?: number | null | undefined;
63268
+ height?: number | null | undefined;
63269
+ } | null | undefined;
63146
63270
  backgroundColor?: {
63147
63271
  value: string;
63148
63272
  } | null | undefined;
@@ -63300,10 +63424,6 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
63300
63424
  assetScale?: number | null | undefined;
63301
63425
  } | null | undefined;
63302
63426
  }[] | null | undefined;
63303
- size?: {
63304
- width?: number | null | undefined;
63305
- height?: number | null | undefined;
63306
- } | null | undefined;
63307
63427
  renderCodeProperties?: {
63308
63428
  showCode: boolean;
63309
63429
  showControls?: boolean | undefined;
@@ -63424,6 +63544,10 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
63424
63544
  } | null | undefined;
63425
63545
  url?: string | null | undefined;
63426
63546
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
63547
+ size?: {
63548
+ width?: number | null | undefined;
63549
+ height?: number | null | undefined;
63550
+ } | null | undefined;
63427
63551
  backgroundColor?: {
63428
63552
  value: string;
63429
63553
  } | null | undefined;
@@ -63581,10 +63705,6 @@ declare const DocumentationPageV1: z.ZodObject<z.objectUtil.extendShape<z.object
63581
63705
  assetScale?: number | null | undefined;
63582
63706
  } | null | undefined;
63583
63707
  }[] | null | undefined;
63584
- size?: {
63585
- width?: number | null | undefined;
63586
- height?: number | null | undefined;
63587
- } | null | undefined;
63588
63708
  renderCodeProperties?: {
63589
63709
  showCode: boolean;
63590
63710
  showControls?: boolean | undefined;
@@ -64770,6 +64890,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
64770
64890
  } | null | undefined;
64771
64891
  url?: string | null | undefined;
64772
64892
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
64893
+ size?: {
64894
+ width?: number | null | undefined;
64895
+ height?: number | null | undefined;
64896
+ } | null | undefined;
64773
64897
  backgroundColor?: {
64774
64898
  value: string;
64775
64899
  } | null | undefined;
@@ -64927,10 +65051,6 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
64927
65051
  assetScale?: number | null | undefined;
64928
65052
  } | null | undefined;
64929
65053
  }[] | null | undefined;
64930
- size?: {
64931
- width?: number | null | undefined;
64932
- height?: number | null | undefined;
64933
- } | null | undefined;
64934
65054
  renderCodeProperties?: {
64935
65055
  showCode: boolean;
64936
65056
  showControls?: boolean | undefined;
@@ -65051,6 +65171,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
65051
65171
  } | null | undefined;
65052
65172
  url?: string | null | undefined;
65053
65173
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
65174
+ size?: {
65175
+ width?: number | null | undefined;
65176
+ height?: number | null | undefined;
65177
+ } | null | undefined;
65054
65178
  backgroundColor?: {
65055
65179
  value: string;
65056
65180
  } | null | undefined;
@@ -65208,10 +65332,6 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
65208
65332
  assetScale?: number | null | undefined;
65209
65333
  } | null | undefined;
65210
65334
  }[] | null | undefined;
65211
- size?: {
65212
- width?: number | null | undefined;
65213
- height?: number | null | undefined;
65214
- } | null | undefined;
65215
65335
  renderCodeProperties?: {
65216
65336
  showCode: boolean;
65217
65337
  showControls?: boolean | undefined;
@@ -65400,6 +65520,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
65400
65520
  } | null | undefined;
65401
65521
  url?: string | null | undefined;
65402
65522
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
65523
+ size?: {
65524
+ width?: number | null | undefined;
65525
+ height?: number | null | undefined;
65526
+ } | null | undefined;
65403
65527
  backgroundColor?: {
65404
65528
  value: string;
65405
65529
  } | null | undefined;
@@ -65557,10 +65681,6 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
65557
65681
  assetScale?: number | null | undefined;
65558
65682
  } | null | undefined;
65559
65683
  }[] | null | undefined;
65560
- size?: {
65561
- width?: number | null | undefined;
65562
- height?: number | null | undefined;
65563
- } | null | undefined;
65564
65684
  renderCodeProperties?: {
65565
65685
  showCode: boolean;
65566
65686
  showControls?: boolean | undefined;
@@ -65681,6 +65801,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
65681
65801
  } | null | undefined;
65682
65802
  url?: string | null | undefined;
65683
65803
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
65804
+ size?: {
65805
+ width?: number | null | undefined;
65806
+ height?: number | null | undefined;
65807
+ } | null | undefined;
65684
65808
  backgroundColor?: {
65685
65809
  value: string;
65686
65810
  } | null | undefined;
@@ -65838,10 +65962,6 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
65838
65962
  assetScale?: number | null | undefined;
65839
65963
  } | null | undefined;
65840
65964
  }[] | null | undefined;
65841
- size?: {
65842
- width?: number | null | undefined;
65843
- height?: number | null | undefined;
65844
- } | null | undefined;
65845
65965
  renderCodeProperties?: {
65846
65966
  showCode: boolean;
65847
65967
  showControls?: boolean | undefined;
@@ -66048,6 +66168,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
66048
66168
  } | null | undefined;
66049
66169
  url?: string | null | undefined;
66050
66170
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
66171
+ size?: {
66172
+ width?: number | null | undefined;
66173
+ height?: number | null | undefined;
66174
+ } | null | undefined;
66051
66175
  backgroundColor?: {
66052
66176
  value: string;
66053
66177
  } | null | undefined;
@@ -66205,10 +66329,6 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
66205
66329
  assetScale?: number | null | undefined;
66206
66330
  } | null | undefined;
66207
66331
  }[] | null | undefined;
66208
- size?: {
66209
- width?: number | null | undefined;
66210
- height?: number | null | undefined;
66211
- } | null | undefined;
66212
66332
  renderCodeProperties?: {
66213
66333
  showCode: boolean;
66214
66334
  showControls?: boolean | undefined;
@@ -66329,6 +66449,10 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
66329
66449
  } | null | undefined;
66330
66450
  url?: string | null | undefined;
66331
66451
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
66452
+ size?: {
66453
+ width?: number | null | undefined;
66454
+ height?: number | null | undefined;
66455
+ } | null | undefined;
66332
66456
  backgroundColor?: {
66333
66457
  value: string;
66334
66458
  } | null | undefined;
@@ -66486,10 +66610,6 @@ declare const DocumentationPageV2: z.ZodObject<z.objectUtil.extendShape<z.object
66486
66610
  assetScale?: number | null | undefined;
66487
66611
  } | null | undefined;
66488
66612
  }[] | null | undefined;
66489
- size?: {
66490
- width?: number | null | undefined;
66491
- height?: number | null | undefined;
66492
- } | null | undefined;
66493
66613
  renderCodeProperties?: {
66494
66614
  showCode: boolean;
66495
66615
  showControls?: boolean | undefined;
@@ -157697,9 +157817,9 @@ declare const IntegrationCredentials: z.ZodObject<{
157697
157817
  avatar?: string | undefined;
157698
157818
  } | undefined;
157699
157819
  username?: string | undefined;
157820
+ refreshToken?: string | undefined;
157700
157821
  expiresAt?: Date | undefined;
157701
157822
  customUrl?: string | undefined;
157702
- refreshToken?: string | undefined;
157703
157823
  tokenName?: string | undefined;
157704
157824
  refreshedAt?: Date | undefined;
157705
157825
  appInstallationId?: string | undefined;
@@ -157727,9 +157847,9 @@ declare const IntegrationCredentials: z.ZodObject<{
157727
157847
  avatar?: string | undefined;
157728
157848
  } | undefined;
157729
157849
  username?: string | undefined;
157850
+ refreshToken?: string | undefined;
157730
157851
  expiresAt?: Date | undefined;
157731
157852
  customUrl?: string | undefined;
157732
- refreshToken?: string | undefined;
157733
157853
  tokenName?: string | undefined;
157734
157854
  refreshedAt?: Date | undefined;
157735
157855
  appInstallationId?: string | undefined;
@@ -157827,9 +157947,9 @@ declare const Integration: z.ZodObject<{
157827
157947
  avatar?: string | undefined;
157828
157948
  } | undefined;
157829
157949
  username?: string | undefined;
157950
+ refreshToken?: string | undefined;
157830
157951
  expiresAt?: Date | undefined;
157831
157952
  customUrl?: string | undefined;
157832
- refreshToken?: string | undefined;
157833
157953
  tokenName?: string | undefined;
157834
157954
  refreshedAt?: Date | undefined;
157835
157955
  appInstallationId?: string | undefined;
@@ -157857,9 +157977,9 @@ declare const Integration: z.ZodObject<{
157857
157977
  avatar?: string | undefined;
157858
157978
  } | undefined;
157859
157979
  username?: string | undefined;
157980
+ refreshToken?: string | undefined;
157860
157981
  expiresAt?: Date | undefined;
157861
157982
  customUrl?: string | undefined;
157862
- refreshToken?: string | undefined;
157863
157983
  tokenName?: string | undefined;
157864
157984
  refreshedAt?: Date | undefined;
157865
157985
  appInstallationId?: string | undefined;
@@ -157893,9 +158013,9 @@ declare const Integration: z.ZodObject<{
157893
158013
  avatar?: string | undefined;
157894
158014
  } | undefined;
157895
158015
  username?: string | undefined;
158016
+ refreshToken?: string | undefined;
157896
158017
  expiresAt?: Date | undefined;
157897
158018
  customUrl?: string | undefined;
157898
- refreshToken?: string | undefined;
157899
158019
  tokenName?: string | undefined;
157900
158020
  refreshedAt?: Date | undefined;
157901
158021
  appInstallationId?: string | undefined;
@@ -157929,9 +158049,9 @@ declare const Integration: z.ZodObject<{
157929
158049
  avatar?: string | undefined;
157930
158050
  } | undefined;
157931
158051
  username?: string | undefined;
158052
+ refreshToken?: string | undefined;
157932
158053
  expiresAt?: Date | undefined;
157933
158054
  customUrl?: string | undefined;
157934
- refreshToken?: string | undefined;
157935
158055
  tokenName?: string | undefined;
157936
158056
  refreshedAt?: Date | undefined;
157937
158057
  appInstallationId?: string | undefined;
@@ -158046,20 +158166,20 @@ declare const IntegrationTokenSchemaOld: z.ZodObject<{
158046
158166
  externalUserId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
158047
158167
  }, "strip", z.ZodTypeAny, {
158048
158168
  id: string;
158169
+ refreshToken: string;
158049
158170
  expiresAt: Date;
158050
158171
  scope: string;
158051
158172
  accessToken: string;
158052
158173
  userId: string;
158053
- refreshToken: string;
158054
158174
  provider: OAuthProviderNames;
158055
158175
  externalUserId?: string | null | undefined;
158056
158176
  }, {
158057
158177
  id: string;
158178
+ refreshToken: string;
158058
158179
  expiresAt: Date;
158059
158180
  scope: string;
158060
158181
  accessToken: string;
158061
158182
  userId: string;
158062
- refreshToken: string;
158063
158183
  provider: OAuthProviderNames;
158064
158184
  externalUserId?: string | null | undefined;
158065
158185
  }>;
@@ -158315,6 +158435,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
158315
158435
  } | null | undefined;
158316
158436
  url?: string | null | undefined;
158317
158437
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
158438
+ size?: {
158439
+ width?: number | null | undefined;
158440
+ height?: number | null | undefined;
158441
+ } | null | undefined;
158318
158442
  backgroundColor?: {
158319
158443
  value: string;
158320
158444
  } | null | undefined;
@@ -158472,10 +158596,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
158472
158596
  assetScale?: number | null | undefined;
158473
158597
  } | null | undefined;
158474
158598
  }[] | null | undefined;
158475
- size?: {
158476
- width?: number | null | undefined;
158477
- height?: number | null | undefined;
158478
- } | null | undefined;
158479
158599
  renderCodeProperties?: {
158480
158600
  showCode: boolean;
158481
158601
  showControls?: boolean | undefined;
@@ -158596,6 +158716,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
158596
158716
  } | null | undefined;
158597
158717
  url?: string | null | undefined;
158598
158718
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
158719
+ size?: {
158720
+ width?: number | null | undefined;
158721
+ height?: number | null | undefined;
158722
+ } | null | undefined;
158599
158723
  backgroundColor?: {
158600
158724
  value: string;
158601
158725
  } | null | undefined;
@@ -158753,10 +158877,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
158753
158877
  assetScale?: number | null | undefined;
158754
158878
  } | null | undefined;
158755
158879
  }[] | null | undefined;
158756
- size?: {
158757
- width?: number | null | undefined;
158758
- height?: number | null | undefined;
158759
- } | null | undefined;
158760
158880
  renderCodeProperties?: {
158761
158881
  showCode: boolean;
158762
158882
  showControls?: boolean | undefined;
@@ -158945,6 +159065,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
158945
159065
  } | null | undefined;
158946
159066
  url?: string | null | undefined;
158947
159067
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
159068
+ size?: {
159069
+ width?: number | null | undefined;
159070
+ height?: number | null | undefined;
159071
+ } | null | undefined;
158948
159072
  backgroundColor?: {
158949
159073
  value: string;
158950
159074
  } | null | undefined;
@@ -159102,10 +159226,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
159102
159226
  assetScale?: number | null | undefined;
159103
159227
  } | null | undefined;
159104
159228
  }[] | null | undefined;
159105
- size?: {
159106
- width?: number | null | undefined;
159107
- height?: number | null | undefined;
159108
- } | null | undefined;
159109
159229
  renderCodeProperties?: {
159110
159230
  showCode: boolean;
159111
159231
  showControls?: boolean | undefined;
@@ -159226,6 +159346,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
159226
159346
  } | null | undefined;
159227
159347
  url?: string | null | undefined;
159228
159348
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
159349
+ size?: {
159350
+ width?: number | null | undefined;
159351
+ height?: number | null | undefined;
159352
+ } | null | undefined;
159229
159353
  backgroundColor?: {
159230
159354
  value: string;
159231
159355
  } | null | undefined;
@@ -159383,10 +159507,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
159383
159507
  assetScale?: number | null | undefined;
159384
159508
  } | null | undefined;
159385
159509
  }[] | null | undefined;
159386
- size?: {
159387
- width?: number | null | undefined;
159388
- height?: number | null | undefined;
159389
- } | null | undefined;
159390
159510
  renderCodeProperties?: {
159391
159511
  showCode: boolean;
159392
159512
  showControls?: boolean | undefined;
@@ -159593,6 +159713,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
159593
159713
  } | null | undefined;
159594
159714
  url?: string | null | undefined;
159595
159715
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
159716
+ size?: {
159717
+ width?: number | null | undefined;
159718
+ height?: number | null | undefined;
159719
+ } | null | undefined;
159596
159720
  backgroundColor?: {
159597
159721
  value: string;
159598
159722
  } | null | undefined;
@@ -159750,10 +159874,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
159750
159874
  assetScale?: number | null | undefined;
159751
159875
  } | null | undefined;
159752
159876
  }[] | null | undefined;
159753
- size?: {
159754
- width?: number | null | undefined;
159755
- height?: number | null | undefined;
159756
- } | null | undefined;
159757
159877
  renderCodeProperties?: {
159758
159878
  showCode: boolean;
159759
159879
  showControls?: boolean | undefined;
@@ -159874,6 +159994,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
159874
159994
  } | null | undefined;
159875
159995
  url?: string | null | undefined;
159876
159996
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
159997
+ size?: {
159998
+ width?: number | null | undefined;
159999
+ height?: number | null | undefined;
160000
+ } | null | undefined;
159877
160001
  backgroundColor?: {
159878
160002
  value: string;
159879
160003
  } | null | undefined;
@@ -160031,10 +160155,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
160031
160155
  assetScale?: number | null | undefined;
160032
160156
  } | null | undefined;
160033
160157
  }[] | null | undefined;
160034
- size?: {
160035
- width?: number | null | undefined;
160036
- height?: number | null | undefined;
160037
- } | null | undefined;
160038
160158
  renderCodeProperties?: {
160039
160159
  showCode: boolean;
160040
160160
  showControls?: boolean | undefined;
@@ -160662,6 +160782,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
160662
160782
  } | null | undefined;
160663
160783
  url?: string | null | undefined;
160664
160784
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
160785
+ size?: {
160786
+ width?: number | null | undefined;
160787
+ height?: number | null | undefined;
160788
+ } | null | undefined;
160665
160789
  backgroundColor?: {
160666
160790
  value: string;
160667
160791
  } | null | undefined;
@@ -160819,10 +160943,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
160819
160943
  assetScale?: number | null | undefined;
160820
160944
  } | null | undefined;
160821
160945
  }[] | null | undefined;
160822
- size?: {
160823
- width?: number | null | undefined;
160824
- height?: number | null | undefined;
160825
- } | null | undefined;
160826
160946
  renderCodeProperties?: {
160827
160947
  showCode: boolean;
160828
160948
  showControls?: boolean | undefined;
@@ -160943,6 +161063,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
160943
161063
  } | null | undefined;
160944
161064
  url?: string | null | undefined;
160945
161065
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
161066
+ size?: {
161067
+ width?: number | null | undefined;
161068
+ height?: number | null | undefined;
161069
+ } | null | undefined;
160946
161070
  backgroundColor?: {
160947
161071
  value: string;
160948
161072
  } | null | undefined;
@@ -161100,10 +161224,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
161100
161224
  assetScale?: number | null | undefined;
161101
161225
  } | null | undefined;
161102
161226
  }[] | null | undefined;
161103
- size?: {
161104
- width?: number | null | undefined;
161105
- height?: number | null | undefined;
161106
- } | null | undefined;
161107
161227
  renderCodeProperties?: {
161108
161228
  showCode: boolean;
161109
161229
  showControls?: boolean | undefined;
@@ -161292,6 +161412,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
161292
161412
  } | null | undefined;
161293
161413
  url?: string | null | undefined;
161294
161414
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
161415
+ size?: {
161416
+ width?: number | null | undefined;
161417
+ height?: number | null | undefined;
161418
+ } | null | undefined;
161295
161419
  backgroundColor?: {
161296
161420
  value: string;
161297
161421
  } | null | undefined;
@@ -161449,10 +161573,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
161449
161573
  assetScale?: number | null | undefined;
161450
161574
  } | null | undefined;
161451
161575
  }[] | null | undefined;
161452
- size?: {
161453
- width?: number | null | undefined;
161454
- height?: number | null | undefined;
161455
- } | null | undefined;
161456
161576
  renderCodeProperties?: {
161457
161577
  showCode: boolean;
161458
161578
  showControls?: boolean | undefined;
@@ -161573,6 +161693,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
161573
161693
  } | null | undefined;
161574
161694
  url?: string | null | undefined;
161575
161695
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
161696
+ size?: {
161697
+ width?: number | null | undefined;
161698
+ height?: number | null | undefined;
161699
+ } | null | undefined;
161576
161700
  backgroundColor?: {
161577
161701
  value: string;
161578
161702
  } | null | undefined;
@@ -161730,10 +161854,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
161730
161854
  assetScale?: number | null | undefined;
161731
161855
  } | null | undefined;
161732
161856
  }[] | null | undefined;
161733
- size?: {
161734
- width?: number | null | undefined;
161735
- height?: number | null | undefined;
161736
- } | null | undefined;
161737
161857
  renderCodeProperties?: {
161738
161858
  showCode: boolean;
161739
161859
  showControls?: boolean | undefined;
@@ -161940,6 +162060,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
161940
162060
  } | null | undefined;
161941
162061
  url?: string | null | undefined;
161942
162062
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
162063
+ size?: {
162064
+ width?: number | null | undefined;
162065
+ height?: number | null | undefined;
162066
+ } | null | undefined;
161943
162067
  backgroundColor?: {
161944
162068
  value: string;
161945
162069
  } | null | undefined;
@@ -162097,10 +162221,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
162097
162221
  assetScale?: number | null | undefined;
162098
162222
  } | null | undefined;
162099
162223
  }[] | null | undefined;
162100
- size?: {
162101
- width?: number | null | undefined;
162102
- height?: number | null | undefined;
162103
- } | null | undefined;
162104
162224
  renderCodeProperties?: {
162105
162225
  showCode: boolean;
162106
162226
  showControls?: boolean | undefined;
@@ -162221,6 +162341,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
162221
162341
  } | null | undefined;
162222
162342
  url?: string | null | undefined;
162223
162343
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
162344
+ size?: {
162345
+ width?: number | null | undefined;
162346
+ height?: number | null | undefined;
162347
+ } | null | undefined;
162224
162348
  backgroundColor?: {
162225
162349
  value: string;
162226
162350
  } | null | undefined;
@@ -162378,10 +162502,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
162378
162502
  assetScale?: number | null | undefined;
162379
162503
  } | null | undefined;
162380
162504
  }[] | null | undefined;
162381
- size?: {
162382
- width?: number | null | undefined;
162383
- height?: number | null | undefined;
162384
- } | null | undefined;
162385
162505
  renderCodeProperties?: {
162386
162506
  showCode: boolean;
162387
162507
  showControls?: boolean | undefined;
@@ -162618,6 +162738,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
162618
162738
  } | null | undefined;
162619
162739
  url?: string | null | undefined;
162620
162740
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
162741
+ size?: {
162742
+ width?: number | null | undefined;
162743
+ height?: number | null | undefined;
162744
+ } | null | undefined;
162621
162745
  backgroundColor?: {
162622
162746
  value: string;
162623
162747
  } | null | undefined;
@@ -162775,10 +162899,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
162775
162899
  assetScale?: number | null | undefined;
162776
162900
  } | null | undefined;
162777
162901
  }[] | null | undefined;
162778
- size?: {
162779
- width?: number | null | undefined;
162780
- height?: number | null | undefined;
162781
- } | null | undefined;
162782
162902
  renderCodeProperties?: {
162783
162903
  showCode: boolean;
162784
162904
  showControls?: boolean | undefined;
@@ -162899,6 +163019,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
162899
163019
  } | null | undefined;
162900
163020
  url?: string | null | undefined;
162901
163021
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
163022
+ size?: {
163023
+ width?: number | null | undefined;
163024
+ height?: number | null | undefined;
163025
+ } | null | undefined;
162902
163026
  backgroundColor?: {
162903
163027
  value: string;
162904
163028
  } | null | undefined;
@@ -163056,10 +163180,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
163056
163180
  assetScale?: number | null | undefined;
163057
163181
  } | null | undefined;
163058
163182
  }[] | null | undefined;
163059
- size?: {
163060
- width?: number | null | undefined;
163061
- height?: number | null | undefined;
163062
- } | null | undefined;
163063
163183
  renderCodeProperties?: {
163064
163184
  showCode: boolean;
163065
163185
  showControls?: boolean | undefined;
@@ -164049,6 +164169,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
164049
164169
  } | null | undefined;
164050
164170
  url?: string | null | undefined;
164051
164171
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
164172
+ size?: {
164173
+ width?: number | null | undefined;
164174
+ height?: number | null | undefined;
164175
+ } | null | undefined;
164052
164176
  backgroundColor?: {
164053
164177
  value: string;
164054
164178
  } | null | undefined;
@@ -164206,10 +164330,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
164206
164330
  assetScale?: number | null | undefined;
164207
164331
  } | null | undefined;
164208
164332
  }[] | null | undefined;
164209
- size?: {
164210
- width?: number | null | undefined;
164211
- height?: number | null | undefined;
164212
- } | null | undefined;
164213
164333
  renderCodeProperties?: {
164214
164334
  showCode: boolean;
164215
164335
  showControls?: boolean | undefined;
@@ -164330,6 +164450,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
164330
164450
  } | null | undefined;
164331
164451
  url?: string | null | undefined;
164332
164452
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
164453
+ size?: {
164454
+ width?: number | null | undefined;
164455
+ height?: number | null | undefined;
164456
+ } | null | undefined;
164333
164457
  backgroundColor?: {
164334
164458
  value: string;
164335
164459
  } | null | undefined;
@@ -164487,10 +164611,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
164487
164611
  assetScale?: number | null | undefined;
164488
164612
  } | null | undefined;
164489
164613
  }[] | null | undefined;
164490
- size?: {
164491
- width?: number | null | undefined;
164492
- height?: number | null | undefined;
164493
- } | null | undefined;
164494
164614
  renderCodeProperties?: {
164495
164615
  showCode: boolean;
164496
164616
  showControls?: boolean | undefined;
@@ -164664,6 +164784,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
164664
164784
  } | null | undefined;
164665
164785
  url?: string | null | undefined;
164666
164786
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
164787
+ size?: {
164788
+ width?: number | null | undefined;
164789
+ height?: number | null | undefined;
164790
+ } | null | undefined;
164667
164791
  backgroundColor?: {
164668
164792
  value: string;
164669
164793
  } | null | undefined;
@@ -164821,10 +164945,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
164821
164945
  assetScale?: number | null | undefined;
164822
164946
  } | null | undefined;
164823
164947
  }[] | null | undefined;
164824
- size?: {
164825
- width?: number | null | undefined;
164826
- height?: number | null | undefined;
164827
- } | null | undefined;
164828
164948
  renderCodeProperties?: {
164829
164949
  showCode: boolean;
164830
164950
  showControls?: boolean | undefined;
@@ -164945,6 +165065,10 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
164945
165065
  } | null | undefined;
164946
165066
  url?: string | null | undefined;
164947
165067
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
165068
+ size?: {
165069
+ width?: number | null | undefined;
165070
+ height?: number | null | undefined;
165071
+ } | null | undefined;
164948
165072
  backgroundColor?: {
164949
165073
  value: string;
164950
165074
  } | null | undefined;
@@ -165102,10 +165226,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
165102
165226
  assetScale?: number | null | undefined;
165103
165227
  } | null | undefined;
165104
165228
  }[] | null | undefined;
165105
- size?: {
165106
- width?: number | null | undefined;
165107
- height?: number | null | undefined;
165108
- } | null | undefined;
165109
165229
  renderCodeProperties?: {
165110
165230
  showCode: boolean;
165111
165231
  showControls?: boolean | undefined;
@@ -165488,6 +165608,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
165488
165608
  } | null | undefined;
165489
165609
  url?: string | null | undefined;
165490
165610
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
165611
+ size?: {
165612
+ width?: number | null | undefined;
165613
+ height?: number | null | undefined;
165614
+ } | null | undefined;
165491
165615
  backgroundColor?: {
165492
165616
  value: string;
165493
165617
  } | null | undefined;
@@ -165645,10 +165769,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
165645
165769
  assetScale?: number | null | undefined;
165646
165770
  } | null | undefined;
165647
165771
  }[] | null | undefined;
165648
- size?: {
165649
- width?: number | null | undefined;
165650
- height?: number | null | undefined;
165651
- } | null | undefined;
165652
165772
  renderCodeProperties?: {
165653
165773
  showCode: boolean;
165654
165774
  showControls?: boolean | undefined;
@@ -165769,6 +165889,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
165769
165889
  } | null | undefined;
165770
165890
  url?: string | null | undefined;
165771
165891
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
165892
+ size?: {
165893
+ width?: number | null | undefined;
165894
+ height?: number | null | undefined;
165895
+ } | null | undefined;
165772
165896
  backgroundColor?: {
165773
165897
  value: string;
165774
165898
  } | null | undefined;
@@ -165926,10 +166050,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
165926
166050
  assetScale?: number | null | undefined;
165927
166051
  } | null | undefined;
165928
166052
  }[] | null | undefined;
165929
- size?: {
165930
- width?: number | null | undefined;
165931
- height?: number | null | undefined;
165932
- } | null | undefined;
165933
166053
  renderCodeProperties?: {
165934
166054
  showCode: boolean;
165935
166055
  showControls?: boolean | undefined;
@@ -166118,6 +166238,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
166118
166238
  } | null | undefined;
166119
166239
  url?: string | null | undefined;
166120
166240
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
166241
+ size?: {
166242
+ width?: number | null | undefined;
166243
+ height?: number | null | undefined;
166244
+ } | null | undefined;
166121
166245
  backgroundColor?: {
166122
166246
  value: string;
166123
166247
  } | null | undefined;
@@ -166275,10 +166399,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
166275
166399
  assetScale?: number | null | undefined;
166276
166400
  } | null | undefined;
166277
166401
  }[] | null | undefined;
166278
- size?: {
166279
- width?: number | null | undefined;
166280
- height?: number | null | undefined;
166281
- } | null | undefined;
166282
166402
  renderCodeProperties?: {
166283
166403
  showCode: boolean;
166284
166404
  showControls?: boolean | undefined;
@@ -166399,6 +166519,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
166399
166519
  } | null | undefined;
166400
166520
  url?: string | null | undefined;
166401
166521
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
166522
+ size?: {
166523
+ width?: number | null | undefined;
166524
+ height?: number | null | undefined;
166525
+ } | null | undefined;
166402
166526
  backgroundColor?: {
166403
166527
  value: string;
166404
166528
  } | null | undefined;
@@ -166556,10 +166680,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
166556
166680
  assetScale?: number | null | undefined;
166557
166681
  } | null | undefined;
166558
166682
  }[] | null | undefined;
166559
- size?: {
166560
- width?: number | null | undefined;
166561
- height?: number | null | undefined;
166562
- } | null | undefined;
166563
166683
  renderCodeProperties?: {
166564
166684
  showCode: boolean;
166565
166685
  showControls?: boolean | undefined;
@@ -166766,6 +166886,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
166766
166886
  } | null | undefined;
166767
166887
  url?: string | null | undefined;
166768
166888
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
166889
+ size?: {
166890
+ width?: number | null | undefined;
166891
+ height?: number | null | undefined;
166892
+ } | null | undefined;
166769
166893
  backgroundColor?: {
166770
166894
  value: string;
166771
166895
  } | null | undefined;
@@ -166923,10 +167047,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
166923
167047
  assetScale?: number | null | undefined;
166924
167048
  } | null | undefined;
166925
167049
  }[] | null | undefined;
166926
- size?: {
166927
- width?: number | null | undefined;
166928
- height?: number | null | undefined;
166929
- } | null | undefined;
166930
167050
  renderCodeProperties?: {
166931
167051
  showCode: boolean;
166932
167052
  showControls?: boolean | undefined;
@@ -167047,6 +167167,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
167047
167167
  } | null | undefined;
167048
167168
  url?: string | null | undefined;
167049
167169
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
167170
+ size?: {
167171
+ width?: number | null | undefined;
167172
+ height?: number | null | undefined;
167173
+ } | null | undefined;
167050
167174
  backgroundColor?: {
167051
167175
  value: string;
167052
167176
  } | null | undefined;
@@ -167204,10 +167328,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
167204
167328
  assetScale?: number | null | undefined;
167205
167329
  } | null | undefined;
167206
167330
  }[] | null | undefined;
167207
- size?: {
167208
- width?: number | null | undefined;
167209
- height?: number | null | undefined;
167210
- } | null | undefined;
167211
167331
  renderCodeProperties?: {
167212
167332
  showCode: boolean;
167213
167333
  showControls?: boolean | undefined;
@@ -167837,6 +167957,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
167837
167957
  } | null | undefined;
167838
167958
  url?: string | null | undefined;
167839
167959
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
167960
+ size?: {
167961
+ width?: number | null | undefined;
167962
+ height?: number | null | undefined;
167963
+ } | null | undefined;
167840
167964
  backgroundColor?: {
167841
167965
  value: string;
167842
167966
  } | null | undefined;
@@ -167994,10 +168118,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
167994
168118
  assetScale?: number | null | undefined;
167995
168119
  } | null | undefined;
167996
168120
  }[] | null | undefined;
167997
- size?: {
167998
- width?: number | null | undefined;
167999
- height?: number | null | undefined;
168000
- } | null | undefined;
168001
168121
  renderCodeProperties?: {
168002
168122
  showCode: boolean;
168003
168123
  showControls?: boolean | undefined;
@@ -168118,6 +168238,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
168118
168238
  } | null | undefined;
168119
168239
  url?: string | null | undefined;
168120
168240
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
168241
+ size?: {
168242
+ width?: number | null | undefined;
168243
+ height?: number | null | undefined;
168244
+ } | null | undefined;
168121
168245
  backgroundColor?: {
168122
168246
  value: string;
168123
168247
  } | null | undefined;
@@ -168275,10 +168399,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
168275
168399
  assetScale?: number | null | undefined;
168276
168400
  } | null | undefined;
168277
168401
  }[] | null | undefined;
168278
- size?: {
168279
- width?: number | null | undefined;
168280
- height?: number | null | undefined;
168281
- } | null | undefined;
168282
168402
  renderCodeProperties?: {
168283
168403
  showCode: boolean;
168284
168404
  showControls?: boolean | undefined;
@@ -168467,6 +168587,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
168467
168587
  } | null | undefined;
168468
168588
  url?: string | null | undefined;
168469
168589
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
168590
+ size?: {
168591
+ width?: number | null | undefined;
168592
+ height?: number | null | undefined;
168593
+ } | null | undefined;
168470
168594
  backgroundColor?: {
168471
168595
  value: string;
168472
168596
  } | null | undefined;
@@ -168624,10 +168748,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
168624
168748
  assetScale?: number | null | undefined;
168625
168749
  } | null | undefined;
168626
168750
  }[] | null | undefined;
168627
- size?: {
168628
- width?: number | null | undefined;
168629
- height?: number | null | undefined;
168630
- } | null | undefined;
168631
168751
  renderCodeProperties?: {
168632
168752
  showCode: boolean;
168633
168753
  showControls?: boolean | undefined;
@@ -168748,6 +168868,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
168748
168868
  } | null | undefined;
168749
168869
  url?: string | null | undefined;
168750
168870
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
168871
+ size?: {
168872
+ width?: number | null | undefined;
168873
+ height?: number | null | undefined;
168874
+ } | null | undefined;
168751
168875
  backgroundColor?: {
168752
168876
  value: string;
168753
168877
  } | null | undefined;
@@ -168905,10 +169029,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
168905
169029
  assetScale?: number | null | undefined;
168906
169030
  } | null | undefined;
168907
169031
  }[] | null | undefined;
168908
- size?: {
168909
- width?: number | null | undefined;
168910
- height?: number | null | undefined;
168911
- } | null | undefined;
168912
169032
  renderCodeProperties?: {
168913
169033
  showCode: boolean;
168914
169034
  showControls?: boolean | undefined;
@@ -169115,6 +169235,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
169115
169235
  } | null | undefined;
169116
169236
  url?: string | null | undefined;
169117
169237
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
169238
+ size?: {
169239
+ width?: number | null | undefined;
169240
+ height?: number | null | undefined;
169241
+ } | null | undefined;
169118
169242
  backgroundColor?: {
169119
169243
  value: string;
169120
169244
  } | null | undefined;
@@ -169272,10 +169396,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
169272
169396
  assetScale?: number | null | undefined;
169273
169397
  } | null | undefined;
169274
169398
  }[] | null | undefined;
169275
- size?: {
169276
- width?: number | null | undefined;
169277
- height?: number | null | undefined;
169278
- } | null | undefined;
169279
169399
  renderCodeProperties?: {
169280
169400
  showCode: boolean;
169281
169401
  showControls?: boolean | undefined;
@@ -169396,6 +169516,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
169396
169516
  } | null | undefined;
169397
169517
  url?: string | null | undefined;
169398
169518
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
169519
+ size?: {
169520
+ width?: number | null | undefined;
169521
+ height?: number | null | undefined;
169522
+ } | null | undefined;
169399
169523
  backgroundColor?: {
169400
169524
  value: string;
169401
169525
  } | null | undefined;
@@ -169553,10 +169677,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
169553
169677
  assetScale?: number | null | undefined;
169554
169678
  } | null | undefined;
169555
169679
  }[] | null | undefined;
169556
- size?: {
169557
- width?: number | null | undefined;
169558
- height?: number | null | undefined;
169559
- } | null | undefined;
169560
169680
  renderCodeProperties?: {
169561
169681
  showCode: boolean;
169562
169682
  showControls?: boolean | undefined;
@@ -169793,6 +169913,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
169793
169913
  } | null | undefined;
169794
169914
  url?: string | null | undefined;
169795
169915
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
169916
+ size?: {
169917
+ width?: number | null | undefined;
169918
+ height?: number | null | undefined;
169919
+ } | null | undefined;
169796
169920
  backgroundColor?: {
169797
169921
  value: string;
169798
169922
  } | null | undefined;
@@ -169950,10 +170074,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
169950
170074
  assetScale?: number | null | undefined;
169951
170075
  } | null | undefined;
169952
170076
  }[] | null | undefined;
169953
- size?: {
169954
- width?: number | null | undefined;
169955
- height?: number | null | undefined;
169956
- } | null | undefined;
169957
170077
  renderCodeProperties?: {
169958
170078
  showCode: boolean;
169959
170079
  showControls?: boolean | undefined;
@@ -170074,6 +170194,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
170074
170194
  } | null | undefined;
170075
170195
  url?: string | null | undefined;
170076
170196
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
170197
+ size?: {
170198
+ width?: number | null | undefined;
170199
+ height?: number | null | undefined;
170200
+ } | null | undefined;
170077
170201
  backgroundColor?: {
170078
170202
  value: string;
170079
170203
  } | null | undefined;
@@ -170231,10 +170355,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
170231
170355
  assetScale?: number | null | undefined;
170232
170356
  } | null | undefined;
170233
170357
  }[] | null | undefined;
170234
- size?: {
170235
- width?: number | null | undefined;
170236
- height?: number | null | undefined;
170237
- } | null | undefined;
170238
170358
  renderCodeProperties?: {
170239
170359
  showCode: boolean;
170240
170360
  showControls?: boolean | undefined;
@@ -171212,6 +171332,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
171212
171332
  } | null | undefined;
171213
171333
  url?: string | null | undefined;
171214
171334
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
171335
+ size?: {
171336
+ width?: number | null | undefined;
171337
+ height?: number | null | undefined;
171338
+ } | null | undefined;
171215
171339
  backgroundColor?: {
171216
171340
  value: string;
171217
171341
  } | null | undefined;
@@ -171369,10 +171493,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
171369
171493
  assetScale?: number | null | undefined;
171370
171494
  } | null | undefined;
171371
171495
  }[] | null | undefined;
171372
- size?: {
171373
- width?: number | null | undefined;
171374
- height?: number | null | undefined;
171375
- } | null | undefined;
171376
171496
  renderCodeProperties?: {
171377
171497
  showCode: boolean;
171378
171498
  showControls?: boolean | undefined;
@@ -171493,6 +171613,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
171493
171613
  } | null | undefined;
171494
171614
  url?: string | null | undefined;
171495
171615
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
171616
+ size?: {
171617
+ width?: number | null | undefined;
171618
+ height?: number | null | undefined;
171619
+ } | null | undefined;
171496
171620
  backgroundColor?: {
171497
171621
  value: string;
171498
171622
  } | null | undefined;
@@ -171650,10 +171774,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
171650
171774
  assetScale?: number | null | undefined;
171651
171775
  } | null | undefined;
171652
171776
  }[] | null | undefined;
171653
- size?: {
171654
- width?: number | null | undefined;
171655
- height?: number | null | undefined;
171656
- } | null | undefined;
171657
171777
  renderCodeProperties?: {
171658
171778
  showCode: boolean;
171659
171779
  showControls?: boolean | undefined;
@@ -171827,6 +171947,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
171827
171947
  } | null | undefined;
171828
171948
  url?: string | null | undefined;
171829
171949
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
171950
+ size?: {
171951
+ width?: number | null | undefined;
171952
+ height?: number | null | undefined;
171953
+ } | null | undefined;
171830
171954
  backgroundColor?: {
171831
171955
  value: string;
171832
171956
  } | null | undefined;
@@ -171984,10 +172108,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
171984
172108
  assetScale?: number | null | undefined;
171985
172109
  } | null | undefined;
171986
172110
  }[] | null | undefined;
171987
- size?: {
171988
- width?: number | null | undefined;
171989
- height?: number | null | undefined;
171990
- } | null | undefined;
171991
172111
  renderCodeProperties?: {
171992
172112
  showCode: boolean;
171993
172113
  showControls?: boolean | undefined;
@@ -172108,6 +172228,10 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
172108
172228
  } | null | undefined;
172109
172229
  url?: string | null | undefined;
172110
172230
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
172231
+ size?: {
172232
+ width?: number | null | undefined;
172233
+ height?: number | null | undefined;
172234
+ } | null | undefined;
172111
172235
  backgroundColor?: {
172112
172236
  value: string;
172113
172237
  } | null | undefined;
@@ -172265,10 +172389,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
172265
172389
  assetScale?: number | null | undefined;
172266
172390
  } | null | undefined;
172267
172391
  }[] | null | undefined;
172268
- size?: {
172269
- width?: number | null | undefined;
172270
- height?: number | null | undefined;
172271
- } | null | undefined;
172272
172392
  renderCodeProperties?: {
172273
172393
  showCode: boolean;
172274
172394
  showControls?: boolean | undefined;
@@ -173580,6 +173700,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
173580
173700
  } | null | undefined;
173581
173701
  url?: string | null | undefined;
173582
173702
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
173703
+ size?: {
173704
+ width?: number | null | undefined;
173705
+ height?: number | null | undefined;
173706
+ } | null | undefined;
173583
173707
  backgroundColor?: {
173584
173708
  value: string;
173585
173709
  } | null | undefined;
@@ -173737,10 +173861,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
173737
173861
  assetScale?: number | null | undefined;
173738
173862
  } | null | undefined;
173739
173863
  }[] | null | undefined;
173740
- size?: {
173741
- width?: number | null | undefined;
173742
- height?: number | null | undefined;
173743
- } | null | undefined;
173744
173864
  renderCodeProperties?: {
173745
173865
  showCode: boolean;
173746
173866
  showControls?: boolean | undefined;
@@ -173861,6 +173981,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
173861
173981
  } | null | undefined;
173862
173982
  url?: string | null | undefined;
173863
173983
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
173984
+ size?: {
173985
+ width?: number | null | undefined;
173986
+ height?: number | null | undefined;
173987
+ } | null | undefined;
173864
173988
  backgroundColor?: {
173865
173989
  value: string;
173866
173990
  } | null | undefined;
@@ -174018,10 +174142,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
174018
174142
  assetScale?: number | null | undefined;
174019
174143
  } | null | undefined;
174020
174144
  }[] | null | undefined;
174021
- size?: {
174022
- width?: number | null | undefined;
174023
- height?: number | null | undefined;
174024
- } | null | undefined;
174025
174145
  renderCodeProperties?: {
174026
174146
  showCode: boolean;
174027
174147
  showControls?: boolean | undefined;
@@ -174210,6 +174330,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
174210
174330
  } | null | undefined;
174211
174331
  url?: string | null | undefined;
174212
174332
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
174333
+ size?: {
174334
+ width?: number | null | undefined;
174335
+ height?: number | null | undefined;
174336
+ } | null | undefined;
174213
174337
  backgroundColor?: {
174214
174338
  value: string;
174215
174339
  } | null | undefined;
@@ -174367,10 +174491,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
174367
174491
  assetScale?: number | null | undefined;
174368
174492
  } | null | undefined;
174369
174493
  }[] | null | undefined;
174370
- size?: {
174371
- width?: number | null | undefined;
174372
- height?: number | null | undefined;
174373
- } | null | undefined;
174374
174494
  renderCodeProperties?: {
174375
174495
  showCode: boolean;
174376
174496
  showControls?: boolean | undefined;
@@ -174491,6 +174611,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
174491
174611
  } | null | undefined;
174492
174612
  url?: string | null | undefined;
174493
174613
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
174614
+ size?: {
174615
+ width?: number | null | undefined;
174616
+ height?: number | null | undefined;
174617
+ } | null | undefined;
174494
174618
  backgroundColor?: {
174495
174619
  value: string;
174496
174620
  } | null | undefined;
@@ -174648,10 +174772,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
174648
174772
  assetScale?: number | null | undefined;
174649
174773
  } | null | undefined;
174650
174774
  }[] | null | undefined;
174651
- size?: {
174652
- width?: number | null | undefined;
174653
- height?: number | null | undefined;
174654
- } | null | undefined;
174655
174775
  renderCodeProperties?: {
174656
174776
  showCode: boolean;
174657
174777
  showControls?: boolean | undefined;
@@ -174858,6 +174978,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
174858
174978
  } | null | undefined;
174859
174979
  url?: string | null | undefined;
174860
174980
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
174981
+ size?: {
174982
+ width?: number | null | undefined;
174983
+ height?: number | null | undefined;
174984
+ } | null | undefined;
174861
174985
  backgroundColor?: {
174862
174986
  value: string;
174863
174987
  } | null | undefined;
@@ -175015,10 +175139,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
175015
175139
  assetScale?: number | null | undefined;
175016
175140
  } | null | undefined;
175017
175141
  }[] | null | undefined;
175018
- size?: {
175019
- width?: number | null | undefined;
175020
- height?: number | null | undefined;
175021
- } | null | undefined;
175022
175142
  renderCodeProperties?: {
175023
175143
  showCode: boolean;
175024
175144
  showControls?: boolean | undefined;
@@ -175139,6 +175259,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
175139
175259
  } | null | undefined;
175140
175260
  url?: string | null | undefined;
175141
175261
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
175262
+ size?: {
175263
+ width?: number | null | undefined;
175264
+ height?: number | null | undefined;
175265
+ } | null | undefined;
175142
175266
  backgroundColor?: {
175143
175267
  value: string;
175144
175268
  } | null | undefined;
@@ -175296,10 +175420,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
175296
175420
  assetScale?: number | null | undefined;
175297
175421
  } | null | undefined;
175298
175422
  }[] | null | undefined;
175299
- size?: {
175300
- width?: number | null | undefined;
175301
- height?: number | null | undefined;
175302
- } | null | undefined;
175303
175423
  renderCodeProperties?: {
175304
175424
  showCode: boolean;
175305
175425
  showControls?: boolean | undefined;
@@ -175905,6 +176025,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
175905
176025
  } | null | undefined;
175906
176026
  url?: string | null | undefined;
175907
176027
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
176028
+ size?: {
176029
+ width?: number | null | undefined;
176030
+ height?: number | null | undefined;
176031
+ } | null | undefined;
175908
176032
  backgroundColor?: {
175909
176033
  value: string;
175910
176034
  } | null | undefined;
@@ -176062,10 +176186,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
176062
176186
  assetScale?: number | null | undefined;
176063
176187
  } | null | undefined;
176064
176188
  }[] | null | undefined;
176065
- size?: {
176066
- width?: number | null | undefined;
176067
- height?: number | null | undefined;
176068
- } | null | undefined;
176069
176189
  renderCodeProperties?: {
176070
176190
  showCode: boolean;
176071
176191
  showControls?: boolean | undefined;
@@ -176186,6 +176306,10 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
176186
176306
  } | null | undefined;
176187
176307
  url?: string | null | undefined;
176188
176308
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
176309
+ size?: {
176310
+ width?: number | null | undefined;
176311
+ height?: number | null | undefined;
176312
+ } | null | undefined;
176189
176313
  backgroundColor?: {
176190
176314
  value: string;
176191
176315
  } | null | undefined;
@@ -176343,10 +176467,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
176343
176467
  assetScale?: number | null | undefined;
176344
176468
  } | null | undefined;
176345
176469
  }[] | null | undefined;
176346
- size?: {
176347
- width?: number | null | undefined;
176348
- height?: number | null | undefined;
176349
- } | null | undefined;
176350
176470
  renderCodeProperties?: {
176351
176471
  showCode: boolean;
176352
176472
  showControls?: boolean | undefined;
@@ -176693,6 +176813,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
176693
176813
  } | null | undefined;
176694
176814
  url?: string | null | undefined;
176695
176815
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
176816
+ size?: {
176817
+ width?: number | null | undefined;
176818
+ height?: number | null | undefined;
176819
+ } | null | undefined;
176696
176820
  backgroundColor?: {
176697
176821
  value: string;
176698
176822
  } | null | undefined;
@@ -176850,10 +176974,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
176850
176974
  assetScale?: number | null | undefined;
176851
176975
  } | null | undefined;
176852
176976
  }[] | null | undefined;
176853
- size?: {
176854
- width?: number | null | undefined;
176855
- height?: number | null | undefined;
176856
- } | null | undefined;
176857
176977
  renderCodeProperties?: {
176858
176978
  showCode: boolean;
176859
176979
  showControls?: boolean | undefined;
@@ -176974,6 +177094,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
176974
177094
  } | null | undefined;
176975
177095
  url?: string | null | undefined;
176976
177096
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
177097
+ size?: {
177098
+ width?: number | null | undefined;
177099
+ height?: number | null | undefined;
177100
+ } | null | undefined;
176977
177101
  backgroundColor?: {
176978
177102
  value: string;
176979
177103
  } | null | undefined;
@@ -177131,10 +177255,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
177131
177255
  assetScale?: number | null | undefined;
177132
177256
  } | null | undefined;
177133
177257
  }[] | null | undefined;
177134
- size?: {
177135
- width?: number | null | undefined;
177136
- height?: number | null | undefined;
177137
- } | null | undefined;
177138
177258
  renderCodeProperties?: {
177139
177259
  showCode: boolean;
177140
177260
  showControls?: boolean | undefined;
@@ -177323,6 +177443,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
177323
177443
  } | null | undefined;
177324
177444
  url?: string | null | undefined;
177325
177445
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
177446
+ size?: {
177447
+ width?: number | null | undefined;
177448
+ height?: number | null | undefined;
177449
+ } | null | undefined;
177326
177450
  backgroundColor?: {
177327
177451
  value: string;
177328
177452
  } | null | undefined;
@@ -177480,10 +177604,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
177480
177604
  assetScale?: number | null | undefined;
177481
177605
  } | null | undefined;
177482
177606
  }[] | null | undefined;
177483
- size?: {
177484
- width?: number | null | undefined;
177485
- height?: number | null | undefined;
177486
- } | null | undefined;
177487
177607
  renderCodeProperties?: {
177488
177608
  showCode: boolean;
177489
177609
  showControls?: boolean | undefined;
@@ -177604,6 +177724,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
177604
177724
  } | null | undefined;
177605
177725
  url?: string | null | undefined;
177606
177726
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
177727
+ size?: {
177728
+ width?: number | null | undefined;
177729
+ height?: number | null | undefined;
177730
+ } | null | undefined;
177607
177731
  backgroundColor?: {
177608
177732
  value: string;
177609
177733
  } | null | undefined;
@@ -177761,10 +177885,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
177761
177885
  assetScale?: number | null | undefined;
177762
177886
  } | null | undefined;
177763
177887
  }[] | null | undefined;
177764
- size?: {
177765
- width?: number | null | undefined;
177766
- height?: number | null | undefined;
177767
- } | null | undefined;
177768
177888
  renderCodeProperties?: {
177769
177889
  showCode: boolean;
177770
177890
  showControls?: boolean | undefined;
@@ -177971,6 +178091,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
177971
178091
  } | null | undefined;
177972
178092
  url?: string | null | undefined;
177973
178093
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
178094
+ size?: {
178095
+ width?: number | null | undefined;
178096
+ height?: number | null | undefined;
178097
+ } | null | undefined;
177974
178098
  backgroundColor?: {
177975
178099
  value: string;
177976
178100
  } | null | undefined;
@@ -178128,10 +178252,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
178128
178252
  assetScale?: number | null | undefined;
178129
178253
  } | null | undefined;
178130
178254
  }[] | null | undefined;
178131
- size?: {
178132
- width?: number | null | undefined;
178133
- height?: number | null | undefined;
178134
- } | null | undefined;
178135
178255
  renderCodeProperties?: {
178136
178256
  showCode: boolean;
178137
178257
  showControls?: boolean | undefined;
@@ -178252,6 +178372,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
178252
178372
  } | null | undefined;
178253
178373
  url?: string | null | undefined;
178254
178374
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
178375
+ size?: {
178376
+ width?: number | null | undefined;
178377
+ height?: number | null | undefined;
178378
+ } | null | undefined;
178255
178379
  backgroundColor?: {
178256
178380
  value: string;
178257
178381
  } | null | undefined;
@@ -178409,10 +178533,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
178409
178533
  assetScale?: number | null | undefined;
178410
178534
  } | null | undefined;
178411
178535
  }[] | null | undefined;
178412
- size?: {
178413
- width?: number | null | undefined;
178414
- height?: number | null | undefined;
178415
- } | null | undefined;
178416
178536
  renderCodeProperties?: {
178417
178537
  showCode: boolean;
178418
178538
  showControls?: boolean | undefined;
@@ -180332,6 +180452,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
180332
180452
  } | null | undefined;
180333
180453
  url?: string | null | undefined;
180334
180454
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
180455
+ size?: {
180456
+ width?: number | null | undefined;
180457
+ height?: number | null | undefined;
180458
+ } | null | undefined;
180335
180459
  backgroundColor?: {
180336
180460
  value: string;
180337
180461
  } | null | undefined;
@@ -180489,10 +180613,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
180489
180613
  assetScale?: number | null | undefined;
180490
180614
  } | null | undefined;
180491
180615
  }[] | null | undefined;
180492
- size?: {
180493
- width?: number | null | undefined;
180494
- height?: number | null | undefined;
180495
- } | null | undefined;
180496
180616
  renderCodeProperties?: {
180497
180617
  showCode: boolean;
180498
180618
  showControls?: boolean | undefined;
@@ -180613,6 +180733,10 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
180613
180733
  } | null | undefined;
180614
180734
  url?: string | null | undefined;
180615
180735
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
180736
+ size?: {
180737
+ width?: number | null | undefined;
180738
+ height?: number | null | undefined;
180739
+ } | null | undefined;
180616
180740
  backgroundColor?: {
180617
180741
  value: string;
180618
180742
  } | null | undefined;
@@ -180770,10 +180894,6 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<z.objectUtil.
180770
180894
  assetScale?: number | null | undefined;
180771
180895
  } | null | undefined;
180772
180896
  }[] | null | undefined;
180773
- size?: {
180774
- width?: number | null | undefined;
180775
- height?: number | null | undefined;
180776
- } | null | undefined;
180777
180897
  renderCodeProperties?: {
180778
180898
  showCode: boolean;
180779
180899
  showControls?: boolean | undefined;
@@ -181282,6 +181402,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
181282
181402
  } | null | undefined;
181283
181403
  url?: string | null | undefined;
181284
181404
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
181405
+ size?: {
181406
+ width?: number | null | undefined;
181407
+ height?: number | null | undefined;
181408
+ } | null | undefined;
181285
181409
  backgroundColor?: {
181286
181410
  value: string;
181287
181411
  } | null | undefined;
@@ -181439,10 +181563,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
181439
181563
  assetScale?: number | null | undefined;
181440
181564
  } | null | undefined;
181441
181565
  }[] | null | undefined;
181442
- size?: {
181443
- width?: number | null | undefined;
181444
- height?: number | null | undefined;
181445
- } | null | undefined;
181446
181566
  renderCodeProperties?: {
181447
181567
  showCode: boolean;
181448
181568
  showControls?: boolean | undefined;
@@ -181563,6 +181683,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
181563
181683
  } | null | undefined;
181564
181684
  url?: string | null | undefined;
181565
181685
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
181686
+ size?: {
181687
+ width?: number | null | undefined;
181688
+ height?: number | null | undefined;
181689
+ } | null | undefined;
181566
181690
  backgroundColor?: {
181567
181691
  value: string;
181568
181692
  } | null | undefined;
@@ -181720,10 +181844,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
181720
181844
  assetScale?: number | null | undefined;
181721
181845
  } | null | undefined;
181722
181846
  }[] | null | undefined;
181723
- size?: {
181724
- width?: number | null | undefined;
181725
- height?: number | null | undefined;
181726
- } | null | undefined;
181727
181847
  renderCodeProperties?: {
181728
181848
  showCode: boolean;
181729
181849
  showControls?: boolean | undefined;
@@ -181912,6 +182032,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
181912
182032
  } | null | undefined;
181913
182033
  url?: string | null | undefined;
181914
182034
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
182035
+ size?: {
182036
+ width?: number | null | undefined;
182037
+ height?: number | null | undefined;
182038
+ } | null | undefined;
181915
182039
  backgroundColor?: {
181916
182040
  value: string;
181917
182041
  } | null | undefined;
@@ -182069,10 +182193,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
182069
182193
  assetScale?: number | null | undefined;
182070
182194
  } | null | undefined;
182071
182195
  }[] | null | undefined;
182072
- size?: {
182073
- width?: number | null | undefined;
182074
- height?: number | null | undefined;
182075
- } | null | undefined;
182076
182196
  renderCodeProperties?: {
182077
182197
  showCode: boolean;
182078
182198
  showControls?: boolean | undefined;
@@ -182193,6 +182313,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
182193
182313
  } | null | undefined;
182194
182314
  url?: string | null | undefined;
182195
182315
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
182316
+ size?: {
182317
+ width?: number | null | undefined;
182318
+ height?: number | null | undefined;
182319
+ } | null | undefined;
182196
182320
  backgroundColor?: {
182197
182321
  value: string;
182198
182322
  } | null | undefined;
@@ -182350,10 +182474,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
182350
182474
  assetScale?: number | null | undefined;
182351
182475
  } | null | undefined;
182352
182476
  }[] | null | undefined;
182353
- size?: {
182354
- width?: number | null | undefined;
182355
- height?: number | null | undefined;
182356
- } | null | undefined;
182357
182477
  renderCodeProperties?: {
182358
182478
  showCode: boolean;
182359
182479
  showControls?: boolean | undefined;
@@ -182560,6 +182680,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
182560
182680
  } | null | undefined;
182561
182681
  url?: string | null | undefined;
182562
182682
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
182683
+ size?: {
182684
+ width?: number | null | undefined;
182685
+ height?: number | null | undefined;
182686
+ } | null | undefined;
182563
182687
  backgroundColor?: {
182564
182688
  value: string;
182565
182689
  } | null | undefined;
@@ -182717,10 +182841,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
182717
182841
  assetScale?: number | null | undefined;
182718
182842
  } | null | undefined;
182719
182843
  }[] | null | undefined;
182720
- size?: {
182721
- width?: number | null | undefined;
182722
- height?: number | null | undefined;
182723
- } | null | undefined;
182724
182844
  renderCodeProperties?: {
182725
182845
  showCode: boolean;
182726
182846
  showControls?: boolean | undefined;
@@ -182841,6 +182961,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
182841
182961
  } | null | undefined;
182842
182962
  url?: string | null | undefined;
182843
182963
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
182964
+ size?: {
182965
+ width?: number | null | undefined;
182966
+ height?: number | null | undefined;
182967
+ } | null | undefined;
182844
182968
  backgroundColor?: {
182845
182969
  value: string;
182846
182970
  } | null | undefined;
@@ -182998,10 +183122,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
182998
183122
  assetScale?: number | null | undefined;
182999
183123
  } | null | undefined;
183000
183124
  }[] | null | undefined;
183001
- size?: {
183002
- width?: number | null | undefined;
183003
- height?: number | null | undefined;
183004
- } | null | undefined;
183005
183125
  renderCodeProperties?: {
183006
183126
  showCode: boolean;
183007
183127
  showControls?: boolean | undefined;
@@ -184597,6 +184717,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
184597
184717
  } | null | undefined;
184598
184718
  url?: string | null | undefined;
184599
184719
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
184720
+ size?: {
184721
+ width?: number | null | undefined;
184722
+ height?: number | null | undefined;
184723
+ } | null | undefined;
184600
184724
  backgroundColor?: {
184601
184725
  value: string;
184602
184726
  } | null | undefined;
@@ -184754,10 +184878,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
184754
184878
  assetScale?: number | null | undefined;
184755
184879
  } | null | undefined;
184756
184880
  }[] | null | undefined;
184757
- size?: {
184758
- width?: number | null | undefined;
184759
- height?: number | null | undefined;
184760
- } | null | undefined;
184761
184881
  renderCodeProperties?: {
184762
184882
  showCode: boolean;
184763
184883
  showControls?: boolean | undefined;
@@ -184878,6 +184998,10 @@ declare const RestoredDocumentationPage: z.ZodObject<{
184878
184998
  } | null | undefined;
184879
184999
  url?: string | null | undefined;
184880
185000
  tokenType?: "String" | "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
185001
+ size?: {
185002
+ width?: number | null | undefined;
185003
+ height?: number | null | undefined;
185004
+ } | null | undefined;
184881
185005
  backgroundColor?: {
184882
185006
  value: string;
184883
185007
  } | null | undefined;
@@ -185035,10 +185159,6 @@ declare const RestoredDocumentationPage: z.ZodObject<{
185035
185159
  assetScale?: number | null | undefined;
185036
185160
  } | null | undefined;
185037
185161
  }[] | null | undefined;
185038
- size?: {
185039
- width?: number | null | undefined;
185040
- height?: number | null | undefined;
185041
- } | null | undefined;
185042
185162
  renderCodeProperties?: {
185043
185163
  showCode: boolean;
185044
185164
  showControls?: boolean | undefined;
@@ -187193,4 +187313,4 @@ type PersonalAccessTokenWithUser = {
187193
187313
  token: PersonalAccessToken;
187194
187314
  };
187195
187315
 
187196
- export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
187316
+ export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };