@wix/identity 1.0.89 → 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.89",
3
+ "version": "1.0.90",
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.16",
27
- "@wix/identity_contributor": "1.0.1",
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": "6881bf6560ada49231472cb9c4decb113b6050905f33b05da8dc6471"
56
+ "falconPackageHash": "42eb903f73bb4e9d3c31dba957cfec721ce57a2f5430a327d53c1ad6"
57
57
  }
@@ -4196,33 +4196,6 @@ declare enum SubjectContextType {
4196
4196
  ORG_CTX = "ORG_CTX",
4197
4197
  ACCOUNT_CTX = "ACCOUNT_CTX"
4198
4198
  }
4199
- interface GetAppContributorsRequest {
4200
- appId?: string;
4201
- /** The locale of the request. Defaults to en-us. */
4202
- locale?: string | null;
4203
- }
4204
- interface GetAppContributorsResponse {
4205
- contributors?: Contributor[];
4206
- invites?: AppInvite[];
4207
- }
4208
- interface AppInvite {
4209
- /** @readonly */
4210
- _id?: string;
4211
- /** TODO: amitis - remove this comment after the next merge */
4212
- destEmail?: string;
4213
- /** @readonly */
4214
- status?: string;
4215
- /** @readonly */
4216
- acceptLink?: string;
4217
- invitePurpose?: string | null;
4218
- policies?: AssignedPolicy[];
4219
- /** @readonly */
4220
- expirationDate?: Date | null;
4221
- /** @readonly */
4222
- dateCreated?: Date | null;
4223
- /** @readonly */
4224
- dateUpdated?: Date | null;
4225
- }
4226
4199
  interface GetSiteContributorsRequest {
4227
4200
  /** The locale of the request. Defaults to en-us */
4228
4201
  locale?: string | null;
@@ -4500,6 +4473,33 @@ interface GetContributorsQuotaResponse {
4500
4473
  /** Quota information for contributors on the given site. */
4501
4474
  contributorsQuota?: ContributorsQuota;
4502
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
+ }
4503
4503
  interface SiteRoleAssignmentNonNullableFields {
4504
4504
  roleId: string;
4505
4505
  assignmentId: string;
@@ -4196,33 +4196,6 @@ declare enum SubjectContextType {
4196
4196
  ORG_CTX = "ORG_CTX",
4197
4197
  ACCOUNT_CTX = "ACCOUNT_CTX"
4198
4198
  }
4199
- interface GetAppContributorsRequest {
4200
- appId?: string;
4201
- /** The locale of the request. Defaults to en-us. */
4202
- locale?: string | null;
4203
- }
4204
- interface GetAppContributorsResponse {
4205
- contributors?: Contributor[];
4206
- invites?: AppInvite[];
4207
- }
4208
- interface AppInvite {
4209
- /** @readonly */
4210
- _id?: string;
4211
- /** TODO: amitis - remove this comment after the next merge */
4212
- destEmail?: string;
4213
- /** @readonly */
4214
- status?: string;
4215
- /** @readonly */
4216
- acceptLink?: string;
4217
- invitePurpose?: string | null;
4218
- policies?: AssignedPolicy[];
4219
- /** @readonly */
4220
- expirationDate?: Date | null;
4221
- /** @readonly */
4222
- dateCreated?: Date | null;
4223
- /** @readonly */
4224
- dateUpdated?: Date | null;
4225
- }
4226
4199
  interface GetSiteContributorsRequest {
4227
4200
  /** The locale of the request. Defaults to en-us */
4228
4201
  locale?: string | null;
@@ -4500,6 +4473,33 @@ interface GetContributorsQuotaResponse {
4500
4473
  /** Quota information for contributors on the given site. */
4501
4474
  contributorsQuota?: ContributorsQuota;
4502
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
+ }
4503
4503
  interface SiteRoleAssignmentNonNullableFields {
4504
4504
  roleId: string;
4505
4505
  assignmentId: string;