@supernova-studio/client 0.54.13 → 0.54.14
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 +317 -130
- package/dist/index.d.ts +317 -130
- package/dist/index.js +112 -126
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2411 -2425
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/design-system.ts +21 -1
- package/src/api/payloads/design-systems/update-design-system.ts +13 -2
package/dist/index.js
CHANGED
|
@@ -48,10 +48,8 @@ var _zod = require('zod');
|
|
|
48
48
|
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
var _slugify = require('@sindresorhus/slugify'); var _slugify2 = _interopRequireDefault(_slugify);
|
|
52
|
-
|
|
53
|
-
|
|
54
51
|
|
|
52
|
+
var _slugify = require('@sindresorhus/slugify'); var _slugify2 = _interopRequireDefault(_slugify);
|
|
55
53
|
|
|
56
54
|
|
|
57
55
|
|
|
@@ -555,6 +553,13 @@ var Asset = _zod.z.object({
|
|
|
555
553
|
var ResolvedAsset = Asset.extend({
|
|
556
554
|
url: _zod.z.string()
|
|
557
555
|
});
|
|
556
|
+
var Brand = _zod.z.object({
|
|
557
|
+
id: _zod.z.string(),
|
|
558
|
+
designSystemVersionId: _zod.z.string(),
|
|
559
|
+
persistentId: _zod.z.string(),
|
|
560
|
+
name: _zod.z.string(),
|
|
561
|
+
description: _zod.z.string()
|
|
562
|
+
});
|
|
558
563
|
var FigmaFileDownloadScope = _zod.z.object({
|
|
559
564
|
styles: _zod.z.boolean(),
|
|
560
565
|
components: _zod.z.boolean(),
|
|
@@ -1535,7 +1540,6 @@ var DesignTokenType = _zod.z.enum([
|
|
|
1535
1540
|
"ParagraphSpacing",
|
|
1536
1541
|
"BorderWidth",
|
|
1537
1542
|
"BorderRadius",
|
|
1538
|
-
"Duration",
|
|
1539
1543
|
"ZIndex",
|
|
1540
1544
|
"Image",
|
|
1541
1545
|
"String",
|
|
@@ -3368,6 +3372,31 @@ var RenderedAssetFile = _zod.z.object({
|
|
|
3368
3372
|
renderedImageUrl: _zod.z.string(),
|
|
3369
3373
|
settings: AssetRenderConfiguration
|
|
3370
3374
|
});
|
|
3375
|
+
var DesignSystemAccessMode = _zod.z.enum(["Open", "InviteOnly"]);
|
|
3376
|
+
var DesignSystemSwitcher = _zod.z.object({
|
|
3377
|
+
isEnabled: _zod.z.boolean(),
|
|
3378
|
+
designSystemIds: _zod.z.array(_zod.z.string())
|
|
3379
|
+
});
|
|
3380
|
+
var DesignSystem = _zod.z.object({
|
|
3381
|
+
id: _zod.z.string(),
|
|
3382
|
+
workspaceId: _zod.z.string(),
|
|
3383
|
+
name: _zod.z.string(),
|
|
3384
|
+
description: _zod.z.string(),
|
|
3385
|
+
docExporterId: nullishToOptional(_zod.z.string()),
|
|
3386
|
+
docSlug: _zod.z.string(),
|
|
3387
|
+
docUserSlug: nullishToOptional(_zod.z.string()),
|
|
3388
|
+
docSlugDeprecated: _zod.z.string(),
|
|
3389
|
+
isPublic: _zod.z.boolean(),
|
|
3390
|
+
isMultibrand: _zod.z.boolean(),
|
|
3391
|
+
docViewUrl: nullishToOptional(_zod.z.string()),
|
|
3392
|
+
basePrefixes: _zod.z.array(_zod.z.string()),
|
|
3393
|
+
designSystemSwitcher: nullishToOptional(DesignSystemSwitcher),
|
|
3394
|
+
isApprovalFeatureEnabled: _zod.z.boolean(),
|
|
3395
|
+
approvalRequiredForPublishing: _zod.z.boolean(),
|
|
3396
|
+
accessMode: DesignSystemAccessMode,
|
|
3397
|
+
createdAt: _zod.z.coerce.date(),
|
|
3398
|
+
updatedAt: _zod.z.coerce.date()
|
|
3399
|
+
});
|
|
3371
3400
|
var DocumentationPageApprovalState = _zod.z.enum(["ReadyForReview", "ChangesRequested", "Approved"]);
|
|
3372
3401
|
var DocumentationPageApproval = _zod.z.object({
|
|
3373
3402
|
id: _zod.z.string(),
|
|
@@ -3557,115 +3586,6 @@ var ElementGroupSnapshot = DesignElementSnapshotBase.extend({
|
|
|
3557
3586
|
function pickLatestGroupSnapshots(snapshots) {
|
|
3558
3587
|
return pickLatestSnapshots(snapshots, (s) => s.group.id);
|
|
3559
3588
|
}
|
|
3560
|
-
var DesignSystemMembership = _zod.z.object({
|
|
3561
|
-
id: _zod.z.string(),
|
|
3562
|
-
userId: _zod.z.string(),
|
|
3563
|
-
designSystemId: _zod.z.string(),
|
|
3564
|
-
workspaceMembershipId: _zod.z.string()
|
|
3565
|
-
});
|
|
3566
|
-
var ElementViewBaseColumnType = _zod.z.enum(["Name", "Description", "Value", "UpdatedAt"]);
|
|
3567
|
-
var ElementViewColumnType = _zod.z.union([
|
|
3568
|
-
_zod.z.literal("BaseProperty"),
|
|
3569
|
-
_zod.z.literal("PropertyDefinition"),
|
|
3570
|
-
_zod.z.literal("Theme")
|
|
3571
|
-
]);
|
|
3572
|
-
var ElementViewColumnSharedAttributes = _zod.z.object({
|
|
3573
|
-
id: _zod.z.string(),
|
|
3574
|
-
persistentId: _zod.z.string(),
|
|
3575
|
-
elementDataViewId: _zod.z.string(),
|
|
3576
|
-
sortPosition: _zod.z.number(),
|
|
3577
|
-
width: _zod.z.number()
|
|
3578
|
-
});
|
|
3579
|
-
var ElementViewBasePropertyColumn = ElementViewColumnSharedAttributes.extend({
|
|
3580
|
-
type: _zod.z.literal("BaseProperty"),
|
|
3581
|
-
basePropertyType: ElementViewBaseColumnType
|
|
3582
|
-
});
|
|
3583
|
-
var ElementViewPropertyDefinitionColumn = ElementViewColumnSharedAttributes.extend({
|
|
3584
|
-
type: _zod.z.literal("PropertyDefinition"),
|
|
3585
|
-
propertyDefinitionId: _zod.z.string()
|
|
3586
|
-
});
|
|
3587
|
-
var ElementViewThemeColumn = ElementViewColumnSharedAttributes.extend({
|
|
3588
|
-
type: _zod.z.literal("Theme"),
|
|
3589
|
-
themeId: _zod.z.string()
|
|
3590
|
-
});
|
|
3591
|
-
var ElementViewColumn = _zod.z.discriminatedUnion("type", [
|
|
3592
|
-
ElementViewBasePropertyColumn,
|
|
3593
|
-
ElementViewPropertyDefinitionColumn,
|
|
3594
|
-
ElementViewThemeColumn
|
|
3595
|
-
]);
|
|
3596
|
-
var ElementView = _zod.z.object({
|
|
3597
|
-
id: _zod.z.string(),
|
|
3598
|
-
persistentId: _zod.z.string(),
|
|
3599
|
-
designSystemVersionId: _zod.z.string(),
|
|
3600
|
-
name: _zod.z.string(),
|
|
3601
|
-
description: _zod.z.string(),
|
|
3602
|
-
targetElementType: ElementPropertyTargetType,
|
|
3603
|
-
isDefault: _zod.z.boolean()
|
|
3604
|
-
});
|
|
3605
|
-
var Brand = _zod.z.object({
|
|
3606
|
-
id: _zod.z.string(),
|
|
3607
|
-
designSystemVersionId: _zod.z.string(),
|
|
3608
|
-
persistentId: _zod.z.string(),
|
|
3609
|
-
name: _zod.z.string(),
|
|
3610
|
-
description: _zod.z.string()
|
|
3611
|
-
});
|
|
3612
|
-
var DesignSystemAccessMode = _zod.z.enum(["Open", "InviteOnly"]);
|
|
3613
|
-
var DesignSystemSwitcher = _zod.z.object({
|
|
3614
|
-
isEnabled: _zod.z.boolean(),
|
|
3615
|
-
designSystemIds: _zod.z.array(_zod.z.string())
|
|
3616
|
-
});
|
|
3617
|
-
var DesignSystem = _zod.z.object({
|
|
3618
|
-
id: _zod.z.string(),
|
|
3619
|
-
workspaceId: _zod.z.string(),
|
|
3620
|
-
name: _zod.z.string(),
|
|
3621
|
-
description: _zod.z.string(),
|
|
3622
|
-
docExporterId: nullishToOptional(_zod.z.string()),
|
|
3623
|
-
docSlug: _zod.z.string(),
|
|
3624
|
-
docUserSlug: nullishToOptional(_zod.z.string()),
|
|
3625
|
-
docSlugDeprecated: _zod.z.string(),
|
|
3626
|
-
isPublic: _zod.z.boolean(),
|
|
3627
|
-
isMultibrand: _zod.z.boolean(),
|
|
3628
|
-
docViewUrl: nullishToOptional(_zod.z.string()),
|
|
3629
|
-
basePrefixes: _zod.z.array(_zod.z.string()),
|
|
3630
|
-
designSystemSwitcher: nullishToOptional(DesignSystemSwitcher),
|
|
3631
|
-
isApprovalFeatureEnabled: _zod.z.boolean(),
|
|
3632
|
-
approvalRequiredForPublishing: _zod.z.boolean(),
|
|
3633
|
-
accessMode: DesignSystemAccessMode,
|
|
3634
|
-
createdAt: _zod.z.coerce.date(),
|
|
3635
|
-
updatedAt: _zod.z.coerce.date()
|
|
3636
|
-
});
|
|
3637
|
-
var DS_NAME_MIN_LENGTH = 2;
|
|
3638
|
-
var DS_NAME_MAX_LENGTH = 64;
|
|
3639
|
-
var DS_DESC_MAX_LENGTH = 2048;
|
|
3640
|
-
var DesignSystemUpdateInputMetadata = _zod.z.object({
|
|
3641
|
-
name: _zod.z.string().min(DS_NAME_MIN_LENGTH).max(DS_NAME_MAX_LENGTH).trim().optional(),
|
|
3642
|
-
description: _zod.z.string().max(DS_DESC_MAX_LENGTH).trim().optional()
|
|
3643
|
-
});
|
|
3644
|
-
var DesignSystemUpdateInput = DesignSystem.partial().omit({
|
|
3645
|
-
id: true,
|
|
3646
|
-
workspaceId: true,
|
|
3647
|
-
createdAt: true,
|
|
3648
|
-
updatedAt: true,
|
|
3649
|
-
docSlug: true,
|
|
3650
|
-
docViewUrl: true
|
|
3651
|
-
}).extend({
|
|
3652
|
-
meta: DesignSystemUpdateInputMetadata.optional()
|
|
3653
|
-
});
|
|
3654
|
-
var DS_NAME_MIN_LENGTH2 = 2;
|
|
3655
|
-
var DS_NAME_MAX_LENGTH2 = 64;
|
|
3656
|
-
var DS_DESC_MAX_LENGTH2 = 64;
|
|
3657
|
-
var DesignSystemCreateInputMetadata = _zod.z.object({
|
|
3658
|
-
name: _zod.z.string().min(DS_NAME_MIN_LENGTH2).max(DS_NAME_MAX_LENGTH2).trim(),
|
|
3659
|
-
description: _zod.z.string().max(DS_DESC_MAX_LENGTH2).trim()
|
|
3660
|
-
});
|
|
3661
|
-
var DesignSystemCreateInput = _zod.z.object({
|
|
3662
|
-
meta: DesignSystemCreateInputMetadata,
|
|
3663
|
-
workspaceId: _zod.z.string(),
|
|
3664
|
-
isPublic: _zod.z.boolean().optional(),
|
|
3665
|
-
basePrefixes: _zod.z.array(_zod.z.string()).optional(),
|
|
3666
|
-
docUserSlug: _zod.z.string().nullish().optional(),
|
|
3667
|
-
source: _zod.z.array(_zod.z.string()).optional()
|
|
3668
|
-
});
|
|
3669
3589
|
var ExporterPropertyImageValue = _zod.z.object({
|
|
3670
3590
|
asset: PageBlockAsset.optional(),
|
|
3671
3591
|
assetId: _zod.z.string().optional(),
|
|
@@ -3688,18 +3608,11 @@ var ExporterPropertyValuesCollection = _zod.z.object({
|
|
|
3688
3608
|
exporterId: _zod.z.string(),
|
|
3689
3609
|
values: _zod.z.array(ExporterPropertyValue)
|
|
3690
3610
|
});
|
|
3691
|
-
var
|
|
3611
|
+
var DesignSystemMembership = _zod.z.object({
|
|
3692
3612
|
id: _zod.z.string(),
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
pathV2: _zod.z.string(),
|
|
3697
|
-
storagePath: _zod.z.string(),
|
|
3698
|
-
locale: _zod.z.string().optional(),
|
|
3699
|
-
isPrivate: _zod.z.boolean(),
|
|
3700
|
-
isHidden: _zod.z.boolean(),
|
|
3701
|
-
createdAt: _zod.z.coerce.date(),
|
|
3702
|
-
updatedAt: _zod.z.coerce.date()
|
|
3613
|
+
userId: _zod.z.string(),
|
|
3614
|
+
designSystemId: _zod.z.string(),
|
|
3615
|
+
workspaceMembershipId: _zod.z.string()
|
|
3703
3616
|
});
|
|
3704
3617
|
var publishedDocEnvironments = ["Live", "Preview"];
|
|
3705
3618
|
var PublishedDocEnvironment = _zod.z.enum(publishedDocEnvironments);
|
|
@@ -3723,6 +3636,19 @@ var PublishedDoc = _zod.z.object({
|
|
|
3723
3636
|
tokenCount: _zod.z.number(),
|
|
3724
3637
|
assetCount: _zod.z.number()
|
|
3725
3638
|
});
|
|
3639
|
+
var PublishedDocPage = _zod.z.object({
|
|
3640
|
+
id: _zod.z.string(),
|
|
3641
|
+
publishedDocId: _zod.z.string(),
|
|
3642
|
+
pageShortPersistentId: _zod.z.string(),
|
|
3643
|
+
pathV1: _zod.z.string(),
|
|
3644
|
+
pathV2: _zod.z.string(),
|
|
3645
|
+
storagePath: _zod.z.string(),
|
|
3646
|
+
locale: _zod.z.string().optional(),
|
|
3647
|
+
isPrivate: _zod.z.boolean(),
|
|
3648
|
+
isHidden: _zod.z.boolean(),
|
|
3649
|
+
createdAt: _zod.z.coerce.date(),
|
|
3650
|
+
updatedAt: _zod.z.coerce.date()
|
|
3651
|
+
});
|
|
3726
3652
|
var DesignSystemVersion = _zod.z.object({
|
|
3727
3653
|
id: _zod.z.string(),
|
|
3728
3654
|
version: _zod.z.string(),
|
|
@@ -3744,6 +3670,45 @@ var VersionCreationJob = _zod.z.object({
|
|
|
3744
3670
|
status: VersionCreationJobStatus,
|
|
3745
3671
|
errorMessage: nullishToOptional(_zod.z.string())
|
|
3746
3672
|
});
|
|
3673
|
+
var ElementViewBaseColumnType = _zod.z.enum(["Name", "Description", "Value", "UpdatedAt"]);
|
|
3674
|
+
var ElementViewColumnType = _zod.z.union([
|
|
3675
|
+
_zod.z.literal("BaseProperty"),
|
|
3676
|
+
_zod.z.literal("PropertyDefinition"),
|
|
3677
|
+
_zod.z.literal("Theme")
|
|
3678
|
+
]);
|
|
3679
|
+
var ElementViewColumnSharedAttributes = _zod.z.object({
|
|
3680
|
+
id: _zod.z.string(),
|
|
3681
|
+
persistentId: _zod.z.string(),
|
|
3682
|
+
elementDataViewId: _zod.z.string(),
|
|
3683
|
+
sortPosition: _zod.z.number(),
|
|
3684
|
+
width: _zod.z.number()
|
|
3685
|
+
});
|
|
3686
|
+
var ElementViewBasePropertyColumn = ElementViewColumnSharedAttributes.extend({
|
|
3687
|
+
type: _zod.z.literal("BaseProperty"),
|
|
3688
|
+
basePropertyType: ElementViewBaseColumnType
|
|
3689
|
+
});
|
|
3690
|
+
var ElementViewPropertyDefinitionColumn = ElementViewColumnSharedAttributes.extend({
|
|
3691
|
+
type: _zod.z.literal("PropertyDefinition"),
|
|
3692
|
+
propertyDefinitionId: _zod.z.string()
|
|
3693
|
+
});
|
|
3694
|
+
var ElementViewThemeColumn = ElementViewColumnSharedAttributes.extend({
|
|
3695
|
+
type: _zod.z.literal("Theme"),
|
|
3696
|
+
themeId: _zod.z.string()
|
|
3697
|
+
});
|
|
3698
|
+
var ElementViewColumn = _zod.z.discriminatedUnion("type", [
|
|
3699
|
+
ElementViewBasePropertyColumn,
|
|
3700
|
+
ElementViewPropertyDefinitionColumn,
|
|
3701
|
+
ElementViewThemeColumn
|
|
3702
|
+
]);
|
|
3703
|
+
var ElementView = _zod.z.object({
|
|
3704
|
+
id: _zod.z.string(),
|
|
3705
|
+
persistentId: _zod.z.string(),
|
|
3706
|
+
designSystemVersionId: _zod.z.string(),
|
|
3707
|
+
name: _zod.z.string(),
|
|
3708
|
+
description: _zod.z.string(),
|
|
3709
|
+
targetElementType: ElementPropertyTargetType,
|
|
3710
|
+
isDefault: _zod.z.boolean()
|
|
3711
|
+
});
|
|
3747
3712
|
var BITBUCKET_SLUG = /^[-a-zA-Z0-9~]*$/;
|
|
3748
3713
|
var BITBUCKET_MAX_LENGTH = 64;
|
|
3749
3714
|
var ExportJobDocumentationChanges = _zod.z.object({
|
|
@@ -5119,6 +5084,16 @@ var DTODesignSystem = DesignSystem.omit({
|
|
|
5119
5084
|
docExporterId: _zod.z.string(),
|
|
5120
5085
|
sources: _zod.z.array(_zod.z.any())
|
|
5121
5086
|
});
|
|
5087
|
+
var DTODesignSystemCreateResponse = _zod.z.object({
|
|
5088
|
+
designSystem: DTODesignSystem
|
|
5089
|
+
});
|
|
5090
|
+
var DTODesignSystemCreateInput = _zod.z.object({
|
|
5091
|
+
workspaceId: _zod.z.string(),
|
|
5092
|
+
meta: ObjectMeta.optional(),
|
|
5093
|
+
name: _zod.z.string().min(2).max(64).optional(),
|
|
5094
|
+
description: _zod.z.string().max(1024).optional(),
|
|
5095
|
+
accessMode: DesignSystemAccessMode.optional()
|
|
5096
|
+
});
|
|
5122
5097
|
|
|
5123
5098
|
// src/api/dto/design-systems/elements-diff.ts
|
|
5124
5099
|
|
|
@@ -5167,7 +5142,16 @@ var DTOCreateBrandInput = _zod.z.object({
|
|
|
5167
5142
|
});
|
|
5168
5143
|
|
|
5169
5144
|
// src/api/payloads/design-systems/update-design-system.ts
|
|
5170
|
-
var DTODesignSystemUpdateInput =
|
|
5145
|
+
var DTODesignSystemUpdateInput = DesignSystem.partial().omit({
|
|
5146
|
+
id: true,
|
|
5147
|
+
workspaceId: true,
|
|
5148
|
+
createdAt: true,
|
|
5149
|
+
updatedAt: true,
|
|
5150
|
+
docSlug: true,
|
|
5151
|
+
docViewUrl: true
|
|
5152
|
+
}).extend({
|
|
5153
|
+
meta: ObjectMeta.partial().optional()
|
|
5154
|
+
});
|
|
5171
5155
|
|
|
5172
5156
|
// src/api/payloads/design-systems/version.ts
|
|
5173
5157
|
|
|
@@ -11866,5 +11850,7 @@ var BackendVersionRoomYDoc = class {
|
|
|
11866
11850
|
|
|
11867
11851
|
|
|
11868
11852
|
|
|
11869
|
-
exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOBrand = DTOBrand; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCreateBrandInput = DTOCreateBrandInput; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateElementPropertyDefinitionInputV2 = DTOCreateElementPropertyDefinitionInputV2; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODataSource = DTODataSource; exports.DTODataSourceCreationResponse = DTODataSourceCreationResponse; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionsGetResponse = DTOElementPropertyDefinitionsGetResponse; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValuesGetResponse = DTOElementPropertyValuesGetResponse; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterCreateOutput = DTOExporterCreateOutput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUser = DTOUser; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserProfileUpdateResponse = DTOUserProfileUpdateResponse; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
|
|
11853
|
+
|
|
11854
|
+
|
|
11855
|
+
exports.BackendVersionRoomYDoc = BackendVersionRoomYDoc; exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; exports.DTOAssetRenderConfiguration = DTOAssetRenderConfiguration; exports.DTOBrand = DTOBrand; exports.DTOBrandCreateResponse = DTOBrandCreateResponse; exports.DTOBrandGetResponse = DTOBrandGetResponse; exports.DTOBrandsListResponse = DTOBrandsListResponse; exports.DTOCreateBrandInput = DTOCreateBrandInput; exports.DTOCreateDocumentationGroupInput = DTOCreateDocumentationGroupInput; exports.DTOCreateDocumentationPageInputV2 = DTOCreateDocumentationPageInputV2; exports.DTOCreateDocumentationTabInput = DTOCreateDocumentationTabInput; exports.DTOCreateElementPropertyDefinitionInputV2 = DTOCreateElementPropertyDefinitionInputV2; exports.DTOCreateVersionInput = DTOCreateVersionInput; exports.DTODataSource = DTODataSource; exports.DTODataSourceCreationResponse = DTODataSourceCreationResponse; exports.DTODataSourceFigma = DTODataSourceFigma; exports.DTODataSourceFigmaCloud = DTODataSourceFigmaCloud; exports.DTODataSourceFigmaVariablesPlugin = DTODataSourceFigmaVariablesPlugin; exports.DTODataSourceTokenStudio = DTODataSourceTokenStudio; exports.DTODataSourcesListResponse = DTODataSourcesListResponse; exports.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignElementsDataDiffResponse = DTODesignElementsDataDiffResponse; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemCreateInput = DTODesignSystemCreateInput; exports.DTODesignSystemCreateResponse = DTODesignSystemCreateResponse; exports.DTODesignSystemMember = DTODesignSystemMember; exports.DTODesignSystemMemberListResponse = DTODesignSystemMemberListResponse; exports.DTODesignSystemMembersUpdatePayload = DTODesignSystemMembersUpdatePayload; exports.DTODesignSystemMembersUpdateResponse = DTODesignSystemMembersUpdateResponse; exports.DTODesignSystemUpdateInput = DTODesignSystemUpdateInput; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; exports.DTODiffCountBase = DTODiffCountBase; exports.DTODocumentationDraftChangeType = DTODocumentationDraftChangeType; exports.DTODocumentationDraftState = DTODocumentationDraftState; exports.DTODocumentationDraftStateCreated = DTODocumentationDraftStateCreated; exports.DTODocumentationDraftStateDeleted = DTODocumentationDraftStateDeleted; exports.DTODocumentationDraftStateUpdated = DTODocumentationDraftStateUpdated; exports.DTODocumentationGroupApprovalState = DTODocumentationGroupApprovalState; exports.DTODocumentationGroupCreateActionInputV2 = DTODocumentationGroupCreateActionInputV2; exports.DTODocumentationGroupCreateActionOutputV2 = DTODocumentationGroupCreateActionOutputV2; exports.DTODocumentationGroupDeleteActionInputV2 = DTODocumentationGroupDeleteActionInputV2; exports.DTODocumentationGroupDeleteActionOutputV2 = DTODocumentationGroupDeleteActionOutputV2; exports.DTODocumentationGroupDuplicateActionInputV2 = DTODocumentationGroupDuplicateActionInputV2; exports.DTODocumentationGroupDuplicateActionOutputV2 = DTODocumentationGroupDuplicateActionOutputV2; exports.DTODocumentationGroupMoveActionInputV2 = DTODocumentationGroupMoveActionInputV2; exports.DTODocumentationGroupMoveActionOutputV2 = DTODocumentationGroupMoveActionOutputV2; exports.DTODocumentationGroupRestoreActionInput = DTODocumentationGroupRestoreActionInput; exports.DTODocumentationGroupRestoreActionOutput = DTODocumentationGroupRestoreActionOutput; exports.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupUpdateActionInputV2 = DTODocumentationGroupUpdateActionInputV2; exports.DTODocumentationGroupUpdateActionOutputV2 = DTODocumentationGroupUpdateActionOutputV2; exports.DTODocumentationGroupV1 = DTODocumentationGroupV1; exports.DTODocumentationGroupV2 = DTODocumentationGroupV2; exports.DTODocumentationHierarchyV2 = DTODocumentationHierarchyV2; exports.DTODocumentationItemConfigurationV1 = DTODocumentationItemConfigurationV1; exports.DTODocumentationItemConfigurationV2 = DTODocumentationItemConfigurationV2; exports.DTODocumentationItemHeaderV2 = DTODocumentationItemHeaderV2; exports.DTODocumentationLinkPreviewRequest = DTODocumentationLinkPreviewRequest; exports.DTODocumentationLinkPreviewResponse = DTODocumentationLinkPreviewResponse; exports.DTODocumentationPageAnchor = DTODocumentationPageAnchor; exports.DTODocumentationPageApprovalState = DTODocumentationPageApprovalState; exports.DTODocumentationPageApprovalStateChangeActionInput = DTODocumentationPageApprovalStateChangeActionInput; exports.DTODocumentationPageApprovalStateChangeActionOutput = DTODocumentationPageApprovalStateChangeActionOutput; exports.DTODocumentationPageApprovalStateChangeInput = DTODocumentationPageApprovalStateChangeInput; exports.DTODocumentationPageContent = DTODocumentationPageContent; exports.DTODocumentationPageContentGetResponse = DTODocumentationPageContentGetResponse; exports.DTODocumentationPageCreateActionInputV2 = DTODocumentationPageCreateActionInputV2; exports.DTODocumentationPageCreateActionOutputV2 = DTODocumentationPageCreateActionOutputV2; exports.DTODocumentationPageDeleteActionInputV2 = DTODocumentationPageDeleteActionInputV2; exports.DTODocumentationPageDeleteActionOutputV2 = DTODocumentationPageDeleteActionOutputV2; exports.DTODocumentationPageDuplicateActionInputV2 = DTODocumentationPageDuplicateActionInputV2; exports.DTODocumentationPageDuplicateActionOutputV2 = DTODocumentationPageDuplicateActionOutputV2; exports.DTODocumentationPageMoveActionInputV2 = DTODocumentationPageMoveActionInputV2; exports.DTODocumentationPageMoveActionOutputV2 = DTODocumentationPageMoveActionOutputV2; exports.DTODocumentationPageRestoreActionInput = DTODocumentationPageRestoreActionInput; exports.DTODocumentationPageRestoreActionOutput = DTODocumentationPageRestoreActionOutput; exports.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageSnapshot = DTODocumentationPageSnapshot; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationPublishMetadata = DTODocumentationPublishMetadata; exports.DTODocumentationPublishTypeQueryParams = DTODocumentationPublishTypeQueryParams; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; exports.DTODownloadAssetsRequest = DTODownloadAssetsRequest; exports.DTODownloadAssetsResponse = DTODownloadAssetsResponse; exports.DTODuplicateDocumentationGroupInput = DTODuplicateDocumentationGroupInput; exports.DTODuplicateDocumentationPageInputV2 = DTODuplicateDocumentationPageInputV2; exports.DTOElementActionInput = DTOElementActionInput; exports.DTOElementActionOutput = DTOElementActionOutput; exports.DTOElementPropertyDefinition = DTOElementPropertyDefinition; exports.DTOElementPropertyDefinitionsGetResponse = DTOElementPropertyDefinitionsGetResponse; exports.DTOElementPropertyValue = DTOElementPropertyValue; exports.DTOElementPropertyValuesGetResponse = DTOElementPropertyValuesGetResponse; exports.DTOElementView = DTOElementView; exports.DTOElementViewBasePropertyColumn = DTOElementViewBasePropertyColumn; exports.DTOElementViewColumn = DTOElementViewColumn; exports.DTOElementViewColumnSharedAttributes = DTOElementViewColumnSharedAttributes; exports.DTOElementViewPropertyDefinitionColumn = DTOElementViewPropertyDefinitionColumn; exports.DTOElementViewThemeColumn = DTOElementViewThemeColumn; exports.DTOElementViewsListResponse = DTOElementViewsListResponse; exports.DTOElementsGetOutput = DTOElementsGetOutput; exports.DTOElementsGetQuerySchema = DTOElementsGetQuerySchema; exports.DTOElementsGetTypeFilter = DTOElementsGetTypeFilter; exports.DTOExportJob = DTOExportJob; exports.DTOExportJobCreatedBy = DTOExportJobCreatedBy; exports.DTOExportJobDesignSystemPreview = DTOExportJobDesignSystemPreview; exports.DTOExportJobDesignSystemVersionPreview = DTOExportJobDesignSystemVersionPreview; exports.DTOExportJobDestinations = DTOExportJobDestinations; exports.DTOExportJobResponse = DTOExportJobResponse; exports.DTOExportJobResult = DTOExportJobResult; exports.DTOExportJobsListFilter = DTOExportJobsListFilter; exports.DTOExporter = DTOExporter; exports.DTOExporterCreateInput = DTOExporterCreateInput; exports.DTOExporterCreateOutput = DTOExporterCreateOutput; exports.DTOExporterGitProviderEnum = DTOExporterGitProviderEnum; exports.DTOExporterMembership = DTOExporterMembership; exports.DTOExporterMembershipRole = DTOExporterMembershipRole; exports.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOExporterSource = DTOExporterSource; exports.DTOExporterType = DTOExporterType; exports.DTOExporterUpdateInput = DTOExporterUpdateInput; exports.DTOFigmaComponent = DTOFigmaComponent; exports.DTOFigmaComponentListResponse = DTOFigmaComponentListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderFormat = DTOFigmaNodeRenderFormat; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOGitBranch = DTOGitBranch; exports.DTOGitOrganization = DTOGitOrganization; exports.DTOGitProject = DTOGitProject; exports.DTOGitRepository = DTOGitRepository; exports.DTOIntegration = DTOIntegration; exports.DTOIntegrationCredentials = DTOIntegrationCredentials; exports.DTOIntegrationOAuthGetResponse = DTOIntegrationOAuthGetResponse; exports.DTOIntegrationPostResponse = DTOIntegrationPostResponse; exports.DTOIntegrationsGetListResponse = DTOIntegrationsGetListResponse; exports.DTOLiveblocksAuthRequest = DTOLiveblocksAuthRequest; exports.DTOLiveblocksAuthResponse = DTOLiveblocksAuthResponse; exports.DTOMoveDocumentationGroupInput = DTOMoveDocumentationGroupInput; exports.DTOMoveDocumentationPageInputV2 = DTOMoveDocumentationPageInputV2; exports.DTONpmRegistryConfig = DTONpmRegistryConfig; exports.DTONpmRegistryConfigConstants = DTONpmRegistryConfigConstants; exports.DTOPageBlockColorV2 = DTOPageBlockColorV2; exports.DTOPageBlockDefinition = DTOPageBlockDefinition; exports.DTOPageBlockDefinitionBehavior = DTOPageBlockDefinitionBehavior; exports.DTOPageBlockDefinitionItem = DTOPageBlockDefinitionItem; exports.DTOPageBlockDefinitionLayout = DTOPageBlockDefinitionLayout; exports.DTOPageBlockDefinitionProperty = DTOPageBlockDefinitionProperty; exports.DTOPageBlockDefinitionVariant = DTOPageBlockDefinitionVariant; exports.DTOPageBlockItemV2 = DTOPageBlockItemV2; exports.DTOPagination = DTOPagination; exports.DTOPipeline = DTOPipeline; exports.DTOPipelineCreateBody = DTOPipelineCreateBody; exports.DTOPipelineTriggerBody = DTOPipelineTriggerBody; exports.DTOPipelineUpdateBody = DTOPipelineUpdateBody; exports.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOPublishDocumentationChanges = DTOPublishDocumentationChanges; exports.DTOPublishDocumentationRequest = DTOPublishDocumentationRequest; exports.DTOPublishDocumentationResponse = DTOPublishDocumentationResponse; exports.DTORenderedAssetFile = DTORenderedAssetFile; exports.DTORestoreDocumentationGroupInput = DTORestoreDocumentationGroupInput; exports.DTORestoreDocumentationPageInput = DTORestoreDocumentationPageInput; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUser = DTOUser; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserProfile = DTOUserProfile; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserProfileUpdateResponse = DTOUserProfileUpdateResponse; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationGetGitObjectsInput = DTOWorkspaceIntegrationGetGitObjectsInput; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.FrontendVersionRoomYDoc = FrontendVersionRoomYDoc; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionRoomBaseYDoc = VersionRoomBaseYDoc; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPageToDTOV2 = documentationPageToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.generateHash = generateHash; exports.generatePageContentHash = generatePageContentHash; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.innerEditorProsemirrorSchema = innerEditorProsemirrorSchema; exports.integrationCredentialToDto = integrationCredentialToDto; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.mainEditorProsemirrorSchema = mainEditorProsemirrorSchema; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYDoc = pageToYDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pipelineToDto = pipelineToDto; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorDocToRichTextPropertyValue = prosemirrorDocToRichTextPropertyValue; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.richTextPropertyValueToProsemirror = richTextPropertyValueToProsemirror; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
|
|
11870
11856
|
//# sourceMappingURL=index.js.map
|