@wix/auto_sdk_payments_payins-configurations 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/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.d.ts +106 -24
- package/build/cjs/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.js.map +1 -1
- package/build/cjs/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.d.ts +118 -26
- package/build/cjs/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.js.map +1 -1
- package/build/es/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.d.ts +106 -24
- package/build/es/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.js.map +1 -1
- package/build/es/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.d.ts +118 -26
- package/build/es/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.js.map +1 -1
- package/build/internal/cjs/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.d.ts +106 -24
- package/build/internal/cjs/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.js.map +1 -1
- package/build/internal/cjs/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.d.ts +118 -26
- package/build/internal/cjs/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.js.map +1 -1
- package/build/internal/es/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.d.ts +106 -24
- package/build/internal/es/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.js.map +1 -1
- package/build/internal/es/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.d.ts +118 -26
- package/build/internal/es/src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.js.map +1 -1
- package/package.json +4 -4
|
@@ -2,12 +2,21 @@
|
|
|
2
2
|
export interface PayinsConfiguration {
|
|
3
3
|
/**
|
|
4
4
|
* id
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
7
|
+
* @immutable
|
|
6
8
|
*/
|
|
7
9
|
id?: string | null;
|
|
8
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* app_id
|
|
12
|
+
* @format GUID
|
|
13
|
+
* @immutable
|
|
14
|
+
*/
|
|
9
15
|
appId?: string | null;
|
|
10
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* rules
|
|
18
|
+
* @maxSize 1000
|
|
19
|
+
*/
|
|
11
20
|
rules?: PayinsRule[];
|
|
12
21
|
/**
|
|
13
22
|
* revision
|
|
@@ -17,6 +26,7 @@ export interface PayinsConfiguration {
|
|
|
17
26
|
/**
|
|
18
27
|
* Date when PayinsConfiguration was created
|
|
19
28
|
* @readonly
|
|
29
|
+
* @immutable
|
|
20
30
|
*/
|
|
21
31
|
createdDate?: Date | null;
|
|
22
32
|
/**
|
|
@@ -30,9 +40,15 @@ export interface PayinsConfiguration {
|
|
|
30
40
|
tags?: Tags;
|
|
31
41
|
}
|
|
32
42
|
export interface PayinsRule {
|
|
33
|
-
/**
|
|
43
|
+
/**
|
|
44
|
+
* payment_method_type_id
|
|
45
|
+
* @format GUID
|
|
46
|
+
*/
|
|
34
47
|
paymentMethodTypeId?: string;
|
|
35
|
-
/**
|
|
48
|
+
/**
|
|
49
|
+
* account_connection_id
|
|
50
|
+
* @format GUID
|
|
51
|
+
*/
|
|
36
52
|
accountConnectionId?: string;
|
|
37
53
|
/** merchant_selection */
|
|
38
54
|
merchantSelection?: MerchantSelection;
|
|
@@ -59,7 +75,11 @@ export interface Tags {
|
|
|
59
75
|
tags?: TagList;
|
|
60
76
|
}
|
|
61
77
|
export interface TagList {
|
|
62
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* List of tag IDs
|
|
80
|
+
* @maxSize 100
|
|
81
|
+
* @maxLength 5
|
|
82
|
+
*/
|
|
63
83
|
tagIds?: string[];
|
|
64
84
|
}
|
|
65
85
|
export interface CreatePayinsConfigurationRequest {
|
|
@@ -71,7 +91,10 @@ export interface CreatePayinsConfigurationResponse {
|
|
|
71
91
|
payinsConfiguration?: PayinsConfiguration;
|
|
72
92
|
}
|
|
73
93
|
export interface GetPayinsConfigurationRequest {
|
|
74
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* ID of the PayinsConfiguration to retrieve.
|
|
96
|
+
* @format GUID
|
|
97
|
+
*/
|
|
75
98
|
payinsConfigurationId: string;
|
|
76
99
|
}
|
|
77
100
|
export interface GetPayinsConfigurationResponse {
|
|
@@ -105,6 +128,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
105
128
|
/**
|
|
106
129
|
* Sort object in the following format:
|
|
107
130
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
131
|
+
* @maxSize 5
|
|
108
132
|
*/
|
|
109
133
|
sort?: Sorting[];
|
|
110
134
|
}
|
|
@@ -114,7 +138,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
114
138
|
cursorPaging?: CursorPaging;
|
|
115
139
|
}
|
|
116
140
|
export interface Sorting {
|
|
117
|
-
/**
|
|
141
|
+
/**
|
|
142
|
+
* Name of the field to sort by.
|
|
143
|
+
* @maxLength 512
|
|
144
|
+
*/
|
|
118
145
|
fieldName?: string;
|
|
119
146
|
/** Sort order. */
|
|
120
147
|
order?: SortOrder;
|
|
@@ -124,13 +151,17 @@ export declare enum SortOrder {
|
|
|
124
151
|
DESC = "DESC"
|
|
125
152
|
}
|
|
126
153
|
export interface CursorPaging {
|
|
127
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* Maximum number of items to return in the results.
|
|
156
|
+
* @max 100
|
|
157
|
+
*/
|
|
128
158
|
limit?: number | null;
|
|
129
159
|
/**
|
|
130
160
|
* Pointer to the next or previous page in the list of results.
|
|
131
161
|
*
|
|
132
162
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
133
163
|
* Not relevant for the first request.
|
|
164
|
+
* @maxLength 16000
|
|
134
165
|
*/
|
|
135
166
|
cursor?: string | null;
|
|
136
167
|
}
|
|
@@ -154,13 +185,24 @@ export interface CursorPagingMetadata {
|
|
|
154
185
|
hasNext?: boolean | null;
|
|
155
186
|
}
|
|
156
187
|
export interface Cursors {
|
|
157
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* Cursor string pointing to the next page in the list of results.
|
|
190
|
+
* @maxLength 16000
|
|
191
|
+
*/
|
|
158
192
|
next?: string | null;
|
|
159
|
-
/**
|
|
193
|
+
/**
|
|
194
|
+
* Cursor pointing to the previous page in the list of results.
|
|
195
|
+
* @maxLength 16000
|
|
196
|
+
*/
|
|
160
197
|
prev?: string | null;
|
|
161
198
|
}
|
|
162
199
|
export interface BulkUpdatePayinsConfigurationTagsRequest {
|
|
163
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* List of PayinsConfigurations that their tags will update.
|
|
202
|
+
* @minSize 1
|
|
203
|
+
* @maxSize 100
|
|
204
|
+
* @format GUID
|
|
205
|
+
*/
|
|
164
206
|
ids: string[];
|
|
165
207
|
/** List of Tags to assign */
|
|
166
208
|
assignTags: Tags;
|
|
@@ -168,13 +210,20 @@ export interface BulkUpdatePayinsConfigurationTagsRequest {
|
|
|
168
210
|
unassignTags?: Tags;
|
|
169
211
|
}
|
|
170
212
|
export interface BulkUpdatePayinsConfigurationTagsResponse {
|
|
171
|
-
/**
|
|
213
|
+
/**
|
|
214
|
+
* Results
|
|
215
|
+
* @minSize 1
|
|
216
|
+
* @maxSize 100
|
|
217
|
+
*/
|
|
172
218
|
results?: BulkUpdatePayinsConfigurationTagsResult[];
|
|
173
219
|
/** Metadata regarding the bulk update operation */
|
|
174
220
|
bulkActionMetadata?: BulkActionMetadata;
|
|
175
221
|
}
|
|
176
222
|
export interface ItemMetadata {
|
|
177
|
-
/**
|
|
223
|
+
/**
|
|
224
|
+
* Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).
|
|
225
|
+
* @format GUID
|
|
226
|
+
*/
|
|
178
227
|
id?: string | null;
|
|
179
228
|
/** Index of the item within the request array. Allows for correlation between request and response items. */
|
|
180
229
|
originalIndex?: number;
|
|
@@ -212,7 +261,10 @@ export interface BulkUpdatePayinsConfigurationTagsByFilterRequest {
|
|
|
212
261
|
unassignTags?: Tags;
|
|
213
262
|
}
|
|
214
263
|
export interface BulkUpdatePayinsConfigurationTagsByFilterResponse {
|
|
215
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* Job ID
|
|
266
|
+
* @format GUID
|
|
267
|
+
*/
|
|
216
268
|
jobId?: string;
|
|
217
269
|
}
|
|
218
270
|
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
@@ -288,9 +340,15 @@ export interface ActionEvent {
|
|
|
288
340
|
bodyAsJson?: string;
|
|
289
341
|
}
|
|
290
342
|
export interface MessageEnvelope {
|
|
291
|
-
/**
|
|
343
|
+
/**
|
|
344
|
+
* App instance ID.
|
|
345
|
+
* @format GUID
|
|
346
|
+
*/
|
|
292
347
|
instanceId?: string | null;
|
|
293
|
-
/**
|
|
348
|
+
/**
|
|
349
|
+
* Event type.
|
|
350
|
+
* @maxLength 150
|
|
351
|
+
*/
|
|
294
352
|
eventType?: string;
|
|
295
353
|
/** The identification type and identity data. */
|
|
296
354
|
identity?: IdentificationData;
|
|
@@ -298,26 +356,50 @@ export interface MessageEnvelope {
|
|
|
298
356
|
data?: string;
|
|
299
357
|
}
|
|
300
358
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
301
|
-
/**
|
|
359
|
+
/**
|
|
360
|
+
* ID of a site visitor that has not logged in to the site.
|
|
361
|
+
* @format GUID
|
|
362
|
+
*/
|
|
302
363
|
anonymousVisitorId?: string;
|
|
303
|
-
/**
|
|
364
|
+
/**
|
|
365
|
+
* ID of a site visitor that has logged in to the site.
|
|
366
|
+
* @format GUID
|
|
367
|
+
*/
|
|
304
368
|
memberId?: string;
|
|
305
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
371
|
+
* @format GUID
|
|
372
|
+
*/
|
|
306
373
|
wixUserId?: string;
|
|
307
|
-
/**
|
|
374
|
+
/**
|
|
375
|
+
* ID of an app.
|
|
376
|
+
* @format GUID
|
|
377
|
+
*/
|
|
308
378
|
appId?: string;
|
|
309
379
|
/** @readonly */
|
|
310
380
|
identityType?: WebhookIdentityType;
|
|
311
381
|
}
|
|
312
382
|
/** @oneof */
|
|
313
383
|
export interface IdentificationDataIdOneOf {
|
|
314
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* ID of a site visitor that has not logged in to the site.
|
|
386
|
+
* @format GUID
|
|
387
|
+
*/
|
|
315
388
|
anonymousVisitorId?: string;
|
|
316
|
-
/**
|
|
389
|
+
/**
|
|
390
|
+
* ID of a site visitor that has logged in to the site.
|
|
391
|
+
* @format GUID
|
|
392
|
+
*/
|
|
317
393
|
memberId?: string;
|
|
318
|
-
/**
|
|
394
|
+
/**
|
|
395
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
396
|
+
* @format GUID
|
|
397
|
+
*/
|
|
319
398
|
wixUserId?: string;
|
|
320
|
-
/**
|
|
399
|
+
/**
|
|
400
|
+
* ID of an app.
|
|
401
|
+
* @format GUID
|
|
402
|
+
*/
|
|
321
403
|
appId?: string;
|
|
322
404
|
}
|
|
323
405
|
export declare enum WebhookIdentityType {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payments-payins-configurations-v1-payins-configuration-payins-configurations.types.js","sourceRoot":"","sources":["../../../src/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"payments-payins-configurations-v1-payins-configuration-payins-configurations.types.js","sourceRoot":"","sources":["../../../src/payments-payins-configurations-v1-payins-configuration-payins-configurations.types.ts"],"names":[],"mappings":";;;AAoKA,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,yBAAT,SAAS,QAGpB;AAoRD,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,12 +2,21 @@
|
|
|
2
2
|
export interface PayinsConfiguration {
|
|
3
3
|
/**
|
|
4
4
|
* id
|
|
5
|
+
* @format GUID
|
|
5
6
|
* @readonly
|
|
7
|
+
* @immutable
|
|
6
8
|
*/
|
|
7
9
|
_id?: string | null;
|
|
8
|
-
/**
|
|
10
|
+
/**
|
|
11
|
+
* app_id
|
|
12
|
+
* @format GUID
|
|
13
|
+
* @immutable
|
|
14
|
+
*/
|
|
9
15
|
appId?: string | null;
|
|
10
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* rules
|
|
18
|
+
* @maxSize 1000
|
|
19
|
+
*/
|
|
11
20
|
rules?: PayinsRule[];
|
|
12
21
|
/**
|
|
13
22
|
* revision
|
|
@@ -17,6 +26,7 @@ export interface PayinsConfiguration {
|
|
|
17
26
|
/**
|
|
18
27
|
* Date when PayinsConfiguration was created
|
|
19
28
|
* @readonly
|
|
29
|
+
* @immutable
|
|
20
30
|
*/
|
|
21
31
|
_createdDate?: Date | null;
|
|
22
32
|
/**
|
|
@@ -30,9 +40,15 @@ export interface PayinsConfiguration {
|
|
|
30
40
|
tags?: Tags;
|
|
31
41
|
}
|
|
32
42
|
export interface PayinsRule {
|
|
33
|
-
/**
|
|
43
|
+
/**
|
|
44
|
+
* payment_method_type_id
|
|
45
|
+
* @format GUID
|
|
46
|
+
*/
|
|
34
47
|
paymentMethodTypeId?: string;
|
|
35
|
-
/**
|
|
48
|
+
/**
|
|
49
|
+
* account_connection_id
|
|
50
|
+
* @format GUID
|
|
51
|
+
*/
|
|
36
52
|
accountConnectionId?: string;
|
|
37
53
|
/** merchant_selection */
|
|
38
54
|
merchantSelection?: MerchantSelection;
|
|
@@ -59,7 +75,11 @@ export interface Tags {
|
|
|
59
75
|
tags?: TagList;
|
|
60
76
|
}
|
|
61
77
|
export interface TagList {
|
|
62
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* List of tag IDs
|
|
80
|
+
* @maxSize 100
|
|
81
|
+
* @maxLength 5
|
|
82
|
+
*/
|
|
63
83
|
tagIds?: string[];
|
|
64
84
|
}
|
|
65
85
|
export interface CreatePayinsConfigurationRequest {
|
|
@@ -71,7 +91,10 @@ export interface CreatePayinsConfigurationResponse {
|
|
|
71
91
|
payinsConfiguration?: PayinsConfiguration;
|
|
72
92
|
}
|
|
73
93
|
export interface GetPayinsConfigurationRequest {
|
|
74
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* ID of the PayinsConfiguration to retrieve.
|
|
96
|
+
* @format GUID
|
|
97
|
+
*/
|
|
75
98
|
payinsConfigurationId: string;
|
|
76
99
|
}
|
|
77
100
|
export interface GetPayinsConfigurationResponse {
|
|
@@ -105,6 +128,7 @@ export interface CursorQuery extends CursorQueryPagingMethodOneOf {
|
|
|
105
128
|
/**
|
|
106
129
|
* Sort object in the following format:
|
|
107
130
|
* `[{"fieldName":"sortField1","order":"ASC"},{"fieldName":"sortField2","order":"DESC"}]`
|
|
131
|
+
* @maxSize 5
|
|
108
132
|
*/
|
|
109
133
|
sort?: Sorting[];
|
|
110
134
|
}
|
|
@@ -114,7 +138,10 @@ export interface CursorQueryPagingMethodOneOf {
|
|
|
114
138
|
cursorPaging?: CursorPaging;
|
|
115
139
|
}
|
|
116
140
|
export interface Sorting {
|
|
117
|
-
/**
|
|
141
|
+
/**
|
|
142
|
+
* Name of the field to sort by.
|
|
143
|
+
* @maxLength 512
|
|
144
|
+
*/
|
|
118
145
|
fieldName?: string;
|
|
119
146
|
/** Sort order. */
|
|
120
147
|
order?: SortOrder;
|
|
@@ -124,13 +151,17 @@ export declare enum SortOrder {
|
|
|
124
151
|
DESC = "DESC"
|
|
125
152
|
}
|
|
126
153
|
export interface CursorPaging {
|
|
127
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* Maximum number of items to return in the results.
|
|
156
|
+
* @max 100
|
|
157
|
+
*/
|
|
128
158
|
limit?: number | null;
|
|
129
159
|
/**
|
|
130
160
|
* Pointer to the next or previous page in the list of results.
|
|
131
161
|
*
|
|
132
162
|
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
133
163
|
* Not relevant for the first request.
|
|
164
|
+
* @maxLength 16000
|
|
134
165
|
*/
|
|
135
166
|
cursor?: string | null;
|
|
136
167
|
}
|
|
@@ -154,13 +185,24 @@ export interface CursorPagingMetadata {
|
|
|
154
185
|
hasNext?: boolean | null;
|
|
155
186
|
}
|
|
156
187
|
export interface Cursors {
|
|
157
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* Cursor string pointing to the next page in the list of results.
|
|
190
|
+
* @maxLength 16000
|
|
191
|
+
*/
|
|
158
192
|
next?: string | null;
|
|
159
|
-
/**
|
|
193
|
+
/**
|
|
194
|
+
* Cursor pointing to the previous page in the list of results.
|
|
195
|
+
* @maxLength 16000
|
|
196
|
+
*/
|
|
160
197
|
prev?: string | null;
|
|
161
198
|
}
|
|
162
199
|
export interface BulkUpdatePayinsConfigurationTagsRequest {
|
|
163
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* List of PayinsConfigurations that their tags will update.
|
|
202
|
+
* @minSize 1
|
|
203
|
+
* @maxSize 100
|
|
204
|
+
* @format GUID
|
|
205
|
+
*/
|
|
164
206
|
ids: string[];
|
|
165
207
|
/** List of Tags to assign */
|
|
166
208
|
assignTags: Tags;
|
|
@@ -168,13 +210,20 @@ export interface BulkUpdatePayinsConfigurationTagsRequest {
|
|
|
168
210
|
unassignTags?: Tags;
|
|
169
211
|
}
|
|
170
212
|
export interface BulkUpdatePayinsConfigurationTagsResponse {
|
|
171
|
-
/**
|
|
213
|
+
/**
|
|
214
|
+
* Results
|
|
215
|
+
* @minSize 1
|
|
216
|
+
* @maxSize 100
|
|
217
|
+
*/
|
|
172
218
|
results?: BulkUpdatePayinsConfigurationTagsResult[];
|
|
173
219
|
/** Metadata regarding the bulk update operation */
|
|
174
220
|
bulkActionMetadata?: BulkActionMetadata;
|
|
175
221
|
}
|
|
176
222
|
export interface ItemMetadata {
|
|
177
|
-
/**
|
|
223
|
+
/**
|
|
224
|
+
* Item ID. Should always be available, unless it's impossible (for example, when failing to create an item).
|
|
225
|
+
* @format GUID
|
|
226
|
+
*/
|
|
178
227
|
_id?: string | null;
|
|
179
228
|
/** Index of the item within the request array. Allows for correlation between request and response items. */
|
|
180
229
|
originalIndex?: number;
|
|
@@ -212,7 +261,10 @@ export interface BulkUpdatePayinsConfigurationTagsByFilterRequest {
|
|
|
212
261
|
unassignTags?: Tags;
|
|
213
262
|
}
|
|
214
263
|
export interface BulkUpdatePayinsConfigurationTagsByFilterResponse {
|
|
215
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* Job ID
|
|
266
|
+
* @format GUID
|
|
267
|
+
*/
|
|
216
268
|
jobId?: string;
|
|
217
269
|
}
|
|
218
270
|
export interface DomainEvent extends DomainEventBodyOneOf {
|
|
@@ -286,9 +338,15 @@ export interface ActionEvent {
|
|
|
286
338
|
body?: string;
|
|
287
339
|
}
|
|
288
340
|
export interface MessageEnvelope {
|
|
289
|
-
/**
|
|
341
|
+
/**
|
|
342
|
+
* App instance ID.
|
|
343
|
+
* @format GUID
|
|
344
|
+
*/
|
|
290
345
|
instanceId?: string | null;
|
|
291
|
-
/**
|
|
346
|
+
/**
|
|
347
|
+
* Event type.
|
|
348
|
+
* @maxLength 150
|
|
349
|
+
*/
|
|
292
350
|
eventType?: string;
|
|
293
351
|
/** The identification type and identity data. */
|
|
294
352
|
identity?: IdentificationData;
|
|
@@ -296,26 +354,50 @@ export interface MessageEnvelope {
|
|
|
296
354
|
data?: string;
|
|
297
355
|
}
|
|
298
356
|
export interface IdentificationData extends IdentificationDataIdOneOf {
|
|
299
|
-
/**
|
|
357
|
+
/**
|
|
358
|
+
* ID of a site visitor that has not logged in to the site.
|
|
359
|
+
* @format GUID
|
|
360
|
+
*/
|
|
300
361
|
anonymousVisitorId?: string;
|
|
301
|
-
/**
|
|
362
|
+
/**
|
|
363
|
+
* ID of a site visitor that has logged in to the site.
|
|
364
|
+
* @format GUID
|
|
365
|
+
*/
|
|
302
366
|
memberId?: string;
|
|
303
|
-
/**
|
|
367
|
+
/**
|
|
368
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
369
|
+
* @format GUID
|
|
370
|
+
*/
|
|
304
371
|
wixUserId?: string;
|
|
305
|
-
/**
|
|
372
|
+
/**
|
|
373
|
+
* ID of an app.
|
|
374
|
+
* @format GUID
|
|
375
|
+
*/
|
|
306
376
|
appId?: string;
|
|
307
377
|
/** @readonly */
|
|
308
378
|
identityType?: WebhookIdentityType;
|
|
309
379
|
}
|
|
310
380
|
/** @oneof */
|
|
311
381
|
export interface IdentificationDataIdOneOf {
|
|
312
|
-
/**
|
|
382
|
+
/**
|
|
383
|
+
* ID of a site visitor that has not logged in to the site.
|
|
384
|
+
* @format GUID
|
|
385
|
+
*/
|
|
313
386
|
anonymousVisitorId?: string;
|
|
314
|
-
/**
|
|
387
|
+
/**
|
|
388
|
+
* ID of a site visitor that has logged in to the site.
|
|
389
|
+
* @format GUID
|
|
390
|
+
*/
|
|
315
391
|
memberId?: string;
|
|
316
|
-
/**
|
|
392
|
+
/**
|
|
393
|
+
* ID of a Wix user (site owner, contributor, etc.).
|
|
394
|
+
* @format GUID
|
|
395
|
+
*/
|
|
317
396
|
wixUserId?: string;
|
|
318
|
-
/**
|
|
397
|
+
/**
|
|
398
|
+
* ID of an app.
|
|
399
|
+
* @format GUID
|
|
400
|
+
*/
|
|
319
401
|
appId?: string;
|
|
320
402
|
}
|
|
321
403
|
export declare enum WebhookIdentityType {
|
|
@@ -383,12 +465,21 @@ export interface BulkUpdatePayinsConfigurationTagsByFilterResponseNonNullableFie
|
|
|
383
465
|
export interface UpdatePayinsConfiguration {
|
|
384
466
|
/**
|
|
385
467
|
* id
|
|
468
|
+
* @format GUID
|
|
386
469
|
* @readonly
|
|
470
|
+
* @immutable
|
|
387
471
|
*/
|
|
388
472
|
_id?: string | null;
|
|
389
|
-
/**
|
|
473
|
+
/**
|
|
474
|
+
* app_id
|
|
475
|
+
* @format GUID
|
|
476
|
+
* @immutable
|
|
477
|
+
*/
|
|
390
478
|
appId?: string | null;
|
|
391
|
-
/**
|
|
479
|
+
/**
|
|
480
|
+
* rules
|
|
481
|
+
* @maxSize 1000
|
|
482
|
+
*/
|
|
392
483
|
rules?: PayinsRule[];
|
|
393
484
|
/**
|
|
394
485
|
* revision
|
|
@@ -398,6 +489,7 @@ export interface UpdatePayinsConfiguration {
|
|
|
398
489
|
/**
|
|
399
490
|
* Date when PayinsConfiguration was created
|
|
400
491
|
* @readonly
|
|
492
|
+
* @immutable
|
|
401
493
|
*/
|
|
402
494
|
_createdDate?: Date | null;
|
|
403
495
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.js","sourceRoot":"","sources":["../../../src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,kEAA8D;AAC9D,oFAGiD;AAEjD,uLAAyK;
|
|
1
|
+
{"version":3,"file":"payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.js","sourceRoot":"","sources":["../../../src/payments-payins-configurations-v1-payins-configuration-payins-configurations.universal.ts"],"names":[],"mappings":"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"}
|