tscommons-esm-rest 1.0.10 → 2.0.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.
- package/dist/index.d.mts +8 -8
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
package/dist/index.d.mts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { ECommonsAuthorizationMethod, toECommonsAuthorizationMethod, fromECommonsAuthorizationMethod, isECommonsAuthorizationMethod, keyToECommonsAuthorizationMethod, ECOMMONS_AUTHORIZATION_METHODS } from './enums/ecommons-authorization-method.mjs';
|
|
2
|
-
import { CommonsSessionRestClientService } from './services/commons-session-rest-client.service.mjs';
|
|
3
|
-
import { CommonsUserSessionRestClientService } from './services/commons-user-session-rest-client.service.mjs';
|
|
4
|
-
import { CommonsBearerRestClientService } from './services/commons-bearer-rest-client.service.mjs';
|
|
5
1
|
import { CommonsStreamableRestClientService } from './services/commons-streamable-rest-client.service.mjs';
|
|
6
|
-
import { CommonsSimpleSinglePwSessionRestClientService } from './services/commons-simple-single-pw-session-rest-client.service.mjs';
|
|
7
|
-
import { CommonsKeyRestClientService } from './services/commons-key-rest-client.service.mjs';
|
|
8
|
-
import { CommonsStreamableAuthorizedRestClientService } from './services/commons-streamable-authorized-rest-client.service.mjs';
|
|
9
2
|
import { CommonsStreamableKeyRestClientService } from './services/commons-streamable-key-rest-client.service.mjs';
|
|
10
3
|
import { CommonsAuthorizedRestClientService } from './services/commons-authorized-rest-client.service.mjs';
|
|
4
|
+
import { CommonsStreamableAuthorizedRestClientService } from './services/commons-streamable-authorized-rest-client.service.mjs';
|
|
5
|
+
import { CommonsSimpleSinglePwSessionRestClientService } from './services/commons-simple-single-pw-session-rest-client.service.mjs';
|
|
11
6
|
import { CommonsRestClientService } from './services/commons-rest-client.service.mjs';
|
|
7
|
+
import { CommonsUserSessionRestClientService } from './services/commons-user-session-rest-client.service.mjs';
|
|
8
|
+
import { CommonsBearerRestClientService } from './services/commons-bearer-rest-client.service.mjs';
|
|
9
|
+
import { CommonsKeyRestClientService } from './services/commons-key-rest-client.service.mjs';
|
|
12
10
|
import { CommonsUserPwSessionRestClientService } from './services/commons-user-pw-session-rest-client.service.mjs';
|
|
11
|
+
import { CommonsSessionRestClientService } from './services/commons-session-rest-client.service.mjs';
|
|
12
|
+
import { ECommonsAuthorizationMethod, toECommonsAuthorizationMethod, fromECommonsAuthorizationMethod, isECommonsAuthorizationMethod, keyToECommonsAuthorizationMethod, ECOMMONS_AUTHORIZATION_METHODS } from './enums/ecommons-authorization-method.mjs';
|
|
13
13
|
import { TCommonsStreamableRestObservable } from './types/tcommons-streamable-rest-observable.mjs';
|
|
14
|
-
export {
|
|
14
|
+
export { CommonsStreamableRestClientService, CommonsStreamableKeyRestClientService, CommonsAuthorizedRestClientService, CommonsStreamableAuthorizedRestClientService, CommonsSimpleSinglePwSessionRestClientService, CommonsRestClientService, CommonsUserSessionRestClientService, CommonsBearerRestClientService, CommonsKeyRestClientService, CommonsUserPwSessionRestClientService, CommonsSessionRestClientService, ECommonsAuthorizationMethod, toECommonsAuthorizationMethod, fromECommonsAuthorizationMethod, isECommonsAuthorizationMethod, keyToECommonsAuthorizationMethod, ECOMMONS_AUTHORIZATION_METHODS, TCommonsStreamableRestObservable };
|
package/dist/index.mjs
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { ECommonsAuthorizationMethod, toECommonsAuthorizationMethod, fromECommonsAuthorizationMethod, isECommonsAuthorizationMethod, keyToECommonsAuthorizationMethod, ECOMMONS_AUTHORIZATION_METHODS } from './enums/ecommons-authorization-method.mjs';
|
|
2
|
-
import { CommonsSessionRestClientService } from './services/commons-session-rest-client.service.mjs';
|
|
3
|
-
import { CommonsUserSessionRestClientService } from './services/commons-user-session-rest-client.service.mjs';
|
|
4
|
-
import { CommonsBearerRestClientService } from './services/commons-bearer-rest-client.service.mjs';
|
|
5
1
|
import { CommonsStreamableRestClientService } from './services/commons-streamable-rest-client.service.mjs';
|
|
6
|
-
import { CommonsSimpleSinglePwSessionRestClientService } from './services/commons-simple-single-pw-session-rest-client.service.mjs';
|
|
7
|
-
import { CommonsKeyRestClientService } from './services/commons-key-rest-client.service.mjs';
|
|
8
|
-
import { CommonsStreamableAuthorizedRestClientService } from './services/commons-streamable-authorized-rest-client.service.mjs';
|
|
9
2
|
import { CommonsStreamableKeyRestClientService } from './services/commons-streamable-key-rest-client.service.mjs';
|
|
10
3
|
import { CommonsAuthorizedRestClientService } from './services/commons-authorized-rest-client.service.mjs';
|
|
4
|
+
import { CommonsStreamableAuthorizedRestClientService } from './services/commons-streamable-authorized-rest-client.service.mjs';
|
|
5
|
+
import { CommonsSimpleSinglePwSessionRestClientService } from './services/commons-simple-single-pw-session-rest-client.service.mjs';
|
|
11
6
|
import { CommonsRestClientService } from './services/commons-rest-client.service.mjs';
|
|
7
|
+
import { CommonsUserSessionRestClientService } from './services/commons-user-session-rest-client.service.mjs';
|
|
8
|
+
import { CommonsBearerRestClientService } from './services/commons-bearer-rest-client.service.mjs';
|
|
9
|
+
import { CommonsKeyRestClientService } from './services/commons-key-rest-client.service.mjs';
|
|
12
10
|
import { CommonsUserPwSessionRestClientService } from './services/commons-user-pw-session-rest-client.service.mjs';
|
|
13
|
-
|
|
11
|
+
import { CommonsSessionRestClientService } from './services/commons-session-rest-client.service.mjs';
|
|
12
|
+
import { ECommonsAuthorizationMethod, toECommonsAuthorizationMethod, fromECommonsAuthorizationMethod, isECommonsAuthorizationMethod, keyToECommonsAuthorizationMethod, ECOMMONS_AUTHORIZATION_METHODS } from './enums/ecommons-authorization-method.mjs';
|
|
13
|
+
export { CommonsStreamableRestClientService, CommonsStreamableKeyRestClientService, CommonsAuthorizedRestClientService, CommonsStreamableAuthorizedRestClientService, CommonsSimpleSinglePwSessionRestClientService, CommonsRestClientService, CommonsUserSessionRestClientService, CommonsBearerRestClientService, CommonsKeyRestClientService, CommonsUserPwSessionRestClientService, CommonsSessionRestClientService, ECommonsAuthorizationMethod, toECommonsAuthorizationMethod, fromECommonsAuthorizationMethod, isECommonsAuthorizationMethod, keyToECommonsAuthorizationMethod, ECOMMONS_AUTHORIZATION_METHODS };
|
|
14
14
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kCAAkC,EAAE,MAAM,uDAAuD,CAAC;AAC3G,OAAO,EAAE,qCAAqC,EAAE,MAAM,2DAA2D,CAAC;AAClH,OAAO,EAAE,kCAAkC,EAAE,MAAM,uDAAuD,CAAC;AAC3G,OAAO,EAAE,4CAA4C,EAAE,MAAM,kEAAkE,CAAC;AAChI,OAAO,EAAE,6CAA6C,EAAE,MAAM,qEAAqE,CAAC;AACpI,OAAO,EAAE,wBAAwB,EAAE,MAAM,4CAA4C,CAAC;AACtF,OAAO,EAAE,mCAAmC,EAAE,MAAM,yDAAyD,CAAC;AAC9G,OAAO,EAAE,8BAA8B,EAAE,MAAM,mDAAmD,CAAC;AACnG,OAAO,EAAE,2BAA2B,EAAE,MAAM,gDAAgD,CAAC;AAC7F,OAAO,EAAE,qCAAqC,EAAE,MAAM,4DAA4D,CAAC;AACnH,OAAO,EAAE,+BAA+B,EAAE,MAAM,oDAAoD,CAAC;AACrG,OAAO,EACL,2BAA2B,EAC3B,6BAA6B,EAC7B,+BAA+B,EAC/B,6BAA6B,EAC7B,gCAAgC,EAChC,8BAA8B,EAC/B,MAAM,2CAA2C,CAAC;AAEnD,OAAO,EACN,kCAAkC,EAClC,qCAAqC,EACrC,kCAAkC,EAClC,4CAA4C,EAC5C,6CAA6C,EAC7C,wBAAwB,EACxB,mCAAmC,EACnC,8BAA8B,EAC9B,2BAA2B,EAC3B,qCAAqC,EACrC,+BAA+B,EAC/B,2BAA2B,EAC3B,6BAA6B,EAC7B,+BAA+B,EAC/B,6BAA6B,EAC7B,gCAAgC,EAChC,8BAA8B,EAE9B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tscommons-esm-rest",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"tsc": "./node_modules/typescript/bin/tsc",
|
|
@@ -15,18 +15,18 @@
|
|
|
15
15
|
"author": "Pete Morris",
|
|
16
16
|
"license": "ISC",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@stylistic/eslint-plugin
|
|
19
|
-
"eslint-plugin-import": "^2.
|
|
20
|
-
"eslint-plugin-prefer-arrow-functions": "^3.
|
|
21
|
-
"typescript": "^5.
|
|
22
|
-
"typescript-eslint": "^8.
|
|
18
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
19
|
+
"eslint-plugin-import": "^2.32.0",
|
|
20
|
+
"eslint-plugin-prefer-arrow-functions": "^3.9.1",
|
|
21
|
+
"typescript": "^5.8.0",
|
|
22
|
+
"typescript-eslint": "^8.53.0"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
25
25
|
"dist/**/*"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"rxjs": "^7.8.1",
|
|
29
|
-
"tscommons-esm-core": "^0.
|
|
30
|
-
"tscommons-esm-http": "^
|
|
29
|
+
"tscommons-esm-core": "^1.0.1",
|
|
30
|
+
"tscommons-esm-http": "^3.0.0"
|
|
31
31
|
}
|
|
32
32
|
}
|