@adminide-stack/core 0.1.1 → 1.0.201-alpha.0

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.
Files changed (286) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +2 -2
  3. package/lib/constants/billing-plan.d.ts +1 -0
  4. package/lib/constants/billing-plan.js +5 -0
  5. package/lib/constants/billing-plan.js.map +1 -0
  6. package/lib/constants/configuration.d.ts +6 -0
  7. package/lib/constants/configuration.js +10 -0
  8. package/lib/constants/configuration.js.map +1 -0
  9. package/lib/constants/constants.d.ts +2 -7
  10. package/lib/constants/constants.js +6 -0
  11. package/lib/constants/constants.js.map +1 -0
  12. package/lib/constants/default-workspace-config.d.ts +3 -0
  13. package/lib/constants/default-workspace-config.js +7 -0
  14. package/lib/constants/default-workspace-config.js.map +1 -0
  15. package/lib/constants/index.d.ts +6 -0
  16. package/lib/constants/index.js +20 -0
  17. package/lib/constants/index.js.map +1 -0
  18. package/lib/constants/routes.d.ts +4 -0
  19. package/lib/constants/routes.js +10 -0
  20. package/lib/constants/routes.js.map +1 -0
  21. package/lib/constants/types.d.ts +19 -0
  22. package/lib/constants/types.js +23 -0
  23. package/lib/constants/types.js.map +1 -0
  24. package/lib/constants/urls.d.ts +3 -0
  25. package/lib/constants/urls.js +7 -0
  26. package/lib/constants/urls.js.map +1 -0
  27. package/lib/core/configurations/configuration.d.ts +64 -0
  28. package/lib/core/configurations/configuration.js +236 -0
  29. package/lib/core/configurations/configuration.js.map +1 -0
  30. package/lib/core/configurations/events/abstract-configuration-change-event.d.ts +6 -0
  31. package/lib/core/configurations/events/abstract-configuration-change-event.js +27 -0
  32. package/lib/core/configurations/events/abstract-configuration-change-event.js.map +1 -0
  33. package/lib/core/configurations/events/all-keys-configuration-change-event.d.ts +17 -0
  34. package/lib/core/configurations/events/all-keys-configuration-change-event.js +33 -0
  35. package/lib/core/configurations/events/all-keys-configuration-change-event.js.map +1 -0
  36. package/lib/core/configurations/events/configuration-change-event.d.ts +24 -0
  37. package/lib/core/configurations/events/configuration-change-event.js +84 -0
  38. package/lib/core/configurations/events/configuration-change-event.js.map +1 -0
  39. package/lib/core/configurations/events/index.d.ts +4 -0
  40. package/lib/core/configurations/events/index.js +17 -0
  41. package/lib/core/configurations/events/index.js.map +1 -0
  42. package/lib/core/configurations/events/organization-configuration-change-event.d.ts +15 -0
  43. package/lib/core/configurations/events/organization-configuration-change-event.js +39 -0
  44. package/lib/core/configurations/events/organization-configuration-change-event.js.map +1 -0
  45. package/lib/core/configurations/helpers/configuration.d.ts +26 -0
  46. package/lib/core/configurations/helpers/configuration.js +203 -0
  47. package/lib/core/configurations/helpers/configuration.js.map +1 -0
  48. package/lib/core/configurations/helpers/index.d.ts +1 -0
  49. package/lib/core/configurations/helpers/index.js +14 -0
  50. package/lib/core/configurations/helpers/index.js.map +1 -0
  51. package/lib/core/configurations/index.d.ts +4 -0
  52. package/lib/core/configurations/index.js +17 -0
  53. package/lib/core/configurations/index.js.map +1 -0
  54. package/lib/core/configurations/models/configuration-model.d.ts +24 -0
  55. package/lib/core/configurations/models/configuration-model.js +143 -0
  56. package/lib/core/configurations/models/configuration-model.js.map +1 -0
  57. package/lib/core/configurations/models/index.d.ts +1 -0
  58. package/lib/core/configurations/models/index.js +14 -0
  59. package/lib/core/configurations/models/index.js.map +1 -0
  60. package/lib/core/disposable.d.ts +28 -0
  61. package/lib/core/disposable.js +82 -0
  62. package/lib/core/disposable.js.map +1 -0
  63. package/lib/core/event.d.ts +76 -0
  64. package/lib/core/event.js +262 -0
  65. package/lib/core/event.js.map +1 -0
  66. package/lib/core/event.test.d.ts +1 -0
  67. package/lib/core/event.test.js +15 -0
  68. package/lib/core/event.test.js.map +1 -0
  69. package/lib/core/index.d.ts +6 -0
  70. package/lib/core/index.js +19 -0
  71. package/lib/core/index.js.map +1 -0
  72. package/lib/core/organization/configuration.d.ts +31 -0
  73. package/lib/core/organization/configuration.js +87 -0
  74. package/lib/core/organization/configuration.js.map +1 -0
  75. package/lib/core/organization/helpers/index.d.ts +1 -0
  76. package/lib/core/organization/helpers/index.js +14 -0
  77. package/lib/core/organization/helpers/index.js.map +1 -0
  78. package/lib/core/organization/helpers/organization-helpers.d.ts +6 -0
  79. package/lib/core/organization/helpers/organization-helpers.js +34 -0
  80. package/lib/core/organization/helpers/organization-helpers.js.map +1 -0
  81. package/lib/core/organization/index.d.ts +3 -0
  82. package/lib/core/organization/index.js +16 -0
  83. package/lib/core/organization/index.js.map +1 -0
  84. package/lib/core/organization/organization.d.ts +31 -0
  85. package/lib/core/organization/organization.js +135 -0
  86. package/lib/core/organization/organization.js.map +1 -0
  87. package/lib/core/path.d.ts +58 -0
  88. package/lib/core/path.js +189 -0
  89. package/lib/core/path.js.map +1 -0
  90. package/lib/core/path.test.d.ts +1 -0
  91. package/lib/core/path.test.js +205 -0
  92. package/lib/core/path.test.js.map +1 -0
  93. package/lib/core/types.d.ts +1 -0
  94. package/lib/core/types.js +3 -0
  95. package/lib/core/types.js.map +1 -0
  96. package/lib/core/uri.d.ts +68 -0
  97. package/lib/core/uri.js +158 -0
  98. package/lib/core/uri.js.map +1 -0
  99. package/lib/core/uri.test.d.ts +1 -0
  100. package/lib/core/uri.test.js +136 -0
  101. package/lib/core/uri.test.js.map +1 -0
  102. package/lib/enums/connection-status.d.ts +6 -0
  103. package/lib/enums/connection-status.js +11 -0
  104. package/lib/enums/connection-status.js.map +1 -0
  105. package/lib/enums/index.d.ts +7 -0
  106. package/lib/enums/index.js +20 -0
  107. package/lib/enums/index.js.map +1 -0
  108. package/lib/enums/integration-configuration-status.d.ts +5 -0
  109. package/lib/enums/integration-configuration-status.js +10 -0
  110. package/lib/enums/integration-configuration-status.js.map +1 -0
  111. package/lib/enums/integrations-configuration-steps.d.ts +7 -0
  112. package/lib/enums/integrations-configuration-steps.js +12 -0
  113. package/lib/enums/integrations-configuration-steps.js.map +1 -0
  114. package/lib/enums/integrations-connection-names.d.ts +11 -0
  115. package/lib/enums/integrations-connection-names.js +17 -0
  116. package/lib/enums/integrations-connection-names.js.map +1 -0
  117. package/lib/enums/integrations.d.ts +9 -0
  118. package/lib/enums/integrations.js +14 -0
  119. package/lib/enums/integrations.js.map +1 -0
  120. package/lib/enums/permissions.d.ts +7 -0
  121. package/lib/enums/permissions.js +12 -0
  122. package/lib/enums/permissions.js.map +1 -0
  123. package/lib/enums/team-member-status.d.ts +4 -0
  124. package/lib/enums/team-member-status.js +9 -0
  125. package/lib/enums/team-member-status.js.map +1 -0
  126. package/lib/errors/auth-error-messages.d.ts +25 -0
  127. package/lib/errors/auth-error-messages.js +31 -0
  128. package/lib/errors/auth-error-messages.js.map +1 -0
  129. package/lib/errors/auth-error.d.ts +8 -0
  130. package/lib/errors/auth-error.js +13 -0
  131. package/lib/errors/auth-error.js.map +1 -0
  132. package/lib/errors/index.d.ts +2 -0
  133. package/lib/errors/index.js +15 -0
  134. package/lib/errors/index.js.map +1 -0
  135. package/lib/index.d.ts +6 -0
  136. package/lib/index.js +19 -143
  137. package/lib/index.js.map +1 -1
  138. package/lib/interfaces/apollo-context.d.ts +48 -0
  139. package/lib/interfaces/apollo-context.js +3 -0
  140. package/lib/interfaces/apollo-context.js.map +1 -0
  141. package/lib/interfaces/common.d.ts +7 -0
  142. package/lib/interfaces/common.js +3 -0
  143. package/lib/interfaces/common.js.map +1 -0
  144. package/lib/interfaces/configuration/configuration-file-service.d.ts +5 -0
  145. package/lib/interfaces/configuration/configuration-file-service.js +3 -0
  146. package/lib/interfaces/configuration/configuration-file-service.js.map +1 -0
  147. package/lib/interfaces/configuration/configuration-server-service.d.ts +10 -0
  148. package/lib/interfaces/configuration/configuration-server-service.js +3 -0
  149. package/lib/interfaces/configuration/configuration-server-service.js.map +1 -0
  150. package/lib/interfaces/configuration/configuration.d.ts +39 -0
  151. package/lib/interfaces/configuration/configuration.js +51 -0
  152. package/lib/interfaces/configuration/configuration.js.map +1 -0
  153. package/lib/interfaces/configuration/configuraton-service.d.ts +60 -0
  154. package/lib/interfaces/configuration/configuraton-service.js +3 -0
  155. package/lib/interfaces/configuration/configuraton-service.js.map +1 -0
  156. package/lib/interfaces/configuration/event.d.ts +12 -0
  157. package/lib/interfaces/configuration/event.js +3 -0
  158. package/lib/interfaces/configuration/event.js.map +1 -0
  159. package/lib/interfaces/configuration/index.d.ts +5 -0
  160. package/lib/interfaces/configuration/index.js +18 -0
  161. package/lib/interfaces/configuration/index.js.map +1 -0
  162. package/lib/interfaces/contex-key-service.d.ts +2 -0
  163. package/lib/interfaces/contex-key-service.js +3 -0
  164. package/lib/interfaces/contex-key-service.js.map +1 -0
  165. package/lib/interfaces/database-migration.d.ts +8 -0
  166. package/lib/interfaces/database-migration.js +3 -0
  167. package/lib/interfaces/database-migration.js.map +1 -0
  168. package/lib/interfaces/enum.d.ts +26 -0
  169. package/lib/interfaces/enum.js +71 -0
  170. package/lib/interfaces/enum.js.map +1 -0
  171. package/lib/interfaces/environment/argv.d.ts +6 -0
  172. package/lib/interfaces/environment/argv.js +3 -0
  173. package/lib/interfaces/environment/argv.js.map +1 -0
  174. package/lib/interfaces/environment/environment-service.d.ts +7 -0
  175. package/lib/interfaces/environment/environment-service.js +3 -0
  176. package/lib/interfaces/environment/environment-service.js.map +1 -0
  177. package/lib/interfaces/environment/index.d.ts +2 -0
  178. package/lib/interfaces/environment/index.js +15 -0
  179. package/lib/interfaces/environment/index.js.map +1 -0
  180. package/lib/interfaces/generated/generated-models.d.ts +10956 -0
  181. package/lib/interfaces/generated/generated-models.js +3980 -0
  182. package/lib/interfaces/generated/generated-models.js.map +1 -0
  183. package/lib/interfaces/generated/index.d.ts +1 -0
  184. package/lib/interfaces/generated/index.js +14 -0
  185. package/lib/interfaces/generated/index.js.map +1 -0
  186. package/lib/interfaces/index.d.ts +17 -1
  187. package/lib/interfaces/index.js +30 -0
  188. package/lib/interfaces/index.js.map +1 -0
  189. package/lib/interfaces/lifecycle-service.d.ts +1 -0
  190. package/lib/interfaces/lifecycle-service.js +8 -0
  191. package/lib/interfaces/lifecycle-service.js.map +1 -0
  192. package/lib/interfaces/log/index.d.ts +1 -0
  193. package/lib/interfaces/log/index.js +14 -0
  194. package/lib/interfaces/log/index.js.map +1 -0
  195. package/lib/interfaces/log/log-service.d.ts +16 -0
  196. package/lib/interfaces/log/log-service.js +3 -0
  197. package/lib/interfaces/log/log-service.js.map +1 -0
  198. package/lib/interfaces/nav-items.d.ts +5 -0
  199. package/lib/interfaces/nav-items.js +3 -0
  200. package/lib/interfaces/nav-items.js.map +1 -0
  201. package/lib/interfaces/organization/index.d.ts +3 -0
  202. package/lib/interfaces/organization/index.js +16 -0
  203. package/lib/interfaces/organization/index.js.map +1 -0
  204. package/lib/interfaces/organization/organization-context-service.d.ts +65 -0
  205. package/lib/interfaces/organization/organization-context-service.js +3 -0
  206. package/lib/interfaces/organization/organization-context-service.js.map +1 -0
  207. package/lib/interfaces/organization/organization-context.d.ts +39 -0
  208. package/lib/interfaces/organization/organization-context.js +31 -0
  209. package/lib/interfaces/organization/organization-context.js.map +1 -0
  210. package/lib/interfaces/organization/organizations-context.d.ts +35 -0
  211. package/lib/interfaces/organization/organizations-context.js +3 -0
  212. package/lib/interfaces/organization/organizations-context.js.map +1 -0
  213. package/lib/interfaces/page-store.d.ts +16 -0
  214. package/lib/interfaces/page-store.js +3 -0
  215. package/lib/interfaces/page-store.js.map +1 -0
  216. package/lib/interfaces/permissions.d.ts +2 -0
  217. package/lib/interfaces/permissions.js +3 -0
  218. package/lib/interfaces/permissions.js.map +1 -0
  219. package/lib/interfaces/preferences-service.d.ts +40 -0
  220. package/lib/interfaces/preferences-service.js +3 -0
  221. package/lib/interfaces/preferences-service.js.map +1 -0
  222. package/lib/interfaces/service.d.ts +18 -0
  223. package/lib/interfaces/service.js +3 -0
  224. package/lib/interfaces/service.js.map +1 -0
  225. package/lib/interfaces/workbench-exports.d.ts +5 -0
  226. package/lib/interfaces/workbench-exports.js +6 -0
  227. package/lib/interfaces/workbench-exports.js.map +1 -0
  228. package/lib/modules/account-api/enums/index.d.ts +51 -0
  229. package/lib/modules/account-api/enums/index.js +56 -0
  230. package/lib/modules/account-api/enums/index.js.map +1 -0
  231. package/lib/modules/account-api/index.d.ts +1 -0
  232. package/lib/modules/account-api/index.js +14 -0
  233. package/lib/modules/account-api/index.js.map +1 -0
  234. package/lib/modules/billing-api/enums/index.d.ts +22 -0
  235. package/lib/modules/billing-api/enums/index.js +28 -0
  236. package/lib/modules/billing-api/enums/index.js.map +1 -0
  237. package/lib/modules/billing-api/index.d.ts +1 -0
  238. package/lib/modules/billing-api/index.js +14 -0
  239. package/lib/modules/billing-api/index.js.map +1 -0
  240. package/lib/modules/index.d.ts +2 -0
  241. package/lib/modules/index.js +15 -0
  242. package/lib/modules/index.js.map +1 -0
  243. package/lib/services/abstract-configuration.d.ts +54 -0
  244. package/lib/services/abstract-configuration.js +80 -0
  245. package/lib/services/abstract-configuration.js.map +1 -0
  246. package/lib/services/abstract-organization-context-service.d.ts +40 -0
  247. package/lib/services/abstract-organization-context-service.js +115 -0
  248. package/lib/services/abstract-organization-context-service.js.map +1 -0
  249. package/lib/services/index.d.ts +2 -0
  250. package/lib/services/index.js +15 -0
  251. package/lib/services/index.js.map +1 -0
  252. package/lib/utils/configuration-utils.d.ts +4 -0
  253. package/lib/utils/configuration-utils.js +15 -0
  254. package/lib/utils/configuration-utils.js.map +1 -0
  255. package/lib/utils/date-utils.d.ts +1 -0
  256. package/lib/utils/date-utils.js +9 -0
  257. package/lib/utils/date-utils.js.map +1 -0
  258. package/lib/utils/flatten-utils.d.ts +1 -0
  259. package/lib/utils/flatten-utils.js +20 -0
  260. package/lib/utils/flatten-utils.js.map +1 -0
  261. package/lib/utils/generate-uri.d.ts +35 -0
  262. package/lib/utils/generate-uri.js +49 -0
  263. package/lib/utils/generate-uri.js.map +1 -0
  264. package/lib/utils/generated-settings-id.d.ts +2 -0
  265. package/lib/utils/generated-settings-id.js +12 -0
  266. package/lib/utils/generated-settings-id.js.map +1 -0
  267. package/lib/utils/index.d.ts +9 -0
  268. package/lib/utils/index.js +22 -0
  269. package/lib/utils/index.js.map +1 -0
  270. package/lib/utils/omit-deep.d.ts +1 -0
  271. package/lib/utils/omit-deep.js +16 -0
  272. package/lib/utils/omit-deep.js.map +1 -0
  273. package/lib/utils/roles-utils.d.ts +2 -0
  274. package/lib/utils/roles-utils.js +11 -0
  275. package/lib/utils/roles-utils.js.map +1 -0
  276. package/lib/utils/uri.d.ts +3 -0
  277. package/lib/utils/uri.js +21 -0
  278. package/lib/utils/uri.js.map +1 -0
  279. package/lib/utils/utils.d.ts +3 -0
  280. package/lib/utils/utils.js +37 -0
  281. package/lib/utils/utils.js.map +1 -0
  282. package/lib/utils/validations.d.ts +1 -0
  283. package/lib/utils/validations.js +9 -0
  284. package/lib/utils/validations.js.map +1 -0
  285. package/package.json +34 -25
  286. package/lib/interfaces/workspace.d.ts +0 -37
@@ -0,0 +1 @@
1
+ export * from './generated-models';
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./generated-models"), exports);
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/interfaces/generated/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAmC"}
@@ -1 +1,17 @@
1
- export * from './workspace';
1
+ export * from './enum';
2
+ export * from './common';
3
+ export * from './generated';
4
+ export * from './nav-items';
5
+ export * from './page-store';
6
+ export * from './apollo-context';
7
+ export * from './configuration';
8
+ export * from './organization';
9
+ export * from './preferences-service';
10
+ export * from './workbench-exports';
11
+ export * from './contex-key-service';
12
+ export * from './lifecycle-service';
13
+ export * from './database-migration';
14
+ export * from './permissions';
15
+ export * from './service';
16
+ export * from './log';
17
+ export * from './environment';
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./enum"), exports);
14
+ __exportStar(require("./common"), exports);
15
+ __exportStar(require("./generated"), exports);
16
+ __exportStar(require("./nav-items"), exports);
17
+ __exportStar(require("./page-store"), exports);
18
+ __exportStar(require("./apollo-context"), exports);
19
+ __exportStar(require("./configuration"), exports);
20
+ __exportStar(require("./organization"), exports);
21
+ __exportStar(require("./preferences-service"), exports);
22
+ __exportStar(require("./workbench-exports"), exports);
23
+ __exportStar(require("./contex-key-service"), exports);
24
+ __exportStar(require("./lifecycle-service"), exports);
25
+ __exportStar(require("./database-migration"), exports);
26
+ __exportStar(require("./permissions"), exports);
27
+ __exportStar(require("./service"), exports);
28
+ __exportStar(require("./log"), exports);
29
+ __exportStar(require("./environment"), exports);
30
+ //# sourceMappingURL=index.js.map
@@ -0,0 +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"}
@@ -0,0 +1 @@
1
+ export { ILifecycleService, LifecyclePhase, WillShutdownEvent, StartupKind, BeforeShutdownEvent, ShutdownReason } from '@workbench-stack/core';
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ShutdownReason = exports.StartupKind = exports.LifecyclePhase = void 0;
4
+ var core_1 = require("@workbench-stack/core");
5
+ Object.defineProperty(exports, "LifecyclePhase", { enumerable: true, get: function () { return core_1.LifecyclePhase; } });
6
+ Object.defineProperty(exports, "StartupKind", { enumerable: true, get: function () { return core_1.StartupKind; } });
7
+ Object.defineProperty(exports, "ShutdownReason", { enumerable: true, get: function () { return core_1.ShutdownReason; } });
8
+ //# sourceMappingURL=lifecycle-service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lifecycle-service.js","sourceRoot":"","sources":["../../src/interfaces/lifecycle-service.ts"],"names":[],"mappings":";;;AACA,8CAA+I;AAAnH,sGAAA,cAAc,OAAA;AAAqB,mGAAA,WAAW,OAAA;AAAuB,sGAAA,cAAc,OAAA"}
@@ -0,0 +1 @@
1
+ export * from './log-service';
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./log-service"), exports);
14
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/interfaces/log/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,gDAA8B"}
@@ -0,0 +1,16 @@
1
+ import { Event } from '@vscode-alt/monaco-editor/esm/vs/base/common/event';
2
+ import { IDisposable } from '@vscode-alt/monaco-editor/esm/vs/base/common/lifecycle';
3
+ import { CdmLogger } from '@cdm-logger/core';
4
+ declare type LogLevel = CdmLogger.LoggerLevel;
5
+ export interface ILogService extends IDisposable {
6
+ onDidChangeLogLevel: Event<LogLevel>;
7
+ getLevel(): LogLevel;
8
+ setLevel(level: LogLevel): void;
9
+ trace(message: string, ...args: any[]): void;
10
+ debug(message: string, ...args: any[]): void;
11
+ info(message: string, ...args: any[]): void;
12
+ warn(message: string, ...args: any[]): void;
13
+ error(message: string | Error, ...args: any[]): void;
14
+ critical(message: string | Error, ...args: any[]): void;
15
+ }
16
+ export {};
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=log-service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"log-service.js","sourceRoot":"","sources":["../../../src/interfaces/log/log-service.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ export interface INavItem {
2
+ to: string;
3
+ content: string;
4
+ base: boolean;
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=nav-items.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nav-items.js","sourceRoot":"","sources":["../../src/interfaces/nav-items.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ export * from './organization-context';
2
+ export * from './organizations-context';
3
+ export * from './organization-context-service';
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./organization-context"), exports);
14
+ __exportStar(require("./organizations-context"), exports);
15
+ __exportStar(require("./organization-context-service"), exports);
16
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/interfaces/organization/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAuC;AACvC,0DAAwC;AACxC,iEAA+C"}
@@ -0,0 +1,65 @@
1
+ import { URI } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri';
2
+ import { Event } from '@vscode-alt/monaco-editor/esm/vs/base/common/event';
3
+ import { IDisposable } from '@vscode-alt/monaco-editor/esm/vs/base/common/lifecycle';
4
+ import { IOrganizationData, IOrganizationIdentifier, IResourceCreationData_Input } from '../generated';
5
+ import { IOrganizationResource, ApplicationState, IOrganizationResourcesChangeEvent, IOrganizationContext } from './organization-context';
6
+ import { IOrganizationResourceCreationData, ISingleResourceOrganizationIdentifier } from './organizations-context';
7
+ export interface IOrganizationContextService extends IDisposable {
8
+ /**
9
+ * An event which fires on workbench state changes.
10
+ */
11
+ onDidChangeApplicationState: Event<ApplicationState>;
12
+ /**
13
+ * An event which fires on organization name changes.
14
+ */
15
+ onDidChangeOrganizationName: Event<string>;
16
+ /**
17
+ * An event which fires on organization resources change.
18
+ */
19
+ onDidChangeOrganizationResources: Event<IOrganizationResourcesChangeEvent>;
20
+ /**
21
+ * Provides access to the complete organization object.
22
+ */
23
+ getCompleteOrganization(): Promise<IOrganizationContext>;
24
+ /**
25
+ * Provides access to the organization object the platform is running with.
26
+ */
27
+ getOrganization(): IOrganizationContext;
28
+ /**
29
+ * Return the state of the workbench.
30
+ *
31
+ * ApplicationState.EMPTY - if the workbench was opened with empty window or file
32
+ * ApplicationState.FOLDER - if the workbench was opened with a resource
33
+ * ApplicationState.WORKSPACE - if the workbench was opened with a organization
34
+ */
35
+ getApplicationState(): ApplicationState;
36
+ /**
37
+ * Returns the resource for the given resource from the organization.
38
+ * Can be null if there is no organization or the resource is not inside the organization.
39
+ */
40
+ getOrganizationResource(resource: URI): IOrganizationResource;
41
+ /**
42
+ * Return `true` if the current organization has the given identifier otherwise `false`.
43
+ */
44
+ isCurrentOrganization(organizationIdentifier: ISingleResourceOrganizationIdentifier | IOrganizationIdentifier): boolean;
45
+ /**
46
+ * Returns if the provided resource is inside the organization or not.
47
+ */
48
+ isInsideOrganization(resource: URI): boolean;
49
+ addResources(resourcesToAdd: IOrganizationResourceCreationData[], index?: number): Promise<void>;
50
+ removeResources(resourcesToRemove: URI[]): Promise<void>;
51
+ updateResources(resourcesToAdd: IOrganizationResourceCreationData[], resourcesToRemove: URI[], index?: number): Promise<void>;
52
+ }
53
+ export interface IClientOrganizationContextService extends IOrganizationContextService {
54
+ extAcceptChangedApplicationState(organization: IOrganizationData, event: ApplicationState): any;
55
+ extAcceptChangedOrganizationResources(data: IOrganizationData, event: IOrganizationResourcesChangeEvent): any;
56
+ extAcceptChangedOrganizationName(date: IOrganizationData): any;
57
+ initialize(args: any): any;
58
+ }
59
+ export interface IServerOrganizationContextService {
60
+ addResources(orgId: string, resourcesToAdd: IResourceCreationData_Input[], index?: number): Promise<void>;
61
+ removeResources(orgId: string, resourcesToRemove: URI[]): Promise<void>;
62
+ updateResources(orgId: string, resourcesToAdd: IResourceCreationData_Input[], resourcesToRemove: URI[], index?: number): Promise<void>;
63
+ getOrganizationContext(orgId: string): Promise<IOrganizationData>;
64
+ getOrganizationResources(resource: URI): Promise<IOrganizationResource[]>;
65
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=organization-context-service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organization-context-service.js","sourceRoot":"","sources":["../../../src/interfaces/organization/organization-context-service.ts"],"names":[],"mappings":""}
@@ -0,0 +1,39 @@
1
+ import { URI } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri';
2
+ import { IOrganizationResourceData, IOrganizationData } from '../generated';
3
+ export declare const enum ApplicationState {
4
+ EMPTY = 1,
5
+ RESOURCE = 2,
6
+ ORGANIZATION = 3
7
+ }
8
+ export interface IOrganizationResourcesChangeEvent {
9
+ added: IOrganizationResource[];
10
+ removed: IOrganizationResource[];
11
+ changed: IOrganizationResource[];
12
+ }
13
+ export declare namespace IOrganizationContext {
14
+ function isIOrganization(thing: any): thing is IOrganizationContext;
15
+ }
16
+ export interface IOrganizationContext extends IOrganizationData {
17
+ /**
18
+ * the unique of the organization.
19
+ */
20
+ readonly id: string;
21
+ /**
22
+ * Resources in the organization.
23
+ */
24
+ readonly resources: IOrganizationResource[];
25
+ /**
26
+ * the location of the organization configuration
27
+ */
28
+ readonly configuration?: URI | null;
29
+ getResource?(resource: URI): IOrganizationResource | null;
30
+ }
31
+ export declare namespace IOrganizationResource {
32
+ function isIOrganizationResource(thing: any): thing is IOrganizationResource;
33
+ }
34
+ export interface IOrganizationResource extends IOrganizationResourceData {
35
+ /**
36
+ * Given organization resource relative path, returns the resource with the absolute path.
37
+ */
38
+ toResource?: (relativePath: string) => URI;
39
+ }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.IOrganizationResource = exports.IOrganizationContext = exports.ApplicationState = void 0;
4
+ const uri_1 = require("@vscode-alt/monaco-editor/esm/vs/base/common/uri");
5
+ var ApplicationState;
6
+ (function (ApplicationState) {
7
+ ApplicationState[ApplicationState["EMPTY"] = 1] = "EMPTY";
8
+ ApplicationState[ApplicationState["RESOURCE"] = 2] = "RESOURCE";
9
+ ApplicationState[ApplicationState["ORGANIZATION"] = 3] = "ORGANIZATION";
10
+ })(ApplicationState = exports.ApplicationState || (exports.ApplicationState = {}));
11
+ var IOrganizationContext;
12
+ (function (IOrganizationContext) {
13
+ function isIOrganization(thing) {
14
+ return thing && typeof thing === 'object'
15
+ && typeof thing.id === 'string'
16
+ && Array.isArray(thing.resources);
17
+ }
18
+ IOrganizationContext.isIOrganization = isIOrganization;
19
+ })(IOrganizationContext = exports.IOrganizationContext || (exports.IOrganizationContext = {}));
20
+ // since IOrganizationFolder interface and namespace should exist in same file
21
+ var IOrganizationResource;
22
+ (function (IOrganizationResource) {
23
+ function isIOrganizationResource(thing) {
24
+ return thing && typeof thing === 'object'
25
+ && uri_1.URI.isUri(thing.uri)
26
+ && typeof thing.name === 'string'
27
+ && typeof thing.toResource === 'function';
28
+ }
29
+ IOrganizationResource.isIOrganizationResource = isIOrganizationResource;
30
+ })(IOrganizationResource = exports.IOrganizationResource || (exports.IOrganizationResource = {}));
31
+ //# sourceMappingURL=organization-context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organization-context.js","sourceRoot":"","sources":["../../../src/interfaces/organization/organization-context.ts"],"names":[],"mappings":";;;AAAA,0EAAuE;AAIvE,IAAkB,gBAIjB;AAJD,WAAkB,gBAAgB;IAC9B,yDAAS,CAAA;IACT,+DAAQ,CAAA;IACR,uEAAY,CAAA;AAChB,CAAC,EAJiB,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAIjC;AAQD,IAAiB,oBAAoB,CAMpC;AAND,WAAiB,oBAAoB;IACjC,SAAgB,eAAe,CAAC,KAAU;QACtC,OAAO,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ;eAClC,OAAQ,KAA8B,CAAC,EAAE,KAAK,QAAQ;eACtD,KAAK,CAAC,OAAO,CAAE,KAA8B,CAAC,SAAS,CAAC,CAAC;IACpE,CAAC;IAJe,oCAAe,kBAI9B,CAAA;AACL,CAAC,EANgB,oBAAoB,GAApB,4BAAoB,KAApB,4BAAoB,QAMpC;AAuBD,8EAA8E;AAC9E,IAAiB,qBAAqB,CAOrC;AAPD,WAAiB,qBAAqB;IAClC,SAAgB,uBAAuB,CAAC,KAAU;QAC9C,OAAO,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ;eAClC,SAAG,CAAC,KAAK,CAAE,KAA+B,CAAC,GAAG,CAAC;eAC/C,OAAQ,KAA+B,CAAC,IAAI,KAAK,QAAQ;eACzD,OAAQ,KAA+B,CAAC,UAAU,KAAK,UAAU,CAAC;IAC7E,CAAC;IALe,6CAAuB,0BAKtC,CAAA;AACL,CAAC,EAPgB,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAOrC"}
@@ -0,0 +1,35 @@
1
+ import { URI } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri';
2
+ import { IOrganizationIdentifier } from '../generated';
3
+ /**
4
+ * A single folder workspace identifier is just the path to the folder.
5
+ */
6
+ export declare type ISingleResourceOrganizationIdentifier = URI;
7
+ export interface ISingleResourceOrganizaionInitializationPayload {
8
+ id: string;
9
+ resource: ISingleResourceOrganizationIdentifier;
10
+ }
11
+ export interface IOrganizationResourceCreationData {
12
+ uri: URI;
13
+ name?: string;
14
+ }
15
+ export interface IStoredOrganization {
16
+ folders: IStoredOrganizationResource[];
17
+ }
18
+ export interface IRawFileOrganizationResource {
19
+ path: string;
20
+ name?: string;
21
+ }
22
+ export interface IRawUriOrganizationResource {
23
+ uri: string;
24
+ name?: string;
25
+ }
26
+ export declare type IStoredOrganizationResource = IRawFileOrganizationResource | IRawUriOrganizationResource;
27
+ export declare type IMultiResourceOrganizationInitializationPayload = IOrganizationIdentifier;
28
+ export interface ISingleResourceOrganizationInitializationPayload {
29
+ id: string;
30
+ folder: ISingleResourceOrganizationIdentifier;
31
+ }
32
+ export interface IEmptyOrganizationInitializationPayload {
33
+ id: string;
34
+ }
35
+ export declare type IOrganizationInitializationPayload = IMultiResourceOrganizationInitializationPayload | ISingleResourceOrganizationInitializationPayload | IEmptyOrganizationInitializationPayload;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=organizations-context.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"organizations-context.js","sourceRoot":"","sources":["../../../src/interfaces/organization/organizations-context.ts"],"names":[],"mappings":""}
@@ -0,0 +1,16 @@
1
+ import { IMenuPosition, IMappedData } from '@common-stack/client-react';
2
+ export interface IPageStore extends IMappedData {
3
+ key: string;
4
+ tab?: string;
5
+ tabTitle?: string;
6
+ path: string;
7
+ exact?: boolean;
8
+ name?: string;
9
+ authority?: string[];
10
+ /**
11
+ * When `exact: false` we may not have an component
12
+ */
13
+ component?: any;
14
+ position?: IMenuPosition;
15
+ icon?: any;
16
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=page-store.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"page-store.js","sourceRoot":"","sources":["../../src/interfaces/page-store.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import { IPreDefineBillingPermissions, IPreDefineAccountPermissions } from '../modules';
2
+ export declare type IPreDefinedPermissions = IPreDefineBillingPermissions | IPreDefineAccountPermissions;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=permissions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"permissions.js","sourceRoot":"","sources":["../../src/interfaces/permissions.ts"],"names":[],"mappings":""}
@@ -0,0 +1,40 @@
1
+ import { URI } from '@vscode-alt/monaco-editor/esm/vs/base/common/uri';
2
+ import { ISettingsSubject, IViewerSettingsInput, IRoleInput, IPermissionSubject, IViewerSettingsSubject, IPolicySubject, IViewerPoliciesInput } from './generated';
3
+ import { ConfigurationTarget, IPreferencesInput, IPreferencesOpenOptions_Input as IPreferencesOpenOptions, IContributionSettings } from './generated';
4
+ export declare type IPrefFragment = {
5
+ fragmentName?: string;
6
+ fragmentDoc?: string;
7
+ };
8
+ export interface IPreferencesService {
9
+ initiateSettingsFile(resource: URI): Promise<any>;
10
+ defaultViewerSettingsSubject(target: ConfigurationTarget): ISettingsSubject;
11
+ /**
12
+ * Viewer Settings for an Organization and its resources.
13
+ * @param params
14
+ * @param context
15
+ */
16
+ viewerSettings<T = IViewerSettingsSubject>(input: IViewerSettingsInput, fragment?: IPrefFragment): Promise<T>;
17
+ viewerPolicies<T = IPolicySubject>(input: IViewerPoliciesInput, fragment?: IPrefFragment): Promise<T>;
18
+ viewerPermissions<T = IPermissionSubject>(input: IRoleInput, fragment?: IPrefFragment): Promise<T>;
19
+ }
20
+ export interface IPreferenceClientService {
21
+ readonly defaultKeybindingsResource: URI;
22
+ userSettingsResource: URI;
23
+ organizationSettingsResource: URI | null;
24
+ getResourceSettingsResource(resource: URI): URI | null;
25
+ /**
26
+ *
27
+ * @param resource is the resource which to be opened.
28
+ * @param jsonEditor If the data should be shown in jsonc format
29
+ * @param options to customize the default URI
30
+ */
31
+ openSettings(resource: URI, jsonEditor: boolean | undefined, options?: IPreferencesOpenOptions): Promise<IPreferencesInput>;
32
+ getConfigurationTargetFromSettingsResource(resource: URI): ConfigurationTarget;
33
+ resolveSettings(uri: URI): Promise<({
34
+ __typename?: 'ContributionSettings';
35
+ } & {
36
+ __typename?: 'ContributionSettings';
37
+ } & Pick<IContributionSettings, 'type' | 'key' | 'value' | 'description' | 'descriptionIsMarkdown' | 'deprecationMessage' | 'enum' | 'enumDescriptions' | 'enumDescriptionsAreMarkdown' | 'tags'>)[]>;
38
+ createIfNotExists(resource: URI, contents: string): Promise<any>;
39
+ resetSetting(resource: URI, settingKey: string): Promise<boolean>;
40
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=preferences-service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"preferences-service.js","sourceRoot":"","sources":["../../src/interfaces/preferences-service.ts"],"names":[],"mappings":""}
@@ -0,0 +1,18 @@
1
+ import { ILifecycleService } from './lifecycle-service';
2
+ import { IContextKeyService } from './contex-key-service';
3
+ import { IClientConfigurationService, IConfigurationFileService } from './configuration';
4
+ import { IOrganizationContextService } from './organization';
5
+ import { IPreferenceClientService } from './preferences-service';
6
+ import { IEnvironmentService } from './environment';
7
+ import { IRegistry } from './workbench-exports';
8
+ export interface IClientService {
9
+ readonly configurationService: IClientConfigurationService;
10
+ readonly permissionService?: IClientConfigurationService;
11
+ readonly contextKeyService: IContextKeyService;
12
+ readonly organizationContextService: IOrganizationContextService;
13
+ readonly lifecycleService: ILifecycleService;
14
+ readonly preferenceService: IPreferenceClientService;
15
+ readonly registry: IRegistry;
16
+ readonly environmentService?: IEnvironmentService;
17
+ readonly configurationFileService?: IConfigurationFileService;
18
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"service.js","sourceRoot":"","sources":["../../src/interfaces/service.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ import { IConfigurationRegistry as IWorkspaceIConfigurationRegistry, IConfigurationPropertySchema as IWorksapceConfigurationPropertySchema, IConfigurationNode as IWorkspaceConfigurationNode, ConfigurationScope } from '@workbench-stack/core';
2
+ export declare type IConfigurationRegistry = IWorkspaceIConfigurationRegistry<ConfigurationScope>;
3
+ export declare type IConfigurationPropertySchema = IWorksapceConfigurationPropertySchema<ConfigurationScope>;
4
+ export declare type IConfigurationNode = IWorkspaceConfigurationNode<ConfigurationScope>;
5
+ export { IRegistry, Extensions } from '@workbench-stack/core';
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Extensions = void 0;
4
+ var core_1 = require("@workbench-stack/core");
5
+ Object.defineProperty(exports, "Extensions", { enumerable: true, get: function () { return core_1.Extensions; } });
6
+ //# sourceMappingURL=workbench-exports.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workbench-exports.js","sourceRoot":"","sources":["../../src/interfaces/workbench-exports.ts"],"names":[],"mappings":";;;AAWA,8CAA8D;AAA1C,kGAAA,UAAU,OAAA"}
@@ -0,0 +1,51 @@
1
+ export declare enum IPreDefineAccountPermissions {
2
+ secureUser = "account.user.secure",
3
+ guestUser = "account.user.guest",
4
+ inviteMember = "organization.teams.inviteMember",
5
+ viewTeams = "organization.teams.view",
6
+ createTeams = "organization.teams.create",
7
+ editTeams = "organization.teams.edit",
8
+ deleteTeams = "organization.teams.delete",
9
+ manageTeams = "organization.teams.manage",
10
+ accessTeamDashboard = "organization.teams.dashboard.access",
11
+ viewProjects = "organization.projects.view",
12
+ createProjects = "organization.projects.create",
13
+ editProjects = "organization.projects.edit",
14
+ deleteProjects = "organization.projects.delete",
15
+ manageProjects = "organization.projects.manage",
16
+ viewProjectStatus = "organization.projects.status.view",
17
+ viewMembers = "organization.members.view",
18
+ createMembers = "organization.members.create",
19
+ editMembers = "organization.members.edit",
20
+ deleteMembers = "organization.members.delete",
21
+ manageMembers = "organization.members.manage",
22
+ viewClients = "organization.clients.view",
23
+ createClients = "organization.clients.create",
24
+ editClients = "organization.clients.edit",
25
+ deleteClients = "organization.clients.delete",
26
+ manageClients = "organization.clients.manage",
27
+ viewTasks = "organization.tasks.view",
28
+ createTasks = "organization.tasks.create",
29
+ editTasks = "organization.tasks.edit",
30
+ deleteTasks = "organization.tasks.delete",
31
+ manageTasks = "organization.tasks.manage",
32
+ viewTags = "organization.tags.view",
33
+ createTags = "organization.tags.create",
34
+ editTags = "organization.tags.edit",
35
+ deleteTags = "organization.tags.delete",
36
+ manageTags = "organization.tags.manage",
37
+ viewOrganization = "organization.view",
38
+ createOrganization = "organization.create",
39
+ editOrganization = "organization.edit",
40
+ deleteOrganization = "organization.delete",
41
+ manageOrganization = "organization.manage",
42
+ viewRoles = "organization.roles.view",
43
+ editRoles = "organization.roles.edit",
44
+ viewPermissions = "organization.permissions.view",
45
+ editPermissions = "organization.permissions.edit",
46
+ viewPolicies = "organization.policies.view",
47
+ editPolicies = "organization.policies.edit",
48
+ viewSettings = "organization.settings.view",
49
+ editSettings = "organization.settings.edit",
50
+ viewReports = "organization.reports.view"
51
+ }