@wix/identity 1.0.92 → 1.0.93

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.92",
3
+ "version": "1.0.93",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -23,8 +23,8 @@
23
23
  "dependencies": {
24
24
  "@wix/identity_account": "1.0.1",
25
25
  "@wix/identity_account-invite": "1.0.1",
26
- "@wix/identity_authentication": "1.0.18",
27
- "@wix/identity_contributor": "1.0.3",
26
+ "@wix/identity_authentication": "1.0.19",
27
+ "@wix/identity_contributor": "1.0.4",
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": "43bca741443586dccbb0608dff134fd831a509bb2a57e52b55df55e1"
56
+ "falconPackageHash": "7acc45fa0afb9e6c8b5c3f484768239ed80d47b0c519a93c57b71ce0"
57
57
  }
@@ -4208,33 +4208,6 @@ 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
- }
4238
4211
  interface GetSiteContributorsRequest {
4239
4212
  /** The locale of the request. Defaults to en-us */
4240
4213
  locale?: string | null;
@@ -4512,6 +4485,33 @@ interface GetContributorsQuotaResponse {
4512
4485
  /** Quota information for contributors on the given site. */
4513
4486
  contributorsQuota?: ContributorsQuota;
4514
4487
  }
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,33 +4208,6 @@ 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
- }
4238
4211
  interface GetSiteContributorsRequest {
4239
4212
  /** The locale of the request. Defaults to en-us */
4240
4213
  locale?: string | null;
@@ -4512,6 +4485,33 @@ interface GetContributorsQuotaResponse {
4512
4485
  /** Quota information for contributors on the given site. */
4513
4486
  contributorsQuota?: ContributorsQuota;
4514
4487
  }
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;