@supernova-studio/client 1.10.23 → 1.10.25
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 +369 -2
- package/dist/index.d.ts +369 -2
- package/dist/index.js +60 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1759 -1701
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -78224,6 +78224,344 @@ declare const DTOForgeProjectArtifactRoomResponse: z$1.ZodObject<{
|
|
|
78224
78224
|
}>;
|
|
78225
78225
|
type DTOForgeProjectArtifactRoomResponse = z$1.infer<typeof DTOForgeProjectArtifactRoomResponse>;
|
|
78226
78226
|
|
|
78227
|
+
declare const DTOForgeProjectArtifact: z$1.ZodObject<{
|
|
78228
|
+
id: z$1.ZodString;
|
|
78229
|
+
projectId: z$1.ZodString;
|
|
78230
|
+
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78231
|
+
title: z$1.ZodString;
|
|
78232
|
+
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78233
|
+
path: z$1.ZodString;
|
|
78234
|
+
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78235
|
+
createdAt: z$1.ZodDate;
|
|
78236
|
+
updatedAt: z$1.ZodDate;
|
|
78237
|
+
createdByUserId: z$1.ZodString;
|
|
78238
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78239
|
+
path: string;
|
|
78240
|
+
id: string;
|
|
78241
|
+
createdAt: Date;
|
|
78242
|
+
updatedAt: Date;
|
|
78243
|
+
title: string;
|
|
78244
|
+
sortOrder: number;
|
|
78245
|
+
createdByUserId: string;
|
|
78246
|
+
projectId: string;
|
|
78247
|
+
previewUrl?: string | null | undefined;
|
|
78248
|
+
iterationId?: string | null | undefined;
|
|
78249
|
+
}, {
|
|
78250
|
+
path: string;
|
|
78251
|
+
id: string;
|
|
78252
|
+
createdAt: Date;
|
|
78253
|
+
updatedAt: Date;
|
|
78254
|
+
title: string;
|
|
78255
|
+
createdByUserId: string;
|
|
78256
|
+
projectId: string;
|
|
78257
|
+
sortOrder?: number | undefined;
|
|
78258
|
+
previewUrl?: string | null | undefined;
|
|
78259
|
+
iterationId?: string | null | undefined;
|
|
78260
|
+
}>;
|
|
78261
|
+
type DTOForgeProjectArtifact = z$1.infer<typeof DTOForgeProjectArtifact>;
|
|
78262
|
+
declare const DTOForgeProjectArtifactUpdate: z$1.ZodObject<{
|
|
78263
|
+
path: z$1.ZodOptional<z$1.ZodString>;
|
|
78264
|
+
sortOrder: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodNumber>>;
|
|
78265
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
78266
|
+
previewUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
78267
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78268
|
+
path?: string | undefined;
|
|
78269
|
+
sortOrder?: number | undefined;
|
|
78270
|
+
title?: string | undefined;
|
|
78271
|
+
previewUrl?: string | null | undefined;
|
|
78272
|
+
}, {
|
|
78273
|
+
path?: string | undefined;
|
|
78274
|
+
sortOrder?: number | undefined;
|
|
78275
|
+
title?: string | undefined;
|
|
78276
|
+
previewUrl?: string | null | undefined;
|
|
78277
|
+
}>;
|
|
78278
|
+
type DTOForgeProjectArtifactUpdate = z$1.infer<typeof DTOForgeProjectArtifactUpdate>;
|
|
78279
|
+
declare const DTOForgeProjectArtifactCreate: z$1.ZodObject<Omit<{
|
|
78280
|
+
id: z$1.ZodString;
|
|
78281
|
+
projectId: z$1.ZodString;
|
|
78282
|
+
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78283
|
+
title: z$1.ZodString;
|
|
78284
|
+
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78285
|
+
path: z$1.ZodString;
|
|
78286
|
+
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78287
|
+
createdAt: z$1.ZodDate;
|
|
78288
|
+
updatedAt: z$1.ZodDate;
|
|
78289
|
+
createdByUserId: z$1.ZodString;
|
|
78290
|
+
}, "id" | "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z$1.ZodTypeAny, {
|
|
78291
|
+
path: string;
|
|
78292
|
+
sortOrder: number;
|
|
78293
|
+
title: string;
|
|
78294
|
+
previewUrl?: string | null | undefined;
|
|
78295
|
+
iterationId?: string | null | undefined;
|
|
78296
|
+
}, {
|
|
78297
|
+
path: string;
|
|
78298
|
+
title: string;
|
|
78299
|
+
sortOrder?: number | undefined;
|
|
78300
|
+
previewUrl?: string | null | undefined;
|
|
78301
|
+
iterationId?: string | null | undefined;
|
|
78302
|
+
}>;
|
|
78303
|
+
type DTOForgeProjectArtifactCreate = z$1.infer<typeof DTOForgeProjectArtifactCreate>;
|
|
78304
|
+
declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
|
|
78305
|
+
artifact: z$1.ZodObject<{
|
|
78306
|
+
id: z$1.ZodString;
|
|
78307
|
+
projectId: z$1.ZodString;
|
|
78308
|
+
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78309
|
+
title: z$1.ZodString;
|
|
78310
|
+
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78311
|
+
path: z$1.ZodString;
|
|
78312
|
+
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78313
|
+
createdAt: z$1.ZodDate;
|
|
78314
|
+
updatedAt: z$1.ZodDate;
|
|
78315
|
+
createdByUserId: z$1.ZodString;
|
|
78316
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78317
|
+
path: string;
|
|
78318
|
+
id: string;
|
|
78319
|
+
createdAt: Date;
|
|
78320
|
+
updatedAt: Date;
|
|
78321
|
+
title: string;
|
|
78322
|
+
sortOrder: number;
|
|
78323
|
+
createdByUserId: string;
|
|
78324
|
+
projectId: string;
|
|
78325
|
+
previewUrl?: string | null | undefined;
|
|
78326
|
+
iterationId?: string | null | undefined;
|
|
78327
|
+
}, {
|
|
78328
|
+
path: string;
|
|
78329
|
+
id: string;
|
|
78330
|
+
createdAt: Date;
|
|
78331
|
+
updatedAt: Date;
|
|
78332
|
+
title: string;
|
|
78333
|
+
createdByUserId: string;
|
|
78334
|
+
projectId: string;
|
|
78335
|
+
sortOrder?: number | undefined;
|
|
78336
|
+
previewUrl?: string | null | undefined;
|
|
78337
|
+
iterationId?: string | null | undefined;
|
|
78338
|
+
}>;
|
|
78339
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78340
|
+
artifact: {
|
|
78341
|
+
path: string;
|
|
78342
|
+
id: string;
|
|
78343
|
+
createdAt: Date;
|
|
78344
|
+
updatedAt: Date;
|
|
78345
|
+
title: string;
|
|
78346
|
+
sortOrder: number;
|
|
78347
|
+
createdByUserId: string;
|
|
78348
|
+
projectId: string;
|
|
78349
|
+
previewUrl?: string | null | undefined;
|
|
78350
|
+
iterationId?: string | null | undefined;
|
|
78351
|
+
};
|
|
78352
|
+
}, {
|
|
78353
|
+
artifact: {
|
|
78354
|
+
path: string;
|
|
78355
|
+
id: string;
|
|
78356
|
+
createdAt: Date;
|
|
78357
|
+
updatedAt: Date;
|
|
78358
|
+
title: string;
|
|
78359
|
+
createdByUserId: string;
|
|
78360
|
+
projectId: string;
|
|
78361
|
+
sortOrder?: number | undefined;
|
|
78362
|
+
previewUrl?: string | null | undefined;
|
|
78363
|
+
iterationId?: string | null | undefined;
|
|
78364
|
+
};
|
|
78365
|
+
}>;
|
|
78366
|
+
type DTOForgeProjectArtifactGetResponse = z$1.infer<typeof DTOForgeProjectArtifactGetResponse>;
|
|
78367
|
+
declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
|
|
78368
|
+
artifact: z$1.ZodObject<{
|
|
78369
|
+
id: z$1.ZodString;
|
|
78370
|
+
projectId: z$1.ZodString;
|
|
78371
|
+
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78372
|
+
title: z$1.ZodString;
|
|
78373
|
+
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78374
|
+
path: z$1.ZodString;
|
|
78375
|
+
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78376
|
+
createdAt: z$1.ZodDate;
|
|
78377
|
+
updatedAt: z$1.ZodDate;
|
|
78378
|
+
createdByUserId: z$1.ZodString;
|
|
78379
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78380
|
+
path: string;
|
|
78381
|
+
id: string;
|
|
78382
|
+
createdAt: Date;
|
|
78383
|
+
updatedAt: Date;
|
|
78384
|
+
title: string;
|
|
78385
|
+
sortOrder: number;
|
|
78386
|
+
createdByUserId: string;
|
|
78387
|
+
projectId: string;
|
|
78388
|
+
previewUrl?: string | null | undefined;
|
|
78389
|
+
iterationId?: string | null | undefined;
|
|
78390
|
+
}, {
|
|
78391
|
+
path: string;
|
|
78392
|
+
id: string;
|
|
78393
|
+
createdAt: Date;
|
|
78394
|
+
updatedAt: Date;
|
|
78395
|
+
title: string;
|
|
78396
|
+
createdByUserId: string;
|
|
78397
|
+
projectId: string;
|
|
78398
|
+
sortOrder?: number | undefined;
|
|
78399
|
+
previewUrl?: string | null | undefined;
|
|
78400
|
+
iterationId?: string | null | undefined;
|
|
78401
|
+
}>;
|
|
78402
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78403
|
+
artifact: {
|
|
78404
|
+
path: string;
|
|
78405
|
+
id: string;
|
|
78406
|
+
createdAt: Date;
|
|
78407
|
+
updatedAt: Date;
|
|
78408
|
+
title: string;
|
|
78409
|
+
sortOrder: number;
|
|
78410
|
+
createdByUserId: string;
|
|
78411
|
+
projectId: string;
|
|
78412
|
+
previewUrl?: string | null | undefined;
|
|
78413
|
+
iterationId?: string | null | undefined;
|
|
78414
|
+
};
|
|
78415
|
+
}, {
|
|
78416
|
+
artifact: {
|
|
78417
|
+
path: string;
|
|
78418
|
+
id: string;
|
|
78419
|
+
createdAt: Date;
|
|
78420
|
+
updatedAt: Date;
|
|
78421
|
+
title: string;
|
|
78422
|
+
createdByUserId: string;
|
|
78423
|
+
projectId: string;
|
|
78424
|
+
sortOrder?: number | undefined;
|
|
78425
|
+
previewUrl?: string | null | undefined;
|
|
78426
|
+
iterationId?: string | null | undefined;
|
|
78427
|
+
};
|
|
78428
|
+
}>;
|
|
78429
|
+
type DTOForgeProjectArtifactCreateResponse = z$1.infer<typeof DTOForgeProjectArtifactCreateResponse>;
|
|
78430
|
+
declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
|
|
78431
|
+
artifact: z$1.ZodObject<{
|
|
78432
|
+
id: z$1.ZodString;
|
|
78433
|
+
projectId: z$1.ZodString;
|
|
78434
|
+
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78435
|
+
title: z$1.ZodString;
|
|
78436
|
+
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78437
|
+
path: z$1.ZodString;
|
|
78438
|
+
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78439
|
+
createdAt: z$1.ZodDate;
|
|
78440
|
+
updatedAt: z$1.ZodDate;
|
|
78441
|
+
createdByUserId: z$1.ZodString;
|
|
78442
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78443
|
+
path: string;
|
|
78444
|
+
id: string;
|
|
78445
|
+
createdAt: Date;
|
|
78446
|
+
updatedAt: Date;
|
|
78447
|
+
title: string;
|
|
78448
|
+
sortOrder: number;
|
|
78449
|
+
createdByUserId: string;
|
|
78450
|
+
projectId: string;
|
|
78451
|
+
previewUrl?: string | null | undefined;
|
|
78452
|
+
iterationId?: string | null | undefined;
|
|
78453
|
+
}, {
|
|
78454
|
+
path: string;
|
|
78455
|
+
id: string;
|
|
78456
|
+
createdAt: Date;
|
|
78457
|
+
updatedAt: Date;
|
|
78458
|
+
title: string;
|
|
78459
|
+
createdByUserId: string;
|
|
78460
|
+
projectId: string;
|
|
78461
|
+
sortOrder?: number | undefined;
|
|
78462
|
+
previewUrl?: string | null | undefined;
|
|
78463
|
+
iterationId?: string | null | undefined;
|
|
78464
|
+
}>;
|
|
78465
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78466
|
+
artifact: {
|
|
78467
|
+
path: string;
|
|
78468
|
+
id: string;
|
|
78469
|
+
createdAt: Date;
|
|
78470
|
+
updatedAt: Date;
|
|
78471
|
+
title: string;
|
|
78472
|
+
sortOrder: number;
|
|
78473
|
+
createdByUserId: string;
|
|
78474
|
+
projectId: string;
|
|
78475
|
+
previewUrl?: string | null | undefined;
|
|
78476
|
+
iterationId?: string | null | undefined;
|
|
78477
|
+
};
|
|
78478
|
+
}, {
|
|
78479
|
+
artifact: {
|
|
78480
|
+
path: string;
|
|
78481
|
+
id: string;
|
|
78482
|
+
createdAt: Date;
|
|
78483
|
+
updatedAt: Date;
|
|
78484
|
+
title: string;
|
|
78485
|
+
createdByUserId: string;
|
|
78486
|
+
projectId: string;
|
|
78487
|
+
sortOrder?: number | undefined;
|
|
78488
|
+
previewUrl?: string | null | undefined;
|
|
78489
|
+
iterationId?: string | null | undefined;
|
|
78490
|
+
};
|
|
78491
|
+
}>;
|
|
78492
|
+
type DTOForgeProjectArtifactUpdateResponse = z$1.infer<typeof DTOForgeProjectArtifactUpdateResponse>;
|
|
78493
|
+
declare const DTOForgeProjectArtifactDeleteResponse: z$1.ZodObject<{
|
|
78494
|
+
ok: z$1.ZodLiteral<true>;
|
|
78495
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78496
|
+
ok: true;
|
|
78497
|
+
}, {
|
|
78498
|
+
ok: true;
|
|
78499
|
+
}>;
|
|
78500
|
+
type DTOForgeProjectArtifactDeleteResponse = z$1.infer<typeof DTOForgeProjectArtifactDeleteResponse>;
|
|
78501
|
+
declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
|
|
78502
|
+
artifacts: z$1.ZodArray<z$1.ZodObject<{
|
|
78503
|
+
id: z$1.ZodString;
|
|
78504
|
+
projectId: z$1.ZodString;
|
|
78505
|
+
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78506
|
+
title: z$1.ZodString;
|
|
78507
|
+
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78508
|
+
path: z$1.ZodString;
|
|
78509
|
+
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78510
|
+
createdAt: z$1.ZodDate;
|
|
78511
|
+
updatedAt: z$1.ZodDate;
|
|
78512
|
+
createdByUserId: z$1.ZodString;
|
|
78513
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78514
|
+
path: string;
|
|
78515
|
+
id: string;
|
|
78516
|
+
createdAt: Date;
|
|
78517
|
+
updatedAt: Date;
|
|
78518
|
+
title: string;
|
|
78519
|
+
sortOrder: number;
|
|
78520
|
+
createdByUserId: string;
|
|
78521
|
+
projectId: string;
|
|
78522
|
+
previewUrl?: string | null | undefined;
|
|
78523
|
+
iterationId?: string | null | undefined;
|
|
78524
|
+
}, {
|
|
78525
|
+
path: string;
|
|
78526
|
+
id: string;
|
|
78527
|
+
createdAt: Date;
|
|
78528
|
+
updatedAt: Date;
|
|
78529
|
+
title: string;
|
|
78530
|
+
createdByUserId: string;
|
|
78531
|
+
projectId: string;
|
|
78532
|
+
sortOrder?: number | undefined;
|
|
78533
|
+
previewUrl?: string | null | undefined;
|
|
78534
|
+
iterationId?: string | null | undefined;
|
|
78535
|
+
}>, "many">;
|
|
78536
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78537
|
+
artifacts: {
|
|
78538
|
+
path: string;
|
|
78539
|
+
id: string;
|
|
78540
|
+
createdAt: Date;
|
|
78541
|
+
updatedAt: Date;
|
|
78542
|
+
title: string;
|
|
78543
|
+
sortOrder: number;
|
|
78544
|
+
createdByUserId: string;
|
|
78545
|
+
projectId: string;
|
|
78546
|
+
previewUrl?: string | null | undefined;
|
|
78547
|
+
iterationId?: string | null | undefined;
|
|
78548
|
+
}[];
|
|
78549
|
+
}, {
|
|
78550
|
+
artifacts: {
|
|
78551
|
+
path: string;
|
|
78552
|
+
id: string;
|
|
78553
|
+
createdAt: Date;
|
|
78554
|
+
updatedAt: Date;
|
|
78555
|
+
title: string;
|
|
78556
|
+
createdByUserId: string;
|
|
78557
|
+
projectId: string;
|
|
78558
|
+
sortOrder?: number | undefined;
|
|
78559
|
+
previewUrl?: string | null | undefined;
|
|
78560
|
+
iterationId?: string | null | undefined;
|
|
78561
|
+
}[];
|
|
78562
|
+
}>;
|
|
78563
|
+
type DTOForgeProjectArtifactsListResponse = z$1.infer<typeof DTOForgeProjectArtifactsListResponse>;
|
|
78564
|
+
|
|
78227
78565
|
declare const DTOForgeProjectContext: z$1.ZodObject<{
|
|
78228
78566
|
createdAt: z$1.ZodDate;
|
|
78229
78567
|
definition: z$1.ZodString;
|
|
@@ -99142,6 +99480,17 @@ declare const DTOForgeChatMessageScoreInput: z$1.ZodObject<{
|
|
|
99142
99480
|
categoryName?: string | undefined;
|
|
99143
99481
|
}>;
|
|
99144
99482
|
type DTOForgeChatMessageScoreInput = z$1.infer<typeof DTOForgeChatMessageScoreInput>;
|
|
99483
|
+
declare const DTOForgeChatMessageTagInput: z$1.ZodObject<{
|
|
99484
|
+
messageId: z$1.ZodString;
|
|
99485
|
+
tags: z$1.ZodArray<z$1.ZodString, "many">;
|
|
99486
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99487
|
+
tags: string[];
|
|
99488
|
+
messageId: string;
|
|
99489
|
+
}, {
|
|
99490
|
+
tags: string[];
|
|
99491
|
+
messageId: string;
|
|
99492
|
+
}>;
|
|
99493
|
+
type DTOForgeChatMessageTagInput = z$1.infer<typeof DTOForgeChatMessageTagInput>;
|
|
99145
99494
|
declare const DTOForgeChatMessageScoreRequest: z$1.ZodObject<{
|
|
99146
99495
|
scores: z$1.ZodArray<z$1.ZodObject<{
|
|
99147
99496
|
messageId: z$1.ZodString;
|
|
@@ -99162,7 +99511,21 @@ declare const DTOForgeChatMessageScoreRequest: z$1.ZodObject<{
|
|
|
99162
99511
|
reason?: string | undefined;
|
|
99163
99512
|
categoryName?: string | undefined;
|
|
99164
99513
|
}>, "many">;
|
|
99514
|
+
tags: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
99515
|
+
messageId: z$1.ZodString;
|
|
99516
|
+
tags: z$1.ZodArray<z$1.ZodString, "many">;
|
|
99517
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
99518
|
+
tags: string[];
|
|
99519
|
+
messageId: string;
|
|
99520
|
+
}, {
|
|
99521
|
+
tags: string[];
|
|
99522
|
+
messageId: string;
|
|
99523
|
+
}>, "many">>>;
|
|
99165
99524
|
}, "strip", z$1.ZodTypeAny, {
|
|
99525
|
+
tags: {
|
|
99526
|
+
tags: string[];
|
|
99527
|
+
messageId: string;
|
|
99528
|
+
}[];
|
|
99166
99529
|
scores: {
|
|
99167
99530
|
name: string;
|
|
99168
99531
|
value: number;
|
|
@@ -99178,6 +99541,10 @@ declare const DTOForgeChatMessageScoreRequest: z$1.ZodObject<{
|
|
|
99178
99541
|
reason?: string | undefined;
|
|
99179
99542
|
categoryName?: string | undefined;
|
|
99180
99543
|
}[];
|
|
99544
|
+
tags?: {
|
|
99545
|
+
tags: string[];
|
|
99546
|
+
messageId: string;
|
|
99547
|
+
}[] | undefined;
|
|
99181
99548
|
}>;
|
|
99182
99549
|
type DTOForgeChatMessageScoreRequest = z$1.infer<typeof DTOForgeChatMessageScoreRequest>;
|
|
99183
99550
|
|
|
@@ -138330,7 +138697,7 @@ declare class ChatThreadMessagesEndpoint {
|
|
|
138330
138697
|
opikTraceId?: string | undefined;
|
|
138331
138698
|
};
|
|
138332
138699
|
}>;
|
|
138333
|
-
score(workspaceId: string, threadId: string, body: DTOForgeChatMessageScoreRequest): Promise<any>;
|
|
138700
|
+
score(workspaceId: string, threadId: string, body: z$1.input<typeof DTOForgeChatMessageScoreRequest>): Promise<any>;
|
|
138334
138701
|
}
|
|
138335
138702
|
|
|
138336
138703
|
declare class WorkspaceIntegrationsEndpoint {
|
|
@@ -141337,4 +141704,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
141337
141704
|
reason: ValidationErrorReason | undefined;
|
|
141338
141705
|
};
|
|
141339
141706
|
|
|
141340
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, 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, 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, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, 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 };
|
|
141707
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProject, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeProjectResponse, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, 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, 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, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeResponse, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFileResponseItem, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreate, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdate, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSpecArtifact, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORemoveForgeProjectResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUGetForgeProjectResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProject, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeProjectResponse, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectsEndpoint, ForgesEndpoint, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, 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 };
|