@intuitionrobotics/user-account 0.46.0 → 0.47.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 (74) hide show
  1. package/app-backend/api/_user-account.js +20 -2
  2. package/app-backend/api/_user-account.js.map +1 -1
  3. package/app-backend/api/v1/account/_assert.d.ts +2 -3
  4. package/app-backend/api/v1/account/_assert.js +24 -6
  5. package/app-backend/api/v1/account/_assert.js.map +1 -1
  6. package/app-backend/api/v1/account/_imports.d.ts +4 -0
  7. package/app-backend/api/v1/account/_imports.js +40 -0
  8. package/app-backend/api/v1/account/_imports.js.map +1 -0
  9. package/app-backend/api/v1/account/create.js +24 -6
  10. package/app-backend/api/v1/account/create.js.map +1 -1
  11. package/app-backend/api/v1/account/list.js +24 -6
  12. package/app-backend/api/v1/account/list.js.map +1 -1
  13. package/app-backend/api/v1/account/login-saml.js +22 -4
  14. package/app-backend/api/v1/account/login-saml.js.map +1 -1
  15. package/app-backend/api/v1/account/login.js +24 -12
  16. package/app-backend/api/v1/account/login.js.map +1 -1
  17. package/app-backend/api/v1/account/logout.js +26 -9
  18. package/app-backend/api/v1/account/logout.js.map +1 -1
  19. package/app-backend/api/v1/account/upsert.js +9 -10
  20. package/app-backend/api/v1/account/upsert.js.map +1 -1
  21. package/app-backend/api/v1/account/validate.js +24 -6
  22. package/app-backend/api/v1/account/validate.js.map +1 -1
  23. package/app-backend/apis/add-new-account.d.ts +3 -3
  24. package/app-backend/apis/add-new-account.js +24 -12
  25. package/app-backend/apis/add-new-account.js.map +1 -1
  26. package/app-backend/core/module-pack.d.ts +2 -0
  27. package/app-backend/core/module-pack.js +34 -0
  28. package/app-backend/core/module-pack.js.map +1 -1
  29. package/app-backend/modules/AccountModule.d.ts +8 -11
  30. package/app-backend/modules/AccountModule.js +85 -61
  31. package/app-backend/modules/AccountModule.js.map +1 -1
  32. package/app-backend/modules/JWTBuilder.d.ts +1 -1
  33. package/app-backend/modules/JWTBuilder.js +6 -7
  34. package/app-backend/modules/JWTBuilder.js.map +1 -1
  35. package/app-backend/modules/SamlModule.d.ts +4 -5
  36. package/app-backend/modules/SamlModule.js +23 -7
  37. package/app-backend/modules/SamlModule.js.map +1 -1
  38. package/app-backend/modules/SecretsModule.d.ts +4 -6
  39. package/app-backend/modules/SecretsModule.js +27 -30
  40. package/app-backend/modules/SecretsModule.js.map +1 -1
  41. package/app-backend/modules/{types.d.ts → _imports.d.ts} +4 -3
  42. package/app-backend/modules/_imports.js +36 -0
  43. package/app-backend/modules/_imports.js.map +1 -0
  44. package/app-frontend/core/module-pack.d.ts +1 -0
  45. package/app-frontend/core/module-pack.js +33 -0
  46. package/app-frontend/core/module-pack.js.map +1 -1
  47. package/app-frontend/modules/AccountModule.d.ts +4 -5
  48. package/app-frontend/modules/AccountModule.js +54 -42
  49. package/app-frontend/modules/AccountModule.js.map +1 -1
  50. package/app-frontend/ui/Component_Login.d.ts +21 -0
  51. package/app-frontend/ui/Component_Login.js +86 -0
  52. package/app-frontend/ui/Component_Login.js.map +1 -0
  53. package/app-frontend/ui/Component_Register.d.ts +17 -0
  54. package/app-frontend/ui/Component_Register.js +92 -0
  55. package/app-frontend/ui/Component_Register.js.map +1 -0
  56. package/backend.d.ts +2 -0
  57. package/backend.js +37 -0
  58. package/backend.js.map +1 -0
  59. package/frontend.d.ts +3 -0
  60. package/frontend.js +38 -0
  61. package/frontend.js.map +1 -0
  62. package/index.d.ts +2 -0
  63. package/index.js +35 -0
  64. package/index.js.map +1 -1
  65. package/package.json +8 -7
  66. package/shared/api.d.ts +25 -25
  67. package/shared/api.js +19 -1
  68. package/shared/api.js.map +1 -1
  69. package/shared/types.d.ts +0 -0
  70. package/shared/types.js +20 -0
  71. package/shared/types.js.map +1 -0
  72. package/shared/utils/AuthenticationConsts.js.map +1 -1
  73. package/app-backend/modules/types.js +0 -3
  74. package/app-backend/modules/types.js.map +0 -1
@@ -1,4 +1,22 @@
1
1
  "use strict";
2
+ /*
3
+ * Permissions management system, define access level for each of
4
+ * your server apis, and restrict users by giving them access levels
5
+ *
6
+ * Copyright (C) 2020 Intuition Robotics
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
2
20
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
21
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
22
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -10,18 +28,16 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
10
28
  };
11
29
  Object.defineProperty(exports, "__esModule", { value: true });
12
30
  exports.SamlModule = exports.SamlModule_Class = void 0;
13
- const exceptions_1 = require("@intuitionrobotics/ts-common/core/exceptions");
14
- const module_1 = require("@intuitionrobotics/ts-common/core/module");
15
- const tools_1 = require("@intuitionrobotics/ts-common/utils/tools");
16
31
  const saml2_js_1 = require("saml2-js");
17
- class SamlModule_Class extends module_1.Module {
32
+ const ts_common_1 = require("@intuitionrobotics/ts-common");
33
+ class SamlModule_Class extends ts_common_1.Module {
18
34
  constructor() {
19
35
  super("SamlModule");
20
36
  this.loginRequest = (loginContext) => __awaiter(this, void 0, void 0, function* () {
21
37
  return new Promise((resolve, rejected) => {
22
38
  const sp = new saml2_js_1.ServiceProvider(this.config.spConfig);
23
39
  const options = {
24
- relay_state: tools_1.__stringify(loginContext)
40
+ relay_state: (0, ts_common_1.__stringify)(loginContext)
25
41
  };
26
42
  sp.create_login_request_url(this.identityProvider, options, (error, loginUrl, requestId) => {
27
43
  if (error)
@@ -51,9 +67,9 @@ class SamlModule_Class extends module_1.Module {
51
67
  }
52
68
  init() {
53
69
  if (!this.config.idConfig)
54
- throw new exceptions_1.ImplementationMissingException("Config must contain idConfig");
70
+ throw new ts_common_1.ImplementationMissingException("Config must contain idConfig");
55
71
  if (!this.config.spConfig)
56
- throw new exceptions_1.ImplementationMissingException("Config must contain spConfig");
72
+ throw new ts_common_1.ImplementationMissingException("Config must contain spConfig");
57
73
  this.identityProvider = new saml2_js_1.IdentityProvider(this.config.idConfig);
58
74
  }
59
75
  }
@@ -1 +1 @@
1
- {"version":3,"file":"SamlModule.js","sourceRoot":"","sources":["../../../src/main/app-backend/modules/SamlModule.ts"],"names":[],"mappings":";;;;;;;;;;;;AACA,6EAA4F;AAC5F,qEAAgE;AAChE,oEAAqE;AACrE,uCAMkB;AA+BlB,MAAa,gBACT,SAAQ,eAAkB;IAI1B;QACI,KAAK,CAAC,YAAY,CAAC,CAAC;QAaxB,iBAAY,GAAG,CAAO,YAAqC,EAAE,EAAE;YAC3D,OAAO,IAAI,OAAO,CAAS,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;gBAC7C,MAAM,EAAE,GAAG,IAAI,0BAAe,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;gBACrD,MAAM,OAAO,GAAG;oBACZ,WAAW,EAAE,mBAAW,CAAC,YAAY,CAAC;iBACzC,CAAC;gBACF,EAAE,CAAC,wBAAwB,CAAC,IAAI,CAAC,gBAAgB,EAAE,OAAO,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE;oBACvF,IAAI,KAAK;wBACL,OAAO,QAAQ,CAAC,KAAK,CAAC,CAAC;oBAE3B,OAAO,CAAC,QAAQ,CAAC,CAAC;gBACtB,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;QAEP,CAAC,CAAA,CAAC;QAEF,WAAM,GAAG,CAAO,OAAsC,EAA+B,EAAE;YAAC,OAAA,IAAI,OAAO,CAAqB,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;gBAC1I,MAAM,EAAE,GAAG,IAAI,0BAAe,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;gBACrD,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,gBAAgB,EAAE,OAAO,EAAE,CAAO,KAAK,EAAE,QAA4B,EAAE,EAAE;oBACzF,IAAI,KAAK;wBACL,OAAO,QAAQ,CAAC,KAAK,CAAC,CAAC;oBAE3B,MAAM,MAAM,GAAG,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC;oBACrC,MAAM,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,UAAU,CAAC;oBACpD,IAAI,CAAC,WAAW;wBACZ,OAAO,QAAQ,CAAC,+CAA+C,MAAM,GAAG,CAAC,CAAC;oBAE9E,OAAO,CAAC;wBACJ,MAAM,EAAE,MAAM;wBACd,YAAY,EAAE,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC;wBACrC,YAAY,EAAE,QAAQ;qBACzB,CAAC,CAAC;gBACP,CAAC,CAAA,CAAC,CAAC;YACP,CAAC,CAAC,CAAA;UAAA,CAAC;IA7CH,CAAC;IAES,IAAI;QACV,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ;YACrB,MAAM,IAAI,2CAA8B,CAAC,8BAA8B,CAAC,CAAC;QAE7E,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ;YACrB,MAAM,IAAI,2CAA8B,CAAC,8BAA8B,CAAC,CAAC;QAE7E,IAAI,CAAC,gBAAgB,GAAG,IAAI,2BAAgB,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IACvE,CAAC;CAoCJ;AArDD,4CAqDC;AAEY,QAAA,UAAU,GAAG,IAAI,gBAAgB,EAAE,CAAC"}
1
+ {"version":3,"file":"SamlModule.js","sourceRoot":"","sources":["../../../src/main/app-backend/modules/SamlModule.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;AAEH,uCAMkB;AAClB,4DAIsC;AAgCtC,MAAa,gBACZ,SAAQ,kBAAkB;IAI1B;QACC,KAAK,CAAC,YAAY,CAAC,CAAC;QAarB,iBAAY,GAAG,CAAO,YAAqC,EAAE,EAAE;YAC9D,OAAO,IAAI,OAAO,CAAS,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;gBAChD,MAAM,EAAE,GAAG,IAAI,0BAAe,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;gBACrD,MAAM,OAAO,GAAG;oBACf,WAAW,EAAE,IAAA,uBAAW,EAAC,YAAY,CAAC;iBACtC,CAAC;gBACF,EAAE,CAAC,wBAAwB,CAAC,IAAI,CAAC,gBAAgB,EAAE,OAAO,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,EAAE;oBAC1F,IAAI,KAAK;wBACR,OAAO,QAAQ,CAAC,KAAK,CAAC,CAAC;oBAExB,OAAO,CAAC,QAAQ,CAAC,CAAC;gBACnB,CAAC,CAAC,CAAC;YACJ,CAAC,CAAC,CAAC;QAEJ,CAAC,CAAA,CAAC;QAEF,WAAM,GAAG,CAAO,OAAsC,EAA+B,EAAE;YAAC,OAAA,IAAI,OAAO,CAAqB,CAAC,OAAO,EAAE,QAAQ,EAAE,EAAE;gBAC7I,MAAM,EAAE,GAAG,IAAI,0BAAe,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;gBACrD,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,gBAAgB,EAAE,OAAO,EAAE,CAAO,KAAK,EAAE,QAA4B,EAAE,EAAE;oBAC5F,IAAI,KAAK;wBACR,OAAO,QAAQ,CAAC,KAAK,CAAC,CAAC;oBAExB,MAAM,MAAM,GAAG,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC;oBACrC,MAAM,WAAW,GAAG,OAAO,CAAC,YAAY,CAAC,UAAU,CAAC;oBACpD,IAAI,CAAC,WAAW;wBACf,OAAO,QAAQ,CAAC,+CAA+C,MAAM,GAAG,CAAC,CAAC;oBAE3E,OAAO,CAAC;wBACC,MAAM,EAAE,MAAM;wBACd,YAAY,EAAE,IAAI,CAAC,KAAK,CAAC,WAAW,CAAC;wBACrC,YAAY,EAAE,QAAQ;qBACtB,CAAC,CAAC;gBACZ,CAAC,CAAA,CAAC,CAAC;YACJ,CAAC,CAAC,CAAA;UAAA,CAAC;IA7CH,CAAC;IAES,IAAI;QACb,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ;YACxB,MAAM,IAAI,0CAA8B,CAAC,8BAA8B,CAAC,CAAC;QAE1E,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ;YACxB,MAAM,IAAI,0CAA8B,CAAC,8BAA8B,CAAC,CAAC;QAE1E,IAAI,CAAC,gBAAgB,GAAG,IAAI,2BAAgB,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IACpE,CAAC;CAoCD;AArDD,4CAqDC;AAEY,QAAA,UAAU,GAAG,IAAI,gBAAgB,EAAE,CAAC"}
@@ -1,20 +1,18 @@
1
- import { ApiException } from "@intuitionrobotics/thunderstorm/app-backend/exceptions";
2
- import { ExpressRequest } from "@intuitionrobotics/thunderstorm/app-backend/utils/types";
3
- import { Module } from "@intuitionrobotics/ts-common/core/module";
4
- import { ObjectTS } from "@intuitionrobotics/ts-common/utils/types";
1
+ import { Module, ObjectTS } from "@intuitionrobotics/ts-common";
2
+ import { ApiException, ExpressRequest } from "@intuitionrobotics/thunderstorm/backend";
5
3
  import * as jws from "jws";
6
4
  import { Algorithm, Signature } from "jws";
7
5
  export declare class TokenExpiredException extends ApiException {
8
6
  constructor(message: string, cause?: Error);
9
7
  }
10
- declare type Config = {
8
+ type Config = {
11
9
  secrets?: {
12
10
  [k: string]: any;
13
11
  };
14
12
  validateKeyId: string;
15
13
  issuer?: string;
16
14
  };
17
- declare type Secret = {
15
+ type Secret = {
18
16
  kid: string;
19
17
  value: string;
20
18
  };
@@ -1,44 +1,41 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SecretsModule = exports.SecretsModule_Class = exports.TokenExpiredException = void 0;
4
- const exceptions_1 = require("@intuitionrobotics/thunderstorm/app-backend/exceptions");
5
- const exceptions_2 = require("@intuitionrobotics/ts-common/core/exceptions");
6
- const module_1 = require("@intuitionrobotics/ts-common/core/module");
7
- const date_time_tools_1 = require("@intuitionrobotics/ts-common/utils/date-time-tools");
8
- const tools_1 = require("@intuitionrobotics/ts-common/utils/tools");
4
+ const ts_common_1 = require("@intuitionrobotics/ts-common");
5
+ const backend_1 = require("@intuitionrobotics/thunderstorm/backend");
9
6
  const jws = require("jws");
10
- const AuthenticationConsts_1 = require("../../shared/utils/AuthenticationConsts");
11
7
  const JWTBuilder_1 = require("./JWTBuilder");
12
- class TokenExpiredException extends exceptions_1.ApiException {
8
+ const __1 = require("../..");
9
+ class TokenExpiredException extends backend_1.ApiException {
13
10
  constructor(message, cause) {
14
11
  super(401, message, cause);
15
12
  }
16
13
  }
17
14
  exports.TokenExpiredException = TokenExpiredException;
18
- class SecretsModule_Class extends module_1.Module {
15
+ class SecretsModule_Class extends ts_common_1.Module {
19
16
  constructor() {
20
17
  super("SecretsModule");
21
18
  this.DEFAULT_ISS = "TOOLS";
22
- this.AUTHENTICATION_PREFIX = AuthenticationConsts_1.AUTHENTICATION_PREFIX;
23
- this.AUTHENTICATION_KEY = AuthenticationConsts_1.AUTHENTICATION_KEY;
19
+ this.AUTHENTICATION_PREFIX = __1.AUTHENTICATION_PREFIX;
20
+ this.AUTHENTICATION_KEY = __1.AUTHENTICATION_KEY;
24
21
  this.getAuthSecret = (kid) => {
25
22
  return this.getSecret(kid);
26
23
  };
27
24
  this.getConfig = () => {
28
25
  if (!this.config)
29
- throw new exceptions_2.BadImplementationException(`Missing config, check SecretsModule's config`);
26
+ throw new ts_common_1.BadImplementationException(`Missing config, check SecretsModule's config`);
30
27
  if (!this.config.secrets)
31
- throw new exceptions_2.BadImplementationException(`Missing 'secrets' key in config, check SecretsModule's config`);
28
+ throw new ts_common_1.BadImplementationException(`Missing 'secrets' key in config, check SecretsModule's config`);
32
29
  return this.config.secrets;
33
30
  };
34
31
  this.isExpired = (token) => {
35
- return this.getExpiration(token) < date_time_tools_1.currentTimeMillies();
32
+ return this.getExpiration(token) < (0, ts_common_1.currentTimeMillies)();
36
33
  };
37
34
  this.generateJwt = (payload, kid, algorithm = "HS256") => {
38
35
  const secret = this.getAuthSecret(kid);
39
36
  return new JWTBuilder_1.JWTBuilder(algorithm)
40
37
  // This is a default that can be overwritten by the claims
41
- .setExpiration(Math.floor((date_time_tools_1.currentTimeMillies() + date_time_tools_1.Day) / 1000))
38
+ .setExpiration(Math.floor(((0, ts_common_1.currentTimeMillies)() + ts_common_1.Day) / 1000))
42
39
  .addClaims(payload)
43
40
  .setIssuer(this.getIss())
44
41
  .setKeyID(secret.kid)
@@ -53,13 +50,13 @@ class SecretsModule_Class extends module_1.Module {
53
50
  this.decodeJwt = (jwt) => {
54
51
  return jws.decode(jwt);
55
52
  };
56
- this.setConfig({ validateKeyId: "AUTH_SECRET" });
53
+ this.setDefaultConfig({ validateKeyId: "AUTH_SECRET" });
57
54
  }
58
55
  getSecret(k) {
59
56
  var _a, _b;
60
57
  const secret = ((_a = process.env) === null || _a === void 0 ? void 0 : _a[k]) || ((_b = this.getConfig()) === null || _b === void 0 ? void 0 : _b[k]);
61
58
  if (!secret)
62
- throw new exceptions_2.BadImplementationException(`Missing secret with key ${k} in SecretsModule`);
59
+ throw new ts_common_1.BadImplementationException(`Missing secret with key ${k} in SecretsModule`);
63
60
  return {
64
61
  kid: k,
65
62
  value: secret
@@ -68,7 +65,7 @@ class SecretsModule_Class extends module_1.Module {
68
65
  validateRequestAndCheckExpiration(request, scopes) {
69
66
  const token = this.validateRequest(request, scopes);
70
67
  if (this.isExpired(token)) {
71
- const cause = `The JWT passed is not valid, check. With payload: ${tools_1.__stringify(token.payload)}. The JWT passed is expired`;
68
+ const cause = `The JWT passed is not valid, check. With payload: ${(0, ts_common_1.__stringify)(token.payload)}. The JWT passed is expired`;
72
69
  throw new TokenExpiredException(cause);
73
70
  }
74
71
  return token.payload;
@@ -79,18 +76,18 @@ class SecretsModule_Class extends module_1.Module {
79
76
  const authToken = this.extractAuthToken(request);
80
77
  const token = this.decodeJwt(authToken);
81
78
  if (!token)
82
- throw new exceptions_1.ApiException(401, "Could not decode token " + authToken);
79
+ throw new backend_1.ApiException(401, "Could not decode token " + authToken);
83
80
  const kid = token.header.kid || this.config.validateKeyId;
84
81
  if (!kid)
85
- throw new exceptions_1.ApiException(401, "Could not deduce which key to use in order to verify the token, please specify a key ID");
82
+ throw new backend_1.ApiException(401, "Could not deduce which key to use in order to verify the token, please specify a key ID");
86
83
  const secret = this.getAuthSecret(kid);
87
84
  const verified = jws.verify(authToken, token.header.alg, secret.value);
88
- let cause = `The JWT passed is not valid, check. With payload: ${tools_1.__stringify(token.payload)} and header ${tools_1.__stringify(token.header)}.`;
85
+ let cause = `The JWT passed is not valid, check. With payload: ${(0, ts_common_1.__stringify)(token.payload)} and header ${(0, ts_common_1.__stringify)(token.header)}.`;
89
86
  if (!verified)
90
- throw new exceptions_1.ApiException(401, cause);
87
+ throw new backend_1.ApiException(401, cause);
91
88
  if (!((_a = token.payload) === null || _a === void 0 ? void 0 : _a[JWTBuilder_1.EXPIRES_AT])) {
92
89
  cause += ` The JWT is missing the expiration claim`;
93
- throw new exceptions_1.ApiException(401, cause);
90
+ throw new backend_1.ApiException(401, cause);
94
91
  }
95
92
  const scopesToValidate = (_b = token.payload) === null || _b === void 0 ? void 0 : _b.scopes;
96
93
  if (scopesToValidate)
@@ -101,36 +98,36 @@ class SecretsModule_Class extends module_1.Module {
101
98
  const scopesToValidate = _scopesToValidate.split(",");
102
99
  const isValidScope = scopesToValidate.some(s => scopes.includes(s));
103
100
  if (!isValidScope)
104
- throw new exceptions_1.ApiException(403, `User doesn't have valid scopes. It needs ${scopes.join(",")} but it has ${_scopesToValidate}`);
101
+ throw new backend_1.ApiException(403, `User doesn't have valid scopes. It needs ${scopes.join(",")} but it has ${_scopesToValidate}`);
105
102
  }
106
103
  extractAuthToken(request) {
107
104
  const authHead = request.header(this.AUTHENTICATION_KEY);
108
105
  if (authHead === undefined)
109
- throw new exceptions_2.BadImplementationException("Missing Authorization header");
106
+ throw new ts_common_1.BadImplementationException("Missing Authorization header");
110
107
  if (!authHead)
111
- throw new exceptions_2.BadImplementationException('The Authorization header is empty');
108
+ throw new ts_common_1.BadImplementationException('The Authorization header is empty');
112
109
  const parts = authHead.split(" ");
113
110
  if (parts.length !== 2 || parts[0] !== this.AUTHENTICATION_PREFIX)
114
- throw new exceptions_2.BadImplementationException(`The Authorization header is malformed` + "\n"
111
+ throw new ts_common_1.BadImplementationException(`The Authorization header is malformed` + "\n"
115
112
  + `Value: ${authHead}` + "\n"
116
113
  + `Expected Value: ${this.AUTHENTICATION_PREFIX} [token]`);
117
114
  const authToken = parts[1].trim();
118
115
  if (!authToken)
119
- throw new exceptions_2.BadImplementationException(`The token provided is empty`);
116
+ throw new ts_common_1.BadImplementationException(`The token provided is empty`);
120
117
  return authToken;
121
118
  }
122
119
  getExpiration(token) {
123
120
  let exp = token.payload[JWTBuilder_1.EXPIRES_AT];
124
121
  if (!exp)
125
122
  return exp;
126
- const now = date_time_tools_1.currentTimeMillies();
123
+ const now = (0, ts_common_1.currentTimeMillies)();
127
124
  const cutOff = 1000000000000; // 3-3-1973 in milliseconds
128
125
  const isInSeconds = exp < cutOff;
129
126
  if (isInSeconds)
130
127
  exp = exp * 1000;
131
- const year = 365 * date_time_tools_1.Day;
128
+ const year = 365 * ts_common_1.Day;
132
129
  if (exp < now - year || exp > now + (year))
133
- throw new exceptions_2.BadImplementationException(`The JWT passed is not valid. Payload: ${tools_1.__stringify(token.payload)}.` +
130
+ throw new ts_common_1.BadImplementationException(`The JWT passed is not valid. Payload: ${(0, ts_common_1.__stringify)(token.payload)}.` +
134
131
  `Malformed JWT, expiry date is not valid, check the exp format, assumed to be in ${isInSeconds ? "seconds" : "milliseconds"}`);
135
132
  return exp;
136
133
  }
@@ -1 +1 @@
1
- {"version":3,"file":"SecretsModule.js","sourceRoot":"","sources":["../../../src/main/app-backend/modules/SecretsModule.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"SecretsModule.js","sourceRoot":"","sources":["../../../src/main/app-backend/modules/SecretsModule.ts"],"names":[],"mappings":"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"}
@@ -1,12 +1,13 @@
1
- import { AuditBy, DB_Object } from "@intuitionrobotics/ts-common/utils/types";
2
- export declare type RequestBody_SamlAssertOptions = {
1
+ import { AuditBy, DB_Object } from "@intuitionrobotics/ts-common";
2
+ export * from "../../index";
3
+ export type RequestBody_SamlAssertOptions = {
3
4
  request_body: {
4
5
  SAMLResponse: string;
5
6
  RelayState: string;
6
7
  };
7
8
  allow_unencrypted_assertion?: boolean;
8
9
  };
9
- export declare type DB_Account = DB_Object & {
10
+ export type DB_Account = DB_Object & {
10
11
  email: string;
11
12
  _audit: AuditBy;
12
13
  salt?: string;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ /*
3
+ * Permissions management system, define access level for each of
4
+ * your server apis, and restrict users by giving them access levels
5
+ *
6
+ * Copyright (C) 2020 Intuition Robotics
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ var desc = Object.getOwnPropertyDescriptor(m, k);
23
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
24
+ desc = { enumerable: true, get: function() { return m[k]; } };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ }) : (function(o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ }));
31
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
32
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
33
+ };
34
+ Object.defineProperty(exports, "__esModule", { value: true });
35
+ __exportStar(require("../../index"), exports);
36
+ //# sourceMappingURL=_imports.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_imports.js","sourceRoot":"","sources":["../../../src/main/app-backend/modules/_imports.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;AAIH,8CAA4B"}
@@ -1 +1,2 @@
1
1
  export declare const Frontend_ModulePack_Users: import("../modules/AccountModule").AccountModule_Class[];
2
+ export * from "../modules/AccountModule";
@@ -1,8 +1,41 @@
1
1
  "use strict";
2
+ /*
3
+ * Permissions management system, define access level for each of
4
+ * your server apis, and restrict users by giving them access levels
5
+ *
6
+ * Copyright (C) 2020 Intuition Robotics
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
20
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
21
+ if (k2 === undefined) k2 = k;
22
+ var desc = Object.getOwnPropertyDescriptor(m, k);
23
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
24
+ desc = { enumerable: true, get: function() { return m[k]; } };
25
+ }
26
+ Object.defineProperty(o, k2, desc);
27
+ }) : (function(o, m, k, k2) {
28
+ if (k2 === undefined) k2 = k;
29
+ o[k2] = m[k];
30
+ }));
31
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
32
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
33
+ };
2
34
  Object.defineProperty(exports, "__esModule", { value: true });
3
35
  exports.Frontend_ModulePack_Users = void 0;
4
36
  const AccountModule_1 = require("../modules/AccountModule");
5
37
  exports.Frontend_ModulePack_Users = [
6
38
  AccountModule_1.AccountModule,
7
39
  ];
40
+ __exportStar(require("../modules/AccountModule"), exports);
8
41
  //# sourceMappingURL=module-pack.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"module-pack.js","sourceRoot":"","sources":["../../../src/main/app-frontend/core/module-pack.ts"],"names":[],"mappings":";;;AACA,4DAAuD;AAE1C,QAAA,yBAAyB,GAAG;IACrC,6BAAa;CAChB,CAAC"}
1
+ {"version":3,"file":"module-pack.js","sourceRoot":"","sources":["../../../src/main/app-frontend/core/module-pack.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;GAiBG;;;;;;;;;;;;;;;;;AAEH,4DAAuD;AAE1C,QAAA,yBAAyB,GAAG;IACxC,6BAAa;CACb,CAAC;AAEF,2DAAwC"}
@@ -1,7 +1,6 @@
1
- import { StorageKey } from "@intuitionrobotics/thunderstorm/app-frontend/modules/StorageModule";
2
- import { OnUnauthenticatedResponse } from "@intuitionrobotics/thunderstorm/app-frontend/core/Thunder";
1
+ import { Module } from "@intuitionrobotics/ts-common";
2
+ import { OnUnauthenticatedResponse, StorageKey } from "@intuitionrobotics/thunderstorm/frontend";
3
3
  import { Request_CreateAccount, Request_LoginAccount, RequestParams_LoginSAML, UI_Account } from "../../shared/api";
4
- import { Module } from "@intuitionrobotics/ts-common/core/module";
5
4
  export declare const StorageKey_UserEmail: StorageKey<string>;
6
5
  export declare const StorageKey_JWT: StorageKey<string>;
7
6
  export declare const RequestKey_AccountCreate = "account-create";
@@ -16,7 +15,7 @@ export declare enum LoggedStatus {
16
15
  LOGGED_OUT = 1,
17
16
  LOGGED_IN = 2
18
17
  }
19
- declare type Config = {};
18
+ type Config = {};
20
19
  export interface OnAccountsLoaded {
21
20
  __onAccountsLoaded: () => void;
22
21
  }
@@ -36,7 +35,7 @@ export declare class AccountModule_Class extends Module<Config> implements OnUna
36
35
  private setLoginInfo;
37
36
  loginSAML(request: RequestParams_LoginSAML): void;
38
37
  private validateToken;
39
- logout: (url?: string | undefined) => string | undefined;
38
+ logout: (url?: string) => string | undefined;
40
39
  listUsers: () => void;
41
40
  }
42
41
  export declare const AccountModule: AccountModule_Class;
@@ -1,4 +1,22 @@
1
1
  "use strict";
2
+ /*
3
+ * Permissions management system, define access level for each of
4
+ * your server apis, and restrict users by giving them access levels
5
+ *
6
+ * Copyright (C) 2020 Intuition Robotics
7
+ *
8
+ * Licensed under the Apache License, Version 2.0 (the "License");
9
+ * you may not use this file except in compliance with the License.
10
+ * You may obtain a copy of the License at
11
+ *
12
+ * http://www.apache.org/licenses/LICENSE-2.0
13
+ *
14
+ * Unless required by applicable law or agreed to in writing, software
15
+ * distributed under the License is distributed on an "AS IS" BASIS,
16
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
+ * See the License for the specific language governing permissions and
18
+ * limitations under the License.
19
+ */
2
20
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
21
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
22
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -10,19 +28,13 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
10
28
  };
11
29
  Object.defineProperty(exports, "__esModule", { value: true });
12
30
  exports.AccountModule = exports.AccountModule_Class = exports.LoggedStatus = exports.RequestKey_ValidateSession = exports.RequestKey_AccountLoginSAML = exports.RequestKey_AccountLogin = exports.RequestKey_AccountCreate = exports.StorageKey_JWT = exports.StorageKey_UserEmail = void 0;
13
- const StorageModule_1 = require("@intuitionrobotics/thunderstorm/app-frontend/modules/StorageModule");
14
- const XhrHttpModule_1 = require("@intuitionrobotics/thunderstorm/app-frontend/modules/http/XhrHttpModule");
15
- const ToasterModule_1 = require("@intuitionrobotics/thunderstorm/app-frontend/modules/toaster/ToasterModule");
16
- const HistoryModule_1 = require("@intuitionrobotics/thunderstorm/app-frontend/modules/HistoryModule");
17
- const thunder_dispatcher_1 = require("@intuitionrobotics/thunderstorm/app-frontend/core/thunder-dispatcher");
31
+ const ts_common_1 = require("@intuitionrobotics/ts-common");
32
+ const frontend_1 = require("@intuitionrobotics/thunderstorm/frontend");
18
33
  const api_1 = require("../../shared/api");
19
- const AuthenticationConsts_1 = require("../../shared/utils/AuthenticationConsts");
20
- const module_1 = require("@intuitionrobotics/ts-common/core/module");
21
- const consts_1 = require("@intuitionrobotics/thunderstorm/shared/consts");
22
- const types_1 = require("@intuitionrobotics/thunderstorm/shared/types");
23
- const date_time_tools_1 = require("@intuitionrobotics/ts-common/utils/date-time-tools");
24
- exports.StorageKey_UserEmail = new StorageModule_1.StorageKey(`storage-${api_1.QueryParam_Email}`);
25
- exports.StorageKey_JWT = new StorageModule_1.StorageKey(`storage-${api_1.QueryParam_JWT}`);
34
+ const thunderstorm_1 = require("@intuitionrobotics/thunderstorm");
35
+ const __1 = require("../..");
36
+ exports.StorageKey_UserEmail = new frontend_1.StorageKey(`storage-${api_1.QueryParam_Email}`);
37
+ exports.StorageKey_JWT = new frontend_1.StorageKey(`storage-${api_1.QueryParam_JWT}`);
26
38
  exports.RequestKey_AccountCreate = "account-create";
27
39
  exports.RequestKey_AccountLogin = "account-login";
28
40
  exports.RequestKey_AccountLoginSAML = "account-login-saml";
@@ -32,9 +44,9 @@ var LoggedStatus;
32
44
  LoggedStatus[LoggedStatus["VALIDATING"] = 0] = "VALIDATING";
33
45
  LoggedStatus[LoggedStatus["LOGGED_OUT"] = 1] = "LOGGED_OUT";
34
46
  LoggedStatus[LoggedStatus["LOGGED_IN"] = 2] = "LOGGED_IN";
35
- })(LoggedStatus = exports.LoggedStatus || (exports.LoggedStatus = {}));
36
- const dispatch_onAccountsLoaded = new thunder_dispatcher_1.ThunderDispatcher("__onAccountsLoaded");
37
- class AccountModule_Class extends module_1.Module {
47
+ })(LoggedStatus || (exports.LoggedStatus = LoggedStatus = {}));
48
+ const dispatch_onAccountsLoaded = new frontend_1.ThunderDispatcher("__onAccountsLoaded");
49
+ class AccountModule_Class extends ts_common_1.Module {
38
50
  constructor() {
39
51
  super("AccountModule");
40
52
  this.status = LoggedStatus.VALIDATING;
@@ -50,18 +62,18 @@ class AccountModule_Class extends module_1.Module {
50
62
  const pervStatus = this.status;
51
63
  this.status = newStatus;
52
64
  this.logInfo(`Login status changes: ${LoggedStatus[pervStatus]} => ${LoggedStatus[newStatus]}`);
53
- this.dispatchUI_loginChanged.dispatchUI([]);
54
- this.dispatchUI_loginChanged.dispatchModule([]);
65
+ this.dispatchUI_loginChanged.dispatchUI();
66
+ this.dispatchUI_loginChanged.dispatchModule();
55
67
  };
56
68
  this.validateToken = () => {
57
- XhrHttpModule_1.XhrHttpModule
58
- .createRequest(types_1.HttpMethod.GET, exports.RequestKey_ValidateSession)
69
+ frontend_1.XhrHttpModule
70
+ .createRequest(thunderstorm_1.HttpMethod.GET, exports.RequestKey_ValidateSession)
59
71
  .setLabel(`Validate token...`)
60
72
  .setRelativeUrl("/v1/account/validate")
61
73
  .setOnError((request, resError) => {
62
74
  if (request.getStatus() === 0) {
63
- ToasterModule_1.ToastModule.toastError("Cannot reach Server... trying in 30 sec");
64
- setTimeout(() => exports.AccountModule.validateToken(), 30 * date_time_tools_1.Second);
75
+ frontend_1.ToastModule.toastError("Cannot reach Server... trying in 30 sec");
76
+ setTimeout(() => exports.AccountModule.validateToken(), 30 * ts_common_1.Second);
65
77
  return;
66
78
  }
67
79
  exports.StorageKey_JWT.delete();
@@ -78,29 +90,29 @@ class AccountModule_Class extends module_1.Module {
78
90
  this.setLoggedStatus(LoggedStatus.LOGGED_OUT);
79
91
  };
80
92
  this.listUsers = () => {
81
- XhrHttpModule_1.XhrHttpModule
82
- .createRequest(types_1.HttpMethod.GET, exports.RequestKey_ValidateSession)
93
+ frontend_1.XhrHttpModule
94
+ .createRequest(thunderstorm_1.HttpMethod.GET, exports.RequestKey_ValidateSession)
83
95
  .setLabel(`Fetching users...`)
84
96
  .setRelativeUrl("/v1/account/query")
85
97
  .execute((res) => __awaiter(this, void 0, void 0, function* () {
86
98
  this.accounts = res.accounts.filter(account => account._id);
87
- dispatch_onAccountsLoaded.dispatchUI([]);
99
+ dispatch_onAccountsLoaded.dispatchUI();
88
100
  }));
89
101
  };
90
- XhrHttpModule_1.XhrHttpModule.addDefaultResponseHandler((request) => {
102
+ frontend_1.XhrHttpModule.addDefaultResponseHandler((request) => {
91
103
  var _a;
92
104
  const status = request.getStatus();
93
105
  if (status < 200 || status >= 300)
94
106
  return false;
95
107
  try {
96
- const jwt = request.getResponseHeader(consts_1.HeaderKey_JWT);
108
+ const functionExecutionId = (_a = request === null || request === void 0 ? void 0 : request.getResponseHeader) === null || _a === void 0 ? void 0 : _a.call(request, thunderstorm_1.HeaderKey_FunctionExecutionId);
109
+ frontend_1.XhrHttpModule.logDebug(`${request.key} Function execution id: ${functionExecutionId}`);
110
+ const jwt = request.getResponseHeader(thunderstorm_1.HeaderKey_JWT);
97
111
  if (jwt)
98
112
  exports.StorageKey_JWT.set(jwt);
99
- const functionExecutionId = (_a = request === null || request === void 0 ? void 0 : request.getResponseHeader) === null || _a === void 0 ? void 0 : _a.call(request, consts_1.HeaderKey_FunctionExecutionId);
100
- XhrHttpModule_1.XhrHttpModule.logDebug(`${request.key} Function execution id: ${functionExecutionId}`);
101
113
  }
102
114
  catch (e) {
103
- XhrHttpModule_1.XhrHttpModule.logWarning(`${request.key} - Failed to retrieve headers from xhr call`, e);
115
+ frontend_1.XhrHttpModule.logError(`${request.key} - Failed to retrieve headers from xhr call`, e);
104
116
  }
105
117
  return false;
106
118
  });
@@ -109,15 +121,15 @@ class AccountModule_Class extends module_1.Module {
109
121
  return this.accounts;
110
122
  }
111
123
  init() {
112
- XhrHttpModule_1.XhrHttpModule.addDefaultHeader(AuthenticationConsts_1.AUTHENTICATION_KEY, () => `${AuthenticationConsts_1.AUTHENTICATION_PREFIX} ${exports.StorageKey_JWT.get()}`);
113
- this.dispatchUI_loginChanged = new thunder_dispatcher_1.ThunderDispatcher("onLoginStatusUpdated");
114
- const email = HistoryModule_1.BrowserHistoryModule.getQueryParam(api_1.QueryParam_Email);
115
- const jwt = HistoryModule_1.BrowserHistoryModule.getQueryParam(api_1.QueryParam_JWT);
124
+ frontend_1.XhrHttpModule.addDefaultHeader(__1.AUTHENTICATION_KEY, () => `${__1.AUTHENTICATION_PREFIX} ${exports.StorageKey_JWT.get()}`);
125
+ this.dispatchUI_loginChanged = new frontend_1.ThunderDispatcher("onLoginStatusUpdated");
126
+ const email = frontend_1.BaseComponent.getQueryParameter(api_1.QueryParam_Email);
127
+ const jwt = frontend_1.BaseComponent.getQueryParameter(api_1.QueryParam_JWT);
116
128
  if (email && jwt) {
117
129
  exports.StorageKey_JWT.set(jwt);
118
130
  exports.StorageKey_UserEmail.set(email);
119
- HistoryModule_1.BrowserHistoryModule.removeQueryParam(api_1.QueryParam_Email);
120
- HistoryModule_1.BrowserHistoryModule.removeQueryParam(api_1.QueryParam_JWT);
131
+ frontend_1.BrowserHistoryModule.removeQueryParam(api_1.QueryParam_Email);
132
+ frontend_1.BrowserHistoryModule.removeQueryParam(api_1.QueryParam_JWT);
121
133
  }
122
134
  if (exports.StorageKey_JWT.get())
123
135
  return exports.AccountModule.validateToken();
@@ -125,19 +137,19 @@ class AccountModule_Class extends module_1.Module {
125
137
  this.setLoggedStatus(LoggedStatus.LOGGED_OUT);
126
138
  }
127
139
  create(request) {
128
- XhrHttpModule_1.XhrHttpModule
129
- .createRequest(types_1.HttpMethod.POST, exports.RequestKey_AccountCreate)
140
+ frontend_1.XhrHttpModule
141
+ .createRequest(thunderstorm_1.HttpMethod.POST, exports.RequestKey_AccountCreate)
130
142
  .setRelativeUrl("/v1/account/create")
131
143
  .setJsonBody(request)
132
144
  .setLabel(`User register...`)
133
145
  .setOnError("Error registering user")
134
146
  .execute((response) => __awaiter(this, void 0, void 0, function* () {
135
- ToasterModule_1.ToastModule.toastSuccess(`Account successfully created with email: ${response.email}`);
147
+ frontend_1.ToastModule.toastSuccess(`Account successfully created with email: ${response.email}`);
136
148
  }));
137
149
  }
138
150
  login(request) {
139
- XhrHttpModule_1.XhrHttpModule
140
- .createRequest(types_1.HttpMethod.POST, exports.RequestKey_AccountLogin)
151
+ frontend_1.XhrHttpModule
152
+ .createRequest(thunderstorm_1.HttpMethod.POST, exports.RequestKey_AccountLogin)
141
153
  .setRelativeUrl("/v1/account/login")
142
154
  .setJsonBody(request)
143
155
  .setLabel(`User login with password...`)
@@ -152,8 +164,8 @@ class AccountModule_Class extends module_1.Module {
152
164
  this.setLoggedStatus(LoggedStatus.LOGGED_IN);
153
165
  }
154
166
  loginSAML(request) {
155
- XhrHttpModule_1.XhrHttpModule
156
- .createRequest(types_1.HttpMethod.GET, exports.RequestKey_AccountLoginSAML)
167
+ frontend_1.XhrHttpModule
168
+ .createRequest(thunderstorm_1.HttpMethod.GET, exports.RequestKey_AccountLoginSAML)
157
169
  .setRelativeUrl("/v1/account/login-saml")
158
170
  .setUrlParams(request)
159
171
  .setLabel(`User login SAML...`)
@@ -1 +1 @@
1
- {"version":3,"file":"AccountModule.js","sourceRoot":"","sources":["../../../src/main/app-frontend/modules/AccountModule.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"AccountModule.js","sourceRoot":"","sources":["../../../src/main/app-frontend/modules/AccountModule.ts"],"names":[],"mappings":"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"}