@wix/auto_sdk_payments_dispute-history-records 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/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.d.ts +96 -21
- package/build/cjs/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.js.map +1 -1
- package/build/cjs/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.d.ts +96 -21
- package/build/cjs/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.js.map +1 -1
- package/build/es/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.d.ts +96 -21
- package/build/es/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.js.map +1 -1
- package/build/es/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.d.ts +96 -21
- package/build/es/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.js.map +1 -1
- package/build/internal/cjs/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.d.ts +96 -21
- package/build/internal/cjs/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.js.map +1 -1
- package/build/internal/cjs/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.d.ts +96 -21
- package/build/internal/cjs/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.js.map +1 -1
- package/build/internal/es/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.d.ts +96 -21
- package/build/internal/es/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.js.map +1 -1
- package/build/internal/es/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.d.ts +96 -21
- package/build/internal/es/src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
export interface DisputeHistoryRecord {
|
|
3
3
|
/**
|
|
4
4
|
* DisputeHistoryRecord ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
7
|
+
* @immutable
|
|
6
8
|
*/
|
|
7
9
|
id?: string;
|
|
8
10
|
/**
|
|
@@ -13,14 +15,20 @@ export interface DisputeHistoryRecord {
|
|
|
13
15
|
/**
|
|
14
16
|
* Date and time the DisputeHistoryRecord was created.
|
|
15
17
|
* @readonly
|
|
18
|
+
* @immutable
|
|
16
19
|
*/
|
|
17
20
|
createdDate?: Date | null;
|
|
18
21
|
/**
|
|
19
22
|
* Date and time the DisputeHistoryRecord was last updated.
|
|
20
23
|
* @readonly
|
|
24
|
+
* @immutable
|
|
21
25
|
*/
|
|
22
26
|
updatedDate?: Date | null;
|
|
23
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* Dispute ID
|
|
29
|
+
* @format GUID
|
|
30
|
+
* @immutable
|
|
31
|
+
*/
|
|
24
32
|
disputeId?: string;
|
|
25
33
|
/** Dispute stage (RFI, Chargeback, so on) */
|
|
26
34
|
stage?: DisputeStage;
|
|
@@ -29,6 +37,7 @@ export interface DisputeHistoryRecord {
|
|
|
29
37
|
/**
|
|
30
38
|
* Due Date
|
|
31
39
|
* @readonly
|
|
40
|
+
* @immutable
|
|
32
41
|
*/
|
|
33
42
|
dueDate?: Date | null;
|
|
34
43
|
/** Data Extensions */
|
|
@@ -97,11 +106,18 @@ export interface Tags {
|
|
|
97
106
|
tags?: TagList;
|
|
98
107
|
}
|
|
99
108
|
export interface TagList {
|
|
100
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* List of tag IDs
|
|
111
|
+
* @maxSize 100
|
|
112
|
+
* @maxLength 5
|
|
113
|
+
*/
|
|
101
114
|
tagIds?: string[];
|
|
102
115
|
}
|
|
103
116
|
export interface GetDisputeHistoryRecordRequest {
|
|
104
|
-
/**
|
|
117
|
+
/**
|
|
118
|
+
* ID of the DisputeHistoryRecord to retrieve.
|
|
119
|
+
* @format GUID
|
|
120
|
+
*/
|
|
105
121
|
disputeHistoryRecordId: string;
|
|
106
122
|
}
|
|
107
123
|
export interface GetDisputeHistoryRecordResponse {
|
|
@@ -127,6 +143,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
127
143
|
/**
|
|
128
144
|
* Sort object in the following format:
|
|
129
145
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
146
|
+
* @maxSize 5
|
|
130
147
|
*/
|
|
131
148
|
sort?: Sorting[];
|
|
132
149
|
}
|
|
@@ -136,7 +153,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
136
153
|
cursorPaging?: CursorPaging;
|
|
137
154
|
}
|
|
138
155
|
export interface Sorting {
|
|
139
|
-
/**
|
|
156
|
+
/**
|
|
157
|
+
* Name of the field to sort by.
|
|
158
|
+
* @maxLength 512
|
|
159
|
+
*/
|
|
140
160
|
fieldName?: string;
|
|
141
161
|
/** Sort order. */
|
|
142
162
|
order?: SortOrder;
|
|
@@ -146,13 +166,17 @@ export declare enum SortOrder {
|
|
|
146
166
|
DESC = "DESC"
|
|
147
167
|
}
|
|
148
168
|
export interface CursorPaging {
|
|
149
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* Maximum number of items to return in the results.
|
|
171
|
+
* @max 100
|
|
172
|
+
*/
|
|
150
173
|
limit?: number | null;
|
|
151
174
|
/**
|
|
152
175
|
* Pointer to the next or previous page in the list of results.
|
|
153
176
|
*
|
|
154
177
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
155
178
|
* Not relevant for the first request.
|
|
179
|
+
* @maxLength 16000
|
|
156
180
|
*/
|
|
157
181
|
cursor?: string | null;
|
|
158
182
|
}
|
|
@@ -176,9 +200,15 @@ export interface CursorPagingMetadata {
|
|
|
176
200
|
hasNext?: boolean | null;
|
|
177
201
|
}
|
|
178
202
|
export interface Cursors {
|
|
179
|
-
/**
|
|
203
|
+
/**
|
|
204
|
+
* Cursor string pointing to the next page in the list of results.
|
|
205
|
+
* @maxLength 16000
|
|
206
|
+
*/
|
|
180
207
|
next?: string | null;
|
|
181
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* Cursor pointing to the previous page in the list of results.
|
|
210
|
+
* @maxLength 16000
|
|
211
|
+
*/
|
|
182
212
|
prev?: string | null;
|
|
183
213
|
}
|
|
184
214
|
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
@@ -256,7 +286,12 @@ export interface ActionEvent {
|
|
|
256
286
|
export interface Empty {
|
|
257
287
|
}
|
|
258
288
|
export interface BulkUpdateDisputeHistoryRecordTagsRequest {
|
|
259
|
-
/**
|
|
289
|
+
/**
|
|
290
|
+
* List of NileProtoTagsEntities that their tags will update.
|
|
291
|
+
* @minSize 1
|
|
292
|
+
* @maxSize 100
|
|
293
|
+
* @format GUID
|
|
294
|
+
*/
|
|
260
295
|
ids: string[];
|
|
261
296
|
/** List of Tags to assign */
|
|
262
297
|
assignTags?: Tags;
|
|
@@ -264,13 +299,20 @@ export interface BulkUpdateDisputeHistoryRecordTagsRequest {
|
|
|
264
299
|
unassignTags?: Tags;
|
|
265
300
|
}
|
|
266
301
|
export interface BulkUpdateDisputeHistoryRecordTagsResponse {
|
|
267
|
-
/**
|
|
302
|
+
/**
|
|
303
|
+
* Results
|
|
304
|
+
* @minSize 1
|
|
305
|
+
* @maxSize 100
|
|
306
|
+
*/
|
|
268
307
|
results?: BulkUpdateDisputeHistoryRecordTagsResult[];
|
|
269
308
|
/** Metadata regarding the bulk update operation */
|
|
270
309
|
bulkActionMetadata?: BulkActionMetadata;
|
|
271
310
|
}
|
|
272
311
|
export interface ItemMetadata {
|
|
273
|
-
/**
|
|
312
|
+
/**
|
|
313
|
+
* Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).
|
|
314
|
+
* @format GUID
|
|
315
|
+
*/
|
|
274
316
|
id?: string | null;
|
|
275
317
|
/** Index of the item within the request array. Allows for correlation between request and response items. */
|
|
276
318
|
originalIndex?: number;
|
|
@@ -308,13 +350,22 @@ export interface BulkUpdateDisputeHistoryRecordTagsByFilterRequest {
|
|
|
308
350
|
unassignTags?: Tags;
|
|
309
351
|
}
|
|
310
352
|
export interface BulkUpdateDisputeHistoryRecordTagsByFilterResponse {
|
|
311
|
-
/**
|
|
353
|
+
/**
|
|
354
|
+
* Job ID
|
|
355
|
+
* @format GUID
|
|
356
|
+
*/
|
|
312
357
|
jobId?: string;
|
|
313
358
|
}
|
|
314
359
|
export interface MessageEnvelope {
|
|
315
|
-
/**
|
|
360
|
+
/**
|
|
361
|
+
* App instance ID.
|
|
362
|
+
* @format GUID
|
|
363
|
+
*/
|
|
316
364
|
instanceId?: string | null;
|
|
317
|
-
/**
|
|
365
|
+
/**
|
|
366
|
+
* Event type.
|
|
367
|
+
* @maxLength 150
|
|
368
|
+
*/
|
|
318
369
|
eventType?: string;
|
|
319
370
|
/** The identification type and identity data. */
|
|
320
371
|
identity?: IdentificationData;
|
|
@@ -322,26 +373,50 @@ export interface MessageEnvelope {
|
|
|
322
373
|
data?: string;
|
|
323
374
|
}
|
|
324
375
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
325
|
-
/**
|
|
376
|
+
/**
|
|
377
|
+
* ID of a site visitor that has not logged in to the site.
|
|
378
|
+
* @format GUID
|
|
379
|
+
*/
|
|
326
380
|
anonymousVisitorId?: string;
|
|
327
|
-
/**
|
|
381
|
+
/**
|
|
382
|
+
* ID of a site visitor that has logged in to the site.
|
|
383
|
+
* @format GUID
|
|
384
|
+
*/
|
|
328
385
|
memberId?: string;
|
|
329
|
-
/**
|
|
386
|
+
/**
|
|
387
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
388
|
+
* @format GUID
|
|
389
|
+
*/
|
|
330
390
|
wixUserId?: string;
|
|
331
|
-
/**
|
|
391
|
+
/**
|
|
392
|
+
* ID of an app.
|
|
393
|
+
* @format GUID
|
|
394
|
+
*/
|
|
332
395
|
appId?: string;
|
|
333
396
|
/** @readonly */
|
|
334
397
|
identityType?: WebhookIdentityType;
|
|
335
398
|
}
|
|
336
399
|
/** @oneof */
|
|
337
400
|
export interface IdentificationDataIdOneOf {
|
|
338
|
-
/**
|
|
401
|
+
/**
|
|
402
|
+
* ID of a site visitor that has not logged in to the site.
|
|
403
|
+
* @format GUID
|
|
404
|
+
*/
|
|
339
405
|
anonymousVisitorId?: string;
|
|
340
|
-
/**
|
|
406
|
+
/**
|
|
407
|
+
* ID of a site visitor that has logged in to the site.
|
|
408
|
+
* @format GUID
|
|
409
|
+
*/
|
|
341
410
|
memberId?: string;
|
|
342
|
-
/**
|
|
411
|
+
/**
|
|
412
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
413
|
+
* @format GUID
|
|
414
|
+
*/
|
|
343
415
|
wixUserId?: string;
|
|
344
|
-
/**
|
|
416
|
+
/**
|
|
417
|
+
* ID of an app.
|
|
418
|
+
* @format GUID
|
|
419
|
+
*/
|
|
345
420
|
appId?: string;
|
|
346
421
|
}
|
|
347
422
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.js","sourceRoot":"","sources":["../../../src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.js","sourceRoot":"","sources":["../../../src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.types.ts"],"names":[],"mappings":";;;AAgDA,IAAY,YAQX;AARD,WAAY,YAAY;IACtB,6DAA6C,CAAA;IAC7C,iEAAiE;IACjE,+DAA+C,CAAA;IAC/C,wCAAwC;IACxC,2BAAW,CAAA;IACX,iBAAiB;IACjB,yCAAyB,CAAA;AAC3B,CAAC,EARW,YAAY,4BAAZ,YAAY,QAQvB;AAED,IAAY,aAaX;AAbD,WAAY,aAAa;IACvB,qBAAqB;IACrB,kEAAiD,CAAA;IACjD,uCAAuC;IACvC,sDAAqC,CAAA;IACrC,mFAAmF;IACnF,8CAA6B,CAAA;IAC7B,oCAAoC;IACpC,gDAA+B,CAAA;IAC/B,kBAAkB;IAClB,4BAAW,CAAA;IACX,mBAAmB;IACnB,8BAAa,CAAA;AACf,CAAC,EAbW,aAAa,6BAAb,aAAa,QAaxB;AAwGD,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAsRD,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"}
|
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
export interface DisputeHistoryRecord {
|
|
3
3
|
/**
|
|
4
4
|
* DisputeHistoryRecord ID.
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
7
|
+
* @immutable
|
|
6
8
|
*/
|
|
7
9
|
_id?: string;
|
|
8
10
|
/**
|
|
@@ -13,14 +15,20 @@ export interface DisputeHistoryRecord {
|
|
|
13
15
|
/**
|
|
14
16
|
* Date and time the DisputeHistoryRecord was created.
|
|
15
17
|
* @readonly
|
|
18
|
+
* @immutable
|
|
16
19
|
*/
|
|
17
20
|
_createdDate?: Date | null;
|
|
18
21
|
/**
|
|
19
22
|
* Date and time the DisputeHistoryRecord was last updated.
|
|
20
23
|
* @readonly
|
|
24
|
+
* @immutable
|
|
21
25
|
*/
|
|
22
26
|
_updatedDate?: Date | null;
|
|
23
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* Dispute ID
|
|
29
|
+
* @format GUID
|
|
30
|
+
* @immutable
|
|
31
|
+
*/
|
|
24
32
|
disputeId?: string;
|
|
25
33
|
/** Dispute stage (RFI, Chargeback, so on) */
|
|
26
34
|
stage?: DisputeStage;
|
|
@@ -29,6 +37,7 @@ export interface DisputeHistoryRecord {
|
|
|
29
37
|
/**
|
|
30
38
|
* Due Date
|
|
31
39
|
* @readonly
|
|
40
|
+
* @immutable
|
|
32
41
|
*/
|
|
33
42
|
dueDate?: Date | null;
|
|
34
43
|
/** Data Extensions */
|
|
@@ -97,11 +106,18 @@ export interface Tags {
|
|
|
97
106
|
tags?: TagList;
|
|
98
107
|
}
|
|
99
108
|
export interface TagList {
|
|
100
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* List of tag IDs
|
|
111
|
+
* @maxSize 100
|
|
112
|
+
* @maxLength 5
|
|
113
|
+
*/
|
|
101
114
|
tagIds?: string[];
|
|
102
115
|
}
|
|
103
116
|
export interface GetDisputeHistoryRecordRequest {
|
|
104
|
-
/**
|
|
117
|
+
/**
|
|
118
|
+
* ID of the DisputeHistoryRecord to retrieve.
|
|
119
|
+
* @format GUID
|
|
120
|
+
*/
|
|
105
121
|
disputeHistoryRecordId: string;
|
|
106
122
|
}
|
|
107
123
|
export interface GetDisputeHistoryRecordResponse {
|
|
@@ -127,6 +143,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
127
143
|
/**
|
|
128
144
|
* Sort object in the following format:
|
|
129
145
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
146
|
+
* @maxSize 5
|
|
130
147
|
*/
|
|
131
148
|
sort?: Sorting[];
|
|
132
149
|
}
|
|
@@ -136,7 +153,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
136
153
|
cursorPaging?: CursorPaging;
|
|
137
154
|
}
|
|
138
155
|
export interface Sorting {
|
|
139
|
-
/**
|
|
156
|
+
/**
|
|
157
|
+
* Name of the field to sort by.
|
|
158
|
+
* @maxLength 512
|
|
159
|
+
*/
|
|
140
160
|
fieldName?: string;
|
|
141
161
|
/** Sort order. */
|
|
142
162
|
order?: SortOrder;
|
|
@@ -146,13 +166,17 @@ export declare enum SortOrder {
|
|
|
146
166
|
DESC = "DESC"
|
|
147
167
|
}
|
|
148
168
|
export interface CursorPaging {
|
|
149
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* Maximum number of items to return in the results.
|
|
171
|
+
* @max 100
|
|
172
|
+
*/
|
|
150
173
|
limit?: number | null;
|
|
151
174
|
/**
|
|
152
175
|
* Pointer to the next or previous page in the list of results.
|
|
153
176
|
*
|
|
154
177
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
155
178
|
* Not relevant for the first request.
|
|
179
|
+
* @maxLength 16000
|
|
156
180
|
*/
|
|
157
181
|
cursor?: string | null;
|
|
158
182
|
}
|
|
@@ -176,9 +200,15 @@ export interface CursorPagingMetadata {
|
|
|
176
200
|
hasNext?: boolean | null;
|
|
177
201
|
}
|
|
178
202
|
export interface Cursors {
|
|
179
|
-
/**
|
|
203
|
+
/**
|
|
204
|
+
* Cursor string pointing to the next page in the list of results.
|
|
205
|
+
* @maxLength 16000
|
|
206
|
+
*/
|
|
180
207
|
next?: string | null;
|
|
181
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* Cursor pointing to the previous page in the list of results.
|
|
210
|
+
* @maxLength 16000
|
|
211
|
+
*/
|
|
182
212
|
prev?: string | null;
|
|
183
213
|
}
|
|
184
214
|
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
@@ -254,7 +284,12 @@ export interface ActionEvent {
|
|
|
254
284
|
export interface Empty {
|
|
255
285
|
}
|
|
256
286
|
export interface BulkUpdateDisputeHistoryRecordTagsRequest {
|
|
257
|
-
/**
|
|
287
|
+
/**
|
|
288
|
+
* List of NileProtoTagsEntities that their tags will update.
|
|
289
|
+
* @minSize 1
|
|
290
|
+
* @maxSize 100
|
|
291
|
+
* @format GUID
|
|
292
|
+
*/
|
|
258
293
|
ids: string[];
|
|
259
294
|
/** List of Tags to assign */
|
|
260
295
|
assignTags?: Tags;
|
|
@@ -262,13 +297,20 @@ export interface BulkUpdateDisputeHistoryRecordTagsRequest {
|
|
|
262
297
|
unassignTags?: Tags;
|
|
263
298
|
}
|
|
264
299
|
export interface BulkUpdateDisputeHistoryRecordTagsResponse {
|
|
265
|
-
/**
|
|
300
|
+
/**
|
|
301
|
+
* Results
|
|
302
|
+
* @minSize 1
|
|
303
|
+
* @maxSize 100
|
|
304
|
+
*/
|
|
266
305
|
results?: BulkUpdateDisputeHistoryRecordTagsResult[];
|
|
267
306
|
/** Metadata regarding the bulk update operation */
|
|
268
307
|
bulkActionMetadata?: BulkActionMetadata;
|
|
269
308
|
}
|
|
270
309
|
export interface ItemMetadata {
|
|
271
|
-
/**
|
|
310
|
+
/**
|
|
311
|
+
* Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).
|
|
312
|
+
* @format GUID
|
|
313
|
+
*/
|
|
272
314
|
_id?: string | null;
|
|
273
315
|
/** Index of the item within the request array. Allows for correlation between request and response items. */
|
|
274
316
|
originalIndex?: number;
|
|
@@ -306,13 +348,22 @@ export interface BulkUpdateDisputeHistoryRecordTagsByFilterRequest {
|
|
|
306
348
|
unassignTags?: Tags;
|
|
307
349
|
}
|
|
308
350
|
export interface BulkUpdateDisputeHistoryRecordTagsByFilterResponse {
|
|
309
|
-
/**
|
|
351
|
+
/**
|
|
352
|
+
* Job ID
|
|
353
|
+
* @format GUID
|
|
354
|
+
*/
|
|
310
355
|
jobId?: string;
|
|
311
356
|
}
|
|
312
357
|
export interface MessageEnvelope {
|
|
313
|
-
/**
|
|
358
|
+
/**
|
|
359
|
+
* App instance ID.
|
|
360
|
+
* @format GUID
|
|
361
|
+
*/
|
|
314
362
|
instanceId?: string | null;
|
|
315
|
-
/**
|
|
363
|
+
/**
|
|
364
|
+
* Event type.
|
|
365
|
+
* @maxLength 150
|
|
366
|
+
*/
|
|
316
367
|
eventType?: string;
|
|
317
368
|
/** The identification type and identity data. */
|
|
318
369
|
identity?: IdentificationData;
|
|
@@ -320,26 +371,50 @@ export interface MessageEnvelope {
|
|
|
320
371
|
data?: string;
|
|
321
372
|
}
|
|
322
373
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
323
|
-
/**
|
|
374
|
+
/**
|
|
375
|
+
* ID of a site visitor that has not logged in to the site.
|
|
376
|
+
* @format GUID
|
|
377
|
+
*/
|
|
324
378
|
anonymousVisitorId?: string;
|
|
325
|
-
/**
|
|
379
|
+
/**
|
|
380
|
+
* ID of a site visitor that has logged in to the site.
|
|
381
|
+
* @format GUID
|
|
382
|
+
*/
|
|
326
383
|
memberId?: string;
|
|
327
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
386
|
+
* @format GUID
|
|
387
|
+
*/
|
|
328
388
|
wixUserId?: string;
|
|
329
|
-
/**
|
|
389
|
+
/**
|
|
390
|
+
* ID of an app.
|
|
391
|
+
* @format GUID
|
|
392
|
+
*/
|
|
330
393
|
appId?: string;
|
|
331
394
|
/** @readonly */
|
|
332
395
|
identityType?: WebhookIdentityType;
|
|
333
396
|
}
|
|
334
397
|
/** @oneof */
|
|
335
398
|
export interface IdentificationDataIdOneOf {
|
|
336
|
-
/**
|
|
399
|
+
/**
|
|
400
|
+
* ID of a site visitor that has not logged in to the site.
|
|
401
|
+
* @format GUID
|
|
402
|
+
*/
|
|
337
403
|
anonymousVisitorId?: string;
|
|
338
|
-
/**
|
|
404
|
+
/**
|
|
405
|
+
* ID of a site visitor that has logged in to the site.
|
|
406
|
+
* @format GUID
|
|
407
|
+
*/
|
|
339
408
|
memberId?: string;
|
|
340
|
-
/**
|
|
409
|
+
/**
|
|
410
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
411
|
+
* @format GUID
|
|
412
|
+
*/
|
|
341
413
|
wixUserId?: string;
|
|
342
|
-
/**
|
|
414
|
+
/**
|
|
415
|
+
* ID of an app.
|
|
416
|
+
* @format GUID
|
|
417
|
+
*/
|
|
343
418
|
appId?: string;
|
|
344
419
|
}
|
|
345
420
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.js","sourceRoot":"","sources":["../../../src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,+LAAiL;
|
|
1
|
+
{"version":3,"file":"payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.js","sourceRoot":"","sources":["../../../src/payments-dispute-history-records-v1-dispute-history-record-dispute-history-records.universal.ts"],"names":[],"mappings":"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"}
|