@wix/identity 1.0.91 → 1.0.92
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.92",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@wix/identity_account": "1.0.1",
|
|
25
25
|
"@wix/identity_account-invite": "1.0.1",
|
|
26
26
|
"@wix/identity_authentication": "1.0.18",
|
|
27
|
-
"@wix/identity_contributor": "1.0.
|
|
27
|
+
"@wix/identity_contributor": "1.0.3",
|
|
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": "43bca741443586dccbb0608dff134fd831a509bb2a57e52b55df55e1"
|
|
57
57
|
}
|
|
@@ -4208,6 +4208,33 @@ declare enum SubjectContextType {
|
|
|
4208
4208
|
ORG_CTX = "ORG_CTX",
|
|
4209
4209
|
ACCOUNT_CTX = "ACCOUNT_CTX"
|
|
4210
4210
|
}
|
|
4211
|
+
interface GetAppContributorsRequest {
|
|
4212
|
+
appId?: string;
|
|
4213
|
+
/** The locale of the request. Defaults to en-us. */
|
|
4214
|
+
locale?: string | null;
|
|
4215
|
+
}
|
|
4216
|
+
interface GetAppContributorsResponse {
|
|
4217
|
+
contributors?: Contributor[];
|
|
4218
|
+
invites?: AppInvite[];
|
|
4219
|
+
}
|
|
4220
|
+
interface AppInvite {
|
|
4221
|
+
/** @readonly */
|
|
4222
|
+
_id?: string;
|
|
4223
|
+
/** TODO: amitis - remove this comment after the next merge */
|
|
4224
|
+
destEmail?: string;
|
|
4225
|
+
/** @readonly */
|
|
4226
|
+
status?: string;
|
|
4227
|
+
/** @readonly */
|
|
4228
|
+
acceptLink?: string;
|
|
4229
|
+
invitePurpose?: string | null;
|
|
4230
|
+
policies?: AssignedPolicy[];
|
|
4231
|
+
/** @readonly */
|
|
4232
|
+
expirationDate?: Date | null;
|
|
4233
|
+
/** @readonly */
|
|
4234
|
+
dateCreated?: Date | null;
|
|
4235
|
+
/** @readonly */
|
|
4236
|
+
dateUpdated?: Date | null;
|
|
4237
|
+
}
|
|
4211
4238
|
interface GetSiteContributorsRequest {
|
|
4212
4239
|
/** The locale of the request. Defaults to en-us */
|
|
4213
4240
|
locale?: string | null;
|
|
@@ -4485,33 +4512,6 @@ interface GetContributorsQuotaResponse {
|
|
|
4485
4512
|
/** Quota information for contributors on the given site. */
|
|
4486
4513
|
contributorsQuota?: ContributorsQuota;
|
|
4487
4514
|
}
|
|
4488
|
-
interface GetAppContributorsRequest {
|
|
4489
|
-
appId?: string;
|
|
4490
|
-
/** The locale of the request. Defaults to en-us. */
|
|
4491
|
-
locale?: string | null;
|
|
4492
|
-
}
|
|
4493
|
-
interface GetAppContributorsResponse {
|
|
4494
|
-
contributors?: Contributor[];
|
|
4495
|
-
invites?: AppInvite[];
|
|
4496
|
-
}
|
|
4497
|
-
interface AppInvite {
|
|
4498
|
-
/** @readonly */
|
|
4499
|
-
_id?: string;
|
|
4500
|
-
/** TODO: amitis - remove this comment after the next merge */
|
|
4501
|
-
destEmail?: string;
|
|
4502
|
-
/** @readonly */
|
|
4503
|
-
status?: string;
|
|
4504
|
-
/** @readonly */
|
|
4505
|
-
acceptLink?: string;
|
|
4506
|
-
invitePurpose?: string | null;
|
|
4507
|
-
policies?: AssignedPolicy[];
|
|
4508
|
-
/** @readonly */
|
|
4509
|
-
expirationDate?: Date | null;
|
|
4510
|
-
/** @readonly */
|
|
4511
|
-
dateCreated?: Date | null;
|
|
4512
|
-
/** @readonly */
|
|
4513
|
-
dateUpdated?: Date | null;
|
|
4514
|
-
}
|
|
4515
4515
|
interface SiteRoleAssignmentNonNullableFields {
|
|
4516
4516
|
roleId: string;
|
|
4517
4517
|
assignmentId: string;
|
|
@@ -4208,6 +4208,33 @@ declare enum SubjectContextType {
|
|
|
4208
4208
|
ORG_CTX = "ORG_CTX",
|
|
4209
4209
|
ACCOUNT_CTX = "ACCOUNT_CTX"
|
|
4210
4210
|
}
|
|
4211
|
+
interface GetAppContributorsRequest {
|
|
4212
|
+
appId?: string;
|
|
4213
|
+
/** The locale of the request. Defaults to en-us. */
|
|
4214
|
+
locale?: string | null;
|
|
4215
|
+
}
|
|
4216
|
+
interface GetAppContributorsResponse {
|
|
4217
|
+
contributors?: Contributor[];
|
|
4218
|
+
invites?: AppInvite[];
|
|
4219
|
+
}
|
|
4220
|
+
interface AppInvite {
|
|
4221
|
+
/** @readonly */
|
|
4222
|
+
_id?: string;
|
|
4223
|
+
/** TODO: amitis - remove this comment after the next merge */
|
|
4224
|
+
destEmail?: string;
|
|
4225
|
+
/** @readonly */
|
|
4226
|
+
status?: string;
|
|
4227
|
+
/** @readonly */
|
|
4228
|
+
acceptLink?: string;
|
|
4229
|
+
invitePurpose?: string | null;
|
|
4230
|
+
policies?: AssignedPolicy[];
|
|
4231
|
+
/** @readonly */
|
|
4232
|
+
expirationDate?: Date | null;
|
|
4233
|
+
/** @readonly */
|
|
4234
|
+
dateCreated?: Date | null;
|
|
4235
|
+
/** @readonly */
|
|
4236
|
+
dateUpdated?: Date | null;
|
|
4237
|
+
}
|
|
4211
4238
|
interface GetSiteContributorsRequest {
|
|
4212
4239
|
/** The locale of the request. Defaults to en-us */
|
|
4213
4240
|
locale?: string | null;
|
|
@@ -4485,33 +4512,6 @@ interface GetContributorsQuotaResponse {
|
|
|
4485
4512
|
/** Quota information for contributors on the given site. */
|
|
4486
4513
|
contributorsQuota?: ContributorsQuota;
|
|
4487
4514
|
}
|
|
4488
|
-
interface GetAppContributorsRequest {
|
|
4489
|
-
appId?: string;
|
|
4490
|
-
/** The locale of the request. Defaults to en-us. */
|
|
4491
|
-
locale?: string | null;
|
|
4492
|
-
}
|
|
4493
|
-
interface GetAppContributorsResponse {
|
|
4494
|
-
contributors?: Contributor[];
|
|
4495
|
-
invites?: AppInvite[];
|
|
4496
|
-
}
|
|
4497
|
-
interface AppInvite {
|
|
4498
|
-
/** @readonly */
|
|
4499
|
-
_id?: string;
|
|
4500
|
-
/** TODO: amitis - remove this comment after the next merge */
|
|
4501
|
-
destEmail?: string;
|
|
4502
|
-
/** @readonly */
|
|
4503
|
-
status?: string;
|
|
4504
|
-
/** @readonly */
|
|
4505
|
-
acceptLink?: string;
|
|
4506
|
-
invitePurpose?: string | null;
|
|
4507
|
-
policies?: AssignedPolicy[];
|
|
4508
|
-
/** @readonly */
|
|
4509
|
-
expirationDate?: Date | null;
|
|
4510
|
-
/** @readonly */
|
|
4511
|
-
dateCreated?: Date | null;
|
|
4512
|
-
/** @readonly */
|
|
4513
|
-
dateUpdated?: Date | null;
|
|
4514
|
-
}
|
|
4515
4515
|
interface SiteRoleAssignmentNonNullableFields {
|
|
4516
4516
|
roleId: string;
|
|
4517
4517
|
assignmentId: string;
|