@tstdl/base 0.92.66 → 0.92.68
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/authentication/index.js
CHANGED
|
@@ -12,11 +12,8 @@ import '../../polyfills.js';
|
|
|
12
12
|
import { Agent } from 'undici';
|
|
13
13
|
import { configureApiServer } from '../../api/server/index.js';
|
|
14
14
|
import { Application } from '../../application/application.js';
|
|
15
|
-
import { AuthenticationClientService, configureAuthenticationClient, getAuthenticationApiClient } from '../../authentication/
|
|
16
|
-
import { AuthenticationAncillaryService } from '../../authentication/index.js';
|
|
17
|
-
import { AuthenticationApiController } from '../../authentication/server/authentication.api-controller.js';
|
|
18
|
-
import { AuthenticationService as AuthenticationServerService } from '../../authentication/server/authentication.service.js';
|
|
19
|
-
import { configureAuthenticationServer } from '../../authentication/server/module.js';
|
|
15
|
+
import { AuthenticationClientService, configureAuthenticationClient, getAuthenticationApiClient } from '../../authentication/index.js';
|
|
16
|
+
import { AuthenticationAncillaryService, AuthenticationApiController, AuthenticationService as AuthenticationServerService, configureAuthenticationServer } from '../../authentication/server/index.js';
|
|
20
17
|
import { configureUndiciHttpClientAdapter } from '../../http/client/adapters/undici.adapter.js';
|
|
21
18
|
import { configureHttpClient } from '../../http/client/module.js';
|
|
22
19
|
import { configureNodeHttpServer } from '../../http/server/node/module.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tstdl/base",
|
|
3
|
-
"version": "0.92.
|
|
3
|
+
"version": "0.92.68",
|
|
4
4
|
"author": "Patrick Hein",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"./api": "./api/index.js",
|
|
44
44
|
"./application": "./application/index.js",
|
|
45
45
|
"./authentication": "./authentication/index.js",
|
|
46
|
+
"./authentication/server": "./authentication/server/index.js",
|
|
46
47
|
"./browser": "./browser/index.js",
|
|
47
48
|
"./cancellation": "./cancellation/index.js",
|
|
48
49
|
"./cookie": "./cookie/index.js",
|
|
@@ -52,10 +53,11 @@
|
|
|
52
53
|
"./decorators": "./decorators/index.js",
|
|
53
54
|
"./disposable": "./disposable/index.js",
|
|
54
55
|
"./distributed-loop": "./distributed-loop/index.js",
|
|
55
|
-
"./dom": "./dom/index.js",
|
|
56
56
|
"./document-management": "./document-management/index.js",
|
|
57
|
-
"./
|
|
57
|
+
"./document-management/server": "./document-management/server/index.js",
|
|
58
|
+
"./dom": "./dom/index.js",
|
|
58
59
|
"./enumerable": "./enumerable/index.js",
|
|
60
|
+
"./enumeration": "./enumeration/index.js",
|
|
59
61
|
"./errors": "./errors/index.js",
|
|
60
62
|
"./file": "./file/index.js",
|
|
61
63
|
"./function": "./function/index.js",
|
|
@@ -85,6 +87,7 @@
|
|
|
85
87
|
"./password": "./password/index.js",
|
|
86
88
|
"./pdf": "./pdf/index.js",
|
|
87
89
|
"./pool": "./pool/index.js",
|
|
90
|
+
"./process": "./process/index.js",
|
|
88
91
|
"./promise": "./promise/index.js",
|
|
89
92
|
"./queue": "./queue/index.js",
|
|
90
93
|
"./queue/mongo": "./queue/mongo/index.js",
|
|
@@ -102,7 +105,6 @@
|
|
|
102
105
|
"./serializer/handlers": "./serializer/handlers/index.js",
|
|
103
106
|
"./signals": "./signals/index.js",
|
|
104
107
|
"./signals/implementation": "./signals/implementation/index.js",
|
|
105
|
-
"./process": "./process/index.js",
|
|
106
108
|
"./sse": "./sse/index.js",
|
|
107
109
|
"./templates": "./templates/index.js",
|
|
108
110
|
"./templates/providers": "./templates/providers/index.js",
|