@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
|
package/build/index.cjs.js
CHANGED
package/build/index.mjs
CHANGED
|
@@ -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:
|
|
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
|
*
|
package/build/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "8.9.1-dev-
|
|
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-
|
|
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.
|
|
57
|
+
"rollup": "^2.80.0",
|
|
58
58
|
"ts-jest": "^29.1.2",
|
|
59
59
|
"typescript": "^4.5.5"
|
|
60
60
|
}
|