@supernova-studio/client 1.82.0 → 1.82.2
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 +241 -128
- package/dist/index.d.ts +241 -128
- package/dist/index.js +16 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -143449,6 +143449,93 @@ declare const DTOFeatureMessageAttachments: z$1.ZodObject<{
|
|
|
143449
143449
|
iterationId?: string | undefined;
|
|
143450
143450
|
}>;
|
|
143451
143451
|
type DTOFeatureMessageAttachments = z$1.infer<typeof DTOFeatureMessageAttachments>;
|
|
143452
|
+
declare const DTOProvisionFeatureSandboxInput: z$1.ZodObject<{
|
|
143453
|
+
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
143454
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
143455
|
+
parentMessageId?: string | undefined;
|
|
143456
|
+
}, {
|
|
143457
|
+
parentMessageId?: string | undefined;
|
|
143458
|
+
}>;
|
|
143459
|
+
type DTOProvisionFeatureSandboxInput = z$1.infer<typeof DTOProvisionFeatureSandboxInput>;
|
|
143460
|
+
declare const DTOProvisionFeatureSandboxResponse: z$1.ZodObject<{
|
|
143461
|
+
iterationId: z$1.ZodString;
|
|
143462
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
143463
|
+
iterationId: string;
|
|
143464
|
+
}, {
|
|
143465
|
+
iterationId: string;
|
|
143466
|
+
}>;
|
|
143467
|
+
type DTOProvisionFeatureSandboxResponse = z$1.infer<typeof DTOProvisionFeatureSandboxResponse>;
|
|
143468
|
+
declare const DTOKeepAliveFeatureSandboxResponse: z$1.ZodObject<{
|
|
143469
|
+
sandbox: z$1.ZodObject<{
|
|
143470
|
+
id: z$1.ZodString;
|
|
143471
|
+
url: z$1.ZodString;
|
|
143472
|
+
parentMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
143473
|
+
currentIterationId: z$1.ZodString;
|
|
143474
|
+
featureId: z$1.ZodString;
|
|
143475
|
+
expiresAt: z$1.ZodOptional<z$1.ZodString>;
|
|
143476
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
143477
|
+
/** At what stage the error has occured */
|
|
143478
|
+
stage: z$1.ZodEnum<["PackageInstall", "HealthCheck", "Build", "Unknown"]>;
|
|
143479
|
+
/** We will use this in "fix with AI" */
|
|
143480
|
+
errorDescription: z$1.ZodString;
|
|
143481
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
143482
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
143483
|
+
errorDescription: string;
|
|
143484
|
+
}, {
|
|
143485
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
143486
|
+
errorDescription: string;
|
|
143487
|
+
}>>;
|
|
143488
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
143489
|
+
id: string;
|
|
143490
|
+
url: string;
|
|
143491
|
+
featureId: string;
|
|
143492
|
+
currentIterationId: string;
|
|
143493
|
+
error?: {
|
|
143494
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
143495
|
+
errorDescription: string;
|
|
143496
|
+
} | undefined;
|
|
143497
|
+
expiresAt?: string | undefined;
|
|
143498
|
+
parentMessageId?: string | undefined;
|
|
143499
|
+
}, {
|
|
143500
|
+
id: string;
|
|
143501
|
+
url: string;
|
|
143502
|
+
featureId: string;
|
|
143503
|
+
currentIterationId: string;
|
|
143504
|
+
error?: {
|
|
143505
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
143506
|
+
errorDescription: string;
|
|
143507
|
+
} | undefined;
|
|
143508
|
+
expiresAt?: string | undefined;
|
|
143509
|
+
parentMessageId?: string | undefined;
|
|
143510
|
+
}>;
|
|
143511
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
143512
|
+
sandbox: {
|
|
143513
|
+
id: string;
|
|
143514
|
+
url: string;
|
|
143515
|
+
featureId: string;
|
|
143516
|
+
currentIterationId: string;
|
|
143517
|
+
error?: {
|
|
143518
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
143519
|
+
errorDescription: string;
|
|
143520
|
+
} | undefined;
|
|
143521
|
+
expiresAt?: string | undefined;
|
|
143522
|
+
parentMessageId?: string | undefined;
|
|
143523
|
+
};
|
|
143524
|
+
}, {
|
|
143525
|
+
sandbox: {
|
|
143526
|
+
id: string;
|
|
143527
|
+
url: string;
|
|
143528
|
+
featureId: string;
|
|
143529
|
+
currentIterationId: string;
|
|
143530
|
+
error?: {
|
|
143531
|
+
stage: "Build" | "PackageInstall" | "Unknown" | "HealthCheck";
|
|
143532
|
+
errorDescription: string;
|
|
143533
|
+
} | undefined;
|
|
143534
|
+
expiresAt?: string | undefined;
|
|
143535
|
+
parentMessageId?: string | undefined;
|
|
143536
|
+
};
|
|
143537
|
+
}>;
|
|
143538
|
+
type DTOKeepAliveFeatureSandboxResponse = z$1.infer<typeof DTOKeepAliveFeatureSandboxResponse>;
|
|
143452
143539
|
declare const DTOFeatureMessageCreateInput: z$1.ZodObject<Pick<{
|
|
143453
143540
|
id: z$1.ZodString;
|
|
143454
143541
|
/**
|
|
@@ -158238,7 +158325,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
158238
158325
|
}[] | undefined;
|
|
158239
158326
|
templateId?: string | undefined;
|
|
158240
158327
|
}>>;
|
|
158241
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
158328
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
158242
158329
|
prompt: z$1.ZodString;
|
|
158243
158330
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
158244
158331
|
xpath: z$1.ZodString;
|
|
@@ -158262,7 +158349,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
158262
158349
|
line: string;
|
|
158263
158350
|
}[];
|
|
158264
158351
|
prompt: string;
|
|
158265
|
-
}>>;
|
|
158352
|
+
}>, "many">>;
|
|
158266
158353
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
158267
158354
|
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
158268
158355
|
createdAt: z$1.ZodString;
|
|
@@ -158302,7 +158389,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
158302
158389
|
line: string;
|
|
158303
158390
|
}[];
|
|
158304
158391
|
prompt: string;
|
|
158305
|
-
} | undefined;
|
|
158392
|
+
}[] | undefined;
|
|
158306
158393
|
promptMetadata?: Record<string, any> | undefined;
|
|
158307
158394
|
}, {
|
|
158308
158395
|
id: string;
|
|
@@ -158322,7 +158409,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
158322
158409
|
line: string;
|
|
158323
158410
|
}[];
|
|
158324
158411
|
prompt: string;
|
|
158325
|
-
} | undefined;
|
|
158412
|
+
}[] | undefined;
|
|
158326
158413
|
promptMetadata?: Record<string, any> | undefined;
|
|
158327
158414
|
}>;
|
|
158328
158415
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -158346,7 +158433,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
158346
158433
|
line: string;
|
|
158347
158434
|
}[];
|
|
158348
158435
|
prompt: string;
|
|
158349
|
-
} | undefined;
|
|
158436
|
+
}[] | undefined;
|
|
158350
158437
|
promptMetadata?: Record<string, any> | undefined;
|
|
158351
158438
|
};
|
|
158352
158439
|
name?: string | undefined;
|
|
@@ -158373,7 +158460,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
158373
158460
|
line: string;
|
|
158374
158461
|
}[];
|
|
158375
158462
|
prompt: string;
|
|
158376
|
-
} | undefined;
|
|
158463
|
+
}[] | undefined;
|
|
158377
158464
|
promptMetadata?: Record<string, any> | undefined;
|
|
158378
158465
|
};
|
|
158379
158466
|
name?: string | undefined;
|
|
@@ -158403,7 +158490,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
158403
158490
|
line: string;
|
|
158404
158491
|
}[];
|
|
158405
158492
|
prompt: string;
|
|
158406
|
-
} | undefined;
|
|
158493
|
+
}[] | undefined;
|
|
158407
158494
|
promptMetadata?: Record<string, any> | undefined;
|
|
158408
158495
|
};
|
|
158409
158496
|
name?: string | undefined;
|
|
@@ -158433,7 +158520,7 @@ declare const DTOForgeProjectActionFeatureCreate: z$1.ZodObject<{
|
|
|
158433
158520
|
line: string;
|
|
158434
158521
|
}[];
|
|
158435
158522
|
prompt: string;
|
|
158436
|
-
} | undefined;
|
|
158523
|
+
}[] | undefined;
|
|
158437
158524
|
promptMetadata?: Record<string, any> | undefined;
|
|
158438
158525
|
};
|
|
158439
158526
|
name?: string | undefined;
|
|
@@ -159165,7 +159252,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
159165
159252
|
}[] | undefined;
|
|
159166
159253
|
templateId?: string | undefined;
|
|
159167
159254
|
}>>;
|
|
159168
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
159255
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
159169
159256
|
prompt: z$1.ZodString;
|
|
159170
159257
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
159171
159258
|
xpath: z$1.ZodString;
|
|
@@ -159189,7 +159276,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
159189
159276
|
line: string;
|
|
159190
159277
|
}[];
|
|
159191
159278
|
prompt: string;
|
|
159192
|
-
}>>;
|
|
159279
|
+
}>, "many">>;
|
|
159193
159280
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
159194
159281
|
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
159195
159282
|
createdAt: z$1.ZodString;
|
|
@@ -159229,7 +159316,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
159229
159316
|
line: string;
|
|
159230
159317
|
}[];
|
|
159231
159318
|
prompt: string;
|
|
159232
|
-
} | undefined;
|
|
159319
|
+
}[] | undefined;
|
|
159233
159320
|
promptMetadata?: Record<string, any> | undefined;
|
|
159234
159321
|
}, {
|
|
159235
159322
|
id: string;
|
|
@@ -159249,7 +159336,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
159249
159336
|
line: string;
|
|
159250
159337
|
}[];
|
|
159251
159338
|
prompt: string;
|
|
159252
|
-
} | undefined;
|
|
159339
|
+
}[] | undefined;
|
|
159253
159340
|
promptMetadata?: Record<string, any> | undefined;
|
|
159254
159341
|
}>>;
|
|
159255
159342
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -159275,7 +159362,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
159275
159362
|
line: string;
|
|
159276
159363
|
}[];
|
|
159277
159364
|
prompt: string;
|
|
159278
|
-
} | undefined;
|
|
159365
|
+
}[] | undefined;
|
|
159279
159366
|
promptMetadata?: Record<string, any> | undefined;
|
|
159280
159367
|
} | undefined;
|
|
159281
159368
|
}, {
|
|
@@ -159301,7 +159388,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
159301
159388
|
line: string;
|
|
159302
159389
|
}[];
|
|
159303
159390
|
prompt: string;
|
|
159304
|
-
} | undefined;
|
|
159391
|
+
}[] | undefined;
|
|
159305
159392
|
promptMetadata?: Record<string, any> | undefined;
|
|
159306
159393
|
} | undefined;
|
|
159307
159394
|
}>;
|
|
@@ -159330,7 +159417,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
159330
159417
|
line: string;
|
|
159331
159418
|
}[];
|
|
159332
159419
|
prompt: string;
|
|
159333
|
-
} | undefined;
|
|
159420
|
+
}[] | undefined;
|
|
159334
159421
|
promptMetadata?: Record<string, any> | undefined;
|
|
159335
159422
|
} | undefined;
|
|
159336
159423
|
};
|
|
@@ -159359,7 +159446,7 @@ declare const DTOForgeProjectActionArtifactCreate: z$1.ZodObject<{
|
|
|
159359
159446
|
line: string;
|
|
159360
159447
|
}[];
|
|
159361
159448
|
prompt: string;
|
|
159362
|
-
} | undefined;
|
|
159449
|
+
}[] | undefined;
|
|
159363
159450
|
promptMetadata?: Record<string, any> | undefined;
|
|
159364
159451
|
} | undefined;
|
|
159365
159452
|
};
|
|
@@ -160182,7 +160269,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
160182
160269
|
}[] | undefined;
|
|
160183
160270
|
templateId?: string | undefined;
|
|
160184
160271
|
}>>;
|
|
160185
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
160272
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
160186
160273
|
prompt: z$1.ZodString;
|
|
160187
160274
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
160188
160275
|
xpath: z$1.ZodString;
|
|
@@ -160206,7 +160293,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
160206
160293
|
line: string;
|
|
160207
160294
|
}[];
|
|
160208
160295
|
prompt: string;
|
|
160209
|
-
}>>;
|
|
160296
|
+
}>, "many">>;
|
|
160210
160297
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
160211
160298
|
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
160212
160299
|
createdAt: z$1.ZodString;
|
|
@@ -160246,7 +160333,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
160246
160333
|
line: string;
|
|
160247
160334
|
}[];
|
|
160248
160335
|
prompt: string;
|
|
160249
|
-
} | undefined;
|
|
160336
|
+
}[] | undefined;
|
|
160250
160337
|
promptMetadata?: Record<string, any> | undefined;
|
|
160251
160338
|
}, {
|
|
160252
160339
|
id: string;
|
|
@@ -160266,7 +160353,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
160266
160353
|
line: string;
|
|
160267
160354
|
}[];
|
|
160268
160355
|
prompt: string;
|
|
160269
|
-
} | undefined;
|
|
160356
|
+
}[] | undefined;
|
|
160270
160357
|
promptMetadata?: Record<string, any> | undefined;
|
|
160271
160358
|
}>;
|
|
160272
160359
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -160290,7 +160377,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
160290
160377
|
line: string;
|
|
160291
160378
|
}[];
|
|
160292
160379
|
prompt: string;
|
|
160293
|
-
} | undefined;
|
|
160380
|
+
}[] | undefined;
|
|
160294
160381
|
promptMetadata?: Record<string, any> | undefined;
|
|
160295
160382
|
};
|
|
160296
160383
|
name?: string | undefined;
|
|
@@ -160317,7 +160404,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
160317
160404
|
line: string;
|
|
160318
160405
|
}[];
|
|
160319
160406
|
prompt: string;
|
|
160320
|
-
} | undefined;
|
|
160407
|
+
}[] | undefined;
|
|
160321
160408
|
promptMetadata?: Record<string, any> | undefined;
|
|
160322
160409
|
};
|
|
160323
160410
|
name?: string | undefined;
|
|
@@ -160347,7 +160434,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
160347
160434
|
line: string;
|
|
160348
160435
|
}[];
|
|
160349
160436
|
prompt: string;
|
|
160350
|
-
} | undefined;
|
|
160437
|
+
}[] | undefined;
|
|
160351
160438
|
promptMetadata?: Record<string, any> | undefined;
|
|
160352
160439
|
};
|
|
160353
160440
|
name?: string | undefined;
|
|
@@ -160377,7 +160464,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
160377
160464
|
line: string;
|
|
160378
160465
|
}[];
|
|
160379
160466
|
prompt: string;
|
|
160380
|
-
} | undefined;
|
|
160467
|
+
}[] | undefined;
|
|
160381
160468
|
promptMetadata?: Record<string, any> | undefined;
|
|
160382
160469
|
};
|
|
160383
160470
|
name?: string | undefined;
|
|
@@ -161101,7 +161188,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
161101
161188
|
}[] | undefined;
|
|
161102
161189
|
templateId?: string | undefined;
|
|
161103
161190
|
}>>;
|
|
161104
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
161191
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
161105
161192
|
prompt: z$1.ZodString;
|
|
161106
161193
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
161107
161194
|
xpath: z$1.ZodString;
|
|
@@ -161125,7 +161212,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
161125
161212
|
line: string;
|
|
161126
161213
|
}[];
|
|
161127
161214
|
prompt: string;
|
|
161128
|
-
}>>;
|
|
161215
|
+
}>, "many">>;
|
|
161129
161216
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
161130
161217
|
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
161131
161218
|
createdAt: z$1.ZodString;
|
|
@@ -161165,7 +161252,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
161165
161252
|
line: string;
|
|
161166
161253
|
}[];
|
|
161167
161254
|
prompt: string;
|
|
161168
|
-
} | undefined;
|
|
161255
|
+
}[] | undefined;
|
|
161169
161256
|
promptMetadata?: Record<string, any> | undefined;
|
|
161170
161257
|
}, {
|
|
161171
161258
|
id: string;
|
|
@@ -161185,7 +161272,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
161185
161272
|
line: string;
|
|
161186
161273
|
}[];
|
|
161187
161274
|
prompt: string;
|
|
161188
|
-
} | undefined;
|
|
161275
|
+
}[] | undefined;
|
|
161189
161276
|
promptMetadata?: Record<string, any> | undefined;
|
|
161190
161277
|
}>>;
|
|
161191
161278
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -161211,7 +161298,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
161211
161298
|
line: string;
|
|
161212
161299
|
}[];
|
|
161213
161300
|
prompt: string;
|
|
161214
|
-
} | undefined;
|
|
161301
|
+
}[] | undefined;
|
|
161215
161302
|
promptMetadata?: Record<string, any> | undefined;
|
|
161216
161303
|
} | undefined;
|
|
161217
161304
|
}, {
|
|
@@ -161237,7 +161324,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
161237
161324
|
line: string;
|
|
161238
161325
|
}[];
|
|
161239
161326
|
prompt: string;
|
|
161240
|
-
} | undefined;
|
|
161327
|
+
}[] | undefined;
|
|
161241
161328
|
promptMetadata?: Record<string, any> | undefined;
|
|
161242
161329
|
} | undefined;
|
|
161243
161330
|
}>;
|
|
@@ -161266,7 +161353,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
161266
161353
|
line: string;
|
|
161267
161354
|
}[];
|
|
161268
161355
|
prompt: string;
|
|
161269
|
-
} | undefined;
|
|
161356
|
+
}[] | undefined;
|
|
161270
161357
|
promptMetadata?: Record<string, any> | undefined;
|
|
161271
161358
|
} | undefined;
|
|
161272
161359
|
};
|
|
@@ -161295,7 +161382,7 @@ declare const DTOForgeProjectAction: z$1.ZodIntersection<z$1.ZodDiscriminatedUni
|
|
|
161295
161382
|
line: string;
|
|
161296
161383
|
}[];
|
|
161297
161384
|
prompt: string;
|
|
161298
|
-
} | undefined;
|
|
161385
|
+
}[] | undefined;
|
|
161299
161386
|
promptMetadata?: Record<string, any> | undefined;
|
|
161300
161387
|
} | undefined;
|
|
161301
161388
|
};
|
|
@@ -162270,7 +162357,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
162270
162357
|
}[] | undefined;
|
|
162271
162358
|
templateId?: string | undefined;
|
|
162272
162359
|
}>>;
|
|
162273
|
-
annotations: z.ZodOptional<z.ZodObject<{
|
|
162360
|
+
annotations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
162274
162361
|
prompt: z.ZodString;
|
|
162275
162362
|
elements: z.ZodArray<z.ZodObject<{
|
|
162276
162363
|
xpath: z.ZodString;
|
|
@@ -162294,7 +162381,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
162294
162381
|
line: string;
|
|
162295
162382
|
}[];
|
|
162296
162383
|
prompt: string;
|
|
162297
|
-
}>>;
|
|
162384
|
+
}>, "many">>;
|
|
162298
162385
|
replyToMessageId: z.ZodOptional<z.ZodString>;
|
|
162299
162386
|
promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
162300
162387
|
createdAt: z.ZodString;
|
|
@@ -162334,7 +162421,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
162334
162421
|
line: string;
|
|
162335
162422
|
}[];
|
|
162336
162423
|
prompt: string;
|
|
162337
|
-
} | undefined;
|
|
162424
|
+
}[] | undefined;
|
|
162338
162425
|
promptMetadata?: Record<string, any> | undefined;
|
|
162339
162426
|
}, {
|
|
162340
162427
|
id: string;
|
|
@@ -162354,7 +162441,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
162354
162441
|
line: string;
|
|
162355
162442
|
}[];
|
|
162356
162443
|
prompt: string;
|
|
162357
|
-
} | undefined;
|
|
162444
|
+
}[] | undefined;
|
|
162358
162445
|
promptMetadata?: Record<string, any> | undefined;
|
|
162359
162446
|
}>>;
|
|
162360
162447
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -162380,7 +162467,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
162380
162467
|
line: string;
|
|
162381
162468
|
}[];
|
|
162382
162469
|
prompt: string;
|
|
162383
|
-
} | undefined;
|
|
162470
|
+
}[] | undefined;
|
|
162384
162471
|
promptMetadata?: Record<string, any> | undefined;
|
|
162385
162472
|
} | undefined;
|
|
162386
162473
|
}, {
|
|
@@ -162406,7 +162493,7 @@ declare const DTOForgeProjectArtifactCreateInput: z.ZodObject<{
|
|
|
162406
162493
|
line: string;
|
|
162407
162494
|
}[];
|
|
162408
162495
|
prompt: string;
|
|
162409
|
-
} | undefined;
|
|
162496
|
+
}[] | undefined;
|
|
162410
162497
|
promptMetadata?: Record<string, any> | undefined;
|
|
162411
162498
|
} | undefined;
|
|
162412
162499
|
}>;
|
|
@@ -269498,7 +269585,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
269498
269585
|
}[] | undefined;
|
|
269499
269586
|
templateId?: string | undefined;
|
|
269500
269587
|
}>>;
|
|
269501
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
269588
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
269502
269589
|
prompt: z$1.ZodString;
|
|
269503
269590
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
269504
269591
|
xpath: z$1.ZodString;
|
|
@@ -269522,7 +269609,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
269522
269609
|
line: string;
|
|
269523
269610
|
}[];
|
|
269524
269611
|
prompt: string;
|
|
269525
|
-
}>>;
|
|
269612
|
+
}>, "many">>;
|
|
269526
269613
|
replyToMessageId: z$1.ZodOptional<z$1.ZodString>;
|
|
269527
269614
|
promptMetadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodAny>>;
|
|
269528
269615
|
createdAt: z$1.ZodString;
|
|
@@ -269562,7 +269649,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
269562
269649
|
line: string;
|
|
269563
269650
|
}[];
|
|
269564
269651
|
prompt: string;
|
|
269565
|
-
} | undefined;
|
|
269652
|
+
}[] | undefined;
|
|
269566
269653
|
promptMetadata?: Record<string, any> | undefined;
|
|
269567
269654
|
}, {
|
|
269568
269655
|
id: string;
|
|
@@ -269582,7 +269669,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
269582
269669
|
line: string;
|
|
269583
269670
|
}[];
|
|
269584
269671
|
prompt: string;
|
|
269585
|
-
} | undefined;
|
|
269672
|
+
}[] | undefined;
|
|
269586
269673
|
promptMetadata?: Record<string, any> | undefined;
|
|
269587
269674
|
}>;
|
|
269588
269675
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -269606,7 +269693,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
269606
269693
|
line: string;
|
|
269607
269694
|
}[];
|
|
269608
269695
|
prompt: string;
|
|
269609
|
-
} | undefined;
|
|
269696
|
+
}[] | undefined;
|
|
269610
269697
|
promptMetadata?: Record<string, any> | undefined;
|
|
269611
269698
|
};
|
|
269612
269699
|
name?: string | undefined;
|
|
@@ -269633,7 +269720,7 @@ declare const DTOForgeProjectFeatureCreateInput: z$1.ZodObject<{
|
|
|
269633
269720
|
line: string;
|
|
269634
269721
|
}[];
|
|
269635
269722
|
prompt: string;
|
|
269636
|
-
} | undefined;
|
|
269723
|
+
}[] | undefined;
|
|
269637
269724
|
promptMetadata?: Record<string, any> | undefined;
|
|
269638
269725
|
};
|
|
269639
269726
|
name?: string | undefined;
|
|
@@ -307036,7 +307123,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307036
307123
|
}[] | undefined;
|
|
307037
307124
|
templateId?: string | undefined;
|
|
307038
307125
|
}>>;
|
|
307039
|
-
annotations: z.ZodOptional<z.ZodObject<{
|
|
307126
|
+
annotations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
307040
307127
|
prompt: z.ZodString;
|
|
307041
307128
|
elements: z.ZodArray<z.ZodObject<{
|
|
307042
307129
|
xpath: z.ZodString;
|
|
@@ -307060,7 +307147,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307060
307147
|
line: string;
|
|
307061
307148
|
}[];
|
|
307062
307149
|
prompt: string;
|
|
307063
|
-
}>>;
|
|
307150
|
+
}>, "many">>;
|
|
307064
307151
|
replyToMessageId: z.ZodOptional<z.ZodString>;
|
|
307065
307152
|
promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
307066
307153
|
createdAt: z.ZodString;
|
|
@@ -307100,7 +307187,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307100
307187
|
line: string;
|
|
307101
307188
|
}[];
|
|
307102
307189
|
prompt: string;
|
|
307103
|
-
} | undefined;
|
|
307190
|
+
}[] | undefined;
|
|
307104
307191
|
promptMetadata?: Record<string, any> | undefined;
|
|
307105
307192
|
}, {
|
|
307106
307193
|
id: string;
|
|
@@ -307120,7 +307207,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307120
307207
|
line: string;
|
|
307121
307208
|
}[];
|
|
307122
307209
|
prompt: string;
|
|
307123
|
-
} | undefined;
|
|
307210
|
+
}[] | undefined;
|
|
307124
307211
|
promptMetadata?: Record<string, any> | undefined;
|
|
307125
307212
|
}>;
|
|
307126
307213
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -307144,7 +307231,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307144
307231
|
line: string;
|
|
307145
307232
|
}[];
|
|
307146
307233
|
prompt: string;
|
|
307147
|
-
} | undefined;
|
|
307234
|
+
}[] | undefined;
|
|
307148
307235
|
promptMetadata?: Record<string, any> | undefined;
|
|
307149
307236
|
};
|
|
307150
307237
|
name?: string | undefined;
|
|
@@ -307171,7 +307258,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307171
307258
|
line: string;
|
|
307172
307259
|
}[];
|
|
307173
307260
|
prompt: string;
|
|
307174
|
-
} | undefined;
|
|
307261
|
+
}[] | undefined;
|
|
307175
307262
|
promptMetadata?: Record<string, any> | undefined;
|
|
307176
307263
|
};
|
|
307177
307264
|
name?: string | undefined;
|
|
@@ -307771,7 +307858,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307771
307858
|
}[] | undefined;
|
|
307772
307859
|
templateId?: string | undefined;
|
|
307773
307860
|
}>>;
|
|
307774
|
-
annotations: z.ZodOptional<z.ZodObject<{
|
|
307861
|
+
annotations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
307775
307862
|
prompt: z.ZodString;
|
|
307776
307863
|
elements: z.ZodArray<z.ZodObject<{
|
|
307777
307864
|
xpath: z.ZodString;
|
|
@@ -307795,7 +307882,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307795
307882
|
line: string;
|
|
307796
307883
|
}[];
|
|
307797
307884
|
prompt: string;
|
|
307798
|
-
}>>;
|
|
307885
|
+
}>, "many">>;
|
|
307799
307886
|
replyToMessageId: z.ZodOptional<z.ZodString>;
|
|
307800
307887
|
promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
307801
307888
|
createdAt: z.ZodString;
|
|
@@ -307835,7 +307922,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307835
307922
|
line: string;
|
|
307836
307923
|
}[];
|
|
307837
307924
|
prompt: string;
|
|
307838
|
-
} | undefined;
|
|
307925
|
+
}[] | undefined;
|
|
307839
307926
|
promptMetadata?: Record<string, any> | undefined;
|
|
307840
307927
|
}, {
|
|
307841
307928
|
id: string;
|
|
@@ -307855,7 +307942,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307855
307942
|
line: string;
|
|
307856
307943
|
}[];
|
|
307857
307944
|
prompt: string;
|
|
307858
|
-
} | undefined;
|
|
307945
|
+
}[] | undefined;
|
|
307859
307946
|
promptMetadata?: Record<string, any> | undefined;
|
|
307860
307947
|
}>>;
|
|
307861
307948
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -307881,7 +307968,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307881
307968
|
line: string;
|
|
307882
307969
|
}[];
|
|
307883
307970
|
prompt: string;
|
|
307884
|
-
} | undefined;
|
|
307971
|
+
}[] | undefined;
|
|
307885
307972
|
promptMetadata?: Record<string, any> | undefined;
|
|
307886
307973
|
} | undefined;
|
|
307887
307974
|
}, {
|
|
@@ -307907,7 +307994,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307907
307994
|
line: string;
|
|
307908
307995
|
}[];
|
|
307909
307996
|
prompt: string;
|
|
307910
|
-
} | undefined;
|
|
307997
|
+
}[] | undefined;
|
|
307911
307998
|
promptMetadata?: Record<string, any> | undefined;
|
|
307912
307999
|
} | undefined;
|
|
307913
308000
|
}>>;
|
|
@@ -307953,7 +308040,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307953
308040
|
line: string;
|
|
307954
308041
|
}[];
|
|
307955
308042
|
prompt: string;
|
|
307956
|
-
} | undefined;
|
|
308043
|
+
}[] | undefined;
|
|
307957
308044
|
promptMetadata?: Record<string, any> | undefined;
|
|
307958
308045
|
};
|
|
307959
308046
|
name?: string | undefined;
|
|
@@ -307983,7 +308070,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
307983
308070
|
line: string;
|
|
307984
308071
|
}[];
|
|
307985
308072
|
prompt: string;
|
|
307986
|
-
} | undefined;
|
|
308073
|
+
}[] | undefined;
|
|
307987
308074
|
promptMetadata?: Record<string, any> | undefined;
|
|
307988
308075
|
} | undefined;
|
|
307989
308076
|
} | undefined;
|
|
@@ -308027,7 +308114,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
308027
308114
|
line: string;
|
|
308028
308115
|
}[];
|
|
308029
308116
|
prompt: string;
|
|
308030
|
-
} | undefined;
|
|
308117
|
+
}[] | undefined;
|
|
308031
308118
|
promptMetadata?: Record<string, any> | undefined;
|
|
308032
308119
|
};
|
|
308033
308120
|
name?: string | undefined;
|
|
@@ -308057,7 +308144,7 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
308057
308144
|
line: string;
|
|
308058
308145
|
}[];
|
|
308059
308146
|
prompt: string;
|
|
308060
|
-
} | undefined;
|
|
308147
|
+
}[] | undefined;
|
|
308061
308148
|
promptMetadata?: Record<string, any> | undefined;
|
|
308062
308149
|
} | undefined;
|
|
308063
308150
|
} | undefined;
|
|
@@ -308678,7 +308765,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
308678
308765
|
}[] | undefined;
|
|
308679
308766
|
templateId?: string | undefined;
|
|
308680
308767
|
}>>;
|
|
308681
|
-
annotations: z.ZodOptional<z.ZodObject<{
|
|
308768
|
+
annotations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
308682
308769
|
prompt: z.ZodString;
|
|
308683
308770
|
elements: z.ZodArray<z.ZodObject<{
|
|
308684
308771
|
xpath: z.ZodString;
|
|
@@ -308702,7 +308789,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
308702
308789
|
line: string;
|
|
308703
308790
|
}[];
|
|
308704
308791
|
prompt: string;
|
|
308705
|
-
}>>;
|
|
308792
|
+
}>, "many">>;
|
|
308706
308793
|
replyToMessageId: z.ZodOptional<z.ZodString>;
|
|
308707
308794
|
promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
308708
308795
|
createdAt: z.ZodString;
|
|
@@ -308742,7 +308829,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
308742
308829
|
line: string;
|
|
308743
308830
|
}[];
|
|
308744
308831
|
prompt: string;
|
|
308745
|
-
} | undefined;
|
|
308832
|
+
}[] | undefined;
|
|
308746
308833
|
promptMetadata?: Record<string, any> | undefined;
|
|
308747
308834
|
}, {
|
|
308748
308835
|
id: string;
|
|
@@ -308762,7 +308849,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
308762
308849
|
line: string;
|
|
308763
308850
|
}[];
|
|
308764
308851
|
prompt: string;
|
|
308765
|
-
} | undefined;
|
|
308852
|
+
}[] | undefined;
|
|
308766
308853
|
promptMetadata?: Record<string, any> | undefined;
|
|
308767
308854
|
}>;
|
|
308768
308855
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -308786,7 +308873,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
308786
308873
|
line: string;
|
|
308787
308874
|
}[];
|
|
308788
308875
|
prompt: string;
|
|
308789
|
-
} | undefined;
|
|
308876
|
+
}[] | undefined;
|
|
308790
308877
|
promptMetadata?: Record<string, any> | undefined;
|
|
308791
308878
|
};
|
|
308792
308879
|
name?: string | undefined;
|
|
@@ -308813,7 +308900,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
308813
308900
|
line: string;
|
|
308814
308901
|
}[];
|
|
308815
308902
|
prompt: string;
|
|
308816
|
-
} | undefined;
|
|
308903
|
+
}[] | undefined;
|
|
308817
308904
|
promptMetadata?: Record<string, any> | undefined;
|
|
308818
308905
|
};
|
|
308819
308906
|
name?: string | undefined;
|
|
@@ -309413,7 +309500,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309413
309500
|
}[] | undefined;
|
|
309414
309501
|
templateId?: string | undefined;
|
|
309415
309502
|
}>>;
|
|
309416
|
-
annotations: z.ZodOptional<z.ZodObject<{
|
|
309503
|
+
annotations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
309417
309504
|
prompt: z.ZodString;
|
|
309418
309505
|
elements: z.ZodArray<z.ZodObject<{
|
|
309419
309506
|
xpath: z.ZodString;
|
|
@@ -309437,7 +309524,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309437
309524
|
line: string;
|
|
309438
309525
|
}[];
|
|
309439
309526
|
prompt: string;
|
|
309440
|
-
}>>;
|
|
309527
|
+
}>, "many">>;
|
|
309441
309528
|
replyToMessageId: z.ZodOptional<z.ZodString>;
|
|
309442
309529
|
promptMetadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
309443
309530
|
createdAt: z.ZodString;
|
|
@@ -309477,7 +309564,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309477
309564
|
line: string;
|
|
309478
309565
|
}[];
|
|
309479
309566
|
prompt: string;
|
|
309480
|
-
} | undefined;
|
|
309567
|
+
}[] | undefined;
|
|
309481
309568
|
promptMetadata?: Record<string, any> | undefined;
|
|
309482
309569
|
}, {
|
|
309483
309570
|
id: string;
|
|
@@ -309497,7 +309584,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309497
309584
|
line: string;
|
|
309498
309585
|
}[];
|
|
309499
309586
|
prompt: string;
|
|
309500
|
-
} | undefined;
|
|
309587
|
+
}[] | undefined;
|
|
309501
309588
|
promptMetadata?: Record<string, any> | undefined;
|
|
309502
309589
|
}>>;
|
|
309503
309590
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -309523,7 +309610,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309523
309610
|
line: string;
|
|
309524
309611
|
}[];
|
|
309525
309612
|
prompt: string;
|
|
309526
|
-
} | undefined;
|
|
309613
|
+
}[] | undefined;
|
|
309527
309614
|
promptMetadata?: Record<string, any> | undefined;
|
|
309528
309615
|
} | undefined;
|
|
309529
309616
|
}, {
|
|
@@ -309549,7 +309636,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309549
309636
|
line: string;
|
|
309550
309637
|
}[];
|
|
309551
309638
|
prompt: string;
|
|
309552
|
-
} | undefined;
|
|
309639
|
+
}[] | undefined;
|
|
309553
309640
|
promptMetadata?: Record<string, any> | undefined;
|
|
309554
309641
|
} | undefined;
|
|
309555
309642
|
}>>>;
|
|
@@ -309594,7 +309681,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309594
309681
|
line: string;
|
|
309595
309682
|
}[];
|
|
309596
309683
|
prompt: string;
|
|
309597
|
-
} | undefined;
|
|
309684
|
+
}[] | undefined;
|
|
309598
309685
|
promptMetadata?: Record<string, any> | undefined;
|
|
309599
309686
|
};
|
|
309600
309687
|
name?: string | undefined;
|
|
@@ -309624,7 +309711,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309624
309711
|
line: string;
|
|
309625
309712
|
}[];
|
|
309626
309713
|
prompt: string;
|
|
309627
|
-
} | undefined;
|
|
309714
|
+
}[] | undefined;
|
|
309628
309715
|
promptMetadata?: Record<string, any> | undefined;
|
|
309629
309716
|
} | undefined;
|
|
309630
309717
|
} | undefined;
|
|
@@ -309666,7 +309753,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309666
309753
|
line: string;
|
|
309667
309754
|
}[];
|
|
309668
309755
|
prompt: string;
|
|
309669
|
-
} | undefined;
|
|
309756
|
+
}[] | undefined;
|
|
309670
309757
|
promptMetadata?: Record<string, any> | undefined;
|
|
309671
309758
|
};
|
|
309672
309759
|
name?: string | undefined;
|
|
@@ -309696,7 +309783,7 @@ declare const DTOForgeProjectUpdate: z.ZodObject<{
|
|
|
309696
309783
|
line: string;
|
|
309697
309784
|
}[];
|
|
309698
309785
|
prompt: string;
|
|
309699
|
-
} | undefined;
|
|
309786
|
+
}[] | undefined;
|
|
309700
309787
|
promptMetadata?: Record<string, any> | undefined;
|
|
309701
309788
|
} | undefined;
|
|
309702
309789
|
} | undefined;
|
|
@@ -358043,7 +358130,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
|
|
|
358043
358130
|
}[] | undefined;
|
|
358044
358131
|
templateId?: string | undefined;
|
|
358045
358132
|
}>>;
|
|
358046
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
358133
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
358047
358134
|
prompt: z$1.ZodString;
|
|
358048
358135
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
358049
358136
|
xpath: z$1.ZodString;
|
|
@@ -358067,7 +358154,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
|
|
|
358067
358154
|
line: string;
|
|
358068
358155
|
}[];
|
|
358069
358156
|
prompt: string;
|
|
358070
|
-
}>>;
|
|
358157
|
+
}>, "many">>;
|
|
358071
358158
|
/**
|
|
358072
358159
|
* If defined, this message is considered to be a reply to different message
|
|
358073
358160
|
*/
|
|
@@ -358178,7 +358265,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
|
|
|
358178
358265
|
line: string;
|
|
358179
358266
|
}[];
|
|
358180
358267
|
prompt: string;
|
|
358181
|
-
} | undefined;
|
|
358268
|
+
}[] | undefined;
|
|
358182
358269
|
promptMetadata?: Record<string, any> | undefined;
|
|
358183
358270
|
}, {
|
|
358184
358271
|
id: string;
|
|
@@ -358283,7 +358370,7 @@ declare const DTOThreadMessage: z$1.ZodObject<{
|
|
|
358283
358370
|
line: string;
|
|
358284
358371
|
}[];
|
|
358285
358372
|
prompt: string;
|
|
358286
|
-
} | undefined;
|
|
358373
|
+
}[] | undefined;
|
|
358287
358374
|
promptMetadata?: Record<string, any> | undefined;
|
|
358288
358375
|
}>;
|
|
358289
358376
|
type DTOThreadMessage = z$1.infer<typeof DTOThreadMessage>;
|
|
@@ -358839,7 +358926,7 @@ declare const DTOThreadMessageAttachments: z$1.ZodObject<{
|
|
|
358839
358926
|
templateId?: string | undefined;
|
|
358840
358927
|
}>;
|
|
358841
358928
|
type DTOThreadMessageAttachments = z$1.infer<typeof DTOThreadMessageAttachments>;
|
|
358842
|
-
declare const
|
|
358929
|
+
declare const DTOThreadMessageAnnotation: z$1.ZodObject<{
|
|
358843
358930
|
prompt: z$1.ZodString;
|
|
358844
358931
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
358845
358932
|
xpath: z$1.ZodString;
|
|
@@ -358864,6 +358951,32 @@ declare const DTOThreadMessageAnnotations: z$1.ZodObject<{
|
|
|
358864
358951
|
}[];
|
|
358865
358952
|
prompt: string;
|
|
358866
358953
|
}>;
|
|
358954
|
+
type DTOThreadMessageAnnotation = z$1.infer<typeof DTOThreadMessageAnnotation>;
|
|
358955
|
+
declare const DTOThreadMessageAnnotations: z$1.ZodArray<z$1.ZodObject<{
|
|
358956
|
+
prompt: z$1.ZodString;
|
|
358957
|
+
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
358958
|
+
xpath: z$1.ZodString;
|
|
358959
|
+
line: z$1.ZodString;
|
|
358960
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
358961
|
+
xpath: string;
|
|
358962
|
+
line: string;
|
|
358963
|
+
}, {
|
|
358964
|
+
xpath: string;
|
|
358965
|
+
line: string;
|
|
358966
|
+
}>, "many">;
|
|
358967
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
358968
|
+
elements: {
|
|
358969
|
+
xpath: string;
|
|
358970
|
+
line: string;
|
|
358971
|
+
}[];
|
|
358972
|
+
prompt: string;
|
|
358973
|
+
}, {
|
|
358974
|
+
elements: {
|
|
358975
|
+
xpath: string;
|
|
358976
|
+
line: string;
|
|
358977
|
+
}[];
|
|
358978
|
+
prompt: string;
|
|
358979
|
+
}>, "many">;
|
|
358867
358980
|
type DTOThreadMessageAnnotations = z$1.infer<typeof DTOThreadMessageAnnotations>;
|
|
358868
358981
|
declare const DTOThreadAgentResponseTracker: z$1.ZodObject<{
|
|
358869
358982
|
id: z$1.ZodString;
|
|
@@ -359558,7 +359671,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
|
359558
359671
|
}[] | undefined;
|
|
359559
359672
|
templateId?: string | undefined;
|
|
359560
359673
|
}>>;
|
|
359561
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
359674
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
359562
359675
|
prompt: z$1.ZodString;
|
|
359563
359676
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
359564
359677
|
xpath: z$1.ZodString;
|
|
@@ -359582,7 +359695,7 @@ declare const DTOThreadMessageRetryInput: z$1.ZodObject<{
|
|
|
359582
359695
|
line: string;
|
|
359583
359696
|
}[];
|
|
359584
359697
|
prompt: string;
|
|
359585
|
-
}>>;
|
|
359698
|
+
}>, "many">>;
|
|
359586
359699
|
/**
|
|
359587
359700
|
* If defined, this message is considered to be a reply to different message
|
|
359588
359701
|
*/
|
|
@@ -360225,7 +360338,7 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
|
360225
360338
|
}[] | undefined;
|
|
360226
360339
|
templateId?: string | undefined;
|
|
360227
360340
|
}>>;
|
|
360228
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
360341
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
360229
360342
|
prompt: z$1.ZodString;
|
|
360230
360343
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
360231
360344
|
xpath: z$1.ZodString;
|
|
@@ -360249,7 +360362,7 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
|
360249
360362
|
line: string;
|
|
360250
360363
|
}[];
|
|
360251
360364
|
prompt: string;
|
|
360252
|
-
}>>;
|
|
360365
|
+
}>, "many">>;
|
|
360253
360366
|
/**
|
|
360254
360367
|
* If defined, this message is considered to be a reply to different message
|
|
360255
360368
|
*/
|
|
@@ -360292,7 +360405,7 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
|
360292
360405
|
line: string;
|
|
360293
360406
|
}[];
|
|
360294
360407
|
prompt: string;
|
|
360295
|
-
} | undefined;
|
|
360408
|
+
}[] | undefined;
|
|
360296
360409
|
promptMetadata?: Record<string, any> | undefined;
|
|
360297
360410
|
}, {
|
|
360298
360411
|
id: string;
|
|
@@ -360312,7 +360425,7 @@ declare const DTOThreadMessageCreateInput: z$1.ZodObject<Pick<{
|
|
|
360312
360425
|
line: string;
|
|
360313
360426
|
}[];
|
|
360314
360427
|
prompt: string;
|
|
360315
|
-
} | undefined;
|
|
360428
|
+
}[] | undefined;
|
|
360316
360429
|
promptMetadata?: Record<string, any> | undefined;
|
|
360317
360430
|
}>;
|
|
360318
360431
|
type DTOThreadMessageCreateInput = z$1.infer<typeof DTOThreadMessageCreateInput>;
|
|
@@ -360926,7 +361039,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
|
|
|
360926
361039
|
}[] | undefined;
|
|
360927
361040
|
templateId?: string | undefined;
|
|
360928
361041
|
}>>;
|
|
360929
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
361042
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
360930
361043
|
prompt: z$1.ZodString;
|
|
360931
361044
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
360932
361045
|
xpath: z$1.ZodString;
|
|
@@ -360950,7 +361063,7 @@ declare const DTOThreadMessageUpdateInput: z$1.ZodObject<Pick<{
|
|
|
360950
361063
|
line: string;
|
|
360951
361064
|
}[];
|
|
360952
361065
|
prompt: string;
|
|
360953
|
-
}>>;
|
|
361066
|
+
}>, "many">>;
|
|
360954
361067
|
/**
|
|
360955
361068
|
* If defined, this message is considered to be a reply to different message
|
|
360956
361069
|
*/
|
|
@@ -362305,7 +362418,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
362305
362418
|
}[] | undefined;
|
|
362306
362419
|
templateId?: string | undefined;
|
|
362307
362420
|
}>>;
|
|
362308
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
362421
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
362309
362422
|
prompt: z$1.ZodString;
|
|
362310
362423
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
362311
362424
|
xpath: z$1.ZodString;
|
|
@@ -362329,7 +362442,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
362329
362442
|
line: string;
|
|
362330
362443
|
}[];
|
|
362331
362444
|
prompt: string;
|
|
362332
|
-
}>>;
|
|
362445
|
+
}>, "many">>;
|
|
362333
362446
|
/**
|
|
362334
362447
|
* If defined, this message is considered to be a reply to different message
|
|
362335
362448
|
*/
|
|
@@ -362440,7 +362553,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
362440
362553
|
line: string;
|
|
362441
362554
|
}[];
|
|
362442
362555
|
prompt: string;
|
|
362443
|
-
} | undefined;
|
|
362556
|
+
}[] | undefined;
|
|
362444
362557
|
promptMetadata?: Record<string, any> | undefined;
|
|
362445
362558
|
}, {
|
|
362446
362559
|
id: string;
|
|
@@ -362545,7 +362658,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
362545
362658
|
line: string;
|
|
362546
362659
|
}[];
|
|
362547
362660
|
prompt: string;
|
|
362548
|
-
} | undefined;
|
|
362661
|
+
}[] | undefined;
|
|
362549
362662
|
promptMetadata?: Record<string, any> | undefined;
|
|
362550
362663
|
}>;
|
|
362551
362664
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -362652,7 +362765,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
362652
362765
|
line: string;
|
|
362653
362766
|
}[];
|
|
362654
362767
|
prompt: string;
|
|
362655
|
-
} | undefined;
|
|
362768
|
+
}[] | undefined;
|
|
362656
362769
|
promptMetadata?: Record<string, any> | undefined;
|
|
362657
362770
|
};
|
|
362658
362771
|
}, {
|
|
@@ -362759,7 +362872,7 @@ declare const DTOThreadMessageResponse: z$1.ZodObject<{
|
|
|
362759
362872
|
line: string;
|
|
362760
362873
|
}[];
|
|
362761
362874
|
prompt: string;
|
|
362762
|
-
} | undefined;
|
|
362875
|
+
}[] | undefined;
|
|
362763
362876
|
promptMetadata?: Record<string, any> | undefined;
|
|
362764
362877
|
};
|
|
362765
362878
|
}>;
|
|
@@ -363408,7 +363521,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
363408
363521
|
}[] | undefined;
|
|
363409
363522
|
templateId?: string | undefined;
|
|
363410
363523
|
}>>;
|
|
363411
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
363524
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
363412
363525
|
prompt: z$1.ZodString;
|
|
363413
363526
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
363414
363527
|
xpath: z$1.ZodString;
|
|
@@ -363432,7 +363545,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
363432
363545
|
line: string;
|
|
363433
363546
|
}[];
|
|
363434
363547
|
prompt: string;
|
|
363435
|
-
}>>;
|
|
363548
|
+
}>, "many">>;
|
|
363436
363549
|
/**
|
|
363437
363550
|
* If defined, this message is considered to be a reply to different message
|
|
363438
363551
|
*/
|
|
@@ -363543,7 +363656,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
363543
363656
|
line: string;
|
|
363544
363657
|
}[];
|
|
363545
363658
|
prompt: string;
|
|
363546
|
-
} | undefined;
|
|
363659
|
+
}[] | undefined;
|
|
363547
363660
|
promptMetadata?: Record<string, any> | undefined;
|
|
363548
363661
|
}, {
|
|
363549
363662
|
id: string;
|
|
@@ -363648,7 +363761,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
363648
363761
|
line: string;
|
|
363649
363762
|
}[];
|
|
363650
363763
|
prompt: string;
|
|
363651
|
-
} | undefined;
|
|
363764
|
+
}[] | undefined;
|
|
363652
363765
|
promptMetadata?: Record<string, any> | undefined;
|
|
363653
363766
|
}>, "many">;
|
|
363654
363767
|
reactions: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -363772,7 +363885,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
363772
363885
|
line: string;
|
|
363773
363886
|
}[];
|
|
363774
363887
|
prompt: string;
|
|
363775
|
-
} | undefined;
|
|
363888
|
+
}[] | undefined;
|
|
363776
363889
|
promptMetadata?: Record<string, any> | undefined;
|
|
363777
363890
|
}[];
|
|
363778
363891
|
reactions: {
|
|
@@ -363886,7 +363999,7 @@ declare const DTOThreadMessageListResponse: z$1.ZodObject<{
|
|
|
363886
363999
|
line: string;
|
|
363887
364000
|
}[];
|
|
363888
364001
|
prompt: string;
|
|
363889
|
-
} | undefined;
|
|
364002
|
+
}[] | undefined;
|
|
363890
364003
|
promptMetadata?: Record<string, any> | undefined;
|
|
363891
364004
|
}[];
|
|
363892
364005
|
reactions: {
|
|
@@ -364510,7 +364623,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
364510
364623
|
}[] | undefined;
|
|
364511
364624
|
templateId?: string | undefined;
|
|
364512
364625
|
}>>;
|
|
364513
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
364626
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
364514
364627
|
prompt: z$1.ZodString;
|
|
364515
364628
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
364516
364629
|
xpath: z$1.ZodString;
|
|
@@ -364534,7 +364647,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
364534
364647
|
line: string;
|
|
364535
364648
|
}[];
|
|
364536
364649
|
prompt: string;
|
|
364537
|
-
}>>;
|
|
364650
|
+
}>, "many">>;
|
|
364538
364651
|
/**
|
|
364539
364652
|
* If defined, this message is considered to be a reply to different message
|
|
364540
364653
|
*/
|
|
@@ -364645,7 +364758,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
364645
364758
|
line: string;
|
|
364646
364759
|
}[];
|
|
364647
364760
|
prompt: string;
|
|
364648
|
-
} | undefined;
|
|
364761
|
+
}[] | undefined;
|
|
364649
364762
|
promptMetadata?: Record<string, any> | undefined;
|
|
364650
364763
|
}, {
|
|
364651
364764
|
id: string;
|
|
@@ -364750,7 +364863,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
364750
364863
|
line: string;
|
|
364751
364864
|
}[];
|
|
364752
364865
|
prompt: string;
|
|
364753
|
-
} | undefined;
|
|
364866
|
+
}[] | undefined;
|
|
364754
364867
|
promptMetadata?: Record<string, any> | undefined;
|
|
364755
364868
|
}>, "many">;
|
|
364756
364869
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -364858,7 +364971,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
364858
364971
|
line: string;
|
|
364859
364972
|
}[];
|
|
364860
364973
|
prompt: string;
|
|
364861
|
-
} | undefined;
|
|
364974
|
+
}[] | undefined;
|
|
364862
364975
|
promptMetadata?: Record<string, any> | undefined;
|
|
364863
364976
|
}[];
|
|
364864
364977
|
}, {
|
|
@@ -364966,7 +365079,7 @@ declare const DTOThreadEventMessagesSent: z$1.ZodObject<{
|
|
|
364966
365079
|
line: string;
|
|
364967
365080
|
}[];
|
|
364968
365081
|
prompt: string;
|
|
364969
|
-
} | undefined;
|
|
365082
|
+
}[] | undefined;
|
|
364970
365083
|
promptMetadata?: Record<string, any> | undefined;
|
|
364971
365084
|
}[];
|
|
364972
365085
|
}>;
|
|
@@ -365583,7 +365696,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
365583
365696
|
}[] | undefined;
|
|
365584
365697
|
templateId?: string | undefined;
|
|
365585
365698
|
}>>;
|
|
365586
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
365699
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
365587
365700
|
prompt: z$1.ZodString;
|
|
365588
365701
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
365589
365702
|
xpath: z$1.ZodString;
|
|
@@ -365607,7 +365720,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
365607
365720
|
line: string;
|
|
365608
365721
|
}[];
|
|
365609
365722
|
prompt: string;
|
|
365610
|
-
}>>;
|
|
365723
|
+
}>, "many">>;
|
|
365611
365724
|
/**
|
|
365612
365725
|
* If defined, this message is considered to be a reply to different message
|
|
365613
365726
|
*/
|
|
@@ -365718,7 +365831,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
365718
365831
|
line: string;
|
|
365719
365832
|
}[];
|
|
365720
365833
|
prompt: string;
|
|
365721
|
-
} | undefined;
|
|
365834
|
+
}[] | undefined;
|
|
365722
365835
|
promptMetadata?: Record<string, any> | undefined;
|
|
365723
365836
|
}, {
|
|
365724
365837
|
id: string;
|
|
@@ -365823,7 +365936,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
365823
365936
|
line: string;
|
|
365824
365937
|
}[];
|
|
365825
365938
|
prompt: string;
|
|
365826
|
-
} | undefined;
|
|
365939
|
+
}[] | undefined;
|
|
365827
365940
|
promptMetadata?: Record<string, any> | undefined;
|
|
365828
365941
|
}>, "many">;
|
|
365829
365942
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -365931,7 +366044,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
365931
366044
|
line: string;
|
|
365932
366045
|
}[];
|
|
365933
366046
|
prompt: string;
|
|
365934
|
-
} | undefined;
|
|
366047
|
+
}[] | undefined;
|
|
365935
366048
|
promptMetadata?: Record<string, any> | undefined;
|
|
365936
366049
|
}[];
|
|
365937
366050
|
}, {
|
|
@@ -366039,7 +366152,7 @@ declare const DTOThreadEventMessagesUpdated: z$1.ZodObject<{
|
|
|
366039
366152
|
line: string;
|
|
366040
366153
|
}[];
|
|
366041
366154
|
prompt: string;
|
|
366042
|
-
} | undefined;
|
|
366155
|
+
}[] | undefined;
|
|
366043
366156
|
promptMetadata?: Record<string, any> | undefined;
|
|
366044
366157
|
}[];
|
|
366045
366158
|
}>;
|
|
@@ -366728,7 +366841,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
366728
366841
|
}[] | undefined;
|
|
366729
366842
|
templateId?: string | undefined;
|
|
366730
366843
|
}>>;
|
|
366731
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
366844
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
366732
366845
|
prompt: z$1.ZodString;
|
|
366733
366846
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
366734
366847
|
xpath: z$1.ZodString;
|
|
@@ -366752,7 +366865,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
366752
366865
|
line: string;
|
|
366753
366866
|
}[];
|
|
366754
366867
|
prompt: string;
|
|
366755
|
-
}>>;
|
|
366868
|
+
}>, "many">>;
|
|
366756
366869
|
/**
|
|
366757
366870
|
* If defined, this message is considered to be a reply to different message
|
|
366758
366871
|
*/
|
|
@@ -366863,7 +366976,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
366863
366976
|
line: string;
|
|
366864
366977
|
}[];
|
|
366865
366978
|
prompt: string;
|
|
366866
|
-
} | undefined;
|
|
366979
|
+
}[] | undefined;
|
|
366867
366980
|
promptMetadata?: Record<string, any> | undefined;
|
|
366868
366981
|
}, {
|
|
366869
366982
|
id: string;
|
|
@@ -366968,7 +367081,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
366968
367081
|
line: string;
|
|
366969
367082
|
}[];
|
|
366970
367083
|
prompt: string;
|
|
366971
|
-
} | undefined;
|
|
367084
|
+
}[] | undefined;
|
|
366972
367085
|
promptMetadata?: Record<string, any> | undefined;
|
|
366973
367086
|
}>, "many">;
|
|
366974
367087
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -367076,7 +367189,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
367076
367189
|
line: string;
|
|
367077
367190
|
}[];
|
|
367078
367191
|
prompt: string;
|
|
367079
|
-
} | undefined;
|
|
367192
|
+
}[] | undefined;
|
|
367080
367193
|
promptMetadata?: Record<string, any> | undefined;
|
|
367081
367194
|
}[];
|
|
367082
367195
|
}, {
|
|
@@ -367184,7 +367297,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
367184
367297
|
line: string;
|
|
367185
367298
|
}[];
|
|
367186
367299
|
prompt: string;
|
|
367187
|
-
} | undefined;
|
|
367300
|
+
}[] | undefined;
|
|
367188
367301
|
promptMetadata?: Record<string, any> | undefined;
|
|
367189
367302
|
}[];
|
|
367190
367303
|
}>, z$1.ZodObject<{
|
|
@@ -367799,7 +367912,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
367799
367912
|
}[] | undefined;
|
|
367800
367913
|
templateId?: string | undefined;
|
|
367801
367914
|
}>>;
|
|
367802
|
-
annotations: z$1.ZodOptional<z$1.ZodObject<{
|
|
367915
|
+
annotations: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
367803
367916
|
prompt: z$1.ZodString;
|
|
367804
367917
|
elements: z$1.ZodArray<z$1.ZodObject<{
|
|
367805
367918
|
xpath: z$1.ZodString;
|
|
@@ -367823,7 +367936,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
367823
367936
|
line: string;
|
|
367824
367937
|
}[];
|
|
367825
367938
|
prompt: string;
|
|
367826
|
-
}>>;
|
|
367939
|
+
}>, "many">>;
|
|
367827
367940
|
/**
|
|
367828
367941
|
* If defined, this message is considered to be a reply to different message
|
|
367829
367942
|
*/
|
|
@@ -367934,7 +368047,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
367934
368047
|
line: string;
|
|
367935
368048
|
}[];
|
|
367936
368049
|
prompt: string;
|
|
367937
|
-
} | undefined;
|
|
368050
|
+
}[] | undefined;
|
|
367938
368051
|
promptMetadata?: Record<string, any> | undefined;
|
|
367939
368052
|
}, {
|
|
367940
368053
|
id: string;
|
|
@@ -368039,7 +368152,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
368039
368152
|
line: string;
|
|
368040
368153
|
}[];
|
|
368041
368154
|
prompt: string;
|
|
368042
|
-
} | undefined;
|
|
368155
|
+
}[] | undefined;
|
|
368043
368156
|
promptMetadata?: Record<string, any> | undefined;
|
|
368044
368157
|
}>, "many">;
|
|
368045
368158
|
}, "strip", z$1.ZodTypeAny, {
|
|
@@ -368147,7 +368260,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
368147
368260
|
line: string;
|
|
368148
368261
|
}[];
|
|
368149
368262
|
prompt: string;
|
|
368150
|
-
} | undefined;
|
|
368263
|
+
}[] | undefined;
|
|
368151
368264
|
promptMetadata?: Record<string, any> | undefined;
|
|
368152
368265
|
}[];
|
|
368153
368266
|
}, {
|
|
@@ -368255,7 +368368,7 @@ declare const DTOThreadEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
|
368255
368368
|
line: string;
|
|
368256
368369
|
}[];
|
|
368257
368370
|
prompt: string;
|
|
368258
|
-
} | undefined;
|
|
368371
|
+
}[] | undefined;
|
|
368259
368372
|
promptMetadata?: Record<string, any> | undefined;
|
|
368260
368373
|
}[];
|
|
368261
368374
|
}>, z$1.ZodObject<{
|
|
@@ -404228,7 +404341,7 @@ declare class ThreadsEndpoint {
|
|
|
404228
404341
|
line: string;
|
|
404229
404342
|
}[];
|
|
404230
404343
|
prompt: string;
|
|
404231
|
-
} | undefined;
|
|
404344
|
+
}[] | undefined;
|
|
404232
404345
|
promptMetadata?: Record<string, any> | undefined;
|
|
404233
404346
|
}[];
|
|
404234
404347
|
reactions: {
|
|
@@ -404343,7 +404456,7 @@ declare class ThreadsEndpoint {
|
|
|
404343
404456
|
line: string;
|
|
404344
404457
|
}[];
|
|
404345
404458
|
prompt: string;
|
|
404346
|
-
} | undefined;
|
|
404459
|
+
}[] | undefined;
|
|
404347
404460
|
promptMetadata?: Record<string, any> | undefined;
|
|
404348
404461
|
}[];
|
|
404349
404462
|
reactions: {
|
|
@@ -407404,4 +407517,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
407404
407517
|
reason: ValidationErrorReason | undefined;
|
|
407405
407518
|
};
|
|
407406
407519
|
|
|
407407
|
-
export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOCodeSnapshotFinalizePayload, DTOCodeSnapshotFinalizeResponse, DTOCodeSnapshotProcessingRunResponse, DTOCodeSnapshotProcessingRunStatus, DTOCodeSnapshotProcessingRunStatusItem, DTOCodeSnapshotProcessingRunStatusResponse, DTOCodeSnapshotScannerType, DTOCodeSnapshotStartProcessingRunPayload, DTOCodeSnapshotUploadInitPayload, DTOCodeSnapshotUploadInitResponse, DTOCodeSnapshotUploadInitScannerType, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFigmaNodeValidateResponse, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOLoginScreenSettings, DTOLoginScreenSettingsResponse, DTOLoginScreenSettingsUpdate, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAnnotations, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|
|
407520
|
+
export { AuthTokensEndpoint, BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOCodeSnapshotFinalizePayload, DTOCodeSnapshotFinalizeResponse, DTOCodeSnapshotProcessingRunResponse, DTOCodeSnapshotProcessingRunStatus, DTOCodeSnapshotProcessingRunStatusItem, DTOCodeSnapshotProcessingRunStatusResponse, DTOCodeSnapshotScannerType, DTOCodeSnapshotStartProcessingRunPayload, DTOCodeSnapshotUploadInitPayload, DTOCodeSnapshotUploadInitResponse, DTOCodeSnapshotUploadInitScannerType, DTOCollectionOrigin, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateFeatureSandbox, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFVPMigrationsCollectionKeysPayload, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureSandboxListResponse, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFigmaNode, DTOForgeFigmaNodeCreateRequest, DTOForgeFigmaNodeOrigin, DTOForgeFigmaNodeResponse, DTOForgeFigmaNodeState, DTOForgeFigmaNodeValidateResponse, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureSandboxUpdated, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIPWhitelist, DTOIPWhitelistEntry, DTOIPWhitelistResponse, DTOIPWhitelistUpdate, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOKeepAliveFeatureSandboxResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOLoginScreenSettings, DTOLoginScreenSettingsResponse, DTOLoginScreenSettingsUpdate, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOProvisionFeatureSandboxInput, DTOProvisionFeatureSandboxResponse, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplatePreset, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSite, DTOStorybookSiteListQuery, DTOStorybookSiteListResponse, DTOStorybookSiteUploadPayload, DTOStorybookSiteUploadResponse, DTOStorybookSiteVersion, DTOStorybookSiteVersionResponse, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAnnotation, DTOThreadMessageAnnotations, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateFeatureSandbox, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemCodeSnapshotsEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookSitesEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|