@supernova-studio/client 1.52.0 → 1.52.2
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 +938 -45
- package/dist/index.d.ts +938 -45
- package/dist/index.js +106 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +186 -89
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4541,9 +4541,33 @@ var UserMinified = z139.object({
|
|
|
4541
4541
|
var LiveblocksNotificationSettings = z140.object({
|
|
4542
4542
|
sendCommentNotificationEmails: z140.boolean()
|
|
4543
4543
|
});
|
|
4544
|
-
var
|
|
4545
|
-
|
|
4544
|
+
var NotificationType = z140.enum([
|
|
4545
|
+
"DesignDocumentComment",
|
|
4546
|
+
"ChatMention",
|
|
4547
|
+
"ProjectDocumentComment",
|
|
4548
|
+
"ProjectInvitation"
|
|
4549
|
+
]);
|
|
4550
|
+
var NotificationChannel = z140.enum(["Email", "InApp"]);
|
|
4551
|
+
var NotificationSettingOptions = z140.object({
|
|
4552
|
+
enabled: z140.boolean(),
|
|
4553
|
+
email: z140.boolean()
|
|
4554
|
+
});
|
|
4555
|
+
var NotificationSettings = z140.object({
|
|
4556
|
+
[NotificationType.enum.ChatMention]: NotificationSettingOptions,
|
|
4557
|
+
[NotificationType.enum.ProjectDocumentComment]: NotificationSettingOptions,
|
|
4558
|
+
[NotificationType.enum.ProjectInvitation]: NotificationSettingOptions,
|
|
4559
|
+
[NotificationType.enum.DesignDocumentComment]: NotificationSettingOptions.omit({
|
|
4560
|
+
enabled: true
|
|
4561
|
+
})
|
|
4546
4562
|
});
|
|
4563
|
+
var UserNotificationSettings = NotificationSettings.merge(
|
|
4564
|
+
z140.object({
|
|
4565
|
+
/**
|
|
4566
|
+
* @deprecated Use granular notification settings instead.
|
|
4567
|
+
*/
|
|
4568
|
+
liveblocksNotificationSettings: LiveblocksNotificationSettings
|
|
4569
|
+
})
|
|
4570
|
+
);
|
|
4547
4571
|
var UserOnboardingDepartment = z141.enum(["Design", "Engineering", "Product", "Brand", "Other"]);
|
|
4548
4572
|
var UserOnboardingJobLevel = z141.enum(["Executive", "Manager", "IndividualContributor", "Other"]);
|
|
4549
4573
|
var userThemePresets = [
|
|
@@ -7431,6 +7455,11 @@ var DTOWorkspaceResponse = z247.object({
|
|
|
7431
7455
|
workspace: DTOWorkspace
|
|
7432
7456
|
});
|
|
7433
7457
|
|
|
7458
|
+
// src/api/dto/notifications/settings.ts
|
|
7459
|
+
var DTOUserNotificationSettings = UserNotificationSettings;
|
|
7460
|
+
var DTONotificationType = NotificationType;
|
|
7461
|
+
var DTONotificationChannel = NotificationChannel;
|
|
7462
|
+
|
|
7434
7463
|
// src/api/dto/workspaces/membership.ts
|
|
7435
7464
|
var DTOUserWorkspaceMembership = z248.object({
|
|
7436
7465
|
/** Workspace the user is a member of */
|
|
@@ -7455,7 +7484,8 @@ var DTOWorkspaceMember = z248.object({
|
|
|
7455
7484
|
effectiveRole: DTOWorkspaceRole,
|
|
7456
7485
|
seatType: DTOWorkspaceSeatType,
|
|
7457
7486
|
effectiveSeatType: DTOWorkspaceSeatType,
|
|
7458
|
-
isDeactivated: z248.boolean()
|
|
7487
|
+
isDeactivated: z248.boolean(),
|
|
7488
|
+
notificationSettings: DTOUserNotificationSettings
|
|
7459
7489
|
});
|
|
7460
7490
|
var DTOUserWorkspaceMembershipsResponse = z248.object({
|
|
7461
7491
|
membership: z248.array(DTOUserWorkspaceMembership)
|
|
@@ -9324,6 +9354,9 @@ var DTOUpdateForgeProjectMember = DTOCreateForgeProjectMember;
|
|
|
9324
9354
|
var DTORemoveForgeProjectMember = DTOForgeProjectMember.pick({
|
|
9325
9355
|
userId: true
|
|
9326
9356
|
});
|
|
9357
|
+
var DTOForgeProjectMemberListQuery = z311.object({
|
|
9358
|
+
includeImplicitMembers: z311.boolean().optional()
|
|
9359
|
+
});
|
|
9327
9360
|
var DTOForgeProjectMembersListResponse = z311.object({
|
|
9328
9361
|
members: z311.array(DTOForgeProjectMember),
|
|
9329
9362
|
invitations: z311.array(DTOForgeProjectInvitation)
|
|
@@ -9835,7 +9868,7 @@ var DTOFeatureIterationArtifactsDiff = z320.object({
|
|
|
9835
9868
|
deleted: z320.array(DTOFeatureArtifact.shape.key).optional().default([])
|
|
9836
9869
|
});
|
|
9837
9870
|
var DTOFeatureIterationState = z320.enum(["InProgress", "Success", "Error", "Timeout"]);
|
|
9838
|
-
var DTOFeatureIterationErrorType = z320.enum(["PackageInstall", "Build", "Compile", "Unknown"]);
|
|
9871
|
+
var DTOFeatureIterationErrorType = z320.enum(["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]);
|
|
9839
9872
|
var DTOFeatureIterationError = z320.object({
|
|
9840
9873
|
description: z320.string(),
|
|
9841
9874
|
type: DTOFeatureIterationErrorType
|
|
@@ -10299,7 +10332,8 @@ var DTOThreadMessageFinalizeInput = z325.object({
|
|
|
10299
10332
|
creditsSpend: DTOBillingCreditsSpendInput.optional()
|
|
10300
10333
|
});
|
|
10301
10334
|
var DTOThreadMessageRetryInput = z325.object({
|
|
10302
|
-
agentMessageId: Id
|
|
10335
|
+
agentMessageId: Id,
|
|
10336
|
+
runtimeError: z325.string().optional()
|
|
10303
10337
|
});
|
|
10304
10338
|
var DTOThreadMessageUpdateInput = DTOThreadMessage.pick({
|
|
10305
10339
|
id: true
|
|
@@ -10962,13 +10996,15 @@ var DTOSandboxTemplateBuildCreateInput = z342.object({
|
|
|
10962
10996
|
workspaceId: z342.string(),
|
|
10963
10997
|
designSystemId: z342.string(),
|
|
10964
10998
|
name: z342.string(),
|
|
10965
|
-
version: z342.string()
|
|
10999
|
+
version: z342.string(),
|
|
11000
|
+
isExistingVersionUpdateAllowed: z342.boolean()
|
|
10966
11001
|
});
|
|
10967
11002
|
var DTOSandboxTemplateBuildCreateResponse = z342.object({
|
|
10968
11003
|
/** @deprecated use domain + build.dockerImagePath */
|
|
10969
|
-
dockerUrl: z342.string(),
|
|
11004
|
+
dockerUrl: z342.string().optional(),
|
|
10970
11005
|
dockerRegistryDomain: z342.string(),
|
|
10971
|
-
|
|
11006
|
+
/** @deprecated use docker-login endpoint */
|
|
11007
|
+
dockerAccessToken: z342.string().optional(),
|
|
10972
11008
|
build: DTOSandboxTemplateBuild
|
|
10973
11009
|
});
|
|
10974
11010
|
var DTOSandboxTemplateBuildFinalizeResponse = z342.object({
|
|
@@ -11138,6 +11174,58 @@ var DTOTrailEventClientCreate = z345.discriminatedUnion("type", [
|
|
|
11138
11174
|
z345.object({ type: z345.literal("DocumentCommentSent"), payload: DTOTrailEventDocumentCommentSentPayload })
|
|
11139
11175
|
]).and(DTOTrailEventBase.omit({ id: true, createdAt: true, updatedAt: true }));
|
|
11140
11176
|
|
|
11177
|
+
// src/api/dto/notifications/notifications.ts
|
|
11178
|
+
import { z as z346 } from "zod";
|
|
11179
|
+
var DTONotificationChatMentionPayload = z346.object({
|
|
11180
|
+
messageAuthorId: z346.string(),
|
|
11181
|
+
messageText: z346.string(),
|
|
11182
|
+
messageId: z346.string(),
|
|
11183
|
+
parentMessageId: z346.string().optional(),
|
|
11184
|
+
workspaceId: z346.string(),
|
|
11185
|
+
projectId: z346.string(),
|
|
11186
|
+
subjectType: z346.string(),
|
|
11187
|
+
threadSubjectId: z346.string(),
|
|
11188
|
+
subjectName: z346.string()
|
|
11189
|
+
});
|
|
11190
|
+
var DTONotificationProjectInvitationPayload = z346.object({
|
|
11191
|
+
workspaceId: z346.string(),
|
|
11192
|
+
projectId: z346.string(),
|
|
11193
|
+
projectTitle: z346.string(),
|
|
11194
|
+
invitedByUserId: z346.string(),
|
|
11195
|
+
invitationRole: z346.string()
|
|
11196
|
+
});
|
|
11197
|
+
var DTONotificationProjectDocumentCommentPayload = z346.object({
|
|
11198
|
+
documentId: z346.string(),
|
|
11199
|
+
entityTitle: z346.string(),
|
|
11200
|
+
projectId: z346.string(),
|
|
11201
|
+
workspaceId: z346.string(),
|
|
11202
|
+
threadId: z346.string(),
|
|
11203
|
+
commentId: z346.string(),
|
|
11204
|
+
commentCreatedAt: z346.string(),
|
|
11205
|
+
commentAuthorId: z346.string(),
|
|
11206
|
+
commentBody: z346.string()
|
|
11207
|
+
});
|
|
11208
|
+
var DTONotificationBase = z346.object({
|
|
11209
|
+
userId: z346.string(),
|
|
11210
|
+
subjectId: z346.string(),
|
|
11211
|
+
roomId: z346.string().optional(),
|
|
11212
|
+
workspaceId: z346.string()
|
|
11213
|
+
});
|
|
11214
|
+
var DTONotificationCreateInput = z346.discriminatedUnion("type", [
|
|
11215
|
+
z346.object({
|
|
11216
|
+
type: z346.literal(DTONotificationType.enum.ChatMention),
|
|
11217
|
+
activityData: DTONotificationChatMentionPayload
|
|
11218
|
+
}),
|
|
11219
|
+
z346.object({
|
|
11220
|
+
type: z346.literal(DTONotificationType.enum.ProjectInvitation),
|
|
11221
|
+
activityData: DTONotificationProjectInvitationPayload
|
|
11222
|
+
}),
|
|
11223
|
+
z346.object({
|
|
11224
|
+
type: z346.literal(DTONotificationType.enum.ProjectDocumentComment),
|
|
11225
|
+
activityData: DTONotificationProjectDocumentCommentPayload
|
|
11226
|
+
})
|
|
11227
|
+
]).and(DTONotificationBase);
|
|
11228
|
+
|
|
11141
11229
|
// src/utils/figma.ts
|
|
11142
11230
|
var figmaFileIdRegex = /^[0-9a-zA-Z]{22,128}$/;
|
|
11143
11231
|
var nodeIdRegex = /^\d+-\d+$/;
|
|
@@ -11356,13 +11444,13 @@ var ExportersEndpoint = class {
|
|
|
11356
11444
|
};
|
|
11357
11445
|
|
|
11358
11446
|
// src/api/endpoints/codegen/jobs.ts
|
|
11359
|
-
import { z as
|
|
11447
|
+
import { z as z347 } from "zod";
|
|
11360
11448
|
var ExporterJobsEndpoint = class {
|
|
11361
11449
|
constructor(requestExecutor) {
|
|
11362
11450
|
this.requestExecutor = requestExecutor;
|
|
11363
11451
|
}
|
|
11364
11452
|
list(workspaceId) {
|
|
11365
|
-
return this.requestExecutor.json(`/codegen/workspaces/${workspaceId}/jobs`,
|
|
11453
|
+
return this.requestExecutor.json(`/codegen/workspaces/${workspaceId}/jobs`, z347.any());
|
|
11366
11454
|
}
|
|
11367
11455
|
get(workspaceId, jobId) {
|
|
11368
11456
|
return this.requestExecutor.json(`/codegen/workspaces/${workspaceId}/jobs/${jobId}`, DTOExportJobResponseLegacy);
|
|
@@ -11420,7 +11508,7 @@ var CodegenEndpoint = class {
|
|
|
11420
11508
|
};
|
|
11421
11509
|
|
|
11422
11510
|
// src/api/endpoints/design-system/versions/brands.ts
|
|
11423
|
-
import { z as
|
|
11511
|
+
import { z as z348 } from "zod";
|
|
11424
11512
|
var BrandsEndpoint = class {
|
|
11425
11513
|
constructor(requestExecutor) {
|
|
11426
11514
|
this.requestExecutor = requestExecutor;
|
|
@@ -11454,7 +11542,7 @@ var BrandsEndpoint = class {
|
|
|
11454
11542
|
});
|
|
11455
11543
|
}
|
|
11456
11544
|
delete(dsId, vId, brandId) {
|
|
11457
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/brands/${brandId}`,
|
|
11545
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${vId}/brands/${brandId}`, z348.any(), {
|
|
11458
11546
|
method: "DELETE"
|
|
11459
11547
|
});
|
|
11460
11548
|
}
|
|
@@ -11730,7 +11818,7 @@ var ImportJobsEndpoint = class {
|
|
|
11730
11818
|
};
|
|
11731
11819
|
|
|
11732
11820
|
// src/api/endpoints/design-system/versions/overrides.ts
|
|
11733
|
-
import { z as
|
|
11821
|
+
import { z as z349 } from "zod";
|
|
11734
11822
|
var OverridesEndpoint = class {
|
|
11735
11823
|
constructor(requestExecutor) {
|
|
11736
11824
|
this.requestExecutor = requestExecutor;
|
|
@@ -11738,7 +11826,7 @@ var OverridesEndpoint = class {
|
|
|
11738
11826
|
create(dsId, versionId, themeId, body) {
|
|
11739
11827
|
return this.requestExecutor.json(
|
|
11740
11828
|
`/design-systems/${dsId}/versions/${versionId}/themes/${themeId}/overrides`,
|
|
11741
|
-
|
|
11829
|
+
z349.any(),
|
|
11742
11830
|
{
|
|
11743
11831
|
method: "POST",
|
|
11744
11832
|
body
|
|
@@ -11748,7 +11836,7 @@ var OverridesEndpoint = class {
|
|
|
11748
11836
|
};
|
|
11749
11837
|
|
|
11750
11838
|
// src/api/endpoints/design-system/versions/property-definitions.ts
|
|
11751
|
-
import { z as
|
|
11839
|
+
import { z as z350 } from "zod";
|
|
11752
11840
|
var ElementPropertyDefinitionsEndpoint = class {
|
|
11753
11841
|
constructor(requestExecutor) {
|
|
11754
11842
|
this.requestExecutor = requestExecutor;
|
|
@@ -11776,7 +11864,7 @@ var ElementPropertyDefinitionsEndpoint = class {
|
|
|
11776
11864
|
delete(designSystemId, versionId, defId) {
|
|
11777
11865
|
return this.requestExecutor.json(
|
|
11778
11866
|
`/design-systems/${designSystemId}/versions/${versionId}/element-properties/definitions/${defId}`,
|
|
11779
|
-
|
|
11867
|
+
z350.any(),
|
|
11780
11868
|
{ method: "DELETE" }
|
|
11781
11869
|
);
|
|
11782
11870
|
}
|
|
@@ -11815,7 +11903,7 @@ var VersionStatsEndpoint = class {
|
|
|
11815
11903
|
};
|
|
11816
11904
|
|
|
11817
11905
|
// src/api/endpoints/design-system/versions/themes.ts
|
|
11818
|
-
import { z as
|
|
11906
|
+
import { z as z351 } from "zod";
|
|
11819
11907
|
var ThemesEndpoint = class {
|
|
11820
11908
|
constructor(requestExecutor) {
|
|
11821
11909
|
this.requestExecutor = requestExecutor;
|
|
@@ -11838,7 +11926,7 @@ var ThemesEndpoint = class {
|
|
|
11838
11926
|
});
|
|
11839
11927
|
}
|
|
11840
11928
|
delete(dsId, versionId, themeId) {
|
|
11841
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${versionId}/themes/${themeId}`,
|
|
11929
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/${versionId}/themes/${themeId}`, z351.any(), {
|
|
11842
11930
|
method: "DELETE"
|
|
11843
11931
|
});
|
|
11844
11932
|
}
|
|
@@ -12011,7 +12099,7 @@ var DesignSystemContactsEndpoint = class {
|
|
|
12011
12099
|
};
|
|
12012
12100
|
|
|
12013
12101
|
// src/api/endpoints/design-system/design-systems.ts
|
|
12014
|
-
import { z as
|
|
12102
|
+
import { z as z355 } from "zod";
|
|
12015
12103
|
|
|
12016
12104
|
// src/api/endpoints/design-system/figma-node-structures.ts
|
|
12017
12105
|
var FigmaNodeStructuresEndpoint = class {
|
|
@@ -12088,7 +12176,7 @@ var DesignSystemPageRedirectsEndpoint = class {
|
|
|
12088
12176
|
};
|
|
12089
12177
|
|
|
12090
12178
|
// src/api/endpoints/design-system/sources.ts
|
|
12091
|
-
import { z as
|
|
12179
|
+
import { z as z352 } from "zod";
|
|
12092
12180
|
var DesignSystemSourcesEndpoint = class {
|
|
12093
12181
|
constructor(requestExecutor) {
|
|
12094
12182
|
this.requestExecutor = requestExecutor;
|
|
@@ -12106,7 +12194,7 @@ var DesignSystemSourcesEndpoint = class {
|
|
|
12106
12194
|
return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, DTODataSourceResponse);
|
|
12107
12195
|
}
|
|
12108
12196
|
delete(dsId, sourceId) {
|
|
12109
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`,
|
|
12197
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, z352.any(), { method: "DELETE" });
|
|
12110
12198
|
}
|
|
12111
12199
|
updateFigmaSource(dsId, sourceId, payload) {
|
|
12112
12200
|
return this.requestExecutor.json(`/design-systems/${dsId}/sources/${sourceId}`, DTODataSourceResponse, {
|
|
@@ -12149,7 +12237,7 @@ var DesignSystemSourcesEndpoint = class {
|
|
|
12149
12237
|
};
|
|
12150
12238
|
|
|
12151
12239
|
// src/api/endpoints/design-system/storybook.ts
|
|
12152
|
-
import { z as
|
|
12240
|
+
import { z as z353 } from "zod";
|
|
12153
12241
|
var StorybookEntriesEndpoint = class {
|
|
12154
12242
|
constructor(requestExecutor) {
|
|
12155
12243
|
this.requestExecutor = requestExecutor;
|
|
@@ -12167,14 +12255,14 @@ var StorybookEntriesEndpoint = class {
|
|
|
12167
12255
|
);
|
|
12168
12256
|
}
|
|
12169
12257
|
delete(dsId, entryId) {
|
|
12170
|
-
return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`,
|
|
12258
|
+
return this.requestExecutor.json(`/design-systems/${dsId}/versions/head/storybook/${entryId}`, z353.any(), {
|
|
12171
12259
|
method: "DELETE"
|
|
12172
12260
|
});
|
|
12173
12261
|
}
|
|
12174
12262
|
};
|
|
12175
12263
|
|
|
12176
12264
|
// src/api/endpoints/design-system/storybook-hosting.ts
|
|
12177
|
-
import { z as
|
|
12265
|
+
import { z as z354 } from "zod";
|
|
12178
12266
|
var StorybookHostingEndpoint = class {
|
|
12179
12267
|
constructor(requestExecutor) {
|
|
12180
12268
|
this.requestExecutor = requestExecutor;
|
|
@@ -12188,7 +12276,7 @@ var StorybookHostingEndpoint = class {
|
|
|
12188
12276
|
delete(dsId, storybookUploadId) {
|
|
12189
12277
|
return this.requestExecutor.json(
|
|
12190
12278
|
`/design-systems/${dsId}/storybook/${storybookUploadId}`,
|
|
12191
|
-
|
|
12279
|
+
z354.object({ ok: z354.boolean() }),
|
|
12192
12280
|
{
|
|
12193
12281
|
method: "DELETE"
|
|
12194
12282
|
}
|
|
@@ -12246,7 +12334,7 @@ var DesignSystemsEndpoint = class {
|
|
|
12246
12334
|
return this.requestExecutor.json(`/design-systems/${dsId}`, DTODesignSystemResponse);
|
|
12247
12335
|
}
|
|
12248
12336
|
delete(dsId) {
|
|
12249
|
-
return this.requestExecutor.json(`/design-systems/${dsId}`,
|
|
12337
|
+
return this.requestExecutor.json(`/design-systems/${dsId}`, z355.any(), { method: "DELETE" });
|
|
12250
12338
|
}
|
|
12251
12339
|
update(dsId, body) {
|
|
12252
12340
|
return this.requestExecutor.json(`/design-systems/${dsId}`, DTODesignSystemResponse, {
|
|
@@ -12698,7 +12786,7 @@ var ForgeProjectMembersEndpoint = class {
|
|
|
12698
12786
|
};
|
|
12699
12787
|
|
|
12700
12788
|
// src/api/endpoints/forge/projects.ts
|
|
12701
|
-
import
|
|
12789
|
+
import z356 from "zod";
|
|
12702
12790
|
var ForgeProjectsEndpoint = class {
|
|
12703
12791
|
constructor(requestExecutor) {
|
|
12704
12792
|
this.requestExecutor = requestExecutor;
|
|
@@ -12735,7 +12823,7 @@ var ForgeProjectsEndpoint = class {
|
|
|
12735
12823
|
);
|
|
12736
12824
|
}
|
|
12737
12825
|
action(workspaceId, projectId, body) {
|
|
12738
|
-
return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/projects/${projectId}/action`,
|
|
12826
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/projects/${projectId}/action`, z356.any(), {
|
|
12739
12827
|
body,
|
|
12740
12828
|
method: "POST"
|
|
12741
12829
|
});
|
|
@@ -12907,7 +12995,7 @@ var WorkspaceBillingEndpoint = class {
|
|
|
12907
12995
|
};
|
|
12908
12996
|
|
|
12909
12997
|
// src/api/endpoints/workspaces/chat-threads.ts
|
|
12910
|
-
import { z as
|
|
12998
|
+
import { z as z357 } from "zod";
|
|
12911
12999
|
var WorkspaceChatThreadsEndpoint = class {
|
|
12912
13000
|
constructor(requestExecutor) {
|
|
12913
13001
|
this.requestExecutor = requestExecutor;
|
|
@@ -12939,7 +13027,7 @@ var WorkspaceChatThreadsEndpoint = class {
|
|
|
12939
13027
|
);
|
|
12940
13028
|
}
|
|
12941
13029
|
delete(workspaceId, threadId) {
|
|
12942
|
-
return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/threads/${threadId}`,
|
|
13030
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/threads/${threadId}`, z357.any(), {
|
|
12943
13031
|
method: "DELETE"
|
|
12944
13032
|
});
|
|
12945
13033
|
}
|
|
@@ -12971,7 +13059,7 @@ var ChatThreadMessagesEndpoint = class {
|
|
|
12971
13059
|
);
|
|
12972
13060
|
}
|
|
12973
13061
|
score(workspaceId, threadId, body) {
|
|
12974
|
-
return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/threads/${threadId}/scores`,
|
|
13062
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/forge/threads/${threadId}/scores`, z357.any(), {
|
|
12975
13063
|
method: "POST",
|
|
12976
13064
|
body
|
|
12977
13065
|
});
|
|
@@ -12979,7 +13067,7 @@ var ChatThreadMessagesEndpoint = class {
|
|
|
12979
13067
|
};
|
|
12980
13068
|
|
|
12981
13069
|
// src/api/endpoints/workspaces/integrations.ts
|
|
12982
|
-
import { z as
|
|
13070
|
+
import { z as z358 } from "zod";
|
|
12983
13071
|
var WorkspaceIntegrationsEndpoint = class {
|
|
12984
13072
|
constructor(requestExecutor) {
|
|
12985
13073
|
this.requestExecutor = requestExecutor;
|
|
@@ -12988,7 +13076,7 @@ var WorkspaceIntegrationsEndpoint = class {
|
|
|
12988
13076
|
return this.requestExecutor.json(`/workspaces/${wsId}/integrations`, DTOIntegrationsGetListResponse);
|
|
12989
13077
|
}
|
|
12990
13078
|
delete(wsId, iId) {
|
|
12991
|
-
return this.requestExecutor.json(`/workspaces/${wsId}/integrations/${iId}`,
|
|
13079
|
+
return this.requestExecutor.json(`/workspaces/${wsId}/integrations/${iId}`, z358.unknown(), { method: "DELETE" });
|
|
12992
13080
|
}
|
|
12993
13081
|
};
|
|
12994
13082
|
|
|
@@ -13020,7 +13108,7 @@ var WorkspaceInvitationsEndpoint = class {
|
|
|
13020
13108
|
};
|
|
13021
13109
|
|
|
13022
13110
|
// src/api/endpoints/workspaces/members.ts
|
|
13023
|
-
import { z as
|
|
13111
|
+
import { z as z359 } from "zod";
|
|
13024
13112
|
var WorkspaceMembersEndpoint = class {
|
|
13025
13113
|
constructor(requestExecutor) {
|
|
13026
13114
|
this.requestExecutor = requestExecutor;
|
|
@@ -13037,7 +13125,7 @@ var WorkspaceMembersEndpoint = class {
|
|
|
13037
13125
|
});
|
|
13038
13126
|
}
|
|
13039
13127
|
invite(workspaceId, body) {
|
|
13040
|
-
return this.requestExecutor.json(`/workspaces/${workspaceId}/members`,
|
|
13128
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/members`, z359.any(), { method: "POST", body });
|
|
13041
13129
|
}
|
|
13042
13130
|
delete(workspaceId, userId) {
|
|
13043
13131
|
return this.requestExecutor.json(`/workspaces/${workspaceId}/members/${userId}`, DTOWorkspaceResponse, {
|
|
@@ -13066,7 +13154,7 @@ var WorkspaceNpmRegistryEndpoint = class {
|
|
|
13066
13154
|
};
|
|
13067
13155
|
|
|
13068
13156
|
// src/api/endpoints/workspaces/subscription.ts
|
|
13069
|
-
import { z as
|
|
13157
|
+
import { z as z360 } from "zod";
|
|
13070
13158
|
var WorkspaceSubscriptionEndpoint = class {
|
|
13071
13159
|
constructor(requestExecutor) {
|
|
13072
13160
|
this.requestExecutor = requestExecutor;
|
|
@@ -13077,7 +13165,7 @@ var WorkspaceSubscriptionEndpoint = class {
|
|
|
13077
13165
|
});
|
|
13078
13166
|
}
|
|
13079
13167
|
update(workspaceId, body) {
|
|
13080
|
-
return this.requestExecutor.json(`/workspaces/${workspaceId}/subscription`,
|
|
13168
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}/subscription`, z360.any(), {
|
|
13081
13169
|
method: "PUT",
|
|
13082
13170
|
body
|
|
13083
13171
|
});
|
|
@@ -13095,7 +13183,7 @@ var WorkspaceSubscriptionEndpoint = class {
|
|
|
13095
13183
|
};
|
|
13096
13184
|
|
|
13097
13185
|
// src/api/endpoints/workspaces/workspaces.ts
|
|
13098
|
-
import { z as
|
|
13186
|
+
import { z as z361 } from "zod";
|
|
13099
13187
|
var WorkspacesEndpoint = class {
|
|
13100
13188
|
constructor(requestExecutor) {
|
|
13101
13189
|
this.requestExecutor = requestExecutor;
|
|
@@ -13131,7 +13219,7 @@ var WorkspacesEndpoint = class {
|
|
|
13131
13219
|
return this.requestExecutor.json(`/workspaces/${workspaceId}`, DTOWorkspaceResponse, { method: "GET" });
|
|
13132
13220
|
}
|
|
13133
13221
|
delete(workspaceId) {
|
|
13134
|
-
return this.requestExecutor.json(`/workspaces/${workspaceId}`,
|
|
13222
|
+
return this.requestExecutor.json(`/workspaces/${workspaceId}`, z361.any(), { method: "DELETE" });
|
|
13135
13223
|
}
|
|
13136
13224
|
getPortalSettings(workspaceId) {
|
|
13137
13225
|
return this.requestExecutor.json(`/workspaces/${workspaceId}/portal/settings`, DTOPortalSettingsGetResponse, {
|
|
@@ -13289,9 +13377,9 @@ ${bodyText}`,
|
|
|
13289
13377
|
|
|
13290
13378
|
// src/api/transport/request-executor.ts
|
|
13291
13379
|
import fetch from "node-fetch";
|
|
13292
|
-
import { z as
|
|
13293
|
-
var ResponseWrapper =
|
|
13294
|
-
result:
|
|
13380
|
+
import { z as z362 } from "zod";
|
|
13381
|
+
var ResponseWrapper = z362.object({
|
|
13382
|
+
result: z362.record(z362.any())
|
|
13295
13383
|
});
|
|
13296
13384
|
var RequestExecutor = class {
|
|
13297
13385
|
constructor(testServerConfig) {
|
|
@@ -13381,25 +13469,25 @@ var SupernovaApiClient = class {
|
|
|
13381
13469
|
};
|
|
13382
13470
|
|
|
13383
13471
|
// src/events/design-system.ts
|
|
13384
|
-
import { z as
|
|
13385
|
-
var DTOEventFigmaNodesRendered =
|
|
13386
|
-
type:
|
|
13387
|
-
designSystemId:
|
|
13388
|
-
versionId:
|
|
13389
|
-
figmaNodePersistentIds:
|
|
13390
|
-
});
|
|
13391
|
-
var DTOEventDataSourcesImported =
|
|
13392
|
-
type:
|
|
13393
|
-
designSystemId:
|
|
13394
|
-
versionId:
|
|
13395
|
-
importJobId:
|
|
13472
|
+
import { z as z363 } from "zod";
|
|
13473
|
+
var DTOEventFigmaNodesRendered = z363.object({
|
|
13474
|
+
type: z363.literal("DesignSystem.FigmaNodesRendered"),
|
|
13475
|
+
designSystemId: z363.string(),
|
|
13476
|
+
versionId: z363.string(),
|
|
13477
|
+
figmaNodePersistentIds: z363.string().array()
|
|
13478
|
+
});
|
|
13479
|
+
var DTOEventDataSourcesImported = z363.object({
|
|
13480
|
+
type: z363.literal("DesignSystem.ImportJobFinished"),
|
|
13481
|
+
designSystemId: z363.string(),
|
|
13482
|
+
versionId: z363.string(),
|
|
13483
|
+
importJobId: z363.string(),
|
|
13396
13484
|
dataSourceType: DataSourceRemoteType,
|
|
13397
|
-
dataSourceIds:
|
|
13485
|
+
dataSourceIds: z363.string().array()
|
|
13398
13486
|
});
|
|
13399
13487
|
|
|
13400
13488
|
// src/events/event.ts
|
|
13401
|
-
import { z as
|
|
13402
|
-
var DTOEvent =
|
|
13489
|
+
import { z as z364 } from "zod";
|
|
13490
|
+
var DTOEvent = z364.discriminatedUnion("type", [DTOEventDataSourcesImported, DTOEventFigmaNodesRendered]);
|
|
13403
13491
|
|
|
13404
13492
|
// src/sync/docs-local-action-executor.ts
|
|
13405
13493
|
function applyActionsLocally(input) {
|
|
@@ -13695,7 +13783,7 @@ var LocalDocsElementActionExecutor = class {
|
|
|
13695
13783
|
import PQueue from "p-queue";
|
|
13696
13784
|
|
|
13697
13785
|
// src/yjs/design-system-content/documentation-hierarchy.ts
|
|
13698
|
-
import { z as
|
|
13786
|
+
import { z as z365 } from "zod";
|
|
13699
13787
|
|
|
13700
13788
|
// src/yjs/version-room/base.ts
|
|
13701
13789
|
var VersionRoomBaseYDoc = class {
|
|
@@ -14245,24 +14333,24 @@ var FrontendVersionRoomYDoc = class {
|
|
|
14245
14333
|
};
|
|
14246
14334
|
|
|
14247
14335
|
// src/yjs/design-system-content/documentation-hierarchy.ts
|
|
14248
|
-
var DocumentationHierarchySettings =
|
|
14249
|
-
routingVersion:
|
|
14250
|
-
isDraftFeatureAdopted:
|
|
14251
|
-
isApprovalFeatureEnabled:
|
|
14252
|
-
approvalRequiredForPublishing:
|
|
14336
|
+
var DocumentationHierarchySettings = z365.object({
|
|
14337
|
+
routingVersion: z365.string(),
|
|
14338
|
+
isDraftFeatureAdopted: z365.boolean(),
|
|
14339
|
+
isApprovalFeatureEnabled: z365.boolean(),
|
|
14340
|
+
approvalRequiredForPublishing: z365.boolean()
|
|
14253
14341
|
});
|
|
14254
14342
|
function yjsToDocumentationHierarchy(doc) {
|
|
14255
14343
|
return new FrontendVersionRoomYDoc(doc).getDocumentationHierarchy();
|
|
14256
14344
|
}
|
|
14257
14345
|
|
|
14258
14346
|
// src/yjs/design-system-content/item-configuration.ts
|
|
14259
|
-
import { z as
|
|
14260
|
-
var DTODocumentationPageRoomHeaderData =
|
|
14261
|
-
title:
|
|
14347
|
+
import { z as z366 } from "zod";
|
|
14348
|
+
var DTODocumentationPageRoomHeaderData = z366.object({
|
|
14349
|
+
title: z366.string(),
|
|
14262
14350
|
configuration: DTODocumentationItemConfigurationV2
|
|
14263
14351
|
});
|
|
14264
|
-
var DTODocumentationPageRoomHeaderDataUpdate =
|
|
14265
|
-
title:
|
|
14352
|
+
var DTODocumentationPageRoomHeaderDataUpdate = z366.object({
|
|
14353
|
+
title: z366.string().optional(),
|
|
14266
14354
|
configuration: DTODocumentationItemConfigurationV2.omit({ header: true }).extend({ header: DocumentationItemHeaderV2.partial() }).optional()
|
|
14267
14355
|
});
|
|
14268
14356
|
function itemConfigurationToYjs(yDoc, item) {
|
|
@@ -14297,9 +14385,9 @@ var PageBlockEditorModel = PageBlockEditorModelV2;
|
|
|
14297
14385
|
var PageSectionEditorModel = PageSectionEditorModelV2;
|
|
14298
14386
|
|
|
14299
14387
|
// src/yjs/docs-editor/model/page.ts
|
|
14300
|
-
import { z as
|
|
14301
|
-
var DocumentationPageEditorModel =
|
|
14302
|
-
blocks:
|
|
14388
|
+
import { z as z367 } from "zod";
|
|
14389
|
+
var DocumentationPageEditorModel = z367.object({
|
|
14390
|
+
blocks: z367.array(DocumentationPageContentItem)
|
|
14303
14391
|
});
|
|
14304
14392
|
|
|
14305
14393
|
// src/yjs/docs-editor/prosemirror/inner-editor-schema.ts
|
|
@@ -17976,7 +18064,7 @@ var blocks = [
|
|
|
17976
18064
|
|
|
17977
18065
|
// src/yjs/docs-editor/prosemirror-to-blocks.ts
|
|
17978
18066
|
import { yXmlFragmentToProsemirrorJSON } from "y-prosemirror";
|
|
17979
|
-
import { z as
|
|
18067
|
+
import { z as z368 } from "zod";
|
|
17980
18068
|
function yDocToPage(yDoc, definitions) {
|
|
17981
18069
|
return yXmlFragmentToPage(yDoc.getXmlFragment("default"), definitions);
|
|
17982
18070
|
}
|
|
@@ -18052,7 +18140,7 @@ function prosemirrorNodeToSectionItem(prosemirrorNode, definitionsMap) {
|
|
|
18052
18140
|
if (!id) return null;
|
|
18053
18141
|
return {
|
|
18054
18142
|
id,
|
|
18055
|
-
title: getProsemirrorAttribute(prosemirrorNode, "title",
|
|
18143
|
+
title: getProsemirrorAttribute(prosemirrorNode, "title", z368.string()) ?? "",
|
|
18056
18144
|
columns: (prosemirrorNode.content ?? []).filter((c) => c.type === "sectionItemColumn").map((c) => prosemirrorNodeToSectionColumns(c, definitionsMap)).filter(nonNullFilter)
|
|
18057
18145
|
};
|
|
18058
18146
|
}
|
|
@@ -18086,7 +18174,7 @@ function internalProsemirrorNodesToBlocks(prosemirrorNodes, definitionsMap, dept
|
|
|
18086
18174
|
});
|
|
18087
18175
|
}
|
|
18088
18176
|
function internalProsemirrorNodeToBlock(prosemirrorNode, definitionsMap, depth) {
|
|
18089
|
-
const definitionId = getProsemirrorAttribute(prosemirrorNode, "definitionId",
|
|
18177
|
+
const definitionId = getProsemirrorAttribute(prosemirrorNode, "definitionId", z368.string());
|
|
18090
18178
|
if (!definitionId) {
|
|
18091
18179
|
console.warn(`definitionId on ${prosemirrorNode.type} is required to be interpreted as a block, skipping node`);
|
|
18092
18180
|
return [];
|
|
@@ -18127,7 +18215,7 @@ function parseAsRichText(prosemirrorNode, definition, property) {
|
|
|
18127
18215
|
const id = getProsemirrorBlockId(prosemirrorNode);
|
|
18128
18216
|
if (!id) return null;
|
|
18129
18217
|
const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
|
|
18130
|
-
const calloutType = parseCalloutType(getProsemirrorAttribute(prosemirrorNode, "type",
|
|
18218
|
+
const calloutType = parseCalloutType(getProsemirrorAttribute(prosemirrorNode, "type", z368.string().optional()));
|
|
18131
18219
|
return {
|
|
18132
18220
|
id,
|
|
18133
18221
|
type: "Block",
|
|
@@ -18250,9 +18338,9 @@ function parseRichTextAttribute(mark) {
|
|
|
18250
18338
|
return null;
|
|
18251
18339
|
}
|
|
18252
18340
|
function parseProsemirrorLink(mark) {
|
|
18253
|
-
const href = getProsemirrorAttribute(mark, "href",
|
|
18341
|
+
const href = getProsemirrorAttribute(mark, "href", z368.string().optional());
|
|
18254
18342
|
if (!href) return null;
|
|
18255
|
-
const target = getProsemirrorAttribute(mark, "target",
|
|
18343
|
+
const target = getProsemirrorAttribute(mark, "target", z368.string().optional());
|
|
18256
18344
|
const openInNewTab = target === "_blank";
|
|
18257
18345
|
if (href.startsWith("@")) {
|
|
18258
18346
|
return {
|
|
@@ -18271,9 +18359,9 @@ function parseProsemirrorLink(mark) {
|
|
|
18271
18359
|
}
|
|
18272
18360
|
}
|
|
18273
18361
|
function parseProsemirrorCommentHighlight(mark) {
|
|
18274
|
-
const highlightId = getProsemirrorAttribute(mark, "highlightId",
|
|
18362
|
+
const highlightId = getProsemirrorAttribute(mark, "highlightId", z368.string().optional());
|
|
18275
18363
|
if (!highlightId) return null;
|
|
18276
|
-
const isResolved = getProsemirrorAttribute(mark, "resolved",
|
|
18364
|
+
const isResolved = getProsemirrorAttribute(mark, "resolved", z368.boolean().optional()) ?? false;
|
|
18277
18365
|
return {
|
|
18278
18366
|
type: "Comment",
|
|
18279
18367
|
commentHighlightId: highlightId,
|
|
@@ -18284,7 +18372,7 @@ function parseAsTable(prosemirrorNode, definition, property) {
|
|
|
18284
18372
|
const id = getProsemirrorBlockId(prosemirrorNode);
|
|
18285
18373
|
if (!id) return null;
|
|
18286
18374
|
const variantId = getProsemirrorBlockVariantId(prosemirrorNode);
|
|
18287
|
-
const hasBorder = getProsemirrorAttribute(prosemirrorNode, "hasBorder",
|
|
18375
|
+
const hasBorder = getProsemirrorAttribute(prosemirrorNode, "hasBorder", z368.boolean().optional()) !== false;
|
|
18288
18376
|
const tableChild = prosemirrorNode.content?.find((c) => c.type === "table");
|
|
18289
18377
|
if (!tableChild) {
|
|
18290
18378
|
return emptyTable(id, variantId, 0);
|
|
@@ -18330,9 +18418,9 @@ function parseAsTable(prosemirrorNode, definition, property) {
|
|
|
18330
18418
|
function parseAsTableCell(prosemirrorNode) {
|
|
18331
18419
|
const id = getProsemirrorBlockId(prosemirrorNode);
|
|
18332
18420
|
if (!id) return null;
|
|
18333
|
-
const textAlign = getProsemirrorAttribute(prosemirrorNode, "textAlign",
|
|
18421
|
+
const textAlign = getProsemirrorAttribute(prosemirrorNode, "textAlign", z368.string().optional());
|
|
18334
18422
|
let columnWidth;
|
|
18335
|
-
const columnWidthArray = getProsemirrorAttribute(prosemirrorNode, "colwidth",
|
|
18423
|
+
const columnWidthArray = getProsemirrorAttribute(prosemirrorNode, "colwidth", z368.array(z368.number()).nullish());
|
|
18336
18424
|
if (columnWidthArray) {
|
|
18337
18425
|
columnWidth = roundDimension(columnWidthArray[0]);
|
|
18338
18426
|
}
|
|
@@ -18368,7 +18456,7 @@ function parseAsTableNode(prosemirrorNode) {
|
|
|
18368
18456
|
value: parseRichText(prosemirrorNode.content ?? [])
|
|
18369
18457
|
};
|
|
18370
18458
|
case "image":
|
|
18371
|
-
const items = getProsemirrorAttribute(prosemirrorNode, "items",
|
|
18459
|
+
const items = getProsemirrorAttribute(prosemirrorNode, "items", z368.string());
|
|
18372
18460
|
if (!items) return null;
|
|
18373
18461
|
const parsedItems = PageBlockItemV2.array().safeParse(JSON.parse(items));
|
|
18374
18462
|
if (!parsedItems.success) return null;
|
|
@@ -18482,7 +18570,7 @@ function definitionExpectsPlaceholderItem(definition) {
|
|
|
18482
18570
|
);
|
|
18483
18571
|
}
|
|
18484
18572
|
function parseBlockItems(prosemirrorNode, definition) {
|
|
18485
|
-
const itemsString = getProsemirrorAttribute(prosemirrorNode, "items",
|
|
18573
|
+
const itemsString = getProsemirrorAttribute(prosemirrorNode, "items", z368.string());
|
|
18486
18574
|
if (!itemsString) return null;
|
|
18487
18575
|
const itemsJson = JSON.parse(itemsString);
|
|
18488
18576
|
if (!Array.isArray(itemsJson)) {
|
|
@@ -18493,18 +18581,18 @@ function parseBlockItems(prosemirrorNode, definition) {
|
|
|
18493
18581
|
}
|
|
18494
18582
|
function parseAppearance(prosemirrorNode) {
|
|
18495
18583
|
let appearance = {};
|
|
18496
|
-
const rawAppearanceString = getProsemirrorAttribute(prosemirrorNode, "appearance",
|
|
18584
|
+
const rawAppearanceString = getProsemirrorAttribute(prosemirrorNode, "appearance", z368.string().optional());
|
|
18497
18585
|
if (rawAppearanceString) {
|
|
18498
18586
|
const parsedAppearance = PageBlockAppearanceV2.safeParse(JSON.parse(rawAppearanceString));
|
|
18499
18587
|
if (parsedAppearance.success) {
|
|
18500
18588
|
appearance = parsedAppearance.data;
|
|
18501
18589
|
}
|
|
18502
18590
|
}
|
|
18503
|
-
const columns = getProsemirrorAttribute(prosemirrorNode, "columns",
|
|
18591
|
+
const columns = getProsemirrorAttribute(prosemirrorNode, "columns", z368.number().optional());
|
|
18504
18592
|
if (columns) {
|
|
18505
18593
|
appearance.numberOfColumns = columns;
|
|
18506
18594
|
}
|
|
18507
|
-
const backgroundColor = getProsemirrorAttribute(prosemirrorNode, "backgroundColor",
|
|
18595
|
+
const backgroundColor = getProsemirrorAttribute(prosemirrorNode, "backgroundColor", z368.string().optional());
|
|
18508
18596
|
if (backgroundColor) {
|
|
18509
18597
|
const parsedColor = PageBlockColorV2.safeParse(JSON.parse(backgroundColor));
|
|
18510
18598
|
if (parsedColor.success) {
|
|
@@ -18605,12 +18693,12 @@ function valueSchemaForPropertyType(type) {
|
|
|
18605
18693
|
}
|
|
18606
18694
|
}
|
|
18607
18695
|
function getProsemirrorBlockId(prosemirrorNode) {
|
|
18608
|
-
const id = getProsemirrorAttribute(prosemirrorNode, "id",
|
|
18696
|
+
const id = getProsemirrorAttribute(prosemirrorNode, "id", z368.string());
|
|
18609
18697
|
if (!id) console.warn(`Prosemirror attribute "id" on ${prosemirrorNode.type} is required`);
|
|
18610
18698
|
return id;
|
|
18611
18699
|
}
|
|
18612
18700
|
function getProsemirrorBlockVariantId(prosemirrorNode) {
|
|
18613
|
-
return getProsemirrorAttribute(prosemirrorNode, "variantId", nullishToOptional(
|
|
18701
|
+
return getProsemirrorAttribute(prosemirrorNode, "variantId", nullishToOptional(z368.string()));
|
|
18614
18702
|
}
|
|
18615
18703
|
function getProsemirrorAttribute(prosemirrorNode, attributeName, validationSchema) {
|
|
18616
18704
|
const parsedAttr = validationSchema.safeParse(prosemirrorNode.attrs?.[attributeName]);
|
|
@@ -20295,6 +20383,7 @@ export {
|
|
|
20295
20383
|
DTOForgeProjectMemberCreateResponse,
|
|
20296
20384
|
DTOForgeProjectMemberDeleted,
|
|
20297
20385
|
DTOForgeProjectMemberGetResponse,
|
|
20386
|
+
DTOForgeProjectMemberListQuery,
|
|
20298
20387
|
DTOForgeProjectMemberRemoveResponse,
|
|
20299
20388
|
DTOForgeProjectMemberRole,
|
|
20300
20389
|
DTOForgeProjectMemberUpdateResponse,
|
|
@@ -20349,6 +20438,13 @@ export {
|
|
|
20349
20438
|
DTOMCPStreamUpdateInput,
|
|
20350
20439
|
DTOMoveDocumentationGroupInput,
|
|
20351
20440
|
DTOMoveDocumentationPageInputV2,
|
|
20441
|
+
DTONotificationBase,
|
|
20442
|
+
DTONotificationChannel,
|
|
20443
|
+
DTONotificationChatMentionPayload,
|
|
20444
|
+
DTONotificationCreateInput,
|
|
20445
|
+
DTONotificationProjectDocumentCommentPayload,
|
|
20446
|
+
DTONotificationProjectInvitationPayload,
|
|
20447
|
+
DTONotificationType,
|
|
20352
20448
|
DTONpmRegistryAccessTokenResponse,
|
|
20353
20449
|
DTONpmRegistryConfig,
|
|
20354
20450
|
DTONpmRegistryConfigConstants,
|
|
@@ -20511,6 +20607,7 @@ export {
|
|
|
20511
20607
|
DTOUserEmailSettings,
|
|
20512
20608
|
DTOUserEmailSettingsUpdatePayload,
|
|
20513
20609
|
DTOUserGetResponse,
|
|
20610
|
+
DTOUserNotificationSettings,
|
|
20514
20611
|
DTOUserNotificationSettingsResponse,
|
|
20515
20612
|
DTOUserOnboarding,
|
|
20516
20613
|
DTOUserOnboardingDepartment,
|