@supernova-studio/model 0.47.0 → 0.47.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1,6 +1,67 @@
1
- import { z, ZodType, ZodTypeDef, ZodSchema } from 'zod';
1
+ import { ZodType, ZodTypeDef, z, ZodSchema } from 'zod';
2
2
  import slugifyImplementation from '@sindresorhus/slugify';
3
3
 
4
+ type DbCreateInputOmit<T> = Omit<T, "id" | "createdAt" | "updatedAt">;
5
+ type DbUpdateInputOmit<T> = Omit<T, "createdAt" | "updatedAt" | "persistentId">;
6
+ type DbUpdate<T extends {
7
+ id: string;
8
+ }> = Partial<OptionalToNullable<DbUpdateInputOmit<Omit<T, "id">>>> & Pick<T, "id">;
9
+ type PickOptional<T> = {
10
+ [P in keyof T as undefined extends T[P] ? P : never]: T[P];
11
+ };
12
+ type PickNotOptional<T> = {
13
+ [P in keyof T as undefined extends T[P] ? never : P]: T[P];
14
+ };
15
+ type OptionalToNullable<T> = {
16
+ [K in keyof PickOptional<T>]-?: Exclude<T[K], undefined> | null;
17
+ } & {
18
+ [K in keyof PickNotOptional<T>]: T[K];
19
+ };
20
+ declare function zodCreateInputOmit(): {
21
+ readonly id: true;
22
+ readonly createdAt: true;
23
+ readonly updatedAt: true;
24
+ };
25
+ declare function zodUpdateInputOmit(): {
26
+ readonly id: true;
27
+ readonly createdAt: true;
28
+ readonly updatedAt: true;
29
+ readonly persistentId: true;
30
+ };
31
+
32
+ /**
33
+ * Allows both null and undefined as input values in addition to the actual value,
34
+ * but coerces them both to undefined.
35
+ */
36
+ declare function nullishToOptional<I, O>(type: ZodType<I, ZodTypeDef, O>): z.ZodEffects<z.ZodOptional<z.ZodNullable<ZodType<I, ZodTypeDef, O>>>, NonNullable<I> | undefined, O | null | undefined>;
37
+
38
+ declare const AssetDeleteScheduleStatus: z.ZodEnum<["InProgress", "Pending"]>;
39
+ type AssetDeleteScheduleStatus = z.infer<typeof AssetDeleteScheduleStatus>;
40
+ declare const AssetDeleteSchedule: z.ZodObject<{
41
+ id: z.ZodString;
42
+ path: z.ZodString;
43
+ createdAt: z.ZodDate;
44
+ deleteAt: z.ZodDate;
45
+ isFolder: z.ZodBoolean;
46
+ status: z.ZodEnum<["InProgress", "Pending"]>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ id: string;
49
+ createdAt: Date;
50
+ path: string;
51
+ status: "InProgress" | "Pending";
52
+ deleteAt: Date;
53
+ isFolder: boolean;
54
+ }, {
55
+ id: string;
56
+ createdAt: Date;
57
+ path: string;
58
+ status: "InProgress" | "Pending";
59
+ deleteAt: Date;
60
+ isFolder: boolean;
61
+ }>;
62
+ type AssetDeleteSchedule = z.infer<typeof AssetDeleteSchedule>;
63
+ type AssetDeleteScheduleDbInput = DbCreateInputOmit<AssetDeleteSchedule>;
64
+
4
65
  declare const PluginOAuthRequestSchema: z.ZodObject<{
5
66
  id: z.ZodString;
6
67
  codeChallenge: z.ZodString;
@@ -12,21 +73,21 @@ declare const PluginOAuthRequestSchema: z.ZodObject<{
12
73
  createdAt: z.ZodDate;
13
74
  }, "strip", z.ZodTypeAny, {
14
75
  id: string;
76
+ createdAt: Date;
15
77
  codeChallenge: string;
16
78
  readKey: string;
17
79
  writeKey: string;
18
80
  readKeyConsumed: boolean;
19
81
  writeKeyConsumed: boolean;
20
- createdAt: Date;
21
82
  oAuthCode?: string | undefined;
22
83
  }, {
23
84
  id: string;
85
+ createdAt: Date;
24
86
  codeChallenge: string;
25
87
  readKey: string;
26
88
  writeKey: string;
27
89
  readKeyConsumed: boolean;
28
90
  writeKeyConsumed: boolean;
29
- createdAt: Date;
30
91
  oAuthCode?: string | undefined;
31
92
  }>;
32
93
  type PluginOAuthRequest = z.infer<typeof PluginOAuthRequestSchema>;
@@ -1856,6 +1917,7 @@ declare const UserSession: z.ZodObject<{
1856
1917
  jobTitle: z.ZodOptional<z.ZodString>;
1857
1918
  phase: z.ZodOptional<z.ZodString>;
1858
1919
  jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
1920
+ designSystemName: z.ZodOptional<z.ZodString>;
1859
1921
  }, "strip", z.ZodTypeAny, {
1860
1922
  companyName?: string | undefined;
1861
1923
  numberOfPeopleInOrg?: string | undefined;
@@ -1864,6 +1926,7 @@ declare const UserSession: z.ZodObject<{
1864
1926
  jobTitle?: string | undefined;
1865
1927
  phase?: string | undefined;
1866
1928
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
1929
+ designSystemName?: string | undefined;
1867
1930
  }, {
1868
1931
  companyName?: string | undefined;
1869
1932
  numberOfPeopleInOrg?: string | undefined;
@@ -1872,6 +1935,7 @@ declare const UserSession: z.ZodObject<{
1872
1935
  jobTitle?: string | undefined;
1873
1936
  phase?: string | undefined;
1874
1937
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
1938
+ designSystemName?: string | undefined;
1875
1939
  }>>;
1876
1940
  }, "strip", z.ZodTypeAny, {
1877
1941
  name: string;
@@ -1885,6 +1949,7 @@ declare const UserSession: z.ZodObject<{
1885
1949
  jobTitle?: string | undefined;
1886
1950
  phase?: string | undefined;
1887
1951
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
1952
+ designSystemName?: string | undefined;
1888
1953
  } | undefined;
1889
1954
  }, {
1890
1955
  name: string;
@@ -1898,6 +1963,7 @@ declare const UserSession: z.ZodObject<{
1898
1963
  jobTitle?: string | undefined;
1899
1964
  phase?: string | undefined;
1900
1965
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
1966
+ designSystemName?: string | undefined;
1901
1967
  } | undefined;
1902
1968
  }>;
1903
1969
  linkedIntegrations: z.ZodOptional<z.ZodObject<{
@@ -2113,6 +2179,7 @@ declare const UserSession: z.ZodObject<{
2113
2179
  jobTitle?: string | undefined;
2114
2180
  phase?: string | undefined;
2115
2181
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
2182
+ designSystemName?: string | undefined;
2116
2183
  } | undefined;
2117
2184
  };
2118
2185
  isProtected: boolean;
@@ -2177,6 +2244,7 @@ declare const UserSession: z.ZodObject<{
2177
2244
  jobTitle?: string | undefined;
2178
2245
  phase?: string | undefined;
2179
2246
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
2247
+ designSystemName?: string | undefined;
2180
2248
  } | undefined;
2181
2249
  };
2182
2250
  isProtected: boolean;
@@ -2255,6 +2323,7 @@ declare const UserSession: z.ZodObject<{
2255
2323
  jobTitle?: string | undefined;
2256
2324
  phase?: string | undefined;
2257
2325
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
2326
+ designSystemName?: string | undefined;
2258
2327
  } | undefined;
2259
2328
  };
2260
2329
  isProtected: boolean;
@@ -2333,6 +2402,7 @@ declare const UserSession: z.ZodObject<{
2333
2402
  jobTitle?: string | undefined;
2334
2403
  phase?: string | undefined;
2335
2404
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
2405
+ designSystemName?: string | undefined;
2336
2406
  } | undefined;
2337
2407
  };
2338
2408
  isProtected: boolean;
@@ -2402,40 +2472,6 @@ declare const AssetDynamoRecord: z.ZodObject<{
2402
2472
  }>;
2403
2473
  type AssetDynamoRecord = z.infer<typeof AssetDynamoRecord>;
2404
2474
 
2405
- type DbCreateInputOmit<T> = Omit<T, "id" | "createdAt" | "updatedAt">;
2406
- type DbUpdateInputOmit<T> = Omit<T, "createdAt" | "updatedAt" | "persistentId">;
2407
- type DbUpdate<T extends {
2408
- id: string;
2409
- }> = Partial<OptionalToNullable<DbUpdateInputOmit<Omit<T, "id">>>> & Pick<T, "id">;
2410
- type PickOptional<T> = {
2411
- [P in keyof T as undefined extends T[P] ? P : never]: T[P];
2412
- };
2413
- type PickNotOptional<T> = {
2414
- [P in keyof T as undefined extends T[P] ? never : P]: T[P];
2415
- };
2416
- type OptionalToNullable<T> = {
2417
- [K in keyof PickOptional<T>]-?: Exclude<T[K], undefined> | null;
2418
- } & {
2419
- [K in keyof PickNotOptional<T>]: T[K];
2420
- };
2421
- declare function zodCreateInputOmit(): {
2422
- readonly id: true;
2423
- readonly createdAt: true;
2424
- readonly updatedAt: true;
2425
- };
2426
- declare function zodUpdateInputOmit(): {
2427
- readonly id: true;
2428
- readonly createdAt: true;
2429
- readonly updatedAt: true;
2430
- readonly persistentId: true;
2431
- };
2432
-
2433
- /**
2434
- * Allows both null and undefined as input values in addition to the actual value,
2435
- * but coerces them both to undefined.
2436
- */
2437
- declare function nullishToOptional<I, O>(type: ZodType<I, ZodTypeDef, O>): z.ZodEffects<z.ZodOptional<z.ZodNullable<ZodType<I, ZodTypeDef, O>>>, NonNullable<I> | undefined, O | null | undefined>;
2438
-
2439
2475
  declare const AssetReference: z.ZodObject<{
2440
2476
  id: z.ZodString;
2441
2477
  designSystemVersionId: z.ZodString;
@@ -3497,7 +3533,7 @@ declare const ImportJob: z.ZodObject<{
3497
3533
  id: string;
3498
3534
  createdAt: Date;
3499
3535
  updatedAt: Date;
3500
- state: "Success" | "PendingInput" | "Queued" | "InProgress" | "Failed";
3536
+ state: "InProgress" | "Success" | "PendingInput" | "Queued" | "Failed";
3501
3537
  designSystemId: string;
3502
3538
  designSystemVersionId: string;
3503
3539
  importContextId: string;
@@ -3510,7 +3546,7 @@ declare const ImportJob: z.ZodObject<{
3510
3546
  id: string;
3511
3547
  createdAt: Date;
3512
3548
  updatedAt: Date;
3513
- state: "Success" | "PendingInput" | "Queued" | "InProgress" | "Failed";
3549
+ state: "InProgress" | "Success" | "PendingInput" | "Queued" | "Failed";
3514
3550
  designSystemId: string;
3515
3551
  designSystemVersionId: string;
3516
3552
  importContextId: string;
@@ -3653,12 +3689,15 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
3653
3689
  items: z.ZodOptional<z.ZodObject<{
3654
3690
  numberOfItems: z.ZodNumber;
3655
3691
  allowLinks: z.ZodBoolean;
3692
+ newItemLabel: z.ZodOptional<z.ZodString>;
3656
3693
  }, "strip", z.ZodTypeAny, {
3657
3694
  numberOfItems: number;
3658
3695
  allowLinks: boolean;
3696
+ newItemLabel?: string | undefined;
3659
3697
  }, {
3660
3698
  numberOfItems: number;
3661
3699
  allowLinks: boolean;
3700
+ newItemLabel?: string | undefined;
3662
3701
  }>>;
3663
3702
  entities: z.ZodOptional<z.ZodObject<{
3664
3703
  selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
@@ -3675,6 +3714,7 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
3675
3714
  items?: {
3676
3715
  numberOfItems: number;
3677
3716
  allowLinks: boolean;
3717
+ newItemLabel?: string | undefined;
3678
3718
  } | undefined;
3679
3719
  entities?: {
3680
3720
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -3685,6 +3725,7 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
3685
3725
  items?: {
3686
3726
  numberOfItems: number;
3687
3727
  allowLinks: boolean;
3728
+ newItemLabel?: string | undefined;
3688
3729
  } | undefined;
3689
3730
  entities?: {
3690
3731
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -3905,12 +3946,15 @@ declare const PageBlockDefinition: z.ZodObject<{
3905
3946
  items: z.ZodOptional<z.ZodObject<{
3906
3947
  numberOfItems: z.ZodNumber;
3907
3948
  allowLinks: z.ZodBoolean;
3949
+ newItemLabel: z.ZodOptional<z.ZodString>;
3908
3950
  }, "strip", z.ZodTypeAny, {
3909
3951
  numberOfItems: number;
3910
3952
  allowLinks: boolean;
3953
+ newItemLabel?: string | undefined;
3911
3954
  }, {
3912
3955
  numberOfItems: number;
3913
3956
  allowLinks: boolean;
3957
+ newItemLabel?: string | undefined;
3914
3958
  }>>;
3915
3959
  entities: z.ZodOptional<z.ZodObject<{
3916
3960
  selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
@@ -3927,6 +3971,7 @@ declare const PageBlockDefinition: z.ZodObject<{
3927
3971
  items?: {
3928
3972
  numberOfItems: number;
3929
3973
  allowLinks: boolean;
3974
+ newItemLabel?: string | undefined;
3930
3975
  } | undefined;
3931
3976
  entities?: {
3932
3977
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -3937,6 +3982,7 @@ declare const PageBlockDefinition: z.ZodObject<{
3937
3982
  items?: {
3938
3983
  numberOfItems: number;
3939
3984
  allowLinks: boolean;
3985
+ newItemLabel?: string | undefined;
3940
3986
  } | undefined;
3941
3987
  entities?: {
3942
3988
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -3983,8 +4029,8 @@ declare const PageBlockDefinition: z.ZodObject<{
3983
4029
  }>>;
3984
4030
  }, "strip", z.ZodTypeAny, {
3985
4031
  id: string;
3986
- name: string;
3987
4032
  description: string;
4033
+ name: string;
3988
4034
  item: {
3989
4035
  properties: {
3990
4036
  id: string;
@@ -4031,6 +4077,7 @@ declare const PageBlockDefinition: z.ZodObject<{
4031
4077
  items?: {
4032
4078
  numberOfItems: number;
4033
4079
  allowLinks: boolean;
4080
+ newItemLabel?: string | undefined;
4034
4081
  } | undefined;
4035
4082
  entities?: {
4036
4083
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -4054,8 +4101,8 @@ declare const PageBlockDefinition: z.ZodObject<{
4054
4101
  } | undefined;
4055
4102
  }, {
4056
4103
  id: string;
4057
- name: string;
4058
4104
  description: string;
4105
+ name: string;
4059
4106
  item: {
4060
4107
  properties: {
4061
4108
  id: string;
@@ -4102,6 +4149,7 @@ declare const PageBlockDefinition: z.ZodObject<{
4102
4149
  items?: {
4103
4150
  numberOfItems: number;
4104
4151
  allowLinks: boolean;
4152
+ newItemLabel?: string | undefined;
4105
4153
  } | undefined;
4106
4154
  entities?: {
4107
4155
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -4126,6 +4174,7 @@ declare const PageBlockDefinition: z.ZodObject<{
4126
4174
  }>;
4127
4175
  type PageBlockDefinition = z.infer<typeof PageBlockDefinition>;
4128
4176
 
4177
+ declare const PageBlockDefinitionSingleSelectPropertyColor: z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>;
4129
4178
  declare const PageBlockDefinitionPropertyType: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
4130
4179
  type PageBlockDefinitionPropertyType = z.infer<typeof PageBlockDefinitionPropertyType>;
4131
4180
  declare const PageBlockDefinitionRichTextPropertyStyle: z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Quote", "Callout", "Default"]>;
@@ -4150,14 +4199,17 @@ declare const PageBlockDefinitionSelectChoice: z.ZodObject<{
4150
4199
  value: z.ZodString;
4151
4200
  name: z.ZodString;
4152
4201
  icon: z.ZodOptional<z.ZodString>;
4202
+ color: z.ZodOptional<z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>>;
4153
4203
  }, "strip", z.ZodTypeAny, {
4154
4204
  value: string;
4155
4205
  name: string;
4156
4206
  icon?: string | undefined;
4207
+ color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
4157
4208
  }, {
4158
4209
  value: string;
4159
4210
  name: string;
4160
4211
  icon?: string | undefined;
4212
+ color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
4161
4213
  }>;
4162
4214
  type PageBlockDefinitionSelectChoice = z.infer<typeof PageBlockDefinitionSelectChoice>;
4163
4215
  declare const PageBlockDefinitionUntypedPropertyOptions: z.ZodRecord<z.ZodString, z.ZodAny>;
@@ -4202,14 +4254,17 @@ declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
4202
4254
  value: z.ZodString;
4203
4255
  name: z.ZodString;
4204
4256
  icon: z.ZodOptional<z.ZodString>;
4257
+ color: z.ZodOptional<z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>>;
4205
4258
  }, "strip", z.ZodTypeAny, {
4206
4259
  value: string;
4207
4260
  name: string;
4208
4261
  icon?: string | undefined;
4262
+ color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
4209
4263
  }, {
4210
4264
  value: string;
4211
4265
  name: string;
4212
4266
  icon?: string | undefined;
4267
+ color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
4213
4268
  }>, "many">;
4214
4269
  }, "strip", z.ZodTypeAny, {
4215
4270
  defaultChoice: string;
@@ -4217,6 +4272,7 @@ declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
4217
4272
  value: string;
4218
4273
  name: string;
4219
4274
  icon?: string | undefined;
4275
+ color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
4220
4276
  }[];
4221
4277
  singleSelectStyle?: "Select" | "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
4222
4278
  }, {
@@ -4225,6 +4281,7 @@ declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
4225
4281
  value: string;
4226
4282
  name: string;
4227
4283
  icon?: string | undefined;
4284
+ color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
4228
4285
  }[];
4229
4286
  singleSelectStyle?: "Select" | "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
4230
4287
  }>;
@@ -4519,9 +4576,9 @@ declare const DocumentationPageGroup: z.ZodObject<{
4519
4576
  }, "strip", z.ZodTypeAny, {
4520
4577
  id: string;
4521
4578
  createdAt: Date;
4522
- type: "ElementGroup";
4523
4579
  updatedAt: Date;
4524
4580
  persistentId: string;
4581
+ type: "ElementGroup";
4525
4582
  designSystemVersionId: string;
4526
4583
  shortPersistentId: string;
4527
4584
  childType: "DocumentationPage";
@@ -4533,9 +4590,9 @@ declare const DocumentationPageGroup: z.ZodObject<{
4533
4590
  }, {
4534
4591
  id: string;
4535
4592
  createdAt: Date;
4536
- type: "ElementGroup";
4537
4593
  updatedAt: Date;
4538
4594
  persistentId: string;
4595
+ type: "ElementGroup";
4539
4596
  designSystemVersionId: string;
4540
4597
  shortPersistentId: string;
4541
4598
  childType: "DocumentationPage";
@@ -7401,9 +7458,9 @@ declare const DocumentationPage: z.ZodObject<{
7401
7458
  }, "strip", z.ZodTypeAny, {
7402
7459
  id: string;
7403
7460
  createdAt: Date;
7404
- type: "DocumentationPage";
7405
7461
  updatedAt: Date;
7406
7462
  persistentId: string;
7463
+ type: "DocumentationPage";
7407
7464
  designSystemVersionId: string;
7408
7465
  shortPersistentId: string;
7409
7466
  sortOrder: number;
@@ -7414,9 +7471,9 @@ declare const DocumentationPage: z.ZodObject<{
7414
7471
  }, {
7415
7472
  id: string;
7416
7473
  createdAt: Date;
7417
- type: "DocumentationPage";
7418
7474
  updatedAt: Date;
7419
7475
  persistentId: string;
7476
+ type: "DocumentationPage";
7420
7477
  designSystemVersionId: string;
7421
7478
  shortPersistentId: string;
7422
7479
  sortOrder: number;
@@ -7427,6 +7484,71 @@ declare const DocumentationPage: z.ZodObject<{
7427
7484
  }>;
7428
7485
  type DocumentationPage = z.infer<typeof DocumentationPage>;
7429
7486
 
7487
+ declare const DocumentationComment: z.ZodObject<{
7488
+ id: z.ZodString;
7489
+ authorId: z.ZodString;
7490
+ threadId: z.ZodString;
7491
+ roomId: z.ZodString;
7492
+ createdAt: z.ZodDate;
7493
+ editedAt: z.ZodOptional<z.ZodDate>;
7494
+ deletedAt: z.ZodOptional<z.ZodDate>;
7495
+ body: z.ZodString;
7496
+ }, "strip", z.ZodTypeAny, {
7497
+ id: string;
7498
+ createdAt: Date;
7499
+ authorId: string;
7500
+ threadId: string;
7501
+ roomId: string;
7502
+ body: string;
7503
+ editedAt?: Date | undefined;
7504
+ deletedAt?: Date | undefined;
7505
+ }, {
7506
+ id: string;
7507
+ createdAt: Date;
7508
+ authorId: string;
7509
+ threadId: string;
7510
+ roomId: string;
7511
+ body: string;
7512
+ editedAt?: Date | undefined;
7513
+ deletedAt?: Date | undefined;
7514
+ }>;
7515
+ type DocumentationComment = z.infer<typeof DocumentationComment>;
7516
+ declare const DocumentationCommentThread: z.ZodObject<{
7517
+ id: z.ZodString;
7518
+ roomId: z.ZodString;
7519
+ pagePersistentId: z.ZodString;
7520
+ brandId: z.ZodString;
7521
+ designSystemVersionId: z.ZodString;
7522
+ designSystemId: z.ZodString;
7523
+ blockId: z.ZodOptional<z.ZodString>;
7524
+ resolved: z.ZodBoolean;
7525
+ createdAt: z.ZodDate;
7526
+ updatedAt: z.ZodDate;
7527
+ }, "strip", z.ZodTypeAny, {
7528
+ id: string;
7529
+ createdAt: Date;
7530
+ updatedAt: Date;
7531
+ designSystemId: string;
7532
+ designSystemVersionId: string;
7533
+ brandId: string;
7534
+ roomId: string;
7535
+ pagePersistentId: string;
7536
+ resolved: boolean;
7537
+ blockId?: string | undefined;
7538
+ }, {
7539
+ id: string;
7540
+ createdAt: Date;
7541
+ updatedAt: Date;
7542
+ designSystemId: string;
7543
+ designSystemVersionId: string;
7544
+ brandId: string;
7545
+ roomId: string;
7546
+ pagePersistentId: string;
7547
+ resolved: boolean;
7548
+ blockId?: string | undefined;
7549
+ }>;
7550
+ type DocumentationCommentThread = z.infer<typeof DocumentationCommentThread>;
7551
+
7430
7552
  declare const TokenDataAliasSchema: z.ZodObject<{
7431
7553
  aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
7432
7554
  }, "strip", z.ZodTypeAny, {
@@ -8379,10 +8501,13 @@ declare const PageBlockFigmaFrameProperties: z.ZodObject<{
8379
8501
  }>;
8380
8502
  declare const PageBlockRenderCodeProperties: z.ZodObject<{
8381
8503
  showCode: z.ZodBoolean;
8504
+ showControls: z.ZodOptional<z.ZodBoolean>;
8382
8505
  }, "strip", z.ZodTypeAny, {
8383
8506
  showCode: boolean;
8507
+ showControls?: boolean | undefined;
8384
8508
  }, {
8385
8509
  showCode: boolean;
8510
+ showControls?: boolean | undefined;
8386
8511
  }>;
8387
8512
  declare const PageBlockAssetComponent: z.ZodObject<{
8388
8513
  persistentId: z.ZodString;
@@ -9883,12 +10008,16 @@ declare const PageBlockBaseV1: z.ZodObject<{
9883
10008
  } | null | undefined>;
9884
10009
  renderCodeProperties: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
9885
10010
  showCode: boolean;
10011
+ showControls?: boolean | undefined;
9886
10012
  }, z.ZodTypeDef, {
9887
10013
  showCode: boolean;
10014
+ showControls?: boolean | undefined;
9888
10015
  }>>>, {
9889
10016
  showCode: boolean;
10017
+ showControls?: boolean | undefined;
9890
10018
  } | undefined, {
9891
10019
  showCode: boolean;
10020
+ showControls?: boolean | undefined;
9892
10021
  } | null | undefined>;
9893
10022
  componentAssets: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
9894
10023
  persistentId: string;
@@ -9997,8 +10126,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
9997
10126
  blacklistedElementProperties: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
9998
10127
  userMetadata: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
9999
10128
  }, "strip", z.ZodTypeAny, {
10000
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
10001
10129
  persistentId: string;
10130
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
10002
10131
  designObjectId?: string | undefined;
10003
10132
  designObjectIds?: string[] | undefined;
10004
10133
  tokenType?: NonNullable<"Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur"> | undefined;
@@ -10145,6 +10274,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
10145
10274
  } | undefined;
10146
10275
  renderCodeProperties?: {
10147
10276
  showCode: boolean;
10277
+ showControls?: boolean | undefined;
10148
10278
  } | undefined;
10149
10279
  componentAssets?: {
10150
10280
  persistentId: string;
@@ -10178,8 +10308,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
10178
10308
  blacklistedElementProperties?: string[] | undefined;
10179
10309
  userMetadata?: string | undefined;
10180
10310
  }, {
10181
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
10182
10311
  persistentId: string;
10312
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
10183
10313
  designObjectId?: string | null | undefined;
10184
10314
  designObjectIds?: string[] | null | undefined;
10185
10315
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -10326,6 +10456,7 @@ declare const PageBlockBaseV1: z.ZodObject<{
10326
10456
  } | null | undefined;
10327
10457
  renderCodeProperties?: {
10328
10458
  showCode: boolean;
10459
+ showControls?: boolean | undefined;
10329
10460
  } | null | undefined;
10330
10461
  componentAssets?: {
10331
10462
  persistentId: string;
@@ -12951,8 +13082,8 @@ type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
12951
13082
 
12952
13083
  declare const DocumentationPageDataV1: z.ZodObject<{
12953
13084
  blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
12954
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
12955
13085
  persistentId: string;
13086
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
12956
13087
  designObjectId?: string | null | undefined;
12957
13088
  designObjectIds?: string[] | null | undefined;
12958
13089
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -13099,6 +13230,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
13099
13230
  } | null | undefined;
13100
13231
  renderCodeProperties?: {
13101
13232
  showCode: boolean;
13233
+ showControls?: boolean | undefined;
13102
13234
  } | null | undefined;
13103
13235
  componentAssets?: {
13104
13236
  persistentId: string;
@@ -13133,8 +13265,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
13133
13265
  userMetadata?: string | null | undefined;
13134
13266
  } & {
13135
13267
  children: ({
13136
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
13137
13268
  persistentId: string;
13269
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
13138
13270
  designObjectId?: string | null | undefined;
13139
13271
  designObjectIds?: string[] | null | undefined;
13140
13272
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -13281,6 +13413,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
13281
13413
  } | null | undefined;
13282
13414
  renderCodeProperties?: {
13283
13415
  showCode: boolean;
13416
+ showControls?: boolean | undefined;
13284
13417
  } | null | undefined;
13285
13418
  componentAssets?: {
13286
13419
  persistentId: string;
@@ -13681,8 +13814,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
13681
13814
  } | undefined;
13682
13815
  }, {
13683
13816
  blocks: ({
13684
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
13685
13817
  persistentId: string;
13818
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
13686
13819
  designObjectId?: string | null | undefined;
13687
13820
  designObjectIds?: string[] | null | undefined;
13688
13821
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -13829,6 +13962,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
13829
13962
  } | null | undefined;
13830
13963
  renderCodeProperties?: {
13831
13964
  showCode: boolean;
13965
+ showControls?: boolean | undefined;
13832
13966
  } | null | undefined;
13833
13967
  componentAssets?: {
13834
13968
  persistentId: string;
@@ -13863,8 +13997,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
13863
13997
  userMetadata?: string | null | undefined;
13864
13998
  } & {
13865
13999
  children: ({
13866
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
13867
14000
  persistentId: string;
14001
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
13868
14002
  designObjectId?: string | null | undefined;
13869
14003
  designObjectIds?: string[] | null | undefined;
13870
14004
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -14011,6 +14145,7 @@ declare const DocumentationPageDataV1: z.ZodObject<{
14011
14145
  } | null | undefined;
14012
14146
  renderCodeProperties?: {
14013
14147
  showCode: boolean;
14148
+ showControls?: boolean | undefined;
14014
14149
  } | null | undefined;
14015
14150
  componentAssets?: {
14016
14151
  persistentId: string;
@@ -20792,8 +20927,8 @@ declare const DocumentationPageV1: z.ZodObject<{
20792
20927
  shortPersistentId: z.ZodString;
20793
20928
  data: z.ZodObject<{
20794
20929
  blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
20795
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
20796
20930
  persistentId: string;
20931
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
20797
20932
  designObjectId?: string | null | undefined;
20798
20933
  designObjectIds?: string[] | null | undefined;
20799
20934
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -20940,6 +21075,7 @@ declare const DocumentationPageV1: z.ZodObject<{
20940
21075
  } | null | undefined;
20941
21076
  renderCodeProperties?: {
20942
21077
  showCode: boolean;
21078
+ showControls?: boolean | undefined;
20943
21079
  } | null | undefined;
20944
21080
  componentAssets?: {
20945
21081
  persistentId: string;
@@ -20974,8 +21110,8 @@ declare const DocumentationPageV1: z.ZodObject<{
20974
21110
  userMetadata?: string | null | undefined;
20975
21111
  } & {
20976
21112
  children: ({
20977
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
20978
21113
  persistentId: string;
21114
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
20979
21115
  designObjectId?: string | null | undefined;
20980
21116
  designObjectIds?: string[] | null | undefined;
20981
21117
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -21122,6 +21258,7 @@ declare const DocumentationPageV1: z.ZodObject<{
21122
21258
  } | null | undefined;
21123
21259
  renderCodeProperties?: {
21124
21260
  showCode: boolean;
21261
+ showControls?: boolean | undefined;
21125
21262
  } | null | undefined;
21126
21263
  componentAssets?: {
21127
21264
  persistentId: string;
@@ -21522,8 +21659,8 @@ declare const DocumentationPageV1: z.ZodObject<{
21522
21659
  } | undefined;
21523
21660
  }, {
21524
21661
  blocks: ({
21525
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
21526
21662
  persistentId: string;
21663
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
21527
21664
  designObjectId?: string | null | undefined;
21528
21665
  designObjectIds?: string[] | null | undefined;
21529
21666
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -21670,6 +21807,7 @@ declare const DocumentationPageV1: z.ZodObject<{
21670
21807
  } | null | undefined;
21671
21808
  renderCodeProperties?: {
21672
21809
  showCode: boolean;
21810
+ showControls?: boolean | undefined;
21673
21811
  } | null | undefined;
21674
21812
  componentAssets?: {
21675
21813
  persistentId: string;
@@ -21704,8 +21842,8 @@ declare const DocumentationPageV1: z.ZodObject<{
21704
21842
  userMetadata?: string | null | undefined;
21705
21843
  } & {
21706
21844
  children: ({
21707
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
21708
21845
  persistentId: string;
21846
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
21709
21847
  designObjectId?: string | null | undefined;
21710
21848
  designObjectIds?: string[] | null | undefined;
21711
21849
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -21852,6 +21990,7 @@ declare const DocumentationPageV1: z.ZodObject<{
21852
21990
  } | null | undefined;
21853
21991
  renderCodeProperties?: {
21854
21992
  showCode: boolean;
21993
+ showControls?: boolean | undefined;
21855
21994
  } | null | undefined;
21856
21995
  componentAssets?: {
21857
21996
  persistentId: string;
@@ -22058,8 +22197,8 @@ declare const DocumentationPageV1: z.ZodObject<{
22058
22197
  persistentId: string;
22059
22198
  data: {
22060
22199
  blocks: ({
22061
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
22062
22200
  persistentId: string;
22201
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
22063
22202
  designObjectId?: string | null | undefined;
22064
22203
  designObjectIds?: string[] | null | undefined;
22065
22204
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -22206,6 +22345,7 @@ declare const DocumentationPageV1: z.ZodObject<{
22206
22345
  } | null | undefined;
22207
22346
  renderCodeProperties?: {
22208
22347
  showCode: boolean;
22348
+ showControls?: boolean | undefined;
22209
22349
  } | null | undefined;
22210
22350
  componentAssets?: {
22211
22351
  persistentId: string;
@@ -22240,8 +22380,8 @@ declare const DocumentationPageV1: z.ZodObject<{
22240
22380
  userMetadata?: string | null | undefined;
22241
22381
  } & {
22242
22382
  children: ({
22243
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
22244
22383
  persistentId: string;
22384
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
22245
22385
  designObjectId?: string | null | undefined;
22246
22386
  designObjectIds?: string[] | null | undefined;
22247
22387
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -22388,6 +22528,7 @@ declare const DocumentationPageV1: z.ZodObject<{
22388
22528
  } | null | undefined;
22389
22529
  renderCodeProperties?: {
22390
22530
  showCode: boolean;
22531
+ showControls?: boolean | undefined;
22391
22532
  } | null | undefined;
22392
22533
  componentAssets?: {
22393
22534
  persistentId: string;
@@ -23312,8 +23453,8 @@ declare const DocumentationPageV2: z.ZodObject<{
23312
23453
  isHidden?: boolean | undefined;
23313
23454
  } | null | undefined>;
23314
23455
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
23315
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
23316
23456
  persistentId: string;
23457
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
23317
23458
  designObjectId?: string | null | undefined;
23318
23459
  designObjectIds?: string[] | null | undefined;
23319
23460
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -23460,6 +23601,7 @@ declare const DocumentationPageV2: z.ZodObject<{
23460
23601
  } | null | undefined;
23461
23602
  renderCodeProperties?: {
23462
23603
  showCode: boolean;
23604
+ showControls?: boolean | undefined;
23463
23605
  } | null | undefined;
23464
23606
  componentAssets?: {
23465
23607
  persistentId: string;
@@ -23494,8 +23636,8 @@ declare const DocumentationPageV2: z.ZodObject<{
23494
23636
  userMetadata?: string | null | undefined;
23495
23637
  } & {
23496
23638
  children: ({
23497
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
23498
23639
  persistentId: string;
23640
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
23499
23641
  designObjectId?: string | null | undefined;
23500
23642
  designObjectIds?: string[] | null | undefined;
23501
23643
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -23642,6 +23784,7 @@ declare const DocumentationPageV2: z.ZodObject<{
23642
23784
  } | null | undefined;
23643
23785
  renderCodeProperties?: {
23644
23786
  showCode: boolean;
23787
+ showControls?: boolean | undefined;
23645
23788
  } | null | undefined;
23646
23789
  componentAssets?: {
23647
23790
  persistentId: string;
@@ -23744,8 +23887,8 @@ declare const DocumentationPageV2: z.ZodObject<{
23744
23887
  isHidden?: boolean | undefined;
23745
23888
  } | null | undefined;
23746
23889
  oldBlocks?: ({
23747
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
23748
23890
  persistentId: string;
23891
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
23749
23892
  designObjectId?: string | null | undefined;
23750
23893
  designObjectIds?: string[] | null | undefined;
23751
23894
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -23892,6 +24035,7 @@ declare const DocumentationPageV2: z.ZodObject<{
23892
24035
  } | null | undefined;
23893
24036
  renderCodeProperties?: {
23894
24037
  showCode: boolean;
24038
+ showControls?: boolean | undefined;
23895
24039
  } | null | undefined;
23896
24040
  componentAssets?: {
23897
24041
  persistentId: string;
@@ -23926,8 +24070,8 @@ declare const DocumentationPageV2: z.ZodObject<{
23926
24070
  userMetadata?: string | null | undefined;
23927
24071
  } & {
23928
24072
  children: ({
23929
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
23930
24073
  persistentId: string;
24074
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
23931
24075
  designObjectId?: string | null | undefined;
23932
24076
  designObjectIds?: string[] | null | undefined;
23933
24077
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -24074,6 +24218,7 @@ declare const DocumentationPageV2: z.ZodObject<{
24074
24218
  } | null | undefined;
24075
24219
  renderCodeProperties?: {
24076
24220
  showCode: boolean;
24221
+ showControls?: boolean | undefined;
24077
24222
  } | null | undefined;
24078
24223
  componentAssets?: {
24079
24224
  persistentId: string;
@@ -24198,8 +24343,8 @@ declare const DocumentationPageV2: z.ZodObject<{
24198
24343
  isHidden?: boolean | undefined;
24199
24344
  } | null | undefined;
24200
24345
  oldBlocks?: ({
24201
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
24202
24346
  persistentId: string;
24347
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
24203
24348
  designObjectId?: string | null | undefined;
24204
24349
  designObjectIds?: string[] | null | undefined;
24205
24350
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -24346,6 +24491,7 @@ declare const DocumentationPageV2: z.ZodObject<{
24346
24491
  } | null | undefined;
24347
24492
  renderCodeProperties?: {
24348
24493
  showCode: boolean;
24494
+ showControls?: boolean | undefined;
24349
24495
  } | null | undefined;
24350
24496
  componentAssets?: {
24351
24497
  persistentId: string;
@@ -24380,8 +24526,8 @@ declare const DocumentationPageV2: z.ZodObject<{
24380
24526
  userMetadata?: string | null | undefined;
24381
24527
  } & {
24382
24528
  children: ({
24383
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
24384
24529
  persistentId: string;
24530
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
24385
24531
  designObjectId?: string | null | undefined;
24386
24532
  designObjectIds?: string[] | null | undefined;
24387
24533
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -24528,6 +24674,7 @@ declare const DocumentationPageV2: z.ZodObject<{
24528
24674
  } | null | undefined;
24529
24675
  renderCodeProperties?: {
24530
24676
  showCode: boolean;
24677
+ showControls?: boolean | undefined;
24531
24678
  } | null | undefined;
24532
24679
  componentAssets?: {
24533
24680
  persistentId: string;
@@ -26108,8 +26255,8 @@ declare const ShallowDesignElement: z.ZodObject<{
26108
26255
  origin: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
26109
26256
  }, "strip", z.ZodTypeAny, {
26110
26257
  id: string;
26111
- type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
26112
26258
  persistentId: string;
26259
+ type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
26113
26260
  designSystemVersionId: string;
26114
26261
  sortOrder: number;
26115
26262
  brandPersistentId?: string | undefined;
@@ -26119,8 +26266,8 @@ declare const ShallowDesignElement: z.ZodObject<{
26119
26266
  origin?: Record<string, any> | undefined;
26120
26267
  }, {
26121
26268
  id: string;
26122
- type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
26123
26269
  persistentId: string;
26270
+ type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
26124
26271
  designSystemVersionId: string;
26125
26272
  sortOrder: number;
26126
26273
  brandPersistentId?: string | undefined;
@@ -26132,8 +26279,8 @@ declare const ShallowDesignElement: z.ZodObject<{
26132
26279
  type ShallowDesignElement = z.infer<typeof ShallowDesignElement>;
26133
26280
  declare const DesignElement: z.ZodObject<{
26134
26281
  id: z.ZodString;
26135
- type: z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
26136
26282
  persistentId: z.ZodString;
26283
+ type: z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
26137
26284
  designSystemVersionId: z.ZodString;
26138
26285
  brandPersistentId: z.ZodOptional<z.ZodString>;
26139
26286
  parentPersistentId: z.ZodOptional<z.ZodString>;
@@ -26169,9 +26316,9 @@ declare const DesignElement: z.ZodObject<{
26169
26316
  }, "strip", z.ZodTypeAny, {
26170
26317
  id: string;
26171
26318
  createdAt: Date;
26172
- type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
26173
26319
  updatedAt: Date;
26174
26320
  persistentId: string;
26321
+ type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
26175
26322
  data: Record<string, any>;
26176
26323
  designSystemVersionId: string;
26177
26324
  sortOrder: number;
@@ -26193,9 +26340,9 @@ declare const DesignElement: z.ZodObject<{
26193
26340
  }, {
26194
26341
  id: string;
26195
26342
  createdAt: Date;
26196
- type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
26197
26343
  updatedAt: Date;
26198
26344
  persistentId: string;
26345
+ type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
26199
26346
  data: Record<string, any>;
26200
26347
  designSystemVersionId: string;
26201
26348
  sortOrder: number;
@@ -92925,10 +93072,10 @@ declare const ElementPropertyDefinition: z.ZodObject<{
92925
93072
  linkElementType: z.ZodOptional<z.ZodEnum<["FigmaComponent", "DocumentationPage"]>>;
92926
93073
  }, "strip", z.ZodTypeAny, {
92927
93074
  id: string;
92928
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
92929
- name: string;
92930
93075
  persistentId: string;
93076
+ type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
92931
93077
  description: string;
93078
+ name: string;
92932
93079
  designSystemVersionId: string;
92933
93080
  codeName: string;
92934
93081
  targetElementType: "Component" | "DocumentationPage" | "Token";
@@ -92942,10 +93089,10 @@ declare const ElementPropertyDefinition: z.ZodObject<{
92942
93089
  linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
92943
93090
  }, {
92944
93091
  id: string;
92945
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
92946
- name: string;
92947
93092
  persistentId: string;
93093
+ type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
92948
93094
  description: string;
93095
+ name: string;
92949
93096
  designSystemVersionId: string;
92950
93097
  codeName: string;
92951
93098
  targetElementType: "Component" | "DocumentationPage" | "Token";
@@ -93023,16 +93170,16 @@ declare const ElementViewBasePropertyColumn: z.ZodObject<{
93023
93170
  basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
93024
93171
  }, "strip", z.ZodTypeAny, {
93025
93172
  id: string;
93026
- type: "BaseProperty";
93027
93173
  persistentId: string;
93174
+ type: "BaseProperty";
93028
93175
  width: number;
93029
93176
  elementDataViewId: string;
93030
93177
  sortPosition: number;
93031
93178
  basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
93032
93179
  }, {
93033
93180
  id: string;
93034
- type: "BaseProperty";
93035
93181
  persistentId: string;
93182
+ type: "BaseProperty";
93036
93183
  width: number;
93037
93184
  elementDataViewId: string;
93038
93185
  sortPosition: number;
@@ -93049,16 +93196,16 @@ declare const ElementViewPropertyDefinitionColumn: z.ZodObject<{
93049
93196
  propertyDefinitionId: z.ZodString;
93050
93197
  }, "strip", z.ZodTypeAny, {
93051
93198
  id: string;
93052
- type: "PropertyDefinition";
93053
93199
  persistentId: string;
93200
+ type: "PropertyDefinition";
93054
93201
  width: number;
93055
93202
  elementDataViewId: string;
93056
93203
  sortPosition: number;
93057
93204
  propertyDefinitionId: string;
93058
93205
  }, {
93059
93206
  id: string;
93060
- type: "PropertyDefinition";
93061
93207
  persistentId: string;
93208
+ type: "PropertyDefinition";
93062
93209
  width: number;
93063
93210
  elementDataViewId: string;
93064
93211
  sortPosition: number;
@@ -93075,16 +93222,16 @@ declare const ElementViewThemeColumn: z.ZodObject<{
93075
93222
  themeId: z.ZodString;
93076
93223
  }, "strip", z.ZodTypeAny, {
93077
93224
  id: string;
93078
- type: "Theme";
93079
93225
  persistentId: string;
93226
+ type: "Theme";
93080
93227
  width: number;
93081
93228
  elementDataViewId: string;
93082
93229
  sortPosition: number;
93083
93230
  themeId: string;
93084
93231
  }, {
93085
93232
  id: string;
93086
- type: "Theme";
93087
93233
  persistentId: string;
93234
+ type: "Theme";
93088
93235
  width: number;
93089
93236
  elementDataViewId: string;
93090
93237
  sortPosition: number;
@@ -93101,16 +93248,16 @@ declare const ElementViewColumn: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
93101
93248
  basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
93102
93249
  }, "strip", z.ZodTypeAny, {
93103
93250
  id: string;
93104
- type: "BaseProperty";
93105
93251
  persistentId: string;
93252
+ type: "BaseProperty";
93106
93253
  width: number;
93107
93254
  elementDataViewId: string;
93108
93255
  sortPosition: number;
93109
93256
  basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
93110
93257
  }, {
93111
93258
  id: string;
93112
- type: "BaseProperty";
93113
93259
  persistentId: string;
93260
+ type: "BaseProperty";
93114
93261
  width: number;
93115
93262
  elementDataViewId: string;
93116
93263
  sortPosition: number;
@@ -93125,16 +93272,16 @@ declare const ElementViewColumn: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
93125
93272
  propertyDefinitionId: z.ZodString;
93126
93273
  }, "strip", z.ZodTypeAny, {
93127
93274
  id: string;
93128
- type: "PropertyDefinition";
93129
93275
  persistentId: string;
93276
+ type: "PropertyDefinition";
93130
93277
  width: number;
93131
93278
  elementDataViewId: string;
93132
93279
  sortPosition: number;
93133
93280
  propertyDefinitionId: string;
93134
93281
  }, {
93135
93282
  id: string;
93136
- type: "PropertyDefinition";
93137
93283
  persistentId: string;
93284
+ type: "PropertyDefinition";
93138
93285
  width: number;
93139
93286
  elementDataViewId: string;
93140
93287
  sortPosition: number;
@@ -93149,16 +93296,16 @@ declare const ElementViewColumn: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
93149
93296
  themeId: z.ZodString;
93150
93297
  }, "strip", z.ZodTypeAny, {
93151
93298
  id: string;
93152
- type: "Theme";
93153
93299
  persistentId: string;
93300
+ type: "Theme";
93154
93301
  width: number;
93155
93302
  elementDataViewId: string;
93156
93303
  sortPosition: number;
93157
93304
  themeId: string;
93158
93305
  }, {
93159
93306
  id: string;
93160
- type: "Theme";
93161
93307
  persistentId: string;
93308
+ type: "Theme";
93162
93309
  width: number;
93163
93310
  elementDataViewId: string;
93164
93311
  sortPosition: number;
@@ -93200,17 +93347,17 @@ declare const ElementView: z.ZodObject<{
93200
93347
  isDefault: z.ZodBoolean;
93201
93348
  }, "strip", z.ZodTypeAny, {
93202
93349
  id: string;
93203
- name: string;
93204
93350
  persistentId: string;
93205
93351
  description: string;
93352
+ name: string;
93206
93353
  designSystemVersionId: string;
93207
93354
  targetElementType: "Component" | "DocumentationPage" | "Token";
93208
93355
  isDefault: boolean;
93209
93356
  }, {
93210
93357
  id: string;
93211
- name: string;
93212
93358
  persistentId: string;
93213
93359
  description: string;
93360
+ name: string;
93214
93361
  designSystemVersionId: string;
93215
93362
  targetElementType: "Component" | "DocumentationPage" | "Token";
93216
93363
  isDefault: boolean;
@@ -93227,15 +93374,15 @@ declare const Brand: z.ZodObject<{
93227
93374
  description: z.ZodString;
93228
93375
  }, "strip", z.ZodTypeAny, {
93229
93376
  id: string;
93230
- name: string;
93231
93377
  persistentId: string;
93232
93378
  description: string;
93379
+ name: string;
93233
93380
  designSystemVersionId: string;
93234
93381
  }, {
93235
93382
  id: string;
93236
- name: string;
93237
93383
  persistentId: string;
93238
93384
  description: string;
93385
+ name: string;
93239
93386
  designSystemVersionId: string;
93240
93387
  }>;
93241
93388
  type Brand = z.infer<typeof Brand>;
@@ -93283,9 +93430,9 @@ declare const DesignSystem: z.ZodObject<{
93283
93430
  }, "strip", z.ZodTypeAny, {
93284
93431
  id: string;
93285
93432
  createdAt: Date;
93286
- name: string;
93287
93433
  updatedAt: Date;
93288
93434
  description: string;
93435
+ name: string;
93289
93436
  workspaceId: string;
93290
93437
  docSlug: string;
93291
93438
  docSlugDeprecated: string;
@@ -93302,9 +93449,9 @@ declare const DesignSystem: z.ZodObject<{
93302
93449
  }, {
93303
93450
  id: string;
93304
93451
  createdAt: Date;
93305
- name: string;
93306
93452
  updatedAt: Date;
93307
93453
  description: string;
93454
+ name: string;
93308
93455
  workspaceId: string;
93309
93456
  docSlug: string;
93310
93457
  docSlugDeprecated: string;
@@ -93352,9 +93499,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
93352
93499
  }, "strip", z.ZodTypeAny, {
93353
93500
  id: string;
93354
93501
  createdAt: Date;
93355
- name: string;
93356
93502
  updatedAt: Date;
93357
93503
  description: string;
93504
+ name: string;
93358
93505
  workspaceId: string;
93359
93506
  docSlug: string;
93360
93507
  docSlugDeprecated: string;
@@ -93371,9 +93518,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
93371
93518
  }, {
93372
93519
  id: string;
93373
93520
  createdAt: Date;
93374
- name: string;
93375
93521
  updatedAt: Date;
93376
93522
  description: string;
93523
+ name: string;
93377
93524
  workspaceId: string;
93378
93525
  docSlug: string;
93379
93526
  docSlugDeprecated: string;
@@ -94411,9 +94558,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94411
94558
  }, "strip", z.ZodTypeAny, {
94412
94559
  id: string;
94413
94560
  createdAt: Date;
94414
- name: string;
94415
94561
  updatedAt: Date;
94416
94562
  description: string;
94563
+ name: string;
94417
94564
  workspaceId: string;
94418
94565
  docSlug: string;
94419
94566
  docSlugDeprecated: string;
@@ -94430,9 +94577,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94430
94577
  }, {
94431
94578
  id: string;
94432
94579
  createdAt: Date;
94433
- name: string;
94434
94580
  updatedAt: Date;
94435
94581
  description: string;
94582
+ name: string;
94436
94583
  workspaceId: string;
94437
94584
  docSlug: string;
94438
94585
  docSlugDeprecated: string;
@@ -94642,9 +94789,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94642
94789
  designSystems?: {
94643
94790
  id: string;
94644
94791
  createdAt: Date;
94645
- name: string;
94646
94792
  updatedAt: Date;
94647
94793
  description: string;
94794
+ name: string;
94648
94795
  workspaceId: string;
94649
94796
  docSlug: string;
94650
94797
  docSlugDeprecated: string;
@@ -94854,9 +95001,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94854
95001
  designSystems?: {
94855
95002
  id: string;
94856
95003
  createdAt: Date;
94857
- name: string;
94858
95004
  updatedAt: Date;
94859
95005
  description: string;
95006
+ name: string;
94860
95007
  workspaceId: string;
94861
95008
  docSlug: string;
94862
95009
  docSlugDeprecated: string;
@@ -95068,9 +95215,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95068
95215
  designSystems?: {
95069
95216
  id: string;
95070
95217
  createdAt: Date;
95071
- name: string;
95072
95218
  updatedAt: Date;
95073
95219
  description: string;
95220
+ name: string;
95074
95221
  workspaceId: string;
95075
95222
  docSlug: string;
95076
95223
  docSlugDeprecated: string;
@@ -95089,9 +95236,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95089
95236
  designSystem: {
95090
95237
  id: string;
95091
95238
  createdAt: Date;
95092
- name: string;
95093
95239
  updatedAt: Date;
95094
95240
  description: string;
95241
+ name: string;
95095
95242
  workspaceId: string;
95096
95243
  docSlug: string;
95097
95244
  docSlugDeprecated: string;
@@ -95302,9 +95449,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95302
95449
  designSystems?: {
95303
95450
  id: string;
95304
95451
  createdAt: Date;
95305
- name: string;
95306
95452
  updatedAt: Date;
95307
95453
  description: string;
95454
+ name: string;
95308
95455
  workspaceId: string;
95309
95456
  docSlug: string;
95310
95457
  docSlugDeprecated: string;
@@ -95323,9 +95470,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95323
95470
  designSystem: {
95324
95471
  id: string;
95325
95472
  createdAt: Date;
95326
- name: string;
95327
95473
  updatedAt: Date;
95328
95474
  description: string;
95475
+ name: string;
95329
95476
  workspaceId: string;
95330
95477
  docSlug: string;
95331
95478
  docSlugDeprecated: string;
@@ -95348,11 +95495,11 @@ declare const DesignSystemCreateInput: z.ZodObject<{
95348
95495
  name: z.ZodString;
95349
95496
  description: z.ZodString;
95350
95497
  }, "strip", z.ZodTypeAny, {
95351
- name: string;
95352
95498
  description: string;
95353
- }, {
95354
95499
  name: string;
95500
+ }, {
95355
95501
  description: string;
95502
+ name: string;
95356
95503
  }>;
95357
95504
  workspaceId: z.ZodString;
95358
95505
  isPublic: z.ZodOptional<z.ZodBoolean>;
@@ -95361,8 +95508,8 @@ declare const DesignSystemCreateInput: z.ZodObject<{
95361
95508
  source: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
95362
95509
  }, "strip", z.ZodTypeAny, {
95363
95510
  meta: {
95364
- name: string;
95365
95511
  description: string;
95512
+ name: string;
95366
95513
  };
95367
95514
  workspaceId: string;
95368
95515
  isPublic?: boolean | undefined;
@@ -95371,8 +95518,8 @@ declare const DesignSystemCreateInput: z.ZodObject<{
95371
95518
  source?: string[] | undefined;
95372
95519
  }, {
95373
95520
  meta: {
95374
- name: string;
95375
95521
  description: string;
95522
+ name: string;
95376
95523
  };
95377
95524
  workspaceId: string;
95378
95525
  isPublic?: boolean | undefined;
@@ -98233,14 +98380,14 @@ declare const VersionCreationJob: z.ZodObject<{
98233
98380
  errorMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
98234
98381
  }, "strip", z.ZodTypeAny, {
98235
98382
  id: string;
98236
- status: "Success" | "Error" | "InProgress";
98383
+ status: "InProgress" | "Success" | "Error";
98237
98384
  designSystemId: string;
98238
98385
  version: string;
98239
98386
  designSystemVersionId?: string | undefined;
98240
98387
  errorMessage?: string | undefined;
98241
98388
  }, {
98242
98389
  id: string;
98243
- status: "Success" | "Error" | "InProgress";
98390
+ status: "InProgress" | "Success" | "Error";
98244
98391
  designSystemId: string;
98245
98392
  version: string;
98246
98393
  designSystemVersionId?: string | null | undefined;
@@ -100342,7 +100489,7 @@ declare const ExportJob: z.ZodObject<{
100342
100489
  }, "strip", z.ZodTypeAny, {
100343
100490
  id: string;
100344
100491
  createdAt: Date;
100345
- status: "Timeout" | "Success" | "InProgress" | "Failed";
100492
+ status: "InProgress" | "Timeout" | "Success" | "Failed";
100346
100493
  designSystemId: string;
100347
100494
  designSystemVersionId: string;
100348
100495
  workspaceId: string;
@@ -100412,7 +100559,7 @@ declare const ExportJob: z.ZodObject<{
100412
100559
  }, {
100413
100560
  id: string;
100414
100561
  createdAt: Date;
100415
- status: "Timeout" | "Success" | "InProgress" | "Failed";
100562
+ status: "InProgress" | "Timeout" | "Success" | "Failed";
100416
100563
  designSystemId: string;
100417
100564
  designSystemVersionId: string;
100418
100565
  workspaceId: string;
@@ -100495,7 +100642,7 @@ declare const ExportJobFindByFilter: z.ZodObject<{
100495
100642
  destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
100496
100643
  docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
100497
100644
  }, "strip", z.ZodTypeAny, {
100498
- status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
100645
+ status?: "InProgress" | "Timeout" | "Success" | "Failed" | undefined;
100499
100646
  designSystemId?: string | undefined;
100500
100647
  designSystemVersionId?: string | undefined;
100501
100648
  brandId?: string | undefined;
@@ -100506,7 +100653,7 @@ declare const ExportJobFindByFilter: z.ZodObject<{
100506
100653
  destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
100507
100654
  docsEnvironment?: "Live" | "Preview" | undefined;
100508
100655
  }, {
100509
- status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
100656
+ status?: "InProgress" | "Timeout" | "Success" | "Failed" | undefined;
100510
100657
  designSystemId?: string | undefined;
100511
100658
  designSystemVersionId?: string | undefined;
100512
100659
  brandId?: string | undefined;
@@ -100859,26 +101006,26 @@ declare const ExporterDetails: z.ZodObject<{
100859
101006
  }[] | null | undefined;
100860
101007
  }[] | null | undefined>>;
100861
101008
  blockVariants: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
100862
- name: string;
100863
101009
  key: string;
101010
+ name: string;
100864
101011
  isDefault?: boolean | undefined;
100865
101012
  description?: string | undefined;
100866
101013
  thumbnailURL?: string | undefined;
100867
101014
  }[]>, z.ZodTypeDef, Record<string, {
100868
- name: string;
100869
101015
  key: string;
101016
+ name: string;
100870
101017
  isDefault?: boolean | null | undefined;
100871
101018
  description?: string | null | undefined;
100872
101019
  thumbnailURL?: string | null | undefined;
100873
101020
  }[]>>>>, Record<string, {
100874
- name: string;
100875
101021
  key: string;
101022
+ name: string;
100876
101023
  isDefault?: boolean | undefined;
100877
101024
  description?: string | undefined;
100878
101025
  thumbnailURL?: string | undefined;
100879
101026
  }[]> | undefined, Record<string, {
100880
- name: string;
100881
101027
  key: string;
101028
+ name: string;
100882
101029
  isDefault?: boolean | null | undefined;
100883
101030
  description?: string | null | undefined;
100884
101031
  thumbnailURL?: string | null | undefined;
@@ -100925,8 +101072,8 @@ declare const ExporterDetails: z.ZodObject<{
100925
101072
  mode?: NonNullable<"array" | "block"> | undefined;
100926
101073
  }[];
100927
101074
  blockVariants: Record<string, {
100928
- name: string;
100929
101075
  key: string;
101076
+ name: string;
100930
101077
  isDefault?: boolean | undefined;
100931
101078
  description?: string | undefined;
100932
101079
  thumbnailURL?: string | undefined;
@@ -100986,8 +101133,8 @@ declare const ExporterDetails: z.ZodObject<{
100986
101133
  }[] | null | undefined;
100987
101134
  }[] | null | undefined;
100988
101135
  blockVariants?: Record<string, {
100989
- name: string;
100990
101136
  key: string;
101137
+ name: string;
100991
101138
  isDefault?: boolean | null | undefined;
100992
101139
  description?: string | null | undefined;
100993
101140
  thumbnailURL?: string | null | undefined;
@@ -101127,26 +101274,26 @@ declare const Exporter: z.ZodObject<{
101127
101274
  }[] | null | undefined;
101128
101275
  }[] | null | undefined>>;
101129
101276
  blockVariants: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
101130
- name: string;
101131
101277
  key: string;
101278
+ name: string;
101132
101279
  isDefault?: boolean | undefined;
101133
101280
  description?: string | undefined;
101134
101281
  thumbnailURL?: string | undefined;
101135
101282
  }[]>, z.ZodTypeDef, Record<string, {
101136
- name: string;
101137
101283
  key: string;
101284
+ name: string;
101138
101285
  isDefault?: boolean | null | undefined;
101139
101286
  description?: string | null | undefined;
101140
101287
  thumbnailURL?: string | null | undefined;
101141
101288
  }[]>>>>, Record<string, {
101142
- name: string;
101143
101289
  key: string;
101290
+ name: string;
101144
101291
  isDefault?: boolean | undefined;
101145
101292
  description?: string | undefined;
101146
101293
  thumbnailURL?: string | undefined;
101147
101294
  }[]> | undefined, Record<string, {
101148
- name: string;
101149
101295
  key: string;
101296
+ name: string;
101150
101297
  isDefault?: boolean | null | undefined;
101151
101298
  description?: string | null | undefined;
101152
101299
  thumbnailURL?: string | null | undefined;
@@ -101193,8 +101340,8 @@ declare const Exporter: z.ZodObject<{
101193
101340
  mode?: NonNullable<"array" | "block"> | undefined;
101194
101341
  }[];
101195
101342
  blockVariants: Record<string, {
101196
- name: string;
101197
101343
  key: string;
101344
+ name: string;
101198
101345
  isDefault?: boolean | undefined;
101199
101346
  description?: string | undefined;
101200
101347
  thumbnailURL?: string | undefined;
@@ -101254,8 +101401,8 @@ declare const Exporter: z.ZodObject<{
101254
101401
  }[] | null | undefined;
101255
101402
  }[] | null | undefined;
101256
101403
  blockVariants?: Record<string, {
101257
- name: string;
101258
101404
  key: string;
101405
+ name: string;
101259
101406
  isDefault?: boolean | null | undefined;
101260
101407
  description?: string | null | undefined;
101261
101408
  thumbnailURL?: string | null | undefined;
@@ -101310,8 +101457,8 @@ declare const Exporter: z.ZodObject<{
101310
101457
  mode?: NonNullable<"array" | "block"> | undefined;
101311
101458
  }[];
101312
101459
  blockVariants: Record<string, {
101313
- name: string;
101314
101460
  key: string;
101461
+ name: string;
101315
101462
  isDefault?: boolean | undefined;
101316
101463
  description?: string | undefined;
101317
101464
  thumbnailURL?: string | undefined;
@@ -101378,8 +101525,8 @@ declare const Exporter: z.ZodObject<{
101378
101525
  }[] | null | undefined;
101379
101526
  }[] | null | undefined;
101380
101527
  blockVariants?: Record<string, {
101381
- name: string;
101382
101528
  key: string;
101529
+ name: string;
101383
101530
  isDefault?: boolean | null | undefined;
101384
101531
  description?: string | null | undefined;
101385
101532
  thumbnailURL?: string | null | undefined;
@@ -101403,14 +101550,14 @@ declare const PulsarContributionVariant: z.ZodObject<{
101403
101550
  description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
101404
101551
  thumbnailURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
101405
101552
  }, "strip", z.ZodTypeAny, {
101406
- name: string;
101407
101553
  key: string;
101554
+ name: string;
101408
101555
  isDefault?: boolean | undefined;
101409
101556
  description?: string | undefined;
101410
101557
  thumbnailURL?: string | undefined;
101411
101558
  }, {
101412
- name: string;
101413
101559
  key: string;
101560
+ name: string;
101414
101561
  isDefault?: boolean | null | undefined;
101415
101562
  description?: string | null | undefined;
101416
101563
  thumbnailURL?: string | null | undefined;
@@ -101546,8 +101693,8 @@ declare const PulsarCustomBlock: z.ZodObject<{
101546
101693
  }>;
101547
101694
  type PulsarCustomBlock = z.infer<typeof PulsarCustomBlock>;
101548
101695
  declare const PulsarContributionConfigurationProperty: z.ZodObject<{
101549
- values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
101550
101696
  type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
101697
+ values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
101551
101698
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
101552
101699
  default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
101553
101700
  key: z.ZodString;
@@ -101635,6 +101782,63 @@ declare const ExternalOAuthRequest: z.ZodObject<{
101635
101782
  }>;
101636
101783
  type ExternalOAuthRequest = z.infer<typeof ExternalOAuthRequest>;
101637
101784
 
101785
+ declare const GitOrganization: z.ZodObject<{
101786
+ id: z.ZodString;
101787
+ name: z.ZodString;
101788
+ url: z.ZodString;
101789
+ }, "strip", z.ZodTypeAny, {
101790
+ id: string;
101791
+ name: string;
101792
+ url: string;
101793
+ }, {
101794
+ id: string;
101795
+ name: string;
101796
+ url: string;
101797
+ }>;
101798
+ type GitOrganization = z.infer<typeof GitOrganization>;
101799
+ declare const GitProject: z.ZodObject<{
101800
+ id: z.ZodString;
101801
+ name: z.ZodString;
101802
+ url: z.ZodString;
101803
+ }, "strip", z.ZodTypeAny, {
101804
+ id: string;
101805
+ name: string;
101806
+ url: string;
101807
+ }, {
101808
+ id: string;
101809
+ name: string;
101810
+ url: string;
101811
+ }>;
101812
+ type GitProject = z.infer<typeof GitProject>;
101813
+ declare const GitRepository: z.ZodObject<{
101814
+ id: z.ZodString;
101815
+ name: z.ZodString;
101816
+ url: z.ZodString;
101817
+ defaultBranch: z.ZodString;
101818
+ }, "strip", z.ZodTypeAny, {
101819
+ id: string;
101820
+ name: string;
101821
+ url: string;
101822
+ defaultBranch: string;
101823
+ }, {
101824
+ id: string;
101825
+ name: string;
101826
+ url: string;
101827
+ defaultBranch: string;
101828
+ }>;
101829
+ type GitRepository = z.infer<typeof GitRepository>;
101830
+ declare const GitBranch: z.ZodObject<{
101831
+ name: z.ZodString;
101832
+ lastCommitId: z.ZodString;
101833
+ }, "strip", z.ZodTypeAny, {
101834
+ name: string;
101835
+ lastCommitId: string;
101836
+ }, {
101837
+ name: string;
101838
+ lastCommitId: string;
101839
+ }>;
101840
+ type GitBranch = z.infer<typeof GitBranch>;
101841
+
101638
101842
  declare const IntegrationDesignSystem: z.ZodObject<{
101639
101843
  designSystemId: z.ZodString;
101640
101844
  brandId: z.ZodString;
@@ -101661,17 +101865,26 @@ declare const IntegrationCredentialsProfile: z.ZodObject<{
101661
101865
  id: z.ZodString;
101662
101866
  email: z.ZodOptional<z.ZodString>;
101663
101867
  handle: z.ZodOptional<z.ZodString>;
101868
+ type: z.ZodOptional<z.ZodString>;
101664
101869
  avatarUrl: z.ZodOptional<z.ZodString>;
101870
+ organization: z.ZodOptional<z.ZodString>;
101871
+ installation: z.ZodOptional<z.ZodString>;
101665
101872
  }, "strip", z.ZodTypeAny, {
101666
101873
  id: string;
101667
101874
  email?: string | undefined;
101668
101875
  handle?: string | undefined;
101876
+ type?: string | undefined;
101669
101877
  avatarUrl?: string | undefined;
101878
+ organization?: string | undefined;
101879
+ installation?: string | undefined;
101670
101880
  }, {
101671
101881
  id: string;
101672
101882
  email?: string | undefined;
101673
101883
  handle?: string | undefined;
101884
+ type?: string | undefined;
101674
101885
  avatarUrl?: string | undefined;
101886
+ organization?: string | undefined;
101887
+ installation?: string | undefined;
101675
101888
  }>;
101676
101889
  type IntegrationCredentialsProfile = z.infer<typeof IntegrationCredentialsProfile>;
101677
101890
  declare const IntegrationCredentials: z.ZodObject<{
@@ -101688,17 +101901,26 @@ declare const IntegrationCredentials: z.ZodObject<{
101688
101901
  id: z.ZodString;
101689
101902
  email: z.ZodOptional<z.ZodString>;
101690
101903
  handle: z.ZodOptional<z.ZodString>;
101904
+ type: z.ZodOptional<z.ZodString>;
101691
101905
  avatarUrl: z.ZodOptional<z.ZodString>;
101906
+ organization: z.ZodOptional<z.ZodString>;
101907
+ installation: z.ZodOptional<z.ZodString>;
101692
101908
  }, "strip", z.ZodTypeAny, {
101693
101909
  id: string;
101694
101910
  email?: string | undefined;
101695
101911
  handle?: string | undefined;
101912
+ type?: string | undefined;
101696
101913
  avatarUrl?: string | undefined;
101914
+ organization?: string | undefined;
101915
+ installation?: string | undefined;
101697
101916
  }, {
101698
101917
  id: string;
101699
101918
  email?: string | undefined;
101700
101919
  handle?: string | undefined;
101920
+ type?: string | undefined;
101701
101921
  avatarUrl?: string | undefined;
101922
+ organization?: string | undefined;
101923
+ installation?: string | undefined;
101702
101924
  }>>;
101703
101925
  customUrl: z.ZodOptional<z.ZodString>;
101704
101926
  user: z.ZodOptional<z.ZodObject<{
@@ -101731,7 +101953,10 @@ declare const IntegrationCredentials: z.ZodObject<{
101731
101953
  id: string;
101732
101954
  email?: string | undefined;
101733
101955
  handle?: string | undefined;
101956
+ type?: string | undefined;
101734
101957
  avatarUrl?: string | undefined;
101958
+ organization?: string | undefined;
101959
+ installation?: string | undefined;
101735
101960
  } | undefined;
101736
101961
  customUrl?: string | undefined;
101737
101962
  user?: {
@@ -101754,7 +101979,10 @@ declare const IntegrationCredentials: z.ZodObject<{
101754
101979
  id: string;
101755
101980
  email?: string | undefined;
101756
101981
  handle?: string | undefined;
101982
+ type?: string | undefined;
101757
101983
  avatarUrl?: string | undefined;
101984
+ organization?: string | undefined;
101985
+ installation?: string | undefined;
101758
101986
  } | undefined;
101759
101987
  customUrl?: string | undefined;
101760
101988
  user?: {
@@ -101788,17 +102016,26 @@ declare const Integration: z.ZodObject<{
101788
102016
  id: z.ZodString;
101789
102017
  email: z.ZodOptional<z.ZodString>;
101790
102018
  handle: z.ZodOptional<z.ZodString>;
102019
+ type: z.ZodOptional<z.ZodString>;
101791
102020
  avatarUrl: z.ZodOptional<z.ZodString>;
102021
+ organization: z.ZodOptional<z.ZodString>;
102022
+ installation: z.ZodOptional<z.ZodString>;
101792
102023
  }, "strip", z.ZodTypeAny, {
101793
102024
  id: string;
101794
102025
  email?: string | undefined;
101795
102026
  handle?: string | undefined;
102027
+ type?: string | undefined;
101796
102028
  avatarUrl?: string | undefined;
102029
+ organization?: string | undefined;
102030
+ installation?: string | undefined;
101797
102031
  }, {
101798
102032
  id: string;
101799
102033
  email?: string | undefined;
101800
102034
  handle?: string | undefined;
102035
+ type?: string | undefined;
101801
102036
  avatarUrl?: string | undefined;
102037
+ organization?: string | undefined;
102038
+ installation?: string | undefined;
101802
102039
  }>>;
101803
102040
  customUrl: z.ZodOptional<z.ZodString>;
101804
102041
  user: z.ZodOptional<z.ZodObject<{
@@ -101831,7 +102068,10 @@ declare const Integration: z.ZodObject<{
101831
102068
  id: string;
101832
102069
  email?: string | undefined;
101833
102070
  handle?: string | undefined;
102071
+ type?: string | undefined;
101834
102072
  avatarUrl?: string | undefined;
102073
+ organization?: string | undefined;
102074
+ installation?: string | undefined;
101835
102075
  } | undefined;
101836
102076
  customUrl?: string | undefined;
101837
102077
  user?: {
@@ -101854,7 +102094,10 @@ declare const Integration: z.ZodObject<{
101854
102094
  id: string;
101855
102095
  email?: string | undefined;
101856
102096
  handle?: string | undefined;
102097
+ type?: string | undefined;
101857
102098
  avatarUrl?: string | undefined;
102099
+ organization?: string | undefined;
102100
+ installation?: string | undefined;
101858
102101
  } | undefined;
101859
102102
  customUrl?: string | undefined;
101860
102103
  user?: {
@@ -101883,7 +102126,10 @@ declare const Integration: z.ZodObject<{
101883
102126
  id: string;
101884
102127
  email?: string | undefined;
101885
102128
  handle?: string | undefined;
102129
+ type?: string | undefined;
101886
102130
  avatarUrl?: string | undefined;
102131
+ organization?: string | undefined;
102132
+ installation?: string | undefined;
101887
102133
  } | undefined;
101888
102134
  customUrl?: string | undefined;
101889
102135
  user?: {
@@ -101912,7 +102158,10 @@ declare const Integration: z.ZodObject<{
101912
102158
  id: string;
101913
102159
  email?: string | undefined;
101914
102160
  handle?: string | undefined;
102161
+ type?: string | undefined;
101915
102162
  avatarUrl?: string | undefined;
102163
+ organization?: string | undefined;
102164
+ installation?: string | undefined;
101916
102165
  } | undefined;
101917
102166
  customUrl?: string | undefined;
101918
102167
  user?: {
@@ -102224,8 +102473,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
102224
102473
  isHidden?: boolean | undefined;
102225
102474
  } | null | undefined>;
102226
102475
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
102227
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
102228
102476
  persistentId: string;
102477
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
102229
102478
  designObjectId?: string | null | undefined;
102230
102479
  designObjectIds?: string[] | null | undefined;
102231
102480
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -102372,6 +102621,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
102372
102621
  } | null | undefined;
102373
102622
  renderCodeProperties?: {
102374
102623
  showCode: boolean;
102624
+ showControls?: boolean | undefined;
102375
102625
  } | null | undefined;
102376
102626
  componentAssets?: {
102377
102627
  persistentId: string;
@@ -102406,8 +102656,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
102406
102656
  userMetadata?: string | null | undefined;
102407
102657
  } & {
102408
102658
  children: ({
102409
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
102410
102659
  persistentId: string;
102660
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
102411
102661
  designObjectId?: string | null | undefined;
102412
102662
  designObjectIds?: string[] | null | undefined;
102413
102663
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -102554,6 +102804,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
102554
102804
  } | null | undefined;
102555
102805
  renderCodeProperties?: {
102556
102806
  showCode: boolean;
102807
+ showControls?: boolean | undefined;
102557
102808
  } | null | undefined;
102558
102809
  componentAssets?: {
102559
102810
  persistentId: string;
@@ -102656,8 +102907,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
102656
102907
  isHidden?: boolean | undefined;
102657
102908
  } | null | undefined;
102658
102909
  oldBlocks?: ({
102659
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
102660
102910
  persistentId: string;
102911
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
102661
102912
  designObjectId?: string | null | undefined;
102662
102913
  designObjectIds?: string[] | null | undefined;
102663
102914
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -102804,6 +103055,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
102804
103055
  } | null | undefined;
102805
103056
  renderCodeProperties?: {
102806
103057
  showCode: boolean;
103058
+ showControls?: boolean | undefined;
102807
103059
  } | null | undefined;
102808
103060
  componentAssets?: {
102809
103061
  persistentId: string;
@@ -102838,8 +103090,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
102838
103090
  userMetadata?: string | null | undefined;
102839
103091
  } & {
102840
103092
  children: ({
102841
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
102842
103093
  persistentId: string;
103094
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
102843
103095
  designObjectId?: string | null | undefined;
102844
103096
  designObjectIds?: string[] | null | undefined;
102845
103097
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -102986,6 +103238,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
102986
103238
  } | null | undefined;
102987
103239
  renderCodeProperties?: {
102988
103240
  showCode: boolean;
103241
+ showControls?: boolean | undefined;
102989
103242
  } | null | undefined;
102990
103243
  componentAssets?: {
102991
103244
  persistentId: string;
@@ -103110,8 +103363,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
103110
103363
  isHidden?: boolean | undefined;
103111
103364
  } | null | undefined;
103112
103365
  oldBlocks?: ({
103113
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
103114
103366
  persistentId: string;
103367
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
103115
103368
  designObjectId?: string | null | undefined;
103116
103369
  designObjectIds?: string[] | null | undefined;
103117
103370
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -103258,6 +103511,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
103258
103511
  } | null | undefined;
103259
103512
  renderCodeProperties?: {
103260
103513
  showCode: boolean;
103514
+ showControls?: boolean | undefined;
103261
103515
  } | null | undefined;
103262
103516
  componentAssets?: {
103263
103517
  persistentId: string;
@@ -103292,8 +103546,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
103292
103546
  userMetadata?: string | null | undefined;
103293
103547
  } & {
103294
103548
  children: ({
103295
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
103296
103549
  persistentId: string;
103550
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
103297
103551
  designObjectId?: string | null | undefined;
103298
103552
  designObjectIds?: string[] | null | undefined;
103299
103553
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -103440,6 +103694,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
103440
103694
  } | null | undefined;
103441
103695
  renderCodeProperties?: {
103442
103696
  showCode: boolean;
103697
+ showControls?: boolean | undefined;
103443
103698
  } | null | undefined;
103444
103699
  componentAssets?: {
103445
103700
  persistentId: string;
@@ -104018,8 +104273,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
104018
104273
  isHidden?: boolean | undefined;
104019
104274
  } | null | undefined;
104020
104275
  oldBlocks?: ({
104021
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104022
104276
  persistentId: string;
104277
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104023
104278
  designObjectId?: string | null | undefined;
104024
104279
  designObjectIds?: string[] | null | undefined;
104025
104280
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -104166,6 +104421,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
104166
104421
  } | null | undefined;
104167
104422
  renderCodeProperties?: {
104168
104423
  showCode: boolean;
104424
+ showControls?: boolean | undefined;
104169
104425
  } | null | undefined;
104170
104426
  componentAssets?: {
104171
104427
  persistentId: string;
@@ -104200,8 +104456,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
104200
104456
  userMetadata?: string | null | undefined;
104201
104457
  } & {
104202
104458
  children: ({
104203
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104204
104459
  persistentId: string;
104460
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104205
104461
  designObjectId?: string | null | undefined;
104206
104462
  designObjectIds?: string[] | null | undefined;
104207
104463
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -104348,6 +104604,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
104348
104604
  } | null | undefined;
104349
104605
  renderCodeProperties?: {
104350
104606
  showCode: boolean;
104607
+ showControls?: boolean | undefined;
104351
104608
  } | null | undefined;
104352
104609
  componentAssets?: {
104353
104610
  persistentId: string;
@@ -104548,8 +104805,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
104548
104805
  isHidden?: boolean | undefined;
104549
104806
  } | null | undefined>;
104550
104807
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
104551
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104552
104808
  persistentId: string;
104809
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104553
104810
  designObjectId?: string | null | undefined;
104554
104811
  designObjectIds?: string[] | null | undefined;
104555
104812
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -104696,6 +104953,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
104696
104953
  } | null | undefined;
104697
104954
  renderCodeProperties?: {
104698
104955
  showCode: boolean;
104956
+ showControls?: boolean | undefined;
104699
104957
  } | null | undefined;
104700
104958
  componentAssets?: {
104701
104959
  persistentId: string;
@@ -104730,8 +104988,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
104730
104988
  userMetadata?: string | null | undefined;
104731
104989
  } & {
104732
104990
  children: ({
104733
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104734
104991
  persistentId: string;
104992
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104735
104993
  designObjectId?: string | null | undefined;
104736
104994
  designObjectIds?: string[] | null | undefined;
104737
104995
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -104878,6 +105136,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
104878
105136
  } | null | undefined;
104879
105137
  renderCodeProperties?: {
104880
105138
  showCode: boolean;
105139
+ showControls?: boolean | undefined;
104881
105140
  } | null | undefined;
104882
105141
  componentAssets?: {
104883
105142
  persistentId: string;
@@ -104980,8 +105239,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
104980
105239
  isHidden?: boolean | undefined;
104981
105240
  } | null | undefined;
104982
105241
  oldBlocks?: ({
104983
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104984
105242
  persistentId: string;
105243
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
104985
105244
  designObjectId?: string | null | undefined;
104986
105245
  designObjectIds?: string[] | null | undefined;
104987
105246
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -105128,6 +105387,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
105128
105387
  } | null | undefined;
105129
105388
  renderCodeProperties?: {
105130
105389
  showCode: boolean;
105390
+ showControls?: boolean | undefined;
105131
105391
  } | null | undefined;
105132
105392
  componentAssets?: {
105133
105393
  persistentId: string;
@@ -105162,8 +105422,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
105162
105422
  userMetadata?: string | null | undefined;
105163
105423
  } & {
105164
105424
  children: ({
105165
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
105166
105425
  persistentId: string;
105426
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
105167
105427
  designObjectId?: string | null | undefined;
105168
105428
  designObjectIds?: string[] | null | undefined;
105169
105429
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -105310,6 +105570,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
105310
105570
  } | null | undefined;
105311
105571
  renderCodeProperties?: {
105312
105572
  showCode: boolean;
105573
+ showControls?: boolean | undefined;
105313
105574
  } | null | undefined;
105314
105575
  componentAssets?: {
105315
105576
  persistentId: string;
@@ -105434,8 +105695,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
105434
105695
  isHidden?: boolean | undefined;
105435
105696
  } | null | undefined;
105436
105697
  oldBlocks?: ({
105437
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
105438
105698
  persistentId: string;
105699
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
105439
105700
  designObjectId?: string | null | undefined;
105440
105701
  designObjectIds?: string[] | null | undefined;
105441
105702
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -105582,6 +105843,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
105582
105843
  } | null | undefined;
105583
105844
  renderCodeProperties?: {
105584
105845
  showCode: boolean;
105846
+ showControls?: boolean | undefined;
105585
105847
  } | null | undefined;
105586
105848
  componentAssets?: {
105587
105849
  persistentId: string;
@@ -105616,8 +105878,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
105616
105878
  userMetadata?: string | null | undefined;
105617
105879
  } & {
105618
105880
  children: ({
105619
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
105620
105881
  persistentId: string;
105882
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
105621
105883
  designObjectId?: string | null | undefined;
105622
105884
  designObjectIds?: string[] | null | undefined;
105623
105885
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -105764,6 +106026,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
105764
106026
  } | null | undefined;
105765
106027
  renderCodeProperties?: {
105766
106028
  showCode: boolean;
106029
+ showControls?: boolean | undefined;
105767
106030
  } | null | undefined;
105768
106031
  componentAssets?: {
105769
106032
  persistentId: string;
@@ -106336,8 +106599,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
106336
106599
  isHidden?: boolean | undefined;
106337
106600
  } | null | undefined;
106338
106601
  oldBlocks?: ({
106339
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
106340
106602
  persistentId: string;
106603
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
106341
106604
  designObjectId?: string | null | undefined;
106342
106605
  designObjectIds?: string[] | null | undefined;
106343
106606
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -106484,6 +106747,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
106484
106747
  } | null | undefined;
106485
106748
  renderCodeProperties?: {
106486
106749
  showCode: boolean;
106750
+ showControls?: boolean | undefined;
106487
106751
  } | null | undefined;
106488
106752
  componentAssets?: {
106489
106753
  persistentId: string;
@@ -106518,8 +106782,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
106518
106782
  userMetadata?: string | null | undefined;
106519
106783
  } & {
106520
106784
  children: ({
106521
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
106522
106785
  persistentId: string;
106786
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
106523
106787
  designObjectId?: string | null | undefined;
106524
106788
  designObjectIds?: string[] | null | undefined;
106525
106789
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -106666,6 +106930,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
106666
106930
  } | null | undefined;
106667
106931
  renderCodeProperties?: {
106668
106932
  showCode: boolean;
106933
+ showControls?: boolean | undefined;
106669
106934
  } | null | undefined;
106670
106935
  componentAssets?: {
106671
106936
  persistentId: string;
@@ -108047,8 +108312,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
108047
108312
  isHidden?: boolean | undefined;
108048
108313
  } | null | undefined>;
108049
108314
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
108050
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108051
108315
  persistentId: string;
108316
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108052
108317
  designObjectId?: string | null | undefined;
108053
108318
  designObjectIds?: string[] | null | undefined;
108054
108319
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -108195,6 +108460,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
108195
108460
  } | null | undefined;
108196
108461
  renderCodeProperties?: {
108197
108462
  showCode: boolean;
108463
+ showControls?: boolean | undefined;
108198
108464
  } | null | undefined;
108199
108465
  componentAssets?: {
108200
108466
  persistentId: string;
@@ -108229,8 +108495,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
108229
108495
  userMetadata?: string | null | undefined;
108230
108496
  } & {
108231
108497
  children: ({
108232
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108233
108498
  persistentId: string;
108499
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108234
108500
  designObjectId?: string | null | undefined;
108235
108501
  designObjectIds?: string[] | null | undefined;
108236
108502
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -108377,6 +108643,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
108377
108643
  } | null | undefined;
108378
108644
  renderCodeProperties?: {
108379
108645
  showCode: boolean;
108646
+ showControls?: boolean | undefined;
108380
108647
  } | null | undefined;
108381
108648
  componentAssets?: {
108382
108649
  persistentId: string;
@@ -108479,8 +108746,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
108479
108746
  isHidden?: boolean | undefined;
108480
108747
  } | null | undefined;
108481
108748
  oldBlocks?: ({
108482
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108483
108749
  persistentId: string;
108750
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108484
108751
  designObjectId?: string | null | undefined;
108485
108752
  designObjectIds?: string[] | null | undefined;
108486
108753
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -108627,6 +108894,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
108627
108894
  } | null | undefined;
108628
108895
  renderCodeProperties?: {
108629
108896
  showCode: boolean;
108897
+ showControls?: boolean | undefined;
108630
108898
  } | null | undefined;
108631
108899
  componentAssets?: {
108632
108900
  persistentId: string;
@@ -108661,8 +108929,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
108661
108929
  userMetadata?: string | null | undefined;
108662
108930
  } & {
108663
108931
  children: ({
108664
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108665
108932
  persistentId: string;
108933
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108666
108934
  designObjectId?: string | null | undefined;
108667
108935
  designObjectIds?: string[] | null | undefined;
108668
108936
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -108809,6 +109077,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
108809
109077
  } | null | undefined;
108810
109078
  renderCodeProperties?: {
108811
109079
  showCode: boolean;
109080
+ showControls?: boolean | undefined;
108812
109081
  } | null | undefined;
108813
109082
  componentAssets?: {
108814
109083
  persistentId: string;
@@ -108933,8 +109202,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
108933
109202
  isHidden?: boolean | undefined;
108934
109203
  } | null | undefined;
108935
109204
  oldBlocks?: ({
108936
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108937
109205
  persistentId: string;
109206
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
108938
109207
  designObjectId?: string | null | undefined;
108939
109208
  designObjectIds?: string[] | null | undefined;
108940
109209
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -109081,6 +109350,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
109081
109350
  } | null | undefined;
109082
109351
  renderCodeProperties?: {
109083
109352
  showCode: boolean;
109353
+ showControls?: boolean | undefined;
109084
109354
  } | null | undefined;
109085
109355
  componentAssets?: {
109086
109356
  persistentId: string;
@@ -109115,8 +109385,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
109115
109385
  userMetadata?: string | null | undefined;
109116
109386
  } & {
109117
109387
  children: ({
109118
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
109119
109388
  persistentId: string;
109389
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
109120
109390
  designObjectId?: string | null | undefined;
109121
109391
  designObjectIds?: string[] | null | undefined;
109122
109392
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -109263,6 +109533,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
109263
109533
  } | null | undefined;
109264
109534
  renderCodeProperties?: {
109265
109535
  showCode: boolean;
109536
+ showControls?: boolean | undefined;
109266
109537
  } | null | undefined;
109267
109538
  componentAssets?: {
109268
109539
  persistentId: string;
@@ -109778,8 +110049,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
109778
110049
  isHidden?: boolean | undefined;
109779
110050
  } | null | undefined;
109780
110051
  oldBlocks?: ({
109781
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
109782
110052
  persistentId: string;
110053
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
109783
110054
  designObjectId?: string | null | undefined;
109784
110055
  designObjectIds?: string[] | null | undefined;
109785
110056
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -109926,6 +110197,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
109926
110197
  } | null | undefined;
109927
110198
  renderCodeProperties?: {
109928
110199
  showCode: boolean;
110200
+ showControls?: boolean | undefined;
109929
110201
  } | null | undefined;
109930
110202
  componentAssets?: {
109931
110203
  persistentId: string;
@@ -109960,8 +110232,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
109960
110232
  userMetadata?: string | null | undefined;
109961
110233
  } & {
109962
110234
  children: ({
109963
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
109964
110235
  persistentId: string;
110236
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
109965
110237
  designObjectId?: string | null | undefined;
109966
110238
  designObjectIds?: string[] | null | undefined;
109967
110239
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -110108,6 +110380,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
110108
110380
  } | null | undefined;
110109
110381
  renderCodeProperties?: {
110110
110382
  showCode: boolean;
110383
+ showControls?: boolean | undefined;
110111
110384
  } | null | undefined;
110112
110385
  componentAssets?: {
110113
110386
  persistentId: string;
@@ -110358,8 +110631,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
110358
110631
  isHidden?: boolean | undefined;
110359
110632
  } | null | undefined>;
110360
110633
  oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
110361
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
110362
110634
  persistentId: string;
110635
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
110363
110636
  designObjectId?: string | null | undefined;
110364
110637
  designObjectIds?: string[] | null | undefined;
110365
110638
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -110506,6 +110779,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
110506
110779
  } | null | undefined;
110507
110780
  renderCodeProperties?: {
110508
110781
  showCode: boolean;
110782
+ showControls?: boolean | undefined;
110509
110783
  } | null | undefined;
110510
110784
  componentAssets?: {
110511
110785
  persistentId: string;
@@ -110540,8 +110814,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
110540
110814
  userMetadata?: string | null | undefined;
110541
110815
  } & {
110542
110816
  children: ({
110543
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
110544
110817
  persistentId: string;
110818
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
110545
110819
  designObjectId?: string | null | undefined;
110546
110820
  designObjectIds?: string[] | null | undefined;
110547
110821
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -110688,6 +110962,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
110688
110962
  } | null | undefined;
110689
110963
  renderCodeProperties?: {
110690
110964
  showCode: boolean;
110965
+ showControls?: boolean | undefined;
110691
110966
  } | null | undefined;
110692
110967
  componentAssets?: {
110693
110968
  persistentId: string;
@@ -110790,8 +111065,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
110790
111065
  isHidden?: boolean | undefined;
110791
111066
  } | null | undefined;
110792
111067
  oldBlocks?: ({
110793
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
110794
111068
  persistentId: string;
111069
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
110795
111070
  designObjectId?: string | null | undefined;
110796
111071
  designObjectIds?: string[] | null | undefined;
110797
111072
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -110938,6 +111213,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
110938
111213
  } | null | undefined;
110939
111214
  renderCodeProperties?: {
110940
111215
  showCode: boolean;
111216
+ showControls?: boolean | undefined;
110941
111217
  } | null | undefined;
110942
111218
  componentAssets?: {
110943
111219
  persistentId: string;
@@ -110972,8 +111248,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
110972
111248
  userMetadata?: string | null | undefined;
110973
111249
  } & {
110974
111250
  children: ({
110975
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
110976
111251
  persistentId: string;
111252
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
110977
111253
  designObjectId?: string | null | undefined;
110978
111254
  designObjectIds?: string[] | null | undefined;
110979
111255
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -111120,6 +111396,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
111120
111396
  } | null | undefined;
111121
111397
  renderCodeProperties?: {
111122
111398
  showCode: boolean;
111399
+ showControls?: boolean | undefined;
111123
111400
  } | null | undefined;
111124
111401
  componentAssets?: {
111125
111402
  persistentId: string;
@@ -111244,8 +111521,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
111244
111521
  isHidden?: boolean | undefined;
111245
111522
  } | null | undefined;
111246
111523
  oldBlocks?: ({
111247
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
111248
111524
  persistentId: string;
111525
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
111249
111526
  designObjectId?: string | null | undefined;
111250
111527
  designObjectIds?: string[] | null | undefined;
111251
111528
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -111392,6 +111669,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
111392
111669
  } | null | undefined;
111393
111670
  renderCodeProperties?: {
111394
111671
  showCode: boolean;
111672
+ showControls?: boolean | undefined;
111395
111673
  } | null | undefined;
111396
111674
  componentAssets?: {
111397
111675
  persistentId: string;
@@ -111426,8 +111704,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
111426
111704
  userMetadata?: string | null | undefined;
111427
111705
  } & {
111428
111706
  children: ({
111429
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
111430
111707
  persistentId: string;
111708
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
111431
111709
  designObjectId?: string | null | undefined;
111432
111710
  designObjectIds?: string[] | null | undefined;
111433
111711
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -111574,6 +111852,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
111574
111852
  } | null | undefined;
111575
111853
  renderCodeProperties?: {
111576
111854
  showCode: boolean;
111855
+ showControls?: boolean | undefined;
111577
111856
  } | null | undefined;
111578
111857
  componentAssets?: {
111579
111858
  persistentId: string;
@@ -112864,12 +113143,15 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
112864
113143
  items: z.ZodOptional<z.ZodObject<{
112865
113144
  numberOfItems: z.ZodNumber;
112866
113145
  allowLinks: z.ZodBoolean;
113146
+ newItemLabel: z.ZodOptional<z.ZodString>;
112867
113147
  }, "strip", z.ZodTypeAny, {
112868
113148
  numberOfItems: number;
112869
113149
  allowLinks: boolean;
113150
+ newItemLabel?: string | undefined;
112870
113151
  }, {
112871
113152
  numberOfItems: number;
112872
113153
  allowLinks: boolean;
113154
+ newItemLabel?: string | undefined;
112873
113155
  }>>;
112874
113156
  entities: z.ZodOptional<z.ZodObject<{
112875
113157
  selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
@@ -112886,6 +113168,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
112886
113168
  items?: {
112887
113169
  numberOfItems: number;
112888
113170
  allowLinks: boolean;
113171
+ newItemLabel?: string | undefined;
112889
113172
  } | undefined;
112890
113173
  entities?: {
112891
113174
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -112896,6 +113179,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
112896
113179
  items?: {
112897
113180
  numberOfItems: number;
112898
113181
  allowLinks: boolean;
113182
+ newItemLabel?: string | undefined;
112899
113183
  } | undefined;
112900
113184
  entities?: {
112901
113185
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -112942,8 +113226,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
112942
113226
  }>>;
112943
113227
  }, "strip", z.ZodTypeAny, {
112944
113228
  id: string;
112945
- name: string;
112946
113229
  description: string;
113230
+ name: string;
112947
113231
  item: {
112948
113232
  properties: {
112949
113233
  id: string;
@@ -112990,6 +113274,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
112990
113274
  items?: {
112991
113275
  numberOfItems: number;
112992
113276
  allowLinks: boolean;
113277
+ newItemLabel?: string | undefined;
112993
113278
  } | undefined;
112994
113279
  entities?: {
112995
113280
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -113013,8 +113298,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113013
113298
  } | undefined;
113014
113299
  }, {
113015
113300
  id: string;
113016
- name: string;
113017
113301
  description: string;
113302
+ name: string;
113018
113303
  item: {
113019
113304
  properties: {
113020
113305
  id: string;
@@ -113061,6 +113346,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113061
113346
  items?: {
113062
113347
  numberOfItems: number;
113063
113348
  allowLinks: boolean;
113349
+ newItemLabel?: string | undefined;
113064
113350
  } | undefined;
113065
113351
  entities?: {
113066
113352
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -113278,8 +113564,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113278
113564
  };
113279
113565
  blockDefinitions: {
113280
113566
  id: string;
113281
- name: string;
113282
113567
  description: string;
113568
+ name: string;
113283
113569
  item: {
113284
113570
  properties: {
113285
113571
  id: string;
@@ -113326,6 +113612,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113326
113612
  items?: {
113327
113613
  numberOfItems: number;
113328
113614
  allowLinks: boolean;
113615
+ newItemLabel?: string | undefined;
113329
113616
  } | undefined;
113330
113617
  entities?: {
113331
113618
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -113388,8 +113675,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113388
113675
  isHidden?: boolean | undefined;
113389
113676
  } | null | undefined;
113390
113677
  oldBlocks?: ({
113391
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
113392
113678
  persistentId: string;
113679
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
113393
113680
  designObjectId?: string | null | undefined;
113394
113681
  designObjectIds?: string[] | null | undefined;
113395
113682
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -113536,6 +113823,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113536
113823
  } | null | undefined;
113537
113824
  renderCodeProperties?: {
113538
113825
  showCode: boolean;
113826
+ showControls?: boolean | undefined;
113539
113827
  } | null | undefined;
113540
113828
  componentAssets?: {
113541
113829
  persistentId: string;
@@ -113570,8 +113858,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113570
113858
  userMetadata?: string | null | undefined;
113571
113859
  } & {
113572
113860
  children: ({
113573
- type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
113574
113861
  persistentId: string;
113862
+ type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
113575
113863
  designObjectId?: string | null | undefined;
113576
113864
  designObjectIds?: string[] | null | undefined;
113577
113865
  tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
@@ -113718,6 +114006,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113718
114006
  } | null | undefined;
113719
114007
  renderCodeProperties?: {
113720
114008
  showCode: boolean;
114009
+ showControls?: boolean | undefined;
113721
114010
  } | null | undefined;
113722
114011
  componentAssets?: {
113723
114012
  persistentId: string;
@@ -113907,8 +114196,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113907
114196
  };
113908
114197
  blockDefinitions: {
113909
114198
  id: string;
113910
- name: string;
113911
114199
  description: string;
114200
+ name: string;
113912
114201
  item: {
113913
114202
  properties: {
113914
114203
  id: string;
@@ -113955,6 +114244,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
113955
114244
  items?: {
113956
114245
  numberOfItems: number;
113957
114246
  allowLinks: boolean;
114247
+ newItemLabel?: string | undefined;
113958
114248
  } | undefined;
113959
114249
  entities?: {
113960
114250
  selectionType: "Group" | "Entity" | "EntityAndGroup";
@@ -114406,6 +114696,7 @@ declare const UserOnboarding: z.ZodObject<{
114406
114696
  jobTitle: z.ZodOptional<z.ZodString>;
114407
114697
  phase: z.ZodOptional<z.ZodString>;
114408
114698
  jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
114699
+ designSystemName: z.ZodOptional<z.ZodString>;
114409
114700
  }, "strip", z.ZodTypeAny, {
114410
114701
  companyName?: string | undefined;
114411
114702
  numberOfPeopleInOrg?: string | undefined;
@@ -114414,6 +114705,7 @@ declare const UserOnboarding: z.ZodObject<{
114414
114705
  jobTitle?: string | undefined;
114415
114706
  phase?: string | undefined;
114416
114707
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114708
+ designSystemName?: string | undefined;
114417
114709
  }, {
114418
114710
  companyName?: string | undefined;
114419
114711
  numberOfPeopleInOrg?: string | undefined;
@@ -114422,8 +114714,69 @@ declare const UserOnboarding: z.ZodObject<{
114422
114714
  jobTitle?: string | undefined;
114423
114715
  phase?: string | undefined;
114424
114716
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114717
+ designSystemName?: string | undefined;
114425
114718
  }>;
114426
114719
  type UserOnboarding = z.infer<typeof UserOnboarding>;
114720
+ declare const UserProfileUpdate: z.ZodObject<Omit<{
114721
+ name: z.ZodOptional<z.ZodString>;
114722
+ avatar: z.ZodOptional<z.ZodOptional<z.ZodString>>;
114723
+ nickname: z.ZodOptional<z.ZodOptional<z.ZodString>>;
114724
+ onboarding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
114725
+ companyName: z.ZodOptional<z.ZodString>;
114726
+ numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
114727
+ numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
114728
+ department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
114729
+ jobTitle: z.ZodOptional<z.ZodString>;
114730
+ phase: z.ZodOptional<z.ZodString>;
114731
+ jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
114732
+ designSystemName: z.ZodOptional<z.ZodString>;
114733
+ }, "strip", z.ZodTypeAny, {
114734
+ companyName?: string | undefined;
114735
+ numberOfPeopleInOrg?: string | undefined;
114736
+ numberOfPeopleInDesignTeam?: string | undefined;
114737
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
114738
+ jobTitle?: string | undefined;
114739
+ phase?: string | undefined;
114740
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114741
+ designSystemName?: string | undefined;
114742
+ }, {
114743
+ companyName?: string | undefined;
114744
+ numberOfPeopleInOrg?: string | undefined;
114745
+ numberOfPeopleInDesignTeam?: string | undefined;
114746
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
114747
+ jobTitle?: string | undefined;
114748
+ phase?: string | undefined;
114749
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114750
+ designSystemName?: string | undefined;
114751
+ }>>>;
114752
+ }, "avatar">, "strip", z.ZodTypeAny, {
114753
+ name?: string | undefined;
114754
+ nickname?: string | undefined;
114755
+ onboarding?: {
114756
+ companyName?: string | undefined;
114757
+ numberOfPeopleInOrg?: string | undefined;
114758
+ numberOfPeopleInDesignTeam?: string | undefined;
114759
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
114760
+ jobTitle?: string | undefined;
114761
+ phase?: string | undefined;
114762
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114763
+ designSystemName?: string | undefined;
114764
+ } | undefined;
114765
+ }, {
114766
+ name?: string | undefined;
114767
+ nickname?: string | undefined;
114768
+ onboarding?: {
114769
+ companyName?: string | undefined;
114770
+ numberOfPeopleInOrg?: string | undefined;
114771
+ numberOfPeopleInDesignTeam?: string | undefined;
114772
+ department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
114773
+ jobTitle?: string | undefined;
114774
+ phase?: string | undefined;
114775
+ jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114776
+ designSystemName?: string | undefined;
114777
+ } | undefined;
114778
+ }>;
114779
+ type UserProfileUpdate = z.infer<typeof UserProfileUpdate>;
114427
114780
  declare const UserProfile: z.ZodObject<{
114428
114781
  name: z.ZodString;
114429
114782
  avatar: z.ZodOptional<z.ZodString>;
@@ -114436,6 +114789,7 @@ declare const UserProfile: z.ZodObject<{
114436
114789
  jobTitle: z.ZodOptional<z.ZodString>;
114437
114790
  phase: z.ZodOptional<z.ZodString>;
114438
114791
  jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
114792
+ designSystemName: z.ZodOptional<z.ZodString>;
114439
114793
  }, "strip", z.ZodTypeAny, {
114440
114794
  companyName?: string | undefined;
114441
114795
  numberOfPeopleInOrg?: string | undefined;
@@ -114444,6 +114798,7 @@ declare const UserProfile: z.ZodObject<{
114444
114798
  jobTitle?: string | undefined;
114445
114799
  phase?: string | undefined;
114446
114800
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114801
+ designSystemName?: string | undefined;
114447
114802
  }, {
114448
114803
  companyName?: string | undefined;
114449
114804
  numberOfPeopleInOrg?: string | undefined;
@@ -114452,6 +114807,7 @@ declare const UserProfile: z.ZodObject<{
114452
114807
  jobTitle?: string | undefined;
114453
114808
  phase?: string | undefined;
114454
114809
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114810
+ designSystemName?: string | undefined;
114455
114811
  }>>;
114456
114812
  }, "strip", z.ZodTypeAny, {
114457
114813
  name: string;
@@ -114465,6 +114821,7 @@ declare const UserProfile: z.ZodObject<{
114465
114821
  jobTitle?: string | undefined;
114466
114822
  phase?: string | undefined;
114467
114823
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114824
+ designSystemName?: string | undefined;
114468
114825
  } | undefined;
114469
114826
  }, {
114470
114827
  name: string;
@@ -114478,6 +114835,7 @@ declare const UserProfile: z.ZodObject<{
114478
114835
  jobTitle?: string | undefined;
114479
114836
  phase?: string | undefined;
114480
114837
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114838
+ designSystemName?: string | undefined;
114481
114839
  } | undefined;
114482
114840
  }>;
114483
114841
  type UserProfile = z.infer<typeof UserProfile>;
@@ -114512,6 +114870,7 @@ declare const User: z.ZodObject<{
114512
114870
  jobTitle: z.ZodOptional<z.ZodString>;
114513
114871
  phase: z.ZodOptional<z.ZodString>;
114514
114872
  jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
114873
+ designSystemName: z.ZodOptional<z.ZodString>;
114515
114874
  }, "strip", z.ZodTypeAny, {
114516
114875
  companyName?: string | undefined;
114517
114876
  numberOfPeopleInOrg?: string | undefined;
@@ -114520,6 +114879,7 @@ declare const User: z.ZodObject<{
114520
114879
  jobTitle?: string | undefined;
114521
114880
  phase?: string | undefined;
114522
114881
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114882
+ designSystemName?: string | undefined;
114523
114883
  }, {
114524
114884
  companyName?: string | undefined;
114525
114885
  numberOfPeopleInOrg?: string | undefined;
@@ -114528,6 +114888,7 @@ declare const User: z.ZodObject<{
114528
114888
  jobTitle?: string | undefined;
114529
114889
  phase?: string | undefined;
114530
114890
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114891
+ designSystemName?: string | undefined;
114531
114892
  }>>;
114532
114893
  }, "strip", z.ZodTypeAny, {
114533
114894
  name: string;
@@ -114541,6 +114902,7 @@ declare const User: z.ZodObject<{
114541
114902
  jobTitle?: string | undefined;
114542
114903
  phase?: string | undefined;
114543
114904
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114905
+ designSystemName?: string | undefined;
114544
114906
  } | undefined;
114545
114907
  }, {
114546
114908
  name: string;
@@ -114554,6 +114916,7 @@ declare const User: z.ZodObject<{
114554
114916
  jobTitle?: string | undefined;
114555
114917
  phase?: string | undefined;
114556
114918
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
114919
+ designSystemName?: string | undefined;
114557
114920
  } | undefined;
114558
114921
  }>;
114559
114922
  linkedIntegrations: z.ZodOptional<z.ZodObject<{
@@ -114769,6 +115132,7 @@ declare const User: z.ZodObject<{
114769
115132
  jobTitle?: string | undefined;
114770
115133
  phase?: string | undefined;
114771
115134
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
115135
+ designSystemName?: string | undefined;
114772
115136
  } | undefined;
114773
115137
  };
114774
115138
  isProtected: boolean;
@@ -114833,6 +115197,7 @@ declare const User: z.ZodObject<{
114833
115197
  jobTitle?: string | undefined;
114834
115198
  phase?: string | undefined;
114835
115199
  jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
115200
+ designSystemName?: string | undefined;
114836
115201
  } | undefined;
114837
115202
  };
114838
115203
  isProtected: boolean;
@@ -115090,47 +115455,25 @@ declare const UserInvites: z.ZodArray<z.ZodObject<{
115090
115455
  }>, "many">;
115091
115456
  type UserInvites = z.infer<typeof UserInvites>;
115092
115457
 
115093
- declare const WorkspaceContext: z.ZodObject<{
115094
- workspaceId: z.ZodString;
115095
- product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
115096
- ipWhitelist: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
115097
- entries: {
115098
- name: string;
115099
- isEnabled: boolean;
115100
- range: string;
115101
- }[];
115102
- isEnabledForCloud: boolean;
115103
- isEnabledForDocs: boolean;
115104
- }, z.ZodTypeDef, {
115105
- entries: {
115106
- name: string;
115107
- isEnabled: boolean;
115108
- range: string;
115109
- }[];
115110
- isEnabledForCloud: boolean;
115111
- isEnabledForDocs: boolean;
115112
- }>>>, {
115113
- entries: {
115458
+ declare const WorkspaceConfigurationUpdate: z.ZodObject<{
115459
+ id: z.ZodString;
115460
+ ipWhitelist: z.ZodOptional<z.ZodObject<{
115461
+ isEnabledForCloud: z.ZodBoolean;
115462
+ isEnabledForDocs: z.ZodBoolean;
115463
+ entries: z.ZodArray<z.ZodObject<{
115464
+ isEnabled: z.ZodBoolean;
115465
+ name: z.ZodString;
115466
+ range: z.ZodEffects<z.ZodString, string, string>;
115467
+ }, "strip", z.ZodTypeAny, {
115114
115468
  name: string;
115115
115469
  isEnabled: boolean;
115116
115470
  range: string;
115117
- }[];
115118
- isEnabledForCloud: boolean;
115119
- isEnabledForDocs: boolean;
115120
- } | undefined, {
115121
- entries: {
115471
+ }, {
115122
115472
  name: string;
115123
115473
  isEnabled: boolean;
115124
115474
  range: string;
115125
- }[];
115126
- isEnabledForCloud: boolean;
115127
- isEnabledForDocs: boolean;
115128
- } | null | undefined>;
115129
- publicDesignSystem: z.ZodOptional<z.ZodBoolean>;
115130
- }, "strip", z.ZodTypeAny, {
115131
- product: "free" | "team" | "company" | "enterprise";
115132
- workspaceId: string;
115133
- ipWhitelist?: {
115475
+ }>, "many">;
115476
+ }, "strip", z.ZodTypeAny, {
115134
115477
  entries: {
115135
115478
  name: string;
115136
115479
  isEnabled: boolean;
@@ -115138,12 +115481,7 @@ declare const WorkspaceContext: z.ZodObject<{
115138
115481
  }[];
115139
115482
  isEnabledForCloud: boolean;
115140
115483
  isEnabledForDocs: boolean;
115141
- } | undefined;
115142
- publicDesignSystem?: boolean | undefined;
115143
- }, {
115144
- product: "free" | "team" | "company" | "enterprise";
115145
- workspaceId: string;
115146
- ipWhitelist?: {
115484
+ }, {
115147
115485
  entries: {
115148
115486
  name: string;
115149
115487
  isEnabled: boolean;
@@ -115151,55 +115489,442 @@ declare const WorkspaceContext: z.ZodObject<{
115151
115489
  }[];
115152
115490
  isEnabledForCloud: boolean;
115153
115491
  isEnabledForDocs: boolean;
115154
- } | null | undefined;
115155
- publicDesignSystem?: boolean | undefined;
115156
- }>;
115157
- type WorkspaceContext = z.infer<typeof WorkspaceContext>;
115158
-
115159
- declare const HANDLE_MIN_LENGTH = 2;
115160
- declare const HANDLE_MAX_LENGTH = 64;
115161
- declare const CreateWorkspaceInput: z.ZodObject<{
115162
- name: z.ZodString;
115163
- product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
115164
- priceId: z.ZodString;
115165
- billingEmail: z.ZodOptional<z.ZodString>;
115166
- handle: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
115167
- invites: z.ZodOptional<z.ZodArray<z.ZodObject<{
115168
- email: z.ZodEffects<z.ZodString, string, string>;
115169
- role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]>;
115170
- }, "strip", z.ZodTypeAny, {
115171
- email: string;
115172
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
115173
- }, {
115174
- email: string;
115175
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
115176
- }>, "many">>;
115177
- promoCode: z.ZodOptional<z.ZodString>;
115178
- status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
115179
- planInterval: z.ZodOptional<z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>>;
115180
- seats: z.ZodOptional<z.ZodNumber>;
115181
- seatLimit: z.ZodOptional<z.ZodNumber>;
115182
- card: z.ZodOptional<z.ZodObject<{
115183
- cardId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115184
- last4: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115185
- expiryMonth: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115186
- expiryYear: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115187
- brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115188
- name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115189
- }, "strip", z.ZodTypeAny, {
115190
- cardId?: string | null | undefined;
115191
- last4?: string | null | undefined;
115192
- expiryMonth?: string | null | undefined;
115193
- expiryYear?: string | null | undefined;
115194
- brand?: string | null | undefined;
115195
- name?: string | null | undefined;
115196
- }, {
115197
- cardId?: string | null | undefined;
115198
- last4?: string | null | undefined;
115199
- expiryMonth?: string | null | undefined;
115200
- expiryYear?: string | null | undefined;
115201
- brand?: string | null | undefined;
115202
- name?: string | null | undefined;
115492
+ }>>;
115493
+ sso: z.ZodOptional<z.ZodObject<{
115494
+ providerId: z.ZodString;
115495
+ defaultAutoInviteValue: z.ZodBoolean;
115496
+ autoInviteDomains: z.ZodRecord<z.ZodString, z.ZodBoolean>;
115497
+ skipDocsSupernovaLogin: z.ZodBoolean;
115498
+ areInvitesDisabled: z.ZodBoolean;
115499
+ isTestMode: z.ZodBoolean;
115500
+ emailDomains: z.ZodArray<z.ZodString, "many">;
115501
+ metadataXml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115502
+ }, "strip", z.ZodTypeAny, {
115503
+ providerId: string;
115504
+ defaultAutoInviteValue: boolean;
115505
+ autoInviteDomains: Record<string, boolean>;
115506
+ skipDocsSupernovaLogin: boolean;
115507
+ areInvitesDisabled: boolean;
115508
+ isTestMode: boolean;
115509
+ emailDomains: string[];
115510
+ metadataXml?: string | null | undefined;
115511
+ }, {
115512
+ providerId: string;
115513
+ defaultAutoInviteValue: boolean;
115514
+ autoInviteDomains: Record<string, boolean>;
115515
+ skipDocsSupernovaLogin: boolean;
115516
+ areInvitesDisabled: boolean;
115517
+ isTestMode: boolean;
115518
+ emailDomains: string[];
115519
+ metadataXml?: string | null | undefined;
115520
+ }>>;
115521
+ npmRegistrySettings: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
115522
+ registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
115523
+ enabledScopes: z.ZodArray<z.ZodString, "many">;
115524
+ customRegistryUrl: z.ZodOptional<z.ZodString>;
115525
+ bypassProxy: z.ZodDefault<z.ZodBoolean>;
115526
+ npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
115527
+ npmProxyVersion: z.ZodOptional<z.ZodNumber>;
115528
+ }, "strip", z.ZodTypeAny, {
115529
+ registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
115530
+ enabledScopes: string[];
115531
+ bypassProxy: boolean;
115532
+ customRegistryUrl?: string | undefined;
115533
+ npmProxyRegistryConfigId?: string | undefined;
115534
+ npmProxyVersion?: number | undefined;
115535
+ }, {
115536
+ registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
115537
+ enabledScopes: string[];
115538
+ customRegistryUrl?: string | undefined;
115539
+ bypassProxy?: boolean | undefined;
115540
+ npmProxyRegistryConfigId?: string | undefined;
115541
+ npmProxyVersion?: number | undefined;
115542
+ }>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
115543
+ authType: z.ZodLiteral<"Basic">;
115544
+ username: z.ZodString;
115545
+ password: z.ZodString;
115546
+ }, "strip", z.ZodTypeAny, {
115547
+ authType: "Basic";
115548
+ username: string;
115549
+ password: string;
115550
+ }, {
115551
+ authType: "Basic";
115552
+ username: string;
115553
+ password: string;
115554
+ }>, z.ZodObject<{
115555
+ authType: z.ZodLiteral<"Bearer">;
115556
+ accessToken: z.ZodString;
115557
+ }, "strip", z.ZodTypeAny, {
115558
+ authType: "Bearer";
115559
+ accessToken: string;
115560
+ }, {
115561
+ authType: "Bearer";
115562
+ accessToken: string;
115563
+ }>, z.ZodObject<{
115564
+ authType: z.ZodLiteral<"None">;
115565
+ }, "strip", z.ZodTypeAny, {
115566
+ authType: "None";
115567
+ }, {
115568
+ authType: "None";
115569
+ }>, z.ZodObject<{
115570
+ authType: z.ZodLiteral<"Custom">;
115571
+ authHeaderName: z.ZodString;
115572
+ authHeaderValue: z.ZodString;
115573
+ }, "strip", z.ZodTypeAny, {
115574
+ authType: "Custom";
115575
+ authHeaderName: string;
115576
+ authHeaderValue: string;
115577
+ }, {
115578
+ authType: "Custom";
115579
+ authHeaderName: string;
115580
+ authHeaderValue: string;
115581
+ }>]>>>;
115582
+ profile: z.ZodOptional<z.ZodObject<Omit<{
115583
+ name: z.ZodString;
115584
+ handle: z.ZodString;
115585
+ color: z.ZodString;
115586
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
115587
+ billingDetails: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
115588
+ address?: {
115589
+ street1?: string | undefined;
115590
+ street2?: string | undefined;
115591
+ city?: string | undefined;
115592
+ postal?: string | undefined;
115593
+ country?: string | undefined;
115594
+ state?: string | undefined;
115595
+ } | undefined;
115596
+ email?: string | undefined;
115597
+ companyName?: string | undefined;
115598
+ companyId?: string | undefined;
115599
+ notes?: string | undefined;
115600
+ vat?: string | undefined;
115601
+ poNumber?: string | undefined;
115602
+ }, z.ZodTypeDef, {
115603
+ address?: {
115604
+ street1?: string | null | undefined;
115605
+ street2?: string | null | undefined;
115606
+ city?: string | null | undefined;
115607
+ postal?: string | null | undefined;
115608
+ country?: string | null | undefined;
115609
+ state?: string | null | undefined;
115610
+ } | null | undefined;
115611
+ email?: string | null | undefined;
115612
+ companyName?: string | null | undefined;
115613
+ companyId?: string | null | undefined;
115614
+ notes?: string | null | undefined;
115615
+ vat?: string | null | undefined;
115616
+ poNumber?: string | null | undefined;
115617
+ }>>>, {
115618
+ address?: {
115619
+ street1?: string | undefined;
115620
+ street2?: string | undefined;
115621
+ city?: string | undefined;
115622
+ postal?: string | undefined;
115623
+ country?: string | undefined;
115624
+ state?: string | undefined;
115625
+ } | undefined;
115626
+ email?: string | undefined;
115627
+ companyName?: string | undefined;
115628
+ companyId?: string | undefined;
115629
+ notes?: string | undefined;
115630
+ vat?: string | undefined;
115631
+ poNumber?: string | undefined;
115632
+ } | undefined, {
115633
+ address?: {
115634
+ street1?: string | null | undefined;
115635
+ street2?: string | null | undefined;
115636
+ city?: string | null | undefined;
115637
+ postal?: string | null | undefined;
115638
+ country?: string | null | undefined;
115639
+ state?: string | null | undefined;
115640
+ } | null | undefined;
115641
+ email?: string | null | undefined;
115642
+ companyName?: string | null | undefined;
115643
+ companyId?: string | null | undefined;
115644
+ notes?: string | null | undefined;
115645
+ vat?: string | null | undefined;
115646
+ poNumber?: string | null | undefined;
115647
+ } | null | undefined>;
115648
+ }, "avatar">, "strip", z.ZodTypeAny, {
115649
+ name: string;
115650
+ handle: string;
115651
+ color: string;
115652
+ billingDetails?: {
115653
+ address?: {
115654
+ street1?: string | undefined;
115655
+ street2?: string | undefined;
115656
+ city?: string | undefined;
115657
+ postal?: string | undefined;
115658
+ country?: string | undefined;
115659
+ state?: string | undefined;
115660
+ } | undefined;
115661
+ email?: string | undefined;
115662
+ companyName?: string | undefined;
115663
+ companyId?: string | undefined;
115664
+ notes?: string | undefined;
115665
+ vat?: string | undefined;
115666
+ poNumber?: string | undefined;
115667
+ } | undefined;
115668
+ }, {
115669
+ name: string;
115670
+ handle: string;
115671
+ color: string;
115672
+ billingDetails?: {
115673
+ address?: {
115674
+ street1?: string | null | undefined;
115675
+ street2?: string | null | undefined;
115676
+ city?: string | null | undefined;
115677
+ postal?: string | null | undefined;
115678
+ country?: string | null | undefined;
115679
+ state?: string | null | undefined;
115680
+ } | null | undefined;
115681
+ email?: string | null | undefined;
115682
+ companyName?: string | null | undefined;
115683
+ companyId?: string | null | undefined;
115684
+ notes?: string | null | undefined;
115685
+ vat?: string | null | undefined;
115686
+ poNumber?: string | null | undefined;
115687
+ } | null | undefined;
115688
+ }>>;
115689
+ }, "strip", z.ZodTypeAny, {
115690
+ id: string;
115691
+ ipWhitelist?: {
115692
+ entries: {
115693
+ name: string;
115694
+ isEnabled: boolean;
115695
+ range: string;
115696
+ }[];
115697
+ isEnabledForCloud: boolean;
115698
+ isEnabledForDocs: boolean;
115699
+ } | undefined;
115700
+ sso?: {
115701
+ providerId: string;
115702
+ defaultAutoInviteValue: boolean;
115703
+ autoInviteDomains: Record<string, boolean>;
115704
+ skipDocsSupernovaLogin: boolean;
115705
+ areInvitesDisabled: boolean;
115706
+ isTestMode: boolean;
115707
+ emailDomains: string[];
115708
+ metadataXml?: string | null | undefined;
115709
+ } | undefined;
115710
+ npmRegistrySettings?: ({
115711
+ registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
115712
+ enabledScopes: string[];
115713
+ bypassProxy: boolean;
115714
+ customRegistryUrl?: string | undefined;
115715
+ npmProxyRegistryConfigId?: string | undefined;
115716
+ npmProxyVersion?: number | undefined;
115717
+ } & ({
115718
+ authType: "Basic";
115719
+ username: string;
115720
+ password: string;
115721
+ } | {
115722
+ authType: "Bearer";
115723
+ accessToken: string;
115724
+ } | {
115725
+ authType: "None";
115726
+ } | {
115727
+ authType: "Custom";
115728
+ authHeaderName: string;
115729
+ authHeaderValue: string;
115730
+ })) | undefined;
115731
+ profile?: {
115732
+ name: string;
115733
+ handle: string;
115734
+ color: string;
115735
+ billingDetails?: {
115736
+ address?: {
115737
+ street1?: string | undefined;
115738
+ street2?: string | undefined;
115739
+ city?: string | undefined;
115740
+ postal?: string | undefined;
115741
+ country?: string | undefined;
115742
+ state?: string | undefined;
115743
+ } | undefined;
115744
+ email?: string | undefined;
115745
+ companyName?: string | undefined;
115746
+ companyId?: string | undefined;
115747
+ notes?: string | undefined;
115748
+ vat?: string | undefined;
115749
+ poNumber?: string | undefined;
115750
+ } | undefined;
115751
+ } | undefined;
115752
+ }, {
115753
+ id: string;
115754
+ ipWhitelist?: {
115755
+ entries: {
115756
+ name: string;
115757
+ isEnabled: boolean;
115758
+ range: string;
115759
+ }[];
115760
+ isEnabledForCloud: boolean;
115761
+ isEnabledForDocs: boolean;
115762
+ } | undefined;
115763
+ sso?: {
115764
+ providerId: string;
115765
+ defaultAutoInviteValue: boolean;
115766
+ autoInviteDomains: Record<string, boolean>;
115767
+ skipDocsSupernovaLogin: boolean;
115768
+ areInvitesDisabled: boolean;
115769
+ isTestMode: boolean;
115770
+ emailDomains: string[];
115771
+ metadataXml?: string | null | undefined;
115772
+ } | undefined;
115773
+ npmRegistrySettings?: ({
115774
+ registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
115775
+ enabledScopes: string[];
115776
+ customRegistryUrl?: string | undefined;
115777
+ bypassProxy?: boolean | undefined;
115778
+ npmProxyRegistryConfigId?: string | undefined;
115779
+ npmProxyVersion?: number | undefined;
115780
+ } & ({
115781
+ authType: "Basic";
115782
+ username: string;
115783
+ password: string;
115784
+ } | {
115785
+ authType: "Bearer";
115786
+ accessToken: string;
115787
+ } | {
115788
+ authType: "None";
115789
+ } | {
115790
+ authType: "Custom";
115791
+ authHeaderName: string;
115792
+ authHeaderValue: string;
115793
+ })) | undefined;
115794
+ profile?: {
115795
+ name: string;
115796
+ handle: string;
115797
+ color: string;
115798
+ billingDetails?: {
115799
+ address?: {
115800
+ street1?: string | null | undefined;
115801
+ street2?: string | null | undefined;
115802
+ city?: string | null | undefined;
115803
+ postal?: string | null | undefined;
115804
+ country?: string | null | undefined;
115805
+ state?: string | null | undefined;
115806
+ } | null | undefined;
115807
+ email?: string | null | undefined;
115808
+ companyName?: string | null | undefined;
115809
+ companyId?: string | null | undefined;
115810
+ notes?: string | null | undefined;
115811
+ vat?: string | null | undefined;
115812
+ poNumber?: string | null | undefined;
115813
+ } | null | undefined;
115814
+ } | undefined;
115815
+ }>;
115816
+ type WorkspaceConfigurationUpdate = z.infer<typeof WorkspaceConfigurationUpdate>;
115817
+
115818
+ declare const WorkspaceContext: z.ZodObject<{
115819
+ workspaceId: z.ZodString;
115820
+ product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
115821
+ ipWhitelist: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
115822
+ entries: {
115823
+ name: string;
115824
+ isEnabled: boolean;
115825
+ range: string;
115826
+ }[];
115827
+ isEnabledForCloud: boolean;
115828
+ isEnabledForDocs: boolean;
115829
+ }, z.ZodTypeDef, {
115830
+ entries: {
115831
+ name: string;
115832
+ isEnabled: boolean;
115833
+ range: string;
115834
+ }[];
115835
+ isEnabledForCloud: boolean;
115836
+ isEnabledForDocs: boolean;
115837
+ }>>>, {
115838
+ entries: {
115839
+ name: string;
115840
+ isEnabled: boolean;
115841
+ range: string;
115842
+ }[];
115843
+ isEnabledForCloud: boolean;
115844
+ isEnabledForDocs: boolean;
115845
+ } | undefined, {
115846
+ entries: {
115847
+ name: string;
115848
+ isEnabled: boolean;
115849
+ range: string;
115850
+ }[];
115851
+ isEnabledForCloud: boolean;
115852
+ isEnabledForDocs: boolean;
115853
+ } | null | undefined>;
115854
+ publicDesignSystem: z.ZodOptional<z.ZodBoolean>;
115855
+ }, "strip", z.ZodTypeAny, {
115856
+ product: "free" | "team" | "company" | "enterprise";
115857
+ workspaceId: string;
115858
+ ipWhitelist?: {
115859
+ entries: {
115860
+ name: string;
115861
+ isEnabled: boolean;
115862
+ range: string;
115863
+ }[];
115864
+ isEnabledForCloud: boolean;
115865
+ isEnabledForDocs: boolean;
115866
+ } | undefined;
115867
+ publicDesignSystem?: boolean | undefined;
115868
+ }, {
115869
+ product: "free" | "team" | "company" | "enterprise";
115870
+ workspaceId: string;
115871
+ ipWhitelist?: {
115872
+ entries: {
115873
+ name: string;
115874
+ isEnabled: boolean;
115875
+ range: string;
115876
+ }[];
115877
+ isEnabledForCloud: boolean;
115878
+ isEnabledForDocs: boolean;
115879
+ } | null | undefined;
115880
+ publicDesignSystem?: boolean | undefined;
115881
+ }>;
115882
+ type WorkspaceContext = z.infer<typeof WorkspaceContext>;
115883
+
115884
+ declare const HANDLE_MIN_LENGTH = 2;
115885
+ declare const HANDLE_MAX_LENGTH = 64;
115886
+ declare const CreateWorkspaceInput: z.ZodObject<{
115887
+ name: z.ZodString;
115888
+ product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
115889
+ priceId: z.ZodString;
115890
+ billingEmail: z.ZodOptional<z.ZodString>;
115891
+ handle: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
115892
+ invites: z.ZodOptional<z.ZodArray<z.ZodObject<{
115893
+ email: z.ZodEffects<z.ZodString, string, string>;
115894
+ role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]>;
115895
+ }, "strip", z.ZodTypeAny, {
115896
+ email: string;
115897
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
115898
+ }, {
115899
+ email: string;
115900
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
115901
+ }>, "many">>;
115902
+ promoCode: z.ZodOptional<z.ZodString>;
115903
+ status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
115904
+ planInterval: z.ZodOptional<z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>>;
115905
+ seats: z.ZodOptional<z.ZodNumber>;
115906
+ seatLimit: z.ZodOptional<z.ZodNumber>;
115907
+ card: z.ZodOptional<z.ZodObject<{
115908
+ cardId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115909
+ last4: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115910
+ expiryMonth: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115911
+ expiryYear: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115912
+ brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115913
+ name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
115914
+ }, "strip", z.ZodTypeAny, {
115915
+ cardId?: string | null | undefined;
115916
+ last4?: string | null | undefined;
115917
+ expiryMonth?: string | null | undefined;
115918
+ expiryYear?: string | null | undefined;
115919
+ brand?: string | null | undefined;
115920
+ name?: string | null | undefined;
115921
+ }, {
115922
+ cardId?: string | null | undefined;
115923
+ last4?: string | null | undefined;
115924
+ expiryMonth?: string | null | undefined;
115925
+ expiryYear?: string | null | undefined;
115926
+ brand?: string | null | undefined;
115927
+ name?: string | null | undefined;
115203
115928
  }>>;
115204
115929
  sso: z.ZodOptional<z.ZodObject<{
115205
115930
  providerId: z.ZodString;
@@ -115551,6 +116276,114 @@ declare const WorkspaceRoleSchema: z.ZodEnum<["Owner", "Admin", "Creator", "View
115551
116276
  type WorkspaceRole = z.infer<typeof WorkspaceRoleSchema>;
115552
116277
  declare const WorkspaceRole: z.Values<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]>;
115553
116278
 
116279
+ declare const WorkspaceProfileUpdate: z.ZodObject<Omit<{
116280
+ name: z.ZodString;
116281
+ handle: z.ZodString;
116282
+ color: z.ZodString;
116283
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
116284
+ billingDetails: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
116285
+ address?: {
116286
+ street1?: string | undefined;
116287
+ street2?: string | undefined;
116288
+ city?: string | undefined;
116289
+ postal?: string | undefined;
116290
+ country?: string | undefined;
116291
+ state?: string | undefined;
116292
+ } | undefined;
116293
+ email?: string | undefined;
116294
+ companyName?: string | undefined;
116295
+ companyId?: string | undefined;
116296
+ notes?: string | undefined;
116297
+ vat?: string | undefined;
116298
+ poNumber?: string | undefined;
116299
+ }, z.ZodTypeDef, {
116300
+ address?: {
116301
+ street1?: string | null | undefined;
116302
+ street2?: string | null | undefined;
116303
+ city?: string | null | undefined;
116304
+ postal?: string | null | undefined;
116305
+ country?: string | null | undefined;
116306
+ state?: string | null | undefined;
116307
+ } | null | undefined;
116308
+ email?: string | null | undefined;
116309
+ companyName?: string | null | undefined;
116310
+ companyId?: string | null | undefined;
116311
+ notes?: string | null | undefined;
116312
+ vat?: string | null | undefined;
116313
+ poNumber?: string | null | undefined;
116314
+ }>>>, {
116315
+ address?: {
116316
+ street1?: string | undefined;
116317
+ street2?: string | undefined;
116318
+ city?: string | undefined;
116319
+ postal?: string | undefined;
116320
+ country?: string | undefined;
116321
+ state?: string | undefined;
116322
+ } | undefined;
116323
+ email?: string | undefined;
116324
+ companyName?: string | undefined;
116325
+ companyId?: string | undefined;
116326
+ notes?: string | undefined;
116327
+ vat?: string | undefined;
116328
+ poNumber?: string | undefined;
116329
+ } | undefined, {
116330
+ address?: {
116331
+ street1?: string | null | undefined;
116332
+ street2?: string | null | undefined;
116333
+ city?: string | null | undefined;
116334
+ postal?: string | null | undefined;
116335
+ country?: string | null | undefined;
116336
+ state?: string | null | undefined;
116337
+ } | null | undefined;
116338
+ email?: string | null | undefined;
116339
+ companyName?: string | null | undefined;
116340
+ companyId?: string | null | undefined;
116341
+ notes?: string | null | undefined;
116342
+ vat?: string | null | undefined;
116343
+ poNumber?: string | null | undefined;
116344
+ } | null | undefined>;
116345
+ }, "avatar">, "strip", z.ZodTypeAny, {
116346
+ name: string;
116347
+ handle: string;
116348
+ color: string;
116349
+ billingDetails?: {
116350
+ address?: {
116351
+ street1?: string | undefined;
116352
+ street2?: string | undefined;
116353
+ city?: string | undefined;
116354
+ postal?: string | undefined;
116355
+ country?: string | undefined;
116356
+ state?: string | undefined;
116357
+ } | undefined;
116358
+ email?: string | undefined;
116359
+ companyName?: string | undefined;
116360
+ companyId?: string | undefined;
116361
+ notes?: string | undefined;
116362
+ vat?: string | undefined;
116363
+ poNumber?: string | undefined;
116364
+ } | undefined;
116365
+ }, {
116366
+ name: string;
116367
+ handle: string;
116368
+ color: string;
116369
+ billingDetails?: {
116370
+ address?: {
116371
+ street1?: string | null | undefined;
116372
+ street2?: string | null | undefined;
116373
+ city?: string | null | undefined;
116374
+ postal?: string | null | undefined;
116375
+ country?: string | null | undefined;
116376
+ state?: string | null | undefined;
116377
+ } | null | undefined;
116378
+ email?: string | null | undefined;
116379
+ companyName?: string | null | undefined;
116380
+ companyId?: string | null | undefined;
116381
+ notes?: string | null | undefined;
116382
+ vat?: string | null | undefined;
116383
+ poNumber?: string | null | undefined;
116384
+ } | null | undefined;
116385
+ }>;
116386
+ type WorkspaceProfileUpdate = z.infer<typeof WorkspaceProfileUpdate>;
115554
116387
  declare const WorkspaceIpWhitelistEntry: z.ZodObject<{
115555
116388
  isEnabled: z.ZodBoolean;
115556
116389
  name: z.ZodString;
@@ -116732,9 +117565,9 @@ declare const Workspace: z.ZodObject<{
116732
117565
  }, "strip", z.ZodTypeAny, {
116733
117566
  id: string;
116734
117567
  createdAt: Date;
116735
- name: string;
116736
117568
  updatedAt: Date;
116737
117569
  description: string;
117570
+ name: string;
116738
117571
  workspaceId: string;
116739
117572
  docSlug: string;
116740
117573
  docSlugDeprecated: string;
@@ -116751,9 +117584,9 @@ declare const Workspace: z.ZodObject<{
116751
117584
  }, {
116752
117585
  id: string;
116753
117586
  createdAt: Date;
116754
- name: string;
116755
117587
  updatedAt: Date;
116756
117588
  description: string;
117589
+ name: string;
116757
117590
  workspaceId: string;
116758
117591
  docSlug: string;
116759
117592
  docSlugDeprecated: string;
@@ -116963,9 +117796,9 @@ declare const Workspace: z.ZodObject<{
116963
117796
  designSystems?: {
116964
117797
  id: string;
116965
117798
  createdAt: Date;
116966
- name: string;
116967
117799
  updatedAt: Date;
116968
117800
  description: string;
117801
+ name: string;
116969
117802
  workspaceId: string;
116970
117803
  docSlug: string;
116971
117804
  docSlugDeprecated: string;
@@ -117175,9 +118008,9 @@ declare const Workspace: z.ZodObject<{
117175
118008
  designSystems?: {
117176
118009
  id: string;
117177
118010
  createdAt: Date;
117178
- name: string;
117179
118011
  updatedAt: Date;
117180
118012
  description: string;
118013
+ name: string;
117181
118014
  workspaceId: string;
117182
118015
  docSlug: string;
117183
118016
  docSlugDeprecated: string;
@@ -118218,9 +119051,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
118218
119051
  }, "strip", z.ZodTypeAny, {
118219
119052
  id: string;
118220
119053
  createdAt: Date;
118221
- name: string;
118222
119054
  updatedAt: Date;
118223
119055
  description: string;
119056
+ name: string;
118224
119057
  workspaceId: string;
118225
119058
  docSlug: string;
118226
119059
  docSlugDeprecated: string;
@@ -118237,9 +119070,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
118237
119070
  }, {
118238
119071
  id: string;
118239
119072
  createdAt: Date;
118240
- name: string;
118241
119073
  updatedAt: Date;
118242
119074
  description: string;
119075
+ name: string;
118243
119076
  workspaceId: string;
118244
119077
  docSlug: string;
118245
119078
  docSlugDeprecated: string;
@@ -118449,9 +119282,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
118449
119282
  designSystems?: {
118450
119283
  id: string;
118451
119284
  createdAt: Date;
118452
- name: string;
118453
119285
  updatedAt: Date;
118454
119286
  description: string;
119287
+ name: string;
118455
119288
  workspaceId: string;
118456
119289
  docSlug: string;
118457
119290
  docSlugDeprecated: string;
@@ -118661,9 +119494,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
118661
119494
  designSystems?: {
118662
119495
  id: string;
118663
119496
  createdAt: Date;
118664
- name: string;
118665
119497
  updatedAt: Date;
118666
119498
  description: string;
119499
+ name: string;
118667
119500
  workspaceId: string;
118668
119501
  docSlug: string;
118669
119502
  docSlugDeprecated: string;
@@ -118710,9 +119543,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
118710
119543
  }, "strip", z.ZodTypeAny, {
118711
119544
  id: string;
118712
119545
  createdAt: Date;
118713
- name: string;
118714
119546
  updatedAt: Date;
118715
119547
  description: string;
119548
+ name: string;
118716
119549
  workspaceId: string;
118717
119550
  docSlug: string;
118718
119551
  docSlugDeprecated: string;
@@ -118729,9 +119562,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
118729
119562
  }, {
118730
119563
  id: string;
118731
119564
  createdAt: Date;
118732
- name: string;
118733
119565
  updatedAt: Date;
118734
119566
  description: string;
119567
+ name: string;
118735
119568
  workspaceId: string;
118736
119569
  docSlug: string;
118737
119570
  docSlugDeprecated: string;
@@ -118750,9 +119583,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
118750
119583
  designSystems: {
118751
119584
  id: string;
118752
119585
  createdAt: Date;
118753
- name: string;
118754
119586
  updatedAt: Date;
118755
119587
  description: string;
119588
+ name: string;
118756
119589
  workspaceId: string;
118757
119590
  docSlug: string;
118758
119591
  docSlugDeprecated: string;
@@ -118962,9 +119795,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
118962
119795
  designSystems?: {
118963
119796
  id: string;
118964
119797
  createdAt: Date;
118965
- name: string;
118966
119798
  updatedAt: Date;
118967
119799
  description: string;
119800
+ name: string;
118968
119801
  workspaceId: string;
118969
119802
  docSlug: string;
118970
119803
  docSlugDeprecated: string;
@@ -118984,9 +119817,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
118984
119817
  designSystems: {
118985
119818
  id: string;
118986
119819
  createdAt: Date;
118987
- name: string;
118988
119820
  updatedAt: Date;
118989
119821
  description: string;
119822
+ name: string;
118990
119823
  workspaceId: string;
118991
119824
  docSlug: string;
118992
119825
  docSlugDeprecated: string;
@@ -119196,9 +120029,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
119196
120029
  designSystems?: {
119197
120030
  id: string;
119198
120031
  createdAt: Date;
119199
- name: string;
119200
120032
  updatedAt: Date;
119201
120033
  description: string;
120034
+ name: string;
119202
120035
  workspaceId: string;
119203
120036
  docSlug: string;
119204
120037
  docSlugDeprecated: string;
@@ -119217,4 +120050,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
119217
120050
  }>;
119218
120051
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
119219
120052
 
119220
- export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSchedule, ExporterScheduleEventType, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, 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, 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, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
120053
+ export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSchedule, ExporterScheduleEventType, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, 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, 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, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };