@supernova-studio/model 0.24.0 → 0.25.1

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
@@ -93,12 +93,12 @@ declare const Customer: z.ZodObject<{
93
93
  }>;
94
94
  type Customer = z.infer<typeof Customer>;
95
95
  declare const Address: z.ZodObject<{
96
- street1: z.ZodOptional<z.ZodString>;
97
- street2: z.ZodOptional<z.ZodString>;
98
- city: z.ZodOptional<z.ZodString>;
99
- postal: z.ZodOptional<z.ZodString>;
100
- country: z.ZodOptional<z.ZodString>;
101
- state: z.ZodOptional<z.ZodString>;
96
+ street1: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
97
+ street2: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
98
+ city: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
99
+ postal: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
100
+ country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
101
+ state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
102
102
  }, "strip", z.ZodTypeAny, {
103
103
  street1?: string | undefined;
104
104
  street2?: string | undefined;
@@ -107,43 +107,50 @@ declare const Address: z.ZodObject<{
107
107
  country?: string | undefined;
108
108
  state?: string | undefined;
109
109
  }, {
110
- street1?: string | undefined;
111
- street2?: string | undefined;
112
- city?: string | undefined;
113
- postal?: string | undefined;
114
- country?: string | undefined;
115
- state?: string | undefined;
110
+ street1?: string | null | undefined;
111
+ street2?: string | null | undefined;
112
+ city?: string | null | undefined;
113
+ postal?: string | null | undefined;
114
+ country?: string | null | undefined;
115
+ state?: string | null | undefined;
116
116
  }>;
117
117
  type Address = z.infer<typeof Address>;
118
118
  declare const BillingDetails: z.ZodObject<{
119
- address: z.ZodOptional<z.ZodObject<{
120
- street1: z.ZodOptional<z.ZodString>;
121
- street2: z.ZodOptional<z.ZodString>;
122
- city: z.ZodOptional<z.ZodString>;
123
- postal: z.ZodOptional<z.ZodString>;
124
- country: z.ZodOptional<z.ZodString>;
125
- state: z.ZodOptional<z.ZodString>;
126
- }, "strip", z.ZodTypeAny, {
119
+ address: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
127
120
  street1?: string | undefined;
128
121
  street2?: string | undefined;
129
122
  city?: string | undefined;
130
123
  postal?: string | undefined;
131
124
  country?: string | undefined;
132
125
  state?: string | undefined;
133
- }, {
126
+ }, z.ZodTypeDef, {
127
+ street1?: string | null | undefined;
128
+ street2?: string | null | undefined;
129
+ city?: string | null | undefined;
130
+ postal?: string | null | undefined;
131
+ country?: string | null | undefined;
132
+ state?: string | null | undefined;
133
+ }>>>, {
134
134
  street1?: string | undefined;
135
135
  street2?: string | undefined;
136
136
  city?: string | undefined;
137
137
  postal?: string | undefined;
138
138
  country?: string | undefined;
139
139
  state?: string | undefined;
140
- }>>;
141
- email: z.ZodOptional<z.ZodString>;
142
- companyName: z.ZodOptional<z.ZodString>;
143
- companyId: z.ZodOptional<z.ZodString>;
144
- notes: z.ZodOptional<z.ZodString>;
145
- vat: z.ZodOptional<z.ZodString>;
146
- poNumber: z.ZodOptional<z.ZodString>;
140
+ } | undefined, {
141
+ street1?: string | null | undefined;
142
+ street2?: string | null | undefined;
143
+ city?: string | null | undefined;
144
+ postal?: string | null | undefined;
145
+ country?: string | null | undefined;
146
+ state?: string | null | undefined;
147
+ } | null | undefined>;
148
+ email: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
149
+ companyName: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
150
+ companyId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
151
+ notes: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
152
+ vat: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
153
+ poNumber: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
147
154
  }, "strip", z.ZodTypeAny, {
148
155
  address?: {
149
156
  street1?: string | undefined;
@@ -161,19 +168,19 @@ declare const BillingDetails: z.ZodObject<{
161
168
  poNumber?: string | undefined;
162
169
  }, {
163
170
  address?: {
164
- street1?: string | undefined;
165
- street2?: string | undefined;
166
- city?: string | undefined;
167
- postal?: string | undefined;
168
- country?: string | undefined;
169
- state?: string | undefined;
170
- } | undefined;
171
- email?: string | undefined;
172
- companyName?: string | undefined;
173
- companyId?: string | undefined;
174
- notes?: string | undefined;
175
- vat?: string | undefined;
176
- poNumber?: string | undefined;
171
+ street1?: string | null | undefined;
172
+ street2?: string | null | undefined;
173
+ city?: string | null | undefined;
174
+ postal?: string | null | undefined;
175
+ country?: string | null | undefined;
176
+ state?: string | null | undefined;
177
+ } | null | undefined;
178
+ email?: string | null | undefined;
179
+ companyName?: string | null | undefined;
180
+ companyId?: string | null | undefined;
181
+ notes?: string | null | undefined;
182
+ vat?: string | null | undefined;
183
+ poNumber?: string | null | undefined;
177
184
  }>;
178
185
  type BillingDetails = z.infer<typeof BillingDetails>;
179
186
 
@@ -663,8 +670,8 @@ declare const InvoiceSchema: z.ZodObject<{
663
670
  }, "strip", z.ZodTypeAny, {
664
671
  number: string;
665
672
  id: string;
666
- amount_due: number;
667
673
  date: Date;
674
+ amount_due: number;
668
675
  hostedUrl: string;
669
676
  card?: {
670
677
  cardId?: string | null | undefined;
@@ -677,8 +684,8 @@ declare const InvoiceSchema: z.ZodObject<{
677
684
  }, {
678
685
  number: string;
679
686
  id: string;
680
- amount_due: number;
681
687
  date: Date;
688
+ amount_due: number;
682
689
  hostedUrl: string;
683
690
  card?: {
684
691
  cardId?: string | null | undefined;
@@ -716,22 +723,22 @@ declare const InvoiceLineSchema: z.ZodObject<{
716
723
  type: z.ZodString;
717
724
  }, "strip", z.ZodTypeAny, {
718
725
  type: string;
726
+ description: string;
719
727
  amount: number;
720
728
  period: {
721
729
  start: Date;
722
730
  end: Date;
723
731
  };
724
732
  proration: boolean;
725
- description: string;
726
733
  }, {
727
734
  type: string;
735
+ description: string;
728
736
  amount: number;
729
737
  period: {
730
738
  start: Date;
731
739
  end: Date;
732
740
  };
733
741
  proration: boolean;
734
- description: string;
735
742
  }>;
736
743
  declare const InvoiceCouponSchema: z.ZodObject<{
737
744
  amount_off: z.ZodNumber;
@@ -1328,7 +1335,7 @@ declare const Subscription: z.ZodObject<{
1328
1335
  stripeSubscriptionId?: string | null | undefined;
1329
1336
  stripeCustomerId?: string | null | undefined;
1330
1337
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
1331
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
1338
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
1332
1339
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
1333
1340
  featuresSummary?: {
1334
1341
  designSystems: {
@@ -1450,7 +1457,7 @@ declare const Subscription: z.ZodObject<{
1450
1457
  stripeSubscriptionId?: string | null | undefined;
1451
1458
  stripeCustomerId?: string | null | undefined;
1452
1459
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
1453
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
1460
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
1454
1461
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
1455
1462
  featuresSummary?: {
1456
1463
  designSystems: {
@@ -4947,8 +4954,8 @@ declare const ImportJob: z.ZodObject<{
4947
4954
  }, "strip", z.ZodTypeAny, {
4948
4955
  id: string;
4949
4956
  createdAt: Date;
4950
- state: "Success" | "PendingInput" | "Queued" | "InProgress" | "Failed";
4951
4957
  updatedAt: Date;
4958
+ state: "Success" | "PendingInput" | "Queued" | "InProgress" | "Failed";
4952
4959
  designSystemVersionId: string;
4953
4960
  designSystemId: string;
4954
4961
  importContextId: string;
@@ -4960,8 +4967,8 @@ declare const ImportJob: z.ZodObject<{
4960
4967
  }, {
4961
4968
  id: string;
4962
4969
  createdAt: Date;
4963
- state: "Success" | "PendingInput" | "Queued" | "InProgress" | "Failed";
4964
4970
  updatedAt: Date;
4971
+ state: "Success" | "PendingInput" | "Queued" | "InProgress" | "Failed";
4965
4972
  designSystemVersionId: string;
4966
4973
  designSystemId: string;
4967
4974
  importContextId: string;
@@ -8967,6 +8974,64 @@ declare const PageBlockColorV2: z.ZodObject<{
8967
8974
  referencedTokenId?: string | undefined;
8968
8975
  }>;
8969
8976
  type PageBlockColorV2 = z.infer<typeof PageBlockColorV2>;
8977
+ declare const PageBlockAssetEntityMeta: z.ZodObject<{
8978
+ title: z.ZodOptional<z.ZodString>;
8979
+ description: z.ZodOptional<z.ZodString>;
8980
+ backgroundColor: z.ZodOptional<z.ZodObject<{
8981
+ value: z.ZodString;
8982
+ referencedTokenId: z.ZodOptional<z.ZodString>;
8983
+ }, "strip", z.ZodTypeAny, {
8984
+ value: string;
8985
+ referencedTokenId?: string | undefined;
8986
+ }, {
8987
+ value: string;
8988
+ referencedTokenId?: string | undefined;
8989
+ }>>;
8990
+ }, "strip", z.ZodTypeAny, {
8991
+ title?: string | undefined;
8992
+ description?: string | undefined;
8993
+ backgroundColor?: {
8994
+ value: string;
8995
+ referencedTokenId?: string | undefined;
8996
+ } | undefined;
8997
+ }, {
8998
+ title?: string | undefined;
8999
+ description?: string | undefined;
9000
+ backgroundColor?: {
9001
+ value: string;
9002
+ referencedTokenId?: string | undefined;
9003
+ } | undefined;
9004
+ }>;
9005
+ type PageBlockAssetEntityMeta = z.infer<typeof PageBlockAssetEntityMeta>;
9006
+ declare const PageBlockFigmaNodeEntityMeta: z.ZodObject<{
9007
+ title: z.ZodOptional<z.ZodString>;
9008
+ description: z.ZodOptional<z.ZodString>;
9009
+ backgroundColor: z.ZodOptional<z.ZodObject<{
9010
+ value: z.ZodString;
9011
+ referencedTokenId: z.ZodOptional<z.ZodString>;
9012
+ }, "strip", z.ZodTypeAny, {
9013
+ value: string;
9014
+ referencedTokenId?: string | undefined;
9015
+ }, {
9016
+ value: string;
9017
+ referencedTokenId?: string | undefined;
9018
+ }>>;
9019
+ }, "strip", z.ZodTypeAny, {
9020
+ title?: string | undefined;
9021
+ description?: string | undefined;
9022
+ backgroundColor?: {
9023
+ value: string;
9024
+ referencedTokenId?: string | undefined;
9025
+ } | undefined;
9026
+ }, {
9027
+ title?: string | undefined;
9028
+ description?: string | undefined;
9029
+ backgroundColor?: {
9030
+ value: string;
9031
+ referencedTokenId?: string | undefined;
9032
+ } | undefined;
9033
+ }>;
9034
+ type PageBlockFigmaNodeEntityMeta = z.infer<typeof PageBlockFigmaNodeEntityMeta>;
8970
9035
  declare const PageBlockAppearanceV2: z.ZodObject<{
8971
9036
  itemBackgroundColor: z.ZodOptional<z.ZodObject<{
8972
9037
  value: z.ZodString;
@@ -9227,12 +9292,30 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
9227
9292
  entityMeta: z.ZodOptional<z.ZodObject<{
9228
9293
  title: z.ZodOptional<z.ZodString>;
9229
9294
  description: z.ZodOptional<z.ZodString>;
9295
+ backgroundColor: z.ZodOptional<z.ZodObject<{
9296
+ value: z.ZodString;
9297
+ referencedTokenId: z.ZodOptional<z.ZodString>;
9298
+ }, "strip", z.ZodTypeAny, {
9299
+ value: string;
9300
+ referencedTokenId?: string | undefined;
9301
+ }, {
9302
+ value: string;
9303
+ referencedTokenId?: string | undefined;
9304
+ }>>;
9230
9305
  }, "strip", z.ZodTypeAny, {
9231
9306
  title?: string | undefined;
9232
9307
  description?: string | undefined;
9308
+ backgroundColor?: {
9309
+ value: string;
9310
+ referencedTokenId?: string | undefined;
9311
+ } | undefined;
9233
9312
  }, {
9234
9313
  title?: string | undefined;
9235
9314
  description?: string | undefined;
9315
+ backgroundColor?: {
9316
+ value: string;
9317
+ referencedTokenId?: string | undefined;
9318
+ } | undefined;
9236
9319
  }>>;
9237
9320
  }, "strip", z.ZodTypeAny, {
9238
9321
  entityId: string;
@@ -9240,6 +9323,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
9240
9323
  entityMeta?: {
9241
9324
  title?: string | undefined;
9242
9325
  description?: string | undefined;
9326
+ backgroundColor?: {
9327
+ value: string;
9328
+ referencedTokenId?: string | undefined;
9329
+ } | undefined;
9243
9330
  } | undefined;
9244
9331
  }, {
9245
9332
  entityId: string;
@@ -9247,6 +9334,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
9247
9334
  entityMeta?: {
9248
9335
  title?: string | undefined;
9249
9336
  description?: string | undefined;
9337
+ backgroundColor?: {
9338
+ value: string;
9339
+ referencedTokenId?: string | undefined;
9340
+ } | undefined;
9250
9341
  } | undefined;
9251
9342
  }>, "many">;
9252
9343
  }, "strip", z.ZodTypeAny, {
@@ -9256,6 +9347,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
9256
9347
  entityMeta?: {
9257
9348
  title?: string | undefined;
9258
9349
  description?: string | undefined;
9350
+ backgroundColor?: {
9351
+ value: string;
9352
+ referencedTokenId?: string | undefined;
9353
+ } | undefined;
9259
9354
  } | undefined;
9260
9355
  }[];
9261
9356
  selectedPropertyIds?: string[] | undefined;
@@ -9272,6 +9367,10 @@ declare const PageBlockItemAssetValue: z.ZodObject<{
9272
9367
  entityMeta?: {
9273
9368
  title?: string | undefined;
9274
9369
  description?: string | undefined;
9370
+ backgroundColor?: {
9371
+ value: string;
9372
+ referencedTokenId?: string | undefined;
9373
+ } | undefined;
9275
9374
  } | undefined;
9276
9375
  }[];
9277
9376
  selectedPropertyIds?: string[] | undefined;
@@ -9315,6 +9414,7 @@ declare const PageBlockItemCodeValue: z.ZodObject<{
9315
9414
  type PageBlockItemCodeValue = z.infer<typeof PageBlockItemCodeValue>;
9316
9415
  declare const PageBlockItemSandboxValue: z.ZodObject<{
9317
9416
  showCode: z.ZodOptional<z.ZodBoolean>;
9417
+ showControls: z.ZodOptional<z.ZodBoolean>;
9318
9418
  backgroundColor: z.ZodOptional<z.ZodString>;
9319
9419
  alignPreview: z.ZodOptional<z.ZodEnum<["Left", "Center"]>>;
9320
9420
  previewHeight: z.ZodOptional<z.ZodNumber>;
@@ -9322,12 +9422,14 @@ declare const PageBlockItemSandboxValue: z.ZodObject<{
9322
9422
  }, "strip", z.ZodTypeAny, {
9323
9423
  value: string;
9324
9424
  showCode?: boolean | undefined;
9425
+ showControls?: boolean | undefined;
9325
9426
  backgroundColor?: string | undefined;
9326
9427
  alignPreview?: "Center" | "Left" | undefined;
9327
9428
  previewHeight?: number | undefined;
9328
9429
  }, {
9329
9430
  value: string;
9330
9431
  showCode?: boolean | undefined;
9432
+ showControls?: boolean | undefined;
9331
9433
  backgroundColor?: string | undefined;
9332
9434
  alignPreview?: "Center" | "Left" | undefined;
9333
9435
  previewHeight?: number | undefined;
@@ -9412,30 +9514,65 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
9412
9514
  selectedPropertyIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
9413
9515
  showSearch: z.ZodOptional<z.ZodBoolean>;
9414
9516
  previewContainerSize: z.ZodOptional<z.ZodEnum<["Centered", "NaturalHeight"]>>;
9415
- backgroundColor: z.ZodOptional<z.ZodString>;
9517
+ backgroundColor: z.ZodOptional<z.ZodObject<{
9518
+ value: z.ZodString;
9519
+ referencedTokenId: z.ZodOptional<z.ZodString>;
9520
+ }, "strip", z.ZodTypeAny, {
9521
+ value: string;
9522
+ referencedTokenId?: string | undefined;
9523
+ }, {
9524
+ value: string;
9525
+ referencedTokenId?: string | undefined;
9526
+ }>>;
9416
9527
  value: z.ZodArray<z.ZodObject<{
9417
9528
  entityId: z.ZodString;
9418
9529
  entityMeta: z.ZodOptional<z.ZodObject<{
9419
9530
  title: z.ZodOptional<z.ZodString>;
9420
9531
  description: z.ZodOptional<z.ZodString>;
9532
+ backgroundColor: z.ZodOptional<z.ZodObject<{
9533
+ value: z.ZodString;
9534
+ referencedTokenId: z.ZodOptional<z.ZodString>;
9535
+ }, "strip", z.ZodTypeAny, {
9536
+ value: string;
9537
+ referencedTokenId?: string | undefined;
9538
+ }, {
9539
+ value: string;
9540
+ referencedTokenId?: string | undefined;
9541
+ }>>;
9421
9542
  }, "strip", z.ZodTypeAny, {
9422
9543
  title?: string | undefined;
9423
9544
  description?: string | undefined;
9545
+ backgroundColor?: {
9546
+ value: string;
9547
+ referencedTokenId?: string | undefined;
9548
+ } | undefined;
9424
9549
  }, {
9425
9550
  title?: string | undefined;
9426
9551
  description?: string | undefined;
9552
+ backgroundColor?: {
9553
+ value: string;
9554
+ referencedTokenId?: string | undefined;
9555
+ } | undefined;
9427
9556
  }>>;
9428
9557
  }, "strip", z.ZodTypeAny, {
9429
9558
  entityId: string;
9430
9559
  entityMeta?: {
9431
9560
  title?: string | undefined;
9432
9561
  description?: string | undefined;
9562
+ backgroundColor?: {
9563
+ value: string;
9564
+ referencedTokenId?: string | undefined;
9565
+ } | undefined;
9433
9566
  } | undefined;
9434
9567
  }, {
9435
9568
  entityId: string;
9436
9569
  entityMeta?: {
9437
9570
  title?: string | undefined;
9438
9571
  description?: string | undefined;
9572
+ backgroundColor?: {
9573
+ value: string;
9574
+ referencedTokenId?: string | undefined;
9575
+ } | undefined;
9439
9576
  } | undefined;
9440
9577
  }>, "many">;
9441
9578
  }, "strip", z.ZodTypeAny, {
@@ -9444,24 +9581,38 @@ declare const PageBlockItemFigmaNodeValue: z.ZodObject<{
9444
9581
  entityMeta?: {
9445
9582
  title?: string | undefined;
9446
9583
  description?: string | undefined;
9584
+ backgroundColor?: {
9585
+ value: string;
9586
+ referencedTokenId?: string | undefined;
9587
+ } | undefined;
9447
9588
  } | undefined;
9448
9589
  }[];
9449
9590
  selectedPropertyIds?: string[] | undefined;
9450
9591
  showSearch?: boolean | undefined;
9451
9592
  previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
9452
- backgroundColor?: string | undefined;
9593
+ backgroundColor?: {
9594
+ value: string;
9595
+ referencedTokenId?: string | undefined;
9596
+ } | undefined;
9453
9597
  }, {
9454
9598
  value: {
9455
9599
  entityId: string;
9456
9600
  entityMeta?: {
9457
9601
  title?: string | undefined;
9458
9602
  description?: string | undefined;
9603
+ backgroundColor?: {
9604
+ value: string;
9605
+ referencedTokenId?: string | undefined;
9606
+ } | undefined;
9459
9607
  } | undefined;
9460
9608
  }[];
9461
9609
  selectedPropertyIds?: string[] | undefined;
9462
9610
  showSearch?: boolean | undefined;
9463
9611
  previewContainerSize?: "Centered" | "NaturalHeight" | undefined;
9464
- backgroundColor?: string | undefined;
9612
+ backgroundColor?: {
9613
+ value: string;
9614
+ referencedTokenId?: string | undefined;
9615
+ } | undefined;
9465
9616
  }>;
9466
9617
  type PageBlockItemFigmaNodeValue = z.infer<typeof PageBlockItemFigmaNodeValue>;
9467
9618
  declare const PageBlockItemImageValue: z.ZodObject<{
@@ -9854,6 +10005,7 @@ declare const PageBlockItemUrlValue: z.ZodObject<{
9854
10005
  type PageBlockItemUrlValue = z.infer<typeof PageBlockItemUrlValue>;
9855
10006
  declare const PageBlockItemTableRichTextNode: z.ZodObject<{
9856
10007
  type: z.ZodLiteral<"RichText">;
10008
+ id: z.ZodString;
9857
10009
  value: z.ZodObject<{
9858
10010
  spans: z.ZodArray<z.ZodObject<{
9859
10011
  text: z.ZodString;
@@ -9912,6 +10064,7 @@ declare const PageBlockItemTableRichTextNode: z.ZodObject<{
9912
10064
  }[];
9913
10065
  }>;
9914
10066
  }, "strip", z.ZodTypeAny, {
10067
+ id: string;
9915
10068
  type: "RichText";
9916
10069
  value: {
9917
10070
  spans: {
@@ -9925,6 +10078,7 @@ declare const PageBlockItemTableRichTextNode: z.ZodObject<{
9925
10078
  }[];
9926
10079
  };
9927
10080
  }, {
10081
+ id: string;
9928
10082
  type: "RichText";
9929
10083
  value: {
9930
10084
  spans: {
@@ -10028,6 +10182,7 @@ declare const PageBlockItemTableMultiRichTextNode: z.ZodObject<{
10028
10182
  type PageBlockItemTableMultiRichTextNode = z.infer<typeof PageBlockItemTableMultiRichTextNode>;
10029
10183
  declare const PageBlockItemTableImageNode: z.ZodObject<{
10030
10184
  type: z.ZodLiteral<"Image">;
10185
+ id: z.ZodString;
10031
10186
  caption: z.ZodOptional<z.ZodString>;
10032
10187
  value: z.ZodOptional<z.ZodObject<{
10033
10188
  type: z.ZodEnum<["Resource", "FigmaNode"]>;
@@ -10073,6 +10228,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
10073
10228
  } | undefined;
10074
10229
  }>>;
10075
10230
  }, "strip", z.ZodTypeAny, {
10231
+ id: string;
10076
10232
  type: "Image";
10077
10233
  caption?: string | undefined;
10078
10234
  value?: {
@@ -10087,6 +10243,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
10087
10243
  } | undefined;
10088
10244
  } | undefined;
10089
10245
  }, {
10246
+ id: string;
10090
10247
  type: "Image";
10091
10248
  caption?: string | undefined;
10092
10249
  value?: {
@@ -10104,6 +10261,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
10104
10261
  type PageBlockItemTableImageNode = z.infer<typeof PageBlockItemTableImageNode>;
10105
10262
  declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10106
10263
  type: z.ZodLiteral<"RichText">;
10264
+ id: z.ZodString;
10107
10265
  value: z.ZodObject<{
10108
10266
  spans: z.ZodArray<z.ZodObject<{
10109
10267
  text: z.ZodString;
@@ -10162,6 +10320,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10162
10320
  }[];
10163
10321
  }>;
10164
10322
  }, "strip", z.ZodTypeAny, {
10323
+ id: string;
10165
10324
  type: "RichText";
10166
10325
  value: {
10167
10326
  spans: {
@@ -10175,6 +10334,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10175
10334
  }[];
10176
10335
  };
10177
10336
  }, {
10337
+ id: string;
10178
10338
  type: "RichText";
10179
10339
  value: {
10180
10340
  spans: {
@@ -10189,6 +10349,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10189
10349
  };
10190
10350
  }>, z.ZodObject<{
10191
10351
  type: z.ZodLiteral<"Image">;
10352
+ id: z.ZodString;
10192
10353
  caption: z.ZodOptional<z.ZodString>;
10193
10354
  value: z.ZodOptional<z.ZodObject<{
10194
10355
  type: z.ZodEnum<["Resource", "FigmaNode"]>;
@@ -10234,6 +10395,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10234
10395
  } | undefined;
10235
10396
  }>>;
10236
10397
  }, "strip", z.ZodTypeAny, {
10398
+ id: string;
10237
10399
  type: "Image";
10238
10400
  caption?: string | undefined;
10239
10401
  value?: {
@@ -10248,6 +10410,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
10248
10410
  } | undefined;
10249
10411
  } | undefined;
10250
10412
  }, {
10413
+ id: string;
10251
10414
  type: "Image";
10252
10415
  caption?: string | undefined;
10253
10416
  value?: {
@@ -10267,6 +10430,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10267
10430
  id: z.ZodString;
10268
10431
  nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10269
10432
  type: z.ZodLiteral<"RichText">;
10433
+ id: z.ZodString;
10270
10434
  value: z.ZodObject<{
10271
10435
  spans: z.ZodArray<z.ZodObject<{
10272
10436
  text: z.ZodString;
@@ -10325,6 +10489,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10325
10489
  }[];
10326
10490
  }>;
10327
10491
  }, "strip", z.ZodTypeAny, {
10492
+ id: string;
10328
10493
  type: "RichText";
10329
10494
  value: {
10330
10495
  spans: {
@@ -10338,6 +10503,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10338
10503
  }[];
10339
10504
  };
10340
10505
  }, {
10506
+ id: string;
10341
10507
  type: "RichText";
10342
10508
  value: {
10343
10509
  spans: {
@@ -10352,6 +10518,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10352
10518
  };
10353
10519
  }>, z.ZodObject<{
10354
10520
  type: z.ZodLiteral<"Image">;
10521
+ id: z.ZodString;
10355
10522
  caption: z.ZodOptional<z.ZodString>;
10356
10523
  value: z.ZodOptional<z.ZodObject<{
10357
10524
  type: z.ZodEnum<["Resource", "FigmaNode"]>;
@@ -10397,6 +10564,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10397
10564
  } | undefined;
10398
10565
  }>>;
10399
10566
  }, "strip", z.ZodTypeAny, {
10567
+ id: string;
10400
10568
  type: "Image";
10401
10569
  caption?: string | undefined;
10402
10570
  value?: {
@@ -10411,6 +10579,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10411
10579
  } | undefined;
10412
10580
  } | undefined;
10413
10581
  }, {
10582
+ id: string;
10414
10583
  type: "Image";
10415
10584
  caption?: string | undefined;
10416
10585
  value?: {
@@ -10431,6 +10600,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10431
10600
  id: string;
10432
10601
  alignment: "Center" | "Left" | "Right";
10433
10602
  nodes: ({
10603
+ id: string;
10434
10604
  type: "RichText";
10435
10605
  value: {
10436
10606
  spans: {
@@ -10444,6 +10614,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10444
10614
  }[];
10445
10615
  };
10446
10616
  } | {
10617
+ id: string;
10447
10618
  type: "Image";
10448
10619
  caption?: string | undefined;
10449
10620
  value?: {
@@ -10463,6 +10634,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10463
10634
  id: string;
10464
10635
  alignment: "Center" | "Left" | "Right";
10465
10636
  nodes: ({
10637
+ id: string;
10466
10638
  type: "RichText";
10467
10639
  value: {
10468
10640
  spans: {
@@ -10476,6 +10648,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
10476
10648
  }[];
10477
10649
  };
10478
10650
  } | {
10651
+ id: string;
10479
10652
  type: "Image";
10480
10653
  caption?: string | undefined;
10481
10654
  value?: {
@@ -10498,6 +10671,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10498
10671
  id: z.ZodString;
10499
10672
  nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10500
10673
  type: z.ZodLiteral<"RichText">;
10674
+ id: z.ZodString;
10501
10675
  value: z.ZodObject<{
10502
10676
  spans: z.ZodArray<z.ZodObject<{
10503
10677
  text: z.ZodString;
@@ -10556,6 +10730,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10556
10730
  }[];
10557
10731
  }>;
10558
10732
  }, "strip", z.ZodTypeAny, {
10733
+ id: string;
10559
10734
  type: "RichText";
10560
10735
  value: {
10561
10736
  spans: {
@@ -10569,6 +10744,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10569
10744
  }[];
10570
10745
  };
10571
10746
  }, {
10747
+ id: string;
10572
10748
  type: "RichText";
10573
10749
  value: {
10574
10750
  spans: {
@@ -10583,6 +10759,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10583
10759
  };
10584
10760
  }>, z.ZodObject<{
10585
10761
  type: z.ZodLiteral<"Image">;
10762
+ id: z.ZodString;
10586
10763
  caption: z.ZodOptional<z.ZodString>;
10587
10764
  value: z.ZodOptional<z.ZodObject<{
10588
10765
  type: z.ZodEnum<["Resource", "FigmaNode"]>;
@@ -10628,6 +10805,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10628
10805
  } | undefined;
10629
10806
  }>>;
10630
10807
  }, "strip", z.ZodTypeAny, {
10808
+ id: string;
10631
10809
  type: "Image";
10632
10810
  caption?: string | undefined;
10633
10811
  value?: {
@@ -10642,6 +10820,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10642
10820
  } | undefined;
10643
10821
  } | undefined;
10644
10822
  }, {
10823
+ id: string;
10645
10824
  type: "Image";
10646
10825
  caption?: string | undefined;
10647
10826
  value?: {
@@ -10662,6 +10841,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10662
10841
  id: string;
10663
10842
  alignment: "Center" | "Left" | "Right";
10664
10843
  nodes: ({
10844
+ id: string;
10665
10845
  type: "RichText";
10666
10846
  value: {
10667
10847
  spans: {
@@ -10675,6 +10855,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10675
10855
  }[];
10676
10856
  };
10677
10857
  } | {
10858
+ id: string;
10678
10859
  type: "Image";
10679
10860
  caption?: string | undefined;
10680
10861
  value?: {
@@ -10694,6 +10875,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10694
10875
  id: string;
10695
10876
  alignment: "Center" | "Left" | "Right";
10696
10877
  nodes: ({
10878
+ id: string;
10697
10879
  type: "RichText";
10698
10880
  value: {
10699
10881
  spans: {
@@ -10707,6 +10889,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10707
10889
  }[];
10708
10890
  };
10709
10891
  } | {
10892
+ id: string;
10710
10893
  type: "Image";
10711
10894
  caption?: string | undefined;
10712
10895
  value?: {
@@ -10728,6 +10911,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10728
10911
  id: string;
10729
10912
  alignment: "Center" | "Left" | "Right";
10730
10913
  nodes: ({
10914
+ id: string;
10731
10915
  type: "RichText";
10732
10916
  value: {
10733
10917
  spans: {
@@ -10741,6 +10925,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10741
10925
  }[];
10742
10926
  };
10743
10927
  } | {
10928
+ id: string;
10744
10929
  type: "Image";
10745
10930
  caption?: string | undefined;
10746
10931
  value?: {
@@ -10762,6 +10947,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10762
10947
  id: string;
10763
10948
  alignment: "Center" | "Left" | "Right";
10764
10949
  nodes: ({
10950
+ id: string;
10765
10951
  type: "RichText";
10766
10952
  value: {
10767
10953
  spans: {
@@ -10775,6 +10961,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
10775
10961
  }[];
10776
10962
  };
10777
10963
  } | {
10964
+ id: string;
10778
10965
  type: "Image";
10779
10966
  caption?: string | undefined;
10780
10967
  value?: {
@@ -10802,6 +10989,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
10802
10989
  id: z.ZodString;
10803
10990
  nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
10804
10991
  type: z.ZodLiteral<"RichText">;
10992
+ id: z.ZodString;
10805
10993
  value: z.ZodObject<{
10806
10994
  spans: z.ZodArray<z.ZodObject<{
10807
10995
  text: z.ZodString;
@@ -10860,6 +11048,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
10860
11048
  }[];
10861
11049
  }>;
10862
11050
  }, "strip", z.ZodTypeAny, {
11051
+ id: string;
10863
11052
  type: "RichText";
10864
11053
  value: {
10865
11054
  spans: {
@@ -10873,6 +11062,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
10873
11062
  }[];
10874
11063
  };
10875
11064
  }, {
11065
+ id: string;
10876
11066
  type: "RichText";
10877
11067
  value: {
10878
11068
  spans: {
@@ -10887,6 +11077,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
10887
11077
  };
10888
11078
  }>, z.ZodObject<{
10889
11079
  type: z.ZodLiteral<"Image">;
11080
+ id: z.ZodString;
10890
11081
  caption: z.ZodOptional<z.ZodString>;
10891
11082
  value: z.ZodOptional<z.ZodObject<{
10892
11083
  type: z.ZodEnum<["Resource", "FigmaNode"]>;
@@ -10932,6 +11123,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
10932
11123
  } | undefined;
10933
11124
  }>>;
10934
11125
  }, "strip", z.ZodTypeAny, {
11126
+ id: string;
10935
11127
  type: "Image";
10936
11128
  caption?: string | undefined;
10937
11129
  value?: {
@@ -10946,6 +11138,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
10946
11138
  } | undefined;
10947
11139
  } | undefined;
10948
11140
  }, {
11141
+ id: string;
10949
11142
  type: "Image";
10950
11143
  caption?: string | undefined;
10951
11144
  value?: {
@@ -10966,6 +11159,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
10966
11159
  id: string;
10967
11160
  alignment: "Center" | "Left" | "Right";
10968
11161
  nodes: ({
11162
+ id: string;
10969
11163
  type: "RichText";
10970
11164
  value: {
10971
11165
  spans: {
@@ -10979,6 +11173,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
10979
11173
  }[];
10980
11174
  };
10981
11175
  } | {
11176
+ id: string;
10982
11177
  type: "Image";
10983
11178
  caption?: string | undefined;
10984
11179
  value?: {
@@ -10998,6 +11193,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
10998
11193
  id: string;
10999
11194
  alignment: "Center" | "Left" | "Right";
11000
11195
  nodes: ({
11196
+ id: string;
11001
11197
  type: "RichText";
11002
11198
  value: {
11003
11199
  spans: {
@@ -11011,6 +11207,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
11011
11207
  }[];
11012
11208
  };
11013
11209
  } | {
11210
+ id: string;
11014
11211
  type: "Image";
11015
11212
  caption?: string | undefined;
11016
11213
  value?: {
@@ -11032,6 +11229,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
11032
11229
  id: string;
11033
11230
  alignment: "Center" | "Left" | "Right";
11034
11231
  nodes: ({
11232
+ id: string;
11035
11233
  type: "RichText";
11036
11234
  value: {
11037
11235
  spans: {
@@ -11045,6 +11243,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
11045
11243
  }[];
11046
11244
  };
11047
11245
  } | {
11246
+ id: string;
11048
11247
  type: "Image";
11049
11248
  caption?: string | undefined;
11050
11249
  value?: {
@@ -11066,6 +11265,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
11066
11265
  id: string;
11067
11266
  alignment: "Center" | "Left" | "Right";
11068
11267
  nodes: ({
11268
+ id: string;
11069
11269
  type: "RichText";
11070
11270
  value: {
11071
11271
  spans: {
@@ -11079,6 +11279,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
11079
11279
  }[];
11080
11280
  };
11081
11281
  } | {
11282
+ id: string;
11082
11283
  type: "Image";
11083
11284
  caption?: string | undefined;
11084
11285
  value?: {
@@ -11102,6 +11303,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
11102
11303
  id: string;
11103
11304
  alignment: "Center" | "Left" | "Right";
11104
11305
  nodes: ({
11306
+ id: string;
11105
11307
  type: "RichText";
11106
11308
  value: {
11107
11309
  spans: {
@@ -11115,6 +11317,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
11115
11317
  }[];
11116
11318
  };
11117
11319
  } | {
11320
+ id: string;
11118
11321
  type: "Image";
11119
11322
  caption?: string | undefined;
11120
11323
  value?: {
@@ -11141,6 +11344,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
11141
11344
  id: string;
11142
11345
  alignment: "Center" | "Left" | "Right";
11143
11346
  nodes: ({
11347
+ id: string;
11144
11348
  type: "RichText";
11145
11349
  value: {
11146
11350
  spans: {
@@ -11154,6 +11358,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
11154
11358
  }[];
11155
11359
  };
11156
11360
  } | {
11361
+ id: string;
11157
11362
  type: "Image";
11158
11363
  caption?: string | undefined;
11159
11364
  value?: {
@@ -23768,7 +23973,6 @@ declare const DocumentationPageV1: z.ZodObject<{
23768
23973
  createdAt: Date;
23769
23974
  updatedAt: Date;
23770
23975
  persistentId: string;
23771
- designSystemVersionId: string;
23772
23976
  data: {
23773
23977
  blocks: PageBlockV1[];
23774
23978
  configuration?: {
@@ -23846,6 +24050,7 @@ declare const DocumentationPageV1: z.ZodObject<{
23846
24050
  };
23847
24051
  } | undefined;
23848
24052
  };
24053
+ designSystemVersionId: string;
23849
24054
  parentPersistentId: string;
23850
24055
  shortPersistentId: string;
23851
24056
  sortOrder: number;
@@ -23860,7 +24065,6 @@ declare const DocumentationPageV1: z.ZodObject<{
23860
24065
  createdAt: Date;
23861
24066
  updatedAt: Date;
23862
24067
  persistentId: string;
23863
- designSystemVersionId: string;
23864
24068
  data: {
23865
24069
  blocks: ({
23866
24070
  type: "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "Custom" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
@@ -24296,6 +24500,7 @@ declare const DocumentationPageV1: z.ZodObject<{
24296
24500
  };
24297
24501
  } | null | undefined;
24298
24502
  };
24503
+ designSystemVersionId: string;
24299
24504
  parentPersistentId: string;
24300
24505
  shortPersistentId: string;
24301
24506
  sortOrder: number;
@@ -25236,7 +25441,6 @@ declare const DocumentationPageV2: z.ZodObject<{
25236
25441
  createdAt: Date;
25237
25442
  updatedAt: Date;
25238
25443
  persistentId: string;
25239
- designSystemVersionId: string;
25240
25444
  data: {
25241
25445
  configuration?: {
25242
25446
  showSidebar: boolean;
@@ -25270,6 +25474,7 @@ declare const DocumentationPageV2: z.ZodObject<{
25270
25474
  } | undefined;
25271
25475
  oldBlocks?: PageBlockV1[] | undefined;
25272
25476
  };
25477
+ designSystemVersionId: string;
25273
25478
  parentPersistentId: string;
25274
25479
  shortPersistentId: string;
25275
25480
  sortOrder: number;
@@ -25284,7 +25489,6 @@ declare const DocumentationPageV2: z.ZodObject<{
25284
25489
  createdAt: Date;
25285
25490
  updatedAt: Date;
25286
25491
  persistentId: string;
25287
- designSystemVersionId: string;
25288
25492
  data: {
25289
25493
  configuration?: {
25290
25494
  showSidebar: boolean;
@@ -25676,6 +25880,7 @@ declare const DocumentationPageV2: z.ZodObject<{
25676
25880
  } & any)[] | null | undefined;
25677
25881
  })[] | undefined;
25678
25882
  };
25883
+ designSystemVersionId: string;
25679
25884
  parentPersistentId: string;
25680
25885
  shortPersistentId: string;
25681
25886
  sortOrder: number;
@@ -25895,7 +26100,6 @@ declare const FigmaFileStructure: z.ZodObject<{
25895
26100
  createdAt: Date;
25896
26101
  updatedAt: Date;
25897
26102
  persistentId: string;
25898
- designSystemVersionId: string;
25899
26103
  data: {
25900
26104
  assetsInFile: {
25901
26105
  frames: number;
@@ -25915,6 +26119,7 @@ declare const FigmaFileStructure: z.ZodObject<{
25915
26119
  children: FigmaFileStructureNode[];
25916
26120
  };
25917
26121
  };
26122
+ designSystemVersionId: string;
25918
26123
  origin: {
25919
26124
  sourceId: string;
25920
26125
  fileId?: string | undefined;
@@ -25928,7 +26133,6 @@ declare const FigmaFileStructure: z.ZodObject<{
25928
26133
  createdAt: Date;
25929
26134
  updatedAt: Date;
25930
26135
  persistentId: string;
25931
- designSystemVersionId: string;
25932
26136
  data: {
25933
26137
  assetsInFile: {
25934
26138
  frames?: number | null | undefined;
@@ -25957,6 +26161,7 @@ declare const FigmaFileStructure: z.ZodObject<{
25957
26161
  } & any)[];
25958
26162
  };
25959
26163
  };
26164
+ designSystemVersionId: string;
25960
26165
  origin: {
25961
26166
  sourceId: string;
25962
26167
  fileId?: string | undefined;
@@ -26045,7 +26250,6 @@ declare const FigmaNodeReference: z.ZodObject<{
26045
26250
  createdAt: Date;
26046
26251
  updatedAt: Date;
26047
26252
  persistentId: string;
26048
- designSystemVersionId: string;
26049
26253
  data: {
26050
26254
  valid: boolean;
26051
26255
  structureElementId: string;
@@ -26058,6 +26262,7 @@ declare const FigmaNodeReference: z.ZodObject<{
26058
26262
  assetUrl?: string | undefined;
26059
26263
  assetOriginKey?: string | undefined;
26060
26264
  };
26265
+ designSystemVersionId: string;
26061
26266
  origin: {
26062
26267
  sourceId: string;
26063
26268
  };
@@ -26070,7 +26275,6 @@ declare const FigmaNodeReference: z.ZodObject<{
26070
26275
  createdAt: Date;
26071
26276
  updatedAt: Date;
26072
26277
  persistentId: string;
26073
- designSystemVersionId: string;
26074
26278
  data: {
26075
26279
  valid: boolean;
26076
26280
  structureElementId: string;
@@ -26083,6 +26287,7 @@ declare const FigmaNodeReference: z.ZodObject<{
26083
26287
  assetUrl?: string | undefined;
26084
26288
  assetOriginKey?: string | undefined;
26085
26289
  };
26290
+ designSystemVersionId: string;
26086
26291
  origin: {
26087
26292
  sourceId: string;
26088
26293
  };
@@ -26412,7 +26617,6 @@ declare const BrandedElementGroup: z.ZodObject<{
26412
26617
  createdAt: z.ZodDate;
26413
26618
  updatedAt: z.ZodDate;
26414
26619
  persistentId: z.ZodString;
26415
- designSystemVersionId: z.ZodString;
26416
26620
  data: z.ZodOptional<z.ZodObject<{
26417
26621
  behavior: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"Tabs" | "Group" | undefined, z.ZodTypeDef, "Tabs" | "Group" | undefined>>>, NonNullable<"Tabs" | "Group" | undefined> | undefined, "Tabs" | "Group" | null | undefined>;
26418
26622
  configuration: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
@@ -26597,6 +26801,7 @@ declare const BrandedElementGroup: z.ZodObject<{
26597
26801
  };
26598
26802
  } | null | undefined;
26599
26803
  }>>;
26804
+ designSystemVersionId: z.ZodString;
26600
26805
  parentPersistentId: z.ZodOptional<z.ZodString>;
26601
26806
  shortPersistentId: z.ZodOptional<z.ZodString>;
26602
26807
  childType: 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"]>]>;
@@ -26882,7 +27087,6 @@ declare const PageBlockV2: z.ZodObject<{
26882
27087
  createdAt: Date;
26883
27088
  updatedAt: Date;
26884
27089
  persistentId: string;
26885
- designSystemVersionId: string;
26886
27090
  data: {
26887
27091
  items: {
26888
27092
  id: string;
@@ -26908,6 +27112,7 @@ declare const PageBlockV2: z.ZodObject<{
26908
27112
  numberOfColumns?: number | undefined;
26909
27113
  } | undefined;
26910
27114
  };
27115
+ designSystemVersionId: string;
26911
27116
  parentPersistentId: string;
26912
27117
  sortOrder: number;
26913
27118
  meta: {
@@ -26919,7 +27124,6 @@ declare const PageBlockV2: z.ZodObject<{
26919
27124
  createdAt: Date;
26920
27125
  updatedAt: Date;
26921
27126
  persistentId: string;
26922
- designSystemVersionId: string;
26923
27127
  data: {
26924
27128
  items: {
26925
27129
  id: string;
@@ -26945,6 +27149,7 @@ declare const PageBlockV2: z.ZodObject<{
26945
27149
  numberOfColumns?: number | undefined;
26946
27150
  } | undefined;
26947
27151
  };
27152
+ designSystemVersionId: string;
26948
27153
  parentPersistentId: string;
26949
27154
  sortOrder: number;
26950
27155
  meta: {
@@ -27241,8 +27446,8 @@ declare const DesignElement: z.ZodObject<{
27241
27446
  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";
27242
27447
  updatedAt: Date;
27243
27448
  persistentId: string;
27244
- designSystemVersionId: string;
27245
27449
  data: Record<string, any>;
27450
+ designSystemVersionId: string;
27246
27451
  sortOrder: number;
27247
27452
  meta: {
27248
27453
  name: string;
@@ -27265,8 +27470,8 @@ declare const DesignElement: z.ZodObject<{
27265
27470
  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";
27266
27471
  updatedAt: Date;
27267
27472
  persistentId: string;
27268
- designSystemVersionId: string;
27269
27473
  data: Record<string, any>;
27474
+ designSystemVersionId: string;
27270
27475
  sortOrder: number;
27271
27476
  meta: {
27272
27477
  name: string;
@@ -93415,8 +93620,8 @@ declare const ElementPropertyDefinition: z.ZodObject<{
93415
93620
  id: string;
93416
93621
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
93417
93622
  name: string;
93418
- description: string;
93419
93623
  persistentId: string;
93624
+ description: string;
93420
93625
  designSystemVersionId: string;
93421
93626
  codeName: string;
93422
93627
  targetElementType: "Component" | "DocumentationPage" | "Token";
@@ -93432,8 +93637,8 @@ declare const ElementPropertyDefinition: z.ZodObject<{
93432
93637
  id: string;
93433
93638
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
93434
93639
  name: string;
93435
- description: string;
93436
93640
  persistentId: string;
93641
+ description: string;
93437
93642
  designSystemVersionId: string;
93438
93643
  codeName: string;
93439
93644
  targetElementType: "Component" | "DocumentationPage" | "Token";
@@ -93585,8 +93790,8 @@ declare const DesignSystem: z.ZodObject<{
93585
93790
  id: string;
93586
93791
  createdAt: Date;
93587
93792
  name: string;
93588
- description: string;
93589
93793
  updatedAt: Date;
93794
+ description: string;
93590
93795
  workspaceId: string;
93591
93796
  docSlug: string;
93592
93797
  docSlugDeprecated: string;
@@ -93604,8 +93809,8 @@ declare const DesignSystem: z.ZodObject<{
93604
93809
  id: string;
93605
93810
  createdAt: Date;
93606
93811
  name: string;
93607
- description: string;
93608
93812
  updatedAt: Date;
93813
+ description: string;
93609
93814
  workspaceId: string;
93610
93815
  docSlug: string;
93611
93816
  docSlugDeprecated: string;
@@ -93654,8 +93859,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
93654
93859
  id: string;
93655
93860
  createdAt: Date;
93656
93861
  name: string;
93657
- description: string;
93658
93862
  updatedAt: Date;
93863
+ description: string;
93659
93864
  workspaceId: string;
93660
93865
  docSlug: string;
93661
93866
  docSlugDeprecated: string;
@@ -93673,8 +93878,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
93673
93878
  id: string;
93674
93879
  createdAt: Date;
93675
93880
  name: string;
93676
- description: string;
93677
93881
  updatedAt: Date;
93882
+ description: string;
93678
93883
  workspaceId: string;
93679
93884
  docSlug: string;
93680
93885
  docSlugDeprecated: string;
@@ -93695,37 +93900,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
93695
93900
  name: z.ZodString;
93696
93901
  handle: z.ZodString;
93697
93902
  color: z.ZodString;
93698
- avatar: z.ZodOptional<z.ZodString>;
93699
- billingDetails: z.ZodOptional<z.ZodObject<{
93700
- address: z.ZodOptional<z.ZodObject<{
93701
- street1: z.ZodOptional<z.ZodString>;
93702
- street2: z.ZodOptional<z.ZodString>;
93703
- city: z.ZodOptional<z.ZodString>;
93704
- postal: z.ZodOptional<z.ZodString>;
93705
- country: z.ZodOptional<z.ZodString>;
93706
- state: z.ZodOptional<z.ZodString>;
93707
- }, "strip", z.ZodTypeAny, {
93708
- street1?: string | undefined;
93709
- street2?: string | undefined;
93710
- city?: string | undefined;
93711
- postal?: string | undefined;
93712
- country?: string | undefined;
93713
- state?: string | undefined;
93714
- }, {
93715
- street1?: string | undefined;
93716
- street2?: string | undefined;
93717
- city?: string | undefined;
93718
- postal?: string | undefined;
93719
- country?: string | undefined;
93720
- state?: string | undefined;
93721
- }>>;
93722
- email: z.ZodOptional<z.ZodString>;
93723
- companyName: z.ZodOptional<z.ZodString>;
93724
- companyId: z.ZodOptional<z.ZodString>;
93725
- notes: z.ZodOptional<z.ZodString>;
93726
- vat: z.ZodOptional<z.ZodString>;
93727
- poNumber: z.ZodOptional<z.ZodString>;
93728
- }, "strip", z.ZodTypeAny, {
93903
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
93904
+ billingDetails: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
93729
93905
  address?: {
93730
93906
  street1?: string | undefined;
93731
93907
  street2?: string | undefined;
@@ -93740,7 +93916,22 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
93740
93916
  notes?: string | undefined;
93741
93917
  vat?: string | undefined;
93742
93918
  poNumber?: string | undefined;
93743
- }, {
93919
+ }, z.ZodTypeDef, {
93920
+ address?: {
93921
+ street1?: string | null | undefined;
93922
+ street2?: string | null | undefined;
93923
+ city?: string | null | undefined;
93924
+ postal?: string | null | undefined;
93925
+ country?: string | null | undefined;
93926
+ state?: string | null | undefined;
93927
+ } | null | undefined;
93928
+ email?: string | null | undefined;
93929
+ companyName?: string | null | undefined;
93930
+ companyId?: string | null | undefined;
93931
+ notes?: string | null | undefined;
93932
+ vat?: string | null | undefined;
93933
+ poNumber?: string | null | undefined;
93934
+ }>>>, {
93744
93935
  address?: {
93745
93936
  street1?: string | undefined;
93746
93937
  street2?: string | undefined;
@@ -93755,7 +93946,22 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
93755
93946
  notes?: string | undefined;
93756
93947
  vat?: string | undefined;
93757
93948
  poNumber?: string | undefined;
93758
- }>>;
93949
+ } | undefined, {
93950
+ address?: {
93951
+ street1?: string | null | undefined;
93952
+ street2?: string | null | undefined;
93953
+ city?: string | null | undefined;
93954
+ postal?: string | null | undefined;
93955
+ country?: string | null | undefined;
93956
+ state?: string | null | undefined;
93957
+ } | null | undefined;
93958
+ email?: string | null | undefined;
93959
+ companyName?: string | null | undefined;
93960
+ companyId?: string | null | undefined;
93961
+ notes?: string | null | undefined;
93962
+ vat?: string | null | undefined;
93963
+ poNumber?: string | null | undefined;
93964
+ } | null | undefined>;
93759
93965
  }, "strip", z.ZodTypeAny, {
93760
93966
  name: string;
93761
93967
  color: string;
@@ -93781,23 +93987,23 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
93781
93987
  name: string;
93782
93988
  color: string;
93783
93989
  handle: string;
93784
- avatar?: string | undefined;
93990
+ avatar?: string | null | undefined;
93785
93991
  billingDetails?: {
93786
93992
  address?: {
93787
- street1?: string | undefined;
93788
- street2?: string | undefined;
93789
- city?: string | undefined;
93790
- postal?: string | undefined;
93791
- country?: string | undefined;
93792
- state?: string | undefined;
93793
- } | undefined;
93794
- email?: string | undefined;
93795
- companyName?: string | undefined;
93796
- companyId?: string | undefined;
93797
- notes?: string | undefined;
93798
- vat?: string | undefined;
93799
- poNumber?: string | undefined;
93800
- } | undefined;
93993
+ street1?: string | null | undefined;
93994
+ street2?: string | null | undefined;
93995
+ city?: string | null | undefined;
93996
+ postal?: string | null | undefined;
93997
+ country?: string | null | undefined;
93998
+ state?: string | null | undefined;
93999
+ } | null | undefined;
94000
+ email?: string | null | undefined;
94001
+ companyName?: string | null | undefined;
94002
+ companyId?: string | null | undefined;
94003
+ notes?: string | null | undefined;
94004
+ vat?: string | null | undefined;
94005
+ poNumber?: string | null | undefined;
94006
+ } | null | undefined;
93801
94007
  }>;
93802
94008
  subscription: z.ZodObject<{
93803
94009
  stripeSubscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -94260,7 +94466,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94260
94466
  stripeSubscriptionId?: string | null | undefined;
94261
94467
  stripeCustomerId?: string | null | undefined;
94262
94468
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
94263
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
94469
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
94264
94470
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
94265
94471
  featuresSummary?: {
94266
94472
  designSystems: {
@@ -94382,7 +94588,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94382
94588
  stripeSubscriptionId?: string | null | undefined;
94383
94589
  stripeCustomerId?: string | null | undefined;
94384
94590
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
94385
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
94591
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
94386
94592
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
94387
94593
  featuresSummary?: {
94388
94594
  designSystems: {
@@ -94590,8 +94796,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94590
94796
  id: string;
94591
94797
  createdAt: Date;
94592
94798
  name: string;
94593
- description: string;
94594
94799
  updatedAt: Date;
94800
+ description: string;
94595
94801
  workspaceId: string;
94596
94802
  docSlug: string;
94597
94803
  docSlugDeprecated: string;
@@ -94609,8 +94815,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94609
94815
  id: string;
94610
94816
  createdAt: Date;
94611
94817
  name: string;
94612
- description: string;
94613
94818
  updatedAt: Date;
94819
+ description: string;
94614
94820
  workspaceId: string;
94615
94821
  docSlug: string;
94616
94822
  docSlugDeprecated: string;
@@ -94658,7 +94864,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94658
94864
  stripeSubscriptionId?: string | null | undefined;
94659
94865
  stripeCustomerId?: string | null | undefined;
94660
94866
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
94661
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
94867
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
94662
94868
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
94663
94869
  featuresSummary?: {
94664
94870
  designSystems: {
@@ -94796,8 +95002,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94796
95002
  id: string;
94797
95003
  createdAt: Date;
94798
95004
  name: string;
94799
- description: string;
94800
95005
  updatedAt: Date;
95006
+ description: string;
94801
95007
  workspaceId: string;
94802
95008
  docSlug: string;
94803
95009
  docSlugDeprecated: string;
@@ -94818,23 +95024,23 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94818
95024
  name: string;
94819
95025
  color: string;
94820
95026
  handle: string;
94821
- avatar?: string | undefined;
95027
+ avatar?: string | null | undefined;
94822
95028
  billingDetails?: {
94823
95029
  address?: {
94824
- street1?: string | undefined;
94825
- street2?: string | undefined;
94826
- city?: string | undefined;
94827
- postal?: string | undefined;
94828
- country?: string | undefined;
94829
- state?: string | undefined;
94830
- } | undefined;
94831
- email?: string | undefined;
94832
- companyName?: string | undefined;
94833
- companyId?: string | undefined;
94834
- notes?: string | undefined;
94835
- vat?: string | undefined;
94836
- poNumber?: string | undefined;
94837
- } | undefined;
95030
+ street1?: string | null | undefined;
95031
+ street2?: string | null | undefined;
95032
+ city?: string | null | undefined;
95033
+ postal?: string | null | undefined;
95034
+ country?: string | null | undefined;
95035
+ state?: string | null | undefined;
95036
+ } | null | undefined;
95037
+ email?: string | null | undefined;
95038
+ companyName?: string | null | undefined;
95039
+ companyId?: string | null | undefined;
95040
+ notes?: string | null | undefined;
95041
+ vat?: string | null | undefined;
95042
+ poNumber?: string | null | undefined;
95043
+ } | null | undefined;
94838
95044
  };
94839
95045
  subscription: {
94840
95046
  product: "free" | "team" | "team_test" | "company" | "enterprise";
@@ -94845,7 +95051,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94845
95051
  stripeSubscriptionId?: string | null | undefined;
94846
95052
  stripeCustomerId?: string | null | undefined;
94847
95053
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
94848
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
95054
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
94849
95055
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
94850
95056
  featuresSummary?: {
94851
95057
  designSystems: {
@@ -94983,8 +95189,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
94983
95189
  id: string;
94984
95190
  createdAt: Date;
94985
95191
  name: string;
94986
- description: string;
94987
95192
  updatedAt: Date;
95193
+ description: string;
94988
95194
  workspaceId: string;
94989
95195
  docSlug: string;
94990
95196
  docSlugDeprecated: string;
@@ -95034,7 +95240,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95034
95240
  stripeSubscriptionId?: string | null | undefined;
95035
95241
  stripeCustomerId?: string | null | undefined;
95036
95242
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
95037
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
95243
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
95038
95244
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
95039
95245
  featuresSummary?: {
95040
95246
  designSystems: {
@@ -95172,8 +95378,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95172
95378
  id: string;
95173
95379
  createdAt: Date;
95174
95380
  name: string;
95175
- description: string;
95176
95381
  updatedAt: Date;
95382
+ description: string;
95177
95383
  workspaceId: string;
95178
95384
  docSlug: string;
95179
95385
  docSlugDeprecated: string;
@@ -95193,8 +95399,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95193
95399
  id: string;
95194
95400
  createdAt: Date;
95195
95401
  name: string;
95196
- description: string;
95197
95402
  updatedAt: Date;
95403
+ description: string;
95198
95404
  workspaceId: string;
95199
95405
  docSlug: string;
95200
95406
  docSlugDeprecated: string;
@@ -95216,23 +95422,23 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95216
95422
  name: string;
95217
95423
  color: string;
95218
95424
  handle: string;
95219
- avatar?: string | undefined;
95425
+ avatar?: string | null | undefined;
95220
95426
  billingDetails?: {
95221
95427
  address?: {
95222
- street1?: string | undefined;
95223
- street2?: string | undefined;
95224
- city?: string | undefined;
95225
- postal?: string | undefined;
95226
- country?: string | undefined;
95227
- state?: string | undefined;
95228
- } | undefined;
95229
- email?: string | undefined;
95230
- companyName?: string | undefined;
95231
- companyId?: string | undefined;
95232
- notes?: string | undefined;
95233
- vat?: string | undefined;
95234
- poNumber?: string | undefined;
95235
- } | undefined;
95428
+ street1?: string | null | undefined;
95429
+ street2?: string | null | undefined;
95430
+ city?: string | null | undefined;
95431
+ postal?: string | null | undefined;
95432
+ country?: string | null | undefined;
95433
+ state?: string | null | undefined;
95434
+ } | null | undefined;
95435
+ email?: string | null | undefined;
95436
+ companyName?: string | null | undefined;
95437
+ companyId?: string | null | undefined;
95438
+ notes?: string | null | undefined;
95439
+ vat?: string | null | undefined;
95440
+ poNumber?: string | null | undefined;
95441
+ } | null | undefined;
95236
95442
  };
95237
95443
  subscription: {
95238
95444
  product: "free" | "team" | "team_test" | "company" | "enterprise";
@@ -95243,7 +95449,7 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95243
95449
  stripeSubscriptionId?: string | null | undefined;
95244
95450
  stripeCustomerId?: string | null | undefined;
95245
95451
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
95246
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
95452
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
95247
95453
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
95248
95454
  featuresSummary?: {
95249
95455
  designSystems: {
@@ -95381,8 +95587,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95381
95587
  id: string;
95382
95588
  createdAt: Date;
95383
95589
  name: string;
95384
- description: string;
95385
95590
  updatedAt: Date;
95591
+ description: string;
95386
95592
  workspaceId: string;
95387
95593
  docSlug: string;
95388
95594
  docSlugDeprecated: string;
@@ -95402,8 +95608,8 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
95402
95608
  id: string;
95403
95609
  createdAt: Date;
95404
95610
  name: string;
95405
- description: string;
95406
95611
  updatedAt: Date;
95612
+ description: string;
95407
95613
  workspaceId: string;
95408
95614
  docSlug: string;
95409
95615
  docSlugDeprecated: string;
@@ -96631,7 +96837,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96631
96837
  createdAt: Date;
96632
96838
  updatedAt: Date;
96633
96839
  persistentId: string;
96634
- designSystemVersionId: string;
96635
96840
  data: {
96636
96841
  configuration?: {
96637
96842
  showSidebar: boolean;
@@ -96665,6 +96870,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96665
96870
  } | undefined;
96666
96871
  oldBlocks?: PageBlockV1[] | undefined;
96667
96872
  };
96873
+ designSystemVersionId: string;
96668
96874
  parentPersistentId: string;
96669
96875
  shortPersistentId: string;
96670
96876
  sortOrder: number;
@@ -96679,7 +96885,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
96679
96885
  createdAt: Date;
96680
96886
  updatedAt: Date;
96681
96887
  persistentId: string;
96682
- designSystemVersionId: string;
96683
96888
  data: {
96684
96889
  configuration?: {
96685
96890
  showSidebar: boolean;
@@ -97071,6 +97276,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
97071
97276
  } & any)[] | null | undefined;
97072
97277
  })[] | undefined;
97073
97278
  };
97279
+ designSystemVersionId: string;
97074
97280
  parentPersistentId: string;
97075
97281
  shortPersistentId: string;
97076
97282
  sortOrder: number;
@@ -97446,7 +97652,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
97446
97652
  createdAt: Date;
97447
97653
  updatedAt: Date;
97448
97654
  persistentId: string;
97449
- designSystemVersionId: string;
97450
97655
  data: {
97451
97656
  configuration?: {
97452
97657
  showSidebar: boolean;
@@ -97480,6 +97685,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
97480
97685
  } | undefined;
97481
97686
  oldBlocks?: PageBlockV1[] | undefined;
97482
97687
  };
97688
+ designSystemVersionId: string;
97483
97689
  parentPersistentId: string;
97484
97690
  shortPersistentId: string;
97485
97691
  sortOrder: number;
@@ -97547,7 +97753,6 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
97547
97753
  createdAt: Date;
97548
97754
  updatedAt: Date;
97549
97755
  persistentId: string;
97550
- designSystemVersionId: string;
97551
97756
  data: {
97552
97757
  configuration?: {
97553
97758
  showSidebar: boolean;
@@ -97939,6 +98144,7 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
97939
98144
  } & any)[] | null | undefined;
97940
98145
  })[] | undefined;
97941
98146
  };
98147
+ designSystemVersionId: string;
97942
98148
  parentPersistentId: string;
97943
98149
  shortPersistentId: string;
97944
98150
  sortOrder: number;
@@ -99186,7 +99392,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
99186
99392
  createdAt: Date;
99187
99393
  updatedAt: Date;
99188
99394
  persistentId: string;
99189
- designSystemVersionId: string;
99190
99395
  data: {
99191
99396
  configuration?: {
99192
99397
  showSidebar: boolean;
@@ -99220,6 +99425,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
99220
99425
  } | undefined;
99221
99426
  oldBlocks?: PageBlockV1[] | undefined;
99222
99427
  };
99428
+ designSystemVersionId: string;
99223
99429
  parentPersistentId: string;
99224
99430
  shortPersistentId: string;
99225
99431
  sortOrder: number;
@@ -99234,7 +99440,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
99234
99440
  createdAt: Date;
99235
99441
  updatedAt: Date;
99236
99442
  persistentId: string;
99237
- designSystemVersionId: string;
99238
99443
  data: {
99239
99444
  configuration?: {
99240
99445
  showSidebar: boolean;
@@ -99626,6 +99831,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
99626
99831
  } & any)[] | null | undefined;
99627
99832
  })[] | undefined;
99628
99833
  };
99834
+ designSystemVersionId: string;
99629
99835
  parentPersistentId: string;
99630
99836
  shortPersistentId: string;
99631
99837
  sortOrder: number;
@@ -99695,7 +99901,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
99695
99901
  createdAt: Date;
99696
99902
  updatedAt: Date;
99697
99903
  persistentId: string;
99698
- designSystemVersionId: string;
99699
99904
  data: {
99700
99905
  configuration?: {
99701
99906
  showSidebar: boolean;
@@ -99729,6 +99934,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
99729
99934
  } | undefined;
99730
99935
  oldBlocks?: PageBlockV1[] | undefined;
99731
99936
  };
99937
+ designSystemVersionId: string;
99732
99938
  parentPersistentId: string;
99733
99939
  shortPersistentId: string;
99734
99940
  sortOrder: number;
@@ -99798,7 +100004,6 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
99798
100004
  createdAt: Date;
99799
100005
  updatedAt: Date;
99800
100006
  persistentId: string;
99801
- designSystemVersionId: string;
99802
100007
  data: {
99803
100008
  configuration?: {
99804
100009
  showSidebar: boolean;
@@ -100190,6 +100395,7 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
100190
100395
  } & any)[] | null | undefined;
100191
100396
  })[] | undefined;
100192
100397
  };
100398
+ designSystemVersionId: string;
100193
100399
  parentPersistentId: string;
100194
100400
  shortPersistentId: string;
100195
100401
  sortOrder: number;
@@ -101346,7 +101552,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101346
101552
  createdAt: Date;
101347
101553
  updatedAt: Date;
101348
101554
  persistentId: string;
101349
- designSystemVersionId: string;
101350
101555
  data: {
101351
101556
  configuration?: {
101352
101557
  showSidebar: boolean;
@@ -101380,6 +101585,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101380
101585
  } | undefined;
101381
101586
  oldBlocks?: PageBlockV1[] | undefined;
101382
101587
  };
101588
+ designSystemVersionId: string;
101383
101589
  parentPersistentId: string;
101384
101590
  shortPersistentId: string;
101385
101591
  sortOrder: number;
@@ -101394,7 +101600,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101394
101600
  createdAt: Date;
101395
101601
  updatedAt: Date;
101396
101602
  persistentId: string;
101397
- designSystemVersionId: string;
101398
101603
  data: {
101399
101604
  configuration?: {
101400
101605
  showSidebar: boolean;
@@ -101786,6 +101991,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
101786
101991
  } & any)[] | null | undefined;
101787
101992
  })[] | undefined;
101788
101993
  };
101994
+ designSystemVersionId: string;
101789
101995
  parentPersistentId: string;
101790
101996
  shortPersistentId: string;
101791
101997
  sortOrder: number;
@@ -102110,7 +102316,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102110
102316
  createdAt: Date;
102111
102317
  updatedAt: Date;
102112
102318
  persistentId: string;
102113
- designSystemVersionId: string;
102114
102319
  data: {
102115
102320
  configuration?: {
102116
102321
  showSidebar: boolean;
@@ -102144,6 +102349,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102144
102349
  } | undefined;
102145
102350
  oldBlocks?: PageBlockV1[] | undefined;
102146
102351
  };
102352
+ designSystemVersionId: string;
102147
102353
  parentPersistentId: string;
102148
102354
  shortPersistentId: string;
102149
102355
  sortOrder: number;
@@ -102211,7 +102417,6 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102211
102417
  createdAt: Date;
102212
102418
  updatedAt: Date;
102213
102419
  persistentId: string;
102214
- designSystemVersionId: string;
102215
102420
  data: {
102216
102421
  configuration?: {
102217
102422
  showSidebar: boolean;
@@ -102603,6 +102808,7 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
102603
102808
  } & any)[] | null | undefined;
102604
102809
  })[] | undefined;
102605
102810
  };
102811
+ designSystemVersionId: string;
102606
102812
  parentPersistentId: string;
102607
102813
  shortPersistentId: string;
102608
102814
  sortOrder: number;
@@ -103593,7 +103799,6 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
103593
103799
  createdAt: Date;
103594
103800
  updatedAt: Date;
103595
103801
  persistentId: string;
103596
- designSystemVersionId: string;
103597
103802
  data: {
103598
103803
  configuration?: {
103599
103804
  showSidebar: boolean;
@@ -103627,6 +103832,7 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
103627
103832
  } | undefined;
103628
103833
  oldBlocks?: PageBlockV1[] | undefined;
103629
103834
  };
103835
+ designSystemVersionId: string;
103630
103836
  parentPersistentId: string;
103631
103837
  shortPersistentId: string;
103632
103838
  sortOrder: number;
@@ -103641,7 +103847,6 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
103641
103847
  createdAt: Date;
103642
103848
  updatedAt: Date;
103643
103849
  persistentId: string;
103644
- designSystemVersionId: string;
103645
103850
  data: {
103646
103851
  configuration?: {
103647
103852
  showSidebar: boolean;
@@ -104033,6 +104238,7 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
104033
104238
  } & any)[] | null | undefined;
104034
104239
  })[] | undefined;
104035
104240
  };
104241
+ designSystemVersionId: string;
104036
104242
  parentPersistentId: string;
104037
104243
  shortPersistentId: string;
104038
104244
  sortOrder: number;
@@ -104945,7 +105151,6 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
104945
105151
  createdAt: Date;
104946
105152
  updatedAt: Date;
104947
105153
  persistentId: string;
104948
- designSystemVersionId: string;
104949
105154
  data: {
104950
105155
  configuration?: {
104951
105156
  showSidebar: boolean;
@@ -104979,6 +105184,7 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
104979
105184
  } | undefined;
104980
105185
  oldBlocks?: PageBlockV1[] | undefined;
104981
105186
  };
105187
+ designSystemVersionId: string;
104982
105188
  parentPersistentId: string;
104983
105189
  shortPersistentId: string;
104984
105190
  sortOrder: number;
@@ -105143,7 +105349,6 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
105143
105349
  createdAt: Date;
105144
105350
  updatedAt: Date;
105145
105351
  persistentId: string;
105146
- designSystemVersionId: string;
105147
105352
  data: {
105148
105353
  configuration?: {
105149
105354
  showSidebar: boolean;
@@ -105535,6 +105740,7 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
105535
105740
  } & any)[] | null | undefined;
105536
105741
  })[] | undefined;
105537
105742
  };
105743
+ designSystemVersionId: string;
105538
105744
  parentPersistentId: string;
105539
105745
  shortPersistentId: string;
105540
105746
  sortOrder: number;
@@ -107026,37 +107232,8 @@ declare const WorkspaceProfile: z.ZodObject<{
107026
107232
  name: z.ZodString;
107027
107233
  handle: z.ZodString;
107028
107234
  color: z.ZodString;
107029
- avatar: z.ZodOptional<z.ZodString>;
107030
- billingDetails: z.ZodOptional<z.ZodObject<{
107031
- address: z.ZodOptional<z.ZodObject<{
107032
- street1: z.ZodOptional<z.ZodString>;
107033
- street2: z.ZodOptional<z.ZodString>;
107034
- city: z.ZodOptional<z.ZodString>;
107035
- postal: z.ZodOptional<z.ZodString>;
107036
- country: z.ZodOptional<z.ZodString>;
107037
- state: z.ZodOptional<z.ZodString>;
107038
- }, "strip", z.ZodTypeAny, {
107039
- street1?: string | undefined;
107040
- street2?: string | undefined;
107041
- city?: string | undefined;
107042
- postal?: string | undefined;
107043
- country?: string | undefined;
107044
- state?: string | undefined;
107045
- }, {
107046
- street1?: string | undefined;
107047
- street2?: string | undefined;
107048
- city?: string | undefined;
107049
- postal?: string | undefined;
107050
- country?: string | undefined;
107051
- state?: string | undefined;
107052
- }>>;
107053
- email: z.ZodOptional<z.ZodString>;
107054
- companyName: z.ZodOptional<z.ZodString>;
107055
- companyId: z.ZodOptional<z.ZodString>;
107056
- notes: z.ZodOptional<z.ZodString>;
107057
- vat: z.ZodOptional<z.ZodString>;
107058
- poNumber: z.ZodOptional<z.ZodString>;
107059
- }, "strip", z.ZodTypeAny, {
107235
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
107236
+ billingDetails: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
107060
107237
  address?: {
107061
107238
  street1?: string | undefined;
107062
107239
  street2?: string | undefined;
@@ -107071,7 +107248,22 @@ declare const WorkspaceProfile: z.ZodObject<{
107071
107248
  notes?: string | undefined;
107072
107249
  vat?: string | undefined;
107073
107250
  poNumber?: string | undefined;
107074
- }, {
107251
+ }, z.ZodTypeDef, {
107252
+ address?: {
107253
+ street1?: string | null | undefined;
107254
+ street2?: string | null | undefined;
107255
+ city?: string | null | undefined;
107256
+ postal?: string | null | undefined;
107257
+ country?: string | null | undefined;
107258
+ state?: string | null | undefined;
107259
+ } | null | undefined;
107260
+ email?: string | null | undefined;
107261
+ companyName?: string | null | undefined;
107262
+ companyId?: string | null | undefined;
107263
+ notes?: string | null | undefined;
107264
+ vat?: string | null | undefined;
107265
+ poNumber?: string | null | undefined;
107266
+ }>>>, {
107075
107267
  address?: {
107076
107268
  street1?: string | undefined;
107077
107269
  street2?: string | undefined;
@@ -107086,7 +107278,22 @@ declare const WorkspaceProfile: z.ZodObject<{
107086
107278
  notes?: string | undefined;
107087
107279
  vat?: string | undefined;
107088
107280
  poNumber?: string | undefined;
107089
- }>>;
107281
+ } | undefined, {
107282
+ address?: {
107283
+ street1?: string | null | undefined;
107284
+ street2?: string | null | undefined;
107285
+ city?: string | null | undefined;
107286
+ postal?: string | null | undefined;
107287
+ country?: string | null | undefined;
107288
+ state?: string | null | undefined;
107289
+ } | null | undefined;
107290
+ email?: string | null | undefined;
107291
+ companyName?: string | null | undefined;
107292
+ companyId?: string | null | undefined;
107293
+ notes?: string | null | undefined;
107294
+ vat?: string | null | undefined;
107295
+ poNumber?: string | null | undefined;
107296
+ } | null | undefined>;
107090
107297
  }, "strip", z.ZodTypeAny, {
107091
107298
  name: string;
107092
107299
  color: string;
@@ -107112,23 +107319,23 @@ declare const WorkspaceProfile: z.ZodObject<{
107112
107319
  name: string;
107113
107320
  color: string;
107114
107321
  handle: string;
107115
- avatar?: string | undefined;
107322
+ avatar?: string | null | undefined;
107116
107323
  billingDetails?: {
107117
107324
  address?: {
107118
- street1?: string | undefined;
107119
- street2?: string | undefined;
107120
- city?: string | undefined;
107121
- postal?: string | undefined;
107122
- country?: string | undefined;
107123
- state?: string | undefined;
107124
- } | undefined;
107125
- email?: string | undefined;
107126
- companyName?: string | undefined;
107127
- companyId?: string | undefined;
107128
- notes?: string | undefined;
107129
- vat?: string | undefined;
107130
- poNumber?: string | undefined;
107131
- } | undefined;
107325
+ street1?: string | null | undefined;
107326
+ street2?: string | null | undefined;
107327
+ city?: string | null | undefined;
107328
+ postal?: string | null | undefined;
107329
+ country?: string | null | undefined;
107330
+ state?: string | null | undefined;
107331
+ } | null | undefined;
107332
+ email?: string | null | undefined;
107333
+ companyName?: string | null | undefined;
107334
+ companyId?: string | null | undefined;
107335
+ notes?: string | null | undefined;
107336
+ vat?: string | null | undefined;
107337
+ poNumber?: string | null | undefined;
107338
+ } | null | undefined;
107132
107339
  }>;
107133
107340
  type WorkspaceProfile = z.infer<typeof WorkspaceProfile>;
107134
107341
  declare const Workspace: z.ZodObject<{
@@ -107137,37 +107344,8 @@ declare const Workspace: z.ZodObject<{
107137
107344
  name: z.ZodString;
107138
107345
  handle: z.ZodString;
107139
107346
  color: z.ZodString;
107140
- avatar: z.ZodOptional<z.ZodString>;
107141
- billingDetails: z.ZodOptional<z.ZodObject<{
107142
- address: z.ZodOptional<z.ZodObject<{
107143
- street1: z.ZodOptional<z.ZodString>;
107144
- street2: z.ZodOptional<z.ZodString>;
107145
- city: z.ZodOptional<z.ZodString>;
107146
- postal: z.ZodOptional<z.ZodString>;
107147
- country: z.ZodOptional<z.ZodString>;
107148
- state: z.ZodOptional<z.ZodString>;
107149
- }, "strip", z.ZodTypeAny, {
107150
- street1?: string | undefined;
107151
- street2?: string | undefined;
107152
- city?: string | undefined;
107153
- postal?: string | undefined;
107154
- country?: string | undefined;
107155
- state?: string | undefined;
107156
- }, {
107157
- street1?: string | undefined;
107158
- street2?: string | undefined;
107159
- city?: string | undefined;
107160
- postal?: string | undefined;
107161
- country?: string | undefined;
107162
- state?: string | undefined;
107163
- }>>;
107164
- email: z.ZodOptional<z.ZodString>;
107165
- companyName: z.ZodOptional<z.ZodString>;
107166
- companyId: z.ZodOptional<z.ZodString>;
107167
- notes: z.ZodOptional<z.ZodString>;
107168
- vat: z.ZodOptional<z.ZodString>;
107169
- poNumber: z.ZodOptional<z.ZodString>;
107170
- }, "strip", z.ZodTypeAny, {
107347
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
107348
+ billingDetails: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
107171
107349
  address?: {
107172
107350
  street1?: string | undefined;
107173
107351
  street2?: string | undefined;
@@ -107182,7 +107360,22 @@ declare const Workspace: z.ZodObject<{
107182
107360
  notes?: string | undefined;
107183
107361
  vat?: string | undefined;
107184
107362
  poNumber?: string | undefined;
107185
- }, {
107363
+ }, z.ZodTypeDef, {
107364
+ address?: {
107365
+ street1?: string | null | undefined;
107366
+ street2?: string | null | undefined;
107367
+ city?: string | null | undefined;
107368
+ postal?: string | null | undefined;
107369
+ country?: string | null | undefined;
107370
+ state?: string | null | undefined;
107371
+ } | null | undefined;
107372
+ email?: string | null | undefined;
107373
+ companyName?: string | null | undefined;
107374
+ companyId?: string | null | undefined;
107375
+ notes?: string | null | undefined;
107376
+ vat?: string | null | undefined;
107377
+ poNumber?: string | null | undefined;
107378
+ }>>>, {
107186
107379
  address?: {
107187
107380
  street1?: string | undefined;
107188
107381
  street2?: string | undefined;
@@ -107197,7 +107390,22 @@ declare const Workspace: z.ZodObject<{
107197
107390
  notes?: string | undefined;
107198
107391
  vat?: string | undefined;
107199
107392
  poNumber?: string | undefined;
107200
- }>>;
107393
+ } | undefined, {
107394
+ address?: {
107395
+ street1?: string | null | undefined;
107396
+ street2?: string | null | undefined;
107397
+ city?: string | null | undefined;
107398
+ postal?: string | null | undefined;
107399
+ country?: string | null | undefined;
107400
+ state?: string | null | undefined;
107401
+ } | null | undefined;
107402
+ email?: string | null | undefined;
107403
+ companyName?: string | null | undefined;
107404
+ companyId?: string | null | undefined;
107405
+ notes?: string | null | undefined;
107406
+ vat?: string | null | undefined;
107407
+ poNumber?: string | null | undefined;
107408
+ } | null | undefined>;
107201
107409
  }, "strip", z.ZodTypeAny, {
107202
107410
  name: string;
107203
107411
  color: string;
@@ -107223,23 +107431,23 @@ declare const Workspace: z.ZodObject<{
107223
107431
  name: string;
107224
107432
  color: string;
107225
107433
  handle: string;
107226
- avatar?: string | undefined;
107434
+ avatar?: string | null | undefined;
107227
107435
  billingDetails?: {
107228
107436
  address?: {
107229
- street1?: string | undefined;
107230
- street2?: string | undefined;
107231
- city?: string | undefined;
107232
- postal?: string | undefined;
107233
- country?: string | undefined;
107234
- state?: string | undefined;
107235
- } | undefined;
107236
- email?: string | undefined;
107237
- companyName?: string | undefined;
107238
- companyId?: string | undefined;
107239
- notes?: string | undefined;
107240
- vat?: string | undefined;
107241
- poNumber?: string | undefined;
107242
- } | undefined;
107437
+ street1?: string | null | undefined;
107438
+ street2?: string | null | undefined;
107439
+ city?: string | null | undefined;
107440
+ postal?: string | null | undefined;
107441
+ country?: string | null | undefined;
107442
+ state?: string | null | undefined;
107443
+ } | null | undefined;
107444
+ email?: string | null | undefined;
107445
+ companyName?: string | null | undefined;
107446
+ companyId?: string | null | undefined;
107447
+ notes?: string | null | undefined;
107448
+ vat?: string | null | undefined;
107449
+ poNumber?: string | null | undefined;
107450
+ } | null | undefined;
107243
107451
  }>;
107244
107452
  subscription: z.ZodObject<{
107245
107453
  stripeSubscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -107702,7 +107910,7 @@ declare const Workspace: z.ZodObject<{
107702
107910
  stripeSubscriptionId?: string | null | undefined;
107703
107911
  stripeCustomerId?: string | null | undefined;
107704
107912
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
107705
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
107913
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
107706
107914
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
107707
107915
  featuresSummary?: {
107708
107916
  designSystems: {
@@ -107824,7 +108032,7 @@ declare const Workspace: z.ZodObject<{
107824
108032
  stripeSubscriptionId?: string | null | undefined;
107825
108033
  stripeCustomerId?: string | null | undefined;
107826
108034
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
107827
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
108035
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
107828
108036
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
107829
108037
  featuresSummary?: {
107830
108038
  designSystems: {
@@ -108032,8 +108240,8 @@ declare const Workspace: z.ZodObject<{
108032
108240
  id: string;
108033
108241
  createdAt: Date;
108034
108242
  name: string;
108035
- description: string;
108036
108243
  updatedAt: Date;
108244
+ description: string;
108037
108245
  workspaceId: string;
108038
108246
  docSlug: string;
108039
108247
  docSlugDeprecated: string;
@@ -108051,8 +108259,8 @@ declare const Workspace: z.ZodObject<{
108051
108259
  id: string;
108052
108260
  createdAt: Date;
108053
108261
  name: string;
108054
- description: string;
108055
108262
  updatedAt: Date;
108263
+ description: string;
108056
108264
  workspaceId: string;
108057
108265
  docSlug: string;
108058
108266
  docSlugDeprecated: string;
@@ -108100,7 +108308,7 @@ declare const Workspace: z.ZodObject<{
108100
108308
  stripeSubscriptionId?: string | null | undefined;
108101
108309
  stripeCustomerId?: string | null | undefined;
108102
108310
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
108103
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
108311
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
108104
108312
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
108105
108313
  featuresSummary?: {
108106
108314
  designSystems: {
@@ -108238,8 +108446,8 @@ declare const Workspace: z.ZodObject<{
108238
108446
  id: string;
108239
108447
  createdAt: Date;
108240
108448
  name: string;
108241
- description: string;
108242
108449
  updatedAt: Date;
108450
+ description: string;
108243
108451
  workspaceId: string;
108244
108452
  docSlug: string;
108245
108453
  docSlugDeprecated: string;
@@ -108260,23 +108468,23 @@ declare const Workspace: z.ZodObject<{
108260
108468
  name: string;
108261
108469
  color: string;
108262
108470
  handle: string;
108263
- avatar?: string | undefined;
108471
+ avatar?: string | null | undefined;
108264
108472
  billingDetails?: {
108265
108473
  address?: {
108266
- street1?: string | undefined;
108267
- street2?: string | undefined;
108268
- city?: string | undefined;
108269
- postal?: string | undefined;
108270
- country?: string | undefined;
108271
- state?: string | undefined;
108272
- } | undefined;
108273
- email?: string | undefined;
108274
- companyName?: string | undefined;
108275
- companyId?: string | undefined;
108276
- notes?: string | undefined;
108277
- vat?: string | undefined;
108278
- poNumber?: string | undefined;
108279
- } | undefined;
108474
+ street1?: string | null | undefined;
108475
+ street2?: string | null | undefined;
108476
+ city?: string | null | undefined;
108477
+ postal?: string | null | undefined;
108478
+ country?: string | null | undefined;
108479
+ state?: string | null | undefined;
108480
+ } | null | undefined;
108481
+ email?: string | null | undefined;
108482
+ companyName?: string | null | undefined;
108483
+ companyId?: string | null | undefined;
108484
+ notes?: string | null | undefined;
108485
+ vat?: string | null | undefined;
108486
+ poNumber?: string | null | undefined;
108487
+ } | null | undefined;
108280
108488
  };
108281
108489
  subscription: {
108282
108490
  product: "free" | "team" | "team_test" | "company" | "enterprise";
@@ -108287,7 +108495,7 @@ declare const Workspace: z.ZodObject<{
108287
108495
  stripeSubscriptionId?: string | null | undefined;
108288
108496
  stripeCustomerId?: string | null | undefined;
108289
108497
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
108290
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
108498
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
108291
108499
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
108292
108500
  featuresSummary?: {
108293
108501
  designSystems: {
@@ -108425,8 +108633,8 @@ declare const Workspace: z.ZodObject<{
108425
108633
  id: string;
108426
108634
  createdAt: Date;
108427
108635
  name: string;
108428
- description: string;
108429
108636
  updatedAt: Date;
108637
+ description: string;
108430
108638
  workspaceId: string;
108431
108639
  docSlug: string;
108432
108640
  docSlugDeprecated: string;
@@ -108450,37 +108658,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
108450
108658
  name: z.ZodString;
108451
108659
  handle: z.ZodString;
108452
108660
  color: z.ZodString;
108453
- avatar: z.ZodOptional<z.ZodString>;
108454
- billingDetails: z.ZodOptional<z.ZodObject<{
108455
- address: z.ZodOptional<z.ZodObject<{
108456
- street1: z.ZodOptional<z.ZodString>;
108457
- street2: z.ZodOptional<z.ZodString>;
108458
- city: z.ZodOptional<z.ZodString>;
108459
- postal: z.ZodOptional<z.ZodString>;
108460
- country: z.ZodOptional<z.ZodString>;
108461
- state: z.ZodOptional<z.ZodString>;
108462
- }, "strip", z.ZodTypeAny, {
108463
- street1?: string | undefined;
108464
- street2?: string | undefined;
108465
- city?: string | undefined;
108466
- postal?: string | undefined;
108467
- country?: string | undefined;
108468
- state?: string | undefined;
108469
- }, {
108470
- street1?: string | undefined;
108471
- street2?: string | undefined;
108472
- city?: string | undefined;
108473
- postal?: string | undefined;
108474
- country?: string | undefined;
108475
- state?: string | undefined;
108476
- }>>;
108477
- email: z.ZodOptional<z.ZodString>;
108478
- companyName: z.ZodOptional<z.ZodString>;
108479
- companyId: z.ZodOptional<z.ZodString>;
108480
- notes: z.ZodOptional<z.ZodString>;
108481
- vat: z.ZodOptional<z.ZodString>;
108482
- poNumber: z.ZodOptional<z.ZodString>;
108483
- }, "strip", z.ZodTypeAny, {
108661
+ avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
108662
+ billingDetails: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
108484
108663
  address?: {
108485
108664
  street1?: string | undefined;
108486
108665
  street2?: string | undefined;
@@ -108495,7 +108674,22 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
108495
108674
  notes?: string | undefined;
108496
108675
  vat?: string | undefined;
108497
108676
  poNumber?: string | undefined;
108498
- }, {
108677
+ }, z.ZodTypeDef, {
108678
+ address?: {
108679
+ street1?: string | null | undefined;
108680
+ street2?: string | null | undefined;
108681
+ city?: string | null | undefined;
108682
+ postal?: string | null | undefined;
108683
+ country?: string | null | undefined;
108684
+ state?: string | null | undefined;
108685
+ } | null | undefined;
108686
+ email?: string | null | undefined;
108687
+ companyName?: string | null | undefined;
108688
+ companyId?: string | null | undefined;
108689
+ notes?: string | null | undefined;
108690
+ vat?: string | null | undefined;
108691
+ poNumber?: string | null | undefined;
108692
+ }>>>, {
108499
108693
  address?: {
108500
108694
  street1?: string | undefined;
108501
108695
  street2?: string | undefined;
@@ -108510,7 +108704,22 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
108510
108704
  notes?: string | undefined;
108511
108705
  vat?: string | undefined;
108512
108706
  poNumber?: string | undefined;
108513
- }>>;
108707
+ } | undefined, {
108708
+ address?: {
108709
+ street1?: string | null | undefined;
108710
+ street2?: string | null | undefined;
108711
+ city?: string | null | undefined;
108712
+ postal?: string | null | undefined;
108713
+ country?: string | null | undefined;
108714
+ state?: string | null | undefined;
108715
+ } | null | undefined;
108716
+ email?: string | null | undefined;
108717
+ companyName?: string | null | undefined;
108718
+ companyId?: string | null | undefined;
108719
+ notes?: string | null | undefined;
108720
+ vat?: string | null | undefined;
108721
+ poNumber?: string | null | undefined;
108722
+ } | null | undefined>;
108514
108723
  }, "strip", z.ZodTypeAny, {
108515
108724
  name: string;
108516
108725
  color: string;
@@ -108536,23 +108745,23 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
108536
108745
  name: string;
108537
108746
  color: string;
108538
108747
  handle: string;
108539
- avatar?: string | undefined;
108748
+ avatar?: string | null | undefined;
108540
108749
  billingDetails?: {
108541
108750
  address?: {
108542
- street1?: string | undefined;
108543
- street2?: string | undefined;
108544
- city?: string | undefined;
108545
- postal?: string | undefined;
108546
- country?: string | undefined;
108547
- state?: string | undefined;
108548
- } | undefined;
108549
- email?: string | undefined;
108550
- companyName?: string | undefined;
108551
- companyId?: string | undefined;
108552
- notes?: string | undefined;
108553
- vat?: string | undefined;
108554
- poNumber?: string | undefined;
108555
- } | undefined;
108751
+ street1?: string | null | undefined;
108752
+ street2?: string | null | undefined;
108753
+ city?: string | null | undefined;
108754
+ postal?: string | null | undefined;
108755
+ country?: string | null | undefined;
108756
+ state?: string | null | undefined;
108757
+ } | null | undefined;
108758
+ email?: string | null | undefined;
108759
+ companyName?: string | null | undefined;
108760
+ companyId?: string | null | undefined;
108761
+ notes?: string | null | undefined;
108762
+ vat?: string | null | undefined;
108763
+ poNumber?: string | null | undefined;
108764
+ } | null | undefined;
108556
108765
  }>;
108557
108766
  subscription: z.ZodObject<{
108558
108767
  stripeSubscriptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -109015,7 +109224,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109015
109224
  stripeSubscriptionId?: string | null | undefined;
109016
109225
  stripeCustomerId?: string | null | undefined;
109017
109226
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109018
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
109227
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
109019
109228
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109020
109229
  featuresSummary?: {
109021
109230
  designSystems: {
@@ -109137,7 +109346,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109137
109346
  stripeSubscriptionId?: string | null | undefined;
109138
109347
  stripeCustomerId?: string | null | undefined;
109139
109348
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109140
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
109349
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
109141
109350
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109142
109351
  featuresSummary?: {
109143
109352
  designSystems: {
@@ -109345,8 +109554,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109345
109554
  id: string;
109346
109555
  createdAt: Date;
109347
109556
  name: string;
109348
- description: string;
109349
109557
  updatedAt: Date;
109558
+ description: string;
109350
109559
  workspaceId: string;
109351
109560
  docSlug: string;
109352
109561
  docSlugDeprecated: string;
@@ -109364,8 +109573,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109364
109573
  id: string;
109365
109574
  createdAt: Date;
109366
109575
  name: string;
109367
- description: string;
109368
109576
  updatedAt: Date;
109577
+ description: string;
109369
109578
  workspaceId: string;
109370
109579
  docSlug: string;
109371
109580
  docSlugDeprecated: string;
@@ -109413,7 +109622,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109413
109622
  stripeSubscriptionId?: string | null | undefined;
109414
109623
  stripeCustomerId?: string | null | undefined;
109415
109624
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109416
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
109625
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
109417
109626
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109418
109627
  featuresSummary?: {
109419
109628
  designSystems: {
@@ -109551,8 +109760,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109551
109760
  id: string;
109552
109761
  createdAt: Date;
109553
109762
  name: string;
109554
- description: string;
109555
109763
  updatedAt: Date;
109764
+ description: string;
109556
109765
  workspaceId: string;
109557
109766
  docSlug: string;
109558
109767
  docSlugDeprecated: string;
@@ -109573,23 +109782,23 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109573
109782
  name: string;
109574
109783
  color: string;
109575
109784
  handle: string;
109576
- avatar?: string | undefined;
109785
+ avatar?: string | null | undefined;
109577
109786
  billingDetails?: {
109578
109787
  address?: {
109579
- street1?: string | undefined;
109580
- street2?: string | undefined;
109581
- city?: string | undefined;
109582
- postal?: string | undefined;
109583
- country?: string | undefined;
109584
- state?: string | undefined;
109585
- } | undefined;
109586
- email?: string | undefined;
109587
- companyName?: string | undefined;
109588
- companyId?: string | undefined;
109589
- notes?: string | undefined;
109590
- vat?: string | undefined;
109591
- poNumber?: string | undefined;
109592
- } | undefined;
109788
+ street1?: string | null | undefined;
109789
+ street2?: string | null | undefined;
109790
+ city?: string | null | undefined;
109791
+ postal?: string | null | undefined;
109792
+ country?: string | null | undefined;
109793
+ state?: string | null | undefined;
109794
+ } | null | undefined;
109795
+ email?: string | null | undefined;
109796
+ companyName?: string | null | undefined;
109797
+ companyId?: string | null | undefined;
109798
+ notes?: string | null | undefined;
109799
+ vat?: string | null | undefined;
109800
+ poNumber?: string | null | undefined;
109801
+ } | null | undefined;
109593
109802
  };
109594
109803
  subscription: {
109595
109804
  product: "free" | "team" | "team_test" | "company" | "enterprise";
@@ -109600,7 +109809,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109600
109809
  stripeSubscriptionId?: string | null | undefined;
109601
109810
  stripeCustomerId?: string | null | undefined;
109602
109811
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109603
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
109812
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
109604
109813
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109605
109814
  featuresSummary?: {
109606
109815
  designSystems: {
@@ -109738,8 +109947,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109738
109947
  id: string;
109739
109948
  createdAt: Date;
109740
109949
  name: string;
109741
- description: string;
109742
109950
  updatedAt: Date;
109951
+ description: string;
109743
109952
  workspaceId: string;
109744
109953
  docSlug: string;
109745
109954
  docSlugDeprecated: string;
@@ -109787,8 +109996,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109787
109996
  id: string;
109788
109997
  createdAt: Date;
109789
109998
  name: string;
109790
- description: string;
109791
109999
  updatedAt: Date;
110000
+ description: string;
109792
110001
  workspaceId: string;
109793
110002
  docSlug: string;
109794
110003
  docSlugDeprecated: string;
@@ -109806,8 +110015,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109806
110015
  id: string;
109807
110016
  createdAt: Date;
109808
110017
  name: string;
109809
- description: string;
109810
110018
  updatedAt: Date;
110019
+ description: string;
109811
110020
  workspaceId: string;
109812
110021
  docSlug: string;
109813
110022
  docSlugDeprecated: string;
@@ -109827,8 +110036,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109827
110036
  id: string;
109828
110037
  createdAt: Date;
109829
110038
  name: string;
109830
- description: string;
109831
110039
  updatedAt: Date;
110040
+ description: string;
109832
110041
  workspaceId: string;
109833
110042
  docSlug: string;
109834
110043
  docSlugDeprecated: string;
@@ -109876,7 +110085,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
109876
110085
  stripeSubscriptionId?: string | null | undefined;
109877
110086
  stripeCustomerId?: string | null | undefined;
109878
110087
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109879
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
110088
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
109880
110089
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
109881
110090
  featuresSummary?: {
109882
110091
  designSystems: {
@@ -110014,8 +110223,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110014
110223
  id: string;
110015
110224
  createdAt: Date;
110016
110225
  name: string;
110017
- description: string;
110018
110226
  updatedAt: Date;
110227
+ description: string;
110019
110228
  workspaceId: string;
110020
110229
  docSlug: string;
110021
110230
  docSlugDeprecated: string;
@@ -110036,8 +110245,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110036
110245
  id: string;
110037
110246
  createdAt: Date;
110038
110247
  name: string;
110039
- description: string;
110040
110248
  updatedAt: Date;
110249
+ description: string;
110041
110250
  workspaceId: string;
110042
110251
  docSlug: string;
110043
110252
  docSlugDeprecated: string;
@@ -110058,23 +110267,23 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110058
110267
  name: string;
110059
110268
  color: string;
110060
110269
  handle: string;
110061
- avatar?: string | undefined;
110270
+ avatar?: string | null | undefined;
110062
110271
  billingDetails?: {
110063
110272
  address?: {
110064
- street1?: string | undefined;
110065
- street2?: string | undefined;
110066
- city?: string | undefined;
110067
- postal?: string | undefined;
110068
- country?: string | undefined;
110069
- state?: string | undefined;
110070
- } | undefined;
110071
- email?: string | undefined;
110072
- companyName?: string | undefined;
110073
- companyId?: string | undefined;
110074
- notes?: string | undefined;
110075
- vat?: string | undefined;
110076
- poNumber?: string | undefined;
110077
- } | undefined;
110273
+ street1?: string | null | undefined;
110274
+ street2?: string | null | undefined;
110275
+ city?: string | null | undefined;
110276
+ postal?: string | null | undefined;
110277
+ country?: string | null | undefined;
110278
+ state?: string | null | undefined;
110279
+ } | null | undefined;
110280
+ email?: string | null | undefined;
110281
+ companyName?: string | null | undefined;
110282
+ companyId?: string | null | undefined;
110283
+ notes?: string | null | undefined;
110284
+ vat?: string | null | undefined;
110285
+ poNumber?: string | null | undefined;
110286
+ } | null | undefined;
110078
110287
  };
110079
110288
  subscription: {
110080
110289
  product: "free" | "team" | "team_test" | "company" | "enterprise";
@@ -110085,7 +110294,7 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110085
110294
  stripeSubscriptionId?: string | null | undefined;
110086
110295
  stripeCustomerId?: string | null | undefined;
110087
110296
  status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
110088
- subscriptionStatus?: "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | "unknown" | undefined;
110297
+ subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
110089
110298
  internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
110090
110299
  featuresSummary?: {
110091
110300
  designSystems: {
@@ -110223,8 +110432,8 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110223
110432
  id: string;
110224
110433
  createdAt: Date;
110225
110434
  name: string;
110226
- description: string;
110227
110435
  updatedAt: Date;
110436
+ description: string;
110228
110437
  workspaceId: string;
110229
110438
  docSlug: string;
110230
110439
  docSlugDeprecated: string;
@@ -110243,4 +110452,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
110243
110452
  }>;
110244
110453
  type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
110245
110454
 
110246
- export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataDeprecated, ElementGroupDataV2, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModel, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
110455
+ export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataDeprecated, ElementGroupDataV2, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModel, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };