@supernova-studio/client 0.48.36 → 0.49.0
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 +366 -3
- package/dist/index.d.ts +366 -3
- package/dist/index.js +92 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1525 -1441
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/documentation/approvals.ts +5 -0
- package/src/api/dto/documentation/index.ts +1 -0
- package/src/api/dto/elements/documentation/page-actions-v2.ts +14 -1
- package/src/api/dto/elements/documentation/page-v2.ts +11 -0
- package/src/api/dto/elements/elements-action-v2.ts +8 -0
- package/src/yjs/design-system-content/documentation-hierarchy.ts +1 -0
- package/src/yjs/version-room/backend.ts +7 -0
- package/src/yjs/version-room/base.ts +21 -0
- package/src/yjs/version-room/frontend.ts +27 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
|
-
import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, ElementGroup, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, DocumentationPageSnapshot, ElementGroupSnapshot } from '@supernova-studio/model';
|
|
2
|
+
import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, DocumentationPageApproval, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, ElementGroup, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SsoProvider, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, DocumentationPageSnapshot, ElementGroupSnapshot } from '@supernova-studio/model';
|
|
3
3
|
import * as zod from 'zod';
|
|
4
4
|
import { z, ZodTypeDef } from 'zod';
|
|
5
5
|
import * as Y from 'yjs';
|
|
@@ -4857,6 +4857,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4857
4857
|
isEnabled: boolean;
|
|
4858
4858
|
designSystemIds: string[];
|
|
4859
4859
|
} | null | undefined>;
|
|
4860
|
+
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
4860
4861
|
createdAt: z.ZodDate;
|
|
4861
4862
|
updatedAt: z.ZodDate;
|
|
4862
4863
|
}, "description" | "name" | "docExporterId">, {
|
|
@@ -4888,6 +4889,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4888
4889
|
isPublic: boolean;
|
|
4889
4890
|
isMultibrand: boolean;
|
|
4890
4891
|
basePrefixes: string[];
|
|
4892
|
+
isApprovalFeatureEnabled: boolean;
|
|
4891
4893
|
docUserSlug?: string | undefined;
|
|
4892
4894
|
docViewUrl?: string | undefined;
|
|
4893
4895
|
designSystemSwitcher?: {
|
|
@@ -4910,6 +4912,7 @@ declare const DTODesignSystem: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
4910
4912
|
isPublic: boolean;
|
|
4911
4913
|
isMultibrand: boolean;
|
|
4912
4914
|
basePrefixes: string[];
|
|
4915
|
+
isApprovalFeatureEnabled: boolean;
|
|
4913
4916
|
docUserSlug?: string | null | undefined;
|
|
4914
4917
|
docViewUrl?: string | null | undefined;
|
|
4915
4918
|
designSystemSwitcher?: {
|
|
@@ -5853,6 +5856,39 @@ declare const DTOGetDocumentationPageAnchorsResponse: z.ZodObject<{
|
|
|
5853
5856
|
}>;
|
|
5854
5857
|
type DTOGetDocumentationPageAnchorsResponse = z.infer<typeof DTOGetDocumentationPageAnchorsResponse>;
|
|
5855
5858
|
|
|
5859
|
+
declare const DTODocumentationPageApprovalState: zod.ZodObject<{
|
|
5860
|
+
id: zod.ZodString;
|
|
5861
|
+
approvalState: zod.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
5862
|
+
persistentId: zod.ZodString;
|
|
5863
|
+
pageId: zod.ZodString;
|
|
5864
|
+
pagePersistentId: zod.ZodString;
|
|
5865
|
+
updatedByUserId: zod.ZodString;
|
|
5866
|
+
designSystemVersionId: zod.ZodString;
|
|
5867
|
+
updatedAt: zod.ZodDate;
|
|
5868
|
+
createdAt: zod.ZodDate;
|
|
5869
|
+
}, "strip", zod.ZodTypeAny, {
|
|
5870
|
+
id: string;
|
|
5871
|
+
createdAt: Date;
|
|
5872
|
+
updatedAt: Date;
|
|
5873
|
+
persistentId: string;
|
|
5874
|
+
designSystemVersionId: string;
|
|
5875
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
5876
|
+
pageId: string;
|
|
5877
|
+
pagePersistentId: string;
|
|
5878
|
+
updatedByUserId: string;
|
|
5879
|
+
}, {
|
|
5880
|
+
id: string;
|
|
5881
|
+
createdAt: Date;
|
|
5882
|
+
updatedAt: Date;
|
|
5883
|
+
persistentId: string;
|
|
5884
|
+
designSystemVersionId: string;
|
|
5885
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
5886
|
+
pageId: string;
|
|
5887
|
+
pagePersistentId: string;
|
|
5888
|
+
updatedByUserId: string;
|
|
5889
|
+
}>;
|
|
5890
|
+
type DTODocumentationPageApprovalState = DocumentationPageApproval;
|
|
5891
|
+
|
|
5856
5892
|
declare const DTOPageBlockDefinitionBehavior: z.ZodObject<{
|
|
5857
5893
|
dataType: z.ZodEnum<["Item", "Token", "Asset", "Component", "FigmaNode", "FigmaComponent"]>;
|
|
5858
5894
|
items: z.ZodOptional<z.ZodObject<{
|
|
@@ -7266,6 +7302,37 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7266
7302
|
lastPublishedByUserId: string;
|
|
7267
7303
|
lastPublishedAt: Date;
|
|
7268
7304
|
}>>;
|
|
7305
|
+
approvalState: z.ZodOptional<z.ZodObject<{
|
|
7306
|
+
id: z.ZodString;
|
|
7307
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
7308
|
+
persistentId: z.ZodString;
|
|
7309
|
+
pageId: z.ZodString;
|
|
7310
|
+
pagePersistentId: z.ZodString;
|
|
7311
|
+
updatedByUserId: z.ZodString;
|
|
7312
|
+
designSystemVersionId: z.ZodString;
|
|
7313
|
+
updatedAt: z.ZodDate;
|
|
7314
|
+
createdAt: z.ZodDate;
|
|
7315
|
+
}, "strip", z.ZodTypeAny, {
|
|
7316
|
+
id: string;
|
|
7317
|
+
createdAt: Date;
|
|
7318
|
+
updatedAt: Date;
|
|
7319
|
+
persistentId: string;
|
|
7320
|
+
designSystemVersionId: string;
|
|
7321
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7322
|
+
pageId: string;
|
|
7323
|
+
pagePersistentId: string;
|
|
7324
|
+
updatedByUserId: string;
|
|
7325
|
+
}, {
|
|
7326
|
+
id: string;
|
|
7327
|
+
createdAt: Date;
|
|
7328
|
+
updatedAt: Date;
|
|
7329
|
+
persistentId: string;
|
|
7330
|
+
designSystemVersionId: string;
|
|
7331
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7332
|
+
pageId: string;
|
|
7333
|
+
pagePersistentId: string;
|
|
7334
|
+
updatedByUserId: string;
|
|
7335
|
+
}>>;
|
|
7269
7336
|
type: z.ZodLiteral<"Page">;
|
|
7270
7337
|
}, "strip", z.ZodTypeAny, {
|
|
7271
7338
|
path: string;
|
|
@@ -7360,6 +7427,17 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7360
7427
|
lastPublishedByUserId: string;
|
|
7361
7428
|
lastPublishedAt: Date;
|
|
7362
7429
|
} | undefined;
|
|
7430
|
+
approvalState?: {
|
|
7431
|
+
id: string;
|
|
7432
|
+
createdAt: Date;
|
|
7433
|
+
updatedAt: Date;
|
|
7434
|
+
persistentId: string;
|
|
7435
|
+
designSystemVersionId: string;
|
|
7436
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7437
|
+
pageId: string;
|
|
7438
|
+
pagePersistentId: string;
|
|
7439
|
+
updatedByUserId: string;
|
|
7440
|
+
} | undefined;
|
|
7363
7441
|
}, {
|
|
7364
7442
|
path: string;
|
|
7365
7443
|
type: "Page";
|
|
@@ -7453,6 +7531,17 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7453
7531
|
lastPublishedByUserId: string;
|
|
7454
7532
|
lastPublishedAt: Date;
|
|
7455
7533
|
} | undefined;
|
|
7534
|
+
approvalState?: {
|
|
7535
|
+
id: string;
|
|
7536
|
+
createdAt: Date;
|
|
7537
|
+
updatedAt: Date;
|
|
7538
|
+
persistentId: string;
|
|
7539
|
+
designSystemVersionId: string;
|
|
7540
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7541
|
+
pageId: string;
|
|
7542
|
+
pagePersistentId: string;
|
|
7543
|
+
updatedByUserId: string;
|
|
7544
|
+
} | undefined;
|
|
7456
7545
|
}>;
|
|
7457
7546
|
pageContentHash: z.ZodString;
|
|
7458
7547
|
reason: z.ZodEnum<["Publish", "Deletion"]>;
|
|
@@ -7554,6 +7643,17 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7554
7643
|
lastPublishedByUserId: string;
|
|
7555
7644
|
lastPublishedAt: Date;
|
|
7556
7645
|
} | undefined;
|
|
7646
|
+
approvalState?: {
|
|
7647
|
+
id: string;
|
|
7648
|
+
createdAt: Date;
|
|
7649
|
+
updatedAt: Date;
|
|
7650
|
+
persistentId: string;
|
|
7651
|
+
designSystemVersionId: string;
|
|
7652
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7653
|
+
pageId: string;
|
|
7654
|
+
pagePersistentId: string;
|
|
7655
|
+
updatedByUserId: string;
|
|
7656
|
+
} | undefined;
|
|
7557
7657
|
};
|
|
7558
7658
|
pageContentHash: string;
|
|
7559
7659
|
reason: "Publish" | "Deletion";
|
|
@@ -7655,6 +7755,17 @@ declare const DTODocumentationPageSnapshot: z.ZodObject<{
|
|
|
7655
7755
|
lastPublishedByUserId: string;
|
|
7656
7756
|
lastPublishedAt: Date;
|
|
7657
7757
|
} | undefined;
|
|
7758
|
+
approvalState?: {
|
|
7759
|
+
id: string;
|
|
7760
|
+
createdAt: Date;
|
|
7761
|
+
updatedAt: Date;
|
|
7762
|
+
persistentId: string;
|
|
7763
|
+
designSystemVersionId: string;
|
|
7764
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
7765
|
+
pageId: string;
|
|
7766
|
+
pagePersistentId: string;
|
|
7767
|
+
updatedByUserId: string;
|
|
7768
|
+
} | undefined;
|
|
7658
7769
|
};
|
|
7659
7770
|
pageContentHash: string;
|
|
7660
7771
|
reason: "Publish" | "Deletion";
|
|
@@ -12641,6 +12752,37 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
12641
12752
|
lastPublishedByUserId: string;
|
|
12642
12753
|
lastPublishedAt: Date;
|
|
12643
12754
|
}>>;
|
|
12755
|
+
approvalState: z.ZodOptional<z.ZodObject<{
|
|
12756
|
+
id: z.ZodString;
|
|
12757
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
12758
|
+
persistentId: z.ZodString;
|
|
12759
|
+
pageId: z.ZodString;
|
|
12760
|
+
pagePersistentId: z.ZodString;
|
|
12761
|
+
updatedByUserId: z.ZodString;
|
|
12762
|
+
designSystemVersionId: z.ZodString;
|
|
12763
|
+
updatedAt: z.ZodDate;
|
|
12764
|
+
createdAt: z.ZodDate;
|
|
12765
|
+
}, "strip", z.ZodTypeAny, {
|
|
12766
|
+
id: string;
|
|
12767
|
+
createdAt: Date;
|
|
12768
|
+
updatedAt: Date;
|
|
12769
|
+
persistentId: string;
|
|
12770
|
+
designSystemVersionId: string;
|
|
12771
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
12772
|
+
pageId: string;
|
|
12773
|
+
pagePersistentId: string;
|
|
12774
|
+
updatedByUserId: string;
|
|
12775
|
+
}, {
|
|
12776
|
+
id: string;
|
|
12777
|
+
createdAt: Date;
|
|
12778
|
+
updatedAt: Date;
|
|
12779
|
+
persistentId: string;
|
|
12780
|
+
designSystemVersionId: string;
|
|
12781
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
12782
|
+
pageId: string;
|
|
12783
|
+
pagePersistentId: string;
|
|
12784
|
+
updatedByUserId: string;
|
|
12785
|
+
}>>;
|
|
12644
12786
|
type: z.ZodLiteral<"Page">;
|
|
12645
12787
|
}, {
|
|
12646
12788
|
/** Defined when a page has changed since last publish and can be included into a partial publish */
|
|
@@ -13098,6 +13240,17 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
13098
13240
|
lastPublishedByUserId: string;
|
|
13099
13241
|
lastPublishedAt: Date;
|
|
13100
13242
|
} | undefined;
|
|
13243
|
+
approvalState?: {
|
|
13244
|
+
id: string;
|
|
13245
|
+
createdAt: Date;
|
|
13246
|
+
updatedAt: Date;
|
|
13247
|
+
persistentId: string;
|
|
13248
|
+
designSystemVersionId: string;
|
|
13249
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
13250
|
+
pageId: string;
|
|
13251
|
+
pagePersistentId: string;
|
|
13252
|
+
updatedByUserId: string;
|
|
13253
|
+
} | undefined;
|
|
13101
13254
|
}, {
|
|
13102
13255
|
path: string;
|
|
13103
13256
|
type: "Page";
|
|
@@ -13191,6 +13344,17 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
13191
13344
|
lastPublishedByUserId: string;
|
|
13192
13345
|
lastPublishedAt: Date;
|
|
13193
13346
|
} | undefined;
|
|
13347
|
+
approvalState?: {
|
|
13348
|
+
id: string;
|
|
13349
|
+
createdAt: Date;
|
|
13350
|
+
updatedAt: Date;
|
|
13351
|
+
persistentId: string;
|
|
13352
|
+
designSystemVersionId: string;
|
|
13353
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
13354
|
+
pageId: string;
|
|
13355
|
+
pagePersistentId: string;
|
|
13356
|
+
updatedByUserId: string;
|
|
13357
|
+
} | undefined;
|
|
13194
13358
|
}>, "many">;
|
|
13195
13359
|
groups: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<Omit<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
13196
13360
|
id: z.ZodString;
|
|
@@ -14631,6 +14795,17 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
14631
14795
|
lastPublishedByUserId: string;
|
|
14632
14796
|
lastPublishedAt: Date;
|
|
14633
14797
|
} | undefined;
|
|
14798
|
+
approvalState?: {
|
|
14799
|
+
id: string;
|
|
14800
|
+
createdAt: Date;
|
|
14801
|
+
updatedAt: Date;
|
|
14802
|
+
persistentId: string;
|
|
14803
|
+
designSystemVersionId: string;
|
|
14804
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
14805
|
+
pageId: string;
|
|
14806
|
+
pagePersistentId: string;
|
|
14807
|
+
updatedByUserId: string;
|
|
14808
|
+
} | undefined;
|
|
14634
14809
|
}[];
|
|
14635
14810
|
groups: {
|
|
14636
14811
|
type: "Group";
|
|
@@ -14822,6 +14997,17 @@ declare const DTODocumentationHierarchyV2: z.ZodObject<{
|
|
|
14822
14997
|
lastPublishedByUserId: string;
|
|
14823
14998
|
lastPublishedAt: Date;
|
|
14824
14999
|
} | undefined;
|
|
15000
|
+
approvalState?: {
|
|
15001
|
+
id: string;
|
|
15002
|
+
createdAt: Date;
|
|
15003
|
+
updatedAt: Date;
|
|
15004
|
+
persistentId: string;
|
|
15005
|
+
designSystemVersionId: string;
|
|
15006
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
15007
|
+
pageId: string;
|
|
15008
|
+
pagePersistentId: string;
|
|
15009
|
+
updatedByUserId: string;
|
|
15010
|
+
} | undefined;
|
|
14825
15011
|
}[];
|
|
14826
15012
|
groups: {
|
|
14827
15013
|
type: "Group";
|
|
@@ -15897,6 +16083,52 @@ declare const DTODocumentationGroupRestoreActionOutput: z.ZodObject<{
|
|
|
15897
16083
|
};
|
|
15898
16084
|
}>;
|
|
15899
16085
|
type DTODocumentationGroupRestoreActionOutput = z.infer<typeof DTODocumentationGroupRestoreActionOutput>;
|
|
16086
|
+
declare const DTODocumentationPageApprovalStateChangeActionOutput: z.ZodObject<{
|
|
16087
|
+
type: z.ZodLiteral<"DocumentationPageApprovalStateChange">;
|
|
16088
|
+
output: z.ZodObject<{
|
|
16089
|
+
success: z.ZodLiteral<true>;
|
|
16090
|
+
}, "strip", z.ZodTypeAny, {
|
|
16091
|
+
success: true;
|
|
16092
|
+
}, {
|
|
16093
|
+
success: true;
|
|
16094
|
+
}>;
|
|
16095
|
+
}, "strip", z.ZodTypeAny, {
|
|
16096
|
+
type: "DocumentationPageApprovalStateChange";
|
|
16097
|
+
output: {
|
|
16098
|
+
success: true;
|
|
16099
|
+
};
|
|
16100
|
+
}, {
|
|
16101
|
+
type: "DocumentationPageApprovalStateChange";
|
|
16102
|
+
output: {
|
|
16103
|
+
success: true;
|
|
16104
|
+
};
|
|
16105
|
+
}>;
|
|
16106
|
+
type DTODocumentationPageApprovalStateChangeActionOutput = z.infer<typeof DTODocumentationPageApprovalStateChangeActionOutput>;
|
|
16107
|
+
declare const DTODocumentationPageApprovalStateChangeActionInput: z.ZodObject<{
|
|
16108
|
+
type: z.ZodLiteral<"DocumentationPageApprovalStateChange">;
|
|
16109
|
+
input: z.ZodObject<{
|
|
16110
|
+
persistentId: z.ZodString;
|
|
16111
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
16112
|
+
}, "strip", z.ZodTypeAny, {
|
|
16113
|
+
persistentId: string;
|
|
16114
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
16115
|
+
}, {
|
|
16116
|
+
persistentId: string;
|
|
16117
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
16118
|
+
}>;
|
|
16119
|
+
}, "strip", z.ZodTypeAny, {
|
|
16120
|
+
type: "DocumentationPageApprovalStateChange";
|
|
16121
|
+
input: {
|
|
16122
|
+
persistentId: string;
|
|
16123
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
16124
|
+
};
|
|
16125
|
+
}, {
|
|
16126
|
+
type: "DocumentationPageApprovalStateChange";
|
|
16127
|
+
input: {
|
|
16128
|
+
persistentId: string;
|
|
16129
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
16130
|
+
};
|
|
16131
|
+
}>;
|
|
15900
16132
|
declare const DTODocumentationPageCreateActionInputV2: z.ZodObject<{
|
|
15901
16133
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
15902
16134
|
input: z.ZodObject<{
|
|
@@ -22048,7 +22280,6 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
22048
22280
|
};
|
|
22049
22281
|
}>, z.ZodObject<{
|
|
22050
22282
|
changeType: z.ZodLiteral<"Deleted">;
|
|
22051
|
-
/** Defined if a page was published at least once and contains metadata about last publish */
|
|
22052
22283
|
deletedAt: z.ZodDate;
|
|
22053
22284
|
deletedByUserId: z.ZodString;
|
|
22054
22285
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -22071,6 +22302,38 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
22071
22302
|
lastPublishedByUserId: string;
|
|
22072
22303
|
lastPublishedAt: Date;
|
|
22073
22304
|
}>>;
|
|
22305
|
+
/** Defines the approval state of the documentation page */
|
|
22306
|
+
approvalState: z.ZodOptional<z.ZodObject<{
|
|
22307
|
+
id: z.ZodString;
|
|
22308
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
22309
|
+
persistentId: z.ZodString;
|
|
22310
|
+
pageId: z.ZodString;
|
|
22311
|
+
pagePersistentId: z.ZodString;
|
|
22312
|
+
updatedByUserId: z.ZodString;
|
|
22313
|
+
designSystemVersionId: z.ZodString;
|
|
22314
|
+
updatedAt: z.ZodDate;
|
|
22315
|
+
createdAt: z.ZodDate;
|
|
22316
|
+
}, "strip", z.ZodTypeAny, {
|
|
22317
|
+
id: string;
|
|
22318
|
+
createdAt: Date;
|
|
22319
|
+
updatedAt: Date;
|
|
22320
|
+
persistentId: string;
|
|
22321
|
+
designSystemVersionId: string;
|
|
22322
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
22323
|
+
pageId: string;
|
|
22324
|
+
pagePersistentId: string;
|
|
22325
|
+
updatedByUserId: string;
|
|
22326
|
+
}, {
|
|
22327
|
+
id: string;
|
|
22328
|
+
createdAt: Date;
|
|
22329
|
+
updatedAt: Date;
|
|
22330
|
+
persistentId: string;
|
|
22331
|
+
designSystemVersionId: string;
|
|
22332
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
22333
|
+
pageId: string;
|
|
22334
|
+
pagePersistentId: string;
|
|
22335
|
+
updatedByUserId: string;
|
|
22336
|
+
}>>;
|
|
22074
22337
|
type: z.ZodLiteral<"Page">;
|
|
22075
22338
|
}, "strip", z.ZodTypeAny, {
|
|
22076
22339
|
path: string;
|
|
@@ -22165,6 +22428,17 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
22165
22428
|
lastPublishedByUserId: string;
|
|
22166
22429
|
lastPublishedAt: Date;
|
|
22167
22430
|
} | undefined;
|
|
22431
|
+
approvalState?: {
|
|
22432
|
+
id: string;
|
|
22433
|
+
createdAt: Date;
|
|
22434
|
+
updatedAt: Date;
|
|
22435
|
+
persistentId: string;
|
|
22436
|
+
designSystemVersionId: string;
|
|
22437
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
22438
|
+
pageId: string;
|
|
22439
|
+
pagePersistentId: string;
|
|
22440
|
+
updatedByUserId: string;
|
|
22441
|
+
} | undefined;
|
|
22168
22442
|
}, {
|
|
22169
22443
|
path: string;
|
|
22170
22444
|
type: "Page";
|
|
@@ -22258,6 +22532,17 @@ declare const DTODocumentationPageV2: z.ZodObject<{
|
|
|
22258
22532
|
lastPublishedByUserId: string;
|
|
22259
22533
|
lastPublishedAt: Date;
|
|
22260
22534
|
} | undefined;
|
|
22535
|
+
approvalState?: {
|
|
22536
|
+
id: string;
|
|
22537
|
+
createdAt: Date;
|
|
22538
|
+
updatedAt: Date;
|
|
22539
|
+
persistentId: string;
|
|
22540
|
+
designSystemVersionId: string;
|
|
22541
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
22542
|
+
pageId: string;
|
|
22543
|
+
pagePersistentId: string;
|
|
22544
|
+
updatedByUserId: string;
|
|
22545
|
+
} | undefined;
|
|
22261
22546
|
}>;
|
|
22262
22547
|
type DTODocumentationPageV2 = z.infer<typeof DTODocumentationPageV2>;
|
|
22263
22548
|
declare const DTOCreateDocumentationPageInputV2: z.ZodObject<{
|
|
@@ -22857,6 +23142,17 @@ declare const DTORestoreDocumentationGroupInput: z.ZodObject<{
|
|
|
22857
23142
|
snapshotId?: string | undefined;
|
|
22858
23143
|
}>;
|
|
22859
23144
|
type DTORestoreDocumentationGroupInput = z.infer<typeof DTORestoreDocumentationGroupInput>;
|
|
23145
|
+
declare const DTODocumentationPageApprovalStateChangeInput: z.ZodObject<{
|
|
23146
|
+
persistentId: z.ZodString;
|
|
23147
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
23148
|
+
}, "strip", z.ZodTypeAny, {
|
|
23149
|
+
persistentId: string;
|
|
23150
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
23151
|
+
}, {
|
|
23152
|
+
persistentId: string;
|
|
23153
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
23154
|
+
}>;
|
|
23155
|
+
type DTODocumentationPageApprovalStateChangeInput = z.infer<typeof DTODocumentationPageApprovalStateChangeInput>;
|
|
22860
23156
|
|
|
22861
23157
|
declare const DTOFigmaNodeOrigin: z.ZodObject<{
|
|
22862
23158
|
sourceId: z.ZodString;
|
|
@@ -25112,6 +25408,25 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
25112
25408
|
output: {
|
|
25113
25409
|
success: true;
|
|
25114
25410
|
};
|
|
25411
|
+
}>, z.ZodObject<{
|
|
25412
|
+
type: z.ZodLiteral<"DocumentationPageApprovalStateChange">;
|
|
25413
|
+
output: z.ZodObject<{
|
|
25414
|
+
success: z.ZodLiteral<true>;
|
|
25415
|
+
}, "strip", z.ZodTypeAny, {
|
|
25416
|
+
success: true;
|
|
25417
|
+
}, {
|
|
25418
|
+
success: true;
|
|
25419
|
+
}>;
|
|
25420
|
+
}, "strip", z.ZodTypeAny, {
|
|
25421
|
+
type: "DocumentationPageApprovalStateChange";
|
|
25422
|
+
output: {
|
|
25423
|
+
success: true;
|
|
25424
|
+
};
|
|
25425
|
+
}, {
|
|
25426
|
+
type: "DocumentationPageApprovalStateChange";
|
|
25427
|
+
output: {
|
|
25428
|
+
success: true;
|
|
25429
|
+
};
|
|
25115
25430
|
}>]>;
|
|
25116
25431
|
type DTOElementActionOutput = z.infer<typeof DTOElementActionOutput>;
|
|
25117
25432
|
declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -27013,6 +27328,30 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
27013
27328
|
persistentId: string;
|
|
27014
27329
|
snapshotId?: string | undefined;
|
|
27015
27330
|
};
|
|
27331
|
+
}>, z.ZodObject<{
|
|
27332
|
+
type: z.ZodLiteral<"DocumentationPageApprovalStateChange">;
|
|
27333
|
+
input: z.ZodObject<{
|
|
27334
|
+
persistentId: z.ZodString;
|
|
27335
|
+
approvalState: z.ZodEnum<["ReadyForReview", "ChangesRequested", "Approved"]>;
|
|
27336
|
+
}, "strip", z.ZodTypeAny, {
|
|
27337
|
+
persistentId: string;
|
|
27338
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
27339
|
+
}, {
|
|
27340
|
+
persistentId: string;
|
|
27341
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
27342
|
+
}>;
|
|
27343
|
+
}, "strip", z.ZodTypeAny, {
|
|
27344
|
+
type: "DocumentationPageApprovalStateChange";
|
|
27345
|
+
input: {
|
|
27346
|
+
persistentId: string;
|
|
27347
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
27348
|
+
};
|
|
27349
|
+
}, {
|
|
27350
|
+
type: "DocumentationPageApprovalStateChange";
|
|
27351
|
+
input: {
|
|
27352
|
+
persistentId: string;
|
|
27353
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
27354
|
+
};
|
|
27016
27355
|
}>]>;
|
|
27017
27356
|
type DTOElementActionInput = z.infer<typeof DTOElementActionInput>;
|
|
27018
27357
|
|
|
@@ -37858,6 +38197,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
37858
38197
|
isEnabled: boolean;
|
|
37859
38198
|
designSystemIds: string[];
|
|
37860
38199
|
} | null | undefined>>;
|
|
38200
|
+
isApprovalFeatureEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
37861
38201
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
37862
38202
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
37863
38203
|
}, "id" | "createdAt" | "updatedAt" | "workspaceId" | "docSlug" | "docViewUrl">, {
|
|
@@ -37888,6 +38228,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
37888
38228
|
isEnabled: boolean;
|
|
37889
38229
|
designSystemIds: string[];
|
|
37890
38230
|
} | undefined;
|
|
38231
|
+
isApprovalFeatureEnabled?: boolean | undefined;
|
|
37891
38232
|
}, {
|
|
37892
38233
|
name?: string | undefined;
|
|
37893
38234
|
description?: string | undefined;
|
|
@@ -37905,6 +38246,7 @@ declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<O
|
|
|
37905
38246
|
isEnabled: boolean;
|
|
37906
38247
|
designSystemIds: string[];
|
|
37907
38248
|
} | null | undefined;
|
|
38249
|
+
isApprovalFeatureEnabled?: boolean | undefined;
|
|
37908
38250
|
}>;
|
|
37909
38251
|
type DTODesignSystemUpdateInput = z.infer<typeof DTODesignSystemUpdateInput>;
|
|
37910
38252
|
|
|
@@ -40058,10 +40400,13 @@ declare function generateHash(input: object | string, debug?: boolean): string;
|
|
|
40058
40400
|
declare const DocumentationHierarchySettings: z.ZodObject<{
|
|
40059
40401
|
routingVersion: z.ZodString;
|
|
40060
40402
|
isDraftFeatureAdopted: z.ZodBoolean;
|
|
40403
|
+
isApprovalFeatureEnabled: z.ZodBoolean;
|
|
40061
40404
|
}, "strip", z.ZodTypeAny, {
|
|
40405
|
+
isApprovalFeatureEnabled: boolean;
|
|
40062
40406
|
routingVersion: string;
|
|
40063
40407
|
isDraftFeatureAdopted: boolean;
|
|
40064
40408
|
}, {
|
|
40409
|
+
isApprovalFeatureEnabled: boolean;
|
|
40065
40410
|
routingVersion: string;
|
|
40066
40411
|
isDraftFeatureAdopted: boolean;
|
|
40067
40412
|
}>;
|
|
@@ -42511,6 +42856,8 @@ type DocumentationHierarchyTransaction = {
|
|
|
42511
42856
|
groupSnapshotIdsToDelete?: string[];
|
|
42512
42857
|
internalSettings?: DocumentationHierarchySettings;
|
|
42513
42858
|
pageHashesToUpdate?: Record<string, string>;
|
|
42859
|
+
pageApprovals?: DocumentationPageApproval[];
|
|
42860
|
+
pageApprovalIdsToDelete?: string[];
|
|
42514
42861
|
};
|
|
42515
42862
|
declare class BackendVersionRoomYDoc {
|
|
42516
42863
|
private readonly yDoc;
|
|
@@ -42546,6 +42893,20 @@ declare class VersionRoomBaseYDoc {
|
|
|
42546
42893
|
getDocumentationPageContentHashes(): Record<string, string>;
|
|
42547
42894
|
updateDocumentationPageContentHashes(hashes: Record<string, string>): void;
|
|
42548
42895
|
private get documentationPageContentHashesYMap();
|
|
42896
|
+
updateApprovalStates(updates: DocumentationPageApproval[]): void;
|
|
42897
|
+
removeApprovalStates(ids: string[]): void;
|
|
42898
|
+
getApprovals(): {
|
|
42899
|
+
id: string;
|
|
42900
|
+
createdAt: Date;
|
|
42901
|
+
updatedAt: Date;
|
|
42902
|
+
persistentId: string;
|
|
42903
|
+
designSystemVersionId: string;
|
|
42904
|
+
approvalState: "ReadyForReview" | "ChangesRequested" | "Approved";
|
|
42905
|
+
pageId: string;
|
|
42906
|
+
pagePersistentId: string;
|
|
42907
|
+
updatedByUserId: string;
|
|
42908
|
+
}[];
|
|
42909
|
+
private get documentationPageApprovalsMap();
|
|
42549
42910
|
}
|
|
42550
42911
|
|
|
42551
42912
|
declare class FrontendVersionRoomYDoc {
|
|
@@ -42569,8 +42930,10 @@ declare class FrontendVersionRoomYDoc {
|
|
|
42569
42930
|
notifyDocumentationPageContentUpdated(pageId: string, content: DocumentationPageEditorModel, definitions: PageBlockDefinition[]): void;
|
|
42570
42931
|
isDraftFeatureAdopted(): boolean;
|
|
42571
42932
|
hasPublishedDocumentationContent(): boolean;
|
|
42933
|
+
isApprovalsFeatureEnabled(): boolean;
|
|
42934
|
+
private buildPageApprovalStates;
|
|
42572
42935
|
}
|
|
42573
42936
|
|
|
42574
42937
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
42575
42938
|
|
|
42576
|
-
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, 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 };
|
|
42939
|
+
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 };
|