@extrahorizon/javascript-sdk 8.9.1-dev-153-23dbf01 → 8.9.1-dev-155-ab27db9

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 CHANGED
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ### Fixed
11
11
  - `exh.users.updatePasswordPolicy` now correctly accepts a partial `PasswordPolicy` object.
12
+ - The type of the request body for `exh.data.statuses.update` now correctly includes the `data` property.
12
13
  - The `VerificationSettings` type is now exported
13
14
  - The `ForgotPasswordRequest` type is now exported
14
15
  - The `ActivationRequest` type is now exported
@@ -5615,7 +5615,7 @@ const templatesV2Service = (httpWithAuth) => {
5615
5615
  };
5616
5616
  };
5617
5617
 
5618
- const version = '8.9.1-dev-153-23dbf01';
5618
+ const version = '8.9.1-dev-155-ab27db9';
5619
5619
 
5620
5620
  /**
5621
5621
  * Create ExtraHorizon client.
package/build/index.mjs CHANGED
@@ -5585,7 +5585,7 @@ const templatesV2Service = (httpWithAuth) => {
5585
5585
  };
5586
5586
  };
5587
5587
 
5588
- const version = '8.9.1-dev-153-23dbf01';
5588
+ const version = '8.9.1-dev-155-ab27db9';
5589
5589
 
5590
5590
  /**
5591
5591
  * Create ExtraHorizon client.
@@ -1428,7 +1428,9 @@ export interface DataStatusesService {
1428
1428
  * @returns AffectedRecords
1429
1429
  * @throws {ResourceUnknownError}
1430
1430
  */
1431
- update(schemaIdOrName: ObjectId | string, name: string, requestBody: StatusData, options?: OptionsBase): Promise<AffectedRecords>;
1431
+ update(schemaIdOrName: ObjectId | string, name: string, requestBody: {
1432
+ data: StatusData;
1433
+ }, options?: OptionsBase): Promise<AffectedRecords>;
1432
1434
  /**
1433
1435
  * Delete a status
1434
1436
  *
@@ -1 +1 @@
1
- export declare const version = "8.9.1-dev-153-23dbf01";
1
+ export declare const version = "8.9.1-dev-155-ab27db9";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrahorizon/javascript-sdk",
3
- "version": "8.9.1-dev-153-23dbf01",
3
+ "version": "8.9.1-dev-155-ab27db9",
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",
@@ -54,7 +54,7 @@
54
54
  "jest": "^29.7.0",
55
55
  "nock": "^13.5.4",
56
56
  "rimraf": "^5.0.5",
57
- "rollup": "^2.79.2",
57
+ "rollup": "^2.80.0",
58
58
  "ts-jest": "^29.1.2",
59
59
  "typescript": "^4.5.5"
60
60
  }