@supernova-studio/client 1.15.0 → 1.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +810 -261
- package/dist/index.d.ts +810 -261
- package/dist/index.js +801 -419
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2791 -2409
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -78242,40 +78242,35 @@ declare const DTOForgeProjectActionFeatureUpdate: z__default.ZodObject<{
|
|
|
78242
78242
|
type: z__default.ZodLiteral<"FeatureUpdate">;
|
|
78243
78243
|
input: z__default.ZodObject<{
|
|
78244
78244
|
id: z__default.ZodString;
|
|
78245
|
-
name: z__default.ZodString
|
|
78246
|
-
description: z__default.ZodString
|
|
78247
|
-
|
|
78248
|
-
afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
78245
|
+
name: z__default.ZodOptional<z__default.ZodString>;
|
|
78246
|
+
description: z__default.ZodOptional<z__default.ZodString>;
|
|
78247
|
+
isArchived: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
78249
78248
|
}, "strip", z__default.ZodTypeAny, {
|
|
78250
78249
|
id: string;
|
|
78251
|
-
name
|
|
78252
|
-
description
|
|
78253
|
-
|
|
78254
|
-
afterFeatureId?: string | null | undefined;
|
|
78250
|
+
name?: string | undefined;
|
|
78251
|
+
description?: string | undefined;
|
|
78252
|
+
isArchived?: boolean | undefined;
|
|
78255
78253
|
}, {
|
|
78256
78254
|
id: string;
|
|
78257
|
-
name
|
|
78258
|
-
description
|
|
78259
|
-
|
|
78260
|
-
afterFeatureId?: string | null | undefined;
|
|
78255
|
+
name?: string | undefined;
|
|
78256
|
+
description?: string | undefined;
|
|
78257
|
+
isArchived?: boolean | undefined;
|
|
78261
78258
|
}>;
|
|
78262
78259
|
}, "strip", z__default.ZodTypeAny, {
|
|
78263
78260
|
type: "FeatureUpdate";
|
|
78264
78261
|
input: {
|
|
78265
78262
|
id: string;
|
|
78266
|
-
name
|
|
78267
|
-
description
|
|
78268
|
-
|
|
78269
|
-
afterFeatureId?: string | null | undefined;
|
|
78263
|
+
name?: string | undefined;
|
|
78264
|
+
description?: string | undefined;
|
|
78265
|
+
isArchived?: boolean | undefined;
|
|
78270
78266
|
};
|
|
78271
78267
|
}, {
|
|
78272
78268
|
type: "FeatureUpdate";
|
|
78273
78269
|
input: {
|
|
78274
78270
|
id: string;
|
|
78275
|
-
name
|
|
78276
|
-
description
|
|
78277
|
-
|
|
78278
|
-
afterFeatureId?: string | null | undefined;
|
|
78271
|
+
name?: string | undefined;
|
|
78272
|
+
description?: string | undefined;
|
|
78273
|
+
isArchived?: boolean | undefined;
|
|
78279
78274
|
};
|
|
78280
78275
|
}>;
|
|
78281
78276
|
type DTOForgeProjectActionFeatureUpdate = z__default.infer<typeof DTOForgeProjectActionFeatureUpdate>;
|
|
@@ -78300,95 +78295,96 @@ declare const DTOForgeProjectActionFeatureDelete: z__default.ZodObject<{
|
|
|
78300
78295
|
};
|
|
78301
78296
|
}>;
|
|
78302
78297
|
type DTOForgeProjectActionFeatureDelete = z__default.infer<typeof DTOForgeProjectActionFeatureDelete>;
|
|
78298
|
+
declare const DTOForgeProjectActionFeatureMove: z__default.ZodObject<{
|
|
78299
|
+
type: z__default.ZodLiteral<"FeatureMove">;
|
|
78300
|
+
input: z__default.ZodObject<{
|
|
78301
|
+
id: z__default.ZodString;
|
|
78302
|
+
sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78303
|
+
afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78304
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78305
|
+
id: string;
|
|
78306
|
+
sectionId?: string | null | undefined;
|
|
78307
|
+
afterId?: string | null | undefined;
|
|
78308
|
+
}, {
|
|
78309
|
+
id: string;
|
|
78310
|
+
sectionId?: string | null | undefined;
|
|
78311
|
+
afterId?: string | null | undefined;
|
|
78312
|
+
}>;
|
|
78313
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78314
|
+
type: "FeatureMove";
|
|
78315
|
+
input: {
|
|
78316
|
+
id: string;
|
|
78317
|
+
sectionId?: string | null | undefined;
|
|
78318
|
+
afterId?: string | null | undefined;
|
|
78319
|
+
};
|
|
78320
|
+
}, {
|
|
78321
|
+
type: "FeatureMove";
|
|
78322
|
+
input: {
|
|
78323
|
+
id: string;
|
|
78324
|
+
sectionId?: string | null | undefined;
|
|
78325
|
+
afterId?: string | null | undefined;
|
|
78326
|
+
};
|
|
78327
|
+
}>;
|
|
78328
|
+
type DTOForgeProjectActionFeatureMove = z__default.infer<typeof DTOForgeProjectActionFeatureMove>;
|
|
78303
78329
|
declare const DTOForgeProjectActionArtifactCreate: z__default.ZodObject<{
|
|
78304
78330
|
type: z__default.ZodLiteral<"ArtifactCreate">;
|
|
78305
|
-
input: z__default.ZodObject<
|
|
78331
|
+
input: z__default.ZodObject<{
|
|
78306
78332
|
id: z__default.ZodString;
|
|
78307
|
-
projectId: z__default.ZodString;
|
|
78308
|
-
iterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
78309
78333
|
title: z__default.ZodString;
|
|
78310
|
-
|
|
78311
|
-
|
|
78312
|
-
|
|
78313
|
-
createdAt: z__default.ZodDate;
|
|
78314
|
-
updatedAt: z__default.ZodDate;
|
|
78315
|
-
createdByUserId: z__default.ZodString;
|
|
78316
|
-
}, "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
|
|
78334
|
+
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
78335
|
+
afterArtifactId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
78336
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78317
78337
|
id: string;
|
|
78318
|
-
path: string;
|
|
78319
|
-
sortOrder: number;
|
|
78320
78338
|
title: string;
|
|
78321
|
-
|
|
78322
|
-
|
|
78339
|
+
sectionId?: string | undefined;
|
|
78340
|
+
afterArtifactId?: string | null | undefined;
|
|
78323
78341
|
}, {
|
|
78324
78342
|
id: string;
|
|
78325
|
-
path: string;
|
|
78326
78343
|
title: string;
|
|
78327
|
-
|
|
78328
|
-
|
|
78329
|
-
iterationId?: string | null | undefined;
|
|
78344
|
+
sectionId?: string | undefined;
|
|
78345
|
+
afterArtifactId?: string | null | undefined;
|
|
78330
78346
|
}>;
|
|
78331
78347
|
}, "strip", z__default.ZodTypeAny, {
|
|
78332
78348
|
type: "ArtifactCreate";
|
|
78333
78349
|
input: {
|
|
78334
78350
|
id: string;
|
|
78335
|
-
path: string;
|
|
78336
|
-
sortOrder: number;
|
|
78337
78351
|
title: string;
|
|
78338
|
-
|
|
78339
|
-
|
|
78352
|
+
sectionId?: string | undefined;
|
|
78353
|
+
afterArtifactId?: string | null | undefined;
|
|
78340
78354
|
};
|
|
78341
78355
|
}, {
|
|
78342
78356
|
type: "ArtifactCreate";
|
|
78343
78357
|
input: {
|
|
78344
78358
|
id: string;
|
|
78345
|
-
path: string;
|
|
78346
78359
|
title: string;
|
|
78347
|
-
|
|
78348
|
-
|
|
78349
|
-
iterationId?: string | null | undefined;
|
|
78360
|
+
sectionId?: string | undefined;
|
|
78361
|
+
afterArtifactId?: string | null | undefined;
|
|
78350
78362
|
};
|
|
78351
78363
|
}>;
|
|
78352
78364
|
type DTOForgeProjectActionArtifactCreate = z__default.infer<typeof DTOForgeProjectActionArtifactCreate>;
|
|
78353
78365
|
declare const DTOForgeProjectActionArtifactUpdate: z__default.ZodObject<{
|
|
78354
78366
|
type: z__default.ZodLiteral<"ArtifactUpdate">;
|
|
78355
78367
|
input: z__default.ZodObject<{
|
|
78356
|
-
path: z__default.ZodOptional<z__default.ZodString>;
|
|
78357
|
-
sortOrder: z__default.ZodOptional<z__default.ZodDefault<z__default.ZodNumber>>;
|
|
78358
|
-
title: z__default.ZodOptional<z__default.ZodString>;
|
|
78359
|
-
previewUrl: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78360
|
-
} & {
|
|
78361
78368
|
id: z__default.ZodString;
|
|
78369
|
+
title: z__default.ZodOptional<z__default.ZodString>;
|
|
78362
78370
|
}, "strip", z__default.ZodTypeAny, {
|
|
78363
78371
|
id: string;
|
|
78364
|
-
path?: string | undefined;
|
|
78365
|
-
sortOrder?: number | undefined;
|
|
78366
78372
|
title?: string | undefined;
|
|
78367
|
-
previewUrl?: string | null | undefined;
|
|
78368
78373
|
}, {
|
|
78369
78374
|
id: string;
|
|
78370
|
-
path?: string | undefined;
|
|
78371
|
-
sortOrder?: number | undefined;
|
|
78372
78375
|
title?: string | undefined;
|
|
78373
|
-
previewUrl?: string | null | undefined;
|
|
78374
78376
|
}>;
|
|
78375
78377
|
}, "strip", z__default.ZodTypeAny, {
|
|
78376
78378
|
type: "ArtifactUpdate";
|
|
78377
78379
|
input: {
|
|
78378
78380
|
id: string;
|
|
78379
|
-
path?: string | undefined;
|
|
78380
|
-
sortOrder?: number | undefined;
|
|
78381
78381
|
title?: string | undefined;
|
|
78382
|
-
previewUrl?: string | null | undefined;
|
|
78383
78382
|
};
|
|
78384
78383
|
}, {
|
|
78385
78384
|
type: "ArtifactUpdate";
|
|
78386
78385
|
input: {
|
|
78387
78386
|
id: string;
|
|
78388
|
-
path?: string | undefined;
|
|
78389
|
-
sortOrder?: number | undefined;
|
|
78390
78387
|
title?: string | undefined;
|
|
78391
|
-
previewUrl?: string | null | undefined;
|
|
78392
78388
|
};
|
|
78393
78389
|
}>;
|
|
78394
78390
|
type DTOForgeProjectActionArtifactUpdate = z__default.infer<typeof DTOForgeProjectActionArtifactUpdate>;
|
|
@@ -78413,7 +78409,176 @@ declare const DTOForgeProjectActionArtifactDelete: z__default.ZodObject<{
|
|
|
78413
78409
|
};
|
|
78414
78410
|
}>;
|
|
78415
78411
|
type DTOForgeProjectActionArtifactDelete = z__default.infer<typeof DTOForgeProjectActionArtifactDelete>;
|
|
78416
|
-
declare const
|
|
78412
|
+
declare const DTOForgeProjectActionArtifactMove: z__default.ZodObject<{
|
|
78413
|
+
type: z__default.ZodLiteral<"ArtifactMove">;
|
|
78414
|
+
input: z__default.ZodObject<{
|
|
78415
|
+
id: z__default.ZodString;
|
|
78416
|
+
sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78417
|
+
afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78418
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78419
|
+
id: string;
|
|
78420
|
+
sectionId?: string | null | undefined;
|
|
78421
|
+
afterId?: string | null | undefined;
|
|
78422
|
+
}, {
|
|
78423
|
+
id: string;
|
|
78424
|
+
sectionId?: string | null | undefined;
|
|
78425
|
+
afterId?: string | null | undefined;
|
|
78426
|
+
}>;
|
|
78427
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78428
|
+
type: "ArtifactMove";
|
|
78429
|
+
input: {
|
|
78430
|
+
id: string;
|
|
78431
|
+
sectionId?: string | null | undefined;
|
|
78432
|
+
afterId?: string | null | undefined;
|
|
78433
|
+
};
|
|
78434
|
+
}, {
|
|
78435
|
+
type: "ArtifactMove";
|
|
78436
|
+
input: {
|
|
78437
|
+
id: string;
|
|
78438
|
+
sectionId?: string | null | undefined;
|
|
78439
|
+
afterId?: string | null | undefined;
|
|
78440
|
+
};
|
|
78441
|
+
}>;
|
|
78442
|
+
type DTOForgeProjectActionArtifactMove = z__default.infer<typeof DTOForgeProjectActionArtifactMove>;
|
|
78443
|
+
declare const DTOForgeProjectActionSectionCreate: z__default.ZodObject<{
|
|
78444
|
+
type: z__default.ZodLiteral<"SectionCreate">;
|
|
78445
|
+
input: z__default.ZodObject<Pick<{
|
|
78446
|
+
id: z__default.ZodString;
|
|
78447
|
+
projectId: z__default.ZodString;
|
|
78448
|
+
name: z__default.ZodString;
|
|
78449
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
78450
|
+
createdAt: z__default.ZodDate;
|
|
78451
|
+
updatedAt: z__default.ZodDate;
|
|
78452
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
78453
|
+
}, "id" | "name" | "childType"> & {
|
|
78454
|
+
afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78455
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78456
|
+
id: string;
|
|
78457
|
+
name: string;
|
|
78458
|
+
childType: "Artifact" | "Feature";
|
|
78459
|
+
afterSectionId?: string | null | undefined;
|
|
78460
|
+
}, {
|
|
78461
|
+
id: string;
|
|
78462
|
+
name: string;
|
|
78463
|
+
childType: "Artifact" | "Feature";
|
|
78464
|
+
afterSectionId?: string | null | undefined;
|
|
78465
|
+
}>;
|
|
78466
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78467
|
+
type: "SectionCreate";
|
|
78468
|
+
input: {
|
|
78469
|
+
id: string;
|
|
78470
|
+
name: string;
|
|
78471
|
+
childType: "Artifact" | "Feature";
|
|
78472
|
+
afterSectionId?: string | null | undefined;
|
|
78473
|
+
};
|
|
78474
|
+
}, {
|
|
78475
|
+
type: "SectionCreate";
|
|
78476
|
+
input: {
|
|
78477
|
+
id: string;
|
|
78478
|
+
name: string;
|
|
78479
|
+
childType: "Artifact" | "Feature";
|
|
78480
|
+
afterSectionId?: string | null | undefined;
|
|
78481
|
+
};
|
|
78482
|
+
}>;
|
|
78483
|
+
type DTOForgeProjectActionSectionCreate = z__default.infer<typeof DTOForgeProjectActionSectionCreate>;
|
|
78484
|
+
declare const DTOForgeProjectActionSectionUpdate: z__default.ZodObject<{
|
|
78485
|
+
type: z__default.ZodLiteral<"SectionUpdate">;
|
|
78486
|
+
input: z__default.ZodObject<Pick<{
|
|
78487
|
+
id: z__default.ZodString;
|
|
78488
|
+
projectId: z__default.ZodString;
|
|
78489
|
+
name: z__default.ZodString;
|
|
78490
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
78491
|
+
createdAt: z__default.ZodDate;
|
|
78492
|
+
updatedAt: z__default.ZodDate;
|
|
78493
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
78494
|
+
}, "id" | "name">, "strip", z__default.ZodTypeAny, {
|
|
78495
|
+
id: string;
|
|
78496
|
+
name: string;
|
|
78497
|
+
}, {
|
|
78498
|
+
id: string;
|
|
78499
|
+
name: string;
|
|
78500
|
+
}>;
|
|
78501
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78502
|
+
type: "SectionUpdate";
|
|
78503
|
+
input: {
|
|
78504
|
+
id: string;
|
|
78505
|
+
name: string;
|
|
78506
|
+
};
|
|
78507
|
+
}, {
|
|
78508
|
+
type: "SectionUpdate";
|
|
78509
|
+
input: {
|
|
78510
|
+
id: string;
|
|
78511
|
+
name: string;
|
|
78512
|
+
};
|
|
78513
|
+
}>;
|
|
78514
|
+
type DTOForgeProjectActionSectionUpdate = z__default.infer<typeof DTOForgeProjectActionSectionUpdate>;
|
|
78515
|
+
declare const DTOForgeProjectActionSectionDelete: z__default.ZodObject<{
|
|
78516
|
+
type: z__default.ZodLiteral<"SectionDelete">;
|
|
78517
|
+
input: z__default.ZodObject<Pick<{
|
|
78518
|
+
id: z__default.ZodString;
|
|
78519
|
+
projectId: z__default.ZodString;
|
|
78520
|
+
name: z__default.ZodString;
|
|
78521
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
78522
|
+
createdAt: z__default.ZodDate;
|
|
78523
|
+
updatedAt: z__default.ZodDate;
|
|
78524
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
78525
|
+
}, "id"> & {
|
|
78526
|
+
deleteChildren: z__default.ZodDefault<z__default.ZodBoolean>;
|
|
78527
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78528
|
+
id: string;
|
|
78529
|
+
deleteChildren: boolean;
|
|
78530
|
+
}, {
|
|
78531
|
+
id: string;
|
|
78532
|
+
deleteChildren?: boolean | undefined;
|
|
78533
|
+
}>;
|
|
78534
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78535
|
+
type: "SectionDelete";
|
|
78536
|
+
input: {
|
|
78537
|
+
id: string;
|
|
78538
|
+
deleteChildren: boolean;
|
|
78539
|
+
};
|
|
78540
|
+
}, {
|
|
78541
|
+
type: "SectionDelete";
|
|
78542
|
+
input: {
|
|
78543
|
+
id: string;
|
|
78544
|
+
deleteChildren?: boolean | undefined;
|
|
78545
|
+
};
|
|
78546
|
+
}>;
|
|
78547
|
+
type DTOForgeProjectActionSectionDelete = z__default.infer<typeof DTOForgeProjectActionSectionDelete>;
|
|
78548
|
+
declare const DTOForgeProjectActionSectionMove: z__default.ZodObject<{
|
|
78549
|
+
type: z__default.ZodLiteral<"SectionMove">;
|
|
78550
|
+
input: z__default.ZodObject<Pick<{
|
|
78551
|
+
id: z__default.ZodString;
|
|
78552
|
+
projectId: z__default.ZodString;
|
|
78553
|
+
name: z__default.ZodString;
|
|
78554
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
78555
|
+
createdAt: z__default.ZodDate;
|
|
78556
|
+
updatedAt: z__default.ZodDate;
|
|
78557
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
78558
|
+
}, "id"> & {
|
|
78559
|
+
afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78560
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78561
|
+
id: string;
|
|
78562
|
+
afterSectionId?: string | null | undefined;
|
|
78563
|
+
}, {
|
|
78564
|
+
id: string;
|
|
78565
|
+
afterSectionId?: string | null | undefined;
|
|
78566
|
+
}>;
|
|
78567
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78568
|
+
type: "SectionMove";
|
|
78569
|
+
input: {
|
|
78570
|
+
id: string;
|
|
78571
|
+
afterSectionId?: string | null | undefined;
|
|
78572
|
+
};
|
|
78573
|
+
}, {
|
|
78574
|
+
type: "SectionMove";
|
|
78575
|
+
input: {
|
|
78576
|
+
id: string;
|
|
78577
|
+
afterSectionId?: string | null | undefined;
|
|
78578
|
+
};
|
|
78579
|
+
}>;
|
|
78580
|
+
type DTOForgeProjectActionSectionMove = z__default.infer<typeof DTOForgeProjectActionSectionMove>;
|
|
78581
|
+
declare const DTOForgeProjectAction: z__default.ZodIntersection<z__default.ZodDiscriminatedUnion<"type", [z__default.ZodObject<{
|
|
78417
78582
|
type: z__default.ZodLiteral<"FeatureCreate">;
|
|
78418
78583
|
input: z__default.ZodObject<{
|
|
78419
78584
|
id: z__default.ZodString;
|
|
@@ -78456,40 +78621,35 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
|
|
|
78456
78621
|
type: z__default.ZodLiteral<"FeatureUpdate">;
|
|
78457
78622
|
input: z__default.ZodObject<{
|
|
78458
78623
|
id: z__default.ZodString;
|
|
78459
|
-
name: z__default.ZodString
|
|
78460
|
-
description: z__default.ZodString
|
|
78461
|
-
|
|
78462
|
-
afterFeatureId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
78624
|
+
name: z__default.ZodOptional<z__default.ZodString>;
|
|
78625
|
+
description: z__default.ZodOptional<z__default.ZodString>;
|
|
78626
|
+
isArchived: z__default.ZodOptional<z__default.ZodBoolean>;
|
|
78463
78627
|
}, "strip", z__default.ZodTypeAny, {
|
|
78464
78628
|
id: string;
|
|
78465
|
-
name
|
|
78466
|
-
description
|
|
78467
|
-
|
|
78468
|
-
afterFeatureId?: string | null | undefined;
|
|
78629
|
+
name?: string | undefined;
|
|
78630
|
+
description?: string | undefined;
|
|
78631
|
+
isArchived?: boolean | undefined;
|
|
78469
78632
|
}, {
|
|
78470
78633
|
id: string;
|
|
78471
|
-
name
|
|
78472
|
-
description
|
|
78473
|
-
|
|
78474
|
-
afterFeatureId?: string | null | undefined;
|
|
78634
|
+
name?: string | undefined;
|
|
78635
|
+
description?: string | undefined;
|
|
78636
|
+
isArchived?: boolean | undefined;
|
|
78475
78637
|
}>;
|
|
78476
78638
|
}, "strip", z__default.ZodTypeAny, {
|
|
78477
78639
|
type: "FeatureUpdate";
|
|
78478
78640
|
input: {
|
|
78479
78641
|
id: string;
|
|
78480
|
-
name
|
|
78481
|
-
description
|
|
78482
|
-
|
|
78483
|
-
afterFeatureId?: string | null | undefined;
|
|
78642
|
+
name?: string | undefined;
|
|
78643
|
+
description?: string | undefined;
|
|
78644
|
+
isArchived?: boolean | undefined;
|
|
78484
78645
|
};
|
|
78485
78646
|
}, {
|
|
78486
78647
|
type: "FeatureUpdate";
|
|
78487
78648
|
input: {
|
|
78488
78649
|
id: string;
|
|
78489
|
-
name
|
|
78490
|
-
description
|
|
78491
|
-
|
|
78492
|
-
afterFeatureId?: string | null | undefined;
|
|
78650
|
+
name?: string | undefined;
|
|
78651
|
+
description?: string | undefined;
|
|
78652
|
+
isArchived?: boolean | undefined;
|
|
78493
78653
|
};
|
|
78494
78654
|
}>, z__default.ZodObject<{
|
|
78495
78655
|
type: z__default.ZodLiteral<"FeatureDelete">;
|
|
@@ -78510,93 +78670,92 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
|
|
|
78510
78670
|
input: {
|
|
78511
78671
|
id: string;
|
|
78512
78672
|
};
|
|
78673
|
+
}>, z__default.ZodObject<{
|
|
78674
|
+
type: z__default.ZodLiteral<"FeatureMove">;
|
|
78675
|
+
input: z__default.ZodObject<{
|
|
78676
|
+
id: z__default.ZodString;
|
|
78677
|
+
sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78678
|
+
afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78679
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78680
|
+
id: string;
|
|
78681
|
+
sectionId?: string | null | undefined;
|
|
78682
|
+
afterId?: string | null | undefined;
|
|
78683
|
+
}, {
|
|
78684
|
+
id: string;
|
|
78685
|
+
sectionId?: string | null | undefined;
|
|
78686
|
+
afterId?: string | null | undefined;
|
|
78687
|
+
}>;
|
|
78688
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78689
|
+
type: "FeatureMove";
|
|
78690
|
+
input: {
|
|
78691
|
+
id: string;
|
|
78692
|
+
sectionId?: string | null | undefined;
|
|
78693
|
+
afterId?: string | null | undefined;
|
|
78694
|
+
};
|
|
78695
|
+
}, {
|
|
78696
|
+
type: "FeatureMove";
|
|
78697
|
+
input: {
|
|
78698
|
+
id: string;
|
|
78699
|
+
sectionId?: string | null | undefined;
|
|
78700
|
+
afterId?: string | null | undefined;
|
|
78701
|
+
};
|
|
78513
78702
|
}>, z__default.ZodObject<{
|
|
78514
78703
|
type: z__default.ZodLiteral<"ArtifactCreate">;
|
|
78515
|
-
input: z__default.ZodObject<
|
|
78704
|
+
input: z__default.ZodObject<{
|
|
78516
78705
|
id: z__default.ZodString;
|
|
78517
|
-
projectId: z__default.ZodString;
|
|
78518
|
-
iterationId: z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>;
|
|
78519
78706
|
title: z__default.ZodString;
|
|
78520
|
-
|
|
78521
|
-
|
|
78522
|
-
|
|
78523
|
-
createdAt: z__default.ZodDate;
|
|
78524
|
-
updatedAt: z__default.ZodDate;
|
|
78525
|
-
createdByUserId: z__default.ZodString;
|
|
78526
|
-
}, "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z__default.ZodTypeAny, {
|
|
78707
|
+
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
78708
|
+
afterArtifactId: z__default.ZodNullable<z__default.ZodOptional<z__default.ZodString>>;
|
|
78709
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78527
78710
|
id: string;
|
|
78528
|
-
path: string;
|
|
78529
|
-
sortOrder: number;
|
|
78530
78711
|
title: string;
|
|
78531
|
-
|
|
78532
|
-
|
|
78712
|
+
sectionId?: string | undefined;
|
|
78713
|
+
afterArtifactId?: string | null | undefined;
|
|
78533
78714
|
}, {
|
|
78534
78715
|
id: string;
|
|
78535
|
-
path: string;
|
|
78536
78716
|
title: string;
|
|
78537
|
-
|
|
78538
|
-
|
|
78539
|
-
iterationId?: string | null | undefined;
|
|
78717
|
+
sectionId?: string | undefined;
|
|
78718
|
+
afterArtifactId?: string | null | undefined;
|
|
78540
78719
|
}>;
|
|
78541
78720
|
}, "strip", z__default.ZodTypeAny, {
|
|
78542
78721
|
type: "ArtifactCreate";
|
|
78543
78722
|
input: {
|
|
78544
78723
|
id: string;
|
|
78545
|
-
path: string;
|
|
78546
|
-
sortOrder: number;
|
|
78547
78724
|
title: string;
|
|
78548
|
-
|
|
78549
|
-
|
|
78725
|
+
sectionId?: string | undefined;
|
|
78726
|
+
afterArtifactId?: string | null | undefined;
|
|
78550
78727
|
};
|
|
78551
78728
|
}, {
|
|
78552
78729
|
type: "ArtifactCreate";
|
|
78553
78730
|
input: {
|
|
78554
78731
|
id: string;
|
|
78555
|
-
path: string;
|
|
78556
78732
|
title: string;
|
|
78557
|
-
|
|
78558
|
-
|
|
78559
|
-
iterationId?: string | null | undefined;
|
|
78733
|
+
sectionId?: string | undefined;
|
|
78734
|
+
afterArtifactId?: string | null | undefined;
|
|
78560
78735
|
};
|
|
78561
78736
|
}>, z__default.ZodObject<{
|
|
78562
78737
|
type: z__default.ZodLiteral<"ArtifactUpdate">;
|
|
78563
78738
|
input: z__default.ZodObject<{
|
|
78564
|
-
path: z__default.ZodOptional<z__default.ZodString>;
|
|
78565
|
-
sortOrder: z__default.ZodOptional<z__default.ZodDefault<z__default.ZodNumber>>;
|
|
78566
|
-
title: z__default.ZodOptional<z__default.ZodString>;
|
|
78567
|
-
previewUrl: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78568
|
-
} & {
|
|
78569
78739
|
id: z__default.ZodString;
|
|
78740
|
+
title: z__default.ZodOptional<z__default.ZodString>;
|
|
78570
78741
|
}, "strip", z__default.ZodTypeAny, {
|
|
78571
78742
|
id: string;
|
|
78572
|
-
path?: string | undefined;
|
|
78573
|
-
sortOrder?: number | undefined;
|
|
78574
78743
|
title?: string | undefined;
|
|
78575
|
-
previewUrl?: string | null | undefined;
|
|
78576
78744
|
}, {
|
|
78577
78745
|
id: string;
|
|
78578
|
-
path?: string | undefined;
|
|
78579
|
-
sortOrder?: number | undefined;
|
|
78580
78746
|
title?: string | undefined;
|
|
78581
|
-
previewUrl?: string | null | undefined;
|
|
78582
78747
|
}>;
|
|
78583
78748
|
}, "strip", z__default.ZodTypeAny, {
|
|
78584
78749
|
type: "ArtifactUpdate";
|
|
78585
78750
|
input: {
|
|
78586
78751
|
id: string;
|
|
78587
|
-
path?: string | undefined;
|
|
78588
|
-
sortOrder?: number | undefined;
|
|
78589
78752
|
title?: string | undefined;
|
|
78590
|
-
previewUrl?: string | null | undefined;
|
|
78591
78753
|
};
|
|
78592
78754
|
}, {
|
|
78593
78755
|
type: "ArtifactUpdate";
|
|
78594
78756
|
input: {
|
|
78595
78757
|
id: string;
|
|
78596
|
-
path?: string | undefined;
|
|
78597
|
-
sortOrder?: number | undefined;
|
|
78598
78758
|
title?: string | undefined;
|
|
78599
|
-
previewUrl?: string | null | undefined;
|
|
78600
78759
|
};
|
|
78601
78760
|
}>, z__default.ZodObject<{
|
|
78602
78761
|
type: z__default.ZodLiteral<"ArtifactDelete">;
|
|
@@ -78617,7 +78776,172 @@ declare const DTOForgeProjectAction: z__default.ZodDiscriminatedUnion<"type", [z
|
|
|
78617
78776
|
input: {
|
|
78618
78777
|
id: string;
|
|
78619
78778
|
};
|
|
78620
|
-
}
|
|
78779
|
+
}>, z__default.ZodObject<{
|
|
78780
|
+
type: z__default.ZodLiteral<"ArtifactMove">;
|
|
78781
|
+
input: z__default.ZodObject<{
|
|
78782
|
+
id: z__default.ZodString;
|
|
78783
|
+
sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78784
|
+
afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78785
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78786
|
+
id: string;
|
|
78787
|
+
sectionId?: string | null | undefined;
|
|
78788
|
+
afterId?: string | null | undefined;
|
|
78789
|
+
}, {
|
|
78790
|
+
id: string;
|
|
78791
|
+
sectionId?: string | null | undefined;
|
|
78792
|
+
afterId?: string | null | undefined;
|
|
78793
|
+
}>;
|
|
78794
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78795
|
+
type: "ArtifactMove";
|
|
78796
|
+
input: {
|
|
78797
|
+
id: string;
|
|
78798
|
+
sectionId?: string | null | undefined;
|
|
78799
|
+
afterId?: string | null | undefined;
|
|
78800
|
+
};
|
|
78801
|
+
}, {
|
|
78802
|
+
type: "ArtifactMove";
|
|
78803
|
+
input: {
|
|
78804
|
+
id: string;
|
|
78805
|
+
sectionId?: string | null | undefined;
|
|
78806
|
+
afterId?: string | null | undefined;
|
|
78807
|
+
};
|
|
78808
|
+
}>, z__default.ZodObject<{
|
|
78809
|
+
type: z__default.ZodLiteral<"SectionCreate">;
|
|
78810
|
+
input: z__default.ZodObject<Pick<{
|
|
78811
|
+
id: z__default.ZodString;
|
|
78812
|
+
projectId: z__default.ZodString;
|
|
78813
|
+
name: z__default.ZodString;
|
|
78814
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
78815
|
+
createdAt: z__default.ZodDate;
|
|
78816
|
+
updatedAt: z__default.ZodDate;
|
|
78817
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
78818
|
+
}, "id" | "name" | "childType"> & {
|
|
78819
|
+
afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78820
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78821
|
+
id: string;
|
|
78822
|
+
name: string;
|
|
78823
|
+
childType: "Artifact" | "Feature";
|
|
78824
|
+
afterSectionId?: string | null | undefined;
|
|
78825
|
+
}, {
|
|
78826
|
+
id: string;
|
|
78827
|
+
name: string;
|
|
78828
|
+
childType: "Artifact" | "Feature";
|
|
78829
|
+
afterSectionId?: string | null | undefined;
|
|
78830
|
+
}>;
|
|
78831
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78832
|
+
type: "SectionCreate";
|
|
78833
|
+
input: {
|
|
78834
|
+
id: string;
|
|
78835
|
+
name: string;
|
|
78836
|
+
childType: "Artifact" | "Feature";
|
|
78837
|
+
afterSectionId?: string | null | undefined;
|
|
78838
|
+
};
|
|
78839
|
+
}, {
|
|
78840
|
+
type: "SectionCreate";
|
|
78841
|
+
input: {
|
|
78842
|
+
id: string;
|
|
78843
|
+
name: string;
|
|
78844
|
+
childType: "Artifact" | "Feature";
|
|
78845
|
+
afterSectionId?: string | null | undefined;
|
|
78846
|
+
};
|
|
78847
|
+
}>, z__default.ZodObject<{
|
|
78848
|
+
type: z__default.ZodLiteral<"SectionUpdate">;
|
|
78849
|
+
input: z__default.ZodObject<Pick<{
|
|
78850
|
+
id: z__default.ZodString;
|
|
78851
|
+
projectId: z__default.ZodString;
|
|
78852
|
+
name: z__default.ZodString;
|
|
78853
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
78854
|
+
createdAt: z__default.ZodDate;
|
|
78855
|
+
updatedAt: z__default.ZodDate;
|
|
78856
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
78857
|
+
}, "id" | "name">, "strip", z__default.ZodTypeAny, {
|
|
78858
|
+
id: string;
|
|
78859
|
+
name: string;
|
|
78860
|
+
}, {
|
|
78861
|
+
id: string;
|
|
78862
|
+
name: string;
|
|
78863
|
+
}>;
|
|
78864
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78865
|
+
type: "SectionUpdate";
|
|
78866
|
+
input: {
|
|
78867
|
+
id: string;
|
|
78868
|
+
name: string;
|
|
78869
|
+
};
|
|
78870
|
+
}, {
|
|
78871
|
+
type: "SectionUpdate";
|
|
78872
|
+
input: {
|
|
78873
|
+
id: string;
|
|
78874
|
+
name: string;
|
|
78875
|
+
};
|
|
78876
|
+
}>, z__default.ZodObject<{
|
|
78877
|
+
type: z__default.ZodLiteral<"SectionDelete">;
|
|
78878
|
+
input: z__default.ZodObject<Pick<{
|
|
78879
|
+
id: z__default.ZodString;
|
|
78880
|
+
projectId: z__default.ZodString;
|
|
78881
|
+
name: z__default.ZodString;
|
|
78882
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
78883
|
+
createdAt: z__default.ZodDate;
|
|
78884
|
+
updatedAt: z__default.ZodDate;
|
|
78885
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
78886
|
+
}, "id"> & {
|
|
78887
|
+
deleteChildren: z__default.ZodDefault<z__default.ZodBoolean>;
|
|
78888
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78889
|
+
id: string;
|
|
78890
|
+
deleteChildren: boolean;
|
|
78891
|
+
}, {
|
|
78892
|
+
id: string;
|
|
78893
|
+
deleteChildren?: boolean | undefined;
|
|
78894
|
+
}>;
|
|
78895
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78896
|
+
type: "SectionDelete";
|
|
78897
|
+
input: {
|
|
78898
|
+
id: string;
|
|
78899
|
+
deleteChildren: boolean;
|
|
78900
|
+
};
|
|
78901
|
+
}, {
|
|
78902
|
+
type: "SectionDelete";
|
|
78903
|
+
input: {
|
|
78904
|
+
id: string;
|
|
78905
|
+
deleteChildren?: boolean | undefined;
|
|
78906
|
+
};
|
|
78907
|
+
}>, z__default.ZodObject<{
|
|
78908
|
+
type: z__default.ZodLiteral<"SectionMove">;
|
|
78909
|
+
input: z__default.ZodObject<Pick<{
|
|
78910
|
+
id: z__default.ZodString;
|
|
78911
|
+
projectId: z__default.ZodString;
|
|
78912
|
+
name: z__default.ZodString;
|
|
78913
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
78914
|
+
createdAt: z__default.ZodDate;
|
|
78915
|
+
updatedAt: z__default.ZodDate;
|
|
78916
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
78917
|
+
}, "id"> & {
|
|
78918
|
+
afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
78919
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78920
|
+
id: string;
|
|
78921
|
+
afterSectionId?: string | null | undefined;
|
|
78922
|
+
}, {
|
|
78923
|
+
id: string;
|
|
78924
|
+
afterSectionId?: string | null | undefined;
|
|
78925
|
+
}>;
|
|
78926
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78927
|
+
type: "SectionMove";
|
|
78928
|
+
input: {
|
|
78929
|
+
id: string;
|
|
78930
|
+
afterSectionId?: string | null | undefined;
|
|
78931
|
+
};
|
|
78932
|
+
}, {
|
|
78933
|
+
type: "SectionMove";
|
|
78934
|
+
input: {
|
|
78935
|
+
id: string;
|
|
78936
|
+
afterSectionId?: string | null | undefined;
|
|
78937
|
+
};
|
|
78938
|
+
}>]>, z__default.ZodObject<{
|
|
78939
|
+
tId: z__default.ZodOptional<z__default.ZodString>;
|
|
78940
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
78941
|
+
tId?: string | undefined;
|
|
78942
|
+
}, {
|
|
78943
|
+
tId?: string | undefined;
|
|
78944
|
+
}>>;
|
|
78621
78945
|
type DTOForgeProjectAction = z__default.infer<typeof DTOForgeProjectAction>;
|
|
78622
78946
|
type DTOForgeProjectActionType = DTOForgeProjectAction["type"];
|
|
78623
78947
|
type DTOForgeProjectActionOfType<T extends DTOForgeProjectActionType> = Extract<DTOForgeProjectAction, {
|
|
@@ -78657,13 +78981,12 @@ declare const DTOForgeProjectArtifact: z$1.ZodObject<{
|
|
|
78657
78981
|
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78658
78982
|
title: z$1.ZodString;
|
|
78659
78983
|
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78660
|
-
path: z$1.ZodString;
|
|
78661
78984
|
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78662
78985
|
createdAt: z$1.ZodDate;
|
|
78663
78986
|
updatedAt: z$1.ZodDate;
|
|
78664
78987
|
createdByUserId: z$1.ZodString;
|
|
78988
|
+
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
78665
78989
|
}, "strip", z$1.ZodTypeAny, {
|
|
78666
|
-
path: string;
|
|
78667
78990
|
id: string;
|
|
78668
78991
|
createdAt: Date;
|
|
78669
78992
|
updatedAt: Date;
|
|
@@ -78673,8 +78996,8 @@ declare const DTOForgeProjectArtifact: z$1.ZodObject<{
|
|
|
78673
78996
|
projectId: string;
|
|
78674
78997
|
previewUrl?: string | null | undefined;
|
|
78675
78998
|
iterationId?: string | null | undefined;
|
|
78999
|
+
sectionId?: string | undefined;
|
|
78676
79000
|
}, {
|
|
78677
|
-
path: string;
|
|
78678
79001
|
id: string;
|
|
78679
79002
|
createdAt: Date;
|
|
78680
79003
|
updatedAt: Date;
|
|
@@ -78684,54 +79007,35 @@ declare const DTOForgeProjectArtifact: z$1.ZodObject<{
|
|
|
78684
79007
|
sortOrder?: number | undefined;
|
|
78685
79008
|
previewUrl?: string | null | undefined;
|
|
78686
79009
|
iterationId?: string | null | undefined;
|
|
79010
|
+
sectionId?: string | undefined;
|
|
78687
79011
|
}>;
|
|
78688
79012
|
type DTOForgeProjectArtifact = z$1.infer<typeof DTOForgeProjectArtifact>;
|
|
78689
79013
|
declare const DTOForgeProjectArtifactUpdateInput: z$1.ZodObject<{
|
|
78690
|
-
path: z$1.ZodOptional<z$1.ZodString>;
|
|
78691
|
-
sortOrder: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodNumber>>;
|
|
78692
|
-
title: z$1.ZodOptional<z$1.ZodString>;
|
|
78693
|
-
previewUrl: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
78694
|
-
} & {
|
|
78695
79014
|
id: z$1.ZodString;
|
|
79015
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
78696
79016
|
}, "strip", z$1.ZodTypeAny, {
|
|
78697
79017
|
id: string;
|
|
78698
|
-
path?: string | undefined;
|
|
78699
|
-
sortOrder?: number | undefined;
|
|
78700
79018
|
title?: string | undefined;
|
|
78701
|
-
previewUrl?: string | null | undefined;
|
|
78702
79019
|
}, {
|
|
78703
79020
|
id: string;
|
|
78704
|
-
path?: string | undefined;
|
|
78705
|
-
sortOrder?: number | undefined;
|
|
78706
79021
|
title?: string | undefined;
|
|
78707
|
-
previewUrl?: string | null | undefined;
|
|
78708
79022
|
}>;
|
|
78709
79023
|
type DTOForgeProjectArtifactUpdateInput = z$1.infer<typeof DTOForgeProjectArtifactUpdateInput>;
|
|
78710
|
-
declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<
|
|
79024
|
+
declare const DTOForgeProjectArtifactCreateInput: z$1.ZodObject<{
|
|
78711
79025
|
id: z$1.ZodString;
|
|
78712
|
-
projectId: z$1.ZodString;
|
|
78713
|
-
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78714
79026
|
title: z$1.ZodString;
|
|
78715
|
-
|
|
78716
|
-
|
|
78717
|
-
|
|
78718
|
-
createdAt: z$1.ZodDate;
|
|
78719
|
-
updatedAt: z$1.ZodDate;
|
|
78720
|
-
createdByUserId: z$1.ZodString;
|
|
78721
|
-
}, "createdAt" | "updatedAt" | "createdByUserId" | "projectId">, "strip", z$1.ZodTypeAny, {
|
|
79027
|
+
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
79028
|
+
afterArtifactId: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodString>>;
|
|
79029
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
78722
79030
|
id: string;
|
|
78723
|
-
path: string;
|
|
78724
|
-
sortOrder: number;
|
|
78725
79031
|
title: string;
|
|
78726
|
-
|
|
78727
|
-
|
|
79032
|
+
sectionId?: string | undefined;
|
|
79033
|
+
afterArtifactId?: string | null | undefined;
|
|
78728
79034
|
}, {
|
|
78729
79035
|
id: string;
|
|
78730
|
-
path: string;
|
|
78731
79036
|
title: string;
|
|
78732
|
-
|
|
78733
|
-
|
|
78734
|
-
iterationId?: string | null | undefined;
|
|
79037
|
+
sectionId?: string | undefined;
|
|
79038
|
+
afterArtifactId?: string | null | undefined;
|
|
78735
79039
|
}>;
|
|
78736
79040
|
type DTOForgeProjectArtifactCreateInput = z$1.infer<typeof DTOForgeProjectArtifactCreateInput>;
|
|
78737
79041
|
declare const DTOForgeProjectArtifactDeleteInput: z$1.ZodObject<{
|
|
@@ -78742,6 +79046,20 @@ declare const DTOForgeProjectArtifactDeleteInput: z$1.ZodObject<{
|
|
|
78742
79046
|
id: string;
|
|
78743
79047
|
}>;
|
|
78744
79048
|
type DTOForgeProjectArtifactDeleteInput = z$1.infer<typeof DTOForgeProjectArtifactDeleteInput>;
|
|
79049
|
+
declare const DTOForgeProjectArtifactMoveInput: z$1.ZodObject<{
|
|
79050
|
+
id: z$1.ZodString;
|
|
79051
|
+
sectionId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
79052
|
+
afterId: z$1.ZodOptional<z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>>;
|
|
79053
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
79054
|
+
id: string;
|
|
79055
|
+
sectionId?: string | null | undefined;
|
|
79056
|
+
afterId?: string | null | undefined;
|
|
79057
|
+
}, {
|
|
79058
|
+
id: string;
|
|
79059
|
+
sectionId?: string | null | undefined;
|
|
79060
|
+
afterId?: string | null | undefined;
|
|
79061
|
+
}>;
|
|
79062
|
+
type DTOForgeProjectArtifactMoveInput = z$1.infer<typeof DTOForgeProjectArtifactMoveInput>;
|
|
78745
79063
|
declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
|
|
78746
79064
|
artifact: z$1.ZodObject<{
|
|
78747
79065
|
id: z$1.ZodString;
|
|
@@ -78749,13 +79067,12 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
|
|
|
78749
79067
|
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78750
79068
|
title: z$1.ZodString;
|
|
78751
79069
|
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78752
|
-
path: z$1.ZodString;
|
|
78753
79070
|
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78754
79071
|
createdAt: z$1.ZodDate;
|
|
78755
79072
|
updatedAt: z$1.ZodDate;
|
|
78756
79073
|
createdByUserId: z$1.ZodString;
|
|
79074
|
+
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
78757
79075
|
}, "strip", z$1.ZodTypeAny, {
|
|
78758
|
-
path: string;
|
|
78759
79076
|
id: string;
|
|
78760
79077
|
createdAt: Date;
|
|
78761
79078
|
updatedAt: Date;
|
|
@@ -78765,8 +79082,8 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
|
|
|
78765
79082
|
projectId: string;
|
|
78766
79083
|
previewUrl?: string | null | undefined;
|
|
78767
79084
|
iterationId?: string | null | undefined;
|
|
79085
|
+
sectionId?: string | undefined;
|
|
78768
79086
|
}, {
|
|
78769
|
-
path: string;
|
|
78770
79087
|
id: string;
|
|
78771
79088
|
createdAt: Date;
|
|
78772
79089
|
updatedAt: Date;
|
|
@@ -78776,10 +79093,10 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
|
|
|
78776
79093
|
sortOrder?: number | undefined;
|
|
78777
79094
|
previewUrl?: string | null | undefined;
|
|
78778
79095
|
iterationId?: string | null | undefined;
|
|
79096
|
+
sectionId?: string | undefined;
|
|
78779
79097
|
}>;
|
|
78780
79098
|
}, "strip", z$1.ZodTypeAny, {
|
|
78781
79099
|
artifact: {
|
|
78782
|
-
path: string;
|
|
78783
79100
|
id: string;
|
|
78784
79101
|
createdAt: Date;
|
|
78785
79102
|
updatedAt: Date;
|
|
@@ -78789,10 +79106,10 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
|
|
|
78789
79106
|
projectId: string;
|
|
78790
79107
|
previewUrl?: string | null | undefined;
|
|
78791
79108
|
iterationId?: string | null | undefined;
|
|
79109
|
+
sectionId?: string | undefined;
|
|
78792
79110
|
};
|
|
78793
79111
|
}, {
|
|
78794
79112
|
artifact: {
|
|
78795
|
-
path: string;
|
|
78796
79113
|
id: string;
|
|
78797
79114
|
createdAt: Date;
|
|
78798
79115
|
updatedAt: Date;
|
|
@@ -78802,6 +79119,7 @@ declare const DTOForgeProjectArtifactGetResponse: z$1.ZodObject<{
|
|
|
78802
79119
|
sortOrder?: number | undefined;
|
|
78803
79120
|
previewUrl?: string | null | undefined;
|
|
78804
79121
|
iterationId?: string | null | undefined;
|
|
79122
|
+
sectionId?: string | undefined;
|
|
78805
79123
|
};
|
|
78806
79124
|
}>;
|
|
78807
79125
|
type DTOForgeProjectArtifactGetResponse = z$1.infer<typeof DTOForgeProjectArtifactGetResponse>;
|
|
@@ -78812,13 +79130,12 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
|
|
|
78812
79130
|
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78813
79131
|
title: z$1.ZodString;
|
|
78814
79132
|
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78815
|
-
path: z$1.ZodString;
|
|
78816
79133
|
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78817
79134
|
createdAt: z$1.ZodDate;
|
|
78818
79135
|
updatedAt: z$1.ZodDate;
|
|
78819
79136
|
createdByUserId: z$1.ZodString;
|
|
79137
|
+
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
78820
79138
|
}, "strip", z$1.ZodTypeAny, {
|
|
78821
|
-
path: string;
|
|
78822
79139
|
id: string;
|
|
78823
79140
|
createdAt: Date;
|
|
78824
79141
|
updatedAt: Date;
|
|
@@ -78828,8 +79145,8 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
|
|
|
78828
79145
|
projectId: string;
|
|
78829
79146
|
previewUrl?: string | null | undefined;
|
|
78830
79147
|
iterationId?: string | null | undefined;
|
|
79148
|
+
sectionId?: string | undefined;
|
|
78831
79149
|
}, {
|
|
78832
|
-
path: string;
|
|
78833
79150
|
id: string;
|
|
78834
79151
|
createdAt: Date;
|
|
78835
79152
|
updatedAt: Date;
|
|
@@ -78839,10 +79156,10 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
|
|
|
78839
79156
|
sortOrder?: number | undefined;
|
|
78840
79157
|
previewUrl?: string | null | undefined;
|
|
78841
79158
|
iterationId?: string | null | undefined;
|
|
79159
|
+
sectionId?: string | undefined;
|
|
78842
79160
|
}>;
|
|
78843
79161
|
}, "strip", z$1.ZodTypeAny, {
|
|
78844
79162
|
artifact: {
|
|
78845
|
-
path: string;
|
|
78846
79163
|
id: string;
|
|
78847
79164
|
createdAt: Date;
|
|
78848
79165
|
updatedAt: Date;
|
|
@@ -78852,10 +79169,10 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
|
|
|
78852
79169
|
projectId: string;
|
|
78853
79170
|
previewUrl?: string | null | undefined;
|
|
78854
79171
|
iterationId?: string | null | undefined;
|
|
79172
|
+
sectionId?: string | undefined;
|
|
78855
79173
|
};
|
|
78856
79174
|
}, {
|
|
78857
79175
|
artifact: {
|
|
78858
|
-
path: string;
|
|
78859
79176
|
id: string;
|
|
78860
79177
|
createdAt: Date;
|
|
78861
79178
|
updatedAt: Date;
|
|
@@ -78865,6 +79182,7 @@ declare const DTOForgeProjectArtifactCreateResponse: z$1.ZodObject<{
|
|
|
78865
79182
|
sortOrder?: number | undefined;
|
|
78866
79183
|
previewUrl?: string | null | undefined;
|
|
78867
79184
|
iterationId?: string | null | undefined;
|
|
79185
|
+
sectionId?: string | undefined;
|
|
78868
79186
|
};
|
|
78869
79187
|
}>;
|
|
78870
79188
|
type DTOForgeProjectArtifactCreateResponse = z$1.infer<typeof DTOForgeProjectArtifactCreateResponse>;
|
|
@@ -78875,13 +79193,12 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
|
|
|
78875
79193
|
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78876
79194
|
title: z$1.ZodString;
|
|
78877
79195
|
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78878
|
-
path: z$1.ZodString;
|
|
78879
79196
|
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78880
79197
|
createdAt: z$1.ZodDate;
|
|
78881
79198
|
updatedAt: z$1.ZodDate;
|
|
78882
79199
|
createdByUserId: z$1.ZodString;
|
|
79200
|
+
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
78883
79201
|
}, "strip", z$1.ZodTypeAny, {
|
|
78884
|
-
path: string;
|
|
78885
79202
|
id: string;
|
|
78886
79203
|
createdAt: Date;
|
|
78887
79204
|
updatedAt: Date;
|
|
@@ -78891,8 +79208,8 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
|
|
|
78891
79208
|
projectId: string;
|
|
78892
79209
|
previewUrl?: string | null | undefined;
|
|
78893
79210
|
iterationId?: string | null | undefined;
|
|
79211
|
+
sectionId?: string | undefined;
|
|
78894
79212
|
}, {
|
|
78895
|
-
path: string;
|
|
78896
79213
|
id: string;
|
|
78897
79214
|
createdAt: Date;
|
|
78898
79215
|
updatedAt: Date;
|
|
@@ -78902,10 +79219,10 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
|
|
|
78902
79219
|
sortOrder?: number | undefined;
|
|
78903
79220
|
previewUrl?: string | null | undefined;
|
|
78904
79221
|
iterationId?: string | null | undefined;
|
|
79222
|
+
sectionId?: string | undefined;
|
|
78905
79223
|
}>;
|
|
78906
79224
|
}, "strip", z$1.ZodTypeAny, {
|
|
78907
79225
|
artifact: {
|
|
78908
|
-
path: string;
|
|
78909
79226
|
id: string;
|
|
78910
79227
|
createdAt: Date;
|
|
78911
79228
|
updatedAt: Date;
|
|
@@ -78915,10 +79232,10 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
|
|
|
78915
79232
|
projectId: string;
|
|
78916
79233
|
previewUrl?: string | null | undefined;
|
|
78917
79234
|
iterationId?: string | null | undefined;
|
|
79235
|
+
sectionId?: string | undefined;
|
|
78918
79236
|
};
|
|
78919
79237
|
}, {
|
|
78920
79238
|
artifact: {
|
|
78921
|
-
path: string;
|
|
78922
79239
|
id: string;
|
|
78923
79240
|
createdAt: Date;
|
|
78924
79241
|
updatedAt: Date;
|
|
@@ -78928,6 +79245,7 @@ declare const DTOForgeProjectArtifactUpdateResponse: z$1.ZodObject<{
|
|
|
78928
79245
|
sortOrder?: number | undefined;
|
|
78929
79246
|
previewUrl?: string | null | undefined;
|
|
78930
79247
|
iterationId?: string | null | undefined;
|
|
79248
|
+
sectionId?: string | undefined;
|
|
78931
79249
|
};
|
|
78932
79250
|
}>;
|
|
78933
79251
|
type DTOForgeProjectArtifactUpdateResponse = z$1.infer<typeof DTOForgeProjectArtifactUpdateResponse>;
|
|
@@ -78939,6 +79257,69 @@ declare const DTOForgeProjectArtifactDeleteResponse: z$1.ZodObject<{
|
|
|
78939
79257
|
ok: true;
|
|
78940
79258
|
}>;
|
|
78941
79259
|
type DTOForgeProjectArtifactDeleteResponse = z$1.infer<typeof DTOForgeProjectArtifactDeleteResponse>;
|
|
79260
|
+
declare const DTOForgeProjectArtifactMoveResponse: z$1.ZodObject<{
|
|
79261
|
+
artifact: z$1.ZodObject<{
|
|
79262
|
+
id: z$1.ZodString;
|
|
79263
|
+
projectId: z$1.ZodString;
|
|
79264
|
+
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
79265
|
+
title: z$1.ZodString;
|
|
79266
|
+
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
79267
|
+
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
79268
|
+
createdAt: z$1.ZodDate;
|
|
79269
|
+
updatedAt: z$1.ZodDate;
|
|
79270
|
+
createdByUserId: z$1.ZodString;
|
|
79271
|
+
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
79272
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
79273
|
+
id: string;
|
|
79274
|
+
createdAt: Date;
|
|
79275
|
+
updatedAt: Date;
|
|
79276
|
+
title: string;
|
|
79277
|
+
sortOrder: number;
|
|
79278
|
+
createdByUserId: string;
|
|
79279
|
+
projectId: string;
|
|
79280
|
+
previewUrl?: string | null | undefined;
|
|
79281
|
+
iterationId?: string | null | undefined;
|
|
79282
|
+
sectionId?: string | undefined;
|
|
79283
|
+
}, {
|
|
79284
|
+
id: string;
|
|
79285
|
+
createdAt: Date;
|
|
79286
|
+
updatedAt: Date;
|
|
79287
|
+
title: string;
|
|
79288
|
+
createdByUserId: string;
|
|
79289
|
+
projectId: string;
|
|
79290
|
+
sortOrder?: number | undefined;
|
|
79291
|
+
previewUrl?: string | null | undefined;
|
|
79292
|
+
iterationId?: string | null | undefined;
|
|
79293
|
+
sectionId?: string | undefined;
|
|
79294
|
+
}>;
|
|
79295
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
79296
|
+
artifact: {
|
|
79297
|
+
id: string;
|
|
79298
|
+
createdAt: Date;
|
|
79299
|
+
updatedAt: Date;
|
|
79300
|
+
title: string;
|
|
79301
|
+
sortOrder: number;
|
|
79302
|
+
createdByUserId: string;
|
|
79303
|
+
projectId: string;
|
|
79304
|
+
previewUrl?: string | null | undefined;
|
|
79305
|
+
iterationId?: string | null | undefined;
|
|
79306
|
+
sectionId?: string | undefined;
|
|
79307
|
+
};
|
|
79308
|
+
}, {
|
|
79309
|
+
artifact: {
|
|
79310
|
+
id: string;
|
|
79311
|
+
createdAt: Date;
|
|
79312
|
+
updatedAt: Date;
|
|
79313
|
+
title: string;
|
|
79314
|
+
createdByUserId: string;
|
|
79315
|
+
projectId: string;
|
|
79316
|
+
sortOrder?: number | undefined;
|
|
79317
|
+
previewUrl?: string | null | undefined;
|
|
79318
|
+
iterationId?: string | null | undefined;
|
|
79319
|
+
sectionId?: string | undefined;
|
|
79320
|
+
};
|
|
79321
|
+
}>;
|
|
79322
|
+
type DTOForgeProjectArtifactMoveResponse = z$1.infer<typeof DTOForgeProjectArtifactMoveResponse>;
|
|
78942
79323
|
declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
|
|
78943
79324
|
artifacts: z$1.ZodArray<z$1.ZodObject<{
|
|
78944
79325
|
id: z$1.ZodString;
|
|
@@ -78946,13 +79327,12 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
|
|
|
78946
79327
|
iterationId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78947
79328
|
title: z$1.ZodString;
|
|
78948
79329
|
previewUrl: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
78949
|
-
path: z$1.ZodString;
|
|
78950
79330
|
sortOrder: z$1.ZodDefault<z$1.ZodNumber>;
|
|
78951
79331
|
createdAt: z$1.ZodDate;
|
|
78952
79332
|
updatedAt: z$1.ZodDate;
|
|
78953
79333
|
createdByUserId: z$1.ZodString;
|
|
79334
|
+
sectionId: z$1.ZodOptional<z$1.ZodString>;
|
|
78954
79335
|
}, "strip", z$1.ZodTypeAny, {
|
|
78955
|
-
path: string;
|
|
78956
79336
|
id: string;
|
|
78957
79337
|
createdAt: Date;
|
|
78958
79338
|
updatedAt: Date;
|
|
@@ -78962,8 +79342,8 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
|
|
|
78962
79342
|
projectId: string;
|
|
78963
79343
|
previewUrl?: string | null | undefined;
|
|
78964
79344
|
iterationId?: string | null | undefined;
|
|
79345
|
+
sectionId?: string | undefined;
|
|
78965
79346
|
}, {
|
|
78966
|
-
path: string;
|
|
78967
79347
|
id: string;
|
|
78968
79348
|
createdAt: Date;
|
|
78969
79349
|
updatedAt: Date;
|
|
@@ -78973,10 +79353,10 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
|
|
|
78973
79353
|
sortOrder?: number | undefined;
|
|
78974
79354
|
previewUrl?: string | null | undefined;
|
|
78975
79355
|
iterationId?: string | null | undefined;
|
|
79356
|
+
sectionId?: string | undefined;
|
|
78976
79357
|
}>, "many">;
|
|
78977
79358
|
}, "strip", z$1.ZodTypeAny, {
|
|
78978
79359
|
artifacts: {
|
|
78979
|
-
path: string;
|
|
78980
79360
|
id: string;
|
|
78981
79361
|
createdAt: Date;
|
|
78982
79362
|
updatedAt: Date;
|
|
@@ -78986,10 +79366,10 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
|
|
|
78986
79366
|
projectId: string;
|
|
78987
79367
|
previewUrl?: string | null | undefined;
|
|
78988
79368
|
iterationId?: string | null | undefined;
|
|
79369
|
+
sectionId?: string | undefined;
|
|
78989
79370
|
}[];
|
|
78990
79371
|
}, {
|
|
78991
79372
|
artifacts: {
|
|
78992
|
-
path: string;
|
|
78993
79373
|
id: string;
|
|
78994
79374
|
createdAt: Date;
|
|
78995
79375
|
updatedAt: Date;
|
|
@@ -78999,6 +79379,7 @@ declare const DTOForgeProjectArtifactsListResponse: z$1.ZodObject<{
|
|
|
78999
79379
|
sortOrder?: number | undefined;
|
|
79000
79380
|
previewUrl?: string | null | undefined;
|
|
79001
79381
|
iterationId?: string | null | undefined;
|
|
79382
|
+
sectionId?: string | undefined;
|
|
79002
79383
|
}[];
|
|
79003
79384
|
}>;
|
|
79004
79385
|
type DTOForgeProjectArtifactsListResponse = z$1.infer<typeof DTOForgeProjectArtifactsListResponse>;
|
|
@@ -80711,7 +81092,7 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
|
|
|
80711
81092
|
name: z__default.ZodString;
|
|
80712
81093
|
projectId: z__default.ZodString;
|
|
80713
81094
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
80714
|
-
sortOrder: z__default.ZodNumber
|
|
81095
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
80715
81096
|
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
80716
81097
|
}, "strip", z__default.ZodTypeAny, {
|
|
80717
81098
|
id: string;
|
|
@@ -80722,19 +81103,19 @@ declare const DTOForgeProjectFeature: z__default.ZodObject<{
|
|
|
80722
81103
|
createdByUserId: string;
|
|
80723
81104
|
projectId: string;
|
|
80724
81105
|
updatedAt?: Date | undefined;
|
|
80725
|
-
isArchived?: boolean | undefined;
|
|
80726
81106
|
sectionId?: string | undefined;
|
|
81107
|
+
isArchived?: boolean | undefined;
|
|
80727
81108
|
}, {
|
|
80728
81109
|
id: string;
|
|
80729
81110
|
name: string;
|
|
80730
81111
|
createdAt: Date;
|
|
80731
81112
|
description: string;
|
|
80732
|
-
sortOrder: number;
|
|
80733
81113
|
createdByUserId: string;
|
|
80734
81114
|
projectId: string;
|
|
80735
81115
|
updatedAt?: Date | undefined;
|
|
80736
|
-
|
|
81116
|
+
sortOrder?: number | undefined;
|
|
80737
81117
|
sectionId?: string | undefined;
|
|
81118
|
+
isArchived?: boolean | undefined;
|
|
80738
81119
|
}>;
|
|
80739
81120
|
type DTOForgeProjectFeature = z__default.infer<typeof DTOForgeProjectFeature>;
|
|
80740
81121
|
declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
@@ -80747,7 +81128,7 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
80747
81128
|
name: z__default.ZodString;
|
|
80748
81129
|
projectId: z__default.ZodString;
|
|
80749
81130
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
80750
|
-
sortOrder: z__default.ZodNumber
|
|
81131
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
80751
81132
|
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
80752
81133
|
}, "strip", z__default.ZodTypeAny, {
|
|
80753
81134
|
id: string;
|
|
@@ -80758,19 +81139,19 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
80758
81139
|
createdByUserId: string;
|
|
80759
81140
|
projectId: string;
|
|
80760
81141
|
updatedAt?: Date | undefined;
|
|
80761
|
-
isArchived?: boolean | undefined;
|
|
80762
81142
|
sectionId?: string | undefined;
|
|
81143
|
+
isArchived?: boolean | undefined;
|
|
80763
81144
|
}, {
|
|
80764
81145
|
id: string;
|
|
80765
81146
|
name: string;
|
|
80766
81147
|
createdAt: Date;
|
|
80767
81148
|
description: string;
|
|
80768
|
-
sortOrder: number;
|
|
80769
81149
|
createdByUserId: string;
|
|
80770
81150
|
projectId: string;
|
|
80771
81151
|
updatedAt?: Date | undefined;
|
|
80772
|
-
|
|
81152
|
+
sortOrder?: number | undefined;
|
|
80773
81153
|
sectionId?: string | undefined;
|
|
81154
|
+
isArchived?: boolean | undefined;
|
|
80774
81155
|
}>, "many">;
|
|
80775
81156
|
}, "strip", z__default.ZodTypeAny, {
|
|
80776
81157
|
features: {
|
|
@@ -80782,8 +81163,8 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
80782
81163
|
createdByUserId: string;
|
|
80783
81164
|
projectId: string;
|
|
80784
81165
|
updatedAt?: Date | undefined;
|
|
80785
|
-
isArchived?: boolean | undefined;
|
|
80786
81166
|
sectionId?: string | undefined;
|
|
81167
|
+
isArchived?: boolean | undefined;
|
|
80787
81168
|
}[];
|
|
80788
81169
|
}, {
|
|
80789
81170
|
features: {
|
|
@@ -80791,12 +81172,12 @@ declare const DTOForgeProjectFeatureListResponse: z__default.ZodObject<{
|
|
|
80791
81172
|
name: string;
|
|
80792
81173
|
createdAt: Date;
|
|
80793
81174
|
description: string;
|
|
80794
|
-
sortOrder: number;
|
|
80795
81175
|
createdByUserId: string;
|
|
80796
81176
|
projectId: string;
|
|
80797
81177
|
updatedAt?: Date | undefined;
|
|
80798
|
-
|
|
81178
|
+
sortOrder?: number | undefined;
|
|
80799
81179
|
sectionId?: string | undefined;
|
|
81180
|
+
isArchived?: boolean | undefined;
|
|
80800
81181
|
}[];
|
|
80801
81182
|
}>;
|
|
80802
81183
|
type DTOForgeProjectFeatureListResponse = z__default.infer<typeof DTOForgeProjectFeatureListResponse>;
|
|
@@ -80847,16 +81228,16 @@ declare const DTOForgeProjectFeatureDeleteInput: z__default.ZodObject<{
|
|
|
80847
81228
|
type DTOForgeProjectFeatureDeleteInput = z__default.infer<typeof DTOForgeProjectFeatureDeleteInput>;
|
|
80848
81229
|
declare const DTOForgeProjectFeatureMoveInput: z__default.ZodObject<{
|
|
80849
81230
|
id: z__default.ZodString;
|
|
80850
|
-
sectionId: z__default.ZodOptional<z__default.ZodString
|
|
80851
|
-
|
|
81231
|
+
sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
81232
|
+
afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
80852
81233
|
}, "strip", z__default.ZodTypeAny, {
|
|
80853
81234
|
id: string;
|
|
80854
|
-
sectionId?: string | undefined;
|
|
80855
|
-
|
|
81235
|
+
sectionId?: string | null | undefined;
|
|
81236
|
+
afterId?: string | null | undefined;
|
|
80856
81237
|
}, {
|
|
80857
81238
|
id: string;
|
|
80858
|
-
sectionId?: string | undefined;
|
|
80859
|
-
|
|
81239
|
+
sectionId?: string | null | undefined;
|
|
81240
|
+
afterId?: string | null | undefined;
|
|
80860
81241
|
}>;
|
|
80861
81242
|
type DTOForgeProjectFeatureMoveInput = z__default.infer<typeof DTOForgeProjectFeatureMoveInput>;
|
|
80862
81243
|
declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
@@ -80869,7 +81250,7 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
|
80869
81250
|
name: z__default.ZodString;
|
|
80870
81251
|
projectId: z__default.ZodString;
|
|
80871
81252
|
sectionId: z__default.ZodOptional<z__default.ZodString>;
|
|
80872
|
-
sortOrder: z__default.ZodNumber
|
|
81253
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
80873
81254
|
updatedAt: z__default.ZodOptional<z__default.ZodDate>;
|
|
80874
81255
|
}, "strip", z__default.ZodTypeAny, {
|
|
80875
81256
|
id: string;
|
|
@@ -80880,19 +81261,19 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
|
80880
81261
|
createdByUserId: string;
|
|
80881
81262
|
projectId: string;
|
|
80882
81263
|
updatedAt?: Date | undefined;
|
|
80883
|
-
isArchived?: boolean | undefined;
|
|
80884
81264
|
sectionId?: string | undefined;
|
|
81265
|
+
isArchived?: boolean | undefined;
|
|
80885
81266
|
}, {
|
|
80886
81267
|
id: string;
|
|
80887
81268
|
name: string;
|
|
80888
81269
|
createdAt: Date;
|
|
80889
81270
|
description: string;
|
|
80890
|
-
sortOrder: number;
|
|
80891
81271
|
createdByUserId: string;
|
|
80892
81272
|
projectId: string;
|
|
80893
81273
|
updatedAt?: Date | undefined;
|
|
80894
|
-
|
|
81274
|
+
sortOrder?: number | undefined;
|
|
80895
81275
|
sectionId?: string | undefined;
|
|
81276
|
+
isArchived?: boolean | undefined;
|
|
80896
81277
|
}>;
|
|
80897
81278
|
}, "strip", z__default.ZodTypeAny, {
|
|
80898
81279
|
feature: {
|
|
@@ -80904,8 +81285,8 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
|
80904
81285
|
createdByUserId: string;
|
|
80905
81286
|
projectId: string;
|
|
80906
81287
|
updatedAt?: Date | undefined;
|
|
80907
|
-
isArchived?: boolean | undefined;
|
|
80908
81288
|
sectionId?: string | undefined;
|
|
81289
|
+
isArchived?: boolean | undefined;
|
|
80909
81290
|
};
|
|
80910
81291
|
}, {
|
|
80911
81292
|
feature: {
|
|
@@ -80913,12 +81294,12 @@ declare const DTOForgeProjectFeatureGetResponse: z__default.ZodObject<{
|
|
|
80913
81294
|
name: string;
|
|
80914
81295
|
createdAt: Date;
|
|
80915
81296
|
description: string;
|
|
80916
|
-
sortOrder: number;
|
|
80917
81297
|
createdByUserId: string;
|
|
80918
81298
|
projectId: string;
|
|
80919
81299
|
updatedAt?: Date | undefined;
|
|
80920
|
-
|
|
81300
|
+
sortOrder?: number | undefined;
|
|
80921
81301
|
sectionId?: string | undefined;
|
|
81302
|
+
isArchived?: boolean | undefined;
|
|
80922
81303
|
};
|
|
80923
81304
|
}>;
|
|
80924
81305
|
type DTOForgeProjectFeatureGetResponse = z__default.infer<typeof DTOForgeProjectFeatureGetResponse>;
|
|
@@ -95840,6 +96221,121 @@ declare const DTOForgeProjectRoomResponse: z$1.ZodObject<{
|
|
|
95840
96221
|
}>;
|
|
95841
96222
|
type DTOForgeProjectRoomResponse = z$1.infer<typeof DTOForgeProjectRoomResponse>;
|
|
95842
96223
|
|
|
96224
|
+
declare const DTOForgeSection: z__default.ZodObject<{
|
|
96225
|
+
id: z__default.ZodString;
|
|
96226
|
+
projectId: z__default.ZodString;
|
|
96227
|
+
name: z__default.ZodString;
|
|
96228
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
96229
|
+
createdAt: z__default.ZodDate;
|
|
96230
|
+
updatedAt: z__default.ZodDate;
|
|
96231
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
96232
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
96233
|
+
id: string;
|
|
96234
|
+
name: string;
|
|
96235
|
+
createdAt: Date;
|
|
96236
|
+
updatedAt: Date;
|
|
96237
|
+
childType: "Artifact" | "Feature";
|
|
96238
|
+
sortOrder: number;
|
|
96239
|
+
projectId: string;
|
|
96240
|
+
}, {
|
|
96241
|
+
id: string;
|
|
96242
|
+
name: string;
|
|
96243
|
+
createdAt: Date;
|
|
96244
|
+
updatedAt: Date;
|
|
96245
|
+
childType: "Artifact" | "Feature";
|
|
96246
|
+
projectId: string;
|
|
96247
|
+
sortOrder?: number | undefined;
|
|
96248
|
+
}>;
|
|
96249
|
+
type DTOForgeSection = z__default.infer<typeof DTOForgeSection>;
|
|
96250
|
+
declare const DTOForgeSectionCreateInput: z__default.ZodObject<Pick<{
|
|
96251
|
+
id: z__default.ZodString;
|
|
96252
|
+
projectId: z__default.ZodString;
|
|
96253
|
+
name: z__default.ZodString;
|
|
96254
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
96255
|
+
createdAt: z__default.ZodDate;
|
|
96256
|
+
updatedAt: z__default.ZodDate;
|
|
96257
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
96258
|
+
}, "id" | "name" | "childType"> & {
|
|
96259
|
+
afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
96260
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
96261
|
+
id: string;
|
|
96262
|
+
name: string;
|
|
96263
|
+
childType: "Artifact" | "Feature";
|
|
96264
|
+
afterSectionId?: string | null | undefined;
|
|
96265
|
+
}, {
|
|
96266
|
+
id: string;
|
|
96267
|
+
name: string;
|
|
96268
|
+
childType: "Artifact" | "Feature";
|
|
96269
|
+
afterSectionId?: string | null | undefined;
|
|
96270
|
+
}>;
|
|
96271
|
+
type DTOForgeSectionCreateInput = z__default.infer<typeof DTOForgeSectionCreateInput>;
|
|
96272
|
+
declare const DTOForgeSectionUpdateInput: z__default.ZodObject<Pick<{
|
|
96273
|
+
id: z__default.ZodString;
|
|
96274
|
+
projectId: z__default.ZodString;
|
|
96275
|
+
name: z__default.ZodString;
|
|
96276
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
96277
|
+
createdAt: z__default.ZodDate;
|
|
96278
|
+
updatedAt: z__default.ZodDate;
|
|
96279
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
96280
|
+
}, "id" | "name">, "strip", z__default.ZodTypeAny, {
|
|
96281
|
+
id: string;
|
|
96282
|
+
name: string;
|
|
96283
|
+
}, {
|
|
96284
|
+
id: string;
|
|
96285
|
+
name: string;
|
|
96286
|
+
}>;
|
|
96287
|
+
type DTOForgeSectionUpdateInput = z__default.infer<typeof DTOForgeSectionUpdateInput>;
|
|
96288
|
+
declare const DTOForgeSectionDeleteInput: z__default.ZodObject<Pick<{
|
|
96289
|
+
id: z__default.ZodString;
|
|
96290
|
+
projectId: z__default.ZodString;
|
|
96291
|
+
name: z__default.ZodString;
|
|
96292
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
96293
|
+
createdAt: z__default.ZodDate;
|
|
96294
|
+
updatedAt: z__default.ZodDate;
|
|
96295
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
96296
|
+
}, "id"> & {
|
|
96297
|
+
deleteChildren: z__default.ZodDefault<z__default.ZodBoolean>;
|
|
96298
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
96299
|
+
id: string;
|
|
96300
|
+
deleteChildren: boolean;
|
|
96301
|
+
}, {
|
|
96302
|
+
id: string;
|
|
96303
|
+
deleteChildren?: boolean | undefined;
|
|
96304
|
+
}>;
|
|
96305
|
+
type DTOForgeSectionDeleteInput = z__default.infer<typeof DTOForgeSectionDeleteInput>;
|
|
96306
|
+
declare const DTOForgeSectionMoveInput: z__default.ZodObject<Pick<{
|
|
96307
|
+
id: z__default.ZodString;
|
|
96308
|
+
projectId: z__default.ZodString;
|
|
96309
|
+
name: z__default.ZodString;
|
|
96310
|
+
sortOrder: z__default.ZodDefault<z__default.ZodNumber>;
|
|
96311
|
+
createdAt: z__default.ZodDate;
|
|
96312
|
+
updatedAt: z__default.ZodDate;
|
|
96313
|
+
childType: z__default.ZodEnum<["Artifact", "Feature"]>;
|
|
96314
|
+
}, "id"> & {
|
|
96315
|
+
afterSectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
96316
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
96317
|
+
id: string;
|
|
96318
|
+
afterSectionId?: string | null | undefined;
|
|
96319
|
+
}, {
|
|
96320
|
+
id: string;
|
|
96321
|
+
afterSectionId?: string | null | undefined;
|
|
96322
|
+
}>;
|
|
96323
|
+
type DTOForgeSectionMoveInput = z__default.infer<typeof DTOForgeSectionMoveInput>;
|
|
96324
|
+
declare const DTOForgeSectionItemMoveInput: z__default.ZodObject<{
|
|
96325
|
+
id: z__default.ZodString;
|
|
96326
|
+
sectionId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
96327
|
+
afterId: z__default.ZodOptional<z__default.ZodOptional<z__default.ZodNullable<z__default.ZodString>>>;
|
|
96328
|
+
}, "strip", z__default.ZodTypeAny, {
|
|
96329
|
+
id: string;
|
|
96330
|
+
sectionId?: string | null | undefined;
|
|
96331
|
+
afterId?: string | null | undefined;
|
|
96332
|
+
}, {
|
|
96333
|
+
id: string;
|
|
96334
|
+
sectionId?: string | null | undefined;
|
|
96335
|
+
afterId?: string | null | undefined;
|
|
96336
|
+
}>;
|
|
96337
|
+
type DTOForgeSectionItemMoveInput = z__default.infer<typeof DTOForgeSectionItemMoveInput>;
|
|
96338
|
+
|
|
95843
96339
|
declare const DTOForgeProject: z$1.ZodObject<Omit<{
|
|
95844
96340
|
createdAt: z$1.ZodDate;
|
|
95845
96341
|
createdByUserId: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -128416,7 +128912,11 @@ type LocalDocsPageGroup = OmitStrict<ElementGroup, "id" | "brandPersistentId" |
|
|
|
128416
128912
|
};
|
|
128417
128913
|
type LocalApproval = OmitStrict<DocumentationPageApproval, "id" | "pageId" | "persistentId">;
|
|
128418
128914
|
type NarrowedUnion<T, U extends T> = U;
|
|
128419
|
-
type
|
|
128915
|
+
type SupportedElementActionType = NarrowedUnion<DTOElementActionInput["type"], "DocumentationPageCreate" | "DocumentationPageUpdate" | "DocumentationPageDelete" | "DocumentationPageMove" | "DocumentationGroupCreate" | "DocumentationGroupUpdate" | "DocumentationGroupMove" | "DocumentationPageApprovalStateChange" | "DocumentationTabCreate">;
|
|
128916
|
+
type ProjectContentState = {
|
|
128917
|
+
artifacts: DTOForgeProjectArtifact[];
|
|
128918
|
+
features: DTOForgeProjectFeature[];
|
|
128919
|
+
};
|
|
128420
128920
|
|
|
128421
128921
|
type DocsPage$3 = LocalDocsPage | VersionRoomDocsPage;
|
|
128422
128922
|
type DocsPageGroup$3 = LocalDocsPageGroup | VersionRoomDocsPageGroup;
|
|
@@ -138745,8 +139245,8 @@ declare class ForgeFeaturesEndpoint {
|
|
|
138745
139245
|
createdByUserId: string;
|
|
138746
139246
|
projectId: string;
|
|
138747
139247
|
updatedAt?: Date | undefined;
|
|
138748
|
-
isArchived?: boolean | undefined;
|
|
138749
139248
|
sectionId?: string | undefined;
|
|
139249
|
+
isArchived?: boolean | undefined;
|
|
138750
139250
|
}[];
|
|
138751
139251
|
}>;
|
|
138752
139252
|
get(workspaceId: string, projectId: string, featureId: string): Promise<{
|
|
@@ -138759,8 +139259,8 @@ declare class ForgeFeaturesEndpoint {
|
|
|
138759
139259
|
createdByUserId: string;
|
|
138760
139260
|
projectId: string;
|
|
138761
139261
|
updatedAt?: Date | undefined;
|
|
138762
|
-
isArchived?: boolean | undefined;
|
|
138763
139262
|
sectionId?: string | undefined;
|
|
139263
|
+
isArchived?: boolean | undefined;
|
|
138764
139264
|
};
|
|
138765
139265
|
}>;
|
|
138766
139266
|
}
|
|
@@ -140106,8 +140606,8 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
140106
140606
|
createdByUserId: string;
|
|
140107
140607
|
projectId: string;
|
|
140108
140608
|
updatedAt?: Date | undefined;
|
|
140109
|
-
isArchived?: boolean | undefined;
|
|
140110
140609
|
sectionId?: string | undefined;
|
|
140610
|
+
isArchived?: boolean | undefined;
|
|
140111
140611
|
}[];
|
|
140112
140612
|
}>;
|
|
140113
140613
|
get(workspaceId: string, projectId: string, featureId: string): Promise<{
|
|
@@ -140120,8 +140620,8 @@ declare class ForgeProjectFeaturesEndpoint {
|
|
|
140120
140620
|
createdByUserId: string;
|
|
140121
140621
|
projectId: string;
|
|
140122
140622
|
updatedAt?: Date | undefined;
|
|
140123
|
-
isArchived?: boolean | undefined;
|
|
140124
140623
|
sectionId?: string | undefined;
|
|
140624
|
+
isArchived?: boolean | undefined;
|
|
140125
140625
|
};
|
|
140126
140626
|
}>;
|
|
140127
140627
|
}
|
|
@@ -142978,6 +143478,7 @@ type ForgeProjectRoomTransaction = {
|
|
|
142978
143478
|
artifactIdsToDelete?: string[];
|
|
142979
143479
|
features?: ProjectFeature[];
|
|
142980
143480
|
featureIdsToDelete?: string[];
|
|
143481
|
+
executedTransactionIds?: string[];
|
|
142981
143482
|
};
|
|
142982
143483
|
declare class BackendForgeProjectRoomYDoc {
|
|
142983
143484
|
private readonly yDoc;
|
|
@@ -142989,6 +143490,7 @@ interface ForgeProjectRoomBaseYDocState {
|
|
|
142989
143490
|
isLoaded: boolean;
|
|
142990
143491
|
artifacts: ForgeProjectArtifact[];
|
|
142991
143492
|
features: ProjectFeature[];
|
|
143493
|
+
executedTransactionIds: string[];
|
|
142992
143494
|
}
|
|
142993
143495
|
declare class ForgeProjectRoomBaseYDoc {
|
|
142994
143496
|
private readonly yDoc;
|
|
@@ -143002,6 +143504,9 @@ declare class ForgeProjectRoomBaseYDoc {
|
|
|
143002
143504
|
updateFeatures(features: ProjectFeature[]): void;
|
|
143003
143505
|
deleteFeatures(ids: string[]): void;
|
|
143004
143506
|
private get featuresYMap();
|
|
143507
|
+
updateExecutedTransactionIds(transactionIds: string[]): void;
|
|
143508
|
+
getExecutedTransactionIds(): string[];
|
|
143509
|
+
private get executedTransactionIdsArray();
|
|
143005
143510
|
private getObjects;
|
|
143006
143511
|
private setObjects;
|
|
143007
143512
|
private deleteObjects;
|
|
@@ -143116,57 +143621,6 @@ declare class FrontendVersionRoomYDoc {
|
|
|
143116
143621
|
|
|
143117
143622
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
143118
143623
|
|
|
143119
|
-
type HierarchyObserver = (hierarchy: DTODocumentationHierarchyV2) => void;
|
|
143120
|
-
type SettingsObserver = (settings: DTODocumentationSettings) => void;
|
|
143121
|
-
type ErrorObserver<T> = (error: unknown, actionMetadata: T | undefined) => void;
|
|
143122
|
-
type TransactionExecutor = (trx: DTOElementActionInput) => Promise<void>;
|
|
143123
|
-
type TransactionIdGenerator = () => string;
|
|
143124
|
-
type Action = DTOElementActionInputOfType<SupportedActionType>;
|
|
143125
|
-
type InputAction<T> = OmitStrict<Action, "tId">;
|
|
143126
|
-
declare class DocsStructureRepository<T> {
|
|
143127
|
-
private userId;
|
|
143128
|
-
private designSystemVersionId;
|
|
143129
|
-
private readonly yDoc;
|
|
143130
|
-
private readonly yObserver;
|
|
143131
|
-
private _yState;
|
|
143132
|
-
private _currentHierarchy;
|
|
143133
|
-
private _currentSettings;
|
|
143134
|
-
private localActions;
|
|
143135
|
-
private readonly actionQueue;
|
|
143136
|
-
private readonly hierarchyObservers;
|
|
143137
|
-
private readonly settingsObservers;
|
|
143138
|
-
private readonly errorObservers;
|
|
143139
|
-
private readonly initCallbacks;
|
|
143140
|
-
private readonly transactionIdGenerator;
|
|
143141
|
-
private readonly transactionExecutor;
|
|
143142
|
-
constructor(config: {
|
|
143143
|
-
userId: string;
|
|
143144
|
-
designSystemVersionId: string;
|
|
143145
|
-
yDoc: Y.Doc;
|
|
143146
|
-
transactionExecutor: TransactionExecutor;
|
|
143147
|
-
transactionIdGenerator: TransactionIdGenerator;
|
|
143148
|
-
});
|
|
143149
|
-
get isInitialized(): boolean;
|
|
143150
|
-
onInitialized(): Promise<void>;
|
|
143151
|
-
addHierarchyObserver(observer: HierarchyObserver): void;
|
|
143152
|
-
removeHierarchyObserver(observer: HierarchyObserver): void;
|
|
143153
|
-
addSettingsObserver(observer: SettingsObserver): void;
|
|
143154
|
-
removeSettingsObserver(observer: SettingsObserver): void;
|
|
143155
|
-
addErrorObserver(observer: ErrorObserver<T>): void;
|
|
143156
|
-
removeErrorObserver(observer: ErrorObserver<T>): void;
|
|
143157
|
-
dispose(): void;
|
|
143158
|
-
get currentHierarchy(): DTODocumentationHierarchyV2;
|
|
143159
|
-
executeAction(action: InputAction<T>, metadata?: T): void;
|
|
143160
|
-
executeActionPromise(action: InputAction<T>, metadata?: T): Promise<void>;
|
|
143161
|
-
notifyPageContentUpdated(pagePersistentId: string, content: DocumentationPageEditorModel, definitions: DTOPageBlockDefinition[]): void;
|
|
143162
|
-
private executeInternalAction;
|
|
143163
|
-
private refreshState;
|
|
143164
|
-
private refreshSettings;
|
|
143165
|
-
private refreshHierarchy;
|
|
143166
|
-
private calculateHierarchy;
|
|
143167
|
-
private onYUpdate;
|
|
143168
|
-
}
|
|
143169
|
-
|
|
143170
143624
|
type Page = LocalDocsPage | VersionRoomDocsPage;
|
|
143171
143625
|
type Group = LocalDocsPageGroup | VersionRoomDocsPageGroup;
|
|
143172
143626
|
type ApprovalState = LocalApproval | VersionRoomApproval;
|
|
@@ -143212,6 +143666,101 @@ declare class LocalDocsElementActionExecutor {
|
|
|
143212
143666
|
private calculateSortOrder;
|
|
143213
143667
|
}
|
|
143214
143668
|
|
|
143669
|
+
type HierarchyObserver = (hierarchy: DTODocumentationHierarchyV2) => void;
|
|
143670
|
+
type SettingsObserver = (settings: DTODocumentationSettings) => void;
|
|
143671
|
+
type ErrorObserver$1<T> = (error: unknown, actionMetadata: T | undefined) => void;
|
|
143672
|
+
type TransactionExecutor$1 = (trx: DTOElementActionInput) => Promise<void>;
|
|
143673
|
+
type TransactionIdGenerator$1 = () => string;
|
|
143674
|
+
type Action$1 = DTOElementActionInputOfType<SupportedElementActionType>;
|
|
143675
|
+
type InputAction$1<T> = OmitStrict<Action$1, "tId">;
|
|
143676
|
+
declare class DocsStructureRepository<T> {
|
|
143677
|
+
private userId;
|
|
143678
|
+
private designSystemVersionId;
|
|
143679
|
+
private readonly yDoc;
|
|
143680
|
+
private readonly yObserver;
|
|
143681
|
+
private _yState;
|
|
143682
|
+
private _currentHierarchy;
|
|
143683
|
+
private _currentSettings;
|
|
143684
|
+
private localActions;
|
|
143685
|
+
private readonly actionQueue;
|
|
143686
|
+
private readonly hierarchyObservers;
|
|
143687
|
+
private readonly settingsObservers;
|
|
143688
|
+
private readonly errorObservers;
|
|
143689
|
+
private readonly initCallbacks;
|
|
143690
|
+
private readonly transactionIdGenerator;
|
|
143691
|
+
private readonly transactionExecutor;
|
|
143692
|
+
constructor(config: {
|
|
143693
|
+
userId: string;
|
|
143694
|
+
designSystemVersionId: string;
|
|
143695
|
+
yDoc: Y.Doc;
|
|
143696
|
+
transactionExecutor: TransactionExecutor$1;
|
|
143697
|
+
transactionIdGenerator: TransactionIdGenerator$1;
|
|
143698
|
+
});
|
|
143699
|
+
get isInitialized(): boolean;
|
|
143700
|
+
onInitialized(): Promise<void>;
|
|
143701
|
+
addHierarchyObserver(observer: HierarchyObserver): void;
|
|
143702
|
+
removeHierarchyObserver(observer: HierarchyObserver): void;
|
|
143703
|
+
addSettingsObserver(observer: SettingsObserver): void;
|
|
143704
|
+
removeSettingsObserver(observer: SettingsObserver): void;
|
|
143705
|
+
addErrorObserver(observer: ErrorObserver$1<T>): void;
|
|
143706
|
+
removeErrorObserver(observer: ErrorObserver$1<T>): void;
|
|
143707
|
+
dispose(): void;
|
|
143708
|
+
get currentHierarchy(): DTODocumentationHierarchyV2;
|
|
143709
|
+
executeAction(action: InputAction$1<T>, metadata?: T): void;
|
|
143710
|
+
executeActionPromise(action: InputAction$1<T>, metadata?: T): Promise<void>;
|
|
143711
|
+
notifyPageContentUpdated(pagePersistentId: string, content: DocumentationPageEditorModel, definitions: DTOPageBlockDefinition[]): void;
|
|
143712
|
+
private executeInternalAction;
|
|
143713
|
+
private refreshState;
|
|
143714
|
+
private refreshSettings;
|
|
143715
|
+
private refreshHierarchy;
|
|
143716
|
+
private calculateHierarchy;
|
|
143717
|
+
private onYUpdate;
|
|
143718
|
+
}
|
|
143719
|
+
|
|
143720
|
+
type ProjectContentObserver = (projectContent: ProjectContentState) => void;
|
|
143721
|
+
type ErrorObserver<T> = (error: unknown, actionMetadata: T | undefined) => void;
|
|
143722
|
+
type TransactionExecutor = (trx: DTOForgeProjectAction) => Promise<void>;
|
|
143723
|
+
type TransactionIdGenerator = () => string;
|
|
143724
|
+
type Action = DTOForgeProjectActionOfType<DTOForgeProjectAction["type"]>;
|
|
143725
|
+
type InputAction<T> = OmitStrict<Action, "tId">;
|
|
143726
|
+
declare class ForgeProjectContentRepository<T> {
|
|
143727
|
+
private userId;
|
|
143728
|
+
private projectId;
|
|
143729
|
+
private readonly yDoc;
|
|
143730
|
+
private readonly yObserver;
|
|
143731
|
+
private _yState;
|
|
143732
|
+
private _currentProjectContent;
|
|
143733
|
+
private localActions;
|
|
143734
|
+
private readonly actionQueue;
|
|
143735
|
+
private readonly projectContentObservers;
|
|
143736
|
+
private readonly errorObservers;
|
|
143737
|
+
private readonly initCallbacks;
|
|
143738
|
+
private readonly transactionIdGenerator;
|
|
143739
|
+
private readonly transactionExecutor;
|
|
143740
|
+
constructor(config: {
|
|
143741
|
+
userId: string;
|
|
143742
|
+
projectId: string;
|
|
143743
|
+
yDoc: Y.Doc;
|
|
143744
|
+
transactionExecutor: TransactionExecutor;
|
|
143745
|
+
transactionIdGenerator: TransactionIdGenerator;
|
|
143746
|
+
});
|
|
143747
|
+
get isInitialized(): boolean;
|
|
143748
|
+
onInitialized(): Promise<void>;
|
|
143749
|
+
addProjectContentObserver(observer: ProjectContentObserver): void;
|
|
143750
|
+
removeProjectContentObserver(observer: ProjectContentObserver): void;
|
|
143751
|
+
addErrorObserver(observer: ErrorObserver<T>): void;
|
|
143752
|
+
removeErrorObserver(observer: ErrorObserver<T>): void;
|
|
143753
|
+
dispose(): void;
|
|
143754
|
+
get currentProjectContent(): ProjectContentState;
|
|
143755
|
+
executeAction(action: InputAction<T>, metadata?: T): void;
|
|
143756
|
+
executeActionPromise(action: InputAction<T>, metadata?: T): Promise<void>;
|
|
143757
|
+
private executeInternalAction;
|
|
143758
|
+
private refreshState;
|
|
143759
|
+
private refreshProjectContent;
|
|
143760
|
+
private calculateProjectState;
|
|
143761
|
+
private onYUpdate;
|
|
143762
|
+
}
|
|
143763
|
+
|
|
143215
143764
|
declare enum ParsedFigmaFileURLError {
|
|
143216
143765
|
InvalidUrl = "InvalidUrl",
|
|
143217
143766
|
InvalidFigmaFileId = "InvalidFigmaFileId"
|
|
@@ -143273,4 +143822,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
143273
143822
|
reason: ValidationErrorReason | undefined;
|
|
143274
143823
|
};
|
|
143275
143824
|
|
|
143276
|
-
export { BackendForgeProjectRoomYDoc, 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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, 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, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, 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 };
|
|
143825
|
+
export { BackendForgeProjectRoomYDoc, 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, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, 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, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListResponse, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextUpdateResponse, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectGetResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMembersListResponse, DTOForgeProjectRoom, DTOForgeProjectRoomResponse, DTOForgeProjectsListResponse, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, 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, ForgeFeaturesEndpoint, ForgeIterationMessagesEndpoint, ForgeParticipantsEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, 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 ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, 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 };
|