@adminide-stack/core 3.1.2-alpha.97 → 3.1.4-alpha.107
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/lib/core/configurations/configuration.js +2 -1
- package/lib/core/configurations/configuration.js.map +1 -1
- package/lib/core/configurations/helpers/configuration.d.ts +2 -1
- package/lib/core/configurations/helpers/configuration.js +71 -29
- package/lib/core/configurations/helpers/configuration.js.map +1 -1
- package/lib/core/configurations/models/ConfigurationModel.js +1 -1
- package/lib/core/configurations/models/ConfigurationModel.js.map +1 -1
- package/lib/core/path.js +15 -15
- package/lib/core/path.js.map +1 -1
- package/lib/core/types.d.ts +1 -1
- package/lib/interfaces/common.d.ts +1 -1
- package/lib/interfaces/configuration/configuration.d.ts +2 -2
- package/lib/interfaces/configuration/configurationRegistry.d.ts +2 -2
- package/lib/interfaces/configuration/configuraton-service.d.ts +4 -1
- package/lib/interfaces/generated/generated-models.d.ts +1267 -1284
- package/lib/interfaces/generated/generated-models.js +63 -31
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/index.d.ts +1 -0
- package/lib/interfaces/index.js +2 -0
- package/lib/interfaces/index.js.map +1 -1
- package/lib/interfaces/log/log-service.d.ts +1 -1
- package/lib/interfaces/organization/organization-context-service.d.ts +7 -0
- package/lib/interfaces/organization/organizations-context.d.ts +4 -4
- package/lib/interfaces/permissions.d.ts +2 -2
- package/lib/interfaces/platform.d.ts +5 -0
- package/lib/interfaces/platform.js +3 -0
- package/lib/interfaces/platform.js.map +1 -0
- package/lib/interfaces/preferences-service.d.ts +1 -1
- package/lib/interfaces/service.d.ts +1 -2
- package/lib/modules/account-api/enums/index.d.ts +22 -11
- package/lib/modules/account-api/enums/index.js +26 -11
- package/lib/modules/account-api/enums/index.js.map +1 -1
- package/lib/modules/inbox/enums/index.d.ts +20 -0
- package/lib/modules/inbox/enums/index.js +30 -0
- package/lib/modules/inbox/enums/index.js.map +1 -0
- package/lib/modules/inbox/index.d.ts +1 -0
- package/lib/modules/inbox/index.js +18 -0
- package/lib/modules/inbox/index.js.map +1 -0
- package/lib/modules/index.d.ts +1 -0
- package/lib/modules/index.js +1 -0
- package/lib/modules/index.js.map +1 -1
- package/lib/services/abstract-configuration.d.ts +5 -5
- package/lib/services/abstract-configuration.js +19 -11
- package/lib/services/abstract-configuration.js.map +1 -1
- package/lib/services/abstract-organization-context-service.d.ts +5 -2
- package/lib/services/abstract-organization-context-service.js +20 -10
- package/lib/services/abstract-organization-context-service.js.map +1 -1
- package/lib/utils/flatten-utils.d.ts +8 -0
- package/lib/utils/flatten-utils.js +37 -1
- package/lib/utils/flatten-utils.js.map +1 -1
- package/package.json +4 -7
package/lib/interfaces/index.js
CHANGED
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
/* eslint-disable import/export */
|
17
18
|
__exportStar(require("./enum"), exports);
|
18
19
|
__exportStar(require("./common"), exports);
|
19
20
|
__exportStar(require("./generated"), exports);
|
@@ -31,4 +32,5 @@ __exportStar(require("./permissions"), exports);
|
|
31
32
|
__exportStar(require("./service"), exports);
|
32
33
|
__exportStar(require("./log"), exports);
|
33
34
|
__exportStar(require("./environment"), exports);
|
35
|
+
__exportStar(require("./platform"), exports);
|
34
36
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,2CAAyB;AACzB,8CAA4B;AAC5B,8CAA4B;AAC5B,+CAA6B;AAC7B,mDAAiC;AACjC,kDAAgC;AAChC,iDAA+B;AAC/B,wDAAsC;AACtC,sDAAoC;AACpC,uDAAqC;AAErC,sDAAoC;AACpC,uDAAqC;AACrC,gDAA8B;AAC9B,4CAA0B;AAC1B,wCAAsB;AACtB,gDAA8B"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kCAAkC;AAClC,yCAAuB;AACvB,2CAAyB;AACzB,8CAA4B;AAC5B,8CAA4B;AAC5B,+CAA6B;AAC7B,mDAAiC;AACjC,kDAAgC;AAChC,iDAA+B;AAC/B,wDAAsC;AACtC,sDAAoC;AACpC,uDAAqC;AAErC,sDAAoC;AACpC,uDAAqC;AACrC,gDAA8B;AAC9B,4CAA0B;AAC1B,wCAAsB;AACtB,gDAA8B;AAC9B,6CAA2B"}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { Event } from '@vscode-alt/monaco-editor/esm/vs/base/common/event';
|
2
2
|
import { IDisposable } from '@vscode-alt/monaco-editor/esm/vs/base/common/lifecycle';
|
3
3
|
import { CdmLogger } from '@cdm-logger/core';
|
4
|
-
|
4
|
+
type LogLevel = CdmLogger.LoggerLevel;
|
5
5
|
export interface ILogService extends IDisposable {
|
6
6
|
onDidChangeLogLevel: Event<LogLevel>;
|
7
7
|
getLevel(): LogLevel;
|
@@ -4,6 +4,7 @@ import { IDisposable } from '@vscode-alt/monaco-editor/esm/vs/base/common/lifecy
|
|
4
4
|
import { IOrganizationData, IOrganizationIdentifier, IResourceCreationDataInput } from '../generated';
|
5
5
|
import { IOrganizationResource, ApplicationState, IOrganizationResourcesChangeEvent, IOrganizationContext } from './organization-context';
|
6
6
|
import { IOrganizationResourceCreationData, ISingleResourceOrganizationIdentifier } from './organizations-context';
|
7
|
+
import { OrganizationContext } from '../../core';
|
7
8
|
export interface IOrganizationContextService extends IDisposable {
|
8
9
|
/**
|
9
10
|
* An event which fires on workbench state changes.
|
@@ -17,6 +18,10 @@ export interface IOrganizationContextService extends IDisposable {
|
|
17
18
|
* An event which fires on organization resources change.
|
18
19
|
*/
|
19
20
|
onDidChangeOrganizationResources: Event<IOrganizationResourcesChangeEvent>;
|
21
|
+
/**
|
22
|
+
* hydrate the organization context
|
23
|
+
*/
|
24
|
+
hydrate(state: string): any;
|
20
25
|
/**
|
21
26
|
* Provides access to the complete organization object.
|
22
27
|
*/
|
@@ -51,6 +56,8 @@ export interface IOrganizationContextService extends IDisposable {
|
|
51
56
|
updateResources(resourcesToAdd: IOrganizationResourceCreationData[], resourcesToRemove: URI[], index?: number): Promise<void>;
|
52
57
|
}
|
53
58
|
export interface IClientOrganizationContextService extends IOrganizationContextService {
|
59
|
+
get organizationContext(): OrganizationContext;
|
60
|
+
set organizationContext(context: OrganizationContext);
|
54
61
|
extAcceptChangedApplicationState(organization: IOrganizationData, event: ApplicationState): any;
|
55
62
|
extAcceptChangedOrganizationResources(data: IOrganizationData, event: IOrganizationResourcesChangeEvent): any;
|
56
63
|
extAcceptChangedOrganizationName(date: IOrganizationData): any;
|
@@ -3,7 +3,7 @@ import { IOrganizationIdentifier } from '../generated';
|
|
3
3
|
/**
|
4
4
|
* A single folder workspace identifier is just the path to the folder.
|
5
5
|
*/
|
6
|
-
export
|
6
|
+
export type ISingleResourceOrganizationIdentifier = URI;
|
7
7
|
export interface ISingleResourceOrganizaionInitializationPayload {
|
8
8
|
id: string;
|
9
9
|
resource: ISingleResourceOrganizationIdentifier;
|
@@ -23,8 +23,8 @@ export interface IRawUriOrganizationResource {
|
|
23
23
|
uri: string;
|
24
24
|
name?: string;
|
25
25
|
}
|
26
|
-
export
|
27
|
-
export
|
26
|
+
export type IStoredOrganizationResource = IRawFileOrganizationResource | IRawUriOrganizationResource;
|
27
|
+
export type IMultiResourceOrganizationInitializationPayload = IOrganizationIdentifier;
|
28
28
|
export interface ISingleResourceOrganizationInitializationPayload {
|
29
29
|
id: string;
|
30
30
|
folder: ISingleResourceOrganizationIdentifier;
|
@@ -32,4 +32,4 @@ export interface ISingleResourceOrganizationInitializationPayload {
|
|
32
32
|
export interface IEmptyOrganizationInitializationPayload {
|
33
33
|
id: string;
|
34
34
|
}
|
35
|
-
export
|
35
|
+
export type IOrganizationInitializationPayload = IMultiResourceOrganizationInitializationPayload | ISingleResourceOrganizationInitializationPayload | IEmptyOrganizationInitializationPayload;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { IPreDefineBillingPermissions, IPreDefineAccountPermissions } from '../modules';
|
2
|
-
export
|
1
|
+
import { IPreDefineBillingPermissions, IPreDefineAccountPermissions, IPreDefineInboxPermissions } from '../modules';
|
2
|
+
export type IPreDefinedPermissions = IPreDefineBillingPermissions | IPreDefineAccountPermissions | IPreDefineInboxPermissions;
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"platform.js","sourceRoot":"","sources":["../../src/interfaces/platform.ts"],"names":[],"mappings":""}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { URI } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri';
|
2
2
|
import { ISettingsSubject, IViewerSettingsInput, IRoleInput, IPermissionSubject, IViewerSettingsSubject, IPolicySubject, IViewerPoliciesInput } from './generated';
|
3
3
|
import { ConfigurationTarget, IPreferencesInput, IPreferencesOpenOptionsInput as IPreferencesOpenOptions, IContributionSettings } from './generated';
|
4
|
-
export
|
4
|
+
export type IPrefFragment = {
|
5
5
|
fragmentName?: string;
|
6
6
|
fragmentDoc?: string;
|
7
7
|
};
|
@@ -4,15 +4,14 @@ import { IClientConfigurationService, IConfigurationFileService } from './config
|
|
4
4
|
import { IOrganizationContextService } from './organization';
|
5
5
|
import { IPreferenceClientService } from './preferences-service';
|
6
6
|
import { IEnvironmentService } from './environment';
|
7
|
-
import { IRegistry } from './workbench-exports';
|
8
7
|
export interface IClientService {
|
9
8
|
readonly configurationService: IClientConfigurationService;
|
10
9
|
readonly permissionService?: IClientConfigurationService;
|
10
|
+
readonly configurationPolicyService?: IClientConfigurationService;
|
11
11
|
readonly contextKeyService: IContextKeyService;
|
12
12
|
readonly organizationContextService: IOrganizationContextService;
|
13
13
|
readonly lifecycleService: ILifecycleService;
|
14
14
|
readonly preferenceService: IPreferenceClientService;
|
15
|
-
readonly registry: IRegistry;
|
16
15
|
readonly environmentService?: IEnvironmentService;
|
17
16
|
readonly configurationFileService?: IConfigurationFileService;
|
18
17
|
}
|
@@ -8,22 +8,33 @@ export declare enum IPreDefineAccountPermissions {
|
|
8
8
|
deleteTeams = "organization.teams.delete",
|
9
9
|
manageTeams = "organization.teams.manage",
|
10
10
|
accessTeamDashboard = "organization.teams.dashboard.access",
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
viewSelfProjects = "organization.projects.self.view",
|
12
|
+
createSelfProjects = "organization.projects.self.create",
|
13
|
+
editSelfProjects = "organization.projects.self.edit",
|
14
|
+
deleteSelfProjects = "organization.projects.self.delete",
|
15
|
+
manageSelfProjects = "organization.projects.self.manage",
|
16
|
+
viewSelfProjectStatus = "organization.projects.status.self.view",
|
17
|
+
viewOthersProjects = "organization.projects.others.view",
|
18
|
+
createOthersProjects = "organization.projects.others.create",
|
19
|
+
editOthersProjects = "organization.projects.others.edit",
|
20
|
+
deleteOthersProjects = "organization.projects.others.delete",
|
21
|
+
manageOthersProjects = "organization.projects.others.manage",
|
22
|
+
viewOthersProjectStatus = "organization.projects.status.others.view",
|
17
23
|
viewMembers = "organization.members.view",
|
18
24
|
createMembers = "organization.members.create",
|
19
25
|
editMembers = "organization.members.edit",
|
20
26
|
deleteMembers = "organization.members.delete",
|
21
27
|
manageMembers = "organization.members.manage",
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
28
|
+
viewSelfClients = "organization.clients.self.view",
|
29
|
+
createSelfClients = "organization.clients.self.create",
|
30
|
+
editSelfClients = "organization.clients.self.edit",
|
31
|
+
deleteSelfClients = "organization.clients.self.delete",
|
32
|
+
manageSelfClients = "organization.clients.self.manage",
|
33
|
+
viewOthersClients = "organization.clients.others.view",
|
34
|
+
createOthersClients = "organization.clients.others.create",
|
35
|
+
editOthersClients = "organization.clients.others.edit",
|
36
|
+
deleteOthersClients = "organization.clients.others.delete",
|
37
|
+
manageOthersClients = "organization.clients.others.manage",
|
27
38
|
viewTasks = "organization.tasks.view",
|
28
39
|
createTasks = "organization.tasks.create",
|
29
40
|
editTasks = "organization.tasks.edit",
|
@@ -12,22 +12,37 @@ var IPreDefineAccountPermissions;
|
|
12
12
|
IPreDefineAccountPermissions["deleteTeams"] = "organization.teams.delete";
|
13
13
|
IPreDefineAccountPermissions["manageTeams"] = "organization.teams.manage";
|
14
14
|
IPreDefineAccountPermissions["accessTeamDashboard"] = "organization.teams.dashboard.access";
|
15
|
-
|
16
|
-
IPreDefineAccountPermissions["
|
17
|
-
IPreDefineAccountPermissions["
|
18
|
-
IPreDefineAccountPermissions["
|
19
|
-
IPreDefineAccountPermissions["
|
20
|
-
IPreDefineAccountPermissions["
|
15
|
+
//self
|
16
|
+
IPreDefineAccountPermissions["viewSelfProjects"] = "organization.projects.self.view";
|
17
|
+
IPreDefineAccountPermissions["createSelfProjects"] = "organization.projects.self.create";
|
18
|
+
IPreDefineAccountPermissions["editSelfProjects"] = "organization.projects.self.edit";
|
19
|
+
IPreDefineAccountPermissions["deleteSelfProjects"] = "organization.projects.self.delete";
|
20
|
+
IPreDefineAccountPermissions["manageSelfProjects"] = "organization.projects.self.manage";
|
21
|
+
IPreDefineAccountPermissions["viewSelfProjectStatus"] = "organization.projects.status.self.view";
|
22
|
+
//others
|
23
|
+
IPreDefineAccountPermissions["viewOthersProjects"] = "organization.projects.others.view";
|
24
|
+
IPreDefineAccountPermissions["createOthersProjects"] = "organization.projects.others.create";
|
25
|
+
IPreDefineAccountPermissions["editOthersProjects"] = "organization.projects.others.edit";
|
26
|
+
IPreDefineAccountPermissions["deleteOthersProjects"] = "organization.projects.others.delete";
|
27
|
+
IPreDefineAccountPermissions["manageOthersProjects"] = "organization.projects.others.manage";
|
28
|
+
IPreDefineAccountPermissions["viewOthersProjectStatus"] = "organization.projects.status.others.view";
|
21
29
|
IPreDefineAccountPermissions["viewMembers"] = "organization.members.view";
|
22
30
|
IPreDefineAccountPermissions["createMembers"] = "organization.members.create";
|
23
31
|
IPreDefineAccountPermissions["editMembers"] = "organization.members.edit";
|
24
32
|
IPreDefineAccountPermissions["deleteMembers"] = "organization.members.delete";
|
25
33
|
IPreDefineAccountPermissions["manageMembers"] = "organization.members.manage";
|
26
|
-
|
27
|
-
IPreDefineAccountPermissions["
|
28
|
-
IPreDefineAccountPermissions["
|
29
|
-
IPreDefineAccountPermissions["
|
30
|
-
IPreDefineAccountPermissions["
|
34
|
+
//self
|
35
|
+
IPreDefineAccountPermissions["viewSelfClients"] = "organization.clients.self.view";
|
36
|
+
IPreDefineAccountPermissions["createSelfClients"] = "organization.clients.self.create";
|
37
|
+
IPreDefineAccountPermissions["editSelfClients"] = "organization.clients.self.edit";
|
38
|
+
IPreDefineAccountPermissions["deleteSelfClients"] = "organization.clients.self.delete";
|
39
|
+
IPreDefineAccountPermissions["manageSelfClients"] = "organization.clients.self.manage";
|
40
|
+
//others
|
41
|
+
IPreDefineAccountPermissions["viewOthersClients"] = "organization.clients.others.view";
|
42
|
+
IPreDefineAccountPermissions["createOthersClients"] = "organization.clients.others.create";
|
43
|
+
IPreDefineAccountPermissions["editOthersClients"] = "organization.clients.others.edit";
|
44
|
+
IPreDefineAccountPermissions["deleteOthersClients"] = "organization.clients.others.delete";
|
45
|
+
IPreDefineAccountPermissions["manageOthersClients"] = "organization.clients.others.manage";
|
31
46
|
IPreDefineAccountPermissions["viewTasks"] = "organization.tasks.view";
|
32
47
|
IPreDefineAccountPermissions["createTasks"] = "organization.tasks.create";
|
33
48
|
IPreDefineAccountPermissions["editTasks"] = "organization.tasks.edit";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/account-api/enums/index.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/account-api/enums/index.ts"],"names":[],"mappings":";;;AAAA,IAAY,4BAyEX;AAzED,WAAY,4BAA4B;IACtC,kEAAkC,CAAA;IAClC,gEAAgC,CAAA;IAChC,gFAAgD,CAAA;IAChD,qEAAqC,CAAA;IACrC,yEAAyC,CAAA;IACzC,qEAAqC,CAAA;IACrC,yEAAyC,CAAA;IACzC,yEAAyC,CAAA;IACzC,2FAA2D,CAAA;IAE3D,MAAM;IACN,oFAAoD,CAAA;IACpD,wFAAwD,CAAA;IACxD,oFAAoD,CAAA;IACpD,wFAAwD,CAAA;IACxD,wFAAwD,CAAA;IACxD,gGAAgE,CAAA;IAChE,QAAQ;IACR,wFAAwD,CAAA;IACxD,4FAA4D,CAAA;IAC5D,wFAAwD,CAAA;IACxD,4FAA4D,CAAA;IAC5D,4FAA4D,CAAA;IAC5D,oGAAoE,CAAA;IAEpE,yEAAyC,CAAA;IACzC,6EAA6C,CAAA;IAC7C,yEAAyC,CAAA;IACzC,6EAA6C,CAAA;IAC7C,6EAA6C,CAAA;IAE7C,MAAM;IACN,kFAAkD,CAAA;IAClD,sFAAsD,CAAA;IACtD,kFAAkD,CAAA;IAClD,sFAAsD,CAAA;IACtD,sFAAsD,CAAA;IACtD,QAAQ;IACR,sFAAsD,CAAA;IACtD,0FAA0D,CAAA;IAC1D,sFAAsD,CAAA;IACtD,0FAA0D,CAAA;IAC1D,0FAA0D,CAAA;IAE1D,qEAAqC,CAAA;IACrC,yEAAyC,CAAA;IACzC,qEAAqC,CAAA;IACrC,yEAAyC,CAAA;IACzC,yEAAyC,CAAA;IAEzC,mEAAmC,CAAA;IACnC,uEAAuC,CAAA;IACvC,mEAAmC,CAAA;IACnC,uEAAuC,CAAA;IACvC,uEAAuC,CAAA;IAEvC,sEAAsC,CAAA;IACtC,0EAA0C,CAAA;IAC1C,sEAAsC,CAAA;IACtC,0EAA0C,CAAA;IAC1C,0EAA0C,CAAA;IAE1C,qEAAqC,CAAA;IACrC,qEAAsC,CAAA;IACtC,iFAAiD,CAAA;IACjD,iFAAiD,CAAA;IACjD,2EAA2C,CAAA;IAC3C,2EAA2C,CAAA;IAC3C,2EAA2C,CAAA;IAC3C,2EAA2C,CAAA;IAE3C,yEAAyC,CAAA;AAC3C,CAAC,EAzEW,4BAA4B,GAA5B,oCAA4B,KAA5B,oCAA4B,QAyEvC"}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
export declare enum IPreDefineInboxPermissions {
|
2
|
+
viewPosts = "organization.inbox.posts.view",
|
3
|
+
createPost = "organization.inbox.posts.create",
|
4
|
+
editPost = "organization.inbox.posts.edit",
|
5
|
+
deletePost = "organization.inbox.posts.delete",
|
6
|
+
viewThreads = "organization.inbox.threads.view",
|
7
|
+
editThread = "organization.inbox.threads.edit",
|
8
|
+
deleteThread = "organization.inbox.threads.delete",
|
9
|
+
replyThread = "organization.inbox.threads.reply",
|
10
|
+
assignThreads = "organization.inbox.threads.assignThreads",
|
11
|
+
manageSupportServices = "organization.inbox.threads.manageServices",
|
12
|
+
viewThreadReplies = "organization.inbox.threads.viewThreadReplies",
|
13
|
+
editThreadReply = "organization.inbox.threads.editThreadReply",
|
14
|
+
deleteThreadReply = "organization.inbox.threads.deleteThreadReply",
|
15
|
+
editOthersThread = "organization.inbox.threads.editOthersThread",
|
16
|
+
deleteOthersThread = "organization.inbox.threads.deleteOthersThread",
|
17
|
+
replyOthersThread = "organization.inbox.threads.replyOthersThread",
|
18
|
+
editOthersThreadReply = "organization.inbox.threads.editOthersThreadReply",
|
19
|
+
deleteOthersThreadReply = "organization.inbox.threads.deleteOthersThreadReply"
|
20
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.IPreDefineInboxPermissions = void 0;
|
4
|
+
var IPreDefineInboxPermissions;
|
5
|
+
(function (IPreDefineInboxPermissions) {
|
6
|
+
//inbox
|
7
|
+
//inbox/posts
|
8
|
+
IPreDefineInboxPermissions["viewPosts"] = "organization.inbox.posts.view";
|
9
|
+
IPreDefineInboxPermissions["createPost"] = "organization.inbox.posts.create";
|
10
|
+
IPreDefineInboxPermissions["editPost"] = "organization.inbox.posts.edit";
|
11
|
+
IPreDefineInboxPermissions["deletePost"] = "organization.inbox.posts.delete";
|
12
|
+
//inbox/threads
|
13
|
+
IPreDefineInboxPermissions["viewThreads"] = "organization.inbox.threads.view";
|
14
|
+
IPreDefineInboxPermissions["editThread"] = "organization.inbox.threads.edit";
|
15
|
+
IPreDefineInboxPermissions["deleteThread"] = "organization.inbox.threads.delete";
|
16
|
+
IPreDefineInboxPermissions["replyThread"] = "organization.inbox.threads.reply";
|
17
|
+
//assign threads to members
|
18
|
+
IPreDefineInboxPermissions["assignThreads"] = "organization.inbox.threads.assignThreads";
|
19
|
+
IPreDefineInboxPermissions["manageSupportServices"] = "organization.inbox.threads.manageServices";
|
20
|
+
IPreDefineInboxPermissions["viewThreadReplies"] = "organization.inbox.threads.viewThreadReplies";
|
21
|
+
IPreDefineInboxPermissions["editThreadReply"] = "organization.inbox.threads.editThreadReply";
|
22
|
+
IPreDefineInboxPermissions["deleteThreadReply"] = "organization.inbox.threads.deleteThreadReply";
|
23
|
+
//Additional permissions
|
24
|
+
IPreDefineInboxPermissions["editOthersThread"] = "organization.inbox.threads.editOthersThread";
|
25
|
+
IPreDefineInboxPermissions["deleteOthersThread"] = "organization.inbox.threads.deleteOthersThread";
|
26
|
+
IPreDefineInboxPermissions["replyOthersThread"] = "organization.inbox.threads.replyOthersThread";
|
27
|
+
IPreDefineInboxPermissions["editOthersThreadReply"] = "organization.inbox.threads.editOthersThreadReply";
|
28
|
+
IPreDefineInboxPermissions["deleteOthersThreadReply"] = "organization.inbox.threads.deleteOthersThreadReply";
|
29
|
+
})(IPreDefineInboxPermissions = exports.IPreDefineInboxPermissions || (exports.IPreDefineInboxPermissions = {}));
|
30
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/inbox/enums/index.ts"],"names":[],"mappings":";;;AAAA,IAAY,0BA0BX;AA1BD,WAAY,0BAA0B;IAClC,OAAO;IACP,aAAa;IACb,yEAA2C,CAAA;IAC3C,4EAA8C,CAAA;IAC9C,wEAA0C,CAAA;IAC1C,4EAA8C,CAAA;IAE9C,eAAe;IACf,6EAA+C,CAAA;IAC/C,4EAA8C,CAAA;IAC9C,gFAAkD,CAAA;IAClD,8EAAgD,CAAA;IAChD,2BAA2B;IAC3B,wFAA0D,CAAA;IAC1D,iGAAmE,CAAA;IACnE,gGAAkE,CAAA;IAClE,4FAA8D,CAAA;IAC9D,gGAAkE,CAAA;IAElE,wBAAwB;IACxB,8FAAgE,CAAA;IAChE,kGAAoE,CAAA;IACpE,gGAAkE,CAAA;IAClE,wGAA0E,CAAA;IAC1E,4GAA8E,CAAA;AAClF,CAAC,EA1BW,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QA0BrC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './enums';
|
@@ -0,0 +1,18 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./enums"), exports);
|
18
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/modules/inbox/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0CAAwB"}
|
package/lib/modules/index.d.ts
CHANGED
package/lib/modules/index.js
CHANGED
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
17
|
__exportStar(require("./account-api"), exports);
|
18
18
|
__exportStar(require("./billing-api"), exports);
|
19
|
+
__exportStar(require("./inbox"), exports);
|
19
20
|
//# sourceMappingURL=index.js.map
|
package/lib/modules/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/modules/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,gDAA8B"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/modules/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,gDAA8B;AAC9B,0CAAuB"}
|
@@ -1,21 +1,21 @@
|
|
1
1
|
import { IDisposable } from '@vscode-alt/monaco-editor/esm/vs/base/common/lifecycle';
|
2
2
|
import { Disposable } from '@workbench-stack/core';
|
3
|
-
import { OrganizationConfiguration as Configuration, ConfigurationModel } from '../core';
|
4
3
|
import { ResourceMap } from '@vscode-alt/monaco-editor/esm/vs/base/common/map';
|
5
4
|
import { URI } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri';
|
6
5
|
import { CdmLogger } from '@cdm-logger/core';
|
7
6
|
import { Event, Emitter } from '@vscode-alt/monaco-editor/esm/vs/base/common/event';
|
8
|
-
import {
|
7
|
+
import { ApolloClient, NormalizedCacheObject } from '@apollo/client';
|
8
|
+
import { OrganizationConfiguration as Configuration, ConfigurationModel } from '../core';
|
9
9
|
import { IClientConfigurationService, IConfigurationChangeEvent, IConfigurationOverrides, ConfigurationTarget, IConfigurationData, IConfigurationModel, IOrganizationResource, IIResourceData, IIConfigurationModel, IOrganizationContext, IConfigurationValue, IConfigurationChange } from '../interfaces';
|
10
|
-
|
10
|
+
type ILogger = CdmLogger.ILogger;
|
11
11
|
export declare abstract class AbstractOrganizationConfigurationClientService extends Disposable implements IClientConfigurationService, IDisposable {
|
12
|
-
protected
|
12
|
+
protected _apolloClientFactory: () => ApolloClient<NormalizedCacheObject>;
|
13
13
|
protected utility: any;
|
14
14
|
protected _configuration: Configuration;
|
15
15
|
protected organization: IOrganizationContext;
|
16
16
|
protected logger: ILogger;
|
17
17
|
protected externalResources: URI[];
|
18
|
-
constructor(
|
18
|
+
constructor(_apolloClientFactory: () => ApolloClient<NormalizedCacheObject>, utility: any, logger: ILogger);
|
19
19
|
protected readonly _onDidChangeConfiguration: Emitter<IConfigurationChangeEvent>;
|
20
20
|
readonly onDidChangeConfiguration: Event<IConfigurationChangeEvent>;
|
21
21
|
abstract initialize(organizationContext: any): any;
|
@@ -17,16 +17,15 @@ exports.AbstractOrganizationConfigurationClientService = void 0;
|
|
17
17
|
const inversify_1 = require("inversify");
|
18
18
|
const client_core_1 = require("@common-stack/client-core");
|
19
19
|
const core_1 = require("@workbench-stack/core");
|
20
|
-
const core_2 = require("../core");
|
21
20
|
const map_1 = require("@vscode-alt/monaco-editor/esm/vs/base/common/map");
|
22
21
|
const uri_1 = require("@vscode-alt/monaco-editor/esm/vs/base/common/uri");
|
23
22
|
const event_1 = require("@vscode-alt/monaco-editor/esm/vs/base/common/event");
|
24
|
-
const
|
23
|
+
const core_2 = require("../core");
|
25
24
|
const MAX_EXTERNAL_RESOURCE_SIZE = 5;
|
26
25
|
let AbstractOrganizationConfigurationClientService = AbstractOrganizationConfigurationClientService_1 = class AbstractOrganizationConfigurationClientService extends core_1.Disposable {
|
27
|
-
constructor(
|
26
|
+
constructor(_apolloClientFactory, utility, logger) {
|
28
27
|
super();
|
29
|
-
this.
|
28
|
+
this._apolloClientFactory = _apolloClientFactory;
|
30
29
|
this.utility = utility;
|
31
30
|
this._onDidChangeConfiguration = this._register(new event_1.Emitter());
|
32
31
|
this.onDidChangeConfiguration = this._onDidChangeConfiguration.event;
|
@@ -71,8 +70,11 @@ let AbstractOrganizationConfigurationClientService = AbstractOrganizationConfigu
|
|
71
70
|
if (this.externalResources.length >= MAX_EXTERNAL_RESOURCE_SIZE) {
|
72
71
|
const oldestResource = this.externalResources.shift();
|
73
72
|
this.configuration.deleteResourceConfiguration(oldestResource);
|
74
|
-
const resourceId = this.utility.getCacheKey({
|
75
|
-
|
73
|
+
const resourceId = this.utility.getCacheKey({
|
74
|
+
__typename: 'MachineConfiguration',
|
75
|
+
resource: oldestResource,
|
76
|
+
});
|
77
|
+
this._apolloClientFactory().cache.evict({ id: resourceId });
|
76
78
|
}
|
77
79
|
}
|
78
80
|
inspect(key, overrides) {
|
@@ -88,10 +90,16 @@ let AbstractOrganizationConfigurationClientService = AbstractOrganizationConfigu
|
|
88
90
|
}
|
89
91
|
static parse(data, organization, previousConfiguration, prevResourceConfigurations) {
|
90
92
|
const defaultConfiguration = AbstractOrganizationConfigurationClientService_1.parseConfigurationModel(data.defaults);
|
91
|
-
const policyConfiguration = data.policy
|
92
|
-
|
93
|
+
const policyConfiguration = data.policy
|
94
|
+
? AbstractOrganizationConfigurationClientService_1.parseConfigurationModel(data.policy)
|
95
|
+
: new core_2.ConfigurationModel();
|
96
|
+
const applicationConfiguration = data.application
|
97
|
+
? AbstractOrganizationConfigurationClientService_1.parseConfigurationModel(data.application)
|
98
|
+
: new core_2.ConfigurationModel();
|
93
99
|
const userConfiguration = AbstractOrganizationConfigurationClientService_1.parseConfigurationModel(data.user);
|
94
|
-
const machineConfiguration = data.machine
|
100
|
+
const machineConfiguration = data.machine
|
101
|
+
? AbstractOrganizationConfigurationClientService_1.parseConfigurationModel(data.machine)
|
102
|
+
: new core_2.ConfigurationModel();
|
95
103
|
const organizationConfiguration = AbstractOrganizationConfigurationClientService_1.parseConfigurationModel(data.organization);
|
96
104
|
const resources = Object.keys(data.resources).reduce((result, key) => {
|
97
105
|
result.set(uri_1.URI.parse(key), AbstractOrganizationConfigurationClientService_1.parseConfigurationModel(data.resources[key]));
|
@@ -124,10 +132,10 @@ let AbstractOrganizationConfigurationClientService = AbstractOrganizationConfigu
|
|
124
132
|
};
|
125
133
|
AbstractOrganizationConfigurationClientService = AbstractOrganizationConfigurationClientService_1 = __decorate([
|
126
134
|
(0, inversify_1.injectable)(),
|
127
|
-
__param(0, (0, inversify_1.inject)(client_core_1.ClientTypes.
|
135
|
+
__param(0, (0, inversify_1.inject)(client_core_1.ClientTypes.ApolloClientFactory)),
|
128
136
|
__param(1, (0, inversify_1.inject)(client_core_1.ClientTypes.UtilityClass)),
|
129
137
|
__param(2, (0, inversify_1.inject)(client_core_1.ClientTypes.Logger)),
|
130
|
-
__metadata("design:paramtypes", [
|
138
|
+
__metadata("design:paramtypes", [Function, Object, Object])
|
131
139
|
], AbstractOrganizationConfigurationClientService);
|
132
140
|
exports.AbstractOrganizationConfigurationClientService = AbstractOrganizationConfigurationClientService;
|
133
141
|
//# sourceMappingURL=abstract-configuration.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"abstract-configuration.js","sourceRoot":"","sources":["../../src/services/abstract-configuration.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAA+C;AAC/C,2DAAwD;AAExD,gDAAmD;AACnD,
|
1
|
+
{"version":3,"file":"abstract-configuration.js","sourceRoot":"","sources":["../../src/services/abstract-configuration.ts"],"names":[],"mappings":"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"}
|
@@ -5,9 +5,9 @@ import { Barrier } from '@vscode-alt/monaco-editor/esm/vs/base/common/async';
|
|
5
5
|
import { CdmLogger } from '@cdm-logger/core';
|
6
6
|
import { OrganizationContext } from '../core';
|
7
7
|
import { IConfigurationChangeEvent, IOrganizationIdentifier, IOrganizationData, IClientOrganizationContextService, ApplicationState, IOrganizationResource, IOrganizationResourceCreationData, IOrganizationResourcesChangeEvent, ISingleResourceOrganizationIdentifier } from '../interfaces';
|
8
|
-
|
8
|
+
type ILogger = CdmLogger.ILogger;
|
9
9
|
export declare abstract class AbstractOrganizationContextService extends Disposable implements IClientOrganizationContextService {
|
10
|
-
protected
|
10
|
+
protected _organizationContext: OrganizationContext;
|
11
11
|
protected completeOrganizationBarrier: Barrier;
|
12
12
|
protected updateOrganizationBarrier: Barrier;
|
13
13
|
protected logger: ILogger;
|
@@ -21,6 +21,9 @@ export declare abstract class AbstractOrganizationContextService extends Disposa
|
|
21
21
|
readonly onDidChangeApplicationState: Event<ApplicationState>;
|
22
22
|
constructor(logger: ILogger);
|
23
23
|
abstract initialize(args: any): any;
|
24
|
+
abstract hydrate(apolloState: any): any;
|
25
|
+
get organizationContext(): OrganizationContext;
|
26
|
+
set organizationContext(context: OrganizationContext);
|
24
27
|
getCompleteOrganization(): Promise<OrganizationContext>;
|
25
28
|
getOrganization(): OrganizationContext;
|
26
29
|
getApplicationState(): ApplicationState;
|
@@ -13,6 +13,7 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
13
13
|
};
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
15
15
|
exports.AbstractOrganizationContextService = void 0;
|
16
|
+
/* eslint-disable default-case */
|
16
17
|
const uri_1 = require("@vscode-alt/monaco-editor/esm/vs/base/common/uri");
|
17
18
|
const event_1 = require("@vscode-alt/monaco-editor/esm/vs/base/common/event");
|
18
19
|
// import { Disposable } from '@vscode-alt/monaco-editor/esm/vs/base/common/lifecycle';
|
@@ -37,26 +38,32 @@ let AbstractOrganizationContextService = class AbstractOrganizationContextServic
|
|
37
38
|
this.logger = logger.child({ className: 'AbstractOrganizationService' });
|
38
39
|
this.completeOrganizationBarrier = new async_1.Barrier();
|
39
40
|
}
|
41
|
+
get organizationContext() {
|
42
|
+
return this._organizationContext;
|
43
|
+
}
|
44
|
+
set organizationContext(context) {
|
45
|
+
this._organizationContext = context;
|
46
|
+
}
|
40
47
|
getCompleteOrganization() {
|
41
48
|
return this.completeOrganizationBarrier.wait().then(() => this.getOrganization());
|
42
49
|
}
|
43
50
|
getOrganization() {
|
44
|
-
return this.
|
51
|
+
return this._organizationContext;
|
45
52
|
}
|
46
53
|
getApplicationState() {
|
47
54
|
// OrganizationContext has configuration file
|
48
|
-
if (this.
|
55
|
+
if (this._organizationContext.configuration) {
|
49
56
|
return 3 /* ApplicationState.ORGANIZATION */;
|
50
57
|
}
|
51
58
|
// Resource has single root
|
52
|
-
if (this.
|
59
|
+
if (this._organizationContext.resources.length === 1) {
|
53
60
|
return 2 /* ApplicationState.RESOURCE */;
|
54
61
|
}
|
55
62
|
// Empty
|
56
63
|
return 1 /* ApplicationState.EMPTY */;
|
57
64
|
}
|
58
65
|
getOrganizationResource(resource) {
|
59
|
-
return this.
|
66
|
+
return this._organizationContext.getResource(resource);
|
60
67
|
}
|
61
68
|
isInsideOrganization(resource) {
|
62
69
|
return !!this.getOrganizationResource(resource);
|
@@ -64,19 +71,21 @@ let AbstractOrganizationContextService = class AbstractOrganizationContextServic
|
|
64
71
|
isCurrentOrganization(organizationIdentifier) {
|
65
72
|
switch (this.getApplicationState()) {
|
66
73
|
case 2 /* ApplicationState.RESOURCE */:
|
67
|
-
return (0, helpers_1.isSingleResourceOrganizationIdentifier)(organizationIdentifier) &&
|
74
|
+
return ((0, helpers_1.isSingleResourceOrganizationIdentifier)(organizationIdentifier) &&
|
75
|
+
(0, resources_1.isEqual)(organizationIdentifier, this._organizationContext.resources[0].uri));
|
68
76
|
case 3 /* ApplicationState.ORGANIZATION */:
|
69
|
-
return (0, helpers_1.isOrganizationIdentifier)(organizationIdentifier) &&
|
77
|
+
return ((0, helpers_1.isOrganizationIdentifier)(organizationIdentifier) &&
|
78
|
+
this._organizationContext.id === organizationIdentifier.id);
|
70
79
|
}
|
71
80
|
return false;
|
72
81
|
}
|
73
82
|
extAcceptChangedApplicationState(organizationContext, event) {
|
74
|
-
this.
|
83
|
+
this._organizationContext = this.reviveOrganizationUris(organizationContext);
|
75
84
|
this._onDidChangeApplicationState.fire(event);
|
76
85
|
this.releaseUpdateOrganizationBarrier();
|
77
86
|
}
|
78
87
|
extAcceptChangedOrganizationResources(organizationContext, event) {
|
79
|
-
this.
|
88
|
+
this._organizationContext = this.reviveOrganizationUris(organizationContext);
|
80
89
|
this._onDidChangeOrganizationResources.fire(event);
|
81
90
|
this.releaseUpdateOrganizationBarrier();
|
82
91
|
}
|
@@ -96,9 +105,10 @@ let AbstractOrganizationContextService = class AbstractOrganizationContextServic
|
|
96
105
|
}
|
97
106
|
}
|
98
107
|
reviveOrganizationUris(organizationData) {
|
99
|
-
let organizationContext
|
108
|
+
let organizationContext;
|
109
|
+
let organizationResources;
|
100
110
|
if (organizationData.resources) {
|
101
|
-
organizationResources = organizationData.resources.map(({ index, uri: uriComponent, name }) =>
|
111
|
+
organizationResources = organizationData.resources.map(({ index, uri: uriComponent, name }) => new core_3.OrganizationResource({ index, uri: uri_1.URI.revive(uriComponent), name }));
|
102
112
|
}
|
103
113
|
if (organizationData.configuration) {
|
104
114
|
organizationContext = uri_1.URI.revive(organizationData.configuration);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"abstract-organization-context-service.js","sourceRoot":"","sources":["../../src/services/abstract-organization-context-service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,0EAAuE;AACvE,8EAAoF;AACpF,uFAAuF;AACvF,gDAAmD;AACnD,8EAAoF;AAEpF,yCAA+C;AAC/C,6CAAgD;AAChD,
|
1
|
+
{"version":3,"file":"abstract-organization-context-service.js","sourceRoot":"","sources":["../../src/services/abstract-organization-context-service.ts"],"names":[],"mappings":"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"}
|