@wix/identity 1.0.88 → 1.0.90
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.
|
|
3
|
+
"version": "1.0.90",
|
|
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.
|
|
24
|
+
"@wix/identity_account": "1.0.1",
|
|
25
25
|
"@wix/identity_account-invite": "1.0.1",
|
|
26
|
-
"@wix/identity_authentication": "1.0.
|
|
27
|
-
"@wix/identity_contributor": "1.0.
|
|
26
|
+
"@wix/identity_authentication": "1.0.17",
|
|
27
|
+
"@wix/identity_contributor": "1.0.2",
|
|
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": "
|
|
56
|
+
"falconPackageHash": "42eb903f73bb4e9d3c31dba957cfec721ce57a2f5430a327d53c1ad6"
|
|
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
|
}
|
|
@@ -4194,33 +4196,6 @@ declare enum SubjectContextType {
|
|
|
4194
4196
|
ORG_CTX = "ORG_CTX",
|
|
4195
4197
|
ACCOUNT_CTX = "ACCOUNT_CTX"
|
|
4196
4198
|
}
|
|
4197
|
-
interface GetAppContributorsRequest {
|
|
4198
|
-
appId?: string;
|
|
4199
|
-
/** The locale of the request. Defaults to en-us. */
|
|
4200
|
-
locale?: string | null;
|
|
4201
|
-
}
|
|
4202
|
-
interface GetAppContributorsResponse {
|
|
4203
|
-
contributors?: Contributor[];
|
|
4204
|
-
invites?: AppInvite[];
|
|
4205
|
-
}
|
|
4206
|
-
interface AppInvite {
|
|
4207
|
-
/** @readonly */
|
|
4208
|
-
_id?: string;
|
|
4209
|
-
/** TODO: amitis - remove this comment after the next merge */
|
|
4210
|
-
destEmail?: string;
|
|
4211
|
-
/** @readonly */
|
|
4212
|
-
status?: string;
|
|
4213
|
-
/** @readonly */
|
|
4214
|
-
acceptLink?: string;
|
|
4215
|
-
invitePurpose?: string | null;
|
|
4216
|
-
policies?: AssignedPolicy[];
|
|
4217
|
-
/** @readonly */
|
|
4218
|
-
expirationDate?: Date | null;
|
|
4219
|
-
/** @readonly */
|
|
4220
|
-
dateCreated?: Date | null;
|
|
4221
|
-
/** @readonly */
|
|
4222
|
-
dateUpdated?: Date | null;
|
|
4223
|
-
}
|
|
4224
4199
|
interface GetSiteContributorsRequest {
|
|
4225
4200
|
/** The locale of the request. Defaults to en-us */
|
|
4226
4201
|
locale?: string | null;
|
|
@@ -4498,6 +4473,33 @@ interface GetContributorsQuotaResponse {
|
|
|
4498
4473
|
/** Quota information for contributors on the given site. */
|
|
4499
4474
|
contributorsQuota?: ContributorsQuota;
|
|
4500
4475
|
}
|
|
4476
|
+
interface GetAppContributorsRequest {
|
|
4477
|
+
appId?: string;
|
|
4478
|
+
/** The locale of the request. Defaults to en-us. */
|
|
4479
|
+
locale?: string | null;
|
|
4480
|
+
}
|
|
4481
|
+
interface GetAppContributorsResponse {
|
|
4482
|
+
contributors?: Contributor[];
|
|
4483
|
+
invites?: AppInvite[];
|
|
4484
|
+
}
|
|
4485
|
+
interface AppInvite {
|
|
4486
|
+
/** @readonly */
|
|
4487
|
+
_id?: string;
|
|
4488
|
+
/** TODO: amitis - remove this comment after the next merge */
|
|
4489
|
+
destEmail?: string;
|
|
4490
|
+
/** @readonly */
|
|
4491
|
+
status?: string;
|
|
4492
|
+
/** @readonly */
|
|
4493
|
+
acceptLink?: string;
|
|
4494
|
+
invitePurpose?: string | null;
|
|
4495
|
+
policies?: AssignedPolicy[];
|
|
4496
|
+
/** @readonly */
|
|
4497
|
+
expirationDate?: Date | null;
|
|
4498
|
+
/** @readonly */
|
|
4499
|
+
dateCreated?: Date | null;
|
|
4500
|
+
/** @readonly */
|
|
4501
|
+
dateUpdated?: Date | null;
|
|
4502
|
+
}
|
|
4501
4503
|
interface SiteRoleAssignmentNonNullableFields {
|
|
4502
4504
|
roleId: string;
|
|
4503
4505
|
assignmentId: string;
|
|
@@ -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
|
}
|
|
@@ -4194,33 +4196,6 @@ declare enum SubjectContextType {
|
|
|
4194
4196
|
ORG_CTX = "ORG_CTX",
|
|
4195
4197
|
ACCOUNT_CTX = "ACCOUNT_CTX"
|
|
4196
4198
|
}
|
|
4197
|
-
interface GetAppContributorsRequest {
|
|
4198
|
-
appId?: string;
|
|
4199
|
-
/** The locale of the request. Defaults to en-us. */
|
|
4200
|
-
locale?: string | null;
|
|
4201
|
-
}
|
|
4202
|
-
interface GetAppContributorsResponse {
|
|
4203
|
-
contributors?: Contributor[];
|
|
4204
|
-
invites?: AppInvite[];
|
|
4205
|
-
}
|
|
4206
|
-
interface AppInvite {
|
|
4207
|
-
/** @readonly */
|
|
4208
|
-
_id?: string;
|
|
4209
|
-
/** TODO: amitis - remove this comment after the next merge */
|
|
4210
|
-
destEmail?: string;
|
|
4211
|
-
/** @readonly */
|
|
4212
|
-
status?: string;
|
|
4213
|
-
/** @readonly */
|
|
4214
|
-
acceptLink?: string;
|
|
4215
|
-
invitePurpose?: string | null;
|
|
4216
|
-
policies?: AssignedPolicy[];
|
|
4217
|
-
/** @readonly */
|
|
4218
|
-
expirationDate?: Date | null;
|
|
4219
|
-
/** @readonly */
|
|
4220
|
-
dateCreated?: Date | null;
|
|
4221
|
-
/** @readonly */
|
|
4222
|
-
dateUpdated?: Date | null;
|
|
4223
|
-
}
|
|
4224
4199
|
interface GetSiteContributorsRequest {
|
|
4225
4200
|
/** The locale of the request. Defaults to en-us */
|
|
4226
4201
|
locale?: string | null;
|
|
@@ -4498,6 +4473,33 @@ interface GetContributorsQuotaResponse {
|
|
|
4498
4473
|
/** Quota information for contributors on the given site. */
|
|
4499
4474
|
contributorsQuota?: ContributorsQuota;
|
|
4500
4475
|
}
|
|
4476
|
+
interface GetAppContributorsRequest {
|
|
4477
|
+
appId?: string;
|
|
4478
|
+
/** The locale of the request. Defaults to en-us. */
|
|
4479
|
+
locale?: string | null;
|
|
4480
|
+
}
|
|
4481
|
+
interface GetAppContributorsResponse {
|
|
4482
|
+
contributors?: Contributor[];
|
|
4483
|
+
invites?: AppInvite[];
|
|
4484
|
+
}
|
|
4485
|
+
interface AppInvite {
|
|
4486
|
+
/** @readonly */
|
|
4487
|
+
_id?: string;
|
|
4488
|
+
/** TODO: amitis - remove this comment after the next merge */
|
|
4489
|
+
destEmail?: string;
|
|
4490
|
+
/** @readonly */
|
|
4491
|
+
status?: string;
|
|
4492
|
+
/** @readonly */
|
|
4493
|
+
acceptLink?: string;
|
|
4494
|
+
invitePurpose?: string | null;
|
|
4495
|
+
policies?: AssignedPolicy[];
|
|
4496
|
+
/** @readonly */
|
|
4497
|
+
expirationDate?: Date | null;
|
|
4498
|
+
/** @readonly */
|
|
4499
|
+
dateCreated?: Date | null;
|
|
4500
|
+
/** @readonly */
|
|
4501
|
+
dateUpdated?: Date | null;
|
|
4502
|
+
}
|
|
4501
4503
|
interface SiteRoleAssignmentNonNullableFields {
|
|
4502
4504
|
roleId: string;
|
|
4503
4505
|
assignmentId: string;
|