@wix/auto_sdk_user-management_contributors 1.0.0 → 1.0.2
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/build/cjs/src/identity-v1-contributor-contributors.context.d.ts +1 -1
- package/build/cjs/src/identity-v1-contributor-contributors.types.d.ts +105 -40
- package/build/cjs/src/identity-v1-contributor-contributors.types.js.map +1 -1
- package/build/cjs/src/identity-v1-contributor-contributors.universal.d.ts +112 -41
- package/build/cjs/src/identity-v1-contributor-contributors.universal.js +6 -0
- package/build/cjs/src/identity-v1-contributor-contributors.universal.js.map +1 -1
- package/build/es/src/identity-v1-contributor-contributors.context.d.ts +1 -1
- package/build/es/src/identity-v1-contributor-contributors.types.d.ts +105 -40
- package/build/es/src/identity-v1-contributor-contributors.types.js.map +1 -1
- package/build/es/src/identity-v1-contributor-contributors.universal.d.ts +112 -41
- package/build/es/src/identity-v1-contributor-contributors.universal.js +6 -0
- package/build/es/src/identity-v1-contributor-contributors.universal.js.map +1 -1
- package/build/internal/cjs/src/identity-v1-contributor-contributors.context.d.ts +1 -1
- package/build/internal/cjs/src/identity-v1-contributor-contributors.types.d.ts +105 -40
- package/build/internal/cjs/src/identity-v1-contributor-contributors.types.js.map +1 -1
- package/build/internal/cjs/src/identity-v1-contributor-contributors.universal.d.ts +116 -41
- package/build/internal/cjs/src/identity-v1-contributor-contributors.universal.js +6 -0
- package/build/internal/cjs/src/identity-v1-contributor-contributors.universal.js.map +1 -1
- package/build/internal/es/src/identity-v1-contributor-contributors.context.d.ts +1 -1
- package/build/internal/es/src/identity-v1-contributor-contributors.types.d.ts +105 -40
- package/build/internal/es/src/identity-v1-contributor-contributors.types.js.map +1 -1
- package/build/internal/es/src/identity-v1-contributor-contributors.universal.d.ts +116 -41
- package/build/internal/es/src/identity-v1-contributor-contributors.universal.js +6 -0
- package/build/internal/es/src/identity-v1-contributor-contributors.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -4,4 +4,4 @@ export declare const changeRole: MaybeContext<BuildRESTFunction<typeof publicCha
|
|
|
4
4
|
export declare const changeContributorLocation: MaybeContext<BuildRESTFunction<typeof publicChangeContributorLocation> & typeof publicChangeContributorLocation>;
|
|
5
5
|
export declare const querySiteContributors: MaybeContext<BuildRESTFunction<typeof publicQuerySiteContributors> & typeof publicQuerySiteContributors>;
|
|
6
6
|
export { ResourceType, ConditionAttributeType, SubjectType, SubjectContextType, InviteStatus, Type, FieldSet, } from './identity-v1-contributor-contributors.universal.js';
|
|
7
|
-
export { Contributor, PersonMetaData, Assignment, AssignedPolicy, Restriction, RestrictionRestrictionsOneOf, Resource, Conditions, Condition, SiteRestriction, CompanionResource, LocationsRestriction, Subject, SubjectContext,
|
|
7
|
+
export { Contributor, PersonMetaData, Assignment, AssignedPolicy, Restriction, RestrictionRestrictionsOneOf, Resource, Conditions, Condition, SiteRestriction, CompanionResource, LocationsRestriction, Subject, SubjectContext, GetSiteContributorsRequest, GetSiteContributorsResponse, User, Name, Team, AccountInfo, SiteInvite, Policy, PendingOwner, ContributorLimit, PredefinedRoles, PredefinedRole, Role, GetSiteContributorsV2Request, GetSiteContributorsV2Response, ContributorsQuota, ContributorsQuotaOptionsOneOf, LimitedOptions, HandleSiteTransferRequest, HandleSiteTransferResponse, GetCurrentUserRolesRequest, GetCurrentUserRolesResponse, LocalizedRole, BulkGetUserRolesOnSiteRequest, UserSubject, BulkGetUserRolesOnSiteResponse, UserLocalizedRoles, BulkValidateEmailInviteEligibilityRequest, BulkValidateEmailInviteEligibilityResponse, EmailInviteEligibility, ChangeContributorRoleRequest, SiteRoleAssignment, ChangeContributorRoleResponse, ChangeContributorLocationRequest, ChangeContributorLocationResponse, SiteLocationAssignment, QuerySiteContributorsRequest, QuerySiteContributorsFilter, QuerySiteContributorsResponse, ContributorV2, GetContributorsQuotaRequest, GetContributorsQuotaResponse, GetAppContributorsRequest, GetAppContributorsResponse, AppInvite, GetSiteContributorsV2ResponseNonNullableFields, ChangeContributorRoleResponseNonNullableFields, ChangeContributorLocationResponseNonNullableFields, GetContributorsQuotaResponseNonNullableFields, GetSiteContributorsV2Options, ChangeRoleOptions, ChangeContributorLocationOptions, QuerySiteContributorsOptions, } from './identity-v1-contributor-contributors.universal.js';
|
|
@@ -11,6 +11,7 @@ export interface Contributor {
|
|
|
11
11
|
isClient?: boolean | null;
|
|
12
12
|
/**
|
|
13
13
|
* Contributor's user ID.
|
|
14
|
+
* @format GUID
|
|
14
15
|
* @readonly
|
|
15
16
|
*/
|
|
16
17
|
id?: string;
|
|
@@ -110,7 +111,11 @@ export interface CompanionResource {
|
|
|
110
111
|
resourceType?: string;
|
|
111
112
|
}
|
|
112
113
|
export interface LocationsRestriction {
|
|
113
|
-
/**
|
|
114
|
+
/**
|
|
115
|
+
* Location IDs.
|
|
116
|
+
* @format GUID
|
|
117
|
+
* @maxSize 20
|
|
118
|
+
*/
|
|
114
119
|
ids?: string[];
|
|
115
120
|
}
|
|
116
121
|
export interface Subject {
|
|
@@ -141,33 +146,6 @@ export declare enum SubjectContextType {
|
|
|
141
146
|
ORG_CTX = "ORG_CTX",
|
|
142
147
|
ACCOUNT_CTX = "ACCOUNT_CTX"
|
|
143
148
|
}
|
|
144
|
-
export interface GetAppContributorsRequest {
|
|
145
|
-
appId?: string;
|
|
146
|
-
/** The locale of the request. Defaults to en-us. */
|
|
147
|
-
locale?: string | null;
|
|
148
|
-
}
|
|
149
|
-
export interface GetAppContributorsResponse {
|
|
150
|
-
contributors?: Contributor[];
|
|
151
|
-
invites?: AppInvite[];
|
|
152
|
-
}
|
|
153
|
-
export interface AppInvite {
|
|
154
|
-
/** @readonly */
|
|
155
|
-
id?: string;
|
|
156
|
-
/** TODO: amitis - remove this comment after the next merge */
|
|
157
|
-
destEmail?: string;
|
|
158
|
-
/** @readonly */
|
|
159
|
-
status?: string;
|
|
160
|
-
/** @readonly */
|
|
161
|
-
acceptLink?: string;
|
|
162
|
-
invitePurpose?: string | null;
|
|
163
|
-
policies?: AssignedPolicy[];
|
|
164
|
-
/** @readonly */
|
|
165
|
-
expirationDate?: Date | null;
|
|
166
|
-
/** @readonly */
|
|
167
|
-
dateCreated?: Date | null;
|
|
168
|
-
/** @readonly */
|
|
169
|
-
dateUpdated?: Date | null;
|
|
170
|
-
}
|
|
171
149
|
export interface GetSiteContributorsRequest {
|
|
172
150
|
/** The locale of the request. Defaults to en-us */
|
|
173
151
|
locale?: string | null;
|
|
@@ -228,15 +206,20 @@ export interface AccountInfo {
|
|
|
228
206
|
export interface SiteInvite {
|
|
229
207
|
/**
|
|
230
208
|
* Invite ID.
|
|
209
|
+
* @format GUID
|
|
231
210
|
* @readonly
|
|
232
211
|
*/
|
|
233
212
|
id?: string;
|
|
234
213
|
/**
|
|
235
214
|
* Site ID the user is invited to as a collaborator.
|
|
215
|
+
* @format GUID
|
|
236
216
|
* @readonly
|
|
237
217
|
*/
|
|
238
218
|
siteId?: string;
|
|
239
|
-
/**
|
|
219
|
+
/**
|
|
220
|
+
* Email address where the invite was sent.
|
|
221
|
+
* @format EMAIL
|
|
222
|
+
*/
|
|
240
223
|
email?: string;
|
|
241
224
|
/** Role IDs included in the invite. */
|
|
242
225
|
policyIds?: string[];
|
|
@@ -261,23 +244,30 @@ export interface SiteInvite {
|
|
|
261
244
|
acceptLink?: string;
|
|
262
245
|
/**
|
|
263
246
|
* Inviting account ID.
|
|
247
|
+
* @format GUID
|
|
264
248
|
* @readonly
|
|
265
249
|
*/
|
|
266
250
|
inviterAccountId?: string;
|
|
267
251
|
/**
|
|
268
252
|
* Account ID that accepted the invite. Populated only once the invite is accepted.
|
|
253
|
+
* @format GUID
|
|
269
254
|
* @readonly
|
|
270
255
|
*/
|
|
271
256
|
acceptedByAccountId?: string | null;
|
|
272
257
|
/** Date the invite was created. */
|
|
273
258
|
dateCreated?: Date | null;
|
|
274
|
-
/**
|
|
259
|
+
/**
|
|
260
|
+
* User's Wix Bookings staff ID, if relevant.
|
|
261
|
+
* @format GUID
|
|
262
|
+
*/
|
|
275
263
|
staffId?: string | null;
|
|
276
264
|
/** Invite expiration date */
|
|
277
265
|
expirationDate?: Date | null;
|
|
278
266
|
/**
|
|
279
267
|
* Location ids included in the invite
|
|
268
|
+
* @format GUID
|
|
280
269
|
* @readonly
|
|
270
|
+
* @maxSize 20
|
|
281
271
|
*/
|
|
282
272
|
locationIds?: string[];
|
|
283
273
|
}
|
|
@@ -390,6 +380,7 @@ export interface LocalizedRole {
|
|
|
390
380
|
description?: string | null;
|
|
391
381
|
}
|
|
392
382
|
export interface BulkGetUserRolesOnSiteRequest {
|
|
383
|
+
/** @maxSize 5 */
|
|
393
384
|
users?: UserSubject[];
|
|
394
385
|
/** The locale of the request. Defaults to en-us */
|
|
395
386
|
locale?: string | null;
|
|
@@ -406,7 +397,12 @@ export interface UserLocalizedRoles {
|
|
|
406
397
|
roles?: LocalizedRole[];
|
|
407
398
|
}
|
|
408
399
|
export interface BulkValidateEmailInviteEligibilityRequest {
|
|
409
|
-
/**
|
|
400
|
+
/**
|
|
401
|
+
* List of emails to be checked for invite eligibility.
|
|
402
|
+
* @minSize 1
|
|
403
|
+
* @maxSize 10
|
|
404
|
+
* @format EMAIL
|
|
405
|
+
*/
|
|
410
406
|
emails?: string[];
|
|
411
407
|
}
|
|
412
408
|
export interface BulkValidateEmailInviteEligibilityResponse {
|
|
@@ -414,13 +410,19 @@ export interface BulkValidateEmailInviteEligibilityResponse {
|
|
|
414
410
|
emailsEligibility?: EmailInviteEligibility[];
|
|
415
411
|
}
|
|
416
412
|
export interface EmailInviteEligibility {
|
|
417
|
-
/**
|
|
413
|
+
/**
|
|
414
|
+
* The email address being checked.
|
|
415
|
+
* @format EMAIL
|
|
416
|
+
*/
|
|
418
417
|
email?: string;
|
|
419
418
|
/** Whether the email is eligible for an invite. */
|
|
420
419
|
eligible?: boolean;
|
|
421
420
|
}
|
|
422
421
|
export interface ChangeContributorRoleRequest {
|
|
423
|
-
/**
|
|
422
|
+
/**
|
|
423
|
+
* Contributor's account ID.
|
|
424
|
+
* @format GUID
|
|
425
|
+
*/
|
|
424
426
|
accountId: string;
|
|
425
427
|
/** New roles to assign to the contributor on the site. */
|
|
426
428
|
newRoles: SiteRoleAssignment[];
|
|
@@ -439,25 +441,46 @@ export interface ChangeContributorRoleResponse {
|
|
|
439
441
|
newAssignedRoles?: SiteRoleAssignment[];
|
|
440
442
|
}
|
|
441
443
|
export interface ChangeContributorLocationRequest {
|
|
442
|
-
/**
|
|
444
|
+
/**
|
|
445
|
+
* Contributor's account ID.
|
|
446
|
+
* @format GUID
|
|
447
|
+
*/
|
|
443
448
|
accountId: string;
|
|
444
|
-
/**
|
|
449
|
+
/**
|
|
450
|
+
* New locations to assign to the contributor on the site.
|
|
451
|
+
* @format GUID
|
|
452
|
+
* @maxSize 20
|
|
453
|
+
*/
|
|
445
454
|
newLocations: string[];
|
|
446
455
|
}
|
|
447
456
|
export interface ChangeContributorLocationResponse {
|
|
448
|
-
/**
|
|
457
|
+
/**
|
|
458
|
+
* New locations assigned to the contributor on the site.
|
|
459
|
+
* @maxSize 20
|
|
460
|
+
*/
|
|
449
461
|
newAssignedLocations?: SiteLocationAssignment[];
|
|
450
462
|
}
|
|
451
463
|
export interface SiteLocationAssignment {
|
|
452
|
-
|
|
453
|
-
|
|
464
|
+
/**
|
|
465
|
+
* @format GUID
|
|
466
|
+
* @maxSize 100
|
|
467
|
+
*/
|
|
468
|
+
locationIds?: string[];
|
|
469
|
+
/**
|
|
470
|
+
* @readonly
|
|
471
|
+
* @maxLength 20
|
|
472
|
+
* @maxSize 999
|
|
473
|
+
*/
|
|
454
474
|
assignmentIds?: string[];
|
|
455
475
|
}
|
|
456
476
|
export interface QuerySiteContributorsRequest {
|
|
457
477
|
filter?: QuerySiteContributorsFilter;
|
|
458
478
|
}
|
|
459
479
|
export interface QuerySiteContributorsFilter {
|
|
460
|
-
/**
|
|
480
|
+
/**
|
|
481
|
+
* Role IDs (referred to here as policy IDs) to return. See [Roles and Permissions](https://support.wix.com/en/article/roles-permissions-overview) for available roles.
|
|
482
|
+
* @maxSize 20
|
|
483
|
+
*/
|
|
461
484
|
policyIds?: string[];
|
|
462
485
|
}
|
|
463
486
|
export declare enum FieldSet {
|
|
@@ -481,6 +504,48 @@ export interface GetContributorsQuotaResponse {
|
|
|
481
504
|
/** Quota information for contributors on the given site. */
|
|
482
505
|
contributorsQuota?: ContributorsQuota;
|
|
483
506
|
}
|
|
507
|
+
export interface GetAppContributorsRequest {
|
|
508
|
+
/** @format GUID */
|
|
509
|
+
appId?: string;
|
|
510
|
+
/** The locale of the request. Defaults to en-us. */
|
|
511
|
+
locale?: string | null;
|
|
512
|
+
}
|
|
513
|
+
export interface GetAppContributorsResponse {
|
|
514
|
+
contributors?: Contributor[];
|
|
515
|
+
invites?: AppInvite[];
|
|
516
|
+
}
|
|
517
|
+
export interface AppInvite {
|
|
518
|
+
/**
|
|
519
|
+
* @format GUID
|
|
520
|
+
* @readonly
|
|
521
|
+
*/
|
|
522
|
+
id?: string;
|
|
523
|
+
/**
|
|
524
|
+
* TODO: amitis - remove this comment after the next merge
|
|
525
|
+
* @format EMAIL
|
|
526
|
+
*/
|
|
527
|
+
destEmail?: string;
|
|
528
|
+
/**
|
|
529
|
+
* @readonly
|
|
530
|
+
* @maxLength 20
|
|
531
|
+
*/
|
|
532
|
+
status?: string;
|
|
533
|
+
/**
|
|
534
|
+
* @format WEB_URL
|
|
535
|
+
* @readonly
|
|
536
|
+
*/
|
|
537
|
+
acceptLink?: string;
|
|
538
|
+
/** @maxLength 50 */
|
|
539
|
+
invitePurpose?: string | null;
|
|
540
|
+
/** @maxSize 10 */
|
|
541
|
+
policies?: AssignedPolicy[];
|
|
542
|
+
/** @readonly */
|
|
543
|
+
expirationDate?: Date | null;
|
|
544
|
+
/** @readonly */
|
|
545
|
+
dateCreated?: Date | null;
|
|
546
|
+
/** @readonly */
|
|
547
|
+
dateUpdated?: Date | null;
|
|
548
|
+
}
|
|
484
549
|
interface AssignedPolicyNonNullableFields {
|
|
485
550
|
policyId: string;
|
|
486
551
|
}
|
|
@@ -567,7 +632,7 @@ export interface ChangeContributorRoleResponseNonNullableFields {
|
|
|
567
632
|
newAssignedRoles: SiteRoleAssignmentNonNullableFields[];
|
|
568
633
|
}
|
|
569
634
|
interface SiteLocationAssignmentNonNullableFields {
|
|
570
|
-
|
|
635
|
+
locationIds: string[];
|
|
571
636
|
assignmentIds: string[];
|
|
572
637
|
}
|
|
573
638
|
export interface ChangeContributorLocationResponseNonNullableFields {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identity-v1-contributor-contributors.types.js","sourceRoot":"","sources":["../../../src/identity-v1-contributor-contributors.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"identity-v1-contributor-contributors.types.js","sourceRoot":"","sources":["../../../src/identity-v1-contributor-contributors.types.ts"],"names":[],"mappings":";;;AAuFA,IAAY,YAGX;AAHD,WAAY,YAAY;IACtB,+DAA+C,CAAA;IAC/C,6BAAa,CAAA;AACf,CAAC,EAHW,YAAY,4BAAZ,YAAY,QAGvB;AAgBD,IAAY,sBAGX;AAHD,WAAY,sBAAsB;IAChC,2EAAiD,CAAA;IACjD,2CAAiB,CAAA;AACnB,CAAC,EAHW,sBAAsB,sCAAtB,sBAAsB,QAGjC;AAkCD,IAAY,WAUX;AAVD,WAAY,WAAW;IACrB,kCAAmB,CAAA;IACnB,kCAAmB,CAAA;IACnB,4BAAa,CAAA;IACb,wCAAyB,CAAA;IACzB,4CAA6B,CAAA;IAC7B,8CAA+B,CAAA;IAC/B,4CAA6B,CAAA;IAC7B,8CAA+B,CAAA;IAC/B,kCAAmB,CAAA;AACrB,CAAC,EAVW,WAAW,2BAAX,WAAW,QAUtB;AAOD,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC5B,iDAA2B,CAAA;IAC3B,yCAAmB,CAAA;IACnB,iDAA2B,CAAA;AAC7B,CAAC,EAJW,kBAAkB,kCAAlB,kBAAkB,QAI7B;AAsID,mGAAmG;AACnG,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,mCAAmB,CAAA;IACnB,6BAAa,CAAA;IACb,mCAAmB,CAAA;IACnB,qCAAqB,CAAA;IACrB,mCAAmB,CAAA;AACrB,CAAC,EANW,YAAY,4BAAZ,YAAY,QAMvB;AAgFD,+DAA+D;AAC/D,IAAY,IAIX;AAJD,WAAY,IAAI;IACd,2BAAmB,CAAA;IACnB,2BAAmB,CAAA;IACnB,+BAAuB,CAAA;AACzB,CAAC,EAJW,IAAI,oBAAJ,IAAI,QAIf;AAwJD,IAAY,QAIX;AAJD,WAAY,QAAQ;IAClB,+BAAmB,CAAA;IACnB,+DAA+D;IAC/D,mCAAuB,CAAA;AACzB,CAAC,EAJW,QAAQ,wBAAR,QAAQ,QAInB"}
|
|
@@ -11,6 +11,7 @@ export interface Contributor {
|
|
|
11
11
|
isClient?: boolean | null;
|
|
12
12
|
/**
|
|
13
13
|
* Contributor's user ID.
|
|
14
|
+
* @format GUID
|
|
14
15
|
* @readonly
|
|
15
16
|
*/
|
|
16
17
|
_id?: string;
|
|
@@ -110,7 +111,11 @@ export interface CompanionResource {
|
|
|
110
111
|
resourceType?: string;
|
|
111
112
|
}
|
|
112
113
|
export interface LocationsRestriction {
|
|
113
|
-
/**
|
|
114
|
+
/**
|
|
115
|
+
* Location IDs.
|
|
116
|
+
* @format GUID
|
|
117
|
+
* @maxSize 20
|
|
118
|
+
*/
|
|
114
119
|
ids?: string[];
|
|
115
120
|
}
|
|
116
121
|
export interface Subject {
|
|
@@ -141,33 +146,6 @@ export declare enum SubjectContextType {
|
|
|
141
146
|
ORG_CTX = "ORG_CTX",
|
|
142
147
|
ACCOUNT_CTX = "ACCOUNT_CTX"
|
|
143
148
|
}
|
|
144
|
-
export interface GetAppContributorsRequest {
|
|
145
|
-
appId?: string;
|
|
146
|
-
/** The locale of the request. Defaults to en-us. */
|
|
147
|
-
locale?: string | null;
|
|
148
|
-
}
|
|
149
|
-
export interface GetAppContributorsResponse {
|
|
150
|
-
contributors?: Contributor[];
|
|
151
|
-
invites?: AppInvite[];
|
|
152
|
-
}
|
|
153
|
-
export interface AppInvite {
|
|
154
|
-
/** @readonly */
|
|
155
|
-
_id?: string;
|
|
156
|
-
/** TODO: amitis - remove this comment after the next merge */
|
|
157
|
-
destEmail?: string;
|
|
158
|
-
/** @readonly */
|
|
159
|
-
status?: string;
|
|
160
|
-
/** @readonly */
|
|
161
|
-
acceptLink?: string;
|
|
162
|
-
invitePurpose?: string | null;
|
|
163
|
-
policies?: AssignedPolicy[];
|
|
164
|
-
/** @readonly */
|
|
165
|
-
expirationDate?: Date | null;
|
|
166
|
-
/** @readonly */
|
|
167
|
-
dateCreated?: Date | null;
|
|
168
|
-
/** @readonly */
|
|
169
|
-
dateUpdated?: Date | null;
|
|
170
|
-
}
|
|
171
149
|
export interface GetSiteContributorsRequest {
|
|
172
150
|
/** The locale of the request. Defaults to en-us */
|
|
173
151
|
locale?: string | null;
|
|
@@ -228,15 +206,20 @@ export interface AccountInfo {
|
|
|
228
206
|
export interface SiteInvite {
|
|
229
207
|
/**
|
|
230
208
|
* Invite ID.
|
|
209
|
+
* @format GUID
|
|
231
210
|
* @readonly
|
|
232
211
|
*/
|
|
233
212
|
_id?: string;
|
|
234
213
|
/**
|
|
235
214
|
* Site ID the user is invited to as a collaborator.
|
|
215
|
+
* @format GUID
|
|
236
216
|
* @readonly
|
|
237
217
|
*/
|
|
238
218
|
siteId?: string;
|
|
239
|
-
/**
|
|
219
|
+
/**
|
|
220
|
+
* Email address where the invite was sent.
|
|
221
|
+
* @format EMAIL
|
|
222
|
+
*/
|
|
240
223
|
email?: string;
|
|
241
224
|
/** Role IDs included in the invite. */
|
|
242
225
|
policyIds?: string[];
|
|
@@ -261,23 +244,30 @@ export interface SiteInvite {
|
|
|
261
244
|
acceptLink?: string;
|
|
262
245
|
/**
|
|
263
246
|
* Inviting account ID.
|
|
247
|
+
* @format GUID
|
|
264
248
|
* @readonly
|
|
265
249
|
*/
|
|
266
250
|
inviterAccountId?: string;
|
|
267
251
|
/**
|
|
268
252
|
* Account ID that accepted the invite. Populated only once the invite is accepted.
|
|
253
|
+
* @format GUID
|
|
269
254
|
* @readonly
|
|
270
255
|
*/
|
|
271
256
|
acceptedByAccountId?: string | null;
|
|
272
257
|
/** Date the invite was created. */
|
|
273
258
|
dateCreated?: Date | null;
|
|
274
|
-
/**
|
|
259
|
+
/**
|
|
260
|
+
* User's Wix Bookings staff ID, if relevant.
|
|
261
|
+
* @format GUID
|
|
262
|
+
*/
|
|
275
263
|
staffId?: string | null;
|
|
276
264
|
/** Invite expiration date */
|
|
277
265
|
expirationDate?: Date | null;
|
|
278
266
|
/**
|
|
279
267
|
* Location ids included in the invite
|
|
268
|
+
* @format GUID
|
|
280
269
|
* @readonly
|
|
270
|
+
* @maxSize 20
|
|
281
271
|
*/
|
|
282
272
|
locationIds?: string[];
|
|
283
273
|
}
|
|
@@ -390,6 +380,7 @@ export interface LocalizedRole {
|
|
|
390
380
|
description?: string | null;
|
|
391
381
|
}
|
|
392
382
|
export interface BulkGetUserRolesOnSiteRequest {
|
|
383
|
+
/** @maxSize 5 */
|
|
393
384
|
users?: UserSubject[];
|
|
394
385
|
/** The locale of the request. Defaults to en-us */
|
|
395
386
|
locale?: string | null;
|
|
@@ -406,7 +397,12 @@ export interface UserLocalizedRoles {
|
|
|
406
397
|
roles?: LocalizedRole[];
|
|
407
398
|
}
|
|
408
399
|
export interface BulkValidateEmailInviteEligibilityRequest {
|
|
409
|
-
/**
|
|
400
|
+
/**
|
|
401
|
+
* List of emails to be checked for invite eligibility.
|
|
402
|
+
* @minSize 1
|
|
403
|
+
* @maxSize 10
|
|
404
|
+
* @format EMAIL
|
|
405
|
+
*/
|
|
410
406
|
emails?: string[];
|
|
411
407
|
}
|
|
412
408
|
export interface BulkValidateEmailInviteEligibilityResponse {
|
|
@@ -414,13 +410,19 @@ export interface BulkValidateEmailInviteEligibilityResponse {
|
|
|
414
410
|
emailsEligibility?: EmailInviteEligibility[];
|
|
415
411
|
}
|
|
416
412
|
export interface EmailInviteEligibility {
|
|
417
|
-
/**
|
|
413
|
+
/**
|
|
414
|
+
* The email address being checked.
|
|
415
|
+
* @format EMAIL
|
|
416
|
+
*/
|
|
418
417
|
email?: string;
|
|
419
418
|
/** Whether the email is eligible for an invite. */
|
|
420
419
|
eligible?: boolean;
|
|
421
420
|
}
|
|
422
421
|
export interface ChangeContributorRoleRequest {
|
|
423
|
-
/**
|
|
422
|
+
/**
|
|
423
|
+
* Contributor's account ID.
|
|
424
|
+
* @format GUID
|
|
425
|
+
*/
|
|
424
426
|
accountId: string;
|
|
425
427
|
/** New roles to assign to the contributor on the site. */
|
|
426
428
|
newRoles: SiteRoleAssignment[];
|
|
@@ -439,25 +441,46 @@ export interface ChangeContributorRoleResponse {
|
|
|
439
441
|
newAssignedRoles?: SiteRoleAssignment[];
|
|
440
442
|
}
|
|
441
443
|
export interface ChangeContributorLocationRequest {
|
|
442
|
-
/**
|
|
444
|
+
/**
|
|
445
|
+
* Contributor's account ID.
|
|
446
|
+
* @format GUID
|
|
447
|
+
*/
|
|
443
448
|
accountId: string;
|
|
444
|
-
/**
|
|
449
|
+
/**
|
|
450
|
+
* New locations to assign to the contributor on the site.
|
|
451
|
+
* @format GUID
|
|
452
|
+
* @maxSize 20
|
|
453
|
+
*/
|
|
445
454
|
newLocations: string[];
|
|
446
455
|
}
|
|
447
456
|
export interface ChangeContributorLocationResponse {
|
|
448
|
-
/**
|
|
457
|
+
/**
|
|
458
|
+
* New locations assigned to the contributor on the site.
|
|
459
|
+
* @maxSize 20
|
|
460
|
+
*/
|
|
449
461
|
newAssignedLocations?: SiteLocationAssignment[];
|
|
450
462
|
}
|
|
451
463
|
export interface SiteLocationAssignment {
|
|
452
|
-
|
|
453
|
-
|
|
464
|
+
/**
|
|
465
|
+
* @format GUID
|
|
466
|
+
* @maxSize 100
|
|
467
|
+
*/
|
|
468
|
+
locationIds?: string[];
|
|
469
|
+
/**
|
|
470
|
+
* @readonly
|
|
471
|
+
* @maxLength 20
|
|
472
|
+
* @maxSize 999
|
|
473
|
+
*/
|
|
454
474
|
assignmentIds?: string[];
|
|
455
475
|
}
|
|
456
476
|
export interface QuerySiteContributorsRequest {
|
|
457
477
|
filter?: QuerySiteContributorsFilter;
|
|
458
478
|
}
|
|
459
479
|
export interface QuerySiteContributorsFilter {
|
|
460
|
-
/**
|
|
480
|
+
/**
|
|
481
|
+
* Role IDs (referred to here as policy IDs) to return. See [Roles and Permissions](https://support.wix.com/en/article/roles-permissions-overview) for available roles.
|
|
482
|
+
* @maxSize 20
|
|
483
|
+
*/
|
|
461
484
|
policyIds?: string[];
|
|
462
485
|
}
|
|
463
486
|
export declare enum FieldSet {
|
|
@@ -481,6 +504,48 @@ export interface GetContributorsQuotaResponse {
|
|
|
481
504
|
/** Quota information for contributors on the given site. */
|
|
482
505
|
contributorsQuota?: ContributorsQuota;
|
|
483
506
|
}
|
|
507
|
+
export interface GetAppContributorsRequest {
|
|
508
|
+
/** @format GUID */
|
|
509
|
+
appId?: string;
|
|
510
|
+
/** The locale of the request. Defaults to en-us. */
|
|
511
|
+
locale?: string | null;
|
|
512
|
+
}
|
|
513
|
+
export interface GetAppContributorsResponse {
|
|
514
|
+
contributors?: Contributor[];
|
|
515
|
+
invites?: AppInvite[];
|
|
516
|
+
}
|
|
517
|
+
export interface AppInvite {
|
|
518
|
+
/**
|
|
519
|
+
* @format GUID
|
|
520
|
+
* @readonly
|
|
521
|
+
*/
|
|
522
|
+
_id?: string;
|
|
523
|
+
/**
|
|
524
|
+
* TODO: amitis - remove this comment after the next merge
|
|
525
|
+
* @format EMAIL
|
|
526
|
+
*/
|
|
527
|
+
destEmail?: string;
|
|
528
|
+
/**
|
|
529
|
+
* @readonly
|
|
530
|
+
* @maxLength 20
|
|
531
|
+
*/
|
|
532
|
+
status?: string;
|
|
533
|
+
/**
|
|
534
|
+
* @format WEB_URL
|
|
535
|
+
* @readonly
|
|
536
|
+
*/
|
|
537
|
+
acceptLink?: string;
|
|
538
|
+
/** @maxLength 50 */
|
|
539
|
+
invitePurpose?: string | null;
|
|
540
|
+
/** @maxSize 10 */
|
|
541
|
+
policies?: AssignedPolicy[];
|
|
542
|
+
/** @readonly */
|
|
543
|
+
expirationDate?: Date | null;
|
|
544
|
+
/** @readonly */
|
|
545
|
+
dateCreated?: Date | null;
|
|
546
|
+
/** @readonly */
|
|
547
|
+
dateUpdated?: Date | null;
|
|
548
|
+
}
|
|
484
549
|
interface AssignedPolicyNonNullableFields {
|
|
485
550
|
policyId: string;
|
|
486
551
|
}
|
|
@@ -567,7 +632,7 @@ export interface ChangeContributorRoleResponseNonNullableFields {
|
|
|
567
632
|
newAssignedRoles: SiteRoleAssignmentNonNullableFields[];
|
|
568
633
|
}
|
|
569
634
|
interface SiteLocationAssignmentNonNullableFields {
|
|
570
|
-
|
|
635
|
+
locationIds: string[];
|
|
571
636
|
assignmentIds: string[];
|
|
572
637
|
}
|
|
573
638
|
export interface ChangeContributorLocationResponseNonNullableFields {
|
|
@@ -610,7 +675,11 @@ export interface ChangeRoleOptions {
|
|
|
610
675
|
*/
|
|
611
676
|
export declare function changeContributorLocation(accountId: string, options: ChangeContributorLocationOptions): Promise<ChangeContributorLocationResponse & ChangeContributorLocationResponseNonNullableFields>;
|
|
612
677
|
export interface ChangeContributorLocationOptions {
|
|
613
|
-
/**
|
|
678
|
+
/**
|
|
679
|
+
* New locations to assign to the contributor on the site.
|
|
680
|
+
* @format GUID
|
|
681
|
+
* @maxSize 20
|
|
682
|
+
*/
|
|
614
683
|
newLocations: string[];
|
|
615
684
|
}
|
|
616
685
|
/**
|
|
@@ -629,6 +698,8 @@ export interface ChangeContributorLocationOptions {
|
|
|
629
698
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
630
699
|
* @permissionScope Manage Restaurants - all permissions
|
|
631
700
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
701
|
+
* @permissionScope Set Up Automations
|
|
702
|
+
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
632
703
|
* @applicableIdentity APP
|
|
633
704
|
* @fqn com.wixpress.roles.management.api.SiteRolesManagementService.QuerySiteContributors
|
|
634
705
|
*/
|
|
@@ -93,6 +93,8 @@ var FieldSet;
|
|
|
93
93
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
94
94
|
* @permissionScope Manage Restaurants - all permissions
|
|
95
95
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
96
|
+
* @permissionScope Set Up Automations
|
|
97
|
+
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
96
98
|
* @applicableIdentity APP
|
|
97
99
|
* @fqn com.wixpress.roles.management.api.SiteRolesManagementService.GetSiteContributorsV2
|
|
98
100
|
*/
|
|
@@ -217,6 +219,8 @@ exports.changeContributorLocation = changeContributorLocation;
|
|
|
217
219
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
218
220
|
* @permissionScope Manage Restaurants - all permissions
|
|
219
221
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
222
|
+
* @permissionScope Set Up Automations
|
|
223
|
+
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
220
224
|
* @applicableIdentity APP
|
|
221
225
|
* @fqn com.wixpress.roles.management.api.SiteRolesManagementService.QuerySiteContributors
|
|
222
226
|
*/
|
|
@@ -259,6 +263,8 @@ exports.querySiteContributors = querySiteContributors;
|
|
|
259
263
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
260
264
|
* @permissionScope Manage Restaurants - all permissions
|
|
261
265
|
* @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES
|
|
266
|
+
* @permissionScope Set Up Automations
|
|
267
|
+
* @permissionScopeId SCOPE.CRM.SETUP-AUTOMATIONS
|
|
262
268
|
* @applicableIdentity APP
|
|
263
269
|
* @fqn com.wixpress.roles.management.api.SiteRolesManagementService.GetContributorsQuota
|
|
264
270
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"identity-v1-contributor-contributors.universal.js","sourceRoot":"","sources":["../../../src/identity-v1-contributor-contributors.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,mHAAqG;
|
|
1
|
+
{"version":3,"file":"identity-v1-contributor-contributors.universal.js","sourceRoot":"","sources":["../../../src/identity-v1-contributor-contributors.universal.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,4 +4,4 @@ export declare const changeRole: MaybeContext<BuildRESTFunction<typeof publicCha
|
|
|
4
4
|
export declare const changeContributorLocation: MaybeContext<BuildRESTFunction<typeof publicChangeContributorLocation> & typeof publicChangeContributorLocation>;
|
|
5
5
|
export declare const querySiteContributors: MaybeContext<BuildRESTFunction<typeof publicQuerySiteContributors> & typeof publicQuerySiteContributors>;
|
|
6
6
|
export { ResourceType, ConditionAttributeType, SubjectType, SubjectContextType, InviteStatus, Type, FieldSet, } from './identity-v1-contributor-contributors.universal.js';
|
|
7
|
-
export { Contributor, PersonMetaData, Assignment, AssignedPolicy, Restriction, RestrictionRestrictionsOneOf, Resource, Conditions, Condition, SiteRestriction, CompanionResource, LocationsRestriction, Subject, SubjectContext,
|
|
7
|
+
export { Contributor, PersonMetaData, Assignment, AssignedPolicy, Restriction, RestrictionRestrictionsOneOf, Resource, Conditions, Condition, SiteRestriction, CompanionResource, LocationsRestriction, Subject, SubjectContext, GetSiteContributorsRequest, GetSiteContributorsResponse, User, Name, Team, AccountInfo, SiteInvite, Policy, PendingOwner, ContributorLimit, PredefinedRoles, PredefinedRole, Role, GetSiteContributorsV2Request, GetSiteContributorsV2Response, ContributorsQuota, ContributorsQuotaOptionsOneOf, LimitedOptions, HandleSiteTransferRequest, HandleSiteTransferResponse, GetCurrentUserRolesRequest, GetCurrentUserRolesResponse, LocalizedRole, BulkGetUserRolesOnSiteRequest, UserSubject, BulkGetUserRolesOnSiteResponse, UserLocalizedRoles, BulkValidateEmailInviteEligibilityRequest, BulkValidateEmailInviteEligibilityResponse, EmailInviteEligibility, ChangeContributorRoleRequest, SiteRoleAssignment, ChangeContributorRoleResponse, ChangeContributorLocationRequest, ChangeContributorLocationResponse, SiteLocationAssignment, QuerySiteContributorsRequest, QuerySiteContributorsFilter, QuerySiteContributorsResponse, ContributorV2, GetContributorsQuotaRequest, GetContributorsQuotaResponse, GetAppContributorsRequest, GetAppContributorsResponse, AppInvite, GetSiteContributorsV2ResponseNonNullableFields, ChangeContributorRoleResponseNonNullableFields, ChangeContributorLocationResponseNonNullableFields, GetContributorsQuotaResponseNonNullableFields, GetSiteContributorsV2Options, ChangeRoleOptions, ChangeContributorLocationOptions, QuerySiteContributorsOptions, } from './identity-v1-contributor-contributors.universal.js';
|