@wix/auto_sdk_members_members 1.0.57 → 1.0.59
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/members-v1-member-members.types.d.ts +35 -15
- package/build/cjs/src/members-v1-member-members.types.js.map +1 -1
- package/build/cjs/src/members-v1-member-members.universal.d.ts +88 -22
- package/build/cjs/src/members-v1-member-members.universal.js +24 -0
- package/build/cjs/src/members-v1-member-members.universal.js.map +1 -1
- package/build/es/src/members-v1-member-members.types.d.ts +35 -15
- package/build/es/src/members-v1-member-members.types.js.map +1 -1
- package/build/es/src/members-v1-member-members.universal.d.ts +88 -22
- package/build/es/src/members-v1-member-members.universal.js +24 -0
- package/build/es/src/members-v1-member-members.universal.js.map +1 -1
- package/build/internal/cjs/src/members-v1-member-members.types.d.ts +35 -15
- package/build/internal/cjs/src/members-v1-member-members.types.js.map +1 -1
- package/build/internal/cjs/src/members-v1-member-members.universal.d.ts +88 -22
- package/build/internal/cjs/src/members-v1-member-members.universal.js +24 -0
- package/build/internal/cjs/src/members-v1-member-members.universal.js.map +1 -1
- package/build/internal/es/src/members-v1-member-members.types.d.ts +35 -15
- package/build/internal/es/src/members-v1-member-members.types.js.map +1 -1
- package/build/internal/es/src/members-v1-member-members.universal.d.ts +88 -22
- package/build/internal/es/src/members-v1-member-members.universal.js +24 -0
- package/build/internal/es/src/members-v1-member-members.universal.js.map +1 -1
- package/package.json +3 -3
|
@@ -19,7 +19,7 @@ export interface Member {
|
|
|
19
19
|
* Member site access status.
|
|
20
20
|
* @readonly
|
|
21
21
|
*/
|
|
22
|
-
status?:
|
|
22
|
+
status?: StatusWithLiterals;
|
|
23
23
|
/**
|
|
24
24
|
* Contact ID.
|
|
25
25
|
* @format GUID
|
|
@@ -37,12 +37,12 @@ export interface Member {
|
|
|
37
37
|
/** Profile display details. */
|
|
38
38
|
profile?: Profile;
|
|
39
39
|
/** Member privacy status. */
|
|
40
|
-
privacyStatus?:
|
|
40
|
+
privacyStatus?: PrivacyStatusStatusWithLiterals;
|
|
41
41
|
/**
|
|
42
42
|
* Member activity status.
|
|
43
43
|
* @readonly
|
|
44
44
|
*/
|
|
45
|
-
activityStatus?:
|
|
45
|
+
activityStatus?: ActivityStatusStatusWithLiterals;
|
|
46
46
|
/**
|
|
47
47
|
* Date and time when the member was created.
|
|
48
48
|
* @readonly
|
|
@@ -71,6 +71,8 @@ export declare enum Status {
|
|
|
71
71
|
/** Member is a [guest author](https://support.wix.com/en/article/wix-blog-adding-managed-writers-to-your-blog) for the site blog and can't log in to the site. */
|
|
72
72
|
OFFLINE = "OFFLINE"
|
|
73
73
|
}
|
|
74
|
+
/** @enumType */
|
|
75
|
+
export type StatusWithLiterals = Status | 'UNKNOWN' | 'PENDING' | 'APPROVED' | 'BLOCKED' | 'OFFLINE';
|
|
74
76
|
/** Contact info associated with the member. */
|
|
75
77
|
export interface Contact {
|
|
76
78
|
/** Contact's first name. */
|
|
@@ -236,6 +238,8 @@ export declare enum PrivacyStatusStatus {
|
|
|
236
238
|
/** Member is visible to everyone. */
|
|
237
239
|
PUBLIC = "PUBLIC"
|
|
238
240
|
}
|
|
241
|
+
/** @enumType */
|
|
242
|
+
export type PrivacyStatusStatusWithLiterals = PrivacyStatusStatus | 'UNKNOWN' | 'PRIVATE' | 'PUBLIC';
|
|
239
243
|
export declare enum ActivityStatusStatus {
|
|
240
244
|
/** Insufficient permissions to get the status. */
|
|
241
245
|
UNKNOWN = "UNKNOWN",
|
|
@@ -244,6 +248,8 @@ export declare enum ActivityStatusStatus {
|
|
|
244
248
|
/** Member can't write forum posts or blog comments. */
|
|
245
249
|
MUTED = "MUTED"
|
|
246
250
|
}
|
|
251
|
+
/** @enumType */
|
|
252
|
+
export type ActivityStatusStatusWithLiterals = ActivityStatusStatus | 'UNKNOWN' | 'ACTIVE' | 'MUTED';
|
|
247
253
|
export interface ExtendedFields {
|
|
248
254
|
/**
|
|
249
255
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
@@ -437,7 +443,7 @@ export interface GetMyMemberRequest {
|
|
|
437
443
|
* Default: `"PUBLIC"`.
|
|
438
444
|
* @maxSize 3
|
|
439
445
|
*/
|
|
440
|
-
fieldsets?:
|
|
446
|
+
fieldsets?: SetWithLiterals[];
|
|
441
447
|
}
|
|
442
448
|
export declare enum Set {
|
|
443
449
|
/**
|
|
@@ -450,6 +456,8 @@ export declare enum Set {
|
|
|
450
456
|
/** Includes all fields. */
|
|
451
457
|
FULL = "FULL"
|
|
452
458
|
}
|
|
459
|
+
/** @enumType */
|
|
460
|
+
export type SetWithLiterals = Set | 'PUBLIC' | 'EXTENDED' | 'FULL';
|
|
453
461
|
/** Member profile. */
|
|
454
462
|
export interface GetMyMemberResponse {
|
|
455
463
|
/** The retrieved member. */
|
|
@@ -467,7 +475,7 @@ export interface GetMemberRequest {
|
|
|
467
475
|
* Defaults to `"PUBLIC"`.
|
|
468
476
|
* @maxSize 3
|
|
469
477
|
*/
|
|
470
|
-
fieldsets?:
|
|
478
|
+
fieldsets?: SetWithLiterals[];
|
|
471
479
|
}
|
|
472
480
|
export interface GetMemberResponse {
|
|
473
481
|
/** The requested member. */
|
|
@@ -488,7 +496,7 @@ export interface ListMembersRequest {
|
|
|
488
496
|
* Default: `"PUBLIC"`.
|
|
489
497
|
* @maxSize 3
|
|
490
498
|
*/
|
|
491
|
-
fieldsets?:
|
|
499
|
+
fieldsets?: SetWithLiterals[];
|
|
492
500
|
sorting?: Sorting[];
|
|
493
501
|
}
|
|
494
502
|
export interface Paging {
|
|
@@ -504,12 +512,14 @@ export interface Sorting {
|
|
|
504
512
|
*/
|
|
505
513
|
fieldName?: string;
|
|
506
514
|
/** Sort order. */
|
|
507
|
-
order?:
|
|
515
|
+
order?: SortOrderWithLiterals;
|
|
508
516
|
}
|
|
509
517
|
export declare enum SortOrder {
|
|
510
518
|
ASC = "ASC",
|
|
511
519
|
DESC = "DESC"
|
|
512
520
|
}
|
|
521
|
+
/** @enumType */
|
|
522
|
+
export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
513
523
|
export interface CursorPaging {
|
|
514
524
|
/**
|
|
515
525
|
* Maximum number of items to return in the results.
|
|
@@ -575,7 +585,7 @@ export interface QueryMembersRequest {
|
|
|
575
585
|
* Default: `"PUBLIC"`.
|
|
576
586
|
* @maxSize 3
|
|
577
587
|
*/
|
|
578
|
-
fieldsets?:
|
|
588
|
+
fieldsets?: SetWithLiterals[];
|
|
579
589
|
/** Plain text search. */
|
|
580
590
|
search?: Search;
|
|
581
591
|
}
|
|
@@ -1097,7 +1107,7 @@ export interface Asset {
|
|
|
1097
1107
|
*/
|
|
1098
1108
|
instanceId?: string;
|
|
1099
1109
|
/** An application state. */
|
|
1100
|
-
state?:
|
|
1110
|
+
state?: StateWithLiterals;
|
|
1101
1111
|
}
|
|
1102
1112
|
export declare enum State {
|
|
1103
1113
|
UNKNOWN = "UNKNOWN",
|
|
@@ -1106,6 +1116,8 @@ export declare enum State {
|
|
|
1106
1116
|
PENDING = "PENDING",
|
|
1107
1117
|
DEMO = "DEMO"
|
|
1108
1118
|
}
|
|
1119
|
+
/** @enumType */
|
|
1120
|
+
export type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
|
|
1109
1121
|
export interface SiteCreated {
|
|
1110
1122
|
/**
|
|
1111
1123
|
* A template identifier (empty if not created from a template).
|
|
@@ -1118,7 +1130,7 @@ export interface SiteCreated {
|
|
|
1118
1130
|
*/
|
|
1119
1131
|
ownerId?: string;
|
|
1120
1132
|
/** A context in which meta site was created. */
|
|
1121
|
-
context?:
|
|
1133
|
+
context?: SiteCreatedContextWithLiterals;
|
|
1122
1134
|
/**
|
|
1123
1135
|
* A meta site id from which this site was created.
|
|
1124
1136
|
*
|
|
@@ -1133,7 +1145,7 @@ export interface SiteCreated {
|
|
|
1133
1145
|
*/
|
|
1134
1146
|
siteName?: string;
|
|
1135
1147
|
/** A namespace. */
|
|
1136
|
-
namespace?:
|
|
1148
|
+
namespace?: NamespaceWithLiterals;
|
|
1137
1149
|
}
|
|
1138
1150
|
export declare enum SiteCreatedContext {
|
|
1139
1151
|
/** A valid option, we don't expose all reasons why site might be created. */
|
|
@@ -1149,6 +1161,8 @@ export declare enum SiteCreatedContext {
|
|
|
1149
1161
|
/** deprecated A meta site was created for Flash editor. */
|
|
1150
1162
|
FLASH = "FLASH"
|
|
1151
1163
|
}
|
|
1164
|
+
/** @enumType */
|
|
1165
|
+
export type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
|
|
1152
1166
|
export declare enum Namespace {
|
|
1153
1167
|
UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
|
|
1154
1168
|
/** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
|
|
@@ -1231,6 +1245,8 @@ export declare enum Namespace {
|
|
|
1231
1245
|
/** MIMIR - Siteless account for MIMIR Ai Job runner. */
|
|
1232
1246
|
MIMIR = "MIMIR"
|
|
1233
1247
|
}
|
|
1248
|
+
/** @enumType */
|
|
1249
|
+
export type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR';
|
|
1234
1250
|
/** Site transferred to another user. */
|
|
1235
1251
|
export interface SiteTransferred {
|
|
1236
1252
|
/**
|
|
@@ -1253,7 +1269,7 @@ export interface DeleteContext {
|
|
|
1253
1269
|
/** When the meta site was deleted. */
|
|
1254
1270
|
dateDeleted?: Date | null;
|
|
1255
1271
|
/** A status. */
|
|
1256
|
-
deleteStatus?:
|
|
1272
|
+
deleteStatus?: DeleteStatusWithLiterals;
|
|
1257
1273
|
/**
|
|
1258
1274
|
* A reason (flow).
|
|
1259
1275
|
* @maxLength 255
|
|
@@ -1272,6 +1288,8 @@ export declare enum DeleteStatus {
|
|
|
1272
1288
|
PENDING_PURGE = "PENDING_PURGE",
|
|
1273
1289
|
PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
|
|
1274
1290
|
}
|
|
1291
|
+
/** @enumType */
|
|
1292
|
+
export type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
|
|
1275
1293
|
/** Restoration of the meta site. */
|
|
1276
1294
|
export interface SiteUndeleted {
|
|
1277
1295
|
}
|
|
@@ -1373,9 +1391,9 @@ export interface SiteHardDeleted {
|
|
|
1373
1391
|
}
|
|
1374
1392
|
export interface NamespaceChanged {
|
|
1375
1393
|
/** A previous namespace. */
|
|
1376
|
-
oldNamespace?:
|
|
1394
|
+
oldNamespace?: NamespaceWithLiterals;
|
|
1377
1395
|
/** A new namespace. */
|
|
1378
|
-
newNamespace?:
|
|
1396
|
+
newNamespace?: NamespaceWithLiterals;
|
|
1379
1397
|
}
|
|
1380
1398
|
/** Assigned Studio editor */
|
|
1381
1399
|
export interface StudioAssigned {
|
|
@@ -1466,7 +1484,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
|
1466
1484
|
*/
|
|
1467
1485
|
appId?: string;
|
|
1468
1486
|
/** @readonly */
|
|
1469
|
-
identityType?:
|
|
1487
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1470
1488
|
}
|
|
1471
1489
|
/** @oneof */
|
|
1472
1490
|
export interface IdentificationDataIdOneOf {
|
|
@@ -1498,3 +1516,5 @@ export declare enum WebhookIdentityType {
|
|
|
1498
1516
|
WIX_USER = "WIX_USER",
|
|
1499
1517
|
APP = "APP"
|
|
1500
1518
|
}
|
|
1519
|
+
/** @enumType */
|
|
1520
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"members-v1-member-members.types.js","sourceRoot":"","sources":["../../../src/members-v1-member-members.types.ts"],"names":[],"mappings":";;;AA8DA,IAAY,MAWX;AAXD,WAAY,MAAM;IAChB,kDAAkD;IAClD,6BAAmB,CAAA;IACnB,mEAAmE;IACnE,6BAAmB,CAAA;IACnB,qCAAqC;IACrC,+BAAqB,CAAA;IACrB,sDAAsD;IACtD,6BAAmB,CAAA;IACnB,kKAAkK;IAClK,6BAAmB,CAAA;AACrB,CAAC,EAXW,MAAM,sBAAN,MAAM,QAWjB;
|
|
1
|
+
{"version":3,"file":"members-v1-member-members.types.js","sourceRoot":"","sources":["../../../src/members-v1-member-members.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -20,7 +20,7 @@ export interface Member {
|
|
|
20
20
|
* Member site access status.
|
|
21
21
|
* @readonly
|
|
22
22
|
*/
|
|
23
|
-
status?:
|
|
23
|
+
status?: StatusWithLiterals;
|
|
24
24
|
/**
|
|
25
25
|
* Contact ID.
|
|
26
26
|
* @format GUID
|
|
@@ -38,12 +38,12 @@ export interface Member {
|
|
|
38
38
|
/** Profile display details. */
|
|
39
39
|
profile?: Profile;
|
|
40
40
|
/** Member privacy status. */
|
|
41
|
-
privacyStatus?:
|
|
41
|
+
privacyStatus?: PrivacyStatusStatusWithLiterals;
|
|
42
42
|
/**
|
|
43
43
|
* Member activity status.
|
|
44
44
|
* @readonly
|
|
45
45
|
*/
|
|
46
|
-
activityStatus?:
|
|
46
|
+
activityStatus?: ActivityStatusStatusWithLiterals;
|
|
47
47
|
/**
|
|
48
48
|
* Date and time when the member was created.
|
|
49
49
|
* @readonly
|
|
@@ -72,6 +72,8 @@ export declare enum Status {
|
|
|
72
72
|
/** Member is a [guest author](https://support.wix.com/en/article/wix-blog-adding-managed-writers-to-your-blog) for the site blog and can't log in to the site. */
|
|
73
73
|
OFFLINE = "OFFLINE"
|
|
74
74
|
}
|
|
75
|
+
/** @enumType */
|
|
76
|
+
export type StatusWithLiterals = Status | 'UNKNOWN' | 'PENDING' | 'APPROVED' | 'BLOCKED' | 'OFFLINE';
|
|
75
77
|
/** Contact info associated with the member. */
|
|
76
78
|
export interface Contact {
|
|
77
79
|
/** Contact's first name. */
|
|
@@ -239,6 +241,8 @@ export declare enum PrivacyStatusStatus {
|
|
|
239
241
|
/** Member is visible to everyone. */
|
|
240
242
|
PUBLIC = "PUBLIC"
|
|
241
243
|
}
|
|
244
|
+
/** @enumType */
|
|
245
|
+
export type PrivacyStatusStatusWithLiterals = PrivacyStatusStatus | 'UNKNOWN' | 'PRIVATE' | 'PUBLIC';
|
|
242
246
|
export declare enum ActivityStatusStatus {
|
|
243
247
|
/** Insufficient permissions to get the status. */
|
|
244
248
|
UNKNOWN = "UNKNOWN",
|
|
@@ -247,6 +251,8 @@ export declare enum ActivityStatusStatus {
|
|
|
247
251
|
/** Member can't write forum posts or blog comments. */
|
|
248
252
|
MUTED = "MUTED"
|
|
249
253
|
}
|
|
254
|
+
/** @enumType */
|
|
255
|
+
export type ActivityStatusStatusWithLiterals = ActivityStatusStatus | 'UNKNOWN' | 'ACTIVE' | 'MUTED';
|
|
250
256
|
export interface ExtendedFields {
|
|
251
257
|
/**
|
|
252
258
|
* Extended field data. Each key corresponds to the namespace of the app that created the extended fields.
|
|
@@ -440,7 +446,7 @@ export interface GetMyMemberRequest {
|
|
|
440
446
|
* Default: `"PUBLIC"`.
|
|
441
447
|
* @maxSize 3
|
|
442
448
|
*/
|
|
443
|
-
fieldsets?:
|
|
449
|
+
fieldsets?: SetWithLiterals[];
|
|
444
450
|
}
|
|
445
451
|
export declare enum Set {
|
|
446
452
|
/**
|
|
@@ -453,6 +459,8 @@ export declare enum Set {
|
|
|
453
459
|
/** Includes all fields. */
|
|
454
460
|
FULL = "FULL"
|
|
455
461
|
}
|
|
462
|
+
/** @enumType */
|
|
463
|
+
export type SetWithLiterals = Set | 'PUBLIC' | 'EXTENDED' | 'FULL';
|
|
456
464
|
/** Member profile. */
|
|
457
465
|
export interface GetMyMemberResponse {
|
|
458
466
|
/** The retrieved member. */
|
|
@@ -470,7 +478,7 @@ export interface GetMemberRequest {
|
|
|
470
478
|
* Defaults to `"PUBLIC"`.
|
|
471
479
|
* @maxSize 3
|
|
472
480
|
*/
|
|
473
|
-
fieldsets?:
|
|
481
|
+
fieldsets?: SetWithLiterals[];
|
|
474
482
|
}
|
|
475
483
|
export interface GetMemberResponse {
|
|
476
484
|
/** The requested member. */
|
|
@@ -491,7 +499,7 @@ export interface ListMembersRequest {
|
|
|
491
499
|
* Default: `"PUBLIC"`.
|
|
492
500
|
* @maxSize 3
|
|
493
501
|
*/
|
|
494
|
-
fieldsets?:
|
|
502
|
+
fieldsets?: SetWithLiterals[];
|
|
495
503
|
sorting?: Sorting[];
|
|
496
504
|
}
|
|
497
505
|
export interface Paging {
|
|
@@ -507,12 +515,14 @@ export interface Sorting {
|
|
|
507
515
|
*/
|
|
508
516
|
fieldName?: string;
|
|
509
517
|
/** Sort order. */
|
|
510
|
-
order?:
|
|
518
|
+
order?: SortOrderWithLiterals;
|
|
511
519
|
}
|
|
512
520
|
export declare enum SortOrder {
|
|
513
521
|
ASC = "ASC",
|
|
514
522
|
DESC = "DESC"
|
|
515
523
|
}
|
|
524
|
+
/** @enumType */
|
|
525
|
+
export type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';
|
|
516
526
|
export interface CursorPaging {
|
|
517
527
|
/**
|
|
518
528
|
* Maximum number of items to return in the results.
|
|
@@ -578,7 +588,7 @@ export interface QueryMembersRequest {
|
|
|
578
588
|
* Default: `"PUBLIC"`.
|
|
579
589
|
* @maxSize 3
|
|
580
590
|
*/
|
|
581
|
-
fieldsets?:
|
|
591
|
+
fieldsets?: SetWithLiterals[];
|
|
582
592
|
/** Plain text search. */
|
|
583
593
|
search?: Search;
|
|
584
594
|
}
|
|
@@ -1098,7 +1108,7 @@ export interface Asset {
|
|
|
1098
1108
|
*/
|
|
1099
1109
|
instanceId?: string;
|
|
1100
1110
|
/** An application state. */
|
|
1101
|
-
state?:
|
|
1111
|
+
state?: StateWithLiterals;
|
|
1102
1112
|
}
|
|
1103
1113
|
export declare enum State {
|
|
1104
1114
|
UNKNOWN = "UNKNOWN",
|
|
@@ -1107,6 +1117,8 @@ export declare enum State {
|
|
|
1107
1117
|
PENDING = "PENDING",
|
|
1108
1118
|
DEMO = "DEMO"
|
|
1109
1119
|
}
|
|
1120
|
+
/** @enumType */
|
|
1121
|
+
export type StateWithLiterals = State | 'UNKNOWN' | 'ENABLED' | 'DISABLED' | 'PENDING' | 'DEMO';
|
|
1110
1122
|
export interface SiteCreated {
|
|
1111
1123
|
/**
|
|
1112
1124
|
* A template identifier (empty if not created from a template).
|
|
@@ -1119,7 +1131,7 @@ export interface SiteCreated {
|
|
|
1119
1131
|
*/
|
|
1120
1132
|
ownerId?: string;
|
|
1121
1133
|
/** A context in which meta site was created. */
|
|
1122
|
-
context?:
|
|
1134
|
+
context?: SiteCreatedContextWithLiterals;
|
|
1123
1135
|
/**
|
|
1124
1136
|
* A meta site id from which this site was created.
|
|
1125
1137
|
*
|
|
@@ -1134,7 +1146,7 @@ export interface SiteCreated {
|
|
|
1134
1146
|
*/
|
|
1135
1147
|
siteName?: string;
|
|
1136
1148
|
/** A namespace. */
|
|
1137
|
-
namespace?:
|
|
1149
|
+
namespace?: NamespaceWithLiterals;
|
|
1138
1150
|
}
|
|
1139
1151
|
export declare enum SiteCreatedContext {
|
|
1140
1152
|
/** A valid option, we don't expose all reasons why site might be created. */
|
|
@@ -1150,6 +1162,8 @@ export declare enum SiteCreatedContext {
|
|
|
1150
1162
|
/** deprecated A meta site was created for Flash editor. */
|
|
1151
1163
|
FLASH = "FLASH"
|
|
1152
1164
|
}
|
|
1165
|
+
/** @enumType */
|
|
1166
|
+
export type SiteCreatedContextWithLiterals = SiteCreatedContext | 'OTHER' | 'FROM_TEMPLATE' | 'DUPLICATE_BY_SITE_TRANSFER' | 'DUPLICATE' | 'OLD_SITE_TRANSFER' | 'FLASH';
|
|
1153
1167
|
export declare enum Namespace {
|
|
1154
1168
|
UNKNOWN_NAMESPACE = "UNKNOWN_NAMESPACE",
|
|
1155
1169
|
/** Default namespace for UGC sites. MetaSites with this namespace will be shown in a user's site list by default. */
|
|
@@ -1232,6 +1246,8 @@ export declare enum Namespace {
|
|
|
1232
1246
|
/** MIMIR - Siteless account for MIMIR Ai Job runner. */
|
|
1233
1247
|
MIMIR = "MIMIR"
|
|
1234
1248
|
}
|
|
1249
|
+
/** @enumType */
|
|
1250
|
+
export type NamespaceWithLiterals = Namespace | 'UNKNOWN_NAMESPACE' | 'WIX' | 'SHOUT_OUT' | 'ALBUMS' | 'WIX_STORES_TEST_DRIVE' | 'HOTELS' | 'CLUBS' | 'ONBOARDING_DRAFT' | 'DEV_SITE' | 'LOGOS' | 'VIDEO_MAKER' | 'PARTNER_DASHBOARD' | 'DEV_CENTER_COMPANY' | 'HTML_DRAFT' | 'SITELESS_BUSINESS' | 'CREATOR_ECONOMY' | 'DASHBOARD_FIRST' | 'ANYWHERE' | 'HEADLESS' | 'ACCOUNT_MASTER_CMS' | 'RISE' | 'BRANDED_FIRST' | 'NOWNIA' | 'UGC_TEMPLATE' | 'CODUX' | 'MEDIA_DESIGN_CREATOR' | 'SHARED_BLOG_ENTERPRISE' | 'STANDALONE_FORMS' | 'STANDALONE_EVENTS' | 'MIMIR';
|
|
1235
1251
|
/** Site transferred to another user. */
|
|
1236
1252
|
export interface SiteTransferred {
|
|
1237
1253
|
/**
|
|
@@ -1254,7 +1270,7 @@ export interface DeleteContext {
|
|
|
1254
1270
|
/** When the meta site was deleted. */
|
|
1255
1271
|
dateDeleted?: Date | null;
|
|
1256
1272
|
/** A status. */
|
|
1257
|
-
deleteStatus?:
|
|
1273
|
+
deleteStatus?: DeleteStatusWithLiterals;
|
|
1258
1274
|
/**
|
|
1259
1275
|
* A reason (flow).
|
|
1260
1276
|
* @maxLength 255
|
|
@@ -1273,6 +1289,8 @@ export declare enum DeleteStatus {
|
|
|
1273
1289
|
PENDING_PURGE = "PENDING_PURGE",
|
|
1274
1290
|
PURGED_EXTERNALLY = "PURGED_EXTERNALLY"
|
|
1275
1291
|
}
|
|
1292
|
+
/** @enumType */
|
|
1293
|
+
export type DeleteStatusWithLiterals = DeleteStatus | 'UNKNOWN' | 'TRASH' | 'DELETED' | 'PENDING_PURGE' | 'PURGED_EXTERNALLY';
|
|
1276
1294
|
/** Restoration of the meta site. */
|
|
1277
1295
|
export interface SiteUndeleted {
|
|
1278
1296
|
}
|
|
@@ -1374,9 +1392,9 @@ export interface SiteHardDeleted {
|
|
|
1374
1392
|
}
|
|
1375
1393
|
export interface NamespaceChanged {
|
|
1376
1394
|
/** A previous namespace. */
|
|
1377
|
-
oldNamespace?:
|
|
1395
|
+
oldNamespace?: NamespaceWithLiterals;
|
|
1378
1396
|
/** A new namespace. */
|
|
1379
|
-
newNamespace?:
|
|
1397
|
+
newNamespace?: NamespaceWithLiterals;
|
|
1380
1398
|
}
|
|
1381
1399
|
/** Assigned Studio editor */
|
|
1382
1400
|
export interface StudioAssigned {
|
|
@@ -1467,7 +1485,7 @@ export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
|
1467
1485
|
*/
|
|
1468
1486
|
appId?: string;
|
|
1469
1487
|
/** @readonly */
|
|
1470
|
-
identityType?:
|
|
1488
|
+
identityType?: WebhookIdentityTypeWithLiterals;
|
|
1471
1489
|
}
|
|
1472
1490
|
/** @oneof */
|
|
1473
1491
|
export interface IdentificationDataIdOneOf {
|
|
@@ -1499,6 +1517,8 @@ export declare enum WebhookIdentityType {
|
|
|
1499
1517
|
WIX_USER = "WIX_USER",
|
|
1500
1518
|
APP = "APP"
|
|
1501
1519
|
}
|
|
1520
|
+
/** @enumType */
|
|
1521
|
+
export type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1502
1522
|
export interface BaseEventMetadata {
|
|
1503
1523
|
/**
|
|
1504
1524
|
* App instance ID.
|
|
@@ -1565,6 +1585,8 @@ export interface MemberCreatedEnvelope {
|
|
|
1565
1585
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
1566
1586
|
* @permissionScope Manage Portfolio
|
|
1567
1587
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1588
|
+
* @permissionScope Manage Blog
|
|
1589
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1568
1590
|
* @permissionScope Access Verticals by Automations
|
|
1569
1591
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1570
1592
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
@@ -1601,6 +1623,8 @@ export interface MemberDeletedEnvelope {
|
|
|
1601
1623
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
1602
1624
|
* @permissionScope Manage Portfolio
|
|
1603
1625
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1626
|
+
* @permissionScope Manage Blog
|
|
1627
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1604
1628
|
* @permissionScope Access Verticals by Automations
|
|
1605
1629
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1606
1630
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
@@ -1636,6 +1660,8 @@ export interface MemberUpdatedEnvelope {
|
|
|
1636
1660
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
1637
1661
|
* @permissionScope Manage Portfolio
|
|
1638
1662
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1663
|
+
* @permissionScope Manage Blog
|
|
1664
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1639
1665
|
* @permissionScope Access Verticals by Automations
|
|
1640
1666
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1641
1667
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
@@ -1680,6 +1706,8 @@ type MemberNonNullablePaths = `status` | `contact.phones` | `contact.emails` | `
|
|
|
1680
1706
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
1681
1707
|
* @permissionScope Manage Portfolio
|
|
1682
1708
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1709
|
+
* @permissionScope Manage Blog
|
|
1710
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1683
1711
|
* @permissionScope Access Verticals by Automations
|
|
1684
1712
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1685
1713
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1713,6 +1741,8 @@ export declare function updateCurrentMemberSlug(slug: string): Promise<NonNullab
|
|
|
1713
1741
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
1714
1742
|
* @permissionScope Manage Portfolio
|
|
1715
1743
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1744
|
+
* @permissionScope Manage Blog
|
|
1745
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1716
1746
|
* @permissionScope Access Verticals by Automations
|
|
1717
1747
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1718
1748
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -1794,6 +1824,8 @@ export declare function leaveCommunity(): Promise<NonNullablePaths<LeaveCommunit
|
|
|
1794
1824
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
1795
1825
|
* @permissionScope Manage Portfolio
|
|
1796
1826
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1827
|
+
* @permissionScope Manage Blog
|
|
1828
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1797
1829
|
* @permissionScope Access Verticals by Automations
|
|
1798
1830
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1799
1831
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
@@ -1821,7 +1853,7 @@ export interface GetCurrentMemberOptions {
|
|
|
1821
1853
|
* Default: `"PUBLIC"`.
|
|
1822
1854
|
* @maxSize 3
|
|
1823
1855
|
*/
|
|
1824
|
-
fieldsets?:
|
|
1856
|
+
fieldsets?: SetWithLiterals[];
|
|
1825
1857
|
}
|
|
1826
1858
|
/**
|
|
1827
1859
|
* Retrieves a member by ID.
|
|
@@ -1845,6 +1877,8 @@ export interface GetCurrentMemberOptions {
|
|
|
1845
1877
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
1846
1878
|
* @permissionScope Manage Portfolio
|
|
1847
1879
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1880
|
+
* @permissionScope Manage Blog
|
|
1881
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1848
1882
|
* @permissionScope Access Verticals by Automations
|
|
1849
1883
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1850
1884
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
@@ -1870,7 +1904,7 @@ export interface GetMemberOptions {
|
|
|
1870
1904
|
* Defaults to `"PUBLIC"`.
|
|
1871
1905
|
* @maxSize 3
|
|
1872
1906
|
*/
|
|
1873
|
-
fieldsets?:
|
|
1907
|
+
fieldsets?: SetWithLiterals[];
|
|
1874
1908
|
}
|
|
1875
1909
|
/**
|
|
1876
1910
|
* Lists site members, given the provided paging and fieldsets.
|
|
@@ -1889,6 +1923,8 @@ export interface GetMemberOptions {
|
|
|
1889
1923
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
1890
1924
|
* @permissionScope Manage Portfolio
|
|
1891
1925
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1926
|
+
* @permissionScope Manage Blog
|
|
1927
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1892
1928
|
* @permissionScope Access Verticals by Automations
|
|
1893
1929
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1894
1930
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
@@ -1917,7 +1953,7 @@ export interface ListMembersOptions {
|
|
|
1917
1953
|
* Default: `"PUBLIC"`.
|
|
1918
1954
|
* @maxSize 3
|
|
1919
1955
|
*/
|
|
1920
|
-
fieldsets?:
|
|
1956
|
+
fieldsets?: SetWithLiterals[];
|
|
1921
1957
|
/** Sorting options. */
|
|
1922
1958
|
sorting?: Sorting[];
|
|
1923
1959
|
}
|
|
@@ -1954,6 +1990,8 @@ export interface ListMembersOptions {
|
|
|
1954
1990
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
1955
1991
|
* @permissionScope Manage Portfolio
|
|
1956
1992
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
1993
|
+
* @permissionScope Manage Blog
|
|
1994
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
1957
1995
|
* @permissionScope Access Verticals by Automations
|
|
1958
1996
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
1959
1997
|
* @permissionScope Read Members and Contacts - all read permissions
|
|
@@ -1979,7 +2017,7 @@ export interface QueryMembersOptions {
|
|
|
1979
2017
|
* Default: `"PUBLIC"`.
|
|
1980
2018
|
* @maxSize 3
|
|
1981
2019
|
*/
|
|
1982
|
-
fieldsets?:
|
|
2020
|
+
fieldsets?: SetWithLiterals[] | undefined;
|
|
1983
2021
|
/** Plain text search. */
|
|
1984
2022
|
search?: Search | undefined;
|
|
1985
2023
|
}
|
|
@@ -2007,6 +2045,22 @@ export interface MembersQueryBuilder {
|
|
|
2007
2045
|
* @param value - Value to compare against.
|
|
2008
2046
|
*/
|
|
2009
2047
|
ne: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug' | 'privacyStatus', value: any) => MembersQueryBuilder;
|
|
2048
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
2049
|
+
* @param value - Value to compare against.
|
|
2050
|
+
*/
|
|
2051
|
+
ge: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug', value: any) => MembersQueryBuilder;
|
|
2052
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
2053
|
+
* @param value - Value to compare against.
|
|
2054
|
+
*/
|
|
2055
|
+
gt: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug', value: any) => MembersQueryBuilder;
|
|
2056
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
2057
|
+
* @param value - Value to compare against.
|
|
2058
|
+
*/
|
|
2059
|
+
le: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug', value: any) => MembersQueryBuilder;
|
|
2060
|
+
/** @param propertyName - Property whose value is compared with `value`.
|
|
2061
|
+
* @param value - Value to compare against.
|
|
2062
|
+
*/
|
|
2063
|
+
lt: (propertyName: '_id' | 'loginEmail' | 'contactId' | 'contact.firstName' | 'contact.lastName' | 'profile.nickname' | 'profile.slug', value: any) => MembersQueryBuilder;
|
|
2010
2064
|
/** @param propertyName - Property whose value is compared with `string`.
|
|
2011
2065
|
* @param string - String to compare against. Case-insensitive.
|
|
2012
2066
|
*/
|
|
@@ -2109,6 +2163,8 @@ export declare function blockMember(_id: string): Promise<NonNullablePaths<Block
|
|
|
2109
2163
|
* @permissionScopeId SCOPE.DC-MEMBERS.MANAGE-MEMBERS
|
|
2110
2164
|
* @permissionScope Manage Challenges
|
|
2111
2165
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
2166
|
+
* @permissionScope Manage Blog
|
|
2167
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2112
2168
|
* @applicableIdentity APP
|
|
2113
2169
|
* @fqn com.wixpress.members.api.Members.DisconnectMember
|
|
2114
2170
|
*/
|
|
@@ -2240,6 +2296,8 @@ export declare function bulkBlockMembers(filter: any): Promise<NonNullablePaths<
|
|
|
2240
2296
|
* @permissionScopeId SCOPE.DC-MEMBERS.MANAGE-MEMBERS
|
|
2241
2297
|
* @permissionScope Manage Challenges
|
|
2242
2298
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
2299
|
+
* @permissionScope Manage Blog
|
|
2300
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2243
2301
|
* @applicableIdentity APP
|
|
2244
2302
|
* @returns New member.
|
|
2245
2303
|
* @fqn com.wixpress.members.api.Members.CreateMember
|
|
@@ -2283,6 +2341,8 @@ export interface CreateMemberOptions {
|
|
|
2283
2341
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
2284
2342
|
* @permissionScope Manage Portfolio
|
|
2285
2343
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2344
|
+
* @permissionScope Manage Blog
|
|
2345
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2286
2346
|
* @permissionScope Access Verticals by Automations
|
|
2287
2347
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2288
2348
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2316,7 +2376,7 @@ export interface UpdateMember {
|
|
|
2316
2376
|
* Member site access status.
|
|
2317
2377
|
* @readonly
|
|
2318
2378
|
*/
|
|
2319
|
-
status?:
|
|
2379
|
+
status?: StatusWithLiterals;
|
|
2320
2380
|
/**
|
|
2321
2381
|
* Contact ID.
|
|
2322
2382
|
* @format GUID
|
|
@@ -2334,12 +2394,12 @@ export interface UpdateMember {
|
|
|
2334
2394
|
/** Profile display details. */
|
|
2335
2395
|
profile?: Profile;
|
|
2336
2396
|
/** Member privacy status. */
|
|
2337
|
-
privacyStatus?:
|
|
2397
|
+
privacyStatus?: PrivacyStatusStatusWithLiterals;
|
|
2338
2398
|
/**
|
|
2339
2399
|
* Member activity status.
|
|
2340
2400
|
* @readonly
|
|
2341
2401
|
*/
|
|
2342
|
-
activityStatus?:
|
|
2402
|
+
activityStatus?: ActivityStatusStatusWithLiterals;
|
|
2343
2403
|
/**
|
|
2344
2404
|
* Date and time when the member was created.
|
|
2345
2405
|
* @readonly
|
|
@@ -2380,6 +2440,8 @@ export interface UpdateMember {
|
|
|
2380
2440
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
2381
2441
|
* @permissionScope Manage Portfolio
|
|
2382
2442
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2443
|
+
* @permissionScope Manage Blog
|
|
2444
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2383
2445
|
* @permissionScope Access Verticals by Automations
|
|
2384
2446
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2385
2447
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2420,6 +2482,8 @@ export declare function deleteMemberPhones(_id: string): Promise<NonNullablePath
|
|
|
2420
2482
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
2421
2483
|
* @permissionScope Manage Portfolio
|
|
2422
2484
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2485
|
+
* @permissionScope Manage Blog
|
|
2486
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2423
2487
|
* @permissionScope Access Verticals by Automations
|
|
2424
2488
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2425
2489
|
* @permissionScope Manage Restaurants - all permissions
|
|
@@ -2457,6 +2521,8 @@ export declare function deleteMemberEmails(_id: string): Promise<NonNullablePath
|
|
|
2457
2521
|
* @permissionScopeId SCOPE.CHALLENGES.MANAGE
|
|
2458
2522
|
* @permissionScope Manage Portfolio
|
|
2459
2523
|
* @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO
|
|
2524
|
+
* @permissionScope Manage Blog
|
|
2525
|
+
* @permissionScopeId SCOPE.BLOG.MANAGE-BLOG
|
|
2460
2526
|
* @permissionScope Access Verticals by Automations
|
|
2461
2527
|
* @permissionScopeId SCOPE.CRM.ACCESS-VERTICALS-BY-AUTOMATIONS
|
|
2462
2528
|
* @permissionScope Manage Restaurants - all permissions
|