@supernova-studio/client 0.47.0 → 0.47.5
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 +753 -10
- package/dist/index.d.ts +753 -10
- package/dist/index.js +168 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2210 -2048
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/conversion/integrations/git.ts +34 -0
- package/src/api/conversion/integrations/index.ts +1 -0
- package/src/api/dto/index.ts +1 -0
- package/src/api/dto/users/index.ts +1 -0
- package/src/api/dto/users/profile/index.ts +1 -0
- package/src/api/dto/users/profile/update.ts +7 -0
- package/src/api/dto/workspaces/git.ts +29 -0
- package/src/api/dto/workspaces/index.ts +1 -0
- package/src/api/payloads/users/index.ts +1 -0
- package/src/api/payloads/users/profile/index.ts +1 -0
- package/src/api/payloads/users/profile/update.ts +4 -0
package/dist/index.js
CHANGED
|
@@ -123,6 +123,8 @@ var _zod = require('zod');
|
|
|
123
123
|
|
|
124
124
|
|
|
125
125
|
|
|
126
|
+
|
|
127
|
+
|
|
126
128
|
|
|
127
129
|
|
|
128
130
|
|
|
@@ -157,10 +159,21 @@ var _ipcidr = require('ip-cidr'); var _ipcidr2 = _interopRequireDefault(_ipcidr)
|
|
|
157
159
|
|
|
158
160
|
|
|
159
161
|
|
|
162
|
+
|
|
163
|
+
|
|
160
164
|
|
|
161
165
|
|
|
162
166
|
|
|
163
167
|
var _slugify = require('@sindresorhus/slugify'); var _slugify2 = _interopRequireDefault(_slugify);
|
|
168
|
+
var AssetDeleteScheduleStatus = _zod.z.enum(["InProgress", "Pending"]);
|
|
169
|
+
var AssetDeleteSchedule = _zod.z.object({
|
|
170
|
+
id: _zod.z.string(),
|
|
171
|
+
path: _zod.z.string(),
|
|
172
|
+
createdAt: _zod.z.date(),
|
|
173
|
+
deleteAt: _zod.z.date(),
|
|
174
|
+
isFolder: _zod.z.boolean(),
|
|
175
|
+
status: AssetDeleteScheduleStatus
|
|
176
|
+
});
|
|
164
177
|
var PluginOAuthRequestSchema = _zod.z.object({
|
|
165
178
|
id: _zod.z.string(),
|
|
166
179
|
codeChallenge: _zod.z.string(),
|
|
@@ -435,7 +448,8 @@ var UserOnboarding = _zod.z.object({
|
|
|
435
448
|
department: UserOnboardingDepartment.optional(),
|
|
436
449
|
jobTitle: _zod.z.string().optional(),
|
|
437
450
|
phase: _zod.z.string().optional(),
|
|
438
|
-
jobLevel: UserOnboardingJobLevel.optional()
|
|
451
|
+
jobLevel: UserOnboardingJobLevel.optional(),
|
|
452
|
+
designSystemName: _zod.z.string().optional()
|
|
439
453
|
});
|
|
440
454
|
var UserProfile = _zod.z.object({
|
|
441
455
|
name: _zod.z.string(),
|
|
@@ -443,6 +457,9 @@ var UserProfile = _zod.z.object({
|
|
|
443
457
|
nickname: _zod.z.string().optional(),
|
|
444
458
|
onboarding: UserOnboarding.optional()
|
|
445
459
|
});
|
|
460
|
+
var UserProfileUpdate = UserProfile.partial().omit({
|
|
461
|
+
avatar: true
|
|
462
|
+
});
|
|
446
463
|
var UserTest = _zod.z.object({
|
|
447
464
|
id: _zod.z.string(),
|
|
448
465
|
email: _zod.z.string()
|
|
@@ -962,7 +979,8 @@ var PageBlockFigmaFrameProperties = _zod.z.object({
|
|
|
962
979
|
showTitles: _zod.z.boolean()
|
|
963
980
|
});
|
|
964
981
|
var PageBlockRenderCodeProperties = _zod.z.object({
|
|
965
|
-
showCode: _zod.z.boolean()
|
|
982
|
+
showCode: _zod.z.boolean(),
|
|
983
|
+
showControls: _zod.z.boolean().optional()
|
|
966
984
|
});
|
|
967
985
|
var PageBlockAssetComponent = _zod.z.object({
|
|
968
986
|
persistentId: _zod.z.string(),
|
|
@@ -2171,13 +2189,29 @@ var PageBlockDefinitionSingleSelectPropertyStyle = _zod.z.enum([
|
|
|
2171
2189
|
"Select",
|
|
2172
2190
|
"Checkbox"
|
|
2173
2191
|
]);
|
|
2192
|
+
var PageBlockDefinitionSingleSelectPropertyColor = _zod.z.enum([
|
|
2193
|
+
"Green",
|
|
2194
|
+
"Red",
|
|
2195
|
+
"Yellow",
|
|
2196
|
+
"Blue",
|
|
2197
|
+
"Purple",
|
|
2198
|
+
"Orange",
|
|
2199
|
+
"Pink",
|
|
2200
|
+
"Teal",
|
|
2201
|
+
"Brown",
|
|
2202
|
+
"Grey",
|
|
2203
|
+
"LightGrey",
|
|
2204
|
+
"Cyan",
|
|
2205
|
+
"Fuchsia"
|
|
2206
|
+
]);
|
|
2174
2207
|
var PageBlockDefinitionMultiSelectPropertyStyle = _zod.z.enum(["SegmentedControl", "Select", "Checkbox"]);
|
|
2175
2208
|
var PageBlockDefinitionImageAspectRatio = _zod.z.enum(["Auto", "Square", "Landscape", "Portrait", "Wide"]);
|
|
2176
2209
|
var PageBlockDefinitionImageWidth = _zod.z.enum(["Full", "Icon", "Small", "Medium", "Large", "Poster"]);
|
|
2177
2210
|
var PageBlockDefinitionSelectChoice = _zod.z.object({
|
|
2178
2211
|
value: _zod.z.string(),
|
|
2179
2212
|
name: _zod.z.string(),
|
|
2180
|
-
icon: _zod.z.string().optional()
|
|
2213
|
+
icon: _zod.z.string().optional(),
|
|
2214
|
+
color: PageBlockDefinitionSingleSelectPropertyColor.optional()
|
|
2181
2215
|
});
|
|
2182
2216
|
var PageBlockDefinitionUntypedPropertyOptions = _zod.z.record(_zod.z.any());
|
|
2183
2217
|
var PageBlockDefinitionRichTextOptions = _zod.z.object({
|
|
@@ -2252,7 +2286,8 @@ var PageBlockDefinitionBehavior = _zod.z.object({
|
|
|
2252
2286
|
dataType: PageBlockBehaviorDataType,
|
|
2253
2287
|
items: _zod.z.object({
|
|
2254
2288
|
numberOfItems: _zod.z.number(),
|
|
2255
|
-
allowLinks: _zod.z.boolean()
|
|
2289
|
+
allowLinks: _zod.z.boolean(),
|
|
2290
|
+
newItemLabel: _zod.z.string().optional()
|
|
2256
2291
|
}).optional(),
|
|
2257
2292
|
entities: _zod.z.object({
|
|
2258
2293
|
selectionType: PageBlockBehaviorSelectionType,
|
|
@@ -2341,6 +2376,28 @@ var DocumentationPage = _zod.z.object({
|
|
|
2341
2376
|
createdAt: _zod.z.coerce.date(),
|
|
2342
2377
|
updatedAt: _zod.z.coerce.date()
|
|
2343
2378
|
});
|
|
2379
|
+
var DocumentationComment = _zod.z.object({
|
|
2380
|
+
id: _zod.z.string(),
|
|
2381
|
+
authorId: _zod.z.string(),
|
|
2382
|
+
threadId: _zod.z.string(),
|
|
2383
|
+
roomId: _zod.z.string(),
|
|
2384
|
+
createdAt: _zod.z.coerce.date(),
|
|
2385
|
+
editedAt: _zod.z.coerce.date().optional(),
|
|
2386
|
+
deletedAt: _zod.z.coerce.date().optional(),
|
|
2387
|
+
body: _zod.z.string()
|
|
2388
|
+
});
|
|
2389
|
+
var DocumentationCommentThread = _zod.z.object({
|
|
2390
|
+
id: _zod.z.string(),
|
|
2391
|
+
roomId: _zod.z.string(),
|
|
2392
|
+
pagePersistentId: _zod.z.string(),
|
|
2393
|
+
brandId: _zod.z.string(),
|
|
2394
|
+
designSystemVersionId: _zod.z.string(),
|
|
2395
|
+
designSystemId: _zod.z.string(),
|
|
2396
|
+
blockId: _zod.z.string().optional(),
|
|
2397
|
+
resolved: _zod.z.boolean(),
|
|
2398
|
+
createdAt: _zod.z.coerce.date(),
|
|
2399
|
+
updatedAt: _zod.z.coerce.date()
|
|
2400
|
+
});
|
|
2344
2401
|
var ElementViewBaseColumnType = _zod.z.enum(["Name", "Description", "Value", "UpdatedAt"]);
|
|
2345
2402
|
var ElementViewColumnType = _zod.z.union([
|
|
2346
2403
|
_zod.z.literal("BaseProperty"),
|
|
@@ -2461,6 +2518,9 @@ var WorkspaceProfile = _zod.z.object({
|
|
|
2461
2518
|
avatar: nullishToOptional(_zod.z.string()),
|
|
2462
2519
|
billingDetails: nullishToOptional(BillingDetails)
|
|
2463
2520
|
});
|
|
2521
|
+
var WorkspaceProfileUpdate = WorkspaceProfile.omit({
|
|
2522
|
+
avatar: true
|
|
2523
|
+
});
|
|
2464
2524
|
var Workspace = _zod.z.object({
|
|
2465
2525
|
id: _zod.z.string(),
|
|
2466
2526
|
profile: WorkspaceProfile,
|
|
@@ -2474,6 +2534,13 @@ var WorkspaceWithDesignSystems = _zod.z.object({
|
|
|
2474
2534
|
workspace: Workspace,
|
|
2475
2535
|
designSystems: _zod.z.array(DesignSystem)
|
|
2476
2536
|
});
|
|
2537
|
+
var WorkspaceConfigurationUpdate = _zod.z.object({
|
|
2538
|
+
id: _zod.z.string(),
|
|
2539
|
+
ipWhitelist: WorkspaceIpSettings.optional(),
|
|
2540
|
+
sso: SsoProvider.optional(),
|
|
2541
|
+
npmRegistrySettings: NpmRegistryConfig.optional(),
|
|
2542
|
+
profile: WorkspaceProfileUpdate.optional()
|
|
2543
|
+
});
|
|
2477
2544
|
var WorkspaceContext = _zod.z.object({
|
|
2478
2545
|
workspaceId: _zod.z.string(),
|
|
2479
2546
|
product: ProductCodeSchema,
|
|
@@ -2927,6 +2994,26 @@ var ExternalOAuthRequest = _zod.z.object({
|
|
|
2927
2994
|
state: _zod.z.string(),
|
|
2928
2995
|
createdAt: _zod.z.coerce.date()
|
|
2929
2996
|
});
|
|
2997
|
+
var GitOrganization = _zod.z.object({
|
|
2998
|
+
id: _zod.z.string(),
|
|
2999
|
+
name: _zod.z.string(),
|
|
3000
|
+
url: _zod.z.string()
|
|
3001
|
+
});
|
|
3002
|
+
var GitProject = _zod.z.object({
|
|
3003
|
+
id: _zod.z.string(),
|
|
3004
|
+
name: _zod.z.string(),
|
|
3005
|
+
url: _zod.z.string()
|
|
3006
|
+
});
|
|
3007
|
+
var GitRepository = _zod.z.object({
|
|
3008
|
+
id: _zod.z.string(),
|
|
3009
|
+
name: _zod.z.string(),
|
|
3010
|
+
url: _zod.z.string(),
|
|
3011
|
+
defaultBranch: _zod.z.string()
|
|
3012
|
+
});
|
|
3013
|
+
var GitBranch = _zod.z.object({
|
|
3014
|
+
name: _zod.z.string(),
|
|
3015
|
+
lastCommitId: _zod.z.string()
|
|
3016
|
+
});
|
|
2930
3017
|
var IntegrationDesignSystem = _zod.z.object({
|
|
2931
3018
|
designSystemId: _zod.z.string(),
|
|
2932
3019
|
brandId: _zod.z.string(),
|
|
@@ -2939,7 +3026,10 @@ var IntegrationCredentialsProfile = _zod.z.object({
|
|
|
2939
3026
|
id: _zod.z.string(),
|
|
2940
3027
|
email: _zod.z.string().optional(),
|
|
2941
3028
|
handle: _zod.z.string().optional(),
|
|
2942
|
-
|
|
3029
|
+
type: _zod.z.string().optional(),
|
|
3030
|
+
avatarUrl: _zod.z.string().optional(),
|
|
3031
|
+
organization: _zod.z.string().optional(),
|
|
3032
|
+
installation: _zod.z.string().optional()
|
|
2943
3033
|
});
|
|
2944
3034
|
var IntegrationCredentials = _zod.z.object({
|
|
2945
3035
|
id: _zod.z.string(),
|
|
@@ -4173,6 +4263,36 @@ function documentationPageToDTOV1(page, pagePathMap) {
|
|
|
4173
4263
|
};
|
|
4174
4264
|
}
|
|
4175
4265
|
|
|
4266
|
+
// src/api/conversion/integrations/git.ts
|
|
4267
|
+
function gitOrganizationToDto(org) {
|
|
4268
|
+
return {
|
|
4269
|
+
id: org.id,
|
|
4270
|
+
name: org.name,
|
|
4271
|
+
url: org.url
|
|
4272
|
+
};
|
|
4273
|
+
}
|
|
4274
|
+
function gitProjectToDto(project) {
|
|
4275
|
+
return {
|
|
4276
|
+
id: project.id,
|
|
4277
|
+
name: project.name,
|
|
4278
|
+
url: project.url
|
|
4279
|
+
};
|
|
4280
|
+
}
|
|
4281
|
+
function gitRepositoryToDto(repo) {
|
|
4282
|
+
return {
|
|
4283
|
+
id: repo.id,
|
|
4284
|
+
name: repo.name,
|
|
4285
|
+
url: repo.url,
|
|
4286
|
+
defaultBranch: repo.defaultBranch
|
|
4287
|
+
};
|
|
4288
|
+
}
|
|
4289
|
+
function gitBranchToDto(branch) {
|
|
4290
|
+
return {
|
|
4291
|
+
name: branch.name,
|
|
4292
|
+
lastCommitId: branch.lastCommitId
|
|
4293
|
+
};
|
|
4294
|
+
}
|
|
4295
|
+
|
|
4176
4296
|
// src/api/conversion/integrations/integration.ts
|
|
4177
4297
|
function integrationToDto(integration) {
|
|
4178
4298
|
if (integration.integrationCredentials) {
|
|
@@ -4281,6 +4401,9 @@ var DTOUserNotificationSettingsResponse = _zod.z.object({
|
|
|
4281
4401
|
notificationSettings: UserNotificationSettings
|
|
4282
4402
|
});
|
|
4283
4403
|
|
|
4404
|
+
// src/api/payloads/users/profile/update.ts
|
|
4405
|
+
var DTOUserProfileUpdatePayload = UserProfileUpdate;
|
|
4406
|
+
|
|
4284
4407
|
// src/api/payloads/workspaces/workspace-configuration.ts
|
|
4285
4408
|
|
|
4286
4409
|
var prohibitedSsoKeys = ["providerId", "metadataXml", "emailDomains"];
|
|
@@ -4970,6 +5093,35 @@ var DTOLiveblocksAuthResponse = _zod.z.object({
|
|
|
4970
5093
|
token: _zod.z.string()
|
|
4971
5094
|
});
|
|
4972
5095
|
|
|
5096
|
+
// src/api/dto/users/profile/update.ts
|
|
5097
|
+
|
|
5098
|
+
var DTOUserProfileUpdateResponse = _zod.z.object({
|
|
5099
|
+
user: User
|
|
5100
|
+
});
|
|
5101
|
+
|
|
5102
|
+
// src/api/dto/workspaces/git.ts
|
|
5103
|
+
|
|
5104
|
+
var DTOGitOrganization = _zod.z.object({
|
|
5105
|
+
id: _zod.z.string(),
|
|
5106
|
+
name: _zod.z.string(),
|
|
5107
|
+
url: _zod.z.string()
|
|
5108
|
+
});
|
|
5109
|
+
var DTOGitProject = _zod.z.object({
|
|
5110
|
+
id: _zod.z.string(),
|
|
5111
|
+
name: _zod.z.string(),
|
|
5112
|
+
url: _zod.z.string()
|
|
5113
|
+
});
|
|
5114
|
+
var DTOGitRepository = _zod.z.object({
|
|
5115
|
+
id: _zod.z.string(),
|
|
5116
|
+
name: _zod.z.string(),
|
|
5117
|
+
url: _zod.z.string(),
|
|
5118
|
+
defaultBranch: _zod.z.string()
|
|
5119
|
+
});
|
|
5120
|
+
var DTOGitBranch = _zod.z.object({
|
|
5121
|
+
name: _zod.z.string(),
|
|
5122
|
+
lastCommitId: _zod.z.string()
|
|
5123
|
+
});
|
|
5124
|
+
|
|
4973
5125
|
// src/api/dto/workspaces/integrations.ts
|
|
4974
5126
|
|
|
4975
5127
|
var DTOIntegration = _zod.z.object({
|
|
@@ -8940,5 +9092,15 @@ function mapByUnique2(items, keyFn) {
|
|
|
8940
9092
|
|
|
8941
9093
|
|
|
8942
9094
|
|
|
8943
|
-
exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; 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.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; 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.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupStructureV2 = DTODocumentationGroupStructureV2; 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.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.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageStructureV2 = DTODocumentationPageStructureV2; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; 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.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; exports.DTOFigmaNodeRenderInput = DTOFigmaNodeRenderInput; exports.DTOGetBlockDefinitionsOutput = DTOGetBlockDefinitionsOutput; exports.DTOGetDocumentationPageAnchorsResponse = DTOGetDocumentationPageAnchorsResponse; exports.DTOIntegration = DTOIntegration; 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.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationElementsToHierarchyDto = documentationElementsToHierarchyDto; exports.documentationHierarchyToYjs = documentationHierarchyToYjs; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.documentationPagesToStructureDTOV2 = documentationPagesToStructureDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.elementGroupsToDocumentationGroupStructureDTOV2 = elementGroupsToDocumentationGroupStructureDTOV2; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pmSchema = pmSchema; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
|
|
9095
|
+
|
|
9096
|
+
|
|
9097
|
+
|
|
9098
|
+
|
|
9099
|
+
|
|
9100
|
+
|
|
9101
|
+
|
|
9102
|
+
|
|
9103
|
+
|
|
9104
|
+
|
|
9105
|
+
exports.BlockDefinitionUtils = BlockDefinitionUtils; exports.BlockParsingUtils = BlockParsingUtils; 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.DTODeleteDocumentationGroupInput = DTODeleteDocumentationGroupInput; exports.DTODeleteDocumentationPageInputV2 = DTODeleteDocumentationPageInputV2; exports.DTODeleteDocumentationTabGroupInput = DTODeleteDocumentationTabGroupInput; exports.DTODeleteElementPropertyDefinitionInputV2 = DTODeleteElementPropertyDefinitionInputV2; exports.DTODesignSystem = DTODesignSystem; exports.DTODesignSystemVersion = DTODesignSystemVersion; exports.DTODesignSystemVersionCreationResponse = DTODesignSystemVersionCreationResponse; exports.DTODesignSystemVersionGetResponse = DTODesignSystemVersionGetResponse; exports.DTODesignSystemVersionJobStatusResponse = DTODesignSystemVersionJobStatusResponse; exports.DTODesignSystemVersionJobsResponse = DTODesignSystemVersionJobsResponse; exports.DTODesignSystemVersionsListResponse = DTODesignSystemVersionsListResponse; 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.DTODocumentationGroupStructureV1 = DTODocumentationGroupStructureV1; exports.DTODocumentationGroupStructureV2 = DTODocumentationGroupStructureV2; 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.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.DTODocumentationPageRoomHeaderData = DTODocumentationPageRoomHeaderData; exports.DTODocumentationPageRoomHeaderDataUpdate = DTODocumentationPageRoomHeaderDataUpdate; exports.DTODocumentationPageStructureV2 = DTODocumentationPageStructureV2; exports.DTODocumentationPageUpdateActionInputV2 = DTODocumentationPageUpdateActionInputV2; exports.DTODocumentationPageUpdateActionOutputV2 = DTODocumentationPageUpdateActionOutputV2; exports.DTODocumentationPageV2 = DTODocumentationPageV2; exports.DTODocumentationTabCreateActionInputV2 = DTODocumentationTabCreateActionInputV2; exports.DTODocumentationTabCreateActionOutputV2 = DTODocumentationTabCreateActionOutputV2; exports.DTODocumentationTabGroupDeleteActionInputV2 = DTODocumentationTabGroupDeleteActionInputV2; exports.DTODocumentationTabGroupDeleteActionOutputV2 = DTODocumentationTabGroupDeleteActionOutputV2; 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.DTOExporterProperty = DTOExporterProperty; exports.DTOExporterPropertyListResponse = DTOExporterPropertyListResponse; exports.DTOFigmaNode = DTOFigmaNode; exports.DTOFigmaNodeData = DTOFigmaNodeData; exports.DTOFigmaNodeOrigin = DTOFigmaNodeOrigin; exports.DTOFigmaNodeRenderActionInput = DTOFigmaNodeRenderActionInput; exports.DTOFigmaNodeRenderActionOutput = DTOFigmaNodeRenderActionOutput; 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.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.DTOPropertyDefinitionCreateActionInputV2 = DTOPropertyDefinitionCreateActionInputV2; exports.DTOPropertyDefinitionCreateActionOutputV2 = DTOPropertyDefinitionCreateActionOutputV2; exports.DTOPropertyDefinitionDeleteActionInputV2 = DTOPropertyDefinitionDeleteActionInputV2; exports.DTOPropertyDefinitionDeleteActionOutputV2 = DTOPropertyDefinitionDeleteActionOutputV2; exports.DTOPropertyDefinitionUpdateActionInputV2 = DTOPropertyDefinitionUpdateActionInputV2; exports.DTOPropertyDefinitionUpdateActionOutputV2 = DTOPropertyDefinitionUpdateActionOutputV2; exports.DTOUpdateDocumentationGroupInput = DTOUpdateDocumentationGroupInput; exports.DTOUpdateDocumentationPageInputV2 = DTOUpdateDocumentationPageInputV2; exports.DTOUpdateElementPropertyDefinitionInputV2 = DTOUpdateElementPropertyDefinitionInputV2; exports.DTOUpdateUserNotificationSettingsPayload = DTOUpdateUserNotificationSettingsPayload; exports.DTOUpdateVersionInput = DTOUpdateVersionInput; exports.DTOUserNotificationSettingsResponse = DTOUserNotificationSettingsResponse; exports.DTOUserProfileUpdatePayload = DTOUserProfileUpdatePayload; exports.DTOUserProfileUpdateResponse = DTOUserProfileUpdateResponse; exports.DTOUserWorkspaceMembership = DTOUserWorkspaceMembership; exports.DTOUserWorkspaceMembershipsResponse = DTOUserWorkspaceMembershipsResponse; exports.DTOWorkspace = DTOWorkspace; exports.DTOWorkspaceIntegrationOauthInput = DTOWorkspaceIntegrationOauthInput; exports.DTOWorkspaceIntegrationPATInput = DTOWorkspaceIntegrationPATInput; exports.DTOWorkspaceRole = DTOWorkspaceRole; exports.DocumentationHierarchySettings = DocumentationHierarchySettings; exports.DocumentationPageEditorModel = DocumentationPageEditorModel; exports.DocumentationPageV1DTO = DocumentationPageV1DTO; exports.ListTreeBuilder = ListTreeBuilder; exports.NpmRegistryInput = NpmRegistryInput; exports.ObjectMeta = ObjectMeta2; exports.PageBlockEditorModel = PageBlockEditorModel; exports.PageSectionEditorModel = PageSectionEditorModel; exports.VersionSQSPayload = VersionSQSPayload; exports.WorkspaceConfigurationPayload = WorkspaceConfigurationPayload; exports.applyPrivacyConfigurationToNestedItems = applyPrivacyConfigurationToNestedItems; exports.blockToProsemirrorNode = blockToProsemirrorNode; exports.buildDocPagePublishPaths = buildDocPagePublishPaths; exports.calculateElementParentChain = calculateElementParentChain; exports.documentationElementsToHierarchyDto = documentationElementsToHierarchyDto; exports.documentationHierarchyToYjs = documentationHierarchyToYjs; exports.documentationItemConfigurationToDTOV1 = documentationItemConfigurationToDTOV1; exports.documentationItemConfigurationToDTOV2 = documentationItemConfigurationToDTOV2; exports.documentationPagesFixedConfigurationToDTOV1 = documentationPagesFixedConfigurationToDTOV1; exports.documentationPagesFixedConfigurationToDTOV2 = documentationPagesFixedConfigurationToDTOV2; exports.documentationPagesToDTOV1 = documentationPagesToDTOV1; exports.documentationPagesToDTOV2 = documentationPagesToDTOV2; exports.documentationPagesToStructureDTOV2 = documentationPagesToStructureDTOV2; exports.elementGroupsToDocumentationGroupDTOV1 = elementGroupsToDocumentationGroupDTOV1; exports.elementGroupsToDocumentationGroupDTOV2 = elementGroupsToDocumentationGroupDTOV2; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV1 = elementGroupsToDocumentationGroupFixedConfigurationDTOV1; exports.elementGroupsToDocumentationGroupFixedConfigurationDTOV2 = elementGroupsToDocumentationGroupFixedConfigurationDTOV2; exports.elementGroupsToDocumentationGroupStructureDTOV1 = elementGroupsToDocumentationGroupStructureDTOV1; exports.elementGroupsToDocumentationGroupStructureDTOV2 = elementGroupsToDocumentationGroupStructureDTOV2; exports.getDtoDefaultItemConfigurationV1 = getDtoDefaultItemConfigurationV1; exports.getDtoDefaultItemConfigurationV2 = getDtoDefaultItemConfigurationV2; exports.getMockPageBlockDefinitions = getMockPageBlockDefinitions; exports.gitBranchToDto = gitBranchToDto; exports.gitOrganizationToDto = gitOrganizationToDto; exports.gitProjectToDto = gitProjectToDto; exports.gitRepositoryToDto = gitRepositoryToDto; exports.integrationToDto = integrationToDto; exports.itemConfigurationToYjs = itemConfigurationToYjs; exports.pageToProsemirrorDoc = pageToProsemirrorDoc; exports.pageToYXmlFragment = pageToYXmlFragment; exports.pmSchema = pmSchema; exports.prosemirrorDocToPage = prosemirrorDocToPage; exports.prosemirrorNodeToSection = prosemirrorNodeToSection; exports.prosemirrorNodesToBlocks = prosemirrorNodesToBlocks; exports.serializeAsCustomBlock = serializeAsCustomBlock; exports.shallowProsemirrorNodeToBlock = shallowProsemirrorNodeToBlock; exports.validateDesignSystemVersion = validateDesignSystemVersion; exports.validateSsoPayload = validateSsoPayload; exports.yDocToPage = yDocToPage; exports.yXmlFragmentToPage = yXmlFragmentToPage; exports.yjsToDocumentationHierarchy = yjsToDocumentationHierarchy; exports.yjsToItemConfiguration = yjsToItemConfiguration;
|
|
8944
9106
|
//# sourceMappingURL=index.js.map
|