@wix/identity 1.0.87 → 1.0.89

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/identity",
3
- "version": "1.0.87",
3
+ "version": "1.0.89",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -21,10 +21,10 @@
21
21
  "type-bundles"
22
22
  ],
23
23
  "dependencies": {
24
- "@wix/identity_account": "1.0.0",
24
+ "@wix/identity_account": "1.0.1",
25
25
  "@wix/identity_account-invite": "1.0.1",
26
26
  "@wix/identity_authentication": "1.0.16",
27
- "@wix/identity_contributor": "1.0.0",
27
+ "@wix/identity_contributor": "1.0.1",
28
28
  "@wix/identity_oauth": "1.0.13",
29
29
  "@wix/identity_recovery": "1.0.14",
30
30
  "@wix/identity_site-invite": "1.0.1",
@@ -53,5 +53,5 @@
53
53
  "fqdn": ""
54
54
  }
55
55
  },
56
- "falconPackageHash": "152aacfeeb38714e4133623e34b76d145fe93c3e4cbf79c9e7d6996a"
56
+ "falconPackageHash": "6881bf6560ada49231472cb9c4decb113b6050905f33b05da8dc6471"
57
57
  }
@@ -2784,6 +2784,7 @@ interface CreateAccountSignature {
2784
2784
  *
2785
2785
  * > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only.
2786
2786
  * @param - The user to create under the new account, with the roles defined in `roles`.
2787
+ * @param - Filter options.
2787
2788
  */
2788
2789
  (user: User$1, options?: CreateAccountOptions | undefined): Promise<CreateAccountResponse & CreateAccountResponseNonNullableFields>;
2789
2790
  }
@@ -2794,6 +2795,7 @@ interface ListChildAccountsSignature {
2794
2795
  * If no child accounts exist, an empty list will be returned.
2795
2796
  *
2796
2797
  * > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only.
2798
+ * @param - Filter options.
2797
2799
  */
2798
2800
  (options?: ListChildAccountsOptions | undefined): Promise<ListChildAccountsResponse & ListChildAccountsResponseNonNullableFields>;
2799
2801
  }
@@ -4518,6 +4520,7 @@ interface ChangeRoleSignature {
4518
4520
  /**
4519
4521
  * Overrides all the roles of a contributor for the specified site.
4520
4522
  * @param - Contributor's account ID.
4523
+ * @param - Filter options. The `newRoles` field **must** be passed.
4521
4524
  */
4522
4525
  (accountId: string, options: ChangeRoleOptions): Promise<ChangeContributorRoleResponse & ChangeContributorRoleResponseNonNullableFields>;
4523
4526
  }
@@ -4525,6 +4528,7 @@ declare function querySiteContributors$1(httpClient: HttpClient): QuerySiteContr
4525
4528
  interface QuerySiteContributorsSignature {
4526
4529
  /**
4527
4530
  * Retrieves a list of contributors for the specified site, given the provided filters.
4531
+ * @param - Filter options.
4528
4532
  */
4529
4533
  (options?: QuerySiteContributorsOptions | undefined): Promise<QuerySiteContributorsResponse>;
4530
4534
  }
@@ -2784,6 +2784,7 @@ interface CreateAccountSignature {
2784
2784
  *
2785
2785
  * > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only.
2786
2786
  * @param - The user to create under the new account, with the roles defined in `roles`.
2787
+ * @param - Filter options.
2787
2788
  */
2788
2789
  (user: User$1, options?: CreateAccountOptions | undefined): Promise<CreateAccountResponse & CreateAccountResponseNonNullableFields>;
2789
2790
  }
@@ -2794,6 +2795,7 @@ interface ListChildAccountsSignature {
2794
2795
  * If no child accounts exist, an empty list will be returned.
2795
2796
  *
2796
2797
  * > **Important**: This call requires an account level API key and cannot be authenticated with the standard authorization header. API keys are currently available to selected beta users only.
2798
+ * @param - Filter options.
2797
2799
  */
2798
2800
  (options?: ListChildAccountsOptions | undefined): Promise<ListChildAccountsResponse & ListChildAccountsResponseNonNullableFields>;
2799
2801
  }
@@ -4518,6 +4520,7 @@ interface ChangeRoleSignature {
4518
4520
  /**
4519
4521
  * Overrides all the roles of a contributor for the specified site.
4520
4522
  * @param - Contributor's account ID.
4523
+ * @param - Filter options. The `newRoles` field **must** be passed.
4521
4524
  */
4522
4525
  (accountId: string, options: ChangeRoleOptions): Promise<ChangeContributorRoleResponse & ChangeContributorRoleResponseNonNullableFields>;
4523
4526
  }
@@ -4525,6 +4528,7 @@ declare function querySiteContributors$1(httpClient: HttpClient): QuerySiteContr
4525
4528
  interface QuerySiteContributorsSignature {
4526
4529
  /**
4527
4530
  * Retrieves a list of contributors for the specified site, given the provided filters.
4531
+ * @param - Filter options.
4528
4532
  */
4529
4533
  (options?: QuerySiteContributorsOptions | undefined): Promise<QuerySiteContributorsResponse>;
4530
4534
  }