@adminide-stack/core 3.1.2-alpha.97 → 3.1.4-alpha.27
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 +1 -0
- package/lib/interfaces/generated/generated-models.d.ts +1173 -1277
- package/lib/interfaces/generated/generated-models.js +29 -29
- package/lib/interfaces/generated/generated-models.js.map +1 -1
- package/lib/interfaces/log/log-service.d.ts +1 -1
- package/lib/interfaces/organization/organizations-context.d.ts +4 -4
- package/lib/interfaces/permissions.d.ts +1 -1
- package/lib/interfaces/preferences-service.d.ts +1 -1
- 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/services/abstract-configuration.d.ts +1 -1
- package/lib/services/abstract-organization-context-service.d.ts +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 +2 -2
@@ -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;
|
@@ -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
1
|
import { IPreDefineBillingPermissions, IPreDefineAccountPermissions } from '../modules';
|
2
|
-
export
|
2
|
+
export type IPreDefinedPermissions = IPreDefineBillingPermissions | IPreDefineAccountPermissions;
|
@@ -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
|
};
|
@@ -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"}
|
@@ -7,7 +7,7 @@ import { CdmLogger } from '@cdm-logger/core';
|
|
7
7
|
import { Event, Emitter } from '@vscode-alt/monaco-editor/esm/vs/base/common/event';
|
8
8
|
import { InMemoryCache } from '@apollo/client';
|
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
12
|
protected apolloCache: InMemoryCache;
|
13
13
|
protected utility: any;
|
@@ -5,7 +5,7 @@ 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
10
|
protected organizationContext: OrganizationContext;
|
11
11
|
protected completeOrganizationBarrier: Barrier;
|
@@ -1 +1,9 @@
|
|
1
1
|
export declare function flatten<T extends Record<string, any>>(object: T, path?: string | null, separator?: string): T;
|
2
|
+
/**
|
3
|
+
* Expands a "hash" object an object.
|
4
|
+
*
|
5
|
+
* @param Object object The object to expand.
|
6
|
+
* @param Object options The options.
|
7
|
+
* @return Object The expanded object.
|
8
|
+
*/
|
9
|
+
export declare function expand(object: any, options: any): {};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.flatten = void 0;
|
3
|
+
exports.expand = exports.flatten = void 0;
|
4
4
|
function flatten(object, path = null, separator = '.') {
|
5
5
|
return Object.keys(object).reduce((acc, key) => {
|
6
6
|
const value = object[key];
|
@@ -17,4 +17,40 @@ function flatten(object, path = null, separator = '.') {
|
|
17
17
|
}, {});
|
18
18
|
}
|
19
19
|
exports.flatten = flatten;
|
20
|
+
/**
|
21
|
+
* Expands a "hash" object an object.
|
22
|
+
*
|
23
|
+
* @param Object object The object to expand.
|
24
|
+
* @param Object options The options.
|
25
|
+
* @return Object The expanded object.
|
26
|
+
*/
|
27
|
+
function expand(object, options) {
|
28
|
+
var expanded = {};
|
29
|
+
var options = options || {};
|
30
|
+
var separator = options.separator || '.';
|
31
|
+
var affix = options.affix ? separator + options.affix + separator : separator;
|
32
|
+
for (var path in object) {
|
33
|
+
var value = object[path];
|
34
|
+
var pointer = expanded;
|
35
|
+
if (path.indexOf('[') >= 0) {
|
36
|
+
path = path.replace(/\[/g, '[.').replace(/]/g, '');
|
37
|
+
}
|
38
|
+
var parts = path.split(separator).join(affix).split('.');
|
39
|
+
while (parts.length - 1) {
|
40
|
+
var key = parts.shift();
|
41
|
+
if (key.slice(-1) === '[') {
|
42
|
+
key = key.slice(0, -1);
|
43
|
+
pointer[key] = Array.isArray(pointer[key]) ? pointer[key] : [];
|
44
|
+
}
|
45
|
+
else {
|
46
|
+
pointer[key] = (pointer[key] !== null && typeof pointer[key] === 'object' && pointer[key].constructor === Object) ? pointer[key] : {};
|
47
|
+
}
|
48
|
+
pointer = pointer[key];
|
49
|
+
}
|
50
|
+
pointer[parts.shift()] = value;
|
51
|
+
}
|
52
|
+
return expanded;
|
53
|
+
}
|
54
|
+
exports.expand = expand;
|
55
|
+
;
|
20
56
|
//# sourceMappingURL=flatten-utils.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"flatten-utils.js","sourceRoot":"","sources":["../../src/utils/flatten-utils.ts"],"names":[],"mappings":";;;AAEA,SAAgB,OAAO,
|
1
|
+
{"version":3,"file":"flatten-utils.js","sourceRoot":"","sources":["../../src/utils/flatten-utils.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@adminide-stack/core",
|
3
|
-
"version": "3.1.
|
3
|
+
"version": "3.1.4-alpha.27",
|
4
4
|
"description": "AdminIDE core for higher packages to depend on",
|
5
5
|
"license": "ISC",
|
6
6
|
"author": "CDMBase LLC",
|
@@ -36,5 +36,5 @@
|
|
36
36
|
"typescript": {
|
37
37
|
"definition": "lib/index.d.ts"
|
38
38
|
},
|
39
|
-
"gitHead": "
|
39
|
+
"gitHead": "567a2a7eb70d896f9c1528548ae78bb288b5e22f"
|
40
40
|
}
|