@extrahorizon/javascript-sdk 8.9.0 → 8.9.1-feat-150-69ae468

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
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [8.9.1]
9
+
10
+ ### Fixed
11
+ - exh.users.updatePasswordPolicy now correctly accepts a partial `PasswordPolicy` object.
12
+ - `VerificationSettings` is now exported
13
+ - `ForgotPasswordRequest` is now exported
14
+ - `ActivationRequest` is now exported
15
+
8
16
  ## [8.9.0]
9
17
 
10
18
  ### Added
@@ -5615,7 +5615,7 @@ const templatesV2Service = (httpWithAuth) => {
5615
5615
  };
5616
5616
  };
5617
5617
 
5618
- const version = '8.9.0';
5618
+ const version = '8.9.1-feat-150-69ae468';
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.0';
5588
+ const version = '8.9.1-feat-150-69ae468';
5589
5589
 
5590
5590
  /**
5591
5591
  * Create ExtraHorizon client.
@@ -1,6 +1,9 @@
1
1
  import { RQLString } from '../../rql';
2
2
  import { FindAllIterator } from '../../services/helpers';
3
3
  import { ObjectId, LanguageCode, TimeZone, PagedResult, AffectedRecords, OptionsBase, OptionsWithRql, PagedResultWithPager } from '../types';
4
+ export { VerificationSettings } from './settings/types';
5
+ export { ActivationRequest } from './activationRequests/types';
6
+ export { ForgotPasswordRequest } from './forgotPasswordRequests/types';
4
7
  export interface UserData {
5
8
  id: string;
6
9
  firstName: string;
@@ -1184,14 +1187,14 @@ export interface UsersService {
1184
1187
  */
1185
1188
  passwordPolicy(options?: OptionsBase): Promise<PasswordPolicy>;
1186
1189
  /**
1187
- * Update the current pasword policy
1190
+ * Update the current password policy
1188
1191
  *
1189
1192
  * Permission | Scope | Effect
1190
1193
  * - | - | -
1191
1194
  * `UPDATE_PASSWORD_POLICY` | `global` | Update password policy
1192
1195
  * @returns {PasswordPolicy} PasswordPolicy
1193
1196
  */
1194
- updatePasswordPolicy(requestBody: PasswordPolicy, options?: OptionsBase): Promise<PasswordPolicy>;
1197
+ updatePasswordPolicy(requestBody: Partial<PasswordPolicy>, options?: OptionsBase): Promise<PasswordPolicy>;
1195
1198
  /**
1196
1199
  * ## Retrieve a list of email templates
1197
1200
  *
@@ -1 +1 @@
1
- export declare const version = "8.9.0";
1
+ export declare const version = "8.9.1-feat-150-69ae468";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrahorizon/javascript-sdk",
3
- "version": "8.9.0",
3
+ "version": "8.9.1-feat-150-69ae468",
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",