@tstdl/base 0.82.6 → 0.82.8
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/api/client/client.js +2 -1
- package/api/client/client.js.map +1 -1
- package/api/types.d.ts +3 -3
- package/authentication/authentication.api.d.ts +98 -14
- package/authentication/authentication.api.js +31 -27
- package/authentication/authentication.api.js.map +1 -1
- package/authentication/client/api.client.d.ts +50 -0
- package/authentication/client/api.client.js +27 -0
- package/authentication/client/api.client.js.map +1 -0
- package/authentication/client/authentication.service.d.ts +39 -0
- package/authentication/client/authentication.service.js +176 -0
- package/authentication/client/authentication.service.js.map +1 -0
- package/authentication/client/index.d.ts +4 -0
- package/authentication/client/index.js +21 -0
- package/authentication/client/index.js.map +1 -0
- package/authentication/client/module.d.ts +8 -0
- package/authentication/client/module.js +16 -0
- package/authentication/client/module.js.map +1 -0
- package/authentication/client/tokens.d.ts +4 -0
- package/authentication/client/tokens.js +7 -0
- package/authentication/client/tokens.js.map +1 -0
- package/authentication/index.d.ts +2 -0
- package/authentication/index.js +19 -0
- package/authentication/index.js.map +1 -0
- package/authentication/models/authentication-session.model.d.ts +0 -2
- package/authentication/models/authentication-session.model.js +0 -10
- package/authentication/models/authentication-session.model.js.map +1 -1
- package/authentication/models/index.d.ts +1 -0
- package/authentication/models/index.js +1 -0
- package/authentication/models/index.js.map +1 -1
- package/authentication/models/token-payload-base.model.d.ts +7 -0
- package/authentication/models/token-payload-base.model.js +19 -0
- package/authentication/models/token-payload-base.model.js.map +1 -1
- package/authentication/models/token.model.d.ts +16 -0
- package/authentication/models/token.model.js +3 -0
- package/authentication/models/token.model.js.map +1 -0
- package/authentication/{authentication-credentials.repository.d.ts → server/authentication-credentials.repository.d.ts} +2 -2
- package/authentication/{authentication-credentials.repository.js → server/authentication-credentials.repository.js} +1 -1
- package/authentication/server/authentication-credentials.repository.js.map +1 -0
- package/authentication/{authentication-session.repository.d.ts → server/authentication-session.repository.d.ts} +2 -3
- package/authentication/{authentication-session.repository.js → server/authentication-session.repository.js} +0 -0
- package/authentication/server/authentication-session.repository.js.map +1 -0
- package/authentication/server/authentication-token-payload.provider.d.ts +3 -0
- package/authentication/{authentication-token-payload.provider.js → server/authentication-token-payload.provider.js} +1 -1
- package/authentication/server/authentication-token-payload.provider.js.map +1 -0
- package/authentication/server/authentication.api-controller.d.ts +13 -0
- package/authentication/server/authentication.api-controller.js +65 -0
- package/authentication/server/authentication.api-controller.js.map +1 -0
- package/authentication/{authentication.service.d.ts → server/authentication.service.d.ts} +23 -11
- package/authentication/{authentication.service.js → server/authentication.service.js} +92 -47
- package/authentication/server/authentication.service.js.map +1 -0
- package/authentication/server/helper.d.ts +13 -0
- package/authentication/server/helper.js +62 -0
- package/authentication/server/helper.js.map +1 -0
- package/authentication/server/index.d.ts +8 -0
- package/authentication/server/index.js +25 -0
- package/authentication/server/index.js.map +1 -0
- package/authentication/server/module.d.ts +12 -0
- package/authentication/server/module.js +19 -0
- package/authentication/server/module.js.map +1 -0
- package/authentication/server/mongo/index.d.ts +2 -0
- package/authentication/server/mongo/index.js +19 -0
- package/authentication/server/mongo/index.js.map +1 -0
- package/authentication/{mongo → server/mongo}/mongo-authentication-credentials.repository.d.ts +15 -18
- package/authentication/{mongo → server/mongo}/mongo-authentication-credentials.repository.js +36 -27
- package/authentication/server/mongo/mongo-authentication-credentials.repository.js.map +1 -0
- package/authentication/{mongo → server/mongo}/mongo-authentication-session.repository.d.ts +12 -15
- package/authentication/{mongo → server/mongo}/mongo-authentication-session.repository.js +27 -22
- package/authentication/server/mongo/mongo-authentication-session.repository.js.map +1 -0
- package/authentication/{tokens.d.ts → server/tokens.d.ts} +1 -1
- package/authentication/{tokens.js → server/tokens.js} +1 -1
- package/authentication/server/tokens.js.map +1 -0
- package/container/token.d.ts +2 -2
- package/container/types.d.ts +2 -1
- package/cookie/cookie.d.ts +14 -0
- package/cookie/cookie.js +58 -0
- package/cookie/cookie.js.map +1 -0
- package/cookie/index.d.ts +1 -0
- package/cookie/index.js +18 -0
- package/cookie/index.js.map +1 -0
- package/examples/api/authentication.d.ts +1 -0
- package/examples/api/authentication.js +51 -0
- package/examples/api/authentication.js.map +1 -0
- package/examples/api/basic-overview.js +4 -4
- package/examples/api/basic-overview.js.map +1 -1
- package/examples/api/custom-authentication.d.ts +1 -0
- package/examples/api/custom-authentication.js +89 -0
- package/examples/api/custom-authentication.js.map +1 -0
- package/examples/api/streaming.js +10 -8
- package/examples/api/streaming.js.map +1 -1
- package/http/cookie-parser.d.ts +1 -3
- package/http/cookie-parser.js +10 -19
- package/http/cookie-parser.js.map +1 -1
- package/http/http-headers.d.ts +2 -2
- package/http/http-headers.js +11 -11
- package/http/http-headers.js.map +1 -1
- package/http/http-value-map.js +13 -13
- package/http/http-value-map.js.map +1 -1
- package/http/server/http-server-response.d.ts +8 -3
- package/http/server/http-server-response.js +8 -0
- package/http/server/http-server-response.js.map +1 -1
- package/http/server/node/module.d.ts +2 -2
- package/http/server/node/module.js +3 -5
- package/http/server/node/module.js.map +1 -1
- package/mail/clients/nodemailer.mail-client.js +1 -1
- package/mail/clients/nodemailer.mail-client.js.map +1 -1
- package/message-bus/broadcast-channel/broadcast-channel-message-bus-provider.d.ts +1 -1
- package/message-bus/broadcast-channel/broadcast-channel-message-bus-provider.js +21 -2
- package/message-bus/broadcast-channel/broadcast-channel-message-bus-provider.js.map +1 -1
- package/message-bus/broadcast-channel/broadcast-channel-message-bus.d.ts +4 -4
- package/message-bus/broadcast-channel/broadcast-channel-message-bus.js +27 -4
- package/message-bus/broadcast-channel/broadcast-channel-message-bus.js.map +1 -1
- package/message-bus/broadcast-channel/index.d.ts +1 -0
- package/message-bus/broadcast-channel/index.js +1 -0
- package/message-bus/broadcast-channel/index.js.map +1 -1
- package/message-bus/broadcast-channel/module.d.ts +4 -0
- package/message-bus/broadcast-channel/module.js +17 -0
- package/message-bus/broadcast-channel/module.js.map +1 -0
- package/message-bus/local/index.d.ts +1 -0
- package/message-bus/local/index.js +1 -0
- package/message-bus/local/index.js.map +1 -1
- package/message-bus/local/local-message-bus-provider.d.ts +0 -5
- package/message-bus/local/local-message-bus-provider.js +1 -13
- package/message-bus/local/local-message-bus-provider.js.map +1 -1
- package/message-bus/local/local-message-bus.d.ts +1 -1
- package/message-bus/local/local-message-bus.js +2 -2
- package/message-bus/local/local-message-bus.js.map +1 -1
- package/message-bus/local/module.d.ts +4 -0
- package/message-bus/local/module.js +17 -0
- package/message-bus/local/module.js.map +1 -0
- package/message-bus/message-bus-base.d.ts +1 -1
- package/message-bus/message-bus-base.js +1 -1
- package/message-bus/message-bus-base.js.map +1 -1
- package/message-bus/message-bus.d.ts +1 -0
- package/message-bus/message-bus.js +3 -0
- package/message-bus/message-bus.js.map +1 -1
- package/notification/notification.service.js +2 -2
- package/notification/notification.service.js.map +1 -1
- package/object-storage/s3/s3.object.js +3 -3
- package/object-storage/s3/s3.object.js.map +1 -1
- package/package.json +4 -4
- package/schema/schemas/assign.js +2 -0
- package/schema/schemas/assign.js.map +1 -1
- package/schema/schemas/object.d.ts +1 -0
- package/schema/schemas/object.js +2 -1
- package/schema/schemas/object.js.map +1 -1
- package/schema/types/types.d.ts +1 -1
- package/schema/utils/schema.js.map +1 -1
- package/utils/array/array.js +2 -2
- package/utils/array/array.js.map +1 -1
- package/utils/string/index.d.ts +1 -0
- package/utils/string/index.js +1 -0
- package/utils/string/index.js.map +1 -1
- package/utils/string/title-case.d.ts +1 -0
- package/utils/string/title-case.js +13 -0
- package/utils/string/title-case.js.map +1 -0
- package/utils/type-guards.d.ts +1 -1
- package/utils/type-guards.js.map +1 -1
- package/utils/type-of.d.ts +1 -1
- package/utils/type-of.js +3 -4
- package/utils/type-of.js.map +1 -1
- package/authentication/authentication-credentials.repository.js.map +0 -1
- package/authentication/authentication-session.repository.js.map +0 -1
- package/authentication/authentication-token-payload.provider.d.ts +0 -3
- package/authentication/authentication-token-payload.provider.js.map +0 -1
- package/authentication/authentication.service.js.map +0 -1
- package/authentication/mongo/mongo-authentication-credentials.repository.js.map +0 -1
- package/authentication/mongo/mongo-authentication-session.repository.js.map +0 -1
- package/authentication/tokens.js.map +0 -1
package/api/client/client.js
CHANGED
|
@@ -4,6 +4,7 @@ exports.compileClient = exports.apiDefinitionSymbol = exports.httpClientSymbol =
|
|
|
4
4
|
const container_1 = require("../../container");
|
|
5
5
|
const client_1 = require("../../http/client");
|
|
6
6
|
const schema_1 = require("../../schema");
|
|
7
|
+
const title_case_1 = require("../../utils/string/title-case");
|
|
7
8
|
const type_guards_1 = require("../../utils/type-guards");
|
|
8
9
|
const types_1 = require("../types");
|
|
9
10
|
const utils_1 = require("../utils");
|
|
@@ -12,7 +13,7 @@ exports.apiDefinitionSymbol = Symbol('ApiDefinition');
|
|
|
12
13
|
// eslint-disable-next-line max-lines-per-function
|
|
13
14
|
function compileClient(definition, options = {}) {
|
|
14
15
|
const { resource: path, endpoints } = definition;
|
|
15
|
-
const constructedApiName = (path[0]
|
|
16
|
+
const constructedApiName = (0, title_case_1.toTitleCase)(path[0] ?? '');
|
|
16
17
|
const apiName = `${constructedApiName}ApiClient`;
|
|
17
18
|
const api = {
|
|
18
19
|
[apiName]: class {
|
package/api/client/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../source/api/client/client.ts"],"names":[],"mappings":";;;AACA,+CAA6D;AAE7D,8CAA8D;AAC9D,yCAAkC;AAElC,yDAA6G;AAE7G,oCAAmE;AACnE,oCAAsD;AAkBzC,QAAA,gBAAgB,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;AAC1C,QAAA,mBAAmB,GAAG,MAAM,CAAC,eAAe,CAAC,CAAC;AAE3D,kDAAkD;AAClD,SAAgB,aAAa,CAA0B,UAAa,EAAE,UAAyB,EAAE;IAC/F,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,UAAU,CAAC;IACjD,MAAM,kBAAkB,GAAG,
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../source/api/client/client.ts"],"names":[],"mappings":"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"}
|
package/api/types.d.ts
CHANGED
|
@@ -68,16 +68,16 @@ export type ApiEndpointDefinition = {
|
|
|
68
68
|
cors?: ApiEndpointDefinitionCors;
|
|
69
69
|
};
|
|
70
70
|
export type ApiEndpointsDefinition = Record<string, ApiEndpointDefinition | (() => ApiEndpointDefinition)>;
|
|
71
|
-
export type ApiDefinition = {
|
|
71
|
+
export type ApiDefinition<Resource extends string = string, Endpoints extends ApiEndpointsDefinition = ApiEndpointsDefinition> = {
|
|
72
72
|
/**
|
|
73
73
|
* Default root resource for endpoints.
|
|
74
74
|
*/
|
|
75
|
-
resource:
|
|
75
|
+
resource: Resource;
|
|
76
76
|
/**
|
|
77
77
|
* Endpoint prefix. Overwrites default from gateway.
|
|
78
78
|
*/
|
|
79
79
|
prefix?: string | null;
|
|
80
|
-
endpoints:
|
|
80
|
+
endpoints: Endpoints;
|
|
81
81
|
};
|
|
82
82
|
export type ApiEndpointKeys<T extends ApiDefinition> = keyof T['endpoints'];
|
|
83
83
|
export type NormalizedApiEndpoints<T extends ApiDefinition['endpoints']> = {
|
|
@@ -1,28 +1,112 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type {
|
|
1
|
+
import type { ApiDefinition } from "../api/types";
|
|
2
|
+
import type { SchemaTestable } from "../schema/schema";
|
|
3
|
+
import type { ObjectSchemaOrType } from "../schema/types";
|
|
3
4
|
import { TokenPayloadBase } from './models';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
5
|
+
type GetAuthenticationApiEndpointsDefinition<AdditionalTokenPayload = unknown, AuthenticationData = unknown> = typeof getAuthenticationApiEndpointsDefinition<AdditionalTokenPayload, AuthenticationData>;
|
|
6
|
+
type AuthenticationApiEndpointsDefinition<AdditionalTokenPayload = unknown, AuthenticationData = unknown> = ReturnType<GetAuthenticationApiEndpointsDefinition<AdditionalTokenPayload, AuthenticationData>>;
|
|
7
|
+
export type AuthenticationApiDefinition<AdditionalTokenPayload = unknown, AuthenticationData = unknown> = ApiDefinition<string, AuthenticationApiEndpointsDefinition<AdditionalTokenPayload, AuthenticationData>>;
|
|
8
|
+
export declare const authenticationApiDefinition: {
|
|
9
|
+
resource: string;
|
|
10
|
+
endpoints: {
|
|
11
|
+
token: {
|
|
12
|
+
resource: string;
|
|
13
|
+
method: "POST";
|
|
14
|
+
parameters: import("../schema/types").ObjectSchema<{
|
|
15
|
+
subject: string;
|
|
16
|
+
secret: string;
|
|
17
|
+
data: unknown;
|
|
18
|
+
}>;
|
|
19
|
+
result: import("../schema/types").ObjectSchema<{
|
|
20
|
+
jti: string;
|
|
21
|
+
iat: number;
|
|
22
|
+
exp: number;
|
|
23
|
+
refreshTokenExp: number;
|
|
24
|
+
sessionId: string;
|
|
25
|
+
subject: string;
|
|
26
|
+
}>;
|
|
27
|
+
};
|
|
28
|
+
refresh: {
|
|
29
|
+
resource: string;
|
|
30
|
+
method: "POST";
|
|
31
|
+
parameters: import("../schema/types").ObjectSchema<{
|
|
32
|
+
data: unknown;
|
|
33
|
+
}>;
|
|
34
|
+
result: import("../schema/types").ObjectSchema<{
|
|
35
|
+
jti: string;
|
|
36
|
+
iat: number;
|
|
37
|
+
exp: number;
|
|
38
|
+
refreshTokenExp: number;
|
|
39
|
+
sessionId: string;
|
|
40
|
+
subject: string;
|
|
41
|
+
}>;
|
|
42
|
+
};
|
|
43
|
+
endSession: {
|
|
44
|
+
resource: string;
|
|
45
|
+
method: "POST";
|
|
46
|
+
result: import("../schema/types").ValueSchema<"ok">;
|
|
47
|
+
};
|
|
48
|
+
timestamp: {
|
|
49
|
+
result: import("../schema/types").ValueSchema<number>;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
export declare function getAuthenticationApiDefinition<AdditionalTokenPayload, AuthenticationData, AdditionalEndpoints>(additionalTokenPayloadSchema: ObjectSchemaOrType<AdditionalTokenPayload>, authenticationDataSchema: SchemaTestable<AuthenticationData>, resource?: string, additionalEndpoints?: AdditionalEndpoints): {
|
|
54
|
+
resource: string;
|
|
55
|
+
endpoints: {
|
|
56
|
+
token: {
|
|
57
|
+
resource: string;
|
|
58
|
+
method: "POST";
|
|
59
|
+
parameters: import("../schema/types").ObjectSchema<{
|
|
60
|
+
subject: string;
|
|
61
|
+
secret: string;
|
|
62
|
+
data: AuthenticationData;
|
|
63
|
+
}>;
|
|
64
|
+
result: import("../schema/types").ObjectSchema<import("type-fest").Simplify<import("type-fest/source/merge").Merge_<TokenPayloadBase, AdditionalTokenPayload>, {}>>;
|
|
65
|
+
};
|
|
66
|
+
refresh: {
|
|
67
|
+
resource: string;
|
|
68
|
+
method: "POST";
|
|
69
|
+
parameters: import("../schema/types").ObjectSchema<{
|
|
70
|
+
data: AuthenticationData;
|
|
71
|
+
}>;
|
|
72
|
+
result: import("../schema/types").ObjectSchema<import("type-fest").Simplify<import("type-fest/source/merge").Merge_<TokenPayloadBase, AdditionalTokenPayload>, {}>>;
|
|
73
|
+
};
|
|
74
|
+
endSession: {
|
|
75
|
+
resource: string;
|
|
76
|
+
method: "POST";
|
|
77
|
+
result: import("../schema/types").ValueSchema<"ok">;
|
|
78
|
+
};
|
|
79
|
+
timestamp: {
|
|
80
|
+
result: import("../schema/types").ValueSchema<number>;
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
export declare function getAuthenticationApiEndpointsDefinition<AdditionalTokenPayload, AuthenticationData>(additionalTokenPayloadSchema: ObjectSchemaOrType<AdditionalTokenPayload>, authenticationDataSchema: SchemaTestable<AuthenticationData>): {
|
|
12
85
|
token: {
|
|
13
86
|
resource: string;
|
|
14
87
|
method: "POST";
|
|
15
|
-
parameters: ObjectSchema<
|
|
16
|
-
|
|
88
|
+
parameters: import("../schema/types").ObjectSchema<{
|
|
89
|
+
subject: string;
|
|
90
|
+
secret: string;
|
|
91
|
+
data: AuthenticationData;
|
|
92
|
+
}>;
|
|
93
|
+
result: import("../schema/types").ObjectSchema<import("type-fest").Simplify<import("type-fest/source/merge").Merge_<TokenPayloadBase, AdditionalTokenPayload>, {}>>;
|
|
17
94
|
};
|
|
18
95
|
refresh: {
|
|
19
96
|
resource: string;
|
|
20
97
|
method: "POST";
|
|
21
|
-
|
|
98
|
+
parameters: import("../schema/types").ObjectSchema<{
|
|
99
|
+
data: AuthenticationData;
|
|
100
|
+
}>;
|
|
101
|
+
result: import("../schema/types").ObjectSchema<import("type-fest").Simplify<import("type-fest/source/merge").Merge_<TokenPayloadBase, AdditionalTokenPayload>, {}>>;
|
|
22
102
|
};
|
|
23
103
|
endSession: {
|
|
24
104
|
resource: string;
|
|
25
105
|
method: "POST";
|
|
26
|
-
result: import("../schema/types
|
|
106
|
+
result: import("../schema/types").ValueSchema<"ok">;
|
|
107
|
+
};
|
|
108
|
+
timestamp: {
|
|
109
|
+
result: import("../schema/types").ValueSchema<number>;
|
|
27
110
|
};
|
|
28
111
|
};
|
|
112
|
+
export {};
|
|
@@ -1,51 +1,55 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
-
};
|
|
8
|
-
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
-
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
-
};
|
|
11
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.getAuthenticationApiEndpointsDefinition = exports.
|
|
13
|
-
const
|
|
3
|
+
exports.getAuthenticationApiEndpointsDefinition = exports.getAuthenticationApiDefinition = exports.authenticationApiDefinition = void 0;
|
|
4
|
+
const types_1 = require("../api/types");
|
|
5
|
+
const assign_1 = require("../schema/schemas/assign");
|
|
14
6
|
const literal_1 = require("../schema/schemas/literal");
|
|
7
|
+
const number_1 = require("../schema/schemas/number");
|
|
8
|
+
const object_1 = require("../schema/schemas/object");
|
|
9
|
+
const string_1 = require("../schema/schemas/string");
|
|
10
|
+
const unknown_1 = require("../schema/schemas/unknown");
|
|
15
11
|
const models_1 = require("./models");
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
exports.authenticationApiDefinition = getAuthenticationApiDefinition(object_1.emptyObjectSchema, (0, unknown_1.unknown)());
|
|
13
|
+
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
|
|
14
|
+
function getAuthenticationApiDefinition(additionalTokenPayloadSchema, authenticationDataSchema, resource, additionalEndpoints) {
|
|
15
|
+
return (0, types_1.defineApi)({
|
|
16
|
+
resource: resource ?? 'auth',
|
|
17
|
+
endpoints: {
|
|
18
|
+
...getAuthenticationApiEndpointsDefinition(additionalTokenPayloadSchema, authenticationDataSchema),
|
|
19
|
+
...additionalEndpoints
|
|
20
|
+
}
|
|
21
|
+
});
|
|
19
22
|
}
|
|
20
|
-
|
|
21
|
-
(0, property_1.Property)(),
|
|
22
|
-
__metadata("design:type", String)
|
|
23
|
-
], GetTokenParameters.prototype, "subject", void 0);
|
|
24
|
-
__decorate([
|
|
25
|
-
(0, property_1.Property)(),
|
|
26
|
-
__metadata("design:type", String)
|
|
27
|
-
], GetTokenParameters.prototype, "secret", void 0);
|
|
28
|
-
exports.GetTokenParameters = GetTokenParameters;
|
|
23
|
+
exports.getAuthenticationApiDefinition = getAuthenticationApiDefinition;
|
|
29
24
|
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
|
|
30
|
-
function getAuthenticationApiEndpointsDefinition(
|
|
31
|
-
const
|
|
32
|
-
const tokenResultSchema = (options.tokenPayloadSchema ?? models_1.TokenPayloadBase);
|
|
25
|
+
function getAuthenticationApiEndpointsDefinition(additionalTokenPayloadSchema, authenticationDataSchema) {
|
|
26
|
+
const tokenResultSchema = (0, assign_1.assign)(models_1.TokenPayloadBase, additionalTokenPayloadSchema);
|
|
33
27
|
return {
|
|
34
28
|
token: {
|
|
35
29
|
resource: 'token',
|
|
36
30
|
method: 'POST',
|
|
37
|
-
parameters:
|
|
31
|
+
parameters: (0, object_1.explicitObject)({
|
|
32
|
+
subject: (0, string_1.string)(),
|
|
33
|
+
secret: (0, string_1.string)(),
|
|
34
|
+
data: authenticationDataSchema
|
|
35
|
+
}),
|
|
38
36
|
result: tokenResultSchema
|
|
39
37
|
},
|
|
40
38
|
refresh: {
|
|
41
39
|
resource: 'refresh',
|
|
42
40
|
method: 'POST',
|
|
41
|
+
parameters: (0, object_1.explicitObject)({
|
|
42
|
+
data: authenticationDataSchema
|
|
43
|
+
}),
|
|
43
44
|
result: tokenResultSchema
|
|
44
45
|
},
|
|
45
46
|
endSession: {
|
|
46
47
|
resource: 'end-session',
|
|
47
48
|
method: 'POST',
|
|
48
49
|
result: (0, literal_1.literal)('ok')
|
|
50
|
+
},
|
|
51
|
+
timestamp: {
|
|
52
|
+
result: (0, number_1.number)()
|
|
49
53
|
}
|
|
50
54
|
};
|
|
51
55
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authentication.api.js","sourceRoot":"","sources":["../../source/authentication/authentication.api.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"authentication.api.js","sourceRoot":"","sources":["../../source/authentication/authentication.api.ts"],"names":[],"mappings":";;;AACA,wCAAwC;AAExC,qDAAiD;AACjD,uDAAmD;AACnD,qDAAiD;AACjD,qDAA4E;AAC5E,qDAAiD;AACjD,uDAAmD;AAEnD,qCAA4C;AAU/B,QAAA,2BAA2B,GAAG,8BAA8B,CAAC,0BAAiB,EAAE,IAAA,iBAAO,GAAE,CAAC,CAAC;AAExG,4EAA4E;AAC5E,SAAgB,8BAA8B,CAC5C,4BAAwE,EACxE,wBAA4D,EAC5D,QAAiB,EACjB,mBAAyC;IAEzC,OAAO,IAAA,iBAAS,EAAC;QACf,QAAQ,EAAE,QAAQ,IAAI,MAAM;QAC5B,SAAS,EAAE;YACT,GAAG,uCAAuC,CAAC,4BAA4B,EAAE,wBAAwB,CAAC;YAClG,GAAG,mBAAmB;SACvB;KACF,CAAC,CAAC;AACL,CAAC;AAbD,wEAaC;AAED,4EAA4E;AAC5E,SAAgB,uCAAuC,CACrD,4BAAwE,EACxE,wBAA4D;IAE5D,MAAM,iBAAiB,GAAG,IAAA,eAAM,EAAC,yBAAgB,EAAE,4BAA4B,CAAC,CAAC;IAEjF,OAAO;QACL,KAAK,EAAE;YACL,QAAQ,EAAE,OAAO;YACjB,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,IAAA,uBAAc,EAAC;gBACzB,OAAO,EAAE,IAAA,eAAM,GAAE;gBACjB,MAAM,EAAE,IAAA,eAAM,GAAE;gBAChB,IAAI,EAAE,wBAAwB;aAC/B,CAAC;YACF,MAAM,EAAE,iBAAiB;SAC1B;QACD,OAAO,EAAE;YACP,QAAQ,EAAE,SAAS;YACnB,MAAM,EAAE,MAAM;YACd,UAAU,EAAE,IAAA,uBAAc,EAAC;gBACzB,IAAI,EAAE,wBAAwB;aAC/B,CAAC;YACF,MAAM,EAAE,iBAAiB;SAC1B;QACD,UAAU,EAAE;YACV,QAAQ,EAAE,aAAa;YACvB,MAAM,EAAE,MAAM;YACd,MAAM,EAAE,IAAA,iBAAO,EAAC,IAAa,CAAC;SAC/B;QACD,SAAS,EAAE;YACT,MAAM,EAAE,IAAA,eAAM,GAAE;SACjB;KAC+B,CAAC;AACrC,CAAC;AAlCD,0FAkCC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { HttpClient } from "../../http/client/http-client";
|
|
2
|
+
declare const AuthenticationApiClient_base: import("../../api/client").ApiClient<{
|
|
3
|
+
resource: string;
|
|
4
|
+
endpoints: {
|
|
5
|
+
token: {
|
|
6
|
+
resource: string;
|
|
7
|
+
method: "POST";
|
|
8
|
+
parameters: import("../../schema").ObjectSchema<{
|
|
9
|
+
subject: string;
|
|
10
|
+
secret: string;
|
|
11
|
+
data: unknown;
|
|
12
|
+
}>;
|
|
13
|
+
result: import("../../schema").ObjectSchema<{
|
|
14
|
+
jti: string;
|
|
15
|
+
iat: number;
|
|
16
|
+
exp: number;
|
|
17
|
+
refreshTokenExp: number;
|
|
18
|
+
sessionId: string;
|
|
19
|
+
subject: string;
|
|
20
|
+
}>;
|
|
21
|
+
};
|
|
22
|
+
refresh: {
|
|
23
|
+
resource: string;
|
|
24
|
+
method: "POST";
|
|
25
|
+
parameters: import("../../schema").ObjectSchema<{
|
|
26
|
+
data: unknown;
|
|
27
|
+
}>;
|
|
28
|
+
result: import("../../schema").ObjectSchema<{
|
|
29
|
+
jti: string;
|
|
30
|
+
iat: number;
|
|
31
|
+
exp: number;
|
|
32
|
+
refreshTokenExp: number;
|
|
33
|
+
sessionId: string;
|
|
34
|
+
subject: string;
|
|
35
|
+
}>;
|
|
36
|
+
};
|
|
37
|
+
endSession: {
|
|
38
|
+
resource: string;
|
|
39
|
+
method: "POST";
|
|
40
|
+
result: import("../../schema").ValueSchema<"ok">;
|
|
41
|
+
};
|
|
42
|
+
timestamp: {
|
|
43
|
+
result: import("../../schema").ValueSchema<number>;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}>;
|
|
47
|
+
export declare class AuthenticationApiClient extends AuthenticationApiClient_base {
|
|
48
|
+
constructor(httpClient: HttpClient);
|
|
49
|
+
}
|
|
50
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.AuthenticationApiClient = void 0;
|
|
13
|
+
const client_1 = require("../../api/client");
|
|
14
|
+
const container_1 = require("../../container");
|
|
15
|
+
const http_client_1 = require("../../http/client/http-client");
|
|
16
|
+
const authentication_api_1 = require("../authentication.api");
|
|
17
|
+
let AuthenticationApiClient = class AuthenticationApiClient extends (0, client_1.compileClient)(authentication_api_1.authenticationApiDefinition) {
|
|
18
|
+
constructor(httpClient) {
|
|
19
|
+
super(httpClient);
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
AuthenticationApiClient = __decorate([
|
|
23
|
+
(0, container_1.singleton)(),
|
|
24
|
+
__metadata("design:paramtypes", [http_client_1.HttpClient])
|
|
25
|
+
], AuthenticationApiClient);
|
|
26
|
+
exports.AuthenticationApiClient = AuthenticationApiClient;
|
|
27
|
+
//# sourceMappingURL=api.client.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.client.js","sourceRoot":"","sources":["../../../source/authentication/client/api.client.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA6C;AAC7C,+CAAwC;AACxC,+DAAuD;AACvD,8DAAoE;AAG7D,IAAM,uBAAuB,GAA7B,MAAM,uBAAwB,SAAQ,IAAA,sBAAa,EAAC,gDAA2B,CAAC;IACrF,YAAY,UAAsB;QAChC,KAAK,CAAC,UAAU,CAAC,CAAC;IACpB,CAAC;CACF,CAAA;AAJY,uBAAuB;IADnC,IAAA,qBAAS,GAAE;qCAEc,wBAAU;GADvB,uBAAuB,CAInC;AAJY,0DAAuB"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { ApiClient } from "../../api/client";
|
|
2
|
+
import type { AfterResolve } from "../../container";
|
|
3
|
+
import { afterResolve } from "../../container";
|
|
4
|
+
import { AsyncDisposable, disposeAsync } from "../../disposable";
|
|
5
|
+
import { Logger } from "../../logger";
|
|
6
|
+
import { MessageBus } from "../../message-bus";
|
|
7
|
+
import type { Observable } from 'rxjs';
|
|
8
|
+
import type { AuthenticationApiDefinition } from '../authentication.api';
|
|
9
|
+
import type { TokenPayload } from '../models';
|
|
10
|
+
export declare class AuthenticationService<AdditionalTokenPayload, AuthenticationData> implements AfterResolve, AsyncDisposable {
|
|
11
|
+
private readonly client;
|
|
12
|
+
private readonly errorSubject;
|
|
13
|
+
private readonly tokenSubject;
|
|
14
|
+
private readonly tokenUpdateBus;
|
|
15
|
+
private readonly logger;
|
|
16
|
+
private readonly disposeToken;
|
|
17
|
+
private authenticationData;
|
|
18
|
+
readonly error$: Observable<Error>;
|
|
19
|
+
readonly token$: Observable<TokenPayload<AdditionalTokenPayload> | undefined>;
|
|
20
|
+
readonly definedToken$: Observable<TokenPayload<AdditionalTokenPayload>>;
|
|
21
|
+
readonly loggedIn$: Observable<boolean>;
|
|
22
|
+
get loggedIn(): boolean;
|
|
23
|
+
get token(): TokenPayload<AdditionalTokenPayload> | undefined;
|
|
24
|
+
get definedToken(): TokenPayload<AdditionalTokenPayload>;
|
|
25
|
+
constructor(client: InstanceType<ApiClient<AuthenticationApiDefinition<TokenPayload<AdditionalTokenPayload>, AuthenticationData>>>, tokenUpdateBus: MessageBus<TokenPayload<AdditionalTokenPayload> | undefined> | undefined, initialAuthenticationData: AuthenticationData | undefined, logger: Logger);
|
|
26
|
+
[afterResolve](): void;
|
|
27
|
+
initialize(): void;
|
|
28
|
+
[disposeAsync](): Promise<void>;
|
|
29
|
+
dispose(): Promise<void>;
|
|
30
|
+
setAdditionalData(data: AuthenticationData): void;
|
|
31
|
+
login(subject: string, secret: string, data?: AuthenticationData): Promise<void>;
|
|
32
|
+
logout(): Promise<void>;
|
|
33
|
+
refresh(data?: AuthenticationData): Promise<void>;
|
|
34
|
+
private saveToken;
|
|
35
|
+
private loadToken;
|
|
36
|
+
private setNewToken;
|
|
37
|
+
private refreshLoop;
|
|
38
|
+
private handleError;
|
|
39
|
+
}
|
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
12
|
+
return function (target, key) { decorator(target, key, paramIndex); }
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.AuthenticationService = void 0;
|
|
16
|
+
const container_1 = require("../../container");
|
|
17
|
+
const core_1 = require("../../core");
|
|
18
|
+
const disposable_1 = require("../../disposable");
|
|
19
|
+
const invalid_token_error_1 = require("../../error/invalid-token.error");
|
|
20
|
+
const logger_1 = require("../../logger");
|
|
21
|
+
const message_bus_1 = require("../../message-bus");
|
|
22
|
+
const cancellation_token_1 = require("../../utils/cancellation-token");
|
|
23
|
+
const date_time_1 = require("../../utils/date-time");
|
|
24
|
+
const timing_1 = require("../../utils/timing");
|
|
25
|
+
const type_guards_1 = require("../../utils/type-guards");
|
|
26
|
+
const rxjs_1 = require("rxjs");
|
|
27
|
+
const tokens_1 = require("./tokens");
|
|
28
|
+
const tokenStorageKey = 'AuthenticationService:token';
|
|
29
|
+
const tokenUpdateBusName = 'AuthenticationService:tokenUpdate';
|
|
30
|
+
let AuthenticationService = class AuthenticationService {
|
|
31
|
+
client;
|
|
32
|
+
errorSubject;
|
|
33
|
+
tokenSubject;
|
|
34
|
+
tokenUpdateBus;
|
|
35
|
+
logger;
|
|
36
|
+
disposeToken;
|
|
37
|
+
authenticationData;
|
|
38
|
+
error$;
|
|
39
|
+
token$;
|
|
40
|
+
definedToken$;
|
|
41
|
+
loggedIn$;
|
|
42
|
+
get loggedIn() {
|
|
43
|
+
return (0, type_guards_1.isDefined)(this.tokenSubject.value);
|
|
44
|
+
}
|
|
45
|
+
get token() {
|
|
46
|
+
return this.tokenSubject.value;
|
|
47
|
+
}
|
|
48
|
+
get definedToken() {
|
|
49
|
+
return (0, type_guards_1.assertDefinedPass)(this.tokenSubject.value, 'No token available.');
|
|
50
|
+
}
|
|
51
|
+
constructor(client, tokenUpdateBus, initialAuthenticationData, logger) {
|
|
52
|
+
this.client = client;
|
|
53
|
+
this.tokenUpdateBus = tokenUpdateBus;
|
|
54
|
+
this.authenticationData = initialAuthenticationData;
|
|
55
|
+
this.logger = logger;
|
|
56
|
+
this.disposeToken = new cancellation_token_1.CancellationToken();
|
|
57
|
+
this.errorSubject = new rxjs_1.Subject();
|
|
58
|
+
this.tokenSubject = new rxjs_1.BehaviorSubject(undefined);
|
|
59
|
+
this.error$ = this.errorSubject.asObservable();
|
|
60
|
+
this.token$ = this.tokenSubject.asObservable();
|
|
61
|
+
this.definedToken$ = this.token$.pipe((0, rxjs_1.filter)(type_guards_1.isDefined));
|
|
62
|
+
this.loggedIn$ = this.token$.pipe((0, rxjs_1.map)(type_guards_1.isDefined));
|
|
63
|
+
}
|
|
64
|
+
[container_1.afterResolve]() {
|
|
65
|
+
this.initialize();
|
|
66
|
+
core_1.disposer.add(this);
|
|
67
|
+
}
|
|
68
|
+
initialize() {
|
|
69
|
+
this.loadToken();
|
|
70
|
+
this.tokenUpdateBus?.messages$.subscribe((token) => this.tokenSubject.next(token));
|
|
71
|
+
void this.refreshLoop();
|
|
72
|
+
}
|
|
73
|
+
async [disposable_1.disposeAsync]() {
|
|
74
|
+
await this.dispose();
|
|
75
|
+
}
|
|
76
|
+
async dispose() {
|
|
77
|
+
this.disposeToken.set();
|
|
78
|
+
await this.tokenUpdateBus?.dispose();
|
|
79
|
+
this.tokenSubject.complete();
|
|
80
|
+
this.errorSubject.complete();
|
|
81
|
+
}
|
|
82
|
+
setAdditionalData(data) {
|
|
83
|
+
this.authenticationData = data;
|
|
84
|
+
}
|
|
85
|
+
async login(subject, secret, data) {
|
|
86
|
+
if ((0, type_guards_1.isDefined)(data)) {
|
|
87
|
+
this.setAdditionalData(data);
|
|
88
|
+
}
|
|
89
|
+
const token = await this.client.token({ subject, secret, data: this.authenticationData });
|
|
90
|
+
this.setNewToken(token);
|
|
91
|
+
}
|
|
92
|
+
async logout() {
|
|
93
|
+
try {
|
|
94
|
+
await this.client.endSession();
|
|
95
|
+
}
|
|
96
|
+
finally {
|
|
97
|
+
this.setNewToken(undefined);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
async refresh(data) {
|
|
101
|
+
if ((0, type_guards_1.isDefined)(data)) {
|
|
102
|
+
this.setAdditionalData(data);
|
|
103
|
+
}
|
|
104
|
+
try {
|
|
105
|
+
const token = await this.client.refresh({ data: this.authenticationData });
|
|
106
|
+
this.setNewToken(token);
|
|
107
|
+
}
|
|
108
|
+
catch (error) {
|
|
109
|
+
await this.handleError(error);
|
|
110
|
+
throw error;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
saveToken(token) {
|
|
114
|
+
if ((0, type_guards_1.isUndefined)(globalThis.localStorage)) {
|
|
115
|
+
return;
|
|
116
|
+
}
|
|
117
|
+
if ((0, type_guards_1.isNullOrUndefined)(token)) {
|
|
118
|
+
localStorage.removeItem(tokenStorageKey);
|
|
119
|
+
}
|
|
120
|
+
else {
|
|
121
|
+
const serialized = JSON.stringify(token);
|
|
122
|
+
localStorage.setItem(tokenStorageKey, serialized);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
loadToken() {
|
|
126
|
+
if ((0, type_guards_1.isUndefined)(globalThis.localStorage)) {
|
|
127
|
+
return;
|
|
128
|
+
}
|
|
129
|
+
const existingSerializedToken = localStorage.getItem(tokenStorageKey);
|
|
130
|
+
const token = (0, type_guards_1.isString)(existingSerializedToken)
|
|
131
|
+
? JSON.parse(existingSerializedToken)
|
|
132
|
+
: undefined;
|
|
133
|
+
this.tokenSubject.next(token);
|
|
134
|
+
}
|
|
135
|
+
setNewToken(token) {
|
|
136
|
+
this.saveToken(token);
|
|
137
|
+
this.tokenSubject.next(token);
|
|
138
|
+
this.tokenUpdateBus?.publishAndForget(token);
|
|
139
|
+
}
|
|
140
|
+
async refreshLoop() {
|
|
141
|
+
while (this.disposeToken.isUnset) {
|
|
142
|
+
try {
|
|
143
|
+
const token = await (0, rxjs_1.firstValueFrom)((0, rxjs_1.race)([this.definedToken$, this.disposeToken]));
|
|
144
|
+
if ((0, type_guards_1.isUndefined)(token)) {
|
|
145
|
+
return;
|
|
146
|
+
}
|
|
147
|
+
if ((0, date_time_1.currentTimestampSeconds)() >= (token.exp - 60)) {
|
|
148
|
+
await this.refresh();
|
|
149
|
+
}
|
|
150
|
+
await (0, timing_1.cancelableTimeout)(2500, this.disposeToken);
|
|
151
|
+
}
|
|
152
|
+
catch {
|
|
153
|
+
await (0, timing_1.cancelableTimeout)(5000, this.disposeToken);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
async handleError(error) {
|
|
158
|
+
this.logger.error(error);
|
|
159
|
+
this.errorSubject.next(error);
|
|
160
|
+
if (error instanceof invalid_token_error_1.InvalidTokenError) {
|
|
161
|
+
await this.logout();
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
};
|
|
165
|
+
AuthenticationService = __decorate([
|
|
166
|
+
(0, container_1.singleton)(),
|
|
167
|
+
__param(0, (0, container_1.inject)(tokens_1.AUTHENTICATION_API_CLIENT)),
|
|
168
|
+
__param(1, (0, container_1.inject)(message_bus_1.MessageBus, tokenUpdateBusName)),
|
|
169
|
+
__param(1, (0, container_1.optional)()),
|
|
170
|
+
__param(2, (0, container_1.inject)(tokens_1.INITIAL_AUTHENTICATION_DATA)),
|
|
171
|
+
__param(2, (0, container_1.optional)()),
|
|
172
|
+
__param(3, (0, container_1.resolveArg)('AuthenticationService')),
|
|
173
|
+
__metadata("design:paramtypes", [void 0, Object, Object, logger_1.Logger])
|
|
174
|
+
], AuthenticationService);
|
|
175
|
+
exports.AuthenticationService = AuthenticationService;
|
|
176
|
+
//# sourceMappingURL=authentication.service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"authentication.service.js","sourceRoot":"","sources":["../../../source/authentication/client/authentication.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./api.client"), exports);
|
|
18
|
+
__exportStar(require("./authentication.service"), exports);
|
|
19
|
+
__exportStar(require("./module"), exports);
|
|
20
|
+
__exportStar(require("./tokens"), exports);
|
|
21
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../source/authentication/client/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA6B;AAC7B,2DAAyC;AACzC,2CAAyB;AACzB,2CAAyB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ApiClientImplementation } from "../../api";
|
|
2
|
+
import type { Type } from "../../types";
|
|
3
|
+
import type { AuthenticationApiDefinition } from '../authentication.api';
|
|
4
|
+
export type AuthenticationModuleConfig = {
|
|
5
|
+
authenticationApiClient: Type<ApiClientImplementation<AuthenticationApiDefinition<any, any>>>;
|
|
6
|
+
initialAuthenticationData: unknown;
|
|
7
|
+
};
|
|
8
|
+
export declare function configureAuthenticationClient(config?: Partial<AuthenticationModuleConfig>): void;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.configureAuthenticationClient = void 0;
|
|
4
|
+
const container_1 = require("../../container");
|
|
5
|
+
const type_guards_1 = require("../../utils/type-guards");
|
|
6
|
+
const tokens_1 = require("./tokens");
|
|
7
|
+
function configureAuthenticationClient(config = {}) {
|
|
8
|
+
if ((0, type_guards_1.isDefined)(config.authenticationApiClient)) {
|
|
9
|
+
container_1.container.registerSingleton(tokens_1.AUTHENTICATION_API_CLIENT, { useToken: config.authenticationApiClient });
|
|
10
|
+
}
|
|
11
|
+
if ((0, type_guards_1.isDefined)(config.initialAuthenticationData)) {
|
|
12
|
+
container_1.container.register(tokens_1.INITIAL_AUTHENTICATION_DATA, { useValue: config.initialAuthenticationData });
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
exports.configureAuthenticationClient = configureAuthenticationClient;
|
|
16
|
+
//# sourceMappingURL=module.js.map
|