@supernova-studio/client 0.52.2 → 0.52.3
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 +208 -122
- package/dist/index.d.ts +208 -122
- package/dist/index.js +29 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +465 -438
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/documentation/approvals.ts +11 -1
- package/src/api/dto/elements/documentation/group-v2.ts +4 -0
- package/src/yjs/version-room/frontend.ts +20 -0
package/dist/index.d.mts
CHANGED
|
@@ -5859,17 +5859,17 @@ declare const DTOGetDocumentationPageAnchorsResponse: z.ZodObject<{
|
|
|
5859
5859
|
}>;
|
|
5860
5860
|
type DTOGetDocumentationPageAnchorsResponse = z.infer<typeof DTOGetDocumentationPageAnchorsResponse>;
|
|
5861
5861
|
|
|
5862
|
-
declare const DTODocumentationPageApprovalState:
|
|
5863
|
-
id:
|
|
5864
|
-
approvalState:
|
|
5865
|
-
persistentId:
|
|
5866
|
-
pageId:
|
|
5867
|
-
pagePersistentId:
|
|
5868
|
-
updatedByUserId:
|
|
5869
|
-
designSystemVersionId:
|
|
5870
|
-
updatedAt:
|
|
5871
|
-
createdAt:
|
|
5872
|
-
}, "strip",
|
|
5862
|
+
declare const DTODocumentationPageApprovalState: z.ZodObject<{
|
|
5863
|
+
id: z.ZodString;
|
|
5864
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
5865
|
+
persistentId: z.ZodString;
|
|
5866
|
+
pageId: z.ZodString;
|
|
5867
|
+
pagePersistentId: z.ZodString;
|
|
5868
|
+
updatedByUserId: z.ZodString;
|
|
5869
|
+
designSystemVersionId: z.ZodString;
|
|
5870
|
+
updatedAt: z.ZodDate;
|
|
5871
|
+
createdAt: z.ZodDate;
|
|
5872
|
+
}, "strip", z.ZodTypeAny, {
|
|
5873
5873
|
id: string;
|
|
5874
5874
|
createdAt: Date;
|
|
5875
5875
|
updatedAt: Date;
|
|
@@ -5891,6 +5891,23 @@ declare const DTODocumentationPageApprovalState: zod.ZodObject<{
|
|
|
5891
5891
|
updatedByUserId: string;
|
|
5892
5892
|
}>;
|
|
5893
5893
|
type DTODocumentationPageApprovalState = DocumentationPageApproval;
|
|
5894
|
+
declare const DTODocumentationGroupApprovalState: z.ZodObject<{
|
|
5895
|
+
persistentId: z.ZodString;
|
|
5896
|
+
groupId: z.ZodString;
|
|
5897
|
+
designSystemVersionId: z.ZodString;
|
|
5898
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
5899
|
+
}, "strip", z.ZodTypeAny, {
|
|
5900
|
+
persistentId: string;
|
|
5901
|
+
designSystemVersionId: string;
|
|
5902
|
+
groupId: string;
|
|
5903
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
5904
|
+
}, {
|
|
5905
|
+
persistentId: string;
|
|
5906
|
+
designSystemVersionId: string;
|
|
5907
|
+
groupId: string;
|
|
5908
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
5909
|
+
}>;
|
|
5910
|
+
type DTODocumentationGroupApprovalState = z.infer<typeof DTODocumentationGroupApprovalState>;
|
|
5894
5911
|
|
|
5895
5912
|
declare const DTOPageBlockDefinitionBehavior: z.ZodObject<{
|
|
5896
5913
|
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
@@ -7381,6 +7398,17 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7381
7398
|
};
|
|
7382
7399
|
slug?: string | undefined;
|
|
7383
7400
|
userSlug?: string | undefined;
|
|
7401
|
+
approvalState?: {
|
|
7402
|
+
id: string;
|
|
7403
|
+
createdAt: Date;
|
|
7404
|
+
updatedAt: Date;
|
|
7405
|
+
persistentId: string;
|
|
7406
|
+
designSystemVersionId: string;
|
|
7407
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7408
|
+
pageId: string;
|
|
7409
|
+
pagePersistentId: string;
|
|
7410
|
+
updatedByUserId: string;
|
|
7411
|
+
} | undefined;
|
|
7384
7412
|
draftState?: {
|
|
7385
7413
|
changeType: "Created";
|
|
7386
7414
|
} | {
|
|
@@ -7430,17 +7458,6 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7430
7458
|
lastPublishedByUserId: string;
|
|
7431
7459
|
lastPublishedAt: Date;
|
|
7432
7460
|
} | undefined;
|
|
7433
|
-
approvalState?: {
|
|
7434
|
-
id: string;
|
|
7435
|
-
createdAt: Date;
|
|
7436
|
-
updatedAt: Date;
|
|
7437
|
-
persistentId: string;
|
|
7438
|
-
designSystemVersionId: string;
|
|
7439
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7440
|
-
pageId: string;
|
|
7441
|
-
pagePersistentId: string;
|
|
7442
|
-
updatedByUserId: string;
|
|
7443
|
-
} | undefined;
|
|
7444
7461
|
}, {
|
|
7445
7462
|
path: string;
|
|
7446
7463
|
type: "Page";
|
|
@@ -7485,6 +7502,17 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7485
7502
|
};
|
|
7486
7503
|
slug?: string | undefined;
|
|
7487
7504
|
userSlug?: string | undefined;
|
|
7505
|
+
approvalState?: {
|
|
7506
|
+
id: string;
|
|
7507
|
+
createdAt: Date;
|
|
7508
|
+
updatedAt: Date;
|
|
7509
|
+
persistentId: string;
|
|
7510
|
+
designSystemVersionId: string;
|
|
7511
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7512
|
+
pageId: string;
|
|
7513
|
+
pagePersistentId: string;
|
|
7514
|
+
updatedByUserId: string;
|
|
7515
|
+
} | undefined;
|
|
7488
7516
|
draftState?: {
|
|
7489
7517
|
changeType: "Created";
|
|
7490
7518
|
} | {
|
|
@@ -7534,17 +7562,6 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7534
7562
|
lastPublishedByUserId: string;
|
|
7535
7563
|
lastPublishedAt: Date;
|
|
7536
7564
|
} | undefined;
|
|
7537
|
-
approvalState?: {
|
|
7538
|
-
id: string;
|
|
7539
|
-
createdAt: Date;
|
|
7540
|
-
updatedAt: Date;
|
|
7541
|
-
persistentId: string;
|
|
7542
|
-
designSystemVersionId: string;
|
|
7543
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7544
|
-
pageId: string;
|
|
7545
|
-
pagePersistentId: string;
|
|
7546
|
-
updatedByUserId: string;
|
|
7547
|
-
} | undefined;
|
|
7548
7565
|
}>;
|
|
7549
7566
|
pageContentHash: z.ZodString;
|
|
7550
7567
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
@@ -7597,6 +7614,17 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7597
7614
|
};
|
|
7598
7615
|
slug?: string | undefined;
|
|
7599
7616
|
userSlug?: string | undefined;
|
|
7617
|
+
approvalState?: {
|
|
7618
|
+
id: string;
|
|
7619
|
+
createdAt: Date;
|
|
7620
|
+
updatedAt: Date;
|
|
7621
|
+
persistentId: string;
|
|
7622
|
+
designSystemVersionId: string;
|
|
7623
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7624
|
+
pageId: string;
|
|
7625
|
+
pagePersistentId: string;
|
|
7626
|
+
updatedByUserId: string;
|
|
7627
|
+
} | undefined;
|
|
7600
7628
|
draftState?: {
|
|
7601
7629
|
changeType: "Created";
|
|
7602
7630
|
} | {
|
|
@@ -7646,17 +7674,6 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7646
7674
|
lastPublishedByUserId: string;
|
|
7647
7675
|
lastPublishedAt: Date;
|
|
7648
7676
|
} | undefined;
|
|
7649
|
-
approvalState?: {
|
|
7650
|
-
id: string;
|
|
7651
|
-
createdAt: Date;
|
|
7652
|
-
updatedAt: Date;
|
|
7653
|
-
persistentId: string;
|
|
7654
|
-
designSystemVersionId: string;
|
|
7655
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7656
|
-
pageId: string;
|
|
7657
|
-
pagePersistentId: string;
|
|
7658
|
-
updatedByUserId: string;
|
|
7659
|
-
} | undefined;
|
|
7660
7677
|
};
|
|
7661
7678
|
pageContentHash: string;
|
|
7662
7679
|
reason: "Publish" | "Deletion";
|
|
@@ -7709,6 +7726,17 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7709
7726
|
};
|
|
7710
7727
|
slug?: string | undefined;
|
|
7711
7728
|
userSlug?: string | undefined;
|
|
7729
|
+
approvalState?: {
|
|
7730
|
+
id: string;
|
|
7731
|
+
createdAt: Date;
|
|
7732
|
+
updatedAt: Date;
|
|
7733
|
+
persistentId: string;
|
|
7734
|
+
designSystemVersionId: string;
|
|
7735
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7736
|
+
pageId: string;
|
|
7737
|
+
pagePersistentId: string;
|
|
7738
|
+
updatedByUserId: string;
|
|
7739
|
+
} | undefined;
|
|
7712
7740
|
draftState?: {
|
|
7713
7741
|
changeType: "Created";
|
|
7714
7742
|
} | {
|
|
@@ -7758,17 +7786,6 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7758
7786
|
lastPublishedByUserId: string;
|
|
7759
7787
|
lastPublishedAt: Date;
|
|
7760
7788
|
} | undefined;
|
|
7761
|
-
approvalState?: {
|
|
7762
|
-
id: string;
|
|
7763
|
-
createdAt: Date;
|
|
7764
|
-
updatedAt: Date;
|
|
7765
|
-
persistentId: string;
|
|
7766
|
-
designSystemVersionId: string;
|
|
7767
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7768
|
-
pageId: string;
|
|
7769
|
-
pagePersistentId: string;
|
|
7770
|
-
updatedByUserId: string;
|
|
7771
|
-
} | undefined;
|
|
7772
7789
|
};
|
|
7773
7790
|
pageContentHash: string;
|
|
7774
7791
|
reason: "Publish" | "Deletion";
|
|
@@ -11389,6 +11406,22 @@ declare const DTODocumentationGroupV2: z.ZodObject<z.objectUtil.extendShape<Omit
|
|
|
11389
11406
|
lastPublishedByUserId: string;
|
|
11390
11407
|
lastPublishedAt: Date;
|
|
11391
11408
|
}>>;
|
|
11409
|
+
approvalState: z.ZodOptional<z.ZodObject<{
|
|
11410
|
+
persistentId: z.ZodString;
|
|
11411
|
+
groupId: z.ZodString;
|
|
11412
|
+
designSystemVersionId: z.ZodString;
|
|
11413
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
11414
|
+
}, "strip", z.ZodTypeAny, {
|
|
11415
|
+
persistentId: string;
|
|
11416
|
+
designSystemVersionId: string;
|
|
11417
|
+
groupId: string;
|
|
11418
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
11419
|
+
}, {
|
|
11420
|
+
persistentId: string;
|
|
11421
|
+
designSystemVersionId: string;
|
|
11422
|
+
groupId: string;
|
|
11423
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
11424
|
+
}>>;
|
|
11392
11425
|
}>, "strip", z.ZodTypeAny, {
|
|
11393
11426
|
type: "Group";
|
|
11394
11427
|
id: string;
|
|
@@ -11435,6 +11468,12 @@ declare const DTODocumentationGroupV2: z.ZodObject<z.objectUtil.extendShape<Omit
|
|
|
11435
11468
|
};
|
|
11436
11469
|
slug?: string | undefined;
|
|
11437
11470
|
userSlug?: string | undefined;
|
|
11471
|
+
approvalState?: {
|
|
11472
|
+
persistentId: string;
|
|
11473
|
+
designSystemVersionId: string;
|
|
11474
|
+
groupId: string;
|
|
11475
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
11476
|
+
} | undefined;
|
|
11438
11477
|
draftState?: {
|
|
11439
11478
|
changeType: "Created";
|
|
11440
11479
|
} | {
|
|
@@ -11530,6 +11569,12 @@ declare const DTODocumentationGroupV2: z.ZodObject<z.objectUtil.extendShape<Omit
|
|
|
11530
11569
|
};
|
|
11531
11570
|
slug?: string | undefined;
|
|
11532
11571
|
userSlug?: string | undefined;
|
|
11572
|
+
approvalState?: {
|
|
11573
|
+
persistentId: string;
|
|
11574
|
+
designSystemVersionId: string;
|
|
11575
|
+
groupId: string;
|
|
11576
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
11577
|
+
} | undefined;
|
|
11533
11578
|
draftState?: {
|
|
11534
11579
|
changeType: "Created";
|
|
11535
11580
|
} | {
|
|
@@ -13194,6 +13239,17 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
13194
13239
|
};
|
|
13195
13240
|
slug?: string | undefined;
|
|
13196
13241
|
userSlug?: string | undefined;
|
|
13242
|
+
approvalState?: {
|
|
13243
|
+
id: string;
|
|
13244
|
+
createdAt: Date;
|
|
13245
|
+
updatedAt: Date;
|
|
13246
|
+
persistentId: string;
|
|
13247
|
+
designSystemVersionId: string;
|
|
13248
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
13249
|
+
pageId: string;
|
|
13250
|
+
pagePersistentId: string;
|
|
13251
|
+
updatedByUserId: string;
|
|
13252
|
+
} | undefined;
|
|
13197
13253
|
draftState?: {
|
|
13198
13254
|
changeType: "Created";
|
|
13199
13255
|
} | {
|
|
@@ -13243,17 +13299,6 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
13243
13299
|
lastPublishedByUserId: string;
|
|
13244
13300
|
lastPublishedAt: Date;
|
|
13245
13301
|
} | undefined;
|
|
13246
|
-
approvalState?: {
|
|
13247
|
-
id: string;
|
|
13248
|
-
createdAt: Date;
|
|
13249
|
-
updatedAt: Date;
|
|
13250
|
-
persistentId: string;
|
|
13251
|
-
designSystemVersionId: string;
|
|
13252
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
13253
|
-
pageId: string;
|
|
13254
|
-
pagePersistentId: string;
|
|
13255
|
-
updatedByUserId: string;
|
|
13256
|
-
} | undefined;
|
|
13257
13302
|
}, {
|
|
13258
13303
|
path: string;
|
|
13259
13304
|
type: "Page";
|
|
@@ -13298,6 +13343,17 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
13298
13343
|
};
|
|
13299
13344
|
slug?: string | undefined;
|
|
13300
13345
|
userSlug?: string | undefined;
|
|
13346
|
+
approvalState?: {
|
|
13347
|
+
id: string;
|
|
13348
|
+
createdAt: Date;
|
|
13349
|
+
updatedAt: Date;
|
|
13350
|
+
persistentId: string;
|
|
13351
|
+
designSystemVersionId: string;
|
|
13352
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
13353
|
+
pageId: string;
|
|
13354
|
+
pagePersistentId: string;
|
|
13355
|
+
updatedByUserId: string;
|
|
13356
|
+
} | undefined;
|
|
13301
13357
|
draftState?: {
|
|
13302
13358
|
changeType: "Created";
|
|
13303
13359
|
} | {
|
|
@@ -13347,17 +13403,6 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
13347
13403
|
lastPublishedByUserId: string;
|
|
13348
13404
|
lastPublishedAt: Date;
|
|
13349
13405
|
} | undefined;
|
|
13350
|
-
approvalState?: {
|
|
13351
|
-
id: string;
|
|
13352
|
-
createdAt: Date;
|
|
13353
|
-
updatedAt: Date;
|
|
13354
|
-
persistentId: string;
|
|
13355
|
-
designSystemVersionId: string;
|
|
13356
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
13357
|
-
pageId: string;
|
|
13358
|
-
pagePersistentId: string;
|
|
13359
|
-
updatedByUserId: string;
|
|
13360
|
-
} | undefined;
|
|
13361
13406
|
}>, "many">;
|
|
13362
13407
|
groups: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
13363
13408
|
id: z.ZodString;
|
|
@@ -14150,6 +14195,22 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
14150
14195
|
lastPublishedByUserId: string;
|
|
14151
14196
|
lastPublishedAt: Date;
|
|
14152
14197
|
}>>;
|
|
14198
|
+
approvalState: z.ZodOptional<z.ZodObject<{
|
|
14199
|
+
persistentId: z.ZodString;
|
|
14200
|
+
groupId: z.ZodString;
|
|
14201
|
+
designSystemVersionId: z.ZodString;
|
|
14202
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
14203
|
+
}, "strip", z.ZodTypeAny, {
|
|
14204
|
+
persistentId: string;
|
|
14205
|
+
designSystemVersionId: string;
|
|
14206
|
+
groupId: string;
|
|
14207
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
14208
|
+
}, {
|
|
14209
|
+
persistentId: string;
|
|
14210
|
+
designSystemVersionId: string;
|
|
14211
|
+
groupId: string;
|
|
14212
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
14213
|
+
}>>;
|
|
14153
14214
|
}>, {
|
|
14154
14215
|
/** Defined when a page has changed since last publish and can be included into a partial publish */
|
|
14155
14216
|
draftState: z.ZodOptional<z.ZodDiscriminatedUnion<"changeType", [z.ZodObject<{
|
|
@@ -14559,6 +14620,12 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
14559
14620
|
};
|
|
14560
14621
|
slug?: string | undefined;
|
|
14561
14622
|
userSlug?: string | undefined;
|
|
14623
|
+
approvalState?: {
|
|
14624
|
+
persistentId: string;
|
|
14625
|
+
designSystemVersionId: string;
|
|
14626
|
+
groupId: string;
|
|
14627
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
14628
|
+
} | undefined;
|
|
14562
14629
|
draftState?: {
|
|
14563
14630
|
changeType: "Created";
|
|
14564
14631
|
} | {
|
|
@@ -14654,6 +14721,12 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
14654
14721
|
};
|
|
14655
14722
|
slug?: string | undefined;
|
|
14656
14723
|
userSlug?: string | undefined;
|
|
14724
|
+
approvalState?: {
|
|
14725
|
+
persistentId: string;
|
|
14726
|
+
designSystemVersionId: string;
|
|
14727
|
+
groupId: string;
|
|
14728
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
14729
|
+
} | undefined;
|
|
14657
14730
|
draftState?: {
|
|
14658
14731
|
changeType: "Created";
|
|
14659
14732
|
} | {
|
|
@@ -14749,6 +14822,17 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
14749
14822
|
};
|
|
14750
14823
|
slug?: string | undefined;
|
|
14751
14824
|
userSlug?: string | undefined;
|
|
14825
|
+
approvalState?: {
|
|
14826
|
+
id: string;
|
|
14827
|
+
createdAt: Date;
|
|
14828
|
+
updatedAt: Date;
|
|
14829
|
+
persistentId: string;
|
|
14830
|
+
designSystemVersionId: string;
|
|
14831
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
14832
|
+
pageId: string;
|
|
14833
|
+
pagePersistentId: string;
|
|
14834
|
+
updatedByUserId: string;
|
|
14835
|
+
} | undefined;
|
|
14752
14836
|
draftState?: {
|
|
14753
14837
|
changeType: "Created";
|
|
14754
14838
|
} | {
|
|
@@ -14798,17 +14882,6 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
14798
14882
|
lastPublishedByUserId: string;
|
|
14799
14883
|
lastPublishedAt: Date;
|
|
14800
14884
|
} | undefined;
|
|
14801
|
-
approvalState?: {
|
|
14802
|
-
id: string;
|
|
14803
|
-
createdAt: Date;
|
|
14804
|
-
updatedAt: Date;
|
|
14805
|
-
persistentId: string;
|
|
14806
|
-
designSystemVersionId: string;
|
|
14807
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
14808
|
-
pageId: string;
|
|
14809
|
-
pagePersistentId: string;
|
|
14810
|
-
updatedByUserId: string;
|
|
14811
|
-
} | undefined;
|
|
14812
14885
|
}[];
|
|
14813
14886
|
groups: {
|
|
14814
14887
|
type: "Group";
|
|
@@ -14856,6 +14929,12 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
14856
14929
|
};
|
|
14857
14930
|
slug?: string | undefined;
|
|
14858
14931
|
userSlug?: string | undefined;
|
|
14932
|
+
approvalState?: {
|
|
14933
|
+
persistentId: string;
|
|
14934
|
+
designSystemVersionId: string;
|
|
14935
|
+
groupId: string;
|
|
14936
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
14937
|
+
} | undefined;
|
|
14859
14938
|
draftState?: {
|
|
14860
14939
|
changeType: "Created";
|
|
14861
14940
|
} | {
|
|
@@ -14951,6 +15030,17 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
14951
15030
|
};
|
|
14952
15031
|
slug?: string | undefined;
|
|
14953
15032
|
userSlug?: string | undefined;
|
|
15033
|
+
approvalState?: {
|
|
15034
|
+
id: string;
|
|
15035
|
+
createdAt: Date;
|
|
15036
|
+
updatedAt: Date;
|
|
15037
|
+
persistentId: string;
|
|
15038
|
+
designSystemVersionId: string;
|
|
15039
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
15040
|
+
pageId: string;
|
|
15041
|
+
pagePersistentId: string;
|
|
15042
|
+
updatedByUserId: string;
|
|
15043
|
+
} | undefined;
|
|
14954
15044
|
draftState?: {
|
|
14955
15045
|
changeType: "Created";
|
|
14956
15046
|
} | {
|
|
@@ -15000,17 +15090,6 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
15000
15090
|
lastPublishedByUserId: string;
|
|
15001
15091
|
lastPublishedAt: Date;
|
|
15002
15092
|
} | undefined;
|
|
15003
|
-
approvalState?: {
|
|
15004
|
-
id: string;
|
|
15005
|
-
createdAt: Date;
|
|
15006
|
-
updatedAt: Date;
|
|
15007
|
-
persistentId: string;
|
|
15008
|
-
designSystemVersionId: string;
|
|
15009
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
15010
|
-
pageId: string;
|
|
15011
|
-
pagePersistentId: string;
|
|
15012
|
-
updatedByUserId: string;
|
|
15013
|
-
} | undefined;
|
|
15014
15093
|
}[];
|
|
15015
15094
|
groups: {
|
|
15016
15095
|
type: "Group";
|
|
@@ -15058,6 +15137,12 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
15058
15137
|
};
|
|
15059
15138
|
slug?: string | undefined;
|
|
15060
15139
|
userSlug?: string | undefined;
|
|
15140
|
+
approvalState?: {
|
|
15141
|
+
persistentId: string;
|
|
15142
|
+
designSystemVersionId: string;
|
|
15143
|
+
groupId: string;
|
|
15144
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
15145
|
+
} | undefined;
|
|
15061
15146
|
draftState?: {
|
|
15062
15147
|
changeType: "Created";
|
|
15063
15148
|
} | {
|
|
@@ -22394,6 +22479,17 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
22394
22479
|
};
|
|
22395
22480
|
slug?: string | undefined;
|
|
22396
22481
|
userSlug?: string | undefined;
|
|
22482
|
+
approvalState?: {
|
|
22483
|
+
id: string;
|
|
22484
|
+
createdAt: Date;
|
|
22485
|
+
updatedAt: Date;
|
|
22486
|
+
persistentId: string;
|
|
22487
|
+
designSystemVersionId: string;
|
|
22488
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
22489
|
+
pageId: string;
|
|
22490
|
+
pagePersistentId: string;
|
|
22491
|
+
updatedByUserId: string;
|
|
22492
|
+
} | undefined;
|
|
22397
22493
|
draftState?: {
|
|
22398
22494
|
changeType: "Created";
|
|
22399
22495
|
} | {
|
|
@@ -22443,17 +22539,6 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
22443
22539
|
lastPublishedByUserId: string;
|
|
22444
22540
|
lastPublishedAt: Date;
|
|
22445
22541
|
} | undefined;
|
|
22446
|
-
approvalState?: {
|
|
22447
|
-
id: string;
|
|
22448
|
-
createdAt: Date;
|
|
22449
|
-
updatedAt: Date;
|
|
22450
|
-
persistentId: string;
|
|
22451
|
-
designSystemVersionId: string;
|
|
22452
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
22453
|
-
pageId: string;
|
|
22454
|
-
pagePersistentId: string;
|
|
22455
|
-
updatedByUserId: string;
|
|
22456
|
-
} | undefined;
|
|
22457
22542
|
}, {
|
|
22458
22543
|
path: string;
|
|
22459
22544
|
type: "Page";
|
|
@@ -22498,6 +22583,17 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
22498
22583
|
};
|
|
22499
22584
|
slug?: string | undefined;
|
|
22500
22585
|
userSlug?: string | undefined;
|
|
22586
|
+
approvalState?: {
|
|
22587
|
+
id: string;
|
|
22588
|
+
createdAt: Date;
|
|
22589
|
+
updatedAt: Date;
|
|
22590
|
+
persistentId: string;
|
|
22591
|
+
designSystemVersionId: string;
|
|
22592
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
22593
|
+
pageId: string;
|
|
22594
|
+
pagePersistentId: string;
|
|
22595
|
+
updatedByUserId: string;
|
|
22596
|
+
} | undefined;
|
|
22501
22597
|
draftState?: {
|
|
22502
22598
|
changeType: "Created";
|
|
22503
22599
|
} | {
|
|
@@ -22547,17 +22643,6 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
22547
22643
|
lastPublishedByUserId: string;
|
|
22548
22644
|
lastPublishedAt: Date;
|
|
22549
22645
|
} | undefined;
|
|
22550
|
-
approvalState?: {
|
|
22551
|
-
id: string;
|
|
22552
|
-
createdAt: Date;
|
|
22553
|
-
updatedAt: Date;
|
|
22554
|
-
persistentId: string;
|
|
22555
|
-
designSystemVersionId: string;
|
|
22556
|
-
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
22557
|
-
pageId: string;
|
|
22558
|
-
pagePersistentId: string;
|
|
22559
|
-
updatedByUserId: string;
|
|
22560
|
-
} | undefined;
|
|
22561
22646
|
}>;
|
|
22562
22647
|
type DTODocumentationPageV2 = z.infer<typeof DTODocumentationPageV2>;
|
|
22563
22648
|
declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
@@ -43280,6 +43365,7 @@ declare class FrontendVersionRoomYDoc {
|
|
|
43280
43365
|
private getDeletedGroups;
|
|
43281
43366
|
private buildGroupPublishedMetadata;
|
|
43282
43367
|
private createDraftState;
|
|
43368
|
+
private buildGroupApprovalStates;
|
|
43283
43369
|
notifyDocumentationPageContentUpdated(pageId: string, content: DocumentationPageEditorModel, definitions: PageBlockDefinition[]): void;
|
|
43284
43370
|
isDraftFeatureAdopted(): boolean;
|
|
43285
43371
|
hasPublishedDocumentationContent(): boolean;
|
|
@@ -43290,4 +43376,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
43290
43376
|
|
|
43291
43377
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
43292
43378
|
|
|
43293
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
43379
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, DTOAssetRenderConfiguration, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionsListResponse, DTODiffCountBase, 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, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateElementPropertyDefinitionInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUserNotificationSettingsResponse, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceRole, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, VersionRoomBaseYDoc, VersionSQSPayload, WorkspaceConfigurationPayload, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, pmSchema, prosemirrorDocToPage, prosemirrorNodeToSection, prosemirrorNodesToBlocks, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|