@supernova-studio/model 1.9.16 → 1.9.18
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 +240 -139
- package/dist/index.d.ts +240 -139
- package/dist/index.js +32 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2557 -2526
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2341,6 +2341,107 @@ declare const Subscription: z.ZodObject<{
|
|
|
2341
2341
|
}>;
|
|
2342
2342
|
type Subscription = z.infer<typeof Subscription>;
|
|
2343
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
|
+
|
|
2344
2445
|
declare const Entity: z.ZodObject<{
|
|
2345
2446
|
id: z.ZodString;
|
|
2346
2447
|
createdAt: z.ZodDate;
|
|
@@ -4028,8 +4129,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4028
4129
|
}, "strip", z.ZodTypeAny, {
|
|
4029
4130
|
id: string;
|
|
4030
4131
|
name: string;
|
|
4031
|
-
designSystemId: string;
|
|
4032
4132
|
workspaceId: string;
|
|
4133
|
+
designSystemId: string;
|
|
4033
4134
|
isEnabled: boolean;
|
|
4034
4135
|
exporterId: string;
|
|
4035
4136
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -4113,8 +4214,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4113
4214
|
}, {
|
|
4114
4215
|
id: string;
|
|
4115
4216
|
name: string;
|
|
4116
|
-
designSystemId: string;
|
|
4117
4217
|
workspaceId: string;
|
|
4218
|
+
designSystemId: string;
|
|
4118
4219
|
isEnabled: boolean;
|
|
4119
4220
|
exporterId: string;
|
|
4120
4221
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -4423,8 +4524,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4423
4524
|
pipelines: {
|
|
4424
4525
|
id: string;
|
|
4425
4526
|
name: string;
|
|
4426
|
-
designSystemId: string;
|
|
4427
4527
|
workspaceId: string;
|
|
4528
|
+
designSystemId: string;
|
|
4428
4529
|
isEnabled: boolean;
|
|
4429
4530
|
exporterId: string;
|
|
4430
4531
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -4723,8 +4824,8 @@ declare const CodeIntegrationDump: z.ZodObject<{
|
|
|
4723
4824
|
pipelines: {
|
|
4724
4825
|
id: string;
|
|
4725
4826
|
name: string;
|
|
4726
|
-
designSystemId: string;
|
|
4727
4827
|
workspaceId: string;
|
|
4828
|
+
designSystemId: string;
|
|
4728
4829
|
isEnabled: boolean;
|
|
4729
4830
|
exporterId: string;
|
|
4730
4831
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -7059,8 +7160,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
7059
7160
|
}, "strip", z.ZodTypeAny, {
|
|
7060
7161
|
id: string;
|
|
7061
7162
|
createdAt: Date;
|
|
7062
|
-
authorId: string;
|
|
7063
7163
|
threadId: string;
|
|
7164
|
+
authorId: string;
|
|
7064
7165
|
roomId: string;
|
|
7065
7166
|
body: string;
|
|
7066
7167
|
editedAt?: Date | undefined;
|
|
@@ -7068,8 +7169,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
7068
7169
|
}, {
|
|
7069
7170
|
id: string;
|
|
7070
7171
|
createdAt: Date;
|
|
7071
|
-
authorId: string;
|
|
7072
7172
|
threadId: string;
|
|
7173
|
+
authorId: string;
|
|
7073
7174
|
roomId: string;
|
|
7074
7175
|
body: string;
|
|
7075
7176
|
editedAt?: Date | undefined;
|
|
@@ -7079,8 +7180,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
7079
7180
|
comments: {
|
|
7080
7181
|
id: string;
|
|
7081
7182
|
createdAt: Date;
|
|
7082
|
-
authorId: string;
|
|
7083
7183
|
threadId: string;
|
|
7184
|
+
authorId: string;
|
|
7084
7185
|
roomId: string;
|
|
7085
7186
|
body: string;
|
|
7086
7187
|
editedAt?: Date | undefined;
|
|
@@ -7102,8 +7203,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
7102
7203
|
comments: {
|
|
7103
7204
|
id: string;
|
|
7104
7205
|
createdAt: Date;
|
|
7105
|
-
authorId: string;
|
|
7106
7206
|
threadId: string;
|
|
7207
|
+
authorId: string;
|
|
7107
7208
|
roomId: string;
|
|
7108
7209
|
body: string;
|
|
7109
7210
|
editedAt?: Date | undefined;
|
|
@@ -7127,8 +7228,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
7127
7228
|
comments: {
|
|
7128
7229
|
id: string;
|
|
7129
7230
|
createdAt: Date;
|
|
7130
|
-
authorId: string;
|
|
7131
7231
|
threadId: string;
|
|
7232
|
+
authorId: string;
|
|
7132
7233
|
roomId: string;
|
|
7133
7234
|
body: string;
|
|
7134
7235
|
editedAt?: Date | undefined;
|
|
@@ -7161,8 +7262,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
7161
7262
|
comments: {
|
|
7162
7263
|
id: string;
|
|
7163
7264
|
createdAt: Date;
|
|
7164
|
-
authorId: string;
|
|
7165
7265
|
threadId: string;
|
|
7266
|
+
authorId: string;
|
|
7166
7267
|
roomId: string;
|
|
7167
7268
|
body: string;
|
|
7168
7269
|
editedAt?: Date | undefined;
|
|
@@ -7578,8 +7679,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
7578
7679
|
comments: {
|
|
7579
7680
|
id: string;
|
|
7580
7681
|
createdAt: Date;
|
|
7581
|
-
authorId: string;
|
|
7582
7682
|
threadId: string;
|
|
7683
|
+
authorId: string;
|
|
7583
7684
|
roomId: string;
|
|
7584
7685
|
body: string;
|
|
7585
7686
|
editedAt?: Date | undefined;
|
|
@@ -7859,8 +7960,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
7859
7960
|
comments: {
|
|
7860
7961
|
id: string;
|
|
7861
7962
|
createdAt: Date;
|
|
7862
|
-
authorId: string;
|
|
7863
7963
|
threadId: string;
|
|
7964
|
+
authorId: string;
|
|
7864
7965
|
roomId: string;
|
|
7865
7966
|
body: string;
|
|
7866
7967
|
editedAt?: Date | undefined;
|
|
@@ -8412,8 +8513,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
8412
8513
|
comments: {
|
|
8413
8514
|
id: string;
|
|
8414
8515
|
createdAt: Date;
|
|
8415
|
-
authorId: string;
|
|
8416
8516
|
threadId: string;
|
|
8517
|
+
authorId: string;
|
|
8417
8518
|
roomId: string;
|
|
8418
8519
|
body: string;
|
|
8419
8520
|
editedAt?: Date | undefined;
|
|
@@ -8863,8 +8964,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
8863
8964
|
comments: {
|
|
8864
8965
|
id: string;
|
|
8865
8966
|
createdAt: Date;
|
|
8866
|
-
authorId: string;
|
|
8867
8967
|
threadId: string;
|
|
8968
|
+
authorId: string;
|
|
8868
8969
|
roomId: string;
|
|
8869
8970
|
body: string;
|
|
8870
8971
|
editedAt?: Date | undefined;
|
|
@@ -9021,8 +9122,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
|
|
|
9021
9122
|
}, "strip", z.ZodTypeAny, {
|
|
9022
9123
|
id: string;
|
|
9023
9124
|
createdAt: Date;
|
|
9024
|
-
authorId: string;
|
|
9025
9125
|
threadId: string;
|
|
9126
|
+
authorId: string;
|
|
9026
9127
|
roomId: string;
|
|
9027
9128
|
body: string;
|
|
9028
9129
|
editedAt?: Date | undefined;
|
|
@@ -9030,8 +9131,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
|
|
|
9030
9131
|
}, {
|
|
9031
9132
|
id: string;
|
|
9032
9133
|
createdAt: Date;
|
|
9033
|
-
authorId: string;
|
|
9034
9134
|
threadId: string;
|
|
9135
|
+
authorId: string;
|
|
9035
9136
|
roomId: string;
|
|
9036
9137
|
body: string;
|
|
9037
9138
|
editedAt?: Date | undefined;
|
|
@@ -9041,8 +9142,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
|
|
|
9041
9142
|
comments: {
|
|
9042
9143
|
id: string;
|
|
9043
9144
|
createdAt: Date;
|
|
9044
|
-
authorId: string;
|
|
9045
9145
|
threadId: string;
|
|
9146
|
+
authorId: string;
|
|
9046
9147
|
roomId: string;
|
|
9047
9148
|
body: string;
|
|
9048
9149
|
editedAt?: Date | undefined;
|
|
@@ -9064,8 +9165,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
|
|
|
9064
9165
|
comments: {
|
|
9065
9166
|
id: string;
|
|
9066
9167
|
createdAt: Date;
|
|
9067
|
-
authorId: string;
|
|
9068
9168
|
threadId: string;
|
|
9169
|
+
authorId: string;
|
|
9069
9170
|
roomId: string;
|
|
9070
9171
|
body: string;
|
|
9071
9172
|
editedAt?: Date | undefined;
|
|
@@ -9089,8 +9190,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
|
|
|
9089
9190
|
comments: {
|
|
9090
9191
|
id: string;
|
|
9091
9192
|
createdAt: Date;
|
|
9092
|
-
authorId: string;
|
|
9093
9193
|
threadId: string;
|
|
9194
|
+
authorId: string;
|
|
9094
9195
|
roomId: string;
|
|
9095
9196
|
body: string;
|
|
9096
9197
|
editedAt?: Date | undefined;
|
|
@@ -9123,8 +9224,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
|
|
|
9123
9224
|
comments: {
|
|
9124
9225
|
id: string;
|
|
9125
9226
|
createdAt: Date;
|
|
9126
|
-
authorId: string;
|
|
9127
9227
|
threadId: string;
|
|
9228
|
+
authorId: string;
|
|
9128
9229
|
roomId: string;
|
|
9129
9230
|
body: string;
|
|
9130
9231
|
editedAt?: Date | undefined;
|
|
@@ -9159,8 +9260,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
|
|
|
9159
9260
|
comments: {
|
|
9160
9261
|
id: string;
|
|
9161
9262
|
createdAt: Date;
|
|
9162
|
-
authorId: string;
|
|
9163
9263
|
threadId: string;
|
|
9264
|
+
authorId: string;
|
|
9164
9265
|
roomId: string;
|
|
9165
9266
|
body: string;
|
|
9166
9267
|
editedAt?: Date | undefined;
|
|
@@ -9195,8 +9296,8 @@ declare const DesignSystemVersionMultiplayerDump: z.ZodObject<{
|
|
|
9195
9296
|
comments: {
|
|
9196
9297
|
id: string;
|
|
9197
9298
|
createdAt: Date;
|
|
9198
|
-
authorId: string;
|
|
9199
9299
|
threadId: string;
|
|
9300
|
+
authorId: string;
|
|
9200
9301
|
roomId: string;
|
|
9201
9302
|
body: string;
|
|
9202
9303
|
editedAt?: Date | undefined;
|
|
@@ -9273,8 +9374,8 @@ declare const DocumentationThreadDump: z.ZodObject<{
|
|
|
9273
9374
|
}, "strip", z.ZodTypeAny, {
|
|
9274
9375
|
id: string;
|
|
9275
9376
|
createdAt: Date;
|
|
9276
|
-
authorId: string;
|
|
9277
9377
|
threadId: string;
|
|
9378
|
+
authorId: string;
|
|
9278
9379
|
roomId: string;
|
|
9279
9380
|
body: string;
|
|
9280
9381
|
editedAt?: Date | undefined;
|
|
@@ -9282,8 +9383,8 @@ declare const DocumentationThreadDump: z.ZodObject<{
|
|
|
9282
9383
|
}, {
|
|
9283
9384
|
id: string;
|
|
9284
9385
|
createdAt: Date;
|
|
9285
|
-
authorId: string;
|
|
9286
9386
|
threadId: string;
|
|
9387
|
+
authorId: string;
|
|
9287
9388
|
roomId: string;
|
|
9288
9389
|
body: string;
|
|
9289
9390
|
editedAt?: Date | undefined;
|
|
@@ -9293,8 +9394,8 @@ declare const DocumentationThreadDump: z.ZodObject<{
|
|
|
9293
9394
|
comments: {
|
|
9294
9395
|
id: string;
|
|
9295
9396
|
createdAt: Date;
|
|
9296
|
-
authorId: string;
|
|
9297
9397
|
threadId: string;
|
|
9398
|
+
authorId: string;
|
|
9298
9399
|
roomId: string;
|
|
9299
9400
|
body: string;
|
|
9300
9401
|
editedAt?: Date | undefined;
|
|
@@ -9316,8 +9417,8 @@ declare const DocumentationThreadDump: z.ZodObject<{
|
|
|
9316
9417
|
comments: {
|
|
9317
9418
|
id: string;
|
|
9318
9419
|
createdAt: Date;
|
|
9319
|
-
authorId: string;
|
|
9320
9420
|
threadId: string;
|
|
9421
|
+
authorId: string;
|
|
9321
9422
|
roomId: string;
|
|
9322
9423
|
body: string;
|
|
9323
9424
|
editedAt?: Date | undefined;
|
|
@@ -9411,8 +9512,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
|
|
|
9411
9512
|
}, "strip", z.ZodTypeAny, {
|
|
9412
9513
|
id: string;
|
|
9413
9514
|
createdAt: Date;
|
|
9414
|
-
authorId: string;
|
|
9415
9515
|
threadId: string;
|
|
9516
|
+
authorId: string;
|
|
9416
9517
|
roomId: string;
|
|
9417
9518
|
body: string;
|
|
9418
9519
|
editedAt?: Date | undefined;
|
|
@@ -9420,8 +9521,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
|
|
|
9420
9521
|
}, {
|
|
9421
9522
|
id: string;
|
|
9422
9523
|
createdAt: Date;
|
|
9423
|
-
authorId: string;
|
|
9424
9524
|
threadId: string;
|
|
9525
|
+
authorId: string;
|
|
9425
9526
|
roomId: string;
|
|
9426
9527
|
body: string;
|
|
9427
9528
|
editedAt?: Date | undefined;
|
|
@@ -9431,8 +9532,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
|
|
|
9431
9532
|
comments: {
|
|
9432
9533
|
id: string;
|
|
9433
9534
|
createdAt: Date;
|
|
9434
|
-
authorId: string;
|
|
9435
9535
|
threadId: string;
|
|
9536
|
+
authorId: string;
|
|
9436
9537
|
roomId: string;
|
|
9437
9538
|
body: string;
|
|
9438
9539
|
editedAt?: Date | undefined;
|
|
@@ -9454,8 +9555,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
|
|
|
9454
9555
|
comments: {
|
|
9455
9556
|
id: string;
|
|
9456
9557
|
createdAt: Date;
|
|
9457
|
-
authorId: string;
|
|
9458
9558
|
threadId: string;
|
|
9559
|
+
authorId: string;
|
|
9459
9560
|
roomId: string;
|
|
9460
9561
|
body: string;
|
|
9461
9562
|
editedAt?: Date | undefined;
|
|
@@ -9479,8 +9580,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
|
|
|
9479
9580
|
comments: {
|
|
9480
9581
|
id: string;
|
|
9481
9582
|
createdAt: Date;
|
|
9482
|
-
authorId: string;
|
|
9483
9583
|
threadId: string;
|
|
9584
|
+
authorId: string;
|
|
9484
9585
|
roomId: string;
|
|
9485
9586
|
body: string;
|
|
9486
9587
|
editedAt?: Date | undefined;
|
|
@@ -9513,8 +9614,8 @@ declare const DocumentationPageRoomDump: z.ZodObject<{
|
|
|
9513
9614
|
comments: {
|
|
9514
9615
|
id: string;
|
|
9515
9616
|
createdAt: Date;
|
|
9516
|
-
authorId: string;
|
|
9517
9617
|
threadId: string;
|
|
9618
|
+
authorId: string;
|
|
9518
9619
|
roomId: string;
|
|
9519
9620
|
body: string;
|
|
9520
9621
|
editedAt?: Date | undefined;
|
|
@@ -11059,8 +11160,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
11059
11160
|
}, "strip", z.ZodTypeAny, {
|
|
11060
11161
|
id: string;
|
|
11061
11162
|
createdAt: Date;
|
|
11062
|
-
authorId: string;
|
|
11063
11163
|
threadId: string;
|
|
11164
|
+
authorId: string;
|
|
11064
11165
|
roomId: string;
|
|
11065
11166
|
body: string;
|
|
11066
11167
|
editedAt?: Date | undefined;
|
|
@@ -11068,8 +11169,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
11068
11169
|
}, {
|
|
11069
11170
|
id: string;
|
|
11070
11171
|
createdAt: Date;
|
|
11071
|
-
authorId: string;
|
|
11072
11172
|
threadId: string;
|
|
11173
|
+
authorId: string;
|
|
11073
11174
|
roomId: string;
|
|
11074
11175
|
body: string;
|
|
11075
11176
|
editedAt?: Date | undefined;
|
|
@@ -11079,8 +11180,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
11079
11180
|
comments: {
|
|
11080
11181
|
id: string;
|
|
11081
11182
|
createdAt: Date;
|
|
11082
|
-
authorId: string;
|
|
11083
11183
|
threadId: string;
|
|
11184
|
+
authorId: string;
|
|
11084
11185
|
roomId: string;
|
|
11085
11186
|
body: string;
|
|
11086
11187
|
editedAt?: Date | undefined;
|
|
@@ -11102,8 +11203,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
11102
11203
|
comments: {
|
|
11103
11204
|
id: string;
|
|
11104
11205
|
createdAt: Date;
|
|
11105
|
-
authorId: string;
|
|
11106
11206
|
threadId: string;
|
|
11207
|
+
authorId: string;
|
|
11107
11208
|
roomId: string;
|
|
11108
11209
|
body: string;
|
|
11109
11210
|
editedAt?: Date | undefined;
|
|
@@ -11127,8 +11228,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
11127
11228
|
comments: {
|
|
11128
11229
|
id: string;
|
|
11129
11230
|
createdAt: Date;
|
|
11130
|
-
authorId: string;
|
|
11131
11231
|
threadId: string;
|
|
11232
|
+
authorId: string;
|
|
11132
11233
|
roomId: string;
|
|
11133
11234
|
body: string;
|
|
11134
11235
|
editedAt?: Date | undefined;
|
|
@@ -11161,8 +11262,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
11161
11262
|
comments: {
|
|
11162
11263
|
id: string;
|
|
11163
11264
|
createdAt: Date;
|
|
11164
|
-
authorId: string;
|
|
11165
11265
|
threadId: string;
|
|
11266
|
+
authorId: string;
|
|
11166
11267
|
roomId: string;
|
|
11167
11268
|
body: string;
|
|
11168
11269
|
editedAt?: Date | undefined;
|
|
@@ -11578,8 +11679,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
11578
11679
|
comments: {
|
|
11579
11680
|
id: string;
|
|
11580
11681
|
createdAt: Date;
|
|
11581
|
-
authorId: string;
|
|
11582
11682
|
threadId: string;
|
|
11683
|
+
authorId: string;
|
|
11583
11684
|
roomId: string;
|
|
11584
11685
|
body: string;
|
|
11585
11686
|
editedAt?: Date | undefined;
|
|
@@ -11859,8 +11960,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
11859
11960
|
comments: {
|
|
11860
11961
|
id: string;
|
|
11861
11962
|
createdAt: Date;
|
|
11862
|
-
authorId: string;
|
|
11863
11963
|
threadId: string;
|
|
11964
|
+
authorId: string;
|
|
11864
11965
|
roomId: string;
|
|
11865
11966
|
body: string;
|
|
11866
11967
|
editedAt?: Date | undefined;
|
|
@@ -16228,8 +16329,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16228
16329
|
}, "strip", z.ZodTypeAny, {
|
|
16229
16330
|
id: string;
|
|
16230
16331
|
createdAt: Date;
|
|
16231
|
-
authorId: string;
|
|
16232
16332
|
threadId: string;
|
|
16333
|
+
authorId: string;
|
|
16233
16334
|
roomId: string;
|
|
16234
16335
|
body: string;
|
|
16235
16336
|
editedAt?: Date | undefined;
|
|
@@ -16237,8 +16338,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16237
16338
|
}, {
|
|
16238
16339
|
id: string;
|
|
16239
16340
|
createdAt: Date;
|
|
16240
|
-
authorId: string;
|
|
16241
16341
|
threadId: string;
|
|
16342
|
+
authorId: string;
|
|
16242
16343
|
roomId: string;
|
|
16243
16344
|
body: string;
|
|
16244
16345
|
editedAt?: Date | undefined;
|
|
@@ -16248,8 +16349,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16248
16349
|
comments: {
|
|
16249
16350
|
id: string;
|
|
16250
16351
|
createdAt: Date;
|
|
16251
|
-
authorId: string;
|
|
16252
16352
|
threadId: string;
|
|
16353
|
+
authorId: string;
|
|
16253
16354
|
roomId: string;
|
|
16254
16355
|
body: string;
|
|
16255
16356
|
editedAt?: Date | undefined;
|
|
@@ -16271,8 +16372,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16271
16372
|
comments: {
|
|
16272
16373
|
id: string;
|
|
16273
16374
|
createdAt: Date;
|
|
16274
|
-
authorId: string;
|
|
16275
16375
|
threadId: string;
|
|
16376
|
+
authorId: string;
|
|
16276
16377
|
roomId: string;
|
|
16277
16378
|
body: string;
|
|
16278
16379
|
editedAt?: Date | undefined;
|
|
@@ -16296,8 +16397,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16296
16397
|
comments: {
|
|
16297
16398
|
id: string;
|
|
16298
16399
|
createdAt: Date;
|
|
16299
|
-
authorId: string;
|
|
16300
16400
|
threadId: string;
|
|
16401
|
+
authorId: string;
|
|
16301
16402
|
roomId: string;
|
|
16302
16403
|
body: string;
|
|
16303
16404
|
editedAt?: Date | undefined;
|
|
@@ -16330,8 +16431,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16330
16431
|
comments: {
|
|
16331
16432
|
id: string;
|
|
16332
16433
|
createdAt: Date;
|
|
16333
|
-
authorId: string;
|
|
16334
16434
|
threadId: string;
|
|
16435
|
+
authorId: string;
|
|
16335
16436
|
roomId: string;
|
|
16336
16437
|
body: string;
|
|
16337
16438
|
editedAt?: Date | undefined;
|
|
@@ -16747,8 +16848,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16747
16848
|
comments: {
|
|
16748
16849
|
id: string;
|
|
16749
16850
|
createdAt: Date;
|
|
16750
|
-
authorId: string;
|
|
16751
16851
|
threadId: string;
|
|
16852
|
+
authorId: string;
|
|
16752
16853
|
roomId: string;
|
|
16753
16854
|
body: string;
|
|
16754
16855
|
editedAt?: Date | undefined;
|
|
@@ -17028,8 +17129,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
17028
17129
|
comments: {
|
|
17029
17130
|
id: string;
|
|
17030
17131
|
createdAt: Date;
|
|
17031
|
-
authorId: string;
|
|
17032
17132
|
threadId: string;
|
|
17133
|
+
authorId: string;
|
|
17033
17134
|
roomId: string;
|
|
17034
17135
|
body: string;
|
|
17035
17136
|
editedAt?: Date | undefined;
|
|
@@ -17581,8 +17682,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
17581
17682
|
comments: {
|
|
17582
17683
|
id: string;
|
|
17583
17684
|
createdAt: Date;
|
|
17584
|
-
authorId: string;
|
|
17585
17685
|
threadId: string;
|
|
17686
|
+
authorId: string;
|
|
17586
17687
|
roomId: string;
|
|
17587
17688
|
body: string;
|
|
17588
17689
|
editedAt?: Date | undefined;
|
|
@@ -18032,8 +18133,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
18032
18133
|
comments: {
|
|
18033
18134
|
id: string;
|
|
18034
18135
|
createdAt: Date;
|
|
18035
|
-
authorId: string;
|
|
18036
18136
|
threadId: string;
|
|
18137
|
+
authorId: string;
|
|
18037
18138
|
roomId: string;
|
|
18038
18139
|
body: string;
|
|
18039
18140
|
editedAt?: Date | undefined;
|
|
@@ -19728,8 +19829,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19728
19829
|
}, "strip", z.ZodTypeAny, {
|
|
19729
19830
|
id: string;
|
|
19730
19831
|
name: string;
|
|
19731
|
-
designSystemId: string;
|
|
19732
19832
|
workspaceId: string;
|
|
19833
|
+
designSystemId: string;
|
|
19733
19834
|
isEnabled: boolean;
|
|
19734
19835
|
exporterId: string;
|
|
19735
19836
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -19813,8 +19914,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19813
19914
|
}, {
|
|
19814
19915
|
id: string;
|
|
19815
19916
|
name: string;
|
|
19816
|
-
designSystemId: string;
|
|
19817
19917
|
workspaceId: string;
|
|
19918
|
+
designSystemId: string;
|
|
19818
19919
|
isEnabled: boolean;
|
|
19819
19920
|
exporterId: string;
|
|
19820
19921
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -20123,8 +20224,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20123
20224
|
pipelines: {
|
|
20124
20225
|
id: string;
|
|
20125
20226
|
name: string;
|
|
20126
|
-
designSystemId: string;
|
|
20127
20227
|
workspaceId: string;
|
|
20228
|
+
designSystemId: string;
|
|
20128
20229
|
isEnabled: boolean;
|
|
20129
20230
|
exporterId: string;
|
|
20130
20231
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -20423,8 +20524,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20423
20524
|
pipelines: {
|
|
20424
20525
|
id: string;
|
|
20425
20526
|
name: string;
|
|
20426
|
-
designSystemId: string;
|
|
20427
20527
|
workspaceId: string;
|
|
20528
|
+
designSystemId: string;
|
|
20428
20529
|
isEnabled: boolean;
|
|
20429
20530
|
exporterId: string;
|
|
20430
20531
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -20579,8 +20680,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20579
20680
|
id: string;
|
|
20580
20681
|
state: "Active" | "Inactive";
|
|
20581
20682
|
createdAt: Date;
|
|
20582
|
-
accessToken: string;
|
|
20583
20683
|
userId: string;
|
|
20684
|
+
accessToken: string;
|
|
20584
20685
|
integrationId: string;
|
|
20585
20686
|
profile?: {
|
|
20586
20687
|
type?: string | undefined;
|
|
@@ -20609,8 +20710,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20609
20710
|
id: string;
|
|
20610
20711
|
state: "Active" | "Inactive";
|
|
20611
20712
|
createdAt: Date;
|
|
20612
|
-
accessToken: string;
|
|
20613
20713
|
userId: string;
|
|
20714
|
+
accessToken: string;
|
|
20614
20715
|
integrationId: string;
|
|
20615
20716
|
profile?: {
|
|
20616
20717
|
type?: string | null | undefined;
|
|
@@ -20645,8 +20746,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20645
20746
|
id: string;
|
|
20646
20747
|
state: "Active" | "Inactive";
|
|
20647
20748
|
createdAt: Date;
|
|
20648
|
-
accessToken: string;
|
|
20649
20749
|
userId: string;
|
|
20750
|
+
accessToken: string;
|
|
20650
20751
|
integrationId: string;
|
|
20651
20752
|
profile?: {
|
|
20652
20753
|
type?: string | undefined;
|
|
@@ -20681,8 +20782,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
20681
20782
|
id: string;
|
|
20682
20783
|
state: "Active" | "Inactive";
|
|
20683
20784
|
createdAt: Date;
|
|
20684
|
-
accessToken: string;
|
|
20685
20785
|
userId: string;
|
|
20786
|
+
accessToken: string;
|
|
20686
20787
|
integrationId: string;
|
|
20687
20788
|
profile?: {
|
|
20688
20789
|
type?: string | null | undefined;
|
|
@@ -21297,8 +21398,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
21297
21398
|
comments: {
|
|
21298
21399
|
id: string;
|
|
21299
21400
|
createdAt: Date;
|
|
21300
|
-
authorId: string;
|
|
21301
21401
|
threadId: string;
|
|
21402
|
+
authorId: string;
|
|
21302
21403
|
roomId: string;
|
|
21303
21404
|
body: string;
|
|
21304
21405
|
editedAt?: Date | undefined;
|
|
@@ -21589,8 +21690,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
21589
21690
|
pipelines: {
|
|
21590
21691
|
id: string;
|
|
21591
21692
|
name: string;
|
|
21592
|
-
designSystemId: string;
|
|
21593
21693
|
workspaceId: string;
|
|
21694
|
+
designSystemId: string;
|
|
21594
21695
|
isEnabled: boolean;
|
|
21595
21696
|
exporterId: string;
|
|
21596
21697
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -21689,8 +21790,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
21689
21790
|
id: string;
|
|
21690
21791
|
state: "Active" | "Inactive";
|
|
21691
21792
|
createdAt: Date;
|
|
21692
|
-
accessToken: string;
|
|
21693
21793
|
userId: string;
|
|
21794
|
+
accessToken: string;
|
|
21694
21795
|
integrationId: string;
|
|
21695
21796
|
profile?: {
|
|
21696
21797
|
type?: string | undefined;
|
|
@@ -22305,8 +22406,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
22305
22406
|
comments: {
|
|
22306
22407
|
id: string;
|
|
22307
22408
|
createdAt: Date;
|
|
22308
|
-
authorId: string;
|
|
22309
22409
|
threadId: string;
|
|
22410
|
+
authorId: string;
|
|
22310
22411
|
roomId: string;
|
|
22311
22412
|
body: string;
|
|
22312
22413
|
editedAt?: Date | undefined;
|
|
@@ -22597,8 +22698,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
22597
22698
|
pipelines: {
|
|
22598
22699
|
id: string;
|
|
22599
22700
|
name: string;
|
|
22600
|
-
designSystemId: string;
|
|
22601
22701
|
workspaceId: string;
|
|
22702
|
+
designSystemId: string;
|
|
22602
22703
|
isEnabled: boolean;
|
|
22603
22704
|
exporterId: string;
|
|
22604
22705
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -22697,8 +22798,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
22697
22798
|
id: string;
|
|
22698
22799
|
state: "Active" | "Inactive";
|
|
22699
22800
|
createdAt: Date;
|
|
22700
|
-
accessToken: string;
|
|
22701
22801
|
userId: string;
|
|
22802
|
+
accessToken: string;
|
|
22702
22803
|
integrationId: string;
|
|
22703
22804
|
profile?: {
|
|
22704
22805
|
type?: string | null | undefined;
|
|
@@ -23308,8 +23409,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
23308
23409
|
comments: {
|
|
23309
23410
|
id: string;
|
|
23310
23411
|
createdAt: Date;
|
|
23311
|
-
authorId: string;
|
|
23312
23412
|
threadId: string;
|
|
23413
|
+
authorId: string;
|
|
23313
23414
|
roomId: string;
|
|
23314
23415
|
body: string;
|
|
23315
23416
|
editedAt?: Date | undefined;
|
|
@@ -23600,8 +23701,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
23600
23701
|
pipelines: {
|
|
23601
23702
|
id: string;
|
|
23602
23703
|
name: string;
|
|
23603
|
-
designSystemId: string;
|
|
23604
23704
|
workspaceId: string;
|
|
23705
|
+
designSystemId: string;
|
|
23605
23706
|
isEnabled: boolean;
|
|
23606
23707
|
exporterId: string;
|
|
23607
23708
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -23700,8 +23801,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
23700
23801
|
id: string;
|
|
23701
23802
|
state: "Active" | "Inactive";
|
|
23702
23803
|
createdAt: Date;
|
|
23703
|
-
accessToken: string;
|
|
23704
23804
|
userId: string;
|
|
23805
|
+
accessToken: string;
|
|
23705
23806
|
integrationId: string;
|
|
23706
23807
|
profile?: {
|
|
23707
23808
|
type?: string | undefined;
|
|
@@ -24348,8 +24449,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
24348
24449
|
comments: {
|
|
24349
24450
|
id: string;
|
|
24350
24451
|
createdAt: Date;
|
|
24351
|
-
authorId: string;
|
|
24352
24452
|
threadId: string;
|
|
24453
|
+
authorId: string;
|
|
24353
24454
|
roomId: string;
|
|
24354
24455
|
body: string;
|
|
24355
24456
|
editedAt?: Date | undefined;
|
|
@@ -24640,8 +24741,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
24640
24741
|
pipelines: {
|
|
24641
24742
|
id: string;
|
|
24642
24743
|
name: string;
|
|
24643
|
-
designSystemId: string;
|
|
24644
24744
|
workspaceId: string;
|
|
24745
|
+
designSystemId: string;
|
|
24645
24746
|
isEnabled: boolean;
|
|
24646
24747
|
exporterId: string;
|
|
24647
24748
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -24740,8 +24841,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
24740
24841
|
id: string;
|
|
24741
24842
|
state: "Active" | "Inactive";
|
|
24742
24843
|
createdAt: Date;
|
|
24743
|
-
accessToken: string;
|
|
24744
24844
|
userId: string;
|
|
24845
|
+
accessToken: string;
|
|
24745
24846
|
integrationId: string;
|
|
24746
24847
|
profile?: {
|
|
24747
24848
|
type?: string | null | undefined;
|
|
@@ -28732,8 +28833,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28732
28833
|
}, "strip", z.ZodTypeAny, {
|
|
28733
28834
|
id: string;
|
|
28734
28835
|
createdAt: Date;
|
|
28735
|
-
authorId: string;
|
|
28736
28836
|
threadId: string;
|
|
28837
|
+
authorId: string;
|
|
28737
28838
|
roomId: string;
|
|
28738
28839
|
body: string;
|
|
28739
28840
|
editedAt?: Date | undefined;
|
|
@@ -28741,8 +28842,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28741
28842
|
}, {
|
|
28742
28843
|
id: string;
|
|
28743
28844
|
createdAt: Date;
|
|
28744
|
-
authorId: string;
|
|
28745
28845
|
threadId: string;
|
|
28846
|
+
authorId: string;
|
|
28746
28847
|
roomId: string;
|
|
28747
28848
|
body: string;
|
|
28748
28849
|
editedAt?: Date | undefined;
|
|
@@ -28752,8 +28853,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28752
28853
|
comments: {
|
|
28753
28854
|
id: string;
|
|
28754
28855
|
createdAt: Date;
|
|
28755
|
-
authorId: string;
|
|
28756
28856
|
threadId: string;
|
|
28857
|
+
authorId: string;
|
|
28757
28858
|
roomId: string;
|
|
28758
28859
|
body: string;
|
|
28759
28860
|
editedAt?: Date | undefined;
|
|
@@ -28775,8 +28876,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28775
28876
|
comments: {
|
|
28776
28877
|
id: string;
|
|
28777
28878
|
createdAt: Date;
|
|
28778
|
-
authorId: string;
|
|
28779
28879
|
threadId: string;
|
|
28880
|
+
authorId: string;
|
|
28780
28881
|
roomId: string;
|
|
28781
28882
|
body: string;
|
|
28782
28883
|
editedAt?: Date | undefined;
|
|
@@ -28800,8 +28901,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28800
28901
|
comments: {
|
|
28801
28902
|
id: string;
|
|
28802
28903
|
createdAt: Date;
|
|
28803
|
-
authorId: string;
|
|
28804
28904
|
threadId: string;
|
|
28905
|
+
authorId: string;
|
|
28805
28906
|
roomId: string;
|
|
28806
28907
|
body: string;
|
|
28807
28908
|
editedAt?: Date | undefined;
|
|
@@ -28834,8 +28935,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28834
28935
|
comments: {
|
|
28835
28936
|
id: string;
|
|
28836
28937
|
createdAt: Date;
|
|
28837
|
-
authorId: string;
|
|
28838
28938
|
threadId: string;
|
|
28939
|
+
authorId: string;
|
|
28839
28940
|
roomId: string;
|
|
28840
28941
|
body: string;
|
|
28841
28942
|
editedAt?: Date | undefined;
|
|
@@ -29251,8 +29352,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
29251
29352
|
comments: {
|
|
29252
29353
|
id: string;
|
|
29253
29354
|
createdAt: Date;
|
|
29254
|
-
authorId: string;
|
|
29255
29355
|
threadId: string;
|
|
29356
|
+
authorId: string;
|
|
29256
29357
|
roomId: string;
|
|
29257
29358
|
body: string;
|
|
29258
29359
|
editedAt?: Date | undefined;
|
|
@@ -29532,8 +29633,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
29532
29633
|
comments: {
|
|
29533
29634
|
id: string;
|
|
29534
29635
|
createdAt: Date;
|
|
29535
|
-
authorId: string;
|
|
29536
29636
|
threadId: string;
|
|
29637
|
+
authorId: string;
|
|
29537
29638
|
roomId: string;
|
|
29538
29639
|
body: string;
|
|
29539
29640
|
editedAt?: Date | undefined;
|
|
@@ -30085,8 +30186,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30085
30186
|
comments: {
|
|
30086
30187
|
id: string;
|
|
30087
30188
|
createdAt: Date;
|
|
30088
|
-
authorId: string;
|
|
30089
30189
|
threadId: string;
|
|
30190
|
+
authorId: string;
|
|
30090
30191
|
roomId: string;
|
|
30091
30192
|
body: string;
|
|
30092
30193
|
editedAt?: Date | undefined;
|
|
@@ -30536,8 +30637,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
30536
30637
|
comments: {
|
|
30537
30638
|
id: string;
|
|
30538
30639
|
createdAt: Date;
|
|
30539
|
-
authorId: string;
|
|
30540
30640
|
threadId: string;
|
|
30641
|
+
authorId: string;
|
|
30541
30642
|
roomId: string;
|
|
30542
30643
|
body: string;
|
|
30543
30644
|
editedAt?: Date | undefined;
|
|
@@ -32232,8 +32333,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32232
32333
|
}, "strip", z.ZodTypeAny, {
|
|
32233
32334
|
id: string;
|
|
32234
32335
|
name: string;
|
|
32235
|
-
designSystemId: string;
|
|
32236
32336
|
workspaceId: string;
|
|
32337
|
+
designSystemId: string;
|
|
32237
32338
|
isEnabled: boolean;
|
|
32238
32339
|
exporterId: string;
|
|
32239
32340
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -32317,8 +32418,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32317
32418
|
}, {
|
|
32318
32419
|
id: string;
|
|
32319
32420
|
name: string;
|
|
32320
|
-
designSystemId: string;
|
|
32321
32421
|
workspaceId: string;
|
|
32422
|
+
designSystemId: string;
|
|
32322
32423
|
isEnabled: boolean;
|
|
32323
32424
|
exporterId: string;
|
|
32324
32425
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -32627,8 +32728,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32627
32728
|
pipelines: {
|
|
32628
32729
|
id: string;
|
|
32629
32730
|
name: string;
|
|
32630
|
-
designSystemId: string;
|
|
32631
32731
|
workspaceId: string;
|
|
32732
|
+
designSystemId: string;
|
|
32632
32733
|
isEnabled: boolean;
|
|
32633
32734
|
exporterId: string;
|
|
32634
32735
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -32927,8 +33028,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32927
33028
|
pipelines: {
|
|
32928
33029
|
id: string;
|
|
32929
33030
|
name: string;
|
|
32930
|
-
designSystemId: string;
|
|
32931
33031
|
workspaceId: string;
|
|
33032
|
+
designSystemId: string;
|
|
32932
33033
|
isEnabled: boolean;
|
|
32933
33034
|
exporterId: string;
|
|
32934
33035
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -33083,8 +33184,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33083
33184
|
id: string;
|
|
33084
33185
|
state: "Active" | "Inactive";
|
|
33085
33186
|
createdAt: Date;
|
|
33086
|
-
accessToken: string;
|
|
33087
33187
|
userId: string;
|
|
33188
|
+
accessToken: string;
|
|
33088
33189
|
integrationId: string;
|
|
33089
33190
|
profile?: {
|
|
33090
33191
|
type?: string | undefined;
|
|
@@ -33113,8 +33214,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33113
33214
|
id: string;
|
|
33114
33215
|
state: "Active" | "Inactive";
|
|
33115
33216
|
createdAt: Date;
|
|
33116
|
-
accessToken: string;
|
|
33117
33217
|
userId: string;
|
|
33218
|
+
accessToken: string;
|
|
33118
33219
|
integrationId: string;
|
|
33119
33220
|
profile?: {
|
|
33120
33221
|
type?: string | null | undefined;
|
|
@@ -33149,8 +33250,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33149
33250
|
id: string;
|
|
33150
33251
|
state: "Active" | "Inactive";
|
|
33151
33252
|
createdAt: Date;
|
|
33152
|
-
accessToken: string;
|
|
33153
33253
|
userId: string;
|
|
33254
|
+
accessToken: string;
|
|
33154
33255
|
integrationId: string;
|
|
33155
33256
|
profile?: {
|
|
33156
33257
|
type?: string | undefined;
|
|
@@ -33185,8 +33286,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33185
33286
|
id: string;
|
|
33186
33287
|
state: "Active" | "Inactive";
|
|
33187
33288
|
createdAt: Date;
|
|
33188
|
-
accessToken: string;
|
|
33189
33289
|
userId: string;
|
|
33290
|
+
accessToken: string;
|
|
33190
33291
|
integrationId: string;
|
|
33191
33292
|
profile?: {
|
|
33192
33293
|
type?: string | null | undefined;
|
|
@@ -33801,8 +33902,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33801
33902
|
comments: {
|
|
33802
33903
|
id: string;
|
|
33803
33904
|
createdAt: Date;
|
|
33804
|
-
authorId: string;
|
|
33805
33905
|
threadId: string;
|
|
33906
|
+
authorId: string;
|
|
33806
33907
|
roomId: string;
|
|
33807
33908
|
body: string;
|
|
33808
33909
|
editedAt?: Date | undefined;
|
|
@@ -34093,8 +34194,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34093
34194
|
pipelines: {
|
|
34094
34195
|
id: string;
|
|
34095
34196
|
name: string;
|
|
34096
|
-
designSystemId: string;
|
|
34097
34197
|
workspaceId: string;
|
|
34198
|
+
designSystemId: string;
|
|
34098
34199
|
isEnabled: boolean;
|
|
34099
34200
|
exporterId: string;
|
|
34100
34201
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -34193,8 +34294,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34193
34294
|
id: string;
|
|
34194
34295
|
state: "Active" | "Inactive";
|
|
34195
34296
|
createdAt: Date;
|
|
34196
|
-
accessToken: string;
|
|
34197
34297
|
userId: string;
|
|
34298
|
+
accessToken: string;
|
|
34198
34299
|
integrationId: string;
|
|
34199
34300
|
profile?: {
|
|
34200
34301
|
type?: string | undefined;
|
|
@@ -34809,8 +34910,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
34809
34910
|
comments: {
|
|
34810
34911
|
id: string;
|
|
34811
34912
|
createdAt: Date;
|
|
34812
|
-
authorId: string;
|
|
34813
34913
|
threadId: string;
|
|
34914
|
+
authorId: string;
|
|
34814
34915
|
roomId: string;
|
|
34815
34916
|
body: string;
|
|
34816
34917
|
editedAt?: Date | undefined;
|
|
@@ -35101,8 +35202,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
35101
35202
|
pipelines: {
|
|
35102
35203
|
id: string;
|
|
35103
35204
|
name: string;
|
|
35104
|
-
designSystemId: string;
|
|
35105
35205
|
workspaceId: string;
|
|
35206
|
+
designSystemId: string;
|
|
35106
35207
|
isEnabled: boolean;
|
|
35107
35208
|
exporterId: string;
|
|
35108
35209
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -35201,8 +35302,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
35201
35302
|
id: string;
|
|
35202
35303
|
state: "Active" | "Inactive";
|
|
35203
35304
|
createdAt: Date;
|
|
35204
|
-
accessToken: string;
|
|
35205
35305
|
userId: string;
|
|
35306
|
+
accessToken: string;
|
|
35206
35307
|
integrationId: string;
|
|
35207
35308
|
profile?: {
|
|
35208
35309
|
type?: string | null | undefined;
|
|
@@ -42128,8 +42229,8 @@ declare const DocumentationComment: z.ZodObject<{
|
|
|
42128
42229
|
}, "strip", z.ZodTypeAny, {
|
|
42129
42230
|
id: string;
|
|
42130
42231
|
createdAt: Date;
|
|
42131
|
-
authorId: string;
|
|
42132
42232
|
threadId: string;
|
|
42233
|
+
authorId: string;
|
|
42133
42234
|
roomId: string;
|
|
42134
42235
|
body: string;
|
|
42135
42236
|
editedAt?: Date | undefined;
|
|
@@ -42137,8 +42238,8 @@ declare const DocumentationComment: z.ZodObject<{
|
|
|
42137
42238
|
}, {
|
|
42138
42239
|
id: string;
|
|
42139
42240
|
createdAt: Date;
|
|
42140
|
-
authorId: string;
|
|
42141
42241
|
threadId: string;
|
|
42242
|
+
authorId: string;
|
|
42142
42243
|
roomId: string;
|
|
42143
42244
|
body: string;
|
|
42144
42245
|
editedAt?: Date | undefined;
|
|
@@ -142013,24 +142114,24 @@ declare const UpdateMembershipRolesInput: z.ZodObject<{
|
|
|
142013
142114
|
role: z.ZodNativeEnum<z.Values<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>>;
|
|
142014
142115
|
isPrimaryOwner: z.ZodOptional<z.ZodBoolean>;
|
|
142015
142116
|
}, "strip", z.ZodTypeAny, {
|
|
142016
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142017
142117
|
userId: string;
|
|
142118
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142018
142119
|
isPrimaryOwner?: boolean | undefined;
|
|
142019
142120
|
}, {
|
|
142020
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142021
142121
|
userId: string;
|
|
142122
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142022
142123
|
isPrimaryOwner?: boolean | undefined;
|
|
142023
142124
|
}>, "many">;
|
|
142024
142125
|
}, "strip", z.ZodTypeAny, {
|
|
142025
142126
|
members: {
|
|
142026
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142027
142127
|
userId: string;
|
|
142128
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142028
142129
|
isPrimaryOwner?: boolean | undefined;
|
|
142029
142130
|
}[];
|
|
142030
142131
|
}, {
|
|
142031
142132
|
members: {
|
|
142032
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142033
142133
|
userId: string;
|
|
142134
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142034
142135
|
isPrimaryOwner?: boolean | undefined;
|
|
142035
142136
|
}[];
|
|
142036
142137
|
}>;
|
|
@@ -146260,15 +146361,15 @@ declare const DesignSystemMembership: z.ZodObject<{
|
|
|
146260
146361
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
146261
146362
|
}, "strip", z.ZodTypeAny, {
|
|
146262
146363
|
id: string;
|
|
146263
|
-
designSystemId: string;
|
|
146264
146364
|
userId: string;
|
|
146365
|
+
designSystemId: string;
|
|
146265
146366
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
146266
146367
|
workspaceMembershipId: string;
|
|
146267
146368
|
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
146268
146369
|
}, {
|
|
146269
146370
|
id: string;
|
|
146270
|
-
designSystemId: string;
|
|
146271
146371
|
userId: string;
|
|
146372
|
+
designSystemId: string;
|
|
146272
146373
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
146273
146374
|
workspaceMembershipId: string;
|
|
146274
146375
|
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
@@ -146300,15 +146401,15 @@ declare const DesignSystemMembers: z.ZodObject<{
|
|
|
146300
146401
|
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
146301
146402
|
}, "strip", z.ZodTypeAny, {
|
|
146302
146403
|
id: string;
|
|
146303
|
-
designSystemId: string;
|
|
146304
146404
|
userId: string;
|
|
146405
|
+
designSystemId: string;
|
|
146305
146406
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
146306
146407
|
workspaceMembershipId: string;
|
|
146307
146408
|
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
146308
146409
|
}, {
|
|
146309
146410
|
id: string;
|
|
146310
|
-
designSystemId: string;
|
|
146311
146411
|
userId: string;
|
|
146412
|
+
designSystemId: string;
|
|
146312
146413
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
146313
146414
|
workspaceMembershipId: string;
|
|
146314
146415
|
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
@@ -146342,8 +146443,8 @@ declare const DesignSystemMembers: z.ZodObject<{
|
|
|
146342
146443
|
}[];
|
|
146343
146444
|
members: {
|
|
146344
146445
|
id: string;
|
|
146345
|
-
designSystemId: string;
|
|
146346
146446
|
userId: string;
|
|
146447
|
+
designSystemId: string;
|
|
146347
146448
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
146348
146449
|
workspaceMembershipId: string;
|
|
146349
146450
|
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
@@ -146358,8 +146459,8 @@ declare const DesignSystemMembers: z.ZodObject<{
|
|
|
146358
146459
|
}[];
|
|
146359
146460
|
members: {
|
|
146360
146461
|
id: string;
|
|
146361
|
-
designSystemId: string;
|
|
146362
146462
|
userId: string;
|
|
146463
|
+
designSystemId: string;
|
|
146363
146464
|
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
146364
146465
|
workspaceMembershipId: string;
|
|
146365
146466
|
designSystemRole?: "Admin" | "Creator" | "Viewer" | "Contributor" | undefined;
|
|
@@ -154539,26 +154640,26 @@ declare const Event: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
154539
154640
|
versionId: z.ZodString;
|
|
154540
154641
|
}, "strip", z.ZodTypeAny, {
|
|
154541
154642
|
type: "DesignSystemVersionReleased";
|
|
154643
|
+
workspaceId: string;
|
|
154542
154644
|
designSystemId: string;
|
|
154543
154645
|
versionId: string;
|
|
154544
|
-
workspaceId: string;
|
|
154545
154646
|
}, {
|
|
154546
154647
|
type: "DesignSystemVersionReleased";
|
|
154648
|
+
workspaceId: string;
|
|
154547
154649
|
designSystemId: string;
|
|
154548
154650
|
versionId: string;
|
|
154549
|
-
workspaceId: string;
|
|
154550
154651
|
}>, z.ZodObject<{
|
|
154551
154652
|
type: z.ZodLiteral<"DataSourceImported">;
|
|
154552
154653
|
workspaceId: z.ZodString;
|
|
154553
154654
|
designSystemId: z.ZodString;
|
|
154554
154655
|
}, "strip", z.ZodTypeAny, {
|
|
154555
154656
|
type: "DataSourceImported";
|
|
154556
|
-
designSystemId: string;
|
|
154557
154657
|
workspaceId: string;
|
|
154658
|
+
designSystemId: string;
|
|
154558
154659
|
}, {
|
|
154559
154660
|
type: "DataSourceImported";
|
|
154560
|
-
designSystemId: string;
|
|
154561
154661
|
workspaceId: string;
|
|
154662
|
+
designSystemId: string;
|
|
154562
154663
|
}>, z.ZodObject<{
|
|
154563
154664
|
type: z.ZodLiteral<"DocumentationPublished">;
|
|
154564
154665
|
workspaceId: z.ZodString;
|
|
@@ -154566,14 +154667,14 @@ declare const Event: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
154566
154667
|
versionId: z.ZodString;
|
|
154567
154668
|
}, "strip", z.ZodTypeAny, {
|
|
154568
154669
|
type: "DocumentationPublished";
|
|
154670
|
+
workspaceId: string;
|
|
154569
154671
|
designSystemId: string;
|
|
154570
154672
|
versionId: string;
|
|
154571
|
-
workspaceId: string;
|
|
154572
154673
|
}, {
|
|
154573
154674
|
type: "DocumentationPublished";
|
|
154675
|
+
workspaceId: string;
|
|
154574
154676
|
designSystemId: string;
|
|
154575
154677
|
versionId: string;
|
|
154576
|
-
workspaceId: string;
|
|
154577
154678
|
}>]>;
|
|
154578
154679
|
type Event = z.infer<typeof Event>;
|
|
154579
154680
|
|
|
@@ -154583,12 +154684,12 @@ declare const EventDataSourceImported: z.ZodObject<{
|
|
|
154583
154684
|
designSystemId: z.ZodString;
|
|
154584
154685
|
}, "strip", z.ZodTypeAny, {
|
|
154585
154686
|
type: "DataSourceImported";
|
|
154586
|
-
designSystemId: string;
|
|
154587
154687
|
workspaceId: string;
|
|
154688
|
+
designSystemId: string;
|
|
154588
154689
|
}, {
|
|
154589
154690
|
type: "DataSourceImported";
|
|
154590
|
-
designSystemId: string;
|
|
154591
154691
|
workspaceId: string;
|
|
154692
|
+
designSystemId: string;
|
|
154592
154693
|
}>;
|
|
154593
154694
|
type EventDataSourceImported = z.infer<typeof EventDataSourceImported>;
|
|
154594
154695
|
|
|
@@ -154599,14 +154700,14 @@ declare const EventDocumentationPublished: z.ZodObject<{
|
|
|
154599
154700
|
versionId: z.ZodString;
|
|
154600
154701
|
}, "strip", z.ZodTypeAny, {
|
|
154601
154702
|
type: "DocumentationPublished";
|
|
154703
|
+
workspaceId: string;
|
|
154602
154704
|
designSystemId: string;
|
|
154603
154705
|
versionId: string;
|
|
154604
|
-
workspaceId: string;
|
|
154605
154706
|
}, {
|
|
154606
154707
|
type: "DocumentationPublished";
|
|
154708
|
+
workspaceId: string;
|
|
154607
154709
|
designSystemId: string;
|
|
154608
154710
|
versionId: string;
|
|
154609
|
-
workspaceId: string;
|
|
154610
154711
|
}>;
|
|
154611
154712
|
type EventDocumentationPublished = z.infer<typeof EventDocumentationPublished>;
|
|
154612
154713
|
|
|
@@ -154617,14 +154718,14 @@ declare const EventVersionReleased: z.ZodObject<{
|
|
|
154617
154718
|
versionId: z.ZodString;
|
|
154618
154719
|
}, "strip", z.ZodTypeAny, {
|
|
154619
154720
|
type: "DesignSystemVersionReleased";
|
|
154721
|
+
workspaceId: string;
|
|
154620
154722
|
designSystemId: string;
|
|
154621
154723
|
versionId: string;
|
|
154622
|
-
workspaceId: string;
|
|
154623
154724
|
}, {
|
|
154624
154725
|
type: "DesignSystemVersionReleased";
|
|
154726
|
+
workspaceId: string;
|
|
154625
154727
|
designSystemId: string;
|
|
154626
154728
|
versionId: string;
|
|
154627
|
-
workspaceId: string;
|
|
154628
154729
|
}>;
|
|
154629
154730
|
type EventVersionReleased = z.infer<typeof EventVersionReleased>;
|
|
154630
154731
|
|
|
@@ -155796,14 +155897,14 @@ declare const ExporterFunctionPayload: z.ZodObject<{
|
|
|
155796
155897
|
workspaceId: z.ZodString;
|
|
155797
155898
|
exporterId: z.ZodString;
|
|
155798
155899
|
}, "strip", z.ZodTypeAny, {
|
|
155799
|
-
designSystemId: string;
|
|
155800
155900
|
workspaceId: string;
|
|
155901
|
+
designSystemId: string;
|
|
155801
155902
|
exporterId: string;
|
|
155802
155903
|
exportJobId: string;
|
|
155803
155904
|
exportContextId: string;
|
|
155804
155905
|
}, {
|
|
155805
|
-
designSystemId: string;
|
|
155806
155906
|
workspaceId: string;
|
|
155907
|
+
designSystemId: string;
|
|
155807
155908
|
exporterId: string;
|
|
155808
155909
|
exportJobId: string;
|
|
155809
155910
|
exportContextId: string;
|
|
@@ -157911,9 +158012,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
157911
158012
|
status: "Timeout" | "InProgress" | "Success" | "Failed";
|
|
157912
158013
|
id: string;
|
|
157913
158014
|
createdAt: Date;
|
|
158015
|
+
workspaceId: string;
|
|
157914
158016
|
designSystemId: string;
|
|
157915
158017
|
designSystemVersionId: string;
|
|
157916
|
-
workspaceId: string;
|
|
157917
158018
|
exporterId: string;
|
|
157918
158019
|
brandId?: string | undefined;
|
|
157919
158020
|
themePersistentIds?: string[] | undefined;
|
|
@@ -158033,9 +158134,9 @@ declare const ExportJob: z.ZodObject<{
|
|
|
158033
158134
|
status: "Timeout" | "InProgress" | "Success" | "Failed";
|
|
158034
158135
|
id: string;
|
|
158035
158136
|
createdAt: Date;
|
|
158137
|
+
workspaceId: string;
|
|
158036
158138
|
designSystemId: string;
|
|
158037
158139
|
designSystemVersionId: string;
|
|
158038
|
-
workspaceId: string;
|
|
158039
158140
|
exporterId: string;
|
|
158040
158141
|
brandId?: string | undefined;
|
|
158041
158142
|
themePersistentIds?: string[] | undefined;
|
|
@@ -158220,12 +158321,12 @@ declare const ExporterWorkspaceMembership: z.ZodObject<{
|
|
|
158220
158321
|
}, "strip", z.ZodTypeAny, {
|
|
158221
158322
|
id: string;
|
|
158222
158323
|
workspaceId: string;
|
|
158223
|
-
role: "
|
|
158324
|
+
role: "User" | "Owner" | "OwnerArchived";
|
|
158224
158325
|
exporterId: string;
|
|
158225
158326
|
}, {
|
|
158226
158327
|
id: string;
|
|
158227
158328
|
workspaceId: string;
|
|
158228
|
-
role: "
|
|
158329
|
+
role: "User" | "Owner" | "OwnerArchived";
|
|
158229
158330
|
exporterId: string;
|
|
158230
158331
|
}>;
|
|
158231
158332
|
type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
|
|
@@ -161222,8 +161323,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161222
161323
|
}, "strip", z.ZodTypeAny, {
|
|
161223
161324
|
id: string;
|
|
161224
161325
|
name: string;
|
|
161225
|
-
designSystemId: string;
|
|
161226
161326
|
workspaceId: string;
|
|
161327
|
+
designSystemId: string;
|
|
161227
161328
|
isEnabled: boolean;
|
|
161228
161329
|
exporterId: string;
|
|
161229
161330
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -161307,8 +161408,8 @@ declare const Pipeline: z.ZodObject<{
|
|
|
161307
161408
|
}, {
|
|
161308
161409
|
id: string;
|
|
161309
161410
|
name: string;
|
|
161310
|
-
designSystemId: string;
|
|
161311
161411
|
workspaceId: string;
|
|
161412
|
+
designSystemId: string;
|
|
161312
161413
|
isEnabled: boolean;
|
|
161313
161414
|
exporterId: string;
|
|
161314
161415
|
eventType: "None" | "OnVersionReleased" | "OnHeadChanged" | "OnSourceUpdated" | "OnDocumentationPublished";
|
|
@@ -161837,8 +161938,8 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
161837
161938
|
id: string;
|
|
161838
161939
|
state: "Active" | "Inactive";
|
|
161839
161940
|
createdAt: Date;
|
|
161840
|
-
accessToken: string;
|
|
161841
161941
|
userId: string;
|
|
161942
|
+
accessToken: string;
|
|
161842
161943
|
integrationId: string;
|
|
161843
161944
|
profile?: {
|
|
161844
161945
|
type?: string | undefined;
|
|
@@ -161867,8 +161968,8 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
161867
161968
|
id: string;
|
|
161868
161969
|
state: "Active" | "Inactive";
|
|
161869
161970
|
createdAt: Date;
|
|
161870
|
-
accessToken: string;
|
|
161871
161971
|
userId: string;
|
|
161972
|
+
accessToken: string;
|
|
161872
161973
|
integrationId: string;
|
|
161873
161974
|
profile?: {
|
|
161874
161975
|
type?: string | null | undefined;
|
|
@@ -161967,8 +162068,8 @@ declare const Integration: z.ZodObject<{
|
|
|
161967
162068
|
id: string;
|
|
161968
162069
|
state: "Active" | "Inactive";
|
|
161969
162070
|
createdAt: Date;
|
|
161970
|
-
accessToken: string;
|
|
161971
162071
|
userId: string;
|
|
162072
|
+
accessToken: string;
|
|
161972
162073
|
integrationId: string;
|
|
161973
162074
|
profile?: {
|
|
161974
162075
|
type?: string | undefined;
|
|
@@ -161997,8 +162098,8 @@ declare const Integration: z.ZodObject<{
|
|
|
161997
162098
|
id: string;
|
|
161998
162099
|
state: "Active" | "Inactive";
|
|
161999
162100
|
createdAt: Date;
|
|
162000
|
-
accessToken: string;
|
|
162001
162101
|
userId: string;
|
|
162102
|
+
accessToken: string;
|
|
162002
162103
|
integrationId: string;
|
|
162003
162104
|
profile?: {
|
|
162004
162105
|
type?: string | null | undefined;
|
|
@@ -162033,8 +162134,8 @@ declare const Integration: z.ZodObject<{
|
|
|
162033
162134
|
id: string;
|
|
162034
162135
|
state: "Active" | "Inactive";
|
|
162035
162136
|
createdAt: Date;
|
|
162036
|
-
accessToken: string;
|
|
162037
162137
|
userId: string;
|
|
162138
|
+
accessToken: string;
|
|
162038
162139
|
integrationId: string;
|
|
162039
162140
|
profile?: {
|
|
162040
162141
|
type?: string | undefined;
|
|
@@ -162069,8 +162170,8 @@ declare const Integration: z.ZodObject<{
|
|
|
162069
162170
|
id: string;
|
|
162070
162171
|
state: "Active" | "Inactive";
|
|
162071
162172
|
createdAt: Date;
|
|
162072
|
-
accessToken: string;
|
|
162073
162173
|
userId: string;
|
|
162174
|
+
accessToken: string;
|
|
162074
162175
|
integrationId: string;
|
|
162075
162176
|
profile?: {
|
|
162076
162177
|
type?: string | null | undefined;
|
|
@@ -162207,18 +162308,18 @@ declare const IntegrationTokenSchemaOld: z.ZodObject<{
|
|
|
162207
162308
|
id: string;
|
|
162208
162309
|
refreshToken: string;
|
|
162209
162310
|
expiresAt: Date;
|
|
162311
|
+
userId: string;
|
|
162210
162312
|
scope: string;
|
|
162211
162313
|
accessToken: string;
|
|
162212
|
-
userId: string;
|
|
162213
162314
|
provider: OAuthProviderNames;
|
|
162214
162315
|
externalUserId?: string | null | undefined;
|
|
162215
162316
|
}, {
|
|
162216
162317
|
id: string;
|
|
162217
162318
|
refreshToken: string;
|
|
162218
162319
|
expiresAt: Date;
|
|
162320
|
+
userId: string;
|
|
162219
162321
|
scope: string;
|
|
162220
162322
|
accessToken: string;
|
|
162221
|
-
userId: string;
|
|
162222
162323
|
provider: OAuthProviderNames;
|
|
162223
162324
|
externalUserId?: string | null | undefined;
|
|
162224
162325
|
}>;
|
|
@@ -191001,24 +191102,24 @@ declare const PersonalAccessToken: z.ZodObject<{
|
|
|
191001
191102
|
id: string;
|
|
191002
191103
|
name: string;
|
|
191003
191104
|
createdAt: Date;
|
|
191004
|
-
hidden: boolean;
|
|
191005
191105
|
userId: string;
|
|
191106
|
+
hidden: boolean;
|
|
191006
191107
|
token: string;
|
|
191108
|
+
workspaceId?: string | undefined;
|
|
191007
191109
|
designSystemId?: string | undefined;
|
|
191008
191110
|
scope?: string | undefined;
|
|
191009
|
-
workspaceId?: string | undefined;
|
|
191010
191111
|
workspaceRole?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
191011
191112
|
expireAt?: Date | undefined;
|
|
191012
191113
|
}, {
|
|
191013
191114
|
id: string;
|
|
191014
191115
|
name: string;
|
|
191015
191116
|
createdAt: Date;
|
|
191016
|
-
hidden: boolean;
|
|
191017
191117
|
userId: string;
|
|
191118
|
+
hidden: boolean;
|
|
191018
191119
|
token: string;
|
|
191120
|
+
workspaceId?: string | undefined;
|
|
191019
191121
|
designSystemId?: string | undefined;
|
|
191020
191122
|
scope?: string | undefined;
|
|
191021
|
-
workspaceId?: string | undefined;
|
|
191022
191123
|
workspaceRole?: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor" | undefined;
|
|
191023
191124
|
expireAt?: Date | undefined;
|
|
191024
191125
|
}>;
|
|
@@ -191896,4 +191997,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
191896
191997
|
token: PersonalAccessToken;
|
|
191897
191998
|
};
|
|
191898
191999
|
|
|
191899
|
-
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 };
|