@extrahorizon/javascript-sdk 8.12.0-dev-174-523a199 → 8.12.0-dev-176-066ecfb
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/CHANGELOG.md +15 -0
- package/build/client.d.ts +3 -0
- package/build/index.cjs.js +1 -1
- package/build/index.mjs +1 -1
- package/build/types/client.d.ts +3 -0
- package/build/types/version.d.ts +1 -1
- package/build/version.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [8.12.0]
|
|
9
9
|
|
|
10
|
+
### Added
|
|
11
|
+
- Added the error type `ServiceUnreachableError` to support detecting services that are no longer running
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Options are now correctly passed to the `findAll` method
|
|
15
|
+
- An error is now correctly thrown when providing the `skipCount` RQL operator to the `findAll` method
|
|
16
|
+
|
|
17
|
+
### Deprecated
|
|
18
|
+
- `exh.templates.*`
|
|
19
|
+
- The templates service has been deprecated in favor of the templates service V2
|
|
20
|
+
- `exh.profiles.*`
|
|
21
|
+
- The profiles service has been deprecated in favor of using a custom schema in the data service
|
|
22
|
+
- `exh.notifications.*`
|
|
23
|
+
- The notifications service has been deprecated in favor of the notifications service V2
|
|
24
|
+
|
|
10
25
|
## [8.11.0]
|
|
11
26
|
|
|
12
27
|
### Added
|
package/build/client.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { ClientParams, ParamsOauth1, ParamsOauth2, ParamsProxy } from './types';
|
|
|
5
5
|
export interface Client<T extends ClientParams> {
|
|
6
6
|
raw: AuthHttpClient;
|
|
7
7
|
/**
|
|
8
|
+
* @deprecated Use `templatesV2` instead.
|
|
8
9
|
* The template service manages templates used to build emails. It can be used to retrieve, create, update or delete templates as well as resolving them.
|
|
9
10
|
* @see https://swagger.extrahorizon.com/listing/?service=templates-service&redirectToVersion=1
|
|
10
11
|
*/
|
|
@@ -55,11 +56,13 @@ export interface Client<T extends ClientParams> {
|
|
|
55
56
|
*/
|
|
56
57
|
localizations: ReturnType<typeof localizationsService>;
|
|
57
58
|
/**
|
|
59
|
+
* @deprecated Use the `data` service with a custom schema instead.
|
|
58
60
|
* Storage service of profiles. A profile is a separate object on its own, comprising medical information like medication and medical history, as well as technical information, like what phone a user is using.
|
|
59
61
|
* @see https://swagger.extrahorizon.com/listing/?service=profiles-service&redirectToVersion=1
|
|
60
62
|
*/
|
|
61
63
|
profiles: ReturnType<typeof profilesService>;
|
|
62
64
|
/**
|
|
65
|
+
* @deprecated Use `notificationsV2` instead.
|
|
63
66
|
* A service that handles push notifications.
|
|
64
67
|
* @see https://swagger.extrahorizon.com/listing/?service=notifications-service&redirectToVersion=1
|
|
65
68
|
*/
|
package/build/index.cjs.js
CHANGED
package/build/index.mjs
CHANGED
package/build/types/client.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ import { ClientParams, ParamsOauth1, ParamsOauth2, ParamsProxy } from './types';
|
|
|
5
5
|
export interface Client<T extends ClientParams> {
|
|
6
6
|
raw: AuthHttpClient;
|
|
7
7
|
/**
|
|
8
|
+
* @deprecated Use `templatesV2` instead.
|
|
8
9
|
* The template service manages templates used to build emails. It can be used to retrieve, create, update or delete templates as well as resolving them.
|
|
9
10
|
* @see https://swagger.extrahorizon.com/listing/?service=templates-service&redirectToVersion=1
|
|
10
11
|
*/
|
|
@@ -55,11 +56,13 @@ export interface Client<T extends ClientParams> {
|
|
|
55
56
|
*/
|
|
56
57
|
localizations: ReturnType<typeof localizationsService>;
|
|
57
58
|
/**
|
|
59
|
+
* @deprecated Use the `data` service with a custom schema instead.
|
|
58
60
|
* Storage service of profiles. A profile is a separate object on its own, comprising medical information like medication and medical history, as well as technical information, like what phone a user is using.
|
|
59
61
|
* @see https://swagger.extrahorizon.com/listing/?service=profiles-service&redirectToVersion=1
|
|
60
62
|
*/
|
|
61
63
|
profiles: ReturnType<typeof profilesService>;
|
|
62
64
|
/**
|
|
65
|
+
* @deprecated Use `notificationsV2` instead.
|
|
63
66
|
* A service that handles push notifications.
|
|
64
67
|
* @see https://swagger.extrahorizon.com/listing/?service=notifications-service&redirectToVersion=1
|
|
65
68
|
*/
|
package/build/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.12.0-dev-
|
|
1
|
+
export declare const version = "8.12.0-dev-176-066ecfb";
|
package/build/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.12.0-dev-
|
|
1
|
+
export declare const version = "8.12.0-dev-176-066ecfb";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@extrahorizon/javascript-sdk",
|
|
3
|
-
"version": "8.12.0-dev-
|
|
3
|
+
"version": "8.12.0-dev-176-066ecfb",
|
|
4
4
|
"description": "This package serves as a JavaScript wrapper around all Extra Horizon cloud services.",
|
|
5
5
|
"main": "build/index.cjs.js",
|
|
6
6
|
"types": "build/types/index.d.ts",
|