@wix/auto_sdk_email-subscriptions_email-subscriptions 1.0.0 → 1.0.1
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/emailsubscriptions-v1-emailsubscription-email-subscriptions.context.d.ts +1 -1
- package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.d.ts +104 -47
- package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js +8 -10
- package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js.map +1 -1
- package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.d.ts +116 -50
- package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js +8 -10
- package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js.map +1 -1
- package/build/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.context.d.ts +1 -1
- package/build/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.d.ts +104 -47
- package/build/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js +8 -10
- package/build/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js.map +1 -1
- package/build/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.d.ts +116 -50
- package/build/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js +8 -10
- package/build/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js.map +1 -1
- package/build/internal/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.context.d.ts +1 -1
- package/build/internal/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.d.ts +104 -47
- package/build/internal/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js +8 -10
- package/build/internal/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js.map +1 -1
- package/build/internal/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.d.ts +116 -50
- package/build/internal/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js +8 -10
- package/build/internal/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js.map +1 -1
- package/build/internal/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.context.d.ts +1 -1
- package/build/internal/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.d.ts +104 -47
- package/build/internal/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js +8 -10
- package/build/internal/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js.map +1 -1
- package/build/internal/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.d.ts +116 -50
- package/build/internal/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js +8 -10
- package/build/internal/es/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js.map +1 -1
- package/package.json +2 -2
package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.context.d.ts
CHANGED
@@ -9,4 +9,4 @@ export declare const generateUnsubscribeLink: MaybeContext<BuildRESTFunction<typ
|
|
9
9
|
/** */
|
10
10
|
export declare const onEmailsubscriptionEmailSubscriptionChanged: ReturnType<typeof createEventModule<typeof publicOnEmailsubscriptionEmailSubscriptionChanged>>;
|
11
11
|
export { SubscriptionEnumStatus, Status, WebhookIdentityType, } from './emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js';
|
12
|
-
export { EmailSubscription,
|
12
|
+
export { EmailSubscription, EmailSubscriptionChanged, GetEmailSubscriptionRequest, GetEmailSubscriptionResponse, UpdateEmailSubscriptionRequest, UpdateEmailSubscriptionResponse, QueryEmailSubscriptionsRequest, Paging, QueryEmailSubscriptionsResponse, PagingMetadata, UpsertEmailSubscriptionRequest, UpsertEmailSubscriptionResponse, BulkUpsertEmailSubscriptionRequest, BulkUpsertEmailSubscriptionResponse, BulkUpsertEmailSubscriptionResult, Error, Metadata, GenerateUnsubscribeLinkRequest, GenerateUnsubscribeLinkResponse, RenderUnsubscribePageRequest, RawHttpResponse, HeadersEntry, ConfirmUnsubscribeActionRequest, Empty, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, RestoreInfo, EntityUpdatedEvent, EntityDeletedEvent, ActionEvent, MessageEnvelope, IdentificationData, IdentificationDataIdOneOf, V1RenderUnsubscribePageRequest, V1ConfirmUnsubscribeActionRequest, EmailSubscriptionNonNullableFields, GetEmailSubscriptionResponseNonNullableFields, QueryEmailSubscriptionsResponseNonNullableFields, UpsertEmailSubscriptionResponseNonNullableFields, BulkUpsertEmailSubscriptionResponseNonNullableFields, GenerateUnsubscribeLinkResponseNonNullableFields, BaseEventMetadata, EmailsubscriptionEmailSubscriptionChangedEnvelope, QueryEmailSubscriptionsOptions, UpsertEmailSubscriptionOptions, GenerateUnsubscribeLinkOptions, } from './emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js';
|
package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.d.ts
CHANGED
@@ -1,22 +1,40 @@
|
|
1
1
|
export interface EmailSubscription {
|
2
2
|
/**
|
3
3
|
* Email subscription ID.
|
4
|
+
* @format GUID
|
4
5
|
* @readonly
|
5
6
|
*/
|
6
7
|
id?: string | null;
|
7
|
-
/**
|
8
|
+
/**
|
9
|
+
* Email address.
|
10
|
+
* @format EMAIL
|
11
|
+
*/
|
8
12
|
email?: string;
|
9
13
|
/**
|
10
14
|
* Indicates the recipient's opt-in or opt-out status
|
11
15
|
* for marketing emails.
|
12
16
|
*
|
13
|
-
*
|
17
|
+
* - `NOT_SET`: No status specified. This is the default, initial value before any info about the email address is known.
|
18
|
+
* - `PENDING`: Subscription confirmation was requested,
|
19
|
+
* but recipient hasn't confirmed yet.
|
20
|
+
* - `SUBSCRIBED`: Recipient has opted in to marketing emails.
|
21
|
+
* - `UNSUBSCRIBED`: Recipient has opted out of marketing emails.
|
22
|
+
*
|
23
|
+
* Defaults to `NOT_SET`.
|
14
24
|
*/
|
15
25
|
subscriptionStatus?: SubscriptionEnumStatus;
|
16
26
|
/**
|
17
27
|
* Indicates last reported status of sent emails.
|
18
28
|
*
|
19
|
-
*
|
29
|
+
* - `NOT_SET`: No status specified. This is the default, initial value before any info about the email address is known.
|
30
|
+
* - `VALID`: Emails to this email address are being delivered successfully.
|
31
|
+
* - `BOUNCED`: The last email to the recipient bounced or was rejected.
|
32
|
+
* - `SPAM_COMPLAINT`: The recipient registered a spam complaint
|
33
|
+
* with their email provider.
|
34
|
+
* - `INACTIVE`: Multiple campaigns have been delivered to this address without any engagement from the recipient. (No emails were opened and no content was clicked.)
|
35
|
+
* This status might impact subsequent emails sent to this address.
|
36
|
+
*
|
37
|
+
* Defaults to `NOT_SET`.
|
20
38
|
*/
|
21
39
|
deliverabilityStatus?: Status;
|
22
40
|
/**
|
@@ -31,55 +49,33 @@ export interface EmailSubscription {
|
|
31
49
|
updatedDate?: Date | null;
|
32
50
|
}
|
33
51
|
export declare enum SubscriptionEnumStatus {
|
34
|
-
/** Undefined status. */
|
35
52
|
UNKNOWN = "UNKNOWN",
|
36
|
-
/** No
|
53
|
+
/** No Subscription exists */
|
37
54
|
NOT_SET = "NOT_SET",
|
38
|
-
/** Subscription
|
55
|
+
/** Pending Subscription */
|
39
56
|
PENDING = "PENDING",
|
40
|
-
/**
|
57
|
+
/** Subscribed */
|
41
58
|
SUBSCRIBED = "SUBSCRIBED",
|
42
|
-
/**
|
59
|
+
/** UnSubscribed */
|
43
60
|
UNSUBSCRIBED = "UNSUBSCRIBED"
|
44
61
|
}
|
45
62
|
export declare enum Status {
|
46
|
-
/** No status specified. This is the initial default value before any info about the email address is known. */
|
47
63
|
NOT_SET = "NOT_SET",
|
48
|
-
/**
|
64
|
+
/** valid/deferral */
|
49
65
|
VALID = "VALID",
|
50
|
-
/**
|
66
|
+
/** bounced/rejected/invalid */
|
51
67
|
BOUNCED = "BOUNCED",
|
52
|
-
/**
|
68
|
+
/** spam/complaint */
|
53
69
|
SPAM_COMPLAINT = "SPAM_COMPLAINT",
|
54
|
-
/**
|
70
|
+
/** valid, but no activity reported */
|
55
71
|
INACTIVE = "INACTIVE"
|
56
72
|
}
|
57
|
-
export interface V1RenderUnsubscribePageRequest {
|
58
|
-
/** Payload */
|
59
|
-
payload?: string;
|
60
|
-
/** Language */
|
61
|
-
language?: string | null;
|
62
|
-
}
|
63
|
-
export interface RawHttpResponse {
|
64
|
-
body?: Uint8Array;
|
65
|
-
statusCode?: number | null;
|
66
|
-
headers?: HeadersEntry[];
|
67
|
-
}
|
68
|
-
export interface HeadersEntry {
|
69
|
-
key?: string;
|
70
|
-
value?: string;
|
71
|
-
}
|
72
|
-
export interface V1ConfirmUnsubscribeActionRequest {
|
73
|
-
/** Payload */
|
74
|
-
payload?: string;
|
75
|
-
}
|
76
|
-
export interface Empty {
|
77
|
-
}
|
78
73
|
export interface EmailSubscriptionChanged {
|
79
74
|
/** subscription */
|
80
75
|
subscription?: EmailSubscription;
|
81
76
|
}
|
82
77
|
export interface GetEmailSubscriptionRequest {
|
78
|
+
/** @format GUID */
|
83
79
|
id: string;
|
84
80
|
}
|
85
81
|
export interface GetEmailSubscriptionResponse {
|
@@ -138,7 +134,11 @@ export interface UpsertEmailSubscriptionResponse {
|
|
138
134
|
subscription?: EmailSubscription;
|
139
135
|
}
|
140
136
|
export interface BulkUpsertEmailSubscriptionRequest {
|
141
|
-
/**
|
137
|
+
/**
|
138
|
+
* List of email subscriptions to update or create.
|
139
|
+
* @minSize 1
|
140
|
+
* @maxSize 100
|
141
|
+
*/
|
142
142
|
subscriptions: EmailSubscription[];
|
143
143
|
}
|
144
144
|
export interface BulkUpsertEmailSubscriptionResponse {
|
@@ -171,11 +171,17 @@ export interface Metadata {
|
|
171
171
|
totalFailure?: number;
|
172
172
|
}
|
173
173
|
export interface GenerateUnsubscribeLinkRequest {
|
174
|
-
/**
|
174
|
+
/**
|
175
|
+
* Email address the unsubscribe link is for.
|
176
|
+
* @format EMAIL
|
177
|
+
*/
|
175
178
|
emailAddress: string;
|
176
179
|
/** Arbitrary parameters for closing-the-loop. */
|
177
180
|
metadata?: Record<string, string>;
|
178
|
-
/**
|
181
|
+
/**
|
182
|
+
* Language for displaying unsubscribe confirmation page (optional - default EN).
|
183
|
+
* @format LANGUAGE
|
184
|
+
*/
|
179
185
|
language?: string | null;
|
180
186
|
}
|
181
187
|
export interface GenerateUnsubscribeLinkResponse {
|
@@ -188,10 +194,21 @@ export interface RenderUnsubscribePageRequest {
|
|
188
194
|
/** Language */
|
189
195
|
language?: string | null;
|
190
196
|
}
|
197
|
+
export interface RawHttpResponse {
|
198
|
+
body?: Uint8Array;
|
199
|
+
statusCode?: number | null;
|
200
|
+
headers?: HeadersEntry[];
|
201
|
+
}
|
202
|
+
export interface HeadersEntry {
|
203
|
+
key?: string;
|
204
|
+
value?: string;
|
205
|
+
}
|
191
206
|
export interface ConfirmUnsubscribeActionRequest {
|
192
207
|
/** Payload */
|
193
208
|
payload?: string;
|
194
209
|
}
|
210
|
+
export interface Empty {
|
211
|
+
}
|
195
212
|
export interface DomainEvent extends DomainEventBodyOneOf {
|
196
213
|
createdEvent?: EntityCreatedEvent;
|
197
214
|
updatedEvent?: EntityUpdatedEvent;
|
@@ -265,9 +282,15 @@ export interface ActionEvent {
|
|
265
282
|
bodyAsJson?: string;
|
266
283
|
}
|
267
284
|
export interface MessageEnvelope {
|
268
|
-
/**
|
285
|
+
/**
|
286
|
+
* App instance ID.
|
287
|
+
* @format GUID
|
288
|
+
*/
|
269
289
|
instanceId?: string | null;
|
270
|
-
/**
|
290
|
+
/**
|
291
|
+
* Event type.
|
292
|
+
* @maxLength 150
|
293
|
+
*/
|
271
294
|
eventType?: string;
|
272
295
|
/** The identification type and identity data. */
|
273
296
|
identity?: IdentificationData;
|
@@ -275,26 +298,50 @@ export interface MessageEnvelope {
|
|
275
298
|
data?: string;
|
276
299
|
}
|
277
300
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
278
|
-
/**
|
301
|
+
/**
|
302
|
+
* ID of a site visitor that has not logged in to the site.
|
303
|
+
* @format GUID
|
304
|
+
*/
|
279
305
|
anonymousVisitorId?: string;
|
280
|
-
/**
|
306
|
+
/**
|
307
|
+
* ID of a site visitor that has logged in to the site.
|
308
|
+
* @format GUID
|
309
|
+
*/
|
281
310
|
memberId?: string;
|
282
|
-
/**
|
311
|
+
/**
|
312
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
313
|
+
* @format GUID
|
314
|
+
*/
|
283
315
|
wixUserId?: string;
|
284
|
-
/**
|
316
|
+
/**
|
317
|
+
* ID of an app.
|
318
|
+
* @format GUID
|
319
|
+
*/
|
285
320
|
appId?: string;
|
286
321
|
/** @readonly */
|
287
322
|
identityType?: WebhookIdentityType;
|
288
323
|
}
|
289
324
|
/** @oneof */
|
290
325
|
export interface IdentificationDataIdOneOf {
|
291
|
-
/**
|
326
|
+
/**
|
327
|
+
* ID of a site visitor that has not logged in to the site.
|
328
|
+
* @format GUID
|
329
|
+
*/
|
292
330
|
anonymousVisitorId?: string;
|
293
|
-
/**
|
331
|
+
/**
|
332
|
+
* ID of a site visitor that has logged in to the site.
|
333
|
+
* @format GUID
|
334
|
+
*/
|
294
335
|
memberId?: string;
|
295
|
-
/**
|
336
|
+
/**
|
337
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
338
|
+
* @format GUID
|
339
|
+
*/
|
296
340
|
wixUserId?: string;
|
297
|
-
/**
|
341
|
+
/**
|
342
|
+
* ID of an app.
|
343
|
+
* @format GUID
|
344
|
+
*/
|
298
345
|
appId?: string;
|
299
346
|
}
|
300
347
|
export declare enum WebhookIdentityType {
|
@@ -304,6 +351,16 @@ export declare enum WebhookIdentityType {
|
|
304
351
|
WIX_USER = "WIX_USER",
|
305
352
|
APP = "APP"
|
306
353
|
}
|
354
|
+
export interface V1RenderUnsubscribePageRequest {
|
355
|
+
/** Payload */
|
356
|
+
payload?: string;
|
357
|
+
/** Language */
|
358
|
+
language?: string | null;
|
359
|
+
}
|
360
|
+
export interface V1ConfirmUnsubscribeActionRequest {
|
361
|
+
/** Payload */
|
362
|
+
payload?: string;
|
363
|
+
}
|
307
364
|
interface EmailSubscriptionNonNullableFields {
|
308
365
|
email: string;
|
309
366
|
subscriptionStatus: SubscriptionEnumStatus;
|
@@ -3,28 +3,26 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.WebhookIdentityType = exports.Status = exports.SubscriptionEnumStatus = void 0;
|
4
4
|
var SubscriptionEnumStatus;
|
5
5
|
(function (SubscriptionEnumStatus) {
|
6
|
-
/** Undefined status. */
|
7
6
|
SubscriptionEnumStatus["UNKNOWN"] = "UNKNOWN";
|
8
|
-
/** No
|
7
|
+
/** No Subscription exists */
|
9
8
|
SubscriptionEnumStatus["NOT_SET"] = "NOT_SET";
|
10
|
-
/** Subscription
|
9
|
+
/** Pending Subscription */
|
11
10
|
SubscriptionEnumStatus["PENDING"] = "PENDING";
|
12
|
-
/**
|
11
|
+
/** Subscribed */
|
13
12
|
SubscriptionEnumStatus["SUBSCRIBED"] = "SUBSCRIBED";
|
14
|
-
/**
|
13
|
+
/** UnSubscribed */
|
15
14
|
SubscriptionEnumStatus["UNSUBSCRIBED"] = "UNSUBSCRIBED";
|
16
15
|
})(SubscriptionEnumStatus || (exports.SubscriptionEnumStatus = SubscriptionEnumStatus = {}));
|
17
16
|
var Status;
|
18
17
|
(function (Status) {
|
19
|
-
/** No status specified. This is the initial default value before any info about the email address is known. */
|
20
18
|
Status["NOT_SET"] = "NOT_SET";
|
21
|
-
/**
|
19
|
+
/** valid/deferral */
|
22
20
|
Status["VALID"] = "VALID";
|
23
|
-
/**
|
21
|
+
/** bounced/rejected/invalid */
|
24
22
|
Status["BOUNCED"] = "BOUNCED";
|
25
|
-
/**
|
23
|
+
/** spam/complaint */
|
26
24
|
Status["SPAM_COMPLAINT"] = "SPAM_COMPLAINT";
|
27
|
-
/**
|
25
|
+
/** valid, but no activity reported */
|
28
26
|
Status["INACTIVE"] = "INACTIVE";
|
29
27
|
})(Status || (exports.Status = Status = {}));
|
30
28
|
var WebhookIdentityType;
|
package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js","sourceRoot":"","sources":["../../../src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.ts"],"names":[],"mappings":";;;
|
1
|
+
{"version":3,"file":"emailsubscriptions-v1-emailsubscription-email-subscriptions.types.js","sourceRoot":"","sources":["../../../src/emailsubscriptions-v1-emailsubscription-email-subscriptions.types.ts"],"names":[],"mappings":";;;AAmDA,IAAY,sBAUX;AAVD,WAAY,sBAAsB;IAChC,6CAAmB,CAAA;IACnB,6BAA6B;IAC7B,6CAAmB,CAAA;IACnB,2BAA2B;IAC3B,6CAAmB,CAAA;IACnB,iBAAiB;IACjB,mDAAyB,CAAA;IACzB,mBAAmB;IACnB,uDAA6B,CAAA;AAC/B,CAAC,EAVW,sBAAsB,sCAAtB,sBAAsB,QAUjC;AAED,IAAY,MAUX;AAVD,WAAY,MAAM;IAChB,6BAAmB,CAAA;IACnB,qBAAqB;IACrB,yBAAe,CAAA;IACf,+BAA+B;IAC/B,6BAAmB,CAAA;IACnB,qBAAqB;IACrB,2CAAiC,CAAA;IACjC,sCAAsC;IACtC,+BAAqB,CAAA;AACvB,CAAC,EAVW,MAAM,sBAAN,MAAM,QAUjB;AAoTD,IAAY,mBAMX;AAND,WAAY,mBAAmB;IAC7B,0CAAmB,CAAA;IACnB,8DAAuC,CAAA;IACvC,wCAAiB,CAAA;IACjB,4CAAqB,CAAA;IACrB,kCAAW,CAAA;AACb,CAAC,EANW,mBAAmB,mCAAnB,mBAAmB,QAM9B"}
|
package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.d.ts
CHANGED
@@ -1,22 +1,40 @@
|
|
1
1
|
export interface EmailSubscription {
|
2
2
|
/**
|
3
3
|
* Email subscription ID.
|
4
|
+
* @format GUID
|
4
5
|
* @readonly
|
5
6
|
*/
|
6
7
|
_id?: string | null;
|
7
|
-
/**
|
8
|
+
/**
|
9
|
+
* Email address.
|
10
|
+
* @format EMAIL
|
11
|
+
*/
|
8
12
|
email?: string;
|
9
13
|
/**
|
10
14
|
* Indicates the recipient's opt-in or opt-out status
|
11
15
|
* for marketing emails.
|
12
16
|
*
|
13
|
-
*
|
17
|
+
* - `NOT_SET`: No status specified. This is the default, initial value before any info about the email address is known.
|
18
|
+
* - `PENDING`: Subscription confirmation was requested,
|
19
|
+
* but recipient hasn't confirmed yet.
|
20
|
+
* - `SUBSCRIBED`: Recipient has opted in to marketing emails.
|
21
|
+
* - `UNSUBSCRIBED`: Recipient has opted out of marketing emails.
|
22
|
+
*
|
23
|
+
* Defaults to `NOT_SET`.
|
14
24
|
*/
|
15
25
|
subscriptionStatus?: SubscriptionEnumStatus;
|
16
26
|
/**
|
17
27
|
* Indicates last reported status of sent emails.
|
18
28
|
*
|
19
|
-
*
|
29
|
+
* - `NOT_SET`: No status specified. This is the default, initial value before any info about the email address is known.
|
30
|
+
* - `VALID`: Emails to this email address are being delivered successfully.
|
31
|
+
* - `BOUNCED`: The last email to the recipient bounced or was rejected.
|
32
|
+
* - `SPAM_COMPLAINT`: The recipient registered a spam complaint
|
33
|
+
* with their email provider.
|
34
|
+
* - `INACTIVE`: Multiple campaigns have been delivered to this address without any engagement from the recipient. (No emails were opened and no content was clicked.)
|
35
|
+
* This status might impact subsequent emails sent to this address.
|
36
|
+
*
|
37
|
+
* Defaults to `NOT_SET`.
|
20
38
|
*/
|
21
39
|
deliverabilityStatus?: Status;
|
22
40
|
/**
|
@@ -31,55 +49,33 @@ export interface EmailSubscription {
|
|
31
49
|
_updatedDate?: Date | null;
|
32
50
|
}
|
33
51
|
export declare enum SubscriptionEnumStatus {
|
34
|
-
/** Undefined status. */
|
35
52
|
UNKNOWN = "UNKNOWN",
|
36
|
-
/** No
|
53
|
+
/** No Subscription exists */
|
37
54
|
NOT_SET = "NOT_SET",
|
38
|
-
/** Subscription
|
55
|
+
/** Pending Subscription */
|
39
56
|
PENDING = "PENDING",
|
40
|
-
/**
|
57
|
+
/** Subscribed */
|
41
58
|
SUBSCRIBED = "SUBSCRIBED",
|
42
|
-
/**
|
59
|
+
/** UnSubscribed */
|
43
60
|
UNSUBSCRIBED = "UNSUBSCRIBED"
|
44
61
|
}
|
45
62
|
export declare enum Status {
|
46
|
-
/** No status specified. This is the initial default value before any info about the email address is known. */
|
47
63
|
NOT_SET = "NOT_SET",
|
48
|
-
/**
|
64
|
+
/** valid/deferral */
|
49
65
|
VALID = "VALID",
|
50
|
-
/**
|
66
|
+
/** bounced/rejected/invalid */
|
51
67
|
BOUNCED = "BOUNCED",
|
52
|
-
/**
|
68
|
+
/** spam/complaint */
|
53
69
|
SPAM_COMPLAINT = "SPAM_COMPLAINT",
|
54
|
-
/**
|
70
|
+
/** valid, but no activity reported */
|
55
71
|
INACTIVE = "INACTIVE"
|
56
72
|
}
|
57
|
-
export interface V1RenderUnsubscribePageRequest {
|
58
|
-
/** Payload */
|
59
|
-
payload?: string;
|
60
|
-
/** Language */
|
61
|
-
language?: string | null;
|
62
|
-
}
|
63
|
-
export interface RawHttpResponse {
|
64
|
-
body?: Uint8Array;
|
65
|
-
statusCode?: number | null;
|
66
|
-
headers?: HeadersEntry[];
|
67
|
-
}
|
68
|
-
export interface HeadersEntry {
|
69
|
-
key?: string;
|
70
|
-
value?: string;
|
71
|
-
}
|
72
|
-
export interface V1ConfirmUnsubscribeActionRequest {
|
73
|
-
/** Payload */
|
74
|
-
payload?: string;
|
75
|
-
}
|
76
|
-
export interface Empty {
|
77
|
-
}
|
78
73
|
export interface EmailSubscriptionChanged {
|
79
74
|
/** subscription */
|
80
75
|
subscription?: EmailSubscription;
|
81
76
|
}
|
82
77
|
export interface GetEmailSubscriptionRequest {
|
78
|
+
/** @format GUID */
|
83
79
|
_id: string;
|
84
80
|
}
|
85
81
|
export interface GetEmailSubscriptionResponse {
|
@@ -138,7 +134,11 @@ export interface UpsertEmailSubscriptionResponse {
|
|
138
134
|
subscription?: EmailSubscription;
|
139
135
|
}
|
140
136
|
export interface BulkUpsertEmailSubscriptionRequest {
|
141
|
-
/**
|
137
|
+
/**
|
138
|
+
* List of email subscriptions to update or create.
|
139
|
+
* @minSize 1
|
140
|
+
* @maxSize 100
|
141
|
+
*/
|
142
142
|
subscriptions: EmailSubscription[];
|
143
143
|
}
|
144
144
|
export interface BulkUpsertEmailSubscriptionResponse {
|
@@ -171,11 +171,17 @@ export interface Metadata {
|
|
171
171
|
totalFailure?: number;
|
172
172
|
}
|
173
173
|
export interface GenerateUnsubscribeLinkRequest {
|
174
|
-
/**
|
174
|
+
/**
|
175
|
+
* Email address the unsubscribe link is for.
|
176
|
+
* @format EMAIL
|
177
|
+
*/
|
175
178
|
emailAddress: string;
|
176
179
|
/** Arbitrary parameters for closing-the-loop. */
|
177
180
|
metadata?: Record<string, string>;
|
178
|
-
/**
|
181
|
+
/**
|
182
|
+
* Language for displaying unsubscribe confirmation page (optional - default EN).
|
183
|
+
* @format LANGUAGE
|
184
|
+
*/
|
179
185
|
language?: string | null;
|
180
186
|
}
|
181
187
|
export interface GenerateUnsubscribeLinkResponse {
|
@@ -188,10 +194,21 @@ export interface RenderUnsubscribePageRequest {
|
|
188
194
|
/** Language */
|
189
195
|
language?: string | null;
|
190
196
|
}
|
197
|
+
export interface RawHttpResponse {
|
198
|
+
body?: Uint8Array;
|
199
|
+
statusCode?: number | null;
|
200
|
+
headers?: HeadersEntry[];
|
201
|
+
}
|
202
|
+
export interface HeadersEntry {
|
203
|
+
key?: string;
|
204
|
+
value?: string;
|
205
|
+
}
|
191
206
|
export interface ConfirmUnsubscribeActionRequest {
|
192
207
|
/** Payload */
|
193
208
|
payload?: string;
|
194
209
|
}
|
210
|
+
export interface Empty {
|
211
|
+
}
|
195
212
|
export interface DomainEvent extends DomainEventBodyOneOf {
|
196
213
|
createdEvent?: EntityCreatedEvent;
|
197
214
|
updatedEvent?: EntityUpdatedEvent;
|
@@ -263,9 +280,15 @@ export interface ActionEvent {
|
|
263
280
|
body?: string;
|
264
281
|
}
|
265
282
|
export interface MessageEnvelope {
|
266
|
-
/**
|
283
|
+
/**
|
284
|
+
* App instance ID.
|
285
|
+
* @format GUID
|
286
|
+
*/
|
267
287
|
instanceId?: string | null;
|
268
|
-
/**
|
288
|
+
/**
|
289
|
+
* Event type.
|
290
|
+
* @maxLength 150
|
291
|
+
*/
|
269
292
|
eventType?: string;
|
270
293
|
/** The identification type and identity data. */
|
271
294
|
identity?: IdentificationData;
|
@@ -273,26 +296,50 @@ export interface MessageEnvelope {
|
|
273
296
|
data?: string;
|
274
297
|
}
|
275
298
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
276
|
-
/**
|
299
|
+
/**
|
300
|
+
* ID of a site visitor that has not logged in to the site.
|
301
|
+
* @format GUID
|
302
|
+
*/
|
277
303
|
anonymousVisitorId?: string;
|
278
|
-
/**
|
304
|
+
/**
|
305
|
+
* ID of a site visitor that has logged in to the site.
|
306
|
+
* @format GUID
|
307
|
+
*/
|
279
308
|
memberId?: string;
|
280
|
-
/**
|
309
|
+
/**
|
310
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
311
|
+
* @format GUID
|
312
|
+
*/
|
281
313
|
wixUserId?: string;
|
282
|
-
/**
|
314
|
+
/**
|
315
|
+
* ID of an app.
|
316
|
+
* @format GUID
|
317
|
+
*/
|
283
318
|
appId?: string;
|
284
319
|
/** @readonly */
|
285
320
|
identityType?: WebhookIdentityType;
|
286
321
|
}
|
287
322
|
/** @oneof */
|
288
323
|
export interface IdentificationDataIdOneOf {
|
289
|
-
/**
|
324
|
+
/**
|
325
|
+
* ID of a site visitor that has not logged in to the site.
|
326
|
+
* @format GUID
|
327
|
+
*/
|
290
328
|
anonymousVisitorId?: string;
|
291
|
-
/**
|
329
|
+
/**
|
330
|
+
* ID of a site visitor that has logged in to the site.
|
331
|
+
* @format GUID
|
332
|
+
*/
|
292
333
|
memberId?: string;
|
293
|
-
/**
|
334
|
+
/**
|
335
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
336
|
+
* @format GUID
|
337
|
+
*/
|
294
338
|
wixUserId?: string;
|
295
|
-
/**
|
339
|
+
/**
|
340
|
+
* ID of an app.
|
341
|
+
* @format GUID
|
342
|
+
*/
|
296
343
|
appId?: string;
|
297
344
|
}
|
298
345
|
export declare enum WebhookIdentityType {
|
@@ -302,6 +349,16 @@ export declare enum WebhookIdentityType {
|
|
302
349
|
WIX_USER = "WIX_USER",
|
303
350
|
APP = "APP"
|
304
351
|
}
|
352
|
+
export interface V1RenderUnsubscribePageRequest {
|
353
|
+
/** Payload */
|
354
|
+
payload?: string;
|
355
|
+
/** Language */
|
356
|
+
language?: string | null;
|
357
|
+
}
|
358
|
+
export interface V1ConfirmUnsubscribeActionRequest {
|
359
|
+
/** Payload */
|
360
|
+
payload?: string;
|
361
|
+
}
|
305
362
|
export interface EmailSubscriptionNonNullableFields {
|
306
363
|
email: string;
|
307
364
|
subscriptionStatus: SubscriptionEnumStatus;
|
@@ -337,9 +394,15 @@ export interface GenerateUnsubscribeLinkResponseNonNullableFields {
|
|
337
394
|
link: string;
|
338
395
|
}
|
339
396
|
export interface BaseEventMetadata {
|
340
|
-
/**
|
397
|
+
/**
|
398
|
+
* App instance ID.
|
399
|
+
* @format GUID
|
400
|
+
*/
|
341
401
|
instanceId?: string | null;
|
342
|
-
/**
|
402
|
+
/**
|
403
|
+
* Event type.
|
404
|
+
* @maxLength 150
|
405
|
+
*/
|
343
406
|
eventType?: string;
|
344
407
|
/** The identification type and identity data. */
|
345
408
|
identity?: IdentificationData;
|
@@ -449,7 +512,10 @@ export declare function generateUnsubscribeLink(emailAddress: string, options?:
|
|
449
512
|
export interface GenerateUnsubscribeLinkOptions {
|
450
513
|
/** Arbitrary parameters for closing-the-loop. */
|
451
514
|
metadata?: Record<string, string>;
|
452
|
-
/**
|
515
|
+
/**
|
516
|
+
* Language for displaying unsubscribe confirmation page (optional - default EN).
|
517
|
+
* @format LANGUAGE
|
518
|
+
*/
|
453
519
|
language?: string | null;
|
454
520
|
}
|
455
521
|
export {};
|
package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js
CHANGED
@@ -29,28 +29,26 @@ const rename_all_nested_keys_1 = require("@wix/sdk-runtime/rename-all-nested-key
|
|
29
29
|
const ambassadorWixEmailsubscriptionsV1Emailsubscription = __importStar(require("./emailsubscriptions-v1-emailsubscription-email-subscriptions.http.js"));
|
30
30
|
var SubscriptionEnumStatus;
|
31
31
|
(function (SubscriptionEnumStatus) {
|
32
|
-
/** Undefined status. */
|
33
32
|
SubscriptionEnumStatus["UNKNOWN"] = "UNKNOWN";
|
34
|
-
/** No
|
33
|
+
/** No Subscription exists */
|
35
34
|
SubscriptionEnumStatus["NOT_SET"] = "NOT_SET";
|
36
|
-
/** Subscription
|
35
|
+
/** Pending Subscription */
|
37
36
|
SubscriptionEnumStatus["PENDING"] = "PENDING";
|
38
|
-
/**
|
37
|
+
/** Subscribed */
|
39
38
|
SubscriptionEnumStatus["SUBSCRIBED"] = "SUBSCRIBED";
|
40
|
-
/**
|
39
|
+
/** UnSubscribed */
|
41
40
|
SubscriptionEnumStatus["UNSUBSCRIBED"] = "UNSUBSCRIBED";
|
42
41
|
})(SubscriptionEnumStatus || (exports.SubscriptionEnumStatus = SubscriptionEnumStatus = {}));
|
43
42
|
var Status;
|
44
43
|
(function (Status) {
|
45
|
-
/** No status specified. This is the initial default value before any info about the email address is known. */
|
46
44
|
Status["NOT_SET"] = "NOT_SET";
|
47
|
-
/**
|
45
|
+
/** valid/deferral */
|
48
46
|
Status["VALID"] = "VALID";
|
49
|
-
/**
|
47
|
+
/** bounced/rejected/invalid */
|
50
48
|
Status["BOUNCED"] = "BOUNCED";
|
51
|
-
/**
|
49
|
+
/** spam/complaint */
|
52
50
|
Status["SPAM_COMPLAINT"] = "SPAM_COMPLAINT";
|
53
|
-
/**
|
51
|
+
/** valid, but no activity reported */
|
54
52
|
Status["INACTIVE"] = "INACTIVE";
|
55
53
|
})(Status || (exports.Status = Status = {}));
|
56
54
|
var WebhookIdentityType;
|
package/build/cjs/src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js","sourceRoot":"","sources":["../../../src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,0JAA4I;
|
1
|
+
{"version":3,"file":"emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.js","sourceRoot":"","sources":["../../../src/emailsubscriptions-v1-emailsubscription-email-subscriptions.universal.ts"],"names":[],"mappings":"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"}
|