@supernova-studio/model 1.9.15 → 1.9.17

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
@@ -870,6 +870,19 @@ declare const FeaturesSummary: z.ZodObject<{
870
870
  errorReason: string;
871
871
  max?: number | undefined;
872
872
  }>;
873
+ designSystemFileSize: z.ZodObject<{
874
+ max: z.ZodOptional<z.ZodNumber>;
875
+ errorMessage: z.ZodString;
876
+ errorReason: z.ZodString;
877
+ }, "strip", z.ZodTypeAny, {
878
+ errorMessage: string;
879
+ errorReason: string;
880
+ max?: number | undefined;
881
+ }, {
882
+ errorMessage: string;
883
+ errorReason: string;
884
+ max?: number | undefined;
885
+ }>;
873
886
  }, "strip", z.ZodTypeAny, {
874
887
  analytics: {
875
888
  errorMessage: string;
@@ -993,6 +1006,11 @@ declare const FeaturesSummary: z.ZodObject<{
993
1006
  errorReason: string;
994
1007
  enabled: boolean;
995
1008
  };
1009
+ designSystemFileSize: {
1010
+ errorMessage: string;
1011
+ errorReason: string;
1012
+ max?: number | undefined;
1013
+ };
996
1014
  }, {
997
1015
  analytics: {
998
1016
  errorMessage: string;
@@ -1116,6 +1134,11 @@ declare const FeaturesSummary: z.ZodObject<{
1116
1134
  errorReason: string;
1117
1135
  enabled: boolean;
1118
1136
  };
1137
+ designSystemFileSize: {
1138
+ errorMessage: string;
1139
+ errorReason: string;
1140
+ max?: number | undefined;
1141
+ };
1119
1142
  }>;
1120
1143
  type FeaturesSummary = z.infer<typeof FeaturesSummary>;
1121
1144
 
@@ -1681,6 +1704,19 @@ declare const Subscription: z.ZodObject<{
1681
1704
  errorReason: string;
1682
1705
  max?: number | undefined;
1683
1706
  }>;
1707
+ designSystemFileSize: z.ZodObject<{
1708
+ max: z.ZodOptional<z.ZodNumber>;
1709
+ errorMessage: z.ZodString;
1710
+ errorReason: z.ZodString;
1711
+ }, "strip", z.ZodTypeAny, {
1712
+ errorMessage: string;
1713
+ errorReason: string;
1714
+ max?: number | undefined;
1715
+ }, {
1716
+ errorMessage: string;
1717
+ errorReason: string;
1718
+ max?: number | undefined;
1719
+ }>;
1684
1720
  }, "strip", z.ZodTypeAny, {
1685
1721
  analytics: {
1686
1722
  errorMessage: string;
@@ -1804,6 +1840,11 @@ declare const Subscription: z.ZodObject<{
1804
1840
  errorReason: string;
1805
1841
  enabled: boolean;
1806
1842
  };
1843
+ designSystemFileSize: {
1844
+ errorMessage: string;
1845
+ errorReason: string;
1846
+ max?: number | undefined;
1847
+ };
1807
1848
  }, {
1808
1849
  analytics: {
1809
1850
  errorMessage: string;
@@ -1927,6 +1968,11 @@ declare const Subscription: z.ZodObject<{
1927
1968
  errorReason: string;
1928
1969
  enabled: boolean;
1929
1970
  };
1971
+ designSystemFileSize: {
1972
+ errorMessage: string;
1973
+ errorReason: string;
1974
+ max?: number | undefined;
1975
+ };
1930
1976
  }>>;
1931
1977
  stripeProductDescription: z.ZodOptional<z.ZodString>;
1932
1978
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -2117,6 +2163,11 @@ declare const Subscription: z.ZodObject<{
2117
2163
  errorReason: string;
2118
2164
  enabled: boolean;
2119
2165
  };
2166
+ designSystemFileSize: {
2167
+ errorMessage: string;
2168
+ errorReason: string;
2169
+ max?: number | undefined;
2170
+ };
2120
2171
  } | undefined;
2121
2172
  stripeSubscriptionMainItemId?: string | undefined;
2122
2173
  currentPeriodStart?: string | undefined;
@@ -2274,6 +2325,11 @@ declare const Subscription: z.ZodObject<{
2274
2325
  errorReason: string;
2275
2326
  enabled: boolean;
2276
2327
  };
2328
+ designSystemFileSize: {
2329
+ errorMessage: string;
2330
+ errorReason: string;
2331
+ max?: number | undefined;
2332
+ };
2277
2333
  } | undefined;
2278
2334
  stripeSubscriptionMainItemId?: string | undefined;
2279
2335
  currentPeriodStart?: string | undefined;
@@ -2285,6 +2341,107 @@ declare const Subscription: z.ZodObject<{
2285
2341
  }>;
2286
2342
  type Subscription = z.infer<typeof Subscription>;
2287
2343
 
2344
+ /**
2345
+ * Base ChatMessage schema and ChatMessageSenderType enum
2346
+ * Used by message-related endpoints
2347
+ */
2348
+ declare const ForgeChatMessageSenderType: z.ZodEnum<["User", "Agent"]>;
2349
+ type ForgeChatMessageSenderType = z.infer<typeof ForgeChatMessageSenderType>;
2350
+ declare const ForgeChatMessageSender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2351
+ type: z.ZodLiteral<"User">;
2352
+ }, "strip", z.ZodTypeAny, {
2353
+ type: "User";
2354
+ }, {
2355
+ type: "User";
2356
+ }>, z.ZodObject<{
2357
+ type: z.ZodLiteral<"Agent">;
2358
+ persona: z.ZodLiteral<"Amy">;
2359
+ }, "strip", z.ZodTypeAny, {
2360
+ type: "Agent";
2361
+ persona: "Amy";
2362
+ }, {
2363
+ type: "Agent";
2364
+ persona: "Amy";
2365
+ }>]>;
2366
+ type ForgeChatMessageSender = z.infer<typeof ForgeChatMessageSender>;
2367
+ declare const ForgeChatMessage: z.ZodObject<{
2368
+ id: z.ZodNumber;
2369
+ threadId: z.ZodNumber;
2370
+ payload: z.ZodString;
2371
+ createdAt: z.ZodDate;
2372
+ updatedAt: z.ZodDate;
2373
+ sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
2374
+ type: z.ZodLiteral<"User">;
2375
+ }, "strip", z.ZodTypeAny, {
2376
+ type: "User";
2377
+ }, {
2378
+ type: "User";
2379
+ }>, z.ZodObject<{
2380
+ type: z.ZodLiteral<"Agent">;
2381
+ persona: z.ZodLiteral<"Amy">;
2382
+ }, "strip", z.ZodTypeAny, {
2383
+ type: "Agent";
2384
+ persona: "Amy";
2385
+ }, {
2386
+ type: "Agent";
2387
+ persona: "Amy";
2388
+ }>]>;
2389
+ }, "strip", z.ZodTypeAny, {
2390
+ id: number;
2391
+ createdAt: Date;
2392
+ updatedAt: Date;
2393
+ threadId: number;
2394
+ payload: string;
2395
+ sender: {
2396
+ type: "User";
2397
+ } | {
2398
+ type: "Agent";
2399
+ persona: "Amy";
2400
+ };
2401
+ }, {
2402
+ id: number;
2403
+ createdAt: Date;
2404
+ updatedAt: Date;
2405
+ threadId: number;
2406
+ payload: string;
2407
+ sender: {
2408
+ type: "User";
2409
+ } | {
2410
+ type: "Agent";
2411
+ persona: "Amy";
2412
+ };
2413
+ }>;
2414
+ type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
2415
+
2416
+ /**
2417
+ * Base ChatThread schema used across multiple endpoints
2418
+ * Also used for DELETE /api/v1/workspaces/{wsId}/chat-threads/{threadId}
2419
+ * (DELETE endpoint returns { ok: boolean } but references this model)
2420
+ */
2421
+ declare const ForgeChatThread: z.ZodObject<{
2422
+ id: z.ZodString;
2423
+ title: z.ZodString;
2424
+ workspaceId: z.ZodString;
2425
+ userId: z.ZodString;
2426
+ createdAt: z.ZodDate;
2427
+ updatedAt: z.ZodDate;
2428
+ }, "strip", z.ZodTypeAny, {
2429
+ id: string;
2430
+ createdAt: Date;
2431
+ updatedAt: Date;
2432
+ title: string;
2433
+ workspaceId: string;
2434
+ userId: string;
2435
+ }, {
2436
+ id: string;
2437
+ createdAt: Date;
2438
+ updatedAt: Date;
2439
+ title: string;
2440
+ workspaceId: string;
2441
+ userId: string;
2442
+ }>;
2443
+ type ForgeChatThread = z.infer<typeof ForgeChatThread>;
2444
+
2288
2445
  declare const Entity: z.ZodObject<{
2289
2446
  id: z.ZodString;
2290
2447
  createdAt: z.ZodDate;
@@ -3972,8 +4129,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
3972
4129
  }, "strip", z.ZodTypeAny, {
3973
4130
  id: string;
3974
4131
  name: string;
3975
- designSystemId: string;
3976
4132
  workspaceId: string;
4133
+ designSystemId: string;
3977
4134
  isEnabled: boolean;
3978
4135
  exporterId: string;
3979
4136
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -4057,8 +4214,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
4057
4214
  }, {
4058
4215
  id: string;
4059
4216
  name: string;
4060
- designSystemId: string;
4061
4217
  workspaceId: string;
4218
+ designSystemId: string;
4062
4219
  isEnabled: boolean;
4063
4220
  exporterId: string;
4064
4221
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -4367,8 +4524,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
4367
4524
  pipelines: {
4368
4525
  id: string;
4369
4526
  name: string;
4370
- designSystemId: string;
4371
4527
  workspaceId: string;
4528
+ designSystemId: string;
4372
4529
  isEnabled: boolean;
4373
4530
  exporterId: string;
4374
4531
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -4667,8 +4824,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
4667
4824
  pipelines: {
4668
4825
  id: string;
4669
4826
  name: string;
4670
- designSystemId: string;
4671
4827
  workspaceId: string;
4828
+ designSystemId: string;
4672
4829
  isEnabled: boolean;
4673
4830
  exporterId: string;
4674
4831
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -7003,8 +7160,8 @@ declare const DesignSystemDump: z.ZodObject<{
7003
7160
  }, "strip", z.ZodTypeAny, {
7004
7161
  id: string;
7005
7162
  createdAt: Date;
7006
- authorId: string;
7007
7163
  threadId: string;
7164
+ authorId: string;
7008
7165
  roomId: string;
7009
7166
  body: string;
7010
7167
  editedAt?: Date | undefined;
@@ -7012,8 +7169,8 @@ declare const DesignSystemDump: z.ZodObject<{
7012
7169
  }, {
7013
7170
  id: string;
7014
7171
  createdAt: Date;
7015
- authorId: string;
7016
7172
  threadId: string;
7173
+ authorId: string;
7017
7174
  roomId: string;
7018
7175
  body: string;
7019
7176
  editedAt?: Date | undefined;
@@ -7023,8 +7180,8 @@ declare const DesignSystemDump: z.ZodObject<{
7023
7180
  comments: {
7024
7181
  id: string;
7025
7182
  createdAt: Date;
7026
- authorId: string;
7027
7183
  threadId: string;
7184
+ authorId: string;
7028
7185
  roomId: string;
7029
7186
  body: string;
7030
7187
  editedAt?: Date | undefined;
@@ -7046,8 +7203,8 @@ declare const DesignSystemDump: z.ZodObject<{
7046
7203
  comments: {
7047
7204
  id: string;
7048
7205
  createdAt: Date;
7049
- authorId: string;
7050
7206
  threadId: string;
7207
+ authorId: string;
7051
7208
  roomId: string;
7052
7209
  body: string;
7053
7210
  editedAt?: Date | undefined;
@@ -7071,8 +7228,8 @@ declare const DesignSystemDump: z.ZodObject<{
7071
7228
  comments: {
7072
7229
  id: string;
7073
7230
  createdAt: Date;
7074
- authorId: string;
7075
7231
  threadId: string;
7232
+ authorId: string;
7076
7233
  roomId: string;
7077
7234
  body: string;
7078
7235
  editedAt?: Date | undefined;
@@ -7105,8 +7262,8 @@ declare const DesignSystemDump: z.ZodObject<{
7105
7262
  comments: {
7106
7263
  id: string;
7107
7264
  createdAt: Date;
7108
- authorId: string;
7109
7265
  threadId: string;
7266
+ authorId: string;
7110
7267
  roomId: string;
7111
7268
  body: string;
7112
7269
  editedAt?: Date | undefined;
@@ -7522,8 +7679,8 @@ declare const DesignSystemDump: z.ZodObject<{
7522
7679
  comments: {
7523
7680
  id: string;
7524
7681
  createdAt: Date;
7525
- authorId: string;
7526
7682
  threadId: string;
7683
+ authorId: string;
7527
7684
  roomId: string;
7528
7685
  body: string;
7529
7686
  editedAt?: Date | undefined;
@@ -7803,8 +7960,8 @@ declare const DesignSystemDump: z.ZodObject<{
7803
7960
  comments: {
7804
7961
  id: string;
7805
7962
  createdAt: Date;
7806
- authorId: string;
7807
7963
  threadId: string;
7964
+ authorId: string;
7808
7965
  roomId: string;
7809
7966
  body: string;
7810
7967
  editedAt?: Date | undefined;
@@ -8356,8 +8513,8 @@ declare const DesignSystemDump: z.ZodObject<{
8356
8513
  comments: {
8357
8514
  id: string;
8358
8515
  createdAt: Date;
8359
- authorId: string;
8360
8516
  threadId: string;
8517
+ authorId: string;
8361
8518
  roomId: string;
8362
8519
  body: string;
8363
8520
  editedAt?: Date | undefined;
@@ -8807,8 +8964,8 @@ declare const DesignSystemDump: z.ZodObject<{
8807
8964
  comments: {
8808
8965
  id: string;
8809
8966
  createdAt: Date;
8810
- authorId: string;
8811
8967
  threadId: string;
8968
+ authorId: string;
8812
8969
  roomId: string;
8813
8970
  body: string;
8814
8971
  editedAt?: Date | undefined;
@@ -8965,8 +9122,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
8965
9122
  }, "strip", z.ZodTypeAny, {
8966
9123
  id: string;
8967
9124
  createdAt: Date;
8968
- authorId: string;
8969
9125
  threadId: string;
9126
+ authorId: string;
8970
9127
  roomId: string;
8971
9128
  body: string;
8972
9129
  editedAt?: Date | undefined;
@@ -8974,8 +9131,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
8974
9131
  }, {
8975
9132
  id: string;
8976
9133
  createdAt: Date;
8977
- authorId: string;
8978
9134
  threadId: string;
9135
+ authorId: string;
8979
9136
  roomId: string;
8980
9137
  body: string;
8981
9138
  editedAt?: Date | undefined;
@@ -8985,8 +9142,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
8985
9142
  comments: {
8986
9143
  id: string;
8987
9144
  createdAt: Date;
8988
- authorId: string;
8989
9145
  threadId: string;
9146
+ authorId: string;
8990
9147
  roomId: string;
8991
9148
  body: string;
8992
9149
  editedAt?: Date | undefined;
@@ -9008,8 +9165,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
9008
9165
  comments: {
9009
9166
  id: string;
9010
9167
  createdAt: Date;
9011
- authorId: string;
9012
9168
  threadId: string;
9169
+ authorId: string;
9013
9170
  roomId: string;
9014
9171
  body: string;
9015
9172
  editedAt?: Date | undefined;
@@ -9033,8 +9190,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
9033
9190
  comments: {
9034
9191
  id: string;
9035
9192
  createdAt: Date;
9036
- authorId: string;
9037
9193
  threadId: string;
9194
+ authorId: string;
9038
9195
  roomId: string;
9039
9196
  body: string;
9040
9197
  editedAt?: Date | undefined;
@@ -9067,8 +9224,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
9067
9224
  comments: {
9068
9225
  id: string;
9069
9226
  createdAt: Date;
9070
- authorId: string;
9071
9227
  threadId: string;
9228
+ authorId: string;
9072
9229
  roomId: string;
9073
9230
  body: string;
9074
9231
  editedAt?: Date | undefined;
@@ -9103,8 +9260,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
9103
9260
  comments: {
9104
9261
  id: string;
9105
9262
  createdAt: Date;
9106
- authorId: string;
9107
9263
  threadId: string;
9264
+ authorId: string;
9108
9265
  roomId: string;
9109
9266
  body: string;
9110
9267
  editedAt?: Date | undefined;
@@ -9139,8 +9296,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
9139
9296
  comments: {
9140
9297
  id: string;
9141
9298
  createdAt: Date;
9142
- authorId: string;
9143
9299
  threadId: string;
9300
+ authorId: string;
9144
9301
  roomId: string;
9145
9302
  body: string;
9146
9303
  editedAt?: Date | undefined;
@@ -9217,8 +9374,8 @@ declare const DocumentationThreadDump: z.ZodObject<{
9217
9374
  }, "strip", z.ZodTypeAny, {
9218
9375
  id: string;
9219
9376
  createdAt: Date;
9220
- authorId: string;
9221
9377
  threadId: string;
9378
+ authorId: string;
9222
9379
  roomId: string;
9223
9380
  body: string;
9224
9381
  editedAt?: Date | undefined;
@@ -9226,8 +9383,8 @@ declare const DocumentationThreadDump: z.ZodObject<{
9226
9383
  }, {
9227
9384
  id: string;
9228
9385
  createdAt: Date;
9229
- authorId: string;
9230
9386
  threadId: string;
9387
+ authorId: string;
9231
9388
  roomId: string;
9232
9389
  body: string;
9233
9390
  editedAt?: Date | undefined;
@@ -9237,8 +9394,8 @@ declare const DocumentationThreadDump: z.ZodObject<{
9237
9394
  comments: {
9238
9395
  id: string;
9239
9396
  createdAt: Date;
9240
- authorId: string;
9241
9397
  threadId: string;
9398
+ authorId: string;
9242
9399
  roomId: string;
9243
9400
  body: string;
9244
9401
  editedAt?: Date | undefined;
@@ -9260,8 +9417,8 @@ declare const DocumentationThreadDump: z.ZodObject<{
9260
9417
  comments: {
9261
9418
  id: string;
9262
9419
  createdAt: Date;
9263
- authorId: string;
9264
9420
  threadId: string;
9421
+ authorId: string;
9265
9422
  roomId: string;
9266
9423
  body: string;
9267
9424
  editedAt?: Date | undefined;
@@ -9355,8 +9512,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
9355
9512
  }, "strip", z.ZodTypeAny, {
9356
9513
  id: string;
9357
9514
  createdAt: Date;
9358
- authorId: string;
9359
9515
  threadId: string;
9516
+ authorId: string;
9360
9517
  roomId: string;
9361
9518
  body: string;
9362
9519
  editedAt?: Date | undefined;
@@ -9364,8 +9521,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
9364
9521
  }, {
9365
9522
  id: string;
9366
9523
  createdAt: Date;
9367
- authorId: string;
9368
9524
  threadId: string;
9525
+ authorId: string;
9369
9526
  roomId: string;
9370
9527
  body: string;
9371
9528
  editedAt?: Date | undefined;
@@ -9375,8 +9532,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
9375
9532
  comments: {
9376
9533
  id: string;
9377
9534
  createdAt: Date;
9378
- authorId: string;
9379
9535
  threadId: string;
9536
+ authorId: string;
9380
9537
  roomId: string;
9381
9538
  body: string;
9382
9539
  editedAt?: Date | undefined;
@@ -9398,8 +9555,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
9398
9555
  comments: {
9399
9556
  id: string;
9400
9557
  createdAt: Date;
9401
- authorId: string;
9402
9558
  threadId: string;
9559
+ authorId: string;
9403
9560
  roomId: string;
9404
9561
  body: string;
9405
9562
  editedAt?: Date | undefined;
@@ -9423,8 +9580,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
9423
9580
  comments: {
9424
9581
  id: string;
9425
9582
  createdAt: Date;
9426
- authorId: string;
9427
9583
  threadId: string;
9584
+ authorId: string;
9428
9585
  roomId: string;
9429
9586
  body: string;
9430
9587
  editedAt?: Date | undefined;
@@ -9457,8 +9614,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
9457
9614
  comments: {
9458
9615
  id: string;
9459
9616
  createdAt: Date;
9460
- authorId: string;
9461
9617
  threadId: string;
9618
+ authorId: string;
9462
9619
  roomId: string;
9463
9620
  body: string;
9464
9621
  editedAt?: Date | undefined;
@@ -11003,8 +11160,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
11003
11160
  }, "strip", z.ZodTypeAny, {
11004
11161
  id: string;
11005
11162
  createdAt: Date;
11006
- authorId: string;
11007
11163
  threadId: string;
11164
+ authorId: string;
11008
11165
  roomId: string;
11009
11166
  body: string;
11010
11167
  editedAt?: Date | undefined;
@@ -11012,8 +11169,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
11012
11169
  }, {
11013
11170
  id: string;
11014
11171
  createdAt: Date;
11015
- authorId: string;
11016
11172
  threadId: string;
11173
+ authorId: string;
11017
11174
  roomId: string;
11018
11175
  body: string;
11019
11176
  editedAt?: Date | undefined;
@@ -11023,8 +11180,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
11023
11180
  comments: {
11024
11181
  id: string;
11025
11182
  createdAt: Date;
11026
- authorId: string;
11027
11183
  threadId: string;
11184
+ authorId: string;
11028
11185
  roomId: string;
11029
11186
  body: string;
11030
11187
  editedAt?: Date | undefined;
@@ -11046,8 +11203,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
11046
11203
  comments: {
11047
11204
  id: string;
11048
11205
  createdAt: Date;
11049
- authorId: string;
11050
11206
  threadId: string;
11207
+ authorId: string;
11051
11208
  roomId: string;
11052
11209
  body: string;
11053
11210
  editedAt?: Date | undefined;
@@ -11071,8 +11228,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
11071
11228
  comments: {
11072
11229
  id: string;
11073
11230
  createdAt: Date;
11074
- authorId: string;
11075
11231
  threadId: string;
11232
+ authorId: string;
11076
11233
  roomId: string;
11077
11234
  body: string;
11078
11235
  editedAt?: Date | undefined;
@@ -11105,8 +11262,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
11105
11262
  comments: {
11106
11263
  id: string;
11107
11264
  createdAt: Date;
11108
- authorId: string;
11109
11265
  threadId: string;
11266
+ authorId: string;
11110
11267
  roomId: string;
11111
11268
  body: string;
11112
11269
  editedAt?: Date | undefined;
@@ -11522,8 +11679,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
11522
11679
  comments: {
11523
11680
  id: string;
11524
11681
  createdAt: Date;
11525
- authorId: string;
11526
11682
  threadId: string;
11683
+ authorId: string;
11527
11684
  roomId: string;
11528
11685
  body: string;
11529
11686
  editedAt?: Date | undefined;
@@ -11803,8 +11960,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
11803
11960
  comments: {
11804
11961
  id: string;
11805
11962
  createdAt: Date;
11806
- authorId: string;
11807
11963
  threadId: string;
11964
+ authorId: string;
11808
11965
  roomId: string;
11809
11966
  body: string;
11810
11967
  editedAt?: Date | undefined;
@@ -12687,6 +12844,19 @@ declare const UserDump: z.ZodObject<{
12687
12844
  errorReason: string;
12688
12845
  max?: number | undefined;
12689
12846
  }>;
12847
+ designSystemFileSize: z.ZodObject<{
12848
+ max: z.ZodOptional<z.ZodNumber>;
12849
+ errorMessage: z.ZodString;
12850
+ errorReason: z.ZodString;
12851
+ }, "strip", z.ZodTypeAny, {
12852
+ errorMessage: string;
12853
+ errorReason: string;
12854
+ max?: number | undefined;
12855
+ }, {
12856
+ errorMessage: string;
12857
+ errorReason: string;
12858
+ max?: number | undefined;
12859
+ }>;
12690
12860
  }, "strip", z.ZodTypeAny, {
12691
12861
  analytics: {
12692
12862
  errorMessage: string;
@@ -12810,6 +12980,11 @@ declare const UserDump: z.ZodObject<{
12810
12980
  errorReason: string;
12811
12981
  enabled: boolean;
12812
12982
  };
12983
+ designSystemFileSize: {
12984
+ errorMessage: string;
12985
+ errorReason: string;
12986
+ max?: number | undefined;
12987
+ };
12813
12988
  }, {
12814
12989
  analytics: {
12815
12990
  errorMessage: string;
@@ -12933,6 +13108,11 @@ declare const UserDump: z.ZodObject<{
12933
13108
  errorReason: string;
12934
13109
  enabled: boolean;
12935
13110
  };
13111
+ designSystemFileSize: {
13112
+ errorMessage: string;
13113
+ errorReason: string;
13114
+ max?: number | undefined;
13115
+ };
12936
13116
  }>>;
12937
13117
  stripeProductDescription: z.ZodOptional<z.ZodString>;
12938
13118
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -13123,6 +13303,11 @@ declare const UserDump: z.ZodObject<{
13123
13303
  errorReason: string;
13124
13304
  enabled: boolean;
13125
13305
  };
13306
+ designSystemFileSize: {
13307
+ errorMessage: string;
13308
+ errorReason: string;
13309
+ max?: number | undefined;
13310
+ };
13126
13311
  } | undefined;
13127
13312
  stripeSubscriptionMainItemId?: string | undefined;
13128
13313
  currentPeriodStart?: string | undefined;
@@ -13280,6 +13465,11 @@ declare const UserDump: z.ZodObject<{
13280
13465
  errorReason: string;
13281
13466
  enabled: boolean;
13282
13467
  };
13468
+ designSystemFileSize: {
13469
+ errorMessage: string;
13470
+ errorReason: string;
13471
+ max?: number | undefined;
13472
+ };
13283
13473
  } | undefined;
13284
13474
  stripeSubscriptionMainItemId?: string | undefined;
13285
13475
  currentPeriodStart?: string | undefined;
@@ -13613,6 +13803,11 @@ declare const UserDump: z.ZodObject<{
13613
13803
  errorReason: string;
13614
13804
  enabled: boolean;
13615
13805
  };
13806
+ designSystemFileSize: {
13807
+ errorMessage: string;
13808
+ errorReason: string;
13809
+ max?: number | undefined;
13810
+ };
13616
13811
  } | undefined;
13617
13812
  stripeSubscriptionMainItemId?: string | undefined;
13618
13813
  currentPeriodStart?: string | undefined;
@@ -13835,6 +14030,11 @@ declare const UserDump: z.ZodObject<{
13835
14030
  errorReason: string;
13836
14031
  enabled: boolean;
13837
14032
  };
14033
+ designSystemFileSize: {
14034
+ errorMessage: string;
14035
+ errorReason: string;
14036
+ max?: number | undefined;
14037
+ };
13838
14038
  } | undefined;
13839
14039
  stripeSubscriptionMainItemId?: string | undefined;
13840
14040
  currentPeriodStart?: string | undefined;
@@ -16129,8 +16329,8 @@ declare const UserDump: z.ZodObject<{
16129
16329
  }, "strip", z.ZodTypeAny, {
16130
16330
  id: string;
16131
16331
  createdAt: Date;
16132
- authorId: string;
16133
16332
  threadId: string;
16333
+ authorId: string;
16134
16334
  roomId: string;
16135
16335
  body: string;
16136
16336
  editedAt?: Date | undefined;
@@ -16138,8 +16338,8 @@ declare const UserDump: z.ZodObject<{
16138
16338
  }, {
16139
16339
  id: string;
16140
16340
  createdAt: Date;
16141
- authorId: string;
16142
16341
  threadId: string;
16342
+ authorId: string;
16143
16343
  roomId: string;
16144
16344
  body: string;
16145
16345
  editedAt?: Date | undefined;
@@ -16149,8 +16349,8 @@ declare const UserDump: z.ZodObject<{
16149
16349
  comments: {
16150
16350
  id: string;
16151
16351
  createdAt: Date;
16152
- authorId: string;
16153
16352
  threadId: string;
16353
+ authorId: string;
16154
16354
  roomId: string;
16155
16355
  body: string;
16156
16356
  editedAt?: Date | undefined;
@@ -16172,8 +16372,8 @@ declare const UserDump: z.ZodObject<{
16172
16372
  comments: {
16173
16373
  id: string;
16174
16374
  createdAt: Date;
16175
- authorId: string;
16176
16375
  threadId: string;
16376
+ authorId: string;
16177
16377
  roomId: string;
16178
16378
  body: string;
16179
16379
  editedAt?: Date | undefined;
@@ -16197,8 +16397,8 @@ declare const UserDump: z.ZodObject<{
16197
16397
  comments: {
16198
16398
  id: string;
16199
16399
  createdAt: Date;
16200
- authorId: string;
16201
16400
  threadId: string;
16401
+ authorId: string;
16202
16402
  roomId: string;
16203
16403
  body: string;
16204
16404
  editedAt?: Date | undefined;
@@ -16231,8 +16431,8 @@ declare const UserDump: z.ZodObject<{
16231
16431
  comments: {
16232
16432
  id: string;
16233
16433
  createdAt: Date;
16234
- authorId: string;
16235
16434
  threadId: string;
16435
+ authorId: string;
16236
16436
  roomId: string;
16237
16437
  body: string;
16238
16438
  editedAt?: Date | undefined;
@@ -16648,8 +16848,8 @@ declare const UserDump: z.ZodObject<{
16648
16848
  comments: {
16649
16849
  id: string;
16650
16850
  createdAt: Date;
16651
- authorId: string;
16652
16851
  threadId: string;
16852
+ authorId: string;
16653
16853
  roomId: string;
16654
16854
  body: string;
16655
16855
  editedAt?: Date | undefined;
@@ -16929,8 +17129,8 @@ declare const UserDump: z.ZodObject<{
16929
17129
  comments: {
16930
17130
  id: string;
16931
17131
  createdAt: Date;
16932
- authorId: string;
16933
17132
  threadId: string;
17133
+ authorId: string;
16934
17134
  roomId: string;
16935
17135
  body: string;
16936
17136
  editedAt?: Date | undefined;
@@ -17482,8 +17682,8 @@ declare const UserDump: z.ZodObject<{
17482
17682
  comments: {
17483
17683
  id: string;
17484
17684
  createdAt: Date;
17485
- authorId: string;
17486
17685
  threadId: string;
17686
+ authorId: string;
17487
17687
  roomId: string;
17488
17688
  body: string;
17489
17689
  editedAt?: Date | undefined;
@@ -17933,8 +18133,8 @@ declare const UserDump: z.ZodObject<{
17933
18133
  comments: {
17934
18134
  id: string;
17935
18135
  createdAt: Date;
17936
- authorId: string;
17937
18136
  threadId: string;
18137
+ authorId: string;
17938
18138
  roomId: string;
17939
18139
  body: string;
17940
18140
  editedAt?: Date | undefined;
@@ -19629,8 +19829,8 @@ declare const UserDump: z.ZodObject<{
19629
19829
  }, "strip", z.ZodTypeAny, {
19630
19830
  id: string;
19631
19831
  name: string;
19632
- designSystemId: string;
19633
19832
  workspaceId: string;
19833
+ designSystemId: string;
19634
19834
  isEnabled: boolean;
19635
19835
  exporterId: string;
19636
19836
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -19714,8 +19914,8 @@ declare const UserDump: z.ZodObject<{
19714
19914
  }, {
19715
19915
  id: string;
19716
19916
  name: string;
19717
- designSystemId: string;
19718
19917
  workspaceId: string;
19918
+ designSystemId: string;
19719
19919
  isEnabled: boolean;
19720
19920
  exporterId: string;
19721
19921
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -20024,8 +20224,8 @@ declare const UserDump: z.ZodObject<{
20024
20224
  pipelines: {
20025
20225
  id: string;
20026
20226
  name: string;
20027
- designSystemId: string;
20028
20227
  workspaceId: string;
20228
+ designSystemId: string;
20029
20229
  isEnabled: boolean;
20030
20230
  exporterId: string;
20031
20231
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -20324,8 +20524,8 @@ declare const UserDump: z.ZodObject<{
20324
20524
  pipelines: {
20325
20525
  id: string;
20326
20526
  name: string;
20327
- designSystemId: string;
20328
20527
  workspaceId: string;
20528
+ designSystemId: string;
20329
20529
  isEnabled: boolean;
20330
20530
  exporterId: string;
20331
20531
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -20480,8 +20680,8 @@ declare const UserDump: z.ZodObject<{
20480
20680
  id: string;
20481
20681
  state: "Active" | "Inactive";
20482
20682
  createdAt: Date;
20483
- accessToken: string;
20484
20683
  userId: string;
20684
+ accessToken: string;
20485
20685
  integrationId: string;
20486
20686
  profile?: {
20487
20687
  type?: string | undefined;
@@ -20510,8 +20710,8 @@ declare const UserDump: z.ZodObject<{
20510
20710
  id: string;
20511
20711
  state: "Active" | "Inactive";
20512
20712
  createdAt: Date;
20513
- accessToken: string;
20514
20713
  userId: string;
20714
+ accessToken: string;
20515
20715
  integrationId: string;
20516
20716
  profile?: {
20517
20717
  type?: string | null | undefined;
@@ -20546,8 +20746,8 @@ declare const UserDump: z.ZodObject<{
20546
20746
  id: string;
20547
20747
  state: "Active" | "Inactive";
20548
20748
  createdAt: Date;
20549
- accessToken: string;
20550
20749
  userId: string;
20750
+ accessToken: string;
20551
20751
  integrationId: string;
20552
20752
  profile?: {
20553
20753
  type?: string | undefined;
@@ -20582,8 +20782,8 @@ declare const UserDump: z.ZodObject<{
20582
20782
  id: string;
20583
20783
  state: "Active" | "Inactive";
20584
20784
  createdAt: Date;
20585
- accessToken: string;
20586
20785
  userId: string;
20786
+ accessToken: string;
20587
20787
  integrationId: string;
20588
20788
  profile?: {
20589
20789
  type?: string | null | undefined;
@@ -20783,6 +20983,11 @@ declare const UserDump: z.ZodObject<{
20783
20983
  errorReason: string;
20784
20984
  enabled: boolean;
20785
20985
  };
20986
+ designSystemFileSize: {
20987
+ errorMessage: string;
20988
+ errorReason: string;
20989
+ max?: number | undefined;
20990
+ };
20786
20991
  } | undefined;
20787
20992
  stripeSubscriptionMainItemId?: string | undefined;
20788
20993
  currentPeriodStart?: string | undefined;
@@ -21193,8 +21398,8 @@ declare const UserDump: z.ZodObject<{
21193
21398
  comments: {
21194
21399
  id: string;
21195
21400
  createdAt: Date;
21196
- authorId: string;
21197
21401
  threadId: string;
21402
+ authorId: string;
21198
21403
  roomId: string;
21199
21404
  body: string;
21200
21405
  editedAt?: Date | undefined;
@@ -21485,8 +21690,8 @@ declare const UserDump: z.ZodObject<{
21485
21690
  pipelines: {
21486
21691
  id: string;
21487
21692
  name: string;
21488
- designSystemId: string;
21489
21693
  workspaceId: string;
21694
+ designSystemId: string;
21490
21695
  isEnabled: boolean;
21491
21696
  exporterId: string;
21492
21697
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -21585,8 +21790,8 @@ declare const UserDump: z.ZodObject<{
21585
21790
  id: string;
21586
21791
  state: "Active" | "Inactive";
21587
21792
  createdAt: Date;
21588
- accessToken: string;
21589
21793
  userId: string;
21794
+ accessToken: string;
21590
21795
  integrationId: string;
21591
21796
  profile?: {
21592
21797
  type?: string | undefined;
@@ -21786,6 +21991,11 @@ declare const UserDump: z.ZodObject<{
21786
21991
  errorReason: string;
21787
21992
  enabled: boolean;
21788
21993
  };
21994
+ designSystemFileSize: {
21995
+ errorMessage: string;
21996
+ errorReason: string;
21997
+ max?: number | undefined;
21998
+ };
21789
21999
  } | undefined;
21790
22000
  stripeSubscriptionMainItemId?: string | undefined;
21791
22001
  currentPeriodStart?: string | undefined;
@@ -22196,8 +22406,8 @@ declare const UserDump: z.ZodObject<{
22196
22406
  comments: {
22197
22407
  id: string;
22198
22408
  createdAt: Date;
22199
- authorId: string;
22200
22409
  threadId: string;
22410
+ authorId: string;
22201
22411
  roomId: string;
22202
22412
  body: string;
22203
22413
  editedAt?: Date | undefined;
@@ -22488,8 +22698,8 @@ declare const UserDump: z.ZodObject<{
22488
22698
  pipelines: {
22489
22699
  id: string;
22490
22700
  name: string;
22491
- designSystemId: string;
22492
22701
  workspaceId: string;
22702
+ designSystemId: string;
22493
22703
  isEnabled: boolean;
22494
22704
  exporterId: string;
22495
22705
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -22588,8 +22798,8 @@ declare const UserDump: z.ZodObject<{
22588
22798
  id: string;
22589
22799
  state: "Active" | "Inactive";
22590
22800
  createdAt: Date;
22591
- accessToken: string;
22592
22801
  userId: string;
22802
+ accessToken: string;
22593
22803
  integrationId: string;
22594
22804
  profile?: {
22595
22805
  type?: string | null | undefined;
@@ -22791,6 +23001,11 @@ declare const UserDump: z.ZodObject<{
22791
23001
  errorReason: string;
22792
23002
  enabled: boolean;
22793
23003
  };
23004
+ designSystemFileSize: {
23005
+ errorMessage: string;
23006
+ errorReason: string;
23007
+ max?: number | undefined;
23008
+ };
22794
23009
  } | undefined;
22795
23010
  stripeSubscriptionMainItemId?: string | undefined;
22796
23011
  currentPeriodStart?: string | undefined;
@@ -23194,8 +23409,8 @@ declare const UserDump: z.ZodObject<{
23194
23409
  comments: {
23195
23410
  id: string;
23196
23411
  createdAt: Date;
23197
- authorId: string;
23198
23412
  threadId: string;
23413
+ authorId: string;
23199
23414
  roomId: string;
23200
23415
  body: string;
23201
23416
  editedAt?: Date | undefined;
@@ -23486,8 +23701,8 @@ declare const UserDump: z.ZodObject<{
23486
23701
  pipelines: {
23487
23702
  id: string;
23488
23703
  name: string;
23489
- designSystemId: string;
23490
23704
  workspaceId: string;
23705
+ designSystemId: string;
23491
23706
  isEnabled: boolean;
23492
23707
  exporterId: string;
23493
23708
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -23586,8 +23801,8 @@ declare const UserDump: z.ZodObject<{
23586
23801
  id: string;
23587
23802
  state: "Active" | "Inactive";
23588
23803
  createdAt: Date;
23589
- accessToken: string;
23590
23804
  userId: string;
23805
+ accessToken: string;
23591
23806
  integrationId: string;
23592
23807
  profile?: {
23593
23808
  type?: string | undefined;
@@ -23826,6 +24041,11 @@ declare const UserDump: z.ZodObject<{
23826
24041
  errorReason: string;
23827
24042
  enabled: boolean;
23828
24043
  };
24044
+ designSystemFileSize: {
24045
+ errorMessage: string;
24046
+ errorReason: string;
24047
+ max?: number | undefined;
24048
+ };
23829
24049
  } | undefined;
23830
24050
  stripeSubscriptionMainItemId?: string | undefined;
23831
24051
  currentPeriodStart?: string | undefined;
@@ -24229,8 +24449,8 @@ declare const UserDump: z.ZodObject<{
24229
24449
  comments: {
24230
24450
  id: string;
24231
24451
  createdAt: Date;
24232
- authorId: string;
24233
24452
  threadId: string;
24453
+ authorId: string;
24234
24454
  roomId: string;
24235
24455
  body: string;
24236
24456
  editedAt?: Date | undefined;
@@ -24521,8 +24741,8 @@ declare const UserDump: z.ZodObject<{
24521
24741
  pipelines: {
24522
24742
  id: string;
24523
24743
  name: string;
24524
- designSystemId: string;
24525
24744
  workspaceId: string;
24745
+ designSystemId: string;
24526
24746
  isEnabled: boolean;
24527
24747
  exporterId: string;
24528
24748
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -24621,8 +24841,8 @@ declare const UserDump: z.ZodObject<{
24621
24841
  id: string;
24622
24842
  state: "Active" | "Inactive";
24623
24843
  createdAt: Date;
24624
- accessToken: string;
24625
24844
  userId: string;
24845
+ accessToken: string;
24626
24846
  integrationId: string;
24627
24847
  profile?: {
24628
24848
  type?: string | null | undefined;
@@ -25128,6 +25348,19 @@ declare const WorkspaceDump: z.ZodObject<{
25128
25348
  errorReason: string;
25129
25349
  max?: number | undefined;
25130
25350
  }>;
25351
+ designSystemFileSize: z.ZodObject<{
25352
+ max: z.ZodOptional<z.ZodNumber>;
25353
+ errorMessage: z.ZodString;
25354
+ errorReason: z.ZodString;
25355
+ }, "strip", z.ZodTypeAny, {
25356
+ errorMessage: string;
25357
+ errorReason: string;
25358
+ max?: number | undefined;
25359
+ }, {
25360
+ errorMessage: string;
25361
+ errorReason: string;
25362
+ max?: number | undefined;
25363
+ }>;
25131
25364
  }, "strip", z.ZodTypeAny, {
25132
25365
  analytics: {
25133
25366
  errorMessage: string;
@@ -25251,6 +25484,11 @@ declare const WorkspaceDump: z.ZodObject<{
25251
25484
  errorReason: string;
25252
25485
  enabled: boolean;
25253
25486
  };
25487
+ designSystemFileSize: {
25488
+ errorMessage: string;
25489
+ errorReason: string;
25490
+ max?: number | undefined;
25491
+ };
25254
25492
  }, {
25255
25493
  analytics: {
25256
25494
  errorMessage: string;
@@ -25374,6 +25612,11 @@ declare const WorkspaceDump: z.ZodObject<{
25374
25612
  errorReason: string;
25375
25613
  enabled: boolean;
25376
25614
  };
25615
+ designSystemFileSize: {
25616
+ errorMessage: string;
25617
+ errorReason: string;
25618
+ max?: number | undefined;
25619
+ };
25377
25620
  }>>;
25378
25621
  stripeProductDescription: z.ZodOptional<z.ZodString>;
25379
25622
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -25564,6 +25807,11 @@ declare const WorkspaceDump: z.ZodObject<{
25564
25807
  errorReason: string;
25565
25808
  enabled: boolean;
25566
25809
  };
25810
+ designSystemFileSize: {
25811
+ errorMessage: string;
25812
+ errorReason: string;
25813
+ max?: number | undefined;
25814
+ };
25567
25815
  } | undefined;
25568
25816
  stripeSubscriptionMainItemId?: string | undefined;
25569
25817
  currentPeriodStart?: string | undefined;
@@ -25721,6 +25969,11 @@ declare const WorkspaceDump: z.ZodObject<{
25721
25969
  errorReason: string;
25722
25970
  enabled: boolean;
25723
25971
  };
25972
+ designSystemFileSize: {
25973
+ errorMessage: string;
25974
+ errorReason: string;
25975
+ max?: number | undefined;
25976
+ };
25724
25977
  } | undefined;
25725
25978
  stripeSubscriptionMainItemId?: string | undefined;
25726
25979
  currentPeriodStart?: string | undefined;
@@ -26054,6 +26307,11 @@ declare const WorkspaceDump: z.ZodObject<{
26054
26307
  errorReason: string;
26055
26308
  enabled: boolean;
26056
26309
  };
26310
+ designSystemFileSize: {
26311
+ errorMessage: string;
26312
+ errorReason: string;
26313
+ max?: number | undefined;
26314
+ };
26057
26315
  } | undefined;
26058
26316
  stripeSubscriptionMainItemId?: string | undefined;
26059
26317
  currentPeriodStart?: string | undefined;
@@ -26276,6 +26534,11 @@ declare const WorkspaceDump: z.ZodObject<{
26276
26534
  errorReason: string;
26277
26535
  enabled: boolean;
26278
26536
  };
26537
+ designSystemFileSize: {
26538
+ errorMessage: string;
26539
+ errorReason: string;
26540
+ max?: number | undefined;
26541
+ };
26279
26542
  } | undefined;
26280
26543
  stripeSubscriptionMainItemId?: string | undefined;
26281
26544
  currentPeriodStart?: string | undefined;
@@ -28570,8 +28833,8 @@ declare const WorkspaceDump: z.ZodObject<{
28570
28833
  }, "strip", z.ZodTypeAny, {
28571
28834
  id: string;
28572
28835
  createdAt: Date;
28573
- authorId: string;
28574
28836
  threadId: string;
28837
+ authorId: string;
28575
28838
  roomId: string;
28576
28839
  body: string;
28577
28840
  editedAt?: Date | undefined;
@@ -28579,8 +28842,8 @@ declare const WorkspaceDump: z.ZodObject<{
28579
28842
  }, {
28580
28843
  id: string;
28581
28844
  createdAt: Date;
28582
- authorId: string;
28583
28845
  threadId: string;
28846
+ authorId: string;
28584
28847
  roomId: string;
28585
28848
  body: string;
28586
28849
  editedAt?: Date | undefined;
@@ -28590,8 +28853,8 @@ declare const WorkspaceDump: z.ZodObject<{
28590
28853
  comments: {
28591
28854
  id: string;
28592
28855
  createdAt: Date;
28593
- authorId: string;
28594
28856
  threadId: string;
28857
+ authorId: string;
28595
28858
  roomId: string;
28596
28859
  body: string;
28597
28860
  editedAt?: Date | undefined;
@@ -28613,8 +28876,8 @@ declare const WorkspaceDump: z.ZodObject<{
28613
28876
  comments: {
28614
28877
  id: string;
28615
28878
  createdAt: Date;
28616
- authorId: string;
28617
28879
  threadId: string;
28880
+ authorId: string;
28618
28881
  roomId: string;
28619
28882
  body: string;
28620
28883
  editedAt?: Date | undefined;
@@ -28638,8 +28901,8 @@ declare const WorkspaceDump: z.ZodObject<{
28638
28901
  comments: {
28639
28902
  id: string;
28640
28903
  createdAt: Date;
28641
- authorId: string;
28642
28904
  threadId: string;
28905
+ authorId: string;
28643
28906
  roomId: string;
28644
28907
  body: string;
28645
28908
  editedAt?: Date | undefined;
@@ -28672,8 +28935,8 @@ declare const WorkspaceDump: z.ZodObject<{
28672
28935
  comments: {
28673
28936
  id: string;
28674
28937
  createdAt: Date;
28675
- authorId: string;
28676
28938
  threadId: string;
28939
+ authorId: string;
28677
28940
  roomId: string;
28678
28941
  body: string;
28679
28942
  editedAt?: Date | undefined;
@@ -29089,8 +29352,8 @@ declare const WorkspaceDump: z.ZodObject<{
29089
29352
  comments: {
29090
29353
  id: string;
29091
29354
  createdAt: Date;
29092
- authorId: string;
29093
29355
  threadId: string;
29356
+ authorId: string;
29094
29357
  roomId: string;
29095
29358
  body: string;
29096
29359
  editedAt?: Date | undefined;
@@ -29370,8 +29633,8 @@ declare const WorkspaceDump: z.ZodObject<{
29370
29633
  comments: {
29371
29634
  id: string;
29372
29635
  createdAt: Date;
29373
- authorId: string;
29374
29636
  threadId: string;
29637
+ authorId: string;
29375
29638
  roomId: string;
29376
29639
  body: string;
29377
29640
  editedAt?: Date | undefined;
@@ -29923,8 +30186,8 @@ declare const WorkspaceDump: z.ZodObject<{
29923
30186
  comments: {
29924
30187
  id: string;
29925
30188
  createdAt: Date;
29926
- authorId: string;
29927
30189
  threadId: string;
30190
+ authorId: string;
29928
30191
  roomId: string;
29929
30192
  body: string;
29930
30193
  editedAt?: Date | undefined;
@@ -30374,8 +30637,8 @@ declare const WorkspaceDump: z.ZodObject<{
30374
30637
  comments: {
30375
30638
  id: string;
30376
30639
  createdAt: Date;
30377
- authorId: string;
30378
30640
  threadId: string;
30641
+ authorId: string;
30379
30642
  roomId: string;
30380
30643
  body: string;
30381
30644
  editedAt?: Date | undefined;
@@ -32070,8 +32333,8 @@ declare const WorkspaceDump: z.ZodObject<{
32070
32333
  }, "strip", z.ZodTypeAny, {
32071
32334
  id: string;
32072
32335
  name: string;
32073
- designSystemId: string;
32074
32336
  workspaceId: string;
32337
+ designSystemId: string;
32075
32338
  isEnabled: boolean;
32076
32339
  exporterId: string;
32077
32340
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -32155,8 +32418,8 @@ declare const WorkspaceDump: z.ZodObject<{
32155
32418
  }, {
32156
32419
  id: string;
32157
32420
  name: string;
32158
- designSystemId: string;
32159
32421
  workspaceId: string;
32422
+ designSystemId: string;
32160
32423
  isEnabled: boolean;
32161
32424
  exporterId: string;
32162
32425
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -32465,8 +32728,8 @@ declare const WorkspaceDump: z.ZodObject<{
32465
32728
  pipelines: {
32466
32729
  id: string;
32467
32730
  name: string;
32468
- designSystemId: string;
32469
32731
  workspaceId: string;
32732
+ designSystemId: string;
32470
32733
  isEnabled: boolean;
32471
32734
  exporterId: string;
32472
32735
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -32765,8 +33028,8 @@ declare const WorkspaceDump: z.ZodObject<{
32765
33028
  pipelines: {
32766
33029
  id: string;
32767
33030
  name: string;
32768
- designSystemId: string;
32769
33031
  workspaceId: string;
33032
+ designSystemId: string;
32770
33033
  isEnabled: boolean;
32771
33034
  exporterId: string;
32772
33035
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -32921,8 +33184,8 @@ declare const WorkspaceDump: z.ZodObject<{
32921
33184
  id: string;
32922
33185
  state: "Active" | "Inactive";
32923
33186
  createdAt: Date;
32924
- accessToken: string;
32925
33187
  userId: string;
33188
+ accessToken: string;
32926
33189
  integrationId: string;
32927
33190
  profile?: {
32928
33191
  type?: string | undefined;
@@ -32951,8 +33214,8 @@ declare const WorkspaceDump: z.ZodObject<{
32951
33214
  id: string;
32952
33215
  state: "Active" | "Inactive";
32953
33216
  createdAt: Date;
32954
- accessToken: string;
32955
33217
  userId: string;
33218
+ accessToken: string;
32956
33219
  integrationId: string;
32957
33220
  profile?: {
32958
33221
  type?: string | null | undefined;
@@ -32987,8 +33250,8 @@ declare const WorkspaceDump: z.ZodObject<{
32987
33250
  id: string;
32988
33251
  state: "Active" | "Inactive";
32989
33252
  createdAt: Date;
32990
- accessToken: string;
32991
33253
  userId: string;
33254
+ accessToken: string;
32992
33255
  integrationId: string;
32993
33256
  profile?: {
32994
33257
  type?: string | undefined;
@@ -33023,8 +33286,8 @@ declare const WorkspaceDump: z.ZodObject<{
33023
33286
  id: string;
33024
33287
  state: "Active" | "Inactive";
33025
33288
  createdAt: Date;
33026
- accessToken: string;
33027
33289
  userId: string;
33290
+ accessToken: string;
33028
33291
  integrationId: string;
33029
33292
  profile?: {
33030
33293
  type?: string | null | undefined;
@@ -33224,6 +33487,11 @@ declare const WorkspaceDump: z.ZodObject<{
33224
33487
  errorReason: string;
33225
33488
  enabled: boolean;
33226
33489
  };
33490
+ designSystemFileSize: {
33491
+ errorMessage: string;
33492
+ errorReason: string;
33493
+ max?: number | undefined;
33494
+ };
33227
33495
  } | undefined;
33228
33496
  stripeSubscriptionMainItemId?: string | undefined;
33229
33497
  currentPeriodStart?: string | undefined;
@@ -33634,8 +33902,8 @@ declare const WorkspaceDump: z.ZodObject<{
33634
33902
  comments: {
33635
33903
  id: string;
33636
33904
  createdAt: Date;
33637
- authorId: string;
33638
33905
  threadId: string;
33906
+ authorId: string;
33639
33907
  roomId: string;
33640
33908
  body: string;
33641
33909
  editedAt?: Date | undefined;
@@ -33926,8 +34194,8 @@ declare const WorkspaceDump: z.ZodObject<{
33926
34194
  pipelines: {
33927
34195
  id: string;
33928
34196
  name: string;
33929
- designSystemId: string;
33930
34197
  workspaceId: string;
34198
+ designSystemId: string;
33931
34199
  isEnabled: boolean;
33932
34200
  exporterId: string;
33933
34201
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -34026,8 +34294,8 @@ declare const WorkspaceDump: z.ZodObject<{
34026
34294
  id: string;
34027
34295
  state: "Active" | "Inactive";
34028
34296
  createdAt: Date;
34029
- accessToken: string;
34030
34297
  userId: string;
34298
+ accessToken: string;
34031
34299
  integrationId: string;
34032
34300
  profile?: {
34033
34301
  type?: string | undefined;
@@ -34227,6 +34495,11 @@ declare const WorkspaceDump: z.ZodObject<{
34227
34495
  errorReason: string;
34228
34496
  enabled: boolean;
34229
34497
  };
34498
+ designSystemFileSize: {
34499
+ errorMessage: string;
34500
+ errorReason: string;
34501
+ max?: number | undefined;
34502
+ };
34230
34503
  } | undefined;
34231
34504
  stripeSubscriptionMainItemId?: string | undefined;
34232
34505
  currentPeriodStart?: string | undefined;
@@ -34637,8 +34910,8 @@ declare const WorkspaceDump: z.ZodObject<{
34637
34910
  comments: {
34638
34911
  id: string;
34639
34912
  createdAt: Date;
34640
- authorId: string;
34641
34913
  threadId: string;
34914
+ authorId: string;
34642
34915
  roomId: string;
34643
34916
  body: string;
34644
34917
  editedAt?: Date | undefined;
@@ -34929,8 +35202,8 @@ declare const WorkspaceDump: z.ZodObject<{
34929
35202
  pipelines: {
34930
35203
  id: string;
34931
35204
  name: string;
34932
- designSystemId: string;
34933
35205
  workspaceId: string;
35206
+ designSystemId: string;
34934
35207
  isEnabled: boolean;
34935
35208
  exporterId: string;
34936
35209
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -35029,8 +35302,8 @@ declare const WorkspaceDump: z.ZodObject<{
35029
35302
  id: string;
35030
35303
  state: "Active" | "Inactive";
35031
35304
  createdAt: Date;
35032
- accessToken: string;
35033
35305
  userId: string;
35306
+ accessToken: string;
35034
35307
  integrationId: string;
35035
35308
  profile?: {
35036
35309
  type?: string | null | undefined;
@@ -41956,8 +42229,8 @@ declare const DocumentationComment: z.ZodObject<{
41956
42229
  }, "strip", z.ZodTypeAny, {
41957
42230
  id: string;
41958
42231
  createdAt: Date;
41959
- authorId: string;
41960
42232
  threadId: string;
42233
+ authorId: string;
41961
42234
  roomId: string;
41962
42235
  body: string;
41963
42236
  editedAt?: Date | undefined;
@@ -41965,8 +42238,8 @@ declare const DocumentationComment: z.ZodObject<{
41965
42238
  }, {
41966
42239
  id: string;
41967
42240
  createdAt: Date;
41968
- authorId: string;
41969
42241
  threadId: string;
42242
+ authorId: string;
41970
42243
  roomId: string;
41971
42244
  body: string;
41972
42245
  editedAt?: Date | undefined;
@@ -141841,24 +142114,24 @@ declare const UpdateMembershipRolesInput: z.ZodObject<{
141841
142114
  role: z.ZodNativeEnum<z.Values<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
141842
142115
  isPrimaryOwner: z.ZodOptional<z.ZodBoolean>;
141843
142116
  }, "strip", z.ZodTypeAny, {
141844
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
141845
142117
  userId: string;
142118
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
141846
142119
  isPrimaryOwner?: boolean | undefined;
141847
142120
  }, {
141848
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
141849
142121
  userId: string;
142122
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
141850
142123
  isPrimaryOwner?: boolean | undefined;
141851
142124
  }>, "many">;
141852
142125
  }, "strip", z.ZodTypeAny, {
141853
142126
  members: {
141854
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
141855
142127
  userId: string;
142128
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
141856
142129
  isPrimaryOwner?: boolean | undefined;
141857
142130
  }[];
141858
142131
  }, {
141859
142132
  members: {
141860
- role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
141861
142133
  userId: string;
142134
+ role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
141862
142135
  isPrimaryOwner?: boolean | undefined;
141863
142136
  }[];
141864
142137
  }>;
@@ -142574,6 +142847,19 @@ declare const Workspace: z.ZodObject<{
142574
142847
  errorReason: string;
142575
142848
  max?: number | undefined;
142576
142849
  }>;
142850
+ designSystemFileSize: z.ZodObject<{
142851
+ max: z.ZodOptional<z.ZodNumber>;
142852
+ errorMessage: z.ZodString;
142853
+ errorReason: z.ZodString;
142854
+ }, "strip", z.ZodTypeAny, {
142855
+ errorMessage: string;
142856
+ errorReason: string;
142857
+ max?: number | undefined;
142858
+ }, {
142859
+ errorMessage: string;
142860
+ errorReason: string;
142861
+ max?: number | undefined;
142862
+ }>;
142577
142863
  }, "strip", z.ZodTypeAny, {
142578
142864
  analytics: {
142579
142865
  errorMessage: string;
@@ -142697,6 +142983,11 @@ declare const Workspace: z.ZodObject<{
142697
142983
  errorReason: string;
142698
142984
  enabled: boolean;
142699
142985
  };
142986
+ designSystemFileSize: {
142987
+ errorMessage: string;
142988
+ errorReason: string;
142989
+ max?: number | undefined;
142990
+ };
142700
142991
  }, {
142701
142992
  analytics: {
142702
142993
  errorMessage: string;
@@ -142820,6 +143111,11 @@ declare const Workspace: z.ZodObject<{
142820
143111
  errorReason: string;
142821
143112
  enabled: boolean;
142822
143113
  };
143114
+ designSystemFileSize: {
143115
+ errorMessage: string;
143116
+ errorReason: string;
143117
+ max?: number | undefined;
143118
+ };
142823
143119
  }>>;
142824
143120
  stripeProductDescription: z.ZodOptional<z.ZodString>;
142825
143121
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -143010,6 +143306,11 @@ declare const Workspace: z.ZodObject<{
143010
143306
  errorReason: string;
143011
143307
  enabled: boolean;
143012
143308
  };
143309
+ designSystemFileSize: {
143310
+ errorMessage: string;
143311
+ errorReason: string;
143312
+ max?: number | undefined;
143313
+ };
143013
143314
  } | undefined;
143014
143315
  stripeSubscriptionMainItemId?: string | undefined;
143015
143316
  currentPeriodStart?: string | undefined;
@@ -143167,6 +143468,11 @@ declare const Workspace: z.ZodObject<{
143167
143468
  errorReason: string;
143168
143469
  enabled: boolean;
143169
143470
  };
143471
+ designSystemFileSize: {
143472
+ errorMessage: string;
143473
+ errorReason: string;
143474
+ max?: number | undefined;
143475
+ };
143170
143476
  } | undefined;
143171
143477
  stripeSubscriptionMainItemId?: string | undefined;
143172
143478
  currentPeriodStart?: string | undefined;
@@ -143500,6 +143806,11 @@ declare const Workspace: z.ZodObject<{
143500
143806
  errorReason: string;
143501
143807
  enabled: boolean;
143502
143808
  };
143809
+ designSystemFileSize: {
143810
+ errorMessage: string;
143811
+ errorReason: string;
143812
+ max?: number | undefined;
143813
+ };
143503
143814
  } | undefined;
143504
143815
  stripeSubscriptionMainItemId?: string | undefined;
143505
143816
  currentPeriodStart?: string | undefined;
@@ -143722,6 +144033,11 @@ declare const Workspace: z.ZodObject<{
143722
144033
  errorReason: string;
143723
144034
  enabled: boolean;
143724
144035
  };
144036
+ designSystemFileSize: {
144037
+ errorMessage: string;
144038
+ errorReason: string;
144039
+ max?: number | undefined;
144040
+ };
143725
144041
  } | undefined;
143726
144042
  stripeSubscriptionMainItemId?: string | undefined;
143727
144043
  currentPeriodStart?: string | undefined;
@@ -144212,6 +144528,19 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
144212
144528
  errorReason: string;
144213
144529
  max?: number | undefined;
144214
144530
  }>;
144531
+ designSystemFileSize: z.ZodObject<{
144532
+ max: z.ZodOptional<z.ZodNumber>;
144533
+ errorMessage: z.ZodString;
144534
+ errorReason: z.ZodString;
144535
+ }, "strip", z.ZodTypeAny, {
144536
+ errorMessage: string;
144537
+ errorReason: string;
144538
+ max?: number | undefined;
144539
+ }, {
144540
+ errorMessage: string;
144541
+ errorReason: string;
144542
+ max?: number | undefined;
144543
+ }>;
144215
144544
  }, "strip", z.ZodTypeAny, {
144216
144545
  analytics: {
144217
144546
  errorMessage: string;
@@ -144335,6 +144664,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
144335
144664
  errorReason: string;
144336
144665
  enabled: boolean;
144337
144666
  };
144667
+ designSystemFileSize: {
144668
+ errorMessage: string;
144669
+ errorReason: string;
144670
+ max?: number | undefined;
144671
+ };
144338
144672
  }, {
144339
144673
  analytics: {
144340
144674
  errorMessage: string;
@@ -144458,6 +144792,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
144458
144792
  errorReason: string;
144459
144793
  enabled: boolean;
144460
144794
  };
144795
+ designSystemFileSize: {
144796
+ errorMessage: string;
144797
+ errorReason: string;
144798
+ max?: number | undefined;
144799
+ };
144461
144800
  }>>;
144462
144801
  stripeProductDescription: z.ZodOptional<z.ZodString>;
144463
144802
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -144648,6 +144987,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
144648
144987
  errorReason: string;
144649
144988
  enabled: boolean;
144650
144989
  };
144990
+ designSystemFileSize: {
144991
+ errorMessage: string;
144992
+ errorReason: string;
144993
+ max?: number | undefined;
144994
+ };
144651
144995
  } | undefined;
144652
144996
  stripeSubscriptionMainItemId?: string | undefined;
144653
144997
  currentPeriodStart?: string | undefined;
@@ -144805,6 +145149,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
144805
145149
  errorReason: string;
144806
145150
  enabled: boolean;
144807
145151
  };
145152
+ designSystemFileSize: {
145153
+ errorMessage: string;
145154
+ errorReason: string;
145155
+ max?: number | undefined;
145156
+ };
144808
145157
  } | undefined;
144809
145158
  stripeSubscriptionMainItemId?: string | undefined;
144810
145159
  currentPeriodStart?: string | undefined;
@@ -145138,6 +145487,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
145138
145487
  errorReason: string;
145139
145488
  enabled: boolean;
145140
145489
  };
145490
+ designSystemFileSize: {
145491
+ errorMessage: string;
145492
+ errorReason: string;
145493
+ max?: number | undefined;
145494
+ };
145141
145495
  } | undefined;
145142
145496
  stripeSubscriptionMainItemId?: string | undefined;
145143
145497
  currentPeriodStart?: string | undefined;
@@ -145360,6 +145714,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
145360
145714
  errorReason: string;
145361
145715
  enabled: boolean;
145362
145716
  };
145717
+ designSystemFileSize: {
145718
+ errorMessage: string;
145719
+ errorReason: string;
145720
+ max?: number | undefined;
145721
+ };
145363
145722
  } | undefined;
145364
145723
  stripeSubscriptionMainItemId?: string | undefined;
145365
145724
  currentPeriodStart?: string | undefined;
@@ -145660,6 +146019,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
145660
146019
  errorReason: string;
145661
146020
  enabled: boolean;
145662
146021
  };
146022
+ designSystemFileSize: {
146023
+ errorMessage: string;
146024
+ errorReason: string;
146025
+ max?: number | undefined;
146026
+ };
145663
146027
  } | undefined;
145664
146028
  stripeSubscriptionMainItemId?: string | undefined;
145665
146029
  currentPeriodStart?: string | undefined;
@@ -145907,6 +146271,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
145907
146271
  errorReason: string;
145908
146272
  enabled: boolean;
145909
146273
  };
146274
+ designSystemFileSize: {
146275
+ errorMessage: string;
146276
+ errorReason: string;
146277
+ max?: number | undefined;
146278
+ };
145910
146279
  } | undefined;
145911
146280
  stripeSubscriptionMainItemId?: string | undefined;
145912
146281
  currentPeriodStart?: string | undefined;
@@ -145992,15 +146361,15 @@ declare const DesignSystemMembership: z.ZodObject<{
145992
146361
  workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
145993
146362
  }, "strip", z.ZodTypeAny, {
145994
146363
  id: string;
145995
- designSystemId: string;
145996
146364
  userId: string;
146365
+ designSystemId: string;
145997
146366
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
145998
146367
  workspaceMembershipId: string;
145999
146368
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
146000
146369
  }, {
146001
146370
  id: string;
146002
- designSystemId: string;
146003
146371
  userId: string;
146372
+ designSystemId: string;
146004
146373
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
146005
146374
  workspaceMembershipId: string;
146006
146375
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
@@ -146032,15 +146401,15 @@ declare const DesignSystemMembers: z.ZodObject<{
146032
146401
  workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
146033
146402
  }, "strip", z.ZodTypeAny, {
146034
146403
  id: string;
146035
- designSystemId: string;
146036
146404
  userId: string;
146405
+ designSystemId: string;
146037
146406
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
146038
146407
  workspaceMembershipId: string;
146039
146408
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
146040
146409
  }, {
146041
146410
  id: string;
146042
- designSystemId: string;
146043
146411
  userId: string;
146412
+ designSystemId: string;
146044
146413
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
146045
146414
  workspaceMembershipId: string;
146046
146415
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
@@ -146074,8 +146443,8 @@ declare const DesignSystemMembers: z.ZodObject<{
146074
146443
  }[];
146075
146444
  members: {
146076
146445
  id: string;
146077
- designSystemId: string;
146078
146446
  userId: string;
146447
+ designSystemId: string;
146079
146448
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
146080
146449
  workspaceMembershipId: string;
146081
146450
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
@@ -146090,8 +146459,8 @@ declare const DesignSystemMembers: z.ZodObject<{
146090
146459
  }[];
146091
146460
  members: {
146092
146461
  id: string;
146093
- designSystemId: string;
146094
146462
  userId: string;
146463
+ designSystemId: string;
146095
146464
  workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
146096
146465
  workspaceMembershipId: string;
146097
146466
  designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
@@ -149705,6 +150074,19 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
149705
150074
  errorReason: string;
149706
150075
  max?: number | undefined;
149707
150076
  }>;
150077
+ designSystemFileSize: z.ZodObject<{
150078
+ max: z.ZodOptional<z.ZodNumber>;
150079
+ errorMessage: z.ZodString;
150080
+ errorReason: z.ZodString;
150081
+ }, "strip", z.ZodTypeAny, {
150082
+ errorMessage: string;
150083
+ errorReason: string;
150084
+ max?: number | undefined;
150085
+ }, {
150086
+ errorMessage: string;
150087
+ errorReason: string;
150088
+ max?: number | undefined;
150089
+ }>;
149708
150090
  }, "strip", z.ZodTypeAny, {
149709
150091
  analytics: {
149710
150092
  errorMessage: string;
@@ -149828,6 +150210,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
149828
150210
  errorReason: string;
149829
150211
  enabled: boolean;
149830
150212
  };
150213
+ designSystemFileSize: {
150214
+ errorMessage: string;
150215
+ errorReason: string;
150216
+ max?: number | undefined;
150217
+ };
149831
150218
  }, {
149832
150219
  analytics: {
149833
150220
  errorMessage: string;
@@ -149951,6 +150338,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
149951
150338
  errorReason: string;
149952
150339
  enabled: boolean;
149953
150340
  };
150341
+ designSystemFileSize: {
150342
+ errorMessage: string;
150343
+ errorReason: string;
150344
+ max?: number | undefined;
150345
+ };
149954
150346
  }>>;
149955
150347
  stripeProductDescription: z.ZodOptional<z.ZodString>;
149956
150348
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -150141,6 +150533,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
150141
150533
  errorReason: string;
150142
150534
  enabled: boolean;
150143
150535
  };
150536
+ designSystemFileSize: {
150537
+ errorMessage: string;
150538
+ errorReason: string;
150539
+ max?: number | undefined;
150540
+ };
150144
150541
  } | undefined;
150145
150542
  stripeSubscriptionMainItemId?: string | undefined;
150146
150543
  currentPeriodStart?: string | undefined;
@@ -150298,6 +150695,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
150298
150695
  errorReason: string;
150299
150696
  enabled: boolean;
150300
150697
  };
150698
+ designSystemFileSize: {
150699
+ errorMessage: string;
150700
+ errorReason: string;
150701
+ max?: number | undefined;
150702
+ };
150301
150703
  } | undefined;
150302
150704
  stripeSubscriptionMainItemId?: string | undefined;
150303
150705
  currentPeriodStart?: string | undefined;
@@ -150631,6 +151033,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
150631
151033
  errorReason: string;
150632
151034
  enabled: boolean;
150633
151035
  };
151036
+ designSystemFileSize: {
151037
+ errorMessage: string;
151038
+ errorReason: string;
151039
+ max?: number | undefined;
151040
+ };
150634
151041
  } | undefined;
150635
151042
  stripeSubscriptionMainItemId?: string | undefined;
150636
151043
  currentPeriodStart?: string | undefined;
@@ -150853,6 +151260,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
150853
151260
  errorReason: string;
150854
151261
  enabled: boolean;
150855
151262
  };
151263
+ designSystemFileSize: {
151264
+ errorMessage: string;
151265
+ errorReason: string;
151266
+ max?: number | undefined;
151267
+ };
150856
151268
  } | undefined;
150857
151269
  stripeSubscriptionMainItemId?: string | undefined;
150858
151270
  currentPeriodStart?: string | undefined;
@@ -151363,6 +151775,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
151363
151775
  errorReason: string;
151364
151776
  enabled: boolean;
151365
151777
  };
151778
+ designSystemFileSize: {
151779
+ errorMessage: string;
151780
+ errorReason: string;
151781
+ max?: number | undefined;
151782
+ };
151366
151783
  } | undefined;
151367
151784
  stripeSubscriptionMainItemId?: string | undefined;
151368
151785
  currentPeriodStart?: string | undefined;
@@ -151648,6 +152065,11 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
151648
152065
  errorReason: string;
151649
152066
  enabled: boolean;
151650
152067
  };
152068
+ designSystemFileSize: {
152069
+ errorMessage: string;
152070
+ errorReason: string;
152071
+ max?: number | undefined;
152072
+ };
151651
152073
  } | undefined;
151652
152074
  stripeSubscriptionMainItemId?: string | undefined;
151653
152075
  currentPeriodStart?: string | undefined;
@@ -152223,6 +152645,19 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
152223
152645
  errorReason: string;
152224
152646
  max?: number | undefined;
152225
152647
  }>;
152648
+ designSystemFileSize: z.ZodObject<{
152649
+ max: z.ZodOptional<z.ZodNumber>;
152650
+ errorMessage: z.ZodString;
152651
+ errorReason: z.ZodString;
152652
+ }, "strip", z.ZodTypeAny, {
152653
+ errorMessage: string;
152654
+ errorReason: string;
152655
+ max?: number | undefined;
152656
+ }, {
152657
+ errorMessage: string;
152658
+ errorReason: string;
152659
+ max?: number | undefined;
152660
+ }>;
152226
152661
  }, "strip", z.ZodTypeAny, {
152227
152662
  analytics: {
152228
152663
  errorMessage: string;
@@ -152346,6 +152781,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
152346
152781
  errorReason: string;
152347
152782
  enabled: boolean;
152348
152783
  };
152784
+ designSystemFileSize: {
152785
+ errorMessage: string;
152786
+ errorReason: string;
152787
+ max?: number | undefined;
152788
+ };
152349
152789
  }, {
152350
152790
  analytics: {
152351
152791
  errorMessage: string;
@@ -152469,6 +152909,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
152469
152909
  errorReason: string;
152470
152910
  enabled: boolean;
152471
152911
  };
152912
+ designSystemFileSize: {
152913
+ errorMessage: string;
152914
+ errorReason: string;
152915
+ max?: number | undefined;
152916
+ };
152472
152917
  }>>;
152473
152918
  stripeProductDescription: z.ZodOptional<z.ZodString>;
152474
152919
  stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -152659,6 +153104,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
152659
153104
  errorReason: string;
152660
153105
  enabled: boolean;
152661
153106
  };
153107
+ designSystemFileSize: {
153108
+ errorMessage: string;
153109
+ errorReason: string;
153110
+ max?: number | undefined;
153111
+ };
152662
153112
  } | undefined;
152663
153113
  stripeSubscriptionMainItemId?: string | undefined;
152664
153114
  currentPeriodStart?: string | undefined;
@@ -152816,6 +153266,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
152816
153266
  errorReason: string;
152817
153267
  enabled: boolean;
152818
153268
  };
153269
+ designSystemFileSize: {
153270
+ errorMessage: string;
153271
+ errorReason: string;
153272
+ max?: number | undefined;
153273
+ };
152819
153274
  } | undefined;
152820
153275
  stripeSubscriptionMainItemId?: string | undefined;
152821
153276
  currentPeriodStart?: string | undefined;
@@ -153149,6 +153604,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
153149
153604
  errorReason: string;
153150
153605
  enabled: boolean;
153151
153606
  };
153607
+ designSystemFileSize: {
153608
+ errorMessage: string;
153609
+ errorReason: string;
153610
+ max?: number | undefined;
153611
+ };
153152
153612
  } | undefined;
153153
153613
  stripeSubscriptionMainItemId?: string | undefined;
153154
153614
  currentPeriodStart?: string | undefined;
@@ -153371,6 +153831,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
153371
153831
  errorReason: string;
153372
153832
  enabled: boolean;
153373
153833
  };
153834
+ designSystemFileSize: {
153835
+ errorMessage: string;
153836
+ errorReason: string;
153837
+ max?: number | undefined;
153838
+ };
153374
153839
  } | undefined;
153375
153840
  stripeSubscriptionMainItemId?: string | undefined;
153376
153841
  currentPeriodStart?: string | undefined;
@@ -153805,6 +154270,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
153805
154270
  errorReason: string;
153806
154271
  enabled: boolean;
153807
154272
  };
154273
+ designSystemFileSize: {
154274
+ errorMessage: string;
154275
+ errorReason: string;
154276
+ max?: number | undefined;
154277
+ };
153808
154278
  } | undefined;
153809
154279
  stripeSubscriptionMainItemId?: string | undefined;
153810
154280
  currentPeriodStart?: string | undefined;
@@ -154067,6 +154537,11 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
154067
154537
  errorReason: string;
154068
154538
  enabled: boolean;
154069
154539
  };
154540
+ designSystemFileSize: {
154541
+ errorMessage: string;
154542
+ errorReason: string;
154543
+ max?: number | undefined;
154544
+ };
154070
154545
  } | undefined;
154071
154546
  stripeSubscriptionMainItemId?: string | undefined;
154072
154547
  currentPeriodStart?: string | undefined;
@@ -154165,26 +154640,26 @@ declare const Event: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
154165
154640
  versionId: z.ZodString;
154166
154641
  }, "strip", z.ZodTypeAny, {
154167
154642
  type: "DesignSystemVersionReleased";
154643
+ workspaceId: string;
154168
154644
  designSystemId: string;
154169
154645
  versionId: string;
154170
- workspaceId: string;
154171
154646
  }, {
154172
154647
  type: "DesignSystemVersionReleased";
154648
+ workspaceId: string;
154173
154649
  designSystemId: string;
154174
154650
  versionId: string;
154175
- workspaceId: string;
154176
154651
  }>, z.ZodObject<{
154177
154652
  type: z.ZodLiteral<"DataSourceImported">;
154178
154653
  workspaceId: z.ZodString;
154179
154654
  designSystemId: z.ZodString;
154180
154655
  }, "strip", z.ZodTypeAny, {
154181
154656
  type: "DataSourceImported";
154182
- designSystemId: string;
154183
154657
  workspaceId: string;
154658
+ designSystemId: string;
154184
154659
  }, {
154185
154660
  type: "DataSourceImported";
154186
- designSystemId: string;
154187
154661
  workspaceId: string;
154662
+ designSystemId: string;
154188
154663
  }>, z.ZodObject<{
154189
154664
  type: z.ZodLiteral<"DocumentationPublished">;
154190
154665
  workspaceId: z.ZodString;
@@ -154192,14 +154667,14 @@ declare const Event: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
154192
154667
  versionId: z.ZodString;
154193
154668
  }, "strip", z.ZodTypeAny, {
154194
154669
  type: "DocumentationPublished";
154670
+ workspaceId: string;
154195
154671
  designSystemId: string;
154196
154672
  versionId: string;
154197
- workspaceId: string;
154198
154673
  }, {
154199
154674
  type: "DocumentationPublished";
154675
+ workspaceId: string;
154200
154676
  designSystemId: string;
154201
154677
  versionId: string;
154202
- workspaceId: string;
154203
154678
  }>]>;
154204
154679
  type Event = z.infer<typeof Event>;
154205
154680
 
@@ -154209,12 +154684,12 @@ declare const EventDataSourceImported: z.ZodObject<{
154209
154684
  designSystemId: z.ZodString;
154210
154685
  }, "strip", z.ZodTypeAny, {
154211
154686
  type: "DataSourceImported";
154212
- designSystemId: string;
154213
154687
  workspaceId: string;
154688
+ designSystemId: string;
154214
154689
  }, {
154215
154690
  type: "DataSourceImported";
154216
- designSystemId: string;
154217
154691
  workspaceId: string;
154692
+ designSystemId: string;
154218
154693
  }>;
154219
154694
  type EventDataSourceImported = z.infer<typeof EventDataSourceImported>;
154220
154695
 
@@ -154225,14 +154700,14 @@ declare const EventDocumentationPublished: z.ZodObject<{
154225
154700
  versionId: z.ZodString;
154226
154701
  }, "strip", z.ZodTypeAny, {
154227
154702
  type: "DocumentationPublished";
154703
+ workspaceId: string;
154228
154704
  designSystemId: string;
154229
154705
  versionId: string;
154230
- workspaceId: string;
154231
154706
  }, {
154232
154707
  type: "DocumentationPublished";
154708
+ workspaceId: string;
154233
154709
  designSystemId: string;
154234
154710
  versionId: string;
154235
- workspaceId: string;
154236
154711
  }>;
154237
154712
  type EventDocumentationPublished = z.infer<typeof EventDocumentationPublished>;
154238
154713
 
@@ -154243,14 +154718,14 @@ declare const EventVersionReleased: z.ZodObject<{
154243
154718
  versionId: z.ZodString;
154244
154719
  }, "strip", z.ZodTypeAny, {
154245
154720
  type: "DesignSystemVersionReleased";
154721
+ workspaceId: string;
154246
154722
  designSystemId: string;
154247
154723
  versionId: string;
154248
- workspaceId: string;
154249
154724
  }, {
154250
154725
  type: "DesignSystemVersionReleased";
154726
+ workspaceId: string;
154251
154727
  designSystemId: string;
154252
154728
  versionId: string;
154253
- workspaceId: string;
154254
154729
  }>;
154255
154730
  type EventVersionReleased = z.infer<typeof EventVersionReleased>;
154256
154731
 
@@ -155422,14 +155897,14 @@ declare const ExporterFunctionPayload: z.ZodObject<{
155422
155897
  workspaceId: z.ZodString;
155423
155898
  exporterId: z.ZodString;
155424
155899
  }, "strip", z.ZodTypeAny, {
155425
- designSystemId: string;
155426
155900
  workspaceId: string;
155901
+ designSystemId: string;
155427
155902
  exporterId: string;
155428
155903
  exportJobId: string;
155429
155904
  exportContextId: string;
155430
155905
  }, {
155431
- designSystemId: string;
155432
155906
  workspaceId: string;
155907
+ designSystemId: string;
155433
155908
  exporterId: string;
155434
155909
  exportJobId: string;
155435
155910
  exportContextId: string;
@@ -157537,9 +158012,9 @@ declare const ExportJob: z.ZodObject<{
157537
158012
  status: "Timeout" | "InProgress" | "Success" | "Failed";
157538
158013
  id: string;
157539
158014
  createdAt: Date;
158015
+ workspaceId: string;
157540
158016
  designSystemId: string;
157541
158017
  designSystemVersionId: string;
157542
- workspaceId: string;
157543
158018
  exporterId: string;
157544
158019
  brandId?: string | undefined;
157545
158020
  themePersistentIds?: string[] | undefined;
@@ -157659,9 +158134,9 @@ declare const ExportJob: z.ZodObject<{
157659
158134
  status: "Timeout" | "InProgress" | "Success" | "Failed";
157660
158135
  id: string;
157661
158136
  createdAt: Date;
158137
+ workspaceId: string;
157662
158138
  designSystemId: string;
157663
158139
  designSystemVersionId: string;
157664
- workspaceId: string;
157665
158140
  exporterId: string;
157666
158141
  brandId?: string | undefined;
157667
158142
  themePersistentIds?: string[] | undefined;
@@ -157846,12 +158321,12 @@ declare const ExporterWorkspaceMembership: z.ZodObject<{
157846
158321
  }, "strip", z.ZodTypeAny, {
157847
158322
  id: string;
157848
158323
  workspaceId: string;
157849
- role: "Owner" | "OwnerArchived" | "User";
158324
+ role: "User" | "Owner" | "OwnerArchived";
157850
158325
  exporterId: string;
157851
158326
  }, {
157852
158327
  id: string;
157853
158328
  workspaceId: string;
157854
- role: "Owner" | "OwnerArchived" | "User";
158329
+ role: "User" | "Owner" | "OwnerArchived";
157855
158330
  exporterId: string;
157856
158331
  }>;
157857
158332
  type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
@@ -160848,8 +161323,8 @@ declare const Pipeline: z.ZodObject<{
160848
161323
  }, "strip", z.ZodTypeAny, {
160849
161324
  id: string;
160850
161325
  name: string;
160851
- designSystemId: string;
160852
161326
  workspaceId: string;
161327
+ designSystemId: string;
160853
161328
  isEnabled: boolean;
160854
161329
  exporterId: string;
160855
161330
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -160933,8 +161408,8 @@ declare const Pipeline: z.ZodObject<{
160933
161408
  }, {
160934
161409
  id: string;
160935
161410
  name: string;
160936
- designSystemId: string;
160937
161411
  workspaceId: string;
161412
+ designSystemId: string;
160938
161413
  isEnabled: boolean;
160939
161414
  exporterId: string;
160940
161415
  eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
@@ -161463,8 +161938,8 @@ declare const IntegrationCredentials: z.ZodObject<{
161463
161938
  id: string;
161464
161939
  state: "Active" | "Inactive";
161465
161940
  createdAt: Date;
161466
- accessToken: string;
161467
161941
  userId: string;
161942
+ accessToken: string;
161468
161943
  integrationId: string;
161469
161944
  profile?: {
161470
161945
  type?: string | undefined;
@@ -161493,8 +161968,8 @@ declare const IntegrationCredentials: z.ZodObject<{
161493
161968
  id: string;
161494
161969
  state: "Active" | "Inactive";
161495
161970
  createdAt: Date;
161496
- accessToken: string;
161497
161971
  userId: string;
161972
+ accessToken: string;
161498
161973
  integrationId: string;
161499
161974
  profile?: {
161500
161975
  type?: string | null | undefined;
@@ -161593,8 +162068,8 @@ declare const Integration: z.ZodObject<{
161593
162068
  id: string;
161594
162069
  state: "Active" | "Inactive";
161595
162070
  createdAt: Date;
161596
- accessToken: string;
161597
162071
  userId: string;
162072
+ accessToken: string;
161598
162073
  integrationId: string;
161599
162074
  profile?: {
161600
162075
  type?: string | undefined;
@@ -161623,8 +162098,8 @@ declare const Integration: z.ZodObject<{
161623
162098
  id: string;
161624
162099
  state: "Active" | "Inactive";
161625
162100
  createdAt: Date;
161626
- accessToken: string;
161627
162101
  userId: string;
162102
+ accessToken: string;
161628
162103
  integrationId: string;
161629
162104
  profile?: {
161630
162105
  type?: string | null | undefined;
@@ -161659,8 +162134,8 @@ declare const Integration: z.ZodObject<{
161659
162134
  id: string;
161660
162135
  state: "Active" | "Inactive";
161661
162136
  createdAt: Date;
161662
- accessToken: string;
161663
162137
  userId: string;
162138
+ accessToken: string;
161664
162139
  integrationId: string;
161665
162140
  profile?: {
161666
162141
  type?: string | undefined;
@@ -161695,8 +162170,8 @@ declare const Integration: z.ZodObject<{
161695
162170
  id: string;
161696
162171
  state: "Active" | "Inactive";
161697
162172
  createdAt: Date;
161698
- accessToken: string;
161699
162173
  userId: string;
162174
+ accessToken: string;
161700
162175
  integrationId: string;
161701
162176
  profile?: {
161702
162177
  type?: string | null | undefined;
@@ -161833,18 +162308,18 @@ declare const IntegrationTokenSchemaOld: z.ZodObject<{
161833
162308
  id: string;
161834
162309
  refreshToken: string;
161835
162310
  expiresAt: Date;
162311
+ userId: string;
161836
162312
  scope: string;
161837
162313
  accessToken: string;
161838
- userId: string;
161839
162314
  provider: OAuthProviderNames;
161840
162315
  externalUserId?: string | null | undefined;
161841
162316
  }, {
161842
162317
  id: string;
161843
162318
  refreshToken: string;
161844
162319
  expiresAt: Date;
162320
+ userId: string;
161845
162321
  scope: string;
161846
162322
  accessToken: string;
161847
- userId: string;
161848
162323
  provider: OAuthProviderNames;
161849
162324
  externalUserId?: string | null | undefined;
161850
162325
  }>;
@@ -190627,24 +191102,24 @@ declare const PersonalAccessToken: z.ZodObject<{
190627
191102
  id: string;
190628
191103
  name: string;
190629
191104
  createdAt: Date;
190630
- hidden: boolean;
190631
191105
  userId: string;
191106
+ hidden: boolean;
190632
191107
  token: string;
191108
+ workspaceId?: string | undefined;
190633
191109
  designSystemId?: string | undefined;
190634
191110
  scope?: string | undefined;
190635
- workspaceId?: string | undefined;
190636
191111
  workspaceRole?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
190637
191112
  expireAt?: Date | undefined;
190638
191113
  }, {
190639
191114
  id: string;
190640
191115
  name: string;
190641
191116
  createdAt: Date;
190642
- hidden: boolean;
190643
191117
  userId: string;
191118
+ hidden: boolean;
190644
191119
  token: string;
191120
+ workspaceId?: string | undefined;
190645
191121
  designSystemId?: string | undefined;
190646
191122
  scope?: string | undefined;
190647
- workspaceId?: string | undefined;
190648
191123
  workspaceRole?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
190649
191124
  expireAt?: Date | undefined;
190650
191125
  }>;
@@ -191522,4 +191997,4 @@ type PersonalAccessTokenWithUser = {
191522
191997
  token: PersonalAccessToken;
191523
191998
  };
191524
191999
 
191525
- export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
192000
+ export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };