tscommons-esm-http 2.0.2 → 2.0.4

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 CHANGED
@@ -1,28 +1,28 @@
1
- import { commonsHttpUrlNormalizePath, commonsHttpUrlNormalizeRelativeToAbsolute } from './helpers/commons-http-url.mjs';
1
+ import { ECommonsHttpResponseDataType, toECommonsHttpResponseDataType, fromECommonsHttpResponseDataType, isECommonsHttpResponseDataType, keyToECommonsHttpResponseDataType, ECOMMONS_HTTP_RESPONSE_DATA_TYPES } from './enums/ecommons-http-response-data-type.mjs';
2
+ import { ECommonsHttpContentType, toECommonsHttpContentType, fromECommonsHttpContentType, isECommonsHttpContentType, keyToECommonsHttpContentType, ECOMMONS_HTTP_CONTENT_TYPES } from './enums/ecommons-http-content-type.mjs';
3
+ import { ECommonsHttpResponseCode, fromECommonsHttpResponseCode, toECommonsHttpResponseCode } from './enums/ecommons-http-response-code.mjs';
4
+ import { ECommonsHttpMethod, toECommonsHttpMethod, fromECommonsHttpMethod, isECommonsHttpMethod, keyToECommonsHttpMethod, ECOMMONS_HTTP_METHODS } from './enums/ecommons-http-method.mjs';
5
+ import { CommonsHttpTimeoutError, ICommonsHttpClientImplementation, CommonsHttpClientService } from './services/commons-http-client.service.mjs';
6
+ import { ICommonsStreamableHttpClientImplementation, CommonsStreamableHttpClientService } from './services/commons-streamable-http-client.service.mjs';
2
7
  import { commonsHttpClientInternalBuildHeadersOrParams, commonsHttpClientInternalAppendContentType } from './helpers/http-client-internal-helpers.mjs';
8
+ import { commonsHttpUrlNormalizePath, commonsHttpUrlNormalizeRelativeToAbsolute } from './helpers/commons-http-url.mjs';
3
9
  import { commonsHttpBuildErrorFromResponseCode, commonsHttpBuildSuccessFromResponseCode } from './helpers/commons-http-responses.mjs';
10
+ import { TCommonsHttpRequestOptions, TCommonsHttpInternalRequestOptions, isTCommonsHttpRequestOptions, TCommonsHttpRequestOptionsAsPeriod, isTCommonsHttpRequestOptionsAsPeriod, fromTCommonsHttpRequestOptionsAsPeriod } from './types/tcommons-http-request-options.mjs';
11
+ import { THttpHeaderOrParamObject } from './types/thttp-header-or-param-object.mjs';
12
+ import { TCommonsStreamableHttpObservable } from './types/tcommons-streamable-http-observable.mjs';
13
+ import { TCommonsHttpUrlSegments, isTCommonsHttpUrlSegments, parseTCommonsHttpUrlSegments } from './types/tcommons-http-url-segments.mjs';
14
+ import { CommonsHttpError } from './classes/commons-http-error.class.mjs';
4
15
  import { CommonsHttpUrl } from './classes/commons-http-url.class.mjs';
5
- import { CommonsHttpNotImplementedError } from './classes/commons-http-not-implemented-error.class.mjs';
6
- import { CommonsHttpForbiddenError } from './classes/commons-http-forbidden-error.class.mjs';
16
+ import { CommonsHttpNotFoundError } from './classes/commons-http-not-found-error.class.mjs';
7
17
  import { CommonsHttpSuccess } from './classes/commons-http-success.class.mjs';
8
- import { CommonsHttpBadRequestError } from './classes/commons-http-bad-request-error.class.mjs';
9
- import { CommonsHttpCreatedSuccess } from './classes/commons-http-created-success.class.mjs';
10
- import { CommonsHttpOkSuccess } from './classes/commons-http-ok-success.class.mjs';
11
18
  import { CommonsHttpUnauthorizedError } from './classes/commons-http-unauthorized-error.class.mjs';
19
+ import { CommonsHttpOkSuccess } from './classes/commons-http-ok-success.class.mjs';
12
20
  import { CommonsHttpConflictError } from './classes/commons-http-conflict-error.class.mjs';
21
+ import { CommonsHttpInternalServerError } from './classes/commons-http-internal-server-error.class.mjs';
13
22
  import { CommonsHttpServiceUnavailableError } from './classes/commons-http-service-unavailable-error.class.mjs';
14
- import { CommonsHttpNotFoundError } from './classes/commons-http-not-found-error.class.mjs';
15
- import { CommonsHttpError } from './classes/commons-http-error.class.mjs';
23
+ import { CommonsHttpForbiddenError } from './classes/commons-http-forbidden-error.class.mjs';
24
+ import { CommonsHttpBadRequestError } from './classes/commons-http-bad-request-error.class.mjs';
16
25
  import { CommonsHttpNoContentSuccess } from './classes/commons-http-no-content-success.class.mjs';
17
- import { CommonsHttpInternalServerError } from './classes/commons-http-internal-server-error.class.mjs';
18
- import { CommonsHttpTimeoutError, ICommonsHttpClientImplementation, CommonsHttpClientService } from './services/commons-http-client.service.mjs';
19
- import { ICommonsStreamableHttpClientImplementation, CommonsStreamableHttpClientService } from './services/commons-streamable-http-client.service.mjs';
20
- import { ECommonsHttpResponseCode, fromECommonsHttpResponseCode, toECommonsHttpResponseCode } from './enums/ecommons-http-response-code.mjs';
21
- import { ECommonsHttpContentType, toECommonsHttpContentType, fromECommonsHttpContentType, isECommonsHttpContentType, keyToECommonsHttpContentType, ECOMMONS_HTTP_CONTENT_TYPES } from './enums/ecommons-http-content-type.mjs';
22
- import { ECommonsHttpMethod, toECommonsHttpMethod, fromECommonsHttpMethod, isECommonsHttpMethod, keyToECommonsHttpMethod, ECOMMONS_HTTP_METHODS } from './enums/ecommons-http-method.mjs';
23
- import { ECommonsHttpResponseDataType, toECommonsHttpResponseDataType, fromECommonsHttpResponseDataType, isECommonsHttpResponseDataType, keyToECommonsHttpResponseDataType, ECOMMONS_HTTP_RESPONSE_DATA_TYPES } from './enums/ecommons-http-response-data-type.mjs';
24
- import { TCommonsHttpUrlSegments, isTCommonsHttpUrlSegments, parseTCommonsHttpUrlSegments } from './types/tcommons-http-url-segments.mjs';
25
- import { TCommonsHttpRequestOptions, TCommonsHttpInternalRequestOptions, isTCommonsHttpRequestOptions, TCommonsHttpRequestOptionsAsPeriod, isTCommonsHttpRequestOptionsAsPeriod, fromTCommonsHttpRequestOptionsAsPeriod } from './types/tcommons-http-request-options.mjs';
26
- import { TCommonsStreamableHttpObservable } from './types/tcommons-streamable-http-observable.mjs';
27
- import { THttpHeaderOrParamObject } from './types/thttp-header-or-param-object.mjs';
28
- export { commonsHttpUrlNormalizePath, commonsHttpUrlNormalizeRelativeToAbsolute, commonsHttpClientInternalBuildHeadersOrParams, commonsHttpClientInternalAppendContentType, commonsHttpBuildErrorFromResponseCode, commonsHttpBuildSuccessFromResponseCode, CommonsHttpUrl, CommonsHttpNotImplementedError, CommonsHttpForbiddenError, CommonsHttpSuccess, CommonsHttpBadRequestError, CommonsHttpCreatedSuccess, CommonsHttpOkSuccess, CommonsHttpUnauthorizedError, CommonsHttpConflictError, CommonsHttpServiceUnavailableError, CommonsHttpNotFoundError, CommonsHttpError, CommonsHttpNoContentSuccess, CommonsHttpInternalServerError, CommonsHttpTimeoutError, ICommonsHttpClientImplementation, CommonsHttpClientService, ICommonsStreamableHttpClientImplementation, CommonsStreamableHttpClientService, ECommonsHttpResponseCode, fromECommonsHttpResponseCode, toECommonsHttpResponseCode, ECommonsHttpContentType, toECommonsHttpContentType, fromECommonsHttpContentType, isECommonsHttpContentType, keyToECommonsHttpContentType, ECOMMONS_HTTP_CONTENT_TYPES, ECommonsHttpMethod, toECommonsHttpMethod, fromECommonsHttpMethod, isECommonsHttpMethod, keyToECommonsHttpMethod, ECOMMONS_HTTP_METHODS, ECommonsHttpResponseDataType, toECommonsHttpResponseDataType, fromECommonsHttpResponseDataType, isECommonsHttpResponseDataType, keyToECommonsHttpResponseDataType, ECOMMONS_HTTP_RESPONSE_DATA_TYPES, TCommonsHttpUrlSegments, isTCommonsHttpUrlSegments, parseTCommonsHttpUrlSegments, TCommonsHttpRequestOptions, TCommonsHttpInternalRequestOptions, isTCommonsHttpRequestOptions, TCommonsHttpRequestOptionsAsPeriod, isTCommonsHttpRequestOptionsAsPeriod, fromTCommonsHttpRequestOptionsAsPeriod, TCommonsStreamableHttpObservable, THttpHeaderOrParamObject };
26
+ import { CommonsHttpCreatedSuccess } from './classes/commons-http-created-success.class.mjs';
27
+ import { CommonsHttpNotImplementedError } from './classes/commons-http-not-implemented-error.class.mjs';
28
+ export { ECommonsHttpResponseDataType, toECommonsHttpResponseDataType, fromECommonsHttpResponseDataType, isECommonsHttpResponseDataType, keyToECommonsHttpResponseDataType, ECOMMONS_HTTP_RESPONSE_DATA_TYPES, ECommonsHttpContentType, toECommonsHttpContentType, fromECommonsHttpContentType, isECommonsHttpContentType, keyToECommonsHttpContentType, ECOMMONS_HTTP_CONTENT_TYPES, ECommonsHttpResponseCode, fromECommonsHttpResponseCode, toECommonsHttpResponseCode, ECommonsHttpMethod, toECommonsHttpMethod, fromECommonsHttpMethod, isECommonsHttpMethod, keyToECommonsHttpMethod, ECOMMONS_HTTP_METHODS, CommonsHttpTimeoutError, ICommonsHttpClientImplementation, CommonsHttpClientService, ICommonsStreamableHttpClientImplementation, CommonsStreamableHttpClientService, commonsHttpClientInternalBuildHeadersOrParams, commonsHttpClientInternalAppendContentType, commonsHttpUrlNormalizePath, commonsHttpUrlNormalizeRelativeToAbsolute, commonsHttpBuildErrorFromResponseCode, commonsHttpBuildSuccessFromResponseCode, TCommonsHttpRequestOptions, TCommonsHttpInternalRequestOptions, isTCommonsHttpRequestOptions, TCommonsHttpRequestOptionsAsPeriod, isTCommonsHttpRequestOptionsAsPeriod, fromTCommonsHttpRequestOptionsAsPeriod, THttpHeaderOrParamObject, TCommonsStreamableHttpObservable, TCommonsHttpUrlSegments, isTCommonsHttpUrlSegments, parseTCommonsHttpUrlSegments, CommonsHttpError, CommonsHttpUrl, CommonsHttpNotFoundError, CommonsHttpSuccess, CommonsHttpUnauthorizedError, CommonsHttpOkSuccess, CommonsHttpConflictError, CommonsHttpInternalServerError, CommonsHttpServiceUnavailableError, CommonsHttpForbiddenError, CommonsHttpBadRequestError, CommonsHttpNoContentSuccess, CommonsHttpCreatedSuccess, CommonsHttpNotImplementedError };
package/dist/index.mjs CHANGED
@@ -1,27 +1,27 @@
1
- import { commonsHttpUrlNormalizePath, commonsHttpUrlNormalizeRelativeToAbsolute } from './helpers/commons-http-url.mjs';
1
+ import { ECommonsHttpResponseDataType, toECommonsHttpResponseDataType, fromECommonsHttpResponseDataType, isECommonsHttpResponseDataType, keyToECommonsHttpResponseDataType, ECOMMONS_HTTP_RESPONSE_DATA_TYPES } from './enums/ecommons-http-response-data-type.mjs';
2
+ import { ECommonsHttpContentType, toECommonsHttpContentType, fromECommonsHttpContentType, isECommonsHttpContentType, keyToECommonsHttpContentType, ECOMMONS_HTTP_CONTENT_TYPES } from './enums/ecommons-http-content-type.mjs';
3
+ import { ECommonsHttpResponseCode, fromECommonsHttpResponseCode, toECommonsHttpResponseCode } from './enums/ecommons-http-response-code.mjs';
4
+ import { ECommonsHttpMethod, toECommonsHttpMethod, fromECommonsHttpMethod, isECommonsHttpMethod, keyToECommonsHttpMethod, ECOMMONS_HTTP_METHODS } from './enums/ecommons-http-method.mjs';
5
+ import { CommonsHttpTimeoutError, CommonsHttpClientService } from './services/commons-http-client.service.mjs';
6
+ import { CommonsStreamableHttpClientService } from './services/commons-streamable-http-client.service.mjs';
2
7
  import { commonsHttpClientInternalBuildHeadersOrParams, commonsHttpClientInternalAppendContentType } from './helpers/http-client-internal-helpers.mjs';
8
+ import { commonsHttpUrlNormalizePath, commonsHttpUrlNormalizeRelativeToAbsolute } from './helpers/commons-http-url.mjs';
3
9
  import { commonsHttpBuildErrorFromResponseCode, commonsHttpBuildSuccessFromResponseCode } from './helpers/commons-http-responses.mjs';
10
+ import { isTCommonsHttpRequestOptions, isTCommonsHttpRequestOptionsAsPeriod, fromTCommonsHttpRequestOptionsAsPeriod } from './types/tcommons-http-request-options.mjs';
11
+ import { isTCommonsHttpUrlSegments, parseTCommonsHttpUrlSegments } from './types/tcommons-http-url-segments.mjs';
12
+ import { CommonsHttpError } from './classes/commons-http-error.class.mjs';
4
13
  import { CommonsHttpUrl } from './classes/commons-http-url.class.mjs';
5
- import { CommonsHttpNotImplementedError } from './classes/commons-http-not-implemented-error.class.mjs';
6
- import { CommonsHttpForbiddenError } from './classes/commons-http-forbidden-error.class.mjs';
14
+ import { CommonsHttpNotFoundError } from './classes/commons-http-not-found-error.class.mjs';
7
15
  import { CommonsHttpSuccess } from './classes/commons-http-success.class.mjs';
8
- import { CommonsHttpBadRequestError } from './classes/commons-http-bad-request-error.class.mjs';
9
- import { CommonsHttpCreatedSuccess } from './classes/commons-http-created-success.class.mjs';
10
- import { CommonsHttpOkSuccess } from './classes/commons-http-ok-success.class.mjs';
11
16
  import { CommonsHttpUnauthorizedError } from './classes/commons-http-unauthorized-error.class.mjs';
17
+ import { CommonsHttpOkSuccess } from './classes/commons-http-ok-success.class.mjs';
12
18
  import { CommonsHttpConflictError } from './classes/commons-http-conflict-error.class.mjs';
19
+ import { CommonsHttpInternalServerError } from './classes/commons-http-internal-server-error.class.mjs';
13
20
  import { CommonsHttpServiceUnavailableError } from './classes/commons-http-service-unavailable-error.class.mjs';
14
- import { CommonsHttpNotFoundError } from './classes/commons-http-not-found-error.class.mjs';
15
- import { CommonsHttpError } from './classes/commons-http-error.class.mjs';
21
+ import { CommonsHttpForbiddenError } from './classes/commons-http-forbidden-error.class.mjs';
22
+ import { CommonsHttpBadRequestError } from './classes/commons-http-bad-request-error.class.mjs';
16
23
  import { CommonsHttpNoContentSuccess } from './classes/commons-http-no-content-success.class.mjs';
17
- import { CommonsHttpInternalServerError } from './classes/commons-http-internal-server-error.class.mjs';
18
- import { CommonsHttpTimeoutError, CommonsHttpClientService } from './services/commons-http-client.service.mjs';
19
- import { CommonsStreamableHttpClientService } from './services/commons-streamable-http-client.service.mjs';
20
- import { ECommonsHttpResponseCode, fromECommonsHttpResponseCode, toECommonsHttpResponseCode } from './enums/ecommons-http-response-code.mjs';
21
- import { ECommonsHttpContentType, toECommonsHttpContentType, fromECommonsHttpContentType, isECommonsHttpContentType, keyToECommonsHttpContentType, ECOMMONS_HTTP_CONTENT_TYPES } from './enums/ecommons-http-content-type.mjs';
22
- import { ECommonsHttpMethod, toECommonsHttpMethod, fromECommonsHttpMethod, isECommonsHttpMethod, keyToECommonsHttpMethod, ECOMMONS_HTTP_METHODS } from './enums/ecommons-http-method.mjs';
23
- import { ECommonsHttpResponseDataType, toECommonsHttpResponseDataType, fromECommonsHttpResponseDataType, isECommonsHttpResponseDataType, keyToECommonsHttpResponseDataType, ECOMMONS_HTTP_RESPONSE_DATA_TYPES } from './enums/ecommons-http-response-data-type.mjs';
24
- import { isTCommonsHttpUrlSegments, parseTCommonsHttpUrlSegments } from './types/tcommons-http-url-segments.mjs';
25
- import { isTCommonsHttpRequestOptions, isTCommonsHttpRequestOptionsAsPeriod, fromTCommonsHttpRequestOptionsAsPeriod } from './types/tcommons-http-request-options.mjs';
26
- export { commonsHttpUrlNormalizePath, commonsHttpUrlNormalizeRelativeToAbsolute, commonsHttpClientInternalBuildHeadersOrParams, commonsHttpClientInternalAppendContentType, commonsHttpBuildErrorFromResponseCode, commonsHttpBuildSuccessFromResponseCode, CommonsHttpUrl, CommonsHttpNotImplementedError, CommonsHttpForbiddenError, CommonsHttpSuccess, CommonsHttpBadRequestError, CommonsHttpCreatedSuccess, CommonsHttpOkSuccess, CommonsHttpUnauthorizedError, CommonsHttpConflictError, CommonsHttpServiceUnavailableError, CommonsHttpNotFoundError, CommonsHttpError, CommonsHttpNoContentSuccess, CommonsHttpInternalServerError, CommonsHttpTimeoutError, CommonsHttpClientService, CommonsStreamableHttpClientService, ECommonsHttpResponseCode, fromECommonsHttpResponseCode, toECommonsHttpResponseCode, ECommonsHttpContentType, toECommonsHttpContentType, fromECommonsHttpContentType, isECommonsHttpContentType, keyToECommonsHttpContentType, ECOMMONS_HTTP_CONTENT_TYPES, ECommonsHttpMethod, toECommonsHttpMethod, fromECommonsHttpMethod, isECommonsHttpMethod, keyToECommonsHttpMethod, ECOMMONS_HTTP_METHODS, ECommonsHttpResponseDataType, toECommonsHttpResponseDataType, fromECommonsHttpResponseDataType, isECommonsHttpResponseDataType, keyToECommonsHttpResponseDataType, ECOMMONS_HTTP_RESPONSE_DATA_TYPES, isTCommonsHttpUrlSegments, parseTCommonsHttpUrlSegments, isTCommonsHttpRequestOptions, isTCommonsHttpRequestOptionsAsPeriod, fromTCommonsHttpRequestOptionsAsPeriod };
24
+ import { CommonsHttpCreatedSuccess } from './classes/commons-http-created-success.class.mjs';
25
+ import { CommonsHttpNotImplementedError } from './classes/commons-http-not-implemented-error.class.mjs';
26
+ export { ECommonsHttpResponseDataType, toECommonsHttpResponseDataType, fromECommonsHttpResponseDataType, isECommonsHttpResponseDataType, keyToECommonsHttpResponseDataType, ECOMMONS_HTTP_RESPONSE_DATA_TYPES, ECommonsHttpContentType, toECommonsHttpContentType, fromECommonsHttpContentType, isECommonsHttpContentType, keyToECommonsHttpContentType, ECOMMONS_HTTP_CONTENT_TYPES, ECommonsHttpResponseCode, fromECommonsHttpResponseCode, toECommonsHttpResponseCode, ECommonsHttpMethod, toECommonsHttpMethod, fromECommonsHttpMethod, isECommonsHttpMethod, keyToECommonsHttpMethod, ECOMMONS_HTTP_METHODS, CommonsHttpTimeoutError, CommonsHttpClientService, CommonsStreamableHttpClientService, commonsHttpClientInternalBuildHeadersOrParams, commonsHttpClientInternalAppendContentType, commonsHttpUrlNormalizePath, commonsHttpUrlNormalizeRelativeToAbsolute, commonsHttpBuildErrorFromResponseCode, commonsHttpBuildSuccessFromResponseCode, isTCommonsHttpRequestOptions, isTCommonsHttpRequestOptionsAsPeriod, fromTCommonsHttpRequestOptionsAsPeriod, isTCommonsHttpUrlSegments, parseTCommonsHttpUrlSegments, CommonsHttpError, CommonsHttpUrl, CommonsHttpNotFoundError, CommonsHttpSuccess, CommonsHttpUnauthorizedError, CommonsHttpOkSuccess, CommonsHttpConflictError, CommonsHttpInternalServerError, CommonsHttpServiceUnavailableError, CommonsHttpForbiddenError, CommonsHttpBadRequestError, CommonsHttpNoContentSuccess, CommonsHttpCreatedSuccess, CommonsHttpNotImplementedError };
27
27
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tscommons-esm-http",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "tsc": "./node_modules/typescript/bin/tsc",
@@ -26,6 +26,6 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "rxjs": "^7.8.1",
29
- "tscommons-esm-core": "^0.3.0"
29
+ "tscommons-esm-core": "^0.5.0"
30
30
  }
31
31
  }