@teemill/platform 0.34.1 → 0.35.0
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/README.md +5 -5
- package/api.ts +28 -2184
- package/base.ts +1 -25
- package/common.ts +1 -2
- package/configuration.ts +1 -18
- package/dist/api.d.ts +32 -2188
- package/dist/api.js +1 -122
- package/dist/base.d.ts +1 -25
- package/dist/base.js +1 -20
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -18
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +32 -2188
- package/dist/esm/api.js +1 -122
- package/dist/esm/base.d.ts +1 -25
- package/dist/esm/base.js +1 -20
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -18
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/CustomersApi.md +2 -2
- package/docs/ListCustomerTags200Response.md +22 -0
- package/docs/ListDomains200Response.md +22 -0
- package/docs/PaymentApi.md +2 -2
- package/docs/Platform.md +2 -0
- package/docs/PlatformApi.md +4 -4
- package/docs/UpdatePlatformRequest.md +2 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Platform API
|
|
3
3
|
* Manage Your podOS platform
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.35.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -15,107 +15,52 @@ import type { RequestArgs } from './base';
|
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
16
|
/**
|
|
17
17
|
* A person\'s address.
|
|
18
|
-
* @export
|
|
19
|
-
* @interface Address
|
|
20
18
|
*/
|
|
21
19
|
export interface Address {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof Address
|
|
26
|
-
*/
|
|
27
20
|
'contactName': string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @memberof Address
|
|
32
|
-
*/
|
|
33
21
|
'company'?: string;
|
|
34
22
|
/**
|
|
35
23
|
* First line of the address.
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof Address
|
|
38
24
|
*/
|
|
39
25
|
'line1': string;
|
|
40
26
|
/**
|
|
41
27
|
* Second line of the address.
|
|
42
|
-
* @type {string}
|
|
43
|
-
* @memberof Address
|
|
44
28
|
*/
|
|
45
29
|
'line2'?: string;
|
|
46
30
|
/**
|
|
47
31
|
* City of the address.
|
|
48
|
-
* @type {string}
|
|
49
|
-
* @memberof Address
|
|
50
32
|
*/
|
|
51
33
|
'city': string;
|
|
52
34
|
/**
|
|
53
35
|
* Postal code of the address.
|
|
54
|
-
* @type {string}
|
|
55
|
-
* @memberof Address
|
|
56
36
|
*/
|
|
57
37
|
'postalCode'?: string;
|
|
58
38
|
/**
|
|
59
39
|
* Country of the address (ISO 3166-1 alpha-2).
|
|
60
|
-
* @type {string}
|
|
61
|
-
* @memberof Address
|
|
62
40
|
*/
|
|
63
41
|
'country': string;
|
|
64
42
|
/**
|
|
65
43
|
* State of the address.
|
|
66
|
-
* @type {string}
|
|
67
|
-
* @memberof Address
|
|
68
44
|
*/
|
|
69
45
|
'state'?: string;
|
|
70
46
|
}
|
|
71
|
-
/**
|
|
72
|
-
*
|
|
73
|
-
* @export
|
|
74
|
-
* @interface AmendOrderRequest
|
|
75
|
-
*/
|
|
76
47
|
export interface AmendOrderRequest {
|
|
77
|
-
/**
|
|
78
|
-
*
|
|
79
|
-
* @type {Array<AmendOrderRequestAmendmentsInner>}
|
|
80
|
-
* @memberof AmendOrderRequest
|
|
81
|
-
*/
|
|
82
48
|
'amendments': Array<AmendOrderRequestAmendmentsInner>;
|
|
83
49
|
}
|
|
84
|
-
/**
|
|
85
|
-
*
|
|
86
|
-
* @export
|
|
87
|
-
* @interface AmendOrderRequestAmendmentsInner
|
|
88
|
-
*/
|
|
89
50
|
export interface AmendOrderRequestAmendmentsInner {
|
|
90
51
|
/**
|
|
91
52
|
* Unique order item identifier
|
|
92
|
-
* @type {string}
|
|
93
|
-
* @memberof AmendOrderRequestAmendmentsInner
|
|
94
53
|
*/
|
|
95
54
|
'id': string;
|
|
96
|
-
/**
|
|
97
|
-
*
|
|
98
|
-
* @type {string}
|
|
99
|
-
* @memberof AmendOrderRequestAmendmentsInner
|
|
100
|
-
*/
|
|
101
55
|
'action': AmendOrderRequestAmendmentsInnerActionEnum;
|
|
102
56
|
/**
|
|
103
57
|
* The quantity of the item to refund or exchange. This must be less than or equal to the quantity of the item in the order.
|
|
104
|
-
* @type {number}
|
|
105
|
-
* @memberof AmendOrderRequestAmendmentsInner
|
|
106
58
|
*/
|
|
107
59
|
'quantity': number;
|
|
108
60
|
/**
|
|
109
61
|
* A reference to the variant being ordered
|
|
110
|
-
* @type {string}
|
|
111
|
-
* @memberof AmendOrderRequestAmendmentsInner
|
|
112
62
|
*/
|
|
113
63
|
'newVariantRef'?: string;
|
|
114
|
-
/**
|
|
115
|
-
*
|
|
116
|
-
* @type {AmendOrderRequestAmendmentsInnerReason}
|
|
117
|
-
* @memberof AmendOrderRequestAmendmentsInner
|
|
118
|
-
*/
|
|
119
64
|
'reason': AmendOrderRequestAmendmentsInnerReason;
|
|
120
65
|
}
|
|
121
66
|
export declare const AmendOrderRequestAmendmentsInnerActionEnum: {
|
|
@@ -123,65 +68,33 @@ export declare const AmendOrderRequestAmendmentsInnerActionEnum: {
|
|
|
123
68
|
readonly Exchange: "exchange";
|
|
124
69
|
};
|
|
125
70
|
export type AmendOrderRequestAmendmentsInnerActionEnum = typeof AmendOrderRequestAmendmentsInnerActionEnum[keyof typeof AmendOrderRequestAmendmentsInnerActionEnum];
|
|
126
|
-
/**
|
|
127
|
-
*
|
|
128
|
-
* @export
|
|
129
|
-
* @interface AmendOrderRequestAmendmentsInnerReason
|
|
130
|
-
*/
|
|
131
71
|
export interface AmendOrderRequestAmendmentsInnerReason {
|
|
132
72
|
/**
|
|
133
73
|
* A reference to the resource location
|
|
134
|
-
* @type {string}
|
|
135
|
-
* @memberof AmendOrderRequestAmendmentsInnerReason
|
|
136
74
|
*/
|
|
137
75
|
'reasonRef': string;
|
|
138
76
|
/**
|
|
139
77
|
* Additional comments as to why the item is being returned or exchanged.
|
|
140
|
-
* @type {string}
|
|
141
|
-
* @memberof AmendOrderRequestAmendmentsInnerReason
|
|
142
78
|
*/
|
|
143
79
|
'additionalComments'?: string | null;
|
|
144
80
|
}
|
|
145
|
-
/**
|
|
146
|
-
*
|
|
147
|
-
* @export
|
|
148
|
-
* @interface AmendmentLog
|
|
149
|
-
*/
|
|
150
81
|
export interface AmendmentLog {
|
|
151
82
|
/**
|
|
152
83
|
* Unique object identifier
|
|
153
|
-
* @type {string}
|
|
154
|
-
* @memberof AmendmentLog
|
|
155
84
|
*/
|
|
156
85
|
'id': string;
|
|
157
86
|
/**
|
|
158
87
|
* A reference to the order item that was amended.
|
|
159
|
-
* @type {string}
|
|
160
|
-
* @memberof AmendmentLog
|
|
161
88
|
*/
|
|
162
89
|
'orderItemId': string;
|
|
163
90
|
/**
|
|
164
91
|
* A reference to the top level order item that was amended, useful for finding the original item within a chain of exchanges, for example.
|
|
165
|
-
* @type {string}
|
|
166
|
-
* @memberof AmendmentLog
|
|
167
92
|
*/
|
|
168
93
|
'originalOrderItemId': string;
|
|
169
|
-
/**
|
|
170
|
-
*
|
|
171
|
-
* @type {string}
|
|
172
|
-
* @memberof AmendmentLog
|
|
173
|
-
*/
|
|
174
94
|
'amendmentType': AmendmentLogAmendmentTypeEnum;
|
|
175
|
-
/**
|
|
176
|
-
*
|
|
177
|
-
* @type {number}
|
|
178
|
-
* @memberof AmendmentLog
|
|
179
|
-
*/
|
|
180
95
|
'quantity': number;
|
|
181
96
|
/**
|
|
182
97
|
* ISO 8601 Timestamp
|
|
183
|
-
* @type {string}
|
|
184
|
-
* @memberof AmendmentLog
|
|
185
98
|
*/
|
|
186
99
|
'createdAt': string;
|
|
187
100
|
}
|
|
@@ -190,489 +103,197 @@ export declare const AmendmentLogAmendmentTypeEnum: {
|
|
|
190
103
|
readonly Exchange: "exchange";
|
|
191
104
|
};
|
|
192
105
|
export type AmendmentLogAmendmentTypeEnum = typeof AmendmentLogAmendmentTypeEnum[keyof typeof AmendmentLogAmendmentTypeEnum];
|
|
193
|
-
/**
|
|
194
|
-
*
|
|
195
|
-
* @export
|
|
196
|
-
* @interface ApiError
|
|
197
|
-
*/
|
|
198
106
|
export interface ApiError {
|
|
199
|
-
/**
|
|
200
|
-
*
|
|
201
|
-
* @type {string}
|
|
202
|
-
* @memberof ApiError
|
|
203
|
-
*/
|
|
204
107
|
'code'?: string;
|
|
205
|
-
/**
|
|
206
|
-
*
|
|
207
|
-
* @type {string}
|
|
208
|
-
* @memberof ApiError
|
|
209
|
-
*/
|
|
210
108
|
'message': string;
|
|
211
109
|
}
|
|
212
|
-
|
|
213
|
-
*
|
|
214
|
-
* @export
|
|
215
|
-
* @interface BulkCreateReviewPayload
|
|
216
|
-
*/
|
|
217
|
-
export interface BulkCreateReviewPayload {
|
|
110
|
+
export interface AuthorizeStripe200Response {
|
|
218
111
|
/**
|
|
219
|
-
*
|
|
220
|
-
* @type {Array<CreateReviewPayload>}
|
|
221
|
-
* @memberof BulkCreateReviewPayload
|
|
112
|
+
* The URL to redirect to
|
|
222
113
|
*/
|
|
114
|
+
'redirect_url': string;
|
|
115
|
+
}
|
|
116
|
+
export interface BulkCreateReviewPayload {
|
|
223
117
|
'reviews': Array<CreateReviewPayload>;
|
|
224
118
|
}
|
|
225
|
-
/**
|
|
226
|
-
*
|
|
227
|
-
* @export
|
|
228
|
-
* @interface BulkCreatedReviews
|
|
229
|
-
*/
|
|
230
119
|
export interface BulkCreatedReviews {
|
|
231
|
-
/**
|
|
232
|
-
*
|
|
233
|
-
* @type {Array<Review>}
|
|
234
|
-
* @memberof BulkCreatedReviews
|
|
235
|
-
*/
|
|
236
120
|
'reviews': Array<Review>;
|
|
237
121
|
}
|
|
238
|
-
/**
|
|
239
|
-
*
|
|
240
|
-
* @export
|
|
241
|
-
* @interface Client
|
|
242
|
-
*/
|
|
243
122
|
export interface Client {
|
|
244
|
-
/**
|
|
245
|
-
*
|
|
246
|
-
* @type {string}
|
|
247
|
-
* @memberof Client
|
|
248
|
-
*/
|
|
249
123
|
'id'?: string;
|
|
250
124
|
/**
|
|
251
125
|
* API reference for the client
|
|
252
|
-
* @type {string}
|
|
253
|
-
* @memberof Client
|
|
254
126
|
*/
|
|
255
127
|
'ref'?: string;
|
|
256
|
-
/**
|
|
257
|
-
*
|
|
258
|
-
* @type {string}
|
|
259
|
-
* @memberof Client
|
|
260
|
-
*/
|
|
261
128
|
'name'?: string;
|
|
262
129
|
}
|
|
263
|
-
/**
|
|
264
|
-
*
|
|
265
|
-
* @export
|
|
266
|
-
* @interface ConfirmOrderFulfillment
|
|
267
|
-
*/
|
|
268
130
|
export interface ConfirmOrderFulfillment {
|
|
269
131
|
/**
|
|
270
132
|
* Unique object identifier
|
|
271
|
-
* @type {string}
|
|
272
|
-
* @memberof ConfirmOrderFulfillment
|
|
273
133
|
*/
|
|
274
134
|
'fulfillmentId': string;
|
|
275
135
|
/**
|
|
276
136
|
* Unique object identifier
|
|
277
|
-
* @type {string}
|
|
278
|
-
* @memberof ConfirmOrderFulfillment
|
|
279
137
|
*/
|
|
280
138
|
'shippingMethodId'?: string;
|
|
281
|
-
/**
|
|
282
|
-
*
|
|
283
|
-
* @type {ConfirmOrderFulfillmentShipment}
|
|
284
|
-
* @memberof ConfirmOrderFulfillment
|
|
285
|
-
*/
|
|
286
139
|
'shipment'?: ConfirmOrderFulfillmentShipment;
|
|
287
140
|
}
|
|
288
141
|
/**
|
|
289
142
|
* This field is only required if you are using your own shipping label.
|
|
290
|
-
* @export
|
|
291
|
-
* @interface ConfirmOrderFulfillmentShipment
|
|
292
143
|
*/
|
|
293
144
|
export interface ConfirmOrderFulfillmentShipment {
|
|
294
145
|
/**
|
|
295
146
|
* Only required if you are generating shipping labels outside of PodOS
|
|
296
|
-
* @type {string}
|
|
297
|
-
* @memberof ConfirmOrderFulfillmentShipment
|
|
298
147
|
*/
|
|
299
148
|
'image': string;
|
|
300
149
|
}
|
|
301
|
-
/**
|
|
302
|
-
*
|
|
303
|
-
* @export
|
|
304
|
-
* @interface ConfirmOrderRequest
|
|
305
|
-
*/
|
|
306
150
|
export interface ConfirmOrderRequest {
|
|
307
|
-
/**
|
|
308
|
-
*
|
|
309
|
-
* @type {Array<ConfirmOrderFulfillment>}
|
|
310
|
-
* @memberof ConfirmOrderRequest
|
|
311
|
-
*/
|
|
312
151
|
'fulfillments': Array<ConfirmOrderFulfillment>;
|
|
313
152
|
}
|
|
314
153
|
/**
|
|
315
154
|
* Order recipient contact information, used only for courier tracking/updates.
|
|
316
|
-
* @export
|
|
317
|
-
* @interface ContactInformation
|
|
318
155
|
*/
|
|
319
156
|
export interface ContactInformation {
|
|
320
|
-
/**
|
|
321
|
-
*
|
|
322
|
-
* @type {string}
|
|
323
|
-
* @memberof ContactInformation
|
|
324
|
-
*/
|
|
325
157
|
'email': string;
|
|
326
|
-
/**
|
|
327
|
-
*
|
|
328
|
-
* @type {string}
|
|
329
|
-
* @memberof ContactInformation
|
|
330
|
-
*/
|
|
331
158
|
'phone'?: string | null;
|
|
332
159
|
}
|
|
333
|
-
/**
|
|
334
|
-
*
|
|
335
|
-
* @export
|
|
336
|
-
* @interface Coupon
|
|
337
|
-
*/
|
|
338
160
|
export interface Coupon {
|
|
339
161
|
/**
|
|
340
162
|
* Unique object identifier
|
|
341
|
-
* @type {string}
|
|
342
|
-
* @memberof Coupon
|
|
343
163
|
*/
|
|
344
164
|
'id': string;
|
|
345
|
-
/**
|
|
346
|
-
*
|
|
347
|
-
* @type {string}
|
|
348
|
-
* @memberof Coupon
|
|
349
|
-
*/
|
|
350
165
|
'code': string;
|
|
351
166
|
}
|
|
352
|
-
/**
|
|
353
|
-
*
|
|
354
|
-
* @export
|
|
355
|
-
* @interface CreateChatChannel200Response
|
|
356
|
-
*/
|
|
357
167
|
export interface CreateChatChannel200Response {
|
|
358
168
|
/**
|
|
359
169
|
* Reference to the chat channel resource
|
|
360
|
-
* @type {string}
|
|
361
|
-
* @memberof CreateChatChannel200Response
|
|
362
170
|
*/
|
|
363
171
|
'chatChannelRef': string;
|
|
364
172
|
}
|
|
365
|
-
/**
|
|
366
|
-
*
|
|
367
|
-
* @export
|
|
368
|
-
* @interface CreateDomainRequest
|
|
369
|
-
*/
|
|
370
173
|
export interface CreateDomainRequest {
|
|
371
|
-
/**
|
|
372
|
-
*
|
|
373
|
-
* @type {string}
|
|
374
|
-
* @memberof CreateDomainRequest
|
|
375
|
-
*/
|
|
376
174
|
'domain'?: string;
|
|
377
175
|
}
|
|
378
176
|
/**
|
|
379
177
|
* Create an order
|
|
380
|
-
* @export
|
|
381
|
-
* @interface CreateOrder
|
|
382
178
|
*/
|
|
383
179
|
export interface CreateOrder {
|
|
384
180
|
/**
|
|
385
181
|
* A custom reference to the merchant\'s order.
|
|
386
|
-
* @type {string}
|
|
387
|
-
* @memberof CreateOrder
|
|
388
182
|
*/
|
|
389
183
|
'merchantReference'?: string | null;
|
|
390
|
-
/**
|
|
391
|
-
*
|
|
392
|
-
* @type {CreateOrderContactInformation}
|
|
393
|
-
* @memberof CreateOrder
|
|
394
|
-
*/
|
|
395
184
|
'contactInformation': CreateOrderContactInformation;
|
|
396
|
-
/**
|
|
397
|
-
*
|
|
398
|
-
* @type {Address}
|
|
399
|
-
* @memberof CreateOrder
|
|
400
|
-
*/
|
|
401
185
|
'shippingAddress': Address;
|
|
402
|
-
/**
|
|
403
|
-
*
|
|
404
|
-
* @type {CustomsInformation}
|
|
405
|
-
* @memberof CreateOrder
|
|
406
|
-
*/
|
|
407
186
|
'customsInformation'?: CustomsInformation;
|
|
408
187
|
/**
|
|
409
188
|
* Items to be ordered
|
|
410
|
-
* @type {Array<OrderItem1>}
|
|
411
|
-
* @memberof CreateOrder
|
|
412
189
|
*/
|
|
413
190
|
'items': Array<OrderItem1>;
|
|
414
|
-
/**
|
|
415
|
-
*
|
|
416
|
-
* @type {Array<string>}
|
|
417
|
-
* @memberof CreateOrder
|
|
418
|
-
*/
|
|
419
191
|
'preferredFulfillers'?: Array<string>;
|
|
420
192
|
/**
|
|
421
193
|
* A reference to the resource location
|
|
422
|
-
* @type {string}
|
|
423
|
-
* @memberof CreateOrder
|
|
424
194
|
*/
|
|
425
195
|
'originalOrderRef'?: string;
|
|
426
196
|
}
|
|
427
197
|
/**
|
|
428
198
|
* Contact information for the order
|
|
429
|
-
* @export
|
|
430
|
-
* @interface CreateOrderContactInformation
|
|
431
199
|
*/
|
|
432
200
|
export interface CreateOrderContactInformation {
|
|
433
|
-
/**
|
|
434
|
-
*
|
|
435
|
-
* @type {string}
|
|
436
|
-
* @memberof CreateOrderContactInformation
|
|
437
|
-
*/
|
|
438
201
|
'email': string;
|
|
439
|
-
/**
|
|
440
|
-
*
|
|
441
|
-
* @type {string}
|
|
442
|
-
* @memberof CreateOrderContactInformation
|
|
443
|
-
*/
|
|
444
202
|
'phone'?: string | null;
|
|
445
203
|
}
|
|
446
|
-
/**
|
|
447
|
-
*
|
|
448
|
-
* @export
|
|
449
|
-
* @interface CreatePixelRequest
|
|
450
|
-
*/
|
|
451
204
|
export interface CreatePixelRequest {
|
|
452
|
-
/**
|
|
453
|
-
*
|
|
454
|
-
* @type {string}
|
|
455
|
-
* @memberof CreatePixelRequest
|
|
456
|
-
*/
|
|
457
205
|
'name': string;
|
|
458
|
-
/**
|
|
459
|
-
*
|
|
460
|
-
* @type {Array<string>}
|
|
461
|
-
* @memberof CreatePixelRequest
|
|
462
|
-
*/
|
|
463
206
|
'sourceProjects': Array<string>;
|
|
464
|
-
/**
|
|
465
|
-
*
|
|
466
|
-
* @type {CreatePixelRequestFilters}
|
|
467
|
-
* @memberof CreatePixelRequest
|
|
468
|
-
*/
|
|
469
207
|
'filters': CreatePixelRequestFilters;
|
|
470
208
|
}
|
|
471
|
-
/**
|
|
472
|
-
*
|
|
473
|
-
* @export
|
|
474
|
-
* @interface CreatePixelRequestFilters
|
|
475
|
-
*/
|
|
476
209
|
export interface CreatePixelRequestFilters {
|
|
477
|
-
/**
|
|
478
|
-
*
|
|
479
|
-
* @type {Array<string>}
|
|
480
|
-
* @memberof CreatePixelRequestFilters
|
|
481
|
-
*/
|
|
482
210
|
'projects': Array<string> | null;
|
|
483
|
-
/**
|
|
484
|
-
*
|
|
485
|
-
* @type {Array<string>}
|
|
486
|
-
* @memberof CreatePixelRequestFilters
|
|
487
|
-
*/
|
|
488
211
|
'demographics': Array<string> | null;
|
|
489
|
-
/**
|
|
490
|
-
*
|
|
491
|
-
* @type {Array<string>}
|
|
492
|
-
* @memberof CreatePixelRequestFilters
|
|
493
|
-
*/
|
|
494
212
|
'tags': Array<string> | null;
|
|
495
213
|
}
|
|
496
214
|
/**
|
|
497
215
|
* @type CreateReview201Response
|
|
498
|
-
* @export
|
|
499
216
|
*/
|
|
500
217
|
export type CreateReview201Response = BulkCreatedReviews | Review;
|
|
501
|
-
/**
|
|
502
|
-
*
|
|
503
|
-
* @export
|
|
504
|
-
* @interface CreateReviewPayload
|
|
505
|
-
*/
|
|
506
218
|
export interface CreateReviewPayload {
|
|
507
|
-
/**
|
|
508
|
-
*
|
|
509
|
-
* @type {CreateReviewPayloadAuthor}
|
|
510
|
-
* @memberof CreateReviewPayload
|
|
511
|
-
*/
|
|
512
219
|
'author': CreateReviewPayloadAuthor;
|
|
513
220
|
/**
|
|
514
221
|
* The title of the review
|
|
515
|
-
* @type {string}
|
|
516
|
-
* @memberof CreateReviewPayload
|
|
517
222
|
*/
|
|
518
223
|
'title'?: string;
|
|
519
224
|
/**
|
|
520
225
|
* The text of the review
|
|
521
|
-
* @type {string}
|
|
522
|
-
* @memberof CreateReviewPayload
|
|
523
226
|
*/
|
|
524
227
|
'text': string;
|
|
525
228
|
/**
|
|
526
229
|
* A reference to the product being ordered
|
|
527
|
-
* @type {string}
|
|
528
|
-
* @memberof CreateReviewPayload
|
|
529
230
|
*/
|
|
530
231
|
'productRef': string;
|
|
531
232
|
/**
|
|
532
233
|
* The rating of the review
|
|
533
|
-
* @type {number}
|
|
534
|
-
* @memberof CreateReviewPayload
|
|
535
234
|
*/
|
|
536
235
|
'rating': number;
|
|
537
|
-
/**
|
|
538
|
-
*
|
|
539
|
-
* @type {Array<Image>}
|
|
540
|
-
* @memberof CreateReviewPayload
|
|
541
|
-
*/
|
|
542
236
|
'images'?: Array<Image>;
|
|
543
237
|
/**
|
|
544
238
|
* Whether the review has been approved or not. If the review is not enabled, it will not be visible to the public.
|
|
545
|
-
* @type {boolean}
|
|
546
|
-
* @memberof CreateReviewPayload
|
|
547
239
|
*/
|
|
548
240
|
'enabled': boolean;
|
|
549
241
|
/**
|
|
550
242
|
* A reference to the project being ordered
|
|
551
|
-
* @type {string}
|
|
552
|
-
* @memberof CreateReviewPayload
|
|
553
243
|
*/
|
|
554
244
|
'projectRef': string;
|
|
555
245
|
}
|
|
556
|
-
/**
|
|
557
|
-
*
|
|
558
|
-
* @export
|
|
559
|
-
* @interface CreateReviewPayloadAuthor
|
|
560
|
-
*/
|
|
561
246
|
export interface CreateReviewPayloadAuthor {
|
|
562
247
|
/**
|
|
563
248
|
* The name of the author
|
|
564
|
-
* @type {string}
|
|
565
|
-
* @memberof CreateReviewPayloadAuthor
|
|
566
249
|
*/
|
|
567
250
|
'name'?: string;
|
|
568
251
|
/**
|
|
569
252
|
* The email of the author
|
|
570
|
-
* @type {string}
|
|
571
|
-
* @memberof CreateReviewPayloadAuthor
|
|
572
253
|
*/
|
|
573
254
|
'email'?: string;
|
|
574
255
|
}
|
|
575
256
|
/**
|
|
576
257
|
* @type CreateReviewRequest
|
|
577
|
-
* @export
|
|
578
258
|
*/
|
|
579
259
|
export type CreateReviewRequest = BulkCreateReviewPayload | CreateReviewPayload;
|
|
580
260
|
/**
|
|
581
261
|
* The customer that has placed an order on your platform
|
|
582
|
-
* @export
|
|
583
|
-
* @interface Customer
|
|
584
262
|
*/
|
|
585
263
|
export interface Customer {
|
|
586
264
|
/**
|
|
587
265
|
* Unique object identifier
|
|
588
|
-
* @type {string}
|
|
589
|
-
* @memberof Customer
|
|
590
266
|
*/
|
|
591
267
|
'id': string;
|
|
592
|
-
/**
|
|
593
|
-
*
|
|
594
|
-
* @type {string}
|
|
595
|
-
* @memberof Customer
|
|
596
|
-
*/
|
|
597
268
|
'email': string;
|
|
598
|
-
/**
|
|
599
|
-
*
|
|
600
|
-
* @type {string}
|
|
601
|
-
* @memberof Customer
|
|
602
|
-
*/
|
|
603
269
|
'firstName': string;
|
|
604
|
-
/**
|
|
605
|
-
*
|
|
606
|
-
* @type {string}
|
|
607
|
-
* @memberof Customer
|
|
608
|
-
*/
|
|
609
270
|
'lastName': string;
|
|
610
|
-
/**
|
|
611
|
-
*
|
|
612
|
-
* @type {string}
|
|
613
|
-
* @memberof Customer
|
|
614
|
-
*/
|
|
615
271
|
'gender': string | null;
|
|
616
|
-
/**
|
|
617
|
-
*
|
|
618
|
-
* @type {string}
|
|
619
|
-
* @memberof Customer
|
|
620
|
-
*/
|
|
621
272
|
'country': string | null;
|
|
622
|
-
/**
|
|
623
|
-
*
|
|
624
|
-
* @type {Statistics}
|
|
625
|
-
* @memberof Customer
|
|
626
|
-
*/
|
|
627
273
|
'statistics': Statistics;
|
|
628
274
|
}
|
|
629
|
-
/**
|
|
630
|
-
*
|
|
631
|
-
* @export
|
|
632
|
-
* @interface CustomersResponse
|
|
633
|
-
*/
|
|
634
275
|
export interface CustomersResponse {
|
|
635
|
-
/**
|
|
636
|
-
*
|
|
637
|
-
* @type {Array<Customer>}
|
|
638
|
-
* @memberof CustomersResponse
|
|
639
|
-
*/
|
|
640
276
|
'customers': Array<Customer>;
|
|
641
|
-
/**
|
|
642
|
-
*
|
|
643
|
-
* @type {number}
|
|
644
|
-
* @memberof CustomersResponse
|
|
645
|
-
*/
|
|
646
277
|
'nextPageToken'?: number | null;
|
|
647
278
|
}
|
|
648
279
|
/**
|
|
649
280
|
* Customs information for the order. **Note:** Adding customs information to an order is only compatible with Shipmate at this time
|
|
650
|
-
* @export
|
|
651
|
-
* @interface CustomsInformation
|
|
652
281
|
*/
|
|
653
282
|
export interface CustomsInformation {
|
|
654
283
|
/**
|
|
655
284
|
* Pre-registration type
|
|
656
|
-
* @type {string}
|
|
657
|
-
* @memberof CustomsInformation
|
|
658
285
|
*/
|
|
659
286
|
'preRegistrationType'?: CustomsInformationPreRegistrationTypeEnum;
|
|
660
287
|
/**
|
|
661
288
|
* Pre-registration number
|
|
662
|
-
* @type {string}
|
|
663
|
-
* @memberof CustomsInformation
|
|
664
289
|
*/
|
|
665
290
|
'preRegistrationNumber'?: string;
|
|
666
291
|
/**
|
|
667
292
|
* VAT number
|
|
668
|
-
* @type {string}
|
|
669
|
-
* @memberof CustomsInformation
|
|
670
293
|
*/
|
|
671
294
|
'vatNumber'?: string;
|
|
672
295
|
/**
|
|
673
296
|
* EORI number
|
|
674
|
-
* @type {string}
|
|
675
|
-
* @memberof CustomsInformation
|
|
676
297
|
*/
|
|
677
298
|
'eoriNumber'?: string;
|
|
678
299
|
}
|
|
@@ -680,189 +301,54 @@ export declare const CustomsInformationPreRegistrationTypeEnum: {
|
|
|
680
301
|
readonly Ioss: "IOSS";
|
|
681
302
|
};
|
|
682
303
|
export type CustomsInformationPreRegistrationTypeEnum = typeof CustomsInformationPreRegistrationTypeEnum[keyof typeof CustomsInformationPreRegistrationTypeEnum];
|
|
683
|
-
/**
|
|
684
|
-
*
|
|
685
|
-
* @export
|
|
686
|
-
* @interface DashboardItem
|
|
687
|
-
*/
|
|
688
304
|
export interface DashboardItem {
|
|
689
|
-
/**
|
|
690
|
-
*
|
|
691
|
-
* @type {string}
|
|
692
|
-
* @memberof DashboardItem
|
|
693
|
-
*/
|
|
694
305
|
'id': string;
|
|
695
|
-
/**
|
|
696
|
-
*
|
|
697
|
-
* @type {string}
|
|
698
|
-
* @memberof DashboardItem
|
|
699
|
-
*/
|
|
700
306
|
'type': string;
|
|
701
|
-
/**
|
|
702
|
-
*
|
|
703
|
-
* @type {{ [key: string]: any; }}
|
|
704
|
-
* @memberof DashboardItem
|
|
705
|
-
*/
|
|
706
307
|
'properties': {
|
|
707
308
|
[key: string]: any;
|
|
708
309
|
} | null;
|
|
709
|
-
/**
|
|
710
|
-
*
|
|
711
|
-
* @type {boolean}
|
|
712
|
-
* @memberof DashboardItem
|
|
713
|
-
*/
|
|
714
310
|
'published': boolean;
|
|
715
|
-
/**
|
|
716
|
-
*
|
|
717
|
-
* @type {number}
|
|
718
|
-
* @memberof DashboardItem
|
|
719
|
-
*/
|
|
720
311
|
'sortOrder': number;
|
|
721
|
-
/**
|
|
722
|
-
*
|
|
723
|
-
* @type {Array<DashboardItem>}
|
|
724
|
-
* @memberof DashboardItem
|
|
725
|
-
*/
|
|
726
312
|
'items'?: Array<DashboardItem> | null;
|
|
727
313
|
}
|
|
728
|
-
/**
|
|
729
|
-
*
|
|
730
|
-
* @export
|
|
731
|
-
* @interface DeliveryEstimates
|
|
732
|
-
*/
|
|
733
314
|
export interface DeliveryEstimates {
|
|
734
315
|
/**
|
|
735
316
|
* ISO 8601 Timestamp
|
|
736
|
-
* @type {string}
|
|
737
|
-
* @memberof DeliveryEstimates
|
|
738
317
|
*/
|
|
739
318
|
'min'?: string;
|
|
740
319
|
/**
|
|
741
320
|
* ISO 8601 Timestamp
|
|
742
|
-
* @type {string}
|
|
743
|
-
* @memberof DeliveryEstimates
|
|
744
321
|
*/
|
|
745
322
|
'max'?: string;
|
|
746
323
|
}
|
|
747
|
-
/**
|
|
748
|
-
*
|
|
749
|
-
* @export
|
|
750
|
-
* @interface Domain
|
|
751
|
-
*/
|
|
752
324
|
export interface Domain {
|
|
753
|
-
/**
|
|
754
|
-
*
|
|
755
|
-
* @type {number}
|
|
756
|
-
* @memberof Domain
|
|
757
|
-
*/
|
|
758
325
|
'id': number;
|
|
759
|
-
/**
|
|
760
|
-
*
|
|
761
|
-
* @type {string}
|
|
762
|
-
* @memberof Domain
|
|
763
|
-
*/
|
|
764
326
|
'name': string;
|
|
765
|
-
/**
|
|
766
|
-
*
|
|
767
|
-
* @type {number}
|
|
768
|
-
* @memberof Domain
|
|
769
|
-
*/
|
|
770
327
|
'priority': number;
|
|
771
|
-
/**
|
|
772
|
-
*
|
|
773
|
-
* @type {string}
|
|
774
|
-
* @memberof Domain
|
|
775
|
-
*/
|
|
776
328
|
'enabledAt': string | null;
|
|
777
329
|
}
|
|
778
|
-
/**
|
|
779
|
-
*
|
|
780
|
-
* @export
|
|
781
|
-
* @interface Enquiry
|
|
782
|
-
*/
|
|
783
330
|
export interface Enquiry {
|
|
784
|
-
/**
|
|
785
|
-
*
|
|
786
|
-
* @type {string}
|
|
787
|
-
* @memberof Enquiry
|
|
788
|
-
*/
|
|
789
331
|
'id': string;
|
|
790
332
|
/**
|
|
791
333
|
* API reference for the enquiry
|
|
792
|
-
* @type {string}
|
|
793
|
-
* @memberof Enquiry
|
|
794
334
|
*/
|
|
795
335
|
'ref': string;
|
|
796
|
-
/**
|
|
797
|
-
*
|
|
798
|
-
* @type {ListCustomerEnquiryLogs200ResponseLogsInnerCustomer}
|
|
799
|
-
* @memberof Enquiry
|
|
800
|
-
*/
|
|
801
336
|
'customer': ListCustomerEnquiryLogs200ResponseLogsInnerCustomer;
|
|
802
|
-
/**
|
|
803
|
-
*
|
|
804
|
-
* @type {Client}
|
|
805
|
-
* @memberof Enquiry
|
|
806
|
-
*/
|
|
807
337
|
'client': Client;
|
|
808
|
-
/**
|
|
809
|
-
*
|
|
810
|
-
* @type {string}
|
|
811
|
-
* @memberof Enquiry
|
|
812
|
-
*/
|
|
813
338
|
'subject': string;
|
|
814
|
-
/**
|
|
815
|
-
*
|
|
816
|
-
* @type {string}
|
|
817
|
-
* @memberof Enquiry
|
|
818
|
-
*/
|
|
819
339
|
'body': string;
|
|
820
|
-
/**
|
|
821
|
-
*
|
|
822
|
-
* @type {string}
|
|
823
|
-
* @memberof Enquiry
|
|
824
|
-
*/
|
|
825
340
|
'createdAt': string;
|
|
826
|
-
/**
|
|
827
|
-
*
|
|
828
|
-
* @type {string}
|
|
829
|
-
* @memberof Enquiry
|
|
830
|
-
*/
|
|
831
341
|
'updatedAt': string;
|
|
832
|
-
/**
|
|
833
|
-
*
|
|
834
|
-
* @type {Array<string>}
|
|
835
|
-
* @memberof Enquiry
|
|
836
|
-
*/
|
|
837
342
|
'tags': Array<string>;
|
|
838
|
-
/**
|
|
839
|
-
*
|
|
840
|
-
* @type {string}
|
|
841
|
-
* @memberof Enquiry
|
|
842
|
-
*/
|
|
843
343
|
'status': EnquiryStatusEnum;
|
|
844
|
-
/**
|
|
845
|
-
*
|
|
846
|
-
* @type {boolean}
|
|
847
|
-
* @memberof Enquiry
|
|
848
|
-
*/
|
|
849
344
|
'read': boolean;
|
|
850
|
-
/**
|
|
851
|
-
*
|
|
852
|
-
* @type {Array<EnquiryExtraInputsInner>}
|
|
853
|
-
* @memberof Enquiry
|
|
854
|
-
*/
|
|
855
345
|
'extraInputs': Array<EnquiryExtraInputsInner> | null;
|
|
856
346
|
/**
|
|
857
347
|
* Reference to the chat channel resource
|
|
858
|
-
* @type {string}
|
|
859
|
-
* @memberof Enquiry
|
|
860
348
|
*/
|
|
861
349
|
'chatChannelRef'?: string | null;
|
|
862
350
|
/**
|
|
863
351
|
* The unique id of the user who owns the enquiry
|
|
864
|
-
* @type {string}
|
|
865
|
-
* @memberof Enquiry
|
|
866
352
|
*/
|
|
867
353
|
'owner': string | null;
|
|
868
354
|
}
|
|
@@ -872,669 +358,225 @@ export declare const EnquiryStatusEnum: {
|
|
|
872
358
|
readonly Priority: "Priority";
|
|
873
359
|
};
|
|
874
360
|
export type EnquiryStatusEnum = typeof EnquiryStatusEnum[keyof typeof EnquiryStatusEnum];
|
|
875
|
-
/**
|
|
876
|
-
*
|
|
877
|
-
* @export
|
|
878
|
-
* @interface EnquiryExtraInputsInner
|
|
879
|
-
*/
|
|
880
361
|
export interface EnquiryExtraInputsInner {
|
|
881
|
-
/**
|
|
882
|
-
*
|
|
883
|
-
* @type {string}
|
|
884
|
-
* @memberof EnquiryExtraInputsInner
|
|
885
|
-
*/
|
|
886
362
|
'name': string;
|
|
887
|
-
/**
|
|
888
|
-
*
|
|
889
|
-
* @type {string}
|
|
890
|
-
* @memberof EnquiryExtraInputsInner
|
|
891
|
-
*/
|
|
892
363
|
'type': string;
|
|
893
|
-
/**
|
|
894
|
-
*
|
|
895
|
-
* @type {EnquiryExtraInputsInnerValue}
|
|
896
|
-
* @memberof EnquiryExtraInputsInner
|
|
897
|
-
*/
|
|
898
364
|
'value': EnquiryExtraInputsInnerValue;
|
|
899
365
|
}
|
|
900
366
|
/**
|
|
901
367
|
* @type EnquiryExtraInputsInnerValue
|
|
902
|
-
* @export
|
|
903
368
|
*/
|
|
904
369
|
export type EnquiryExtraInputsInnerValue = Array<string | null> | string;
|
|
905
|
-
/**
|
|
906
|
-
*
|
|
907
|
-
* @export
|
|
908
|
-
* @interface ExportOrders202Response
|
|
909
|
-
*/
|
|
910
370
|
export interface ExportOrders202Response {
|
|
911
371
|
/**
|
|
912
372
|
* A message describing the export status
|
|
913
|
-
* @type {string}
|
|
914
|
-
* @memberof ExportOrders202Response
|
|
915
373
|
*/
|
|
916
374
|
'message'?: string;
|
|
917
375
|
}
|
|
918
376
|
/**
|
|
919
377
|
* The fulfiller that will be processing this order.
|
|
920
|
-
* @export
|
|
921
|
-
* @interface Fulfiller
|
|
922
378
|
*/
|
|
923
379
|
export interface Fulfiller {
|
|
924
380
|
/**
|
|
925
381
|
* Unique object identifier
|
|
926
|
-
* @type {string}
|
|
927
|
-
* @memberof Fulfiller
|
|
928
382
|
*/
|
|
929
383
|
'id'?: string;
|
|
930
|
-
/**
|
|
931
|
-
*
|
|
932
|
-
* @type {FulfillerLocation}
|
|
933
|
-
* @memberof Fulfiller
|
|
934
|
-
*/
|
|
935
384
|
'location'?: FulfillerLocation;
|
|
936
385
|
}
|
|
937
|
-
/**
|
|
938
|
-
*
|
|
939
|
-
* @export
|
|
940
|
-
* @interface FulfillerLocation
|
|
941
|
-
*/
|
|
942
386
|
export interface FulfillerLocation {
|
|
943
|
-
/**
|
|
944
|
-
*
|
|
945
|
-
* @type {string}
|
|
946
|
-
* @memberof FulfillerLocation
|
|
947
|
-
*/
|
|
948
387
|
'city'?: string | null;
|
|
949
|
-
/**
|
|
950
|
-
*
|
|
951
|
-
* @type {string}
|
|
952
|
-
* @memberof FulfillerLocation
|
|
953
|
-
*/
|
|
954
388
|
'country'?: string | null;
|
|
955
389
|
}
|
|
956
|
-
/**
|
|
957
|
-
*
|
|
958
|
-
* @export
|
|
959
|
-
* @interface FulfillersResponse
|
|
960
|
-
*/
|
|
961
390
|
export interface FulfillersResponse {
|
|
962
|
-
/**
|
|
963
|
-
*
|
|
964
|
-
* @type {Array<Fulfiller>}
|
|
965
|
-
* @memberof FulfillersResponse
|
|
966
|
-
*/
|
|
967
391
|
'fulfillers'?: Array<Fulfiller>;
|
|
968
|
-
/**
|
|
969
|
-
*
|
|
970
|
-
* @type {number}
|
|
971
|
-
* @memberof FulfillersResponse
|
|
972
|
-
*/
|
|
973
392
|
'nextPageToken'?: number;
|
|
974
393
|
}
|
|
975
|
-
/**
|
|
976
|
-
*
|
|
977
|
-
* @export
|
|
978
|
-
* @interface Fulfillment
|
|
979
|
-
*/
|
|
980
394
|
export interface Fulfillment {
|
|
981
395
|
/**
|
|
982
396
|
* Unique fulfillment id
|
|
983
|
-
* @type {string}
|
|
984
|
-
* @memberof Fulfillment
|
|
985
397
|
*/
|
|
986
398
|
'id'?: string;
|
|
987
|
-
/**
|
|
988
|
-
*
|
|
989
|
-
* @type {OrderStatus}
|
|
990
|
-
* @memberof Fulfillment
|
|
991
|
-
*/
|
|
992
399
|
'status'?: OrderStatus;
|
|
993
|
-
/**
|
|
994
|
-
*
|
|
995
|
-
* @type {Fulfiller}
|
|
996
|
-
* @memberof Fulfillment
|
|
997
|
-
*/
|
|
998
400
|
'fulfiller'?: Fulfiller;
|
|
999
|
-
/**
|
|
1000
|
-
*
|
|
1001
|
-
* @type {Array<FulfillmentItem>}
|
|
1002
|
-
* @memberof Fulfillment
|
|
1003
|
-
*/
|
|
1004
401
|
'items'?: Array<FulfillmentItem>;
|
|
1005
|
-
/**
|
|
1006
|
-
*
|
|
1007
|
-
* @type {OrderTracking}
|
|
1008
|
-
* @memberof Fulfillment
|
|
1009
|
-
*/
|
|
1010
402
|
'tracking'?: OrderTracking | null;
|
|
1011
403
|
/**
|
|
1012
404
|
* Shipping method currently set
|
|
1013
|
-
* @type {ShippingMethod}
|
|
1014
|
-
* @memberof Fulfillment
|
|
1015
405
|
*/
|
|
1016
406
|
'shippingMethod'?: ShippingMethod;
|
|
1017
407
|
/**
|
|
1018
408
|
* Shipping methods available for this fulfillment. One of these should be used to confirm the fulfillment.
|
|
1019
|
-
* @type {Array<ShippingMethod>}
|
|
1020
|
-
* @memberof Fulfillment
|
|
1021
409
|
*/
|
|
1022
410
|
'availableShippingMethods'?: Array<ShippingMethod>;
|
|
1023
411
|
/**
|
|
1024
412
|
* Weight of the package being shipped in grams
|
|
1025
|
-
* @type {number}
|
|
1026
|
-
* @memberof Fulfillment
|
|
1027
413
|
*/
|
|
1028
414
|
'packageWeight'?: number;
|
|
1029
415
|
}
|
|
1030
|
-
/**
|
|
1031
|
-
*
|
|
1032
|
-
* @export
|
|
1033
|
-
* @interface FulfillmentItem
|
|
1034
|
-
*/
|
|
1035
416
|
export interface FulfillmentItem {
|
|
1036
417
|
/**
|
|
1037
418
|
* Unique fulfillment item id
|
|
1038
|
-
* @type {string}
|
|
1039
|
-
* @memberof FulfillmentItem
|
|
1040
419
|
*/
|
|
1041
420
|
'id'?: string;
|
|
1042
421
|
/**
|
|
1043
422
|
* Id of the order item being fulfilled
|
|
1044
|
-
* @type {string}
|
|
1045
|
-
* @memberof FulfillmentItem
|
|
1046
423
|
*/
|
|
1047
424
|
'itemId'?: string;
|
|
1048
425
|
/**
|
|
1049
426
|
* Number of this item being fulfilled
|
|
1050
|
-
* @type {number}
|
|
1051
|
-
* @memberof FulfillmentItem
|
|
1052
427
|
*/
|
|
1053
428
|
'quantity'?: number;
|
|
1054
429
|
}
|
|
1055
|
-
/**
|
|
1056
|
-
*
|
|
1057
|
-
* @export
|
|
1058
|
-
* @interface GetDashboardResponse
|
|
1059
|
-
*/
|
|
1060
430
|
export interface GetDashboardResponse {
|
|
1061
|
-
/**
|
|
1062
|
-
*
|
|
1063
|
-
* @type {Array<DashboardItem>}
|
|
1064
|
-
* @memberof GetDashboardResponse
|
|
1065
|
-
*/
|
|
1066
431
|
'items'?: Array<DashboardItem>;
|
|
1067
432
|
}
|
|
1068
433
|
/**
|
|
1069
434
|
* Image description
|
|
1070
|
-
* @export
|
|
1071
|
-
* @interface Image
|
|
1072
435
|
*/
|
|
1073
436
|
export interface Image {
|
|
1074
437
|
/**
|
|
1075
438
|
* Unique object identifier
|
|
1076
|
-
* @type {string}
|
|
1077
|
-
* @memberof Image
|
|
1078
439
|
*/
|
|
1079
440
|
'id'?: string;
|
|
1080
|
-
/**
|
|
1081
|
-
*
|
|
1082
|
-
* @type {string}
|
|
1083
|
-
* @memberof Image
|
|
1084
|
-
*/
|
|
1085
441
|
'src'?: string;
|
|
1086
|
-
/**
|
|
1087
|
-
*
|
|
1088
|
-
* @type {string}
|
|
1089
|
-
* @memberof Image
|
|
1090
|
-
*/
|
|
1091
442
|
'alt'?: string;
|
|
1092
|
-
/**
|
|
1093
|
-
*
|
|
1094
|
-
* @type {number}
|
|
1095
|
-
* @memberof Image
|
|
1096
|
-
*/
|
|
1097
443
|
'sortOrder'?: number;
|
|
1098
444
|
}
|
|
1099
|
-
/**
|
|
1100
|
-
*
|
|
1101
|
-
* @export
|
|
1102
|
-
* @interface InlineObject
|
|
1103
|
-
*/
|
|
1104
|
-
export interface InlineObject {
|
|
1105
|
-
/**
|
|
1106
|
-
*
|
|
1107
|
-
* @type {Array<Domain>}
|
|
1108
|
-
* @memberof InlineObject
|
|
1109
|
-
*/
|
|
1110
|
-
'domains': Array<Domain>;
|
|
1111
|
-
/**
|
|
1112
|
-
*
|
|
1113
|
-
* @type {number}
|
|
1114
|
-
* @memberof InlineObject
|
|
1115
|
-
*/
|
|
1116
|
-
'nextPageToken': number;
|
|
1117
|
-
}
|
|
1118
|
-
/**
|
|
1119
|
-
*
|
|
1120
|
-
* @export
|
|
1121
|
-
* @interface InlineObject1
|
|
1122
|
-
*/
|
|
1123
|
-
export interface InlineObject1 {
|
|
1124
|
-
/**
|
|
1125
|
-
*
|
|
1126
|
-
* @type {Array<string>}
|
|
1127
|
-
* @memberof InlineObject1
|
|
1128
|
-
*/
|
|
1129
|
-
'tags': Array<string>;
|
|
1130
|
-
/**
|
|
1131
|
-
*
|
|
1132
|
-
* @type {number}
|
|
1133
|
-
* @memberof InlineObject1
|
|
1134
|
-
*/
|
|
1135
|
-
'nextPageToken'?: number | null;
|
|
1136
|
-
}
|
|
1137
|
-
/**
|
|
1138
|
-
*
|
|
1139
|
-
* @export
|
|
1140
|
-
* @interface InlineObject2
|
|
1141
|
-
*/
|
|
1142
|
-
export interface InlineObject2 {
|
|
1143
|
-
/**
|
|
1144
|
-
* The URL to redirect to
|
|
1145
|
-
* @type {string}
|
|
1146
|
-
* @memberof InlineObject2
|
|
1147
|
-
*/
|
|
1148
|
-
'redirect_url': string;
|
|
1149
|
-
}
|
|
1150
|
-
/**
|
|
1151
|
-
*
|
|
1152
|
-
* @export
|
|
1153
|
-
* @interface ListCustomerEnquiries200Response
|
|
1154
|
-
*/
|
|
1155
445
|
export interface ListCustomerEnquiries200Response {
|
|
1156
|
-
/**
|
|
1157
|
-
*
|
|
1158
|
-
* @type {Array<Enquiry>}
|
|
1159
|
-
* @memberof ListCustomerEnquiries200Response
|
|
1160
|
-
*/
|
|
1161
446
|
'enquiries'?: Array<Enquiry>;
|
|
1162
|
-
/**
|
|
1163
|
-
*
|
|
1164
|
-
* @type {number}
|
|
1165
|
-
* @memberof ListCustomerEnquiries200Response
|
|
1166
|
-
*/
|
|
1167
447
|
'nextPageToken'?: number | null;
|
|
1168
448
|
}
|
|
1169
|
-
/**
|
|
1170
|
-
*
|
|
1171
|
-
* @export
|
|
1172
|
-
* @interface ListCustomerEnquiryLogs200Response
|
|
1173
|
-
*/
|
|
1174
449
|
export interface ListCustomerEnquiryLogs200Response {
|
|
1175
|
-
/**
|
|
1176
|
-
*
|
|
1177
|
-
* @type {Array<ListCustomerEnquiryLogs200ResponseLogsInner>}
|
|
1178
|
-
* @memberof ListCustomerEnquiryLogs200Response
|
|
1179
|
-
*/
|
|
1180
450
|
'logs': Array<ListCustomerEnquiryLogs200ResponseLogsInner>;
|
|
1181
451
|
}
|
|
1182
|
-
/**
|
|
1183
|
-
*
|
|
1184
|
-
* @export
|
|
1185
|
-
* @interface ListCustomerEnquiryLogs200ResponseLogsInner
|
|
1186
|
-
*/
|
|
1187
452
|
export interface ListCustomerEnquiryLogs200ResponseLogsInner {
|
|
1188
|
-
/**
|
|
1189
|
-
*
|
|
1190
|
-
* @type {ListCustomerEnquiryLogs200ResponseLogsInnerCustomer}
|
|
1191
|
-
* @memberof ListCustomerEnquiryLogs200ResponseLogsInner
|
|
1192
|
-
*/
|
|
1193
453
|
'customer': ListCustomerEnquiryLogs200ResponseLogsInnerCustomer;
|
|
1194
|
-
/**
|
|
1195
|
-
*
|
|
1196
|
-
* @type {string}
|
|
1197
|
-
* @memberof ListCustomerEnquiryLogs200ResponseLogsInner
|
|
1198
|
-
*/
|
|
1199
454
|
'createdAt': string;
|
|
1200
455
|
}
|
|
1201
|
-
/**
|
|
1202
|
-
*
|
|
1203
|
-
* @export
|
|
1204
|
-
* @interface ListCustomerEnquiryLogs200ResponseLogsInnerCustomer
|
|
1205
|
-
*/
|
|
1206
456
|
export interface ListCustomerEnquiryLogs200ResponseLogsInnerCustomer {
|
|
1207
|
-
/**
|
|
1208
|
-
*
|
|
1209
|
-
* @type {string}
|
|
1210
|
-
* @memberof ListCustomerEnquiryLogs200ResponseLogsInnerCustomer
|
|
1211
|
-
*/
|
|
1212
457
|
'id'?: string;
|
|
1213
458
|
/**
|
|
1214
459
|
* API reference for the customer
|
|
1215
|
-
* @type {string}
|
|
1216
|
-
* @memberof ListCustomerEnquiryLogs200ResponseLogsInnerCustomer
|
|
1217
460
|
*/
|
|
1218
461
|
'ref'?: string;
|
|
1219
|
-
/**
|
|
1220
|
-
*
|
|
1221
|
-
* @type {string}
|
|
1222
|
-
* @memberof ListCustomerEnquiryLogs200ResponseLogsInnerCustomer
|
|
1223
|
-
*/
|
|
1224
462
|
'firstName'?: string;
|
|
1225
|
-
/**
|
|
1226
|
-
*
|
|
1227
|
-
* @type {string}
|
|
1228
|
-
* @memberof ListCustomerEnquiryLogs200ResponseLogsInnerCustomer
|
|
1229
|
-
*/
|
|
1230
463
|
'lastName'?: string;
|
|
1231
|
-
/**
|
|
1232
|
-
*
|
|
1233
|
-
* @type {string}
|
|
1234
|
-
* @memberof ListCustomerEnquiryLogs200ResponseLogsInnerCustomer
|
|
1235
|
-
*/
|
|
1236
464
|
'email'?: string;
|
|
1237
465
|
}
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
466
|
+
export interface ListCustomerTags200Response {
|
|
467
|
+
'tags': Array<string>;
|
|
468
|
+
'nextPageToken'?: number | null;
|
|
469
|
+
}
|
|
470
|
+
export interface ListDomains200Response {
|
|
471
|
+
'domains': Array<Domain>;
|
|
472
|
+
'nextPageToken': number;
|
|
473
|
+
}
|
|
1243
474
|
export interface ModerateReviewRequest {
|
|
1244
475
|
/**
|
|
1245
476
|
* Whether the review has been approved or not. If the review is not enabled, it will not be visible to the public.
|
|
1246
|
-
* @type {boolean}
|
|
1247
|
-
* @memberof ModerateReviewRequest
|
|
1248
477
|
*/
|
|
1249
478
|
'enabled'?: boolean;
|
|
1250
479
|
}
|
|
1251
|
-
/**
|
|
1252
|
-
*
|
|
1253
|
-
* @export
|
|
1254
|
-
* @interface Option
|
|
1255
|
-
*/
|
|
1256
480
|
export interface Option {
|
|
1257
481
|
/**
|
|
1258
482
|
* Option name
|
|
1259
|
-
* @type {string}
|
|
1260
|
-
* @memberof Option
|
|
1261
483
|
*/
|
|
1262
484
|
'name': string;
|
|
1263
485
|
/**
|
|
1264
486
|
* Option value
|
|
1265
|
-
* @type {string}
|
|
1266
|
-
* @memberof Option
|
|
1267
487
|
*/
|
|
1268
488
|
'value': string;
|
|
1269
489
|
}
|
|
1270
|
-
/**
|
|
1271
|
-
*
|
|
1272
|
-
* @export
|
|
1273
|
-
* @interface Order
|
|
1274
|
-
*/
|
|
1275
490
|
export interface Order {
|
|
1276
491
|
/**
|
|
1277
492
|
* Unique object identifier
|
|
1278
|
-
* @type {string}
|
|
1279
|
-
* @memberof Order
|
|
1280
493
|
*/
|
|
1281
494
|
'id'?: string;
|
|
1282
495
|
/**
|
|
1283
496
|
* A reference to the resource location
|
|
1284
|
-
* @type {string}
|
|
1285
|
-
* @memberof Order
|
|
1286
497
|
*/
|
|
1287
498
|
'ref'?: string;
|
|
1288
|
-
/**
|
|
1289
|
-
*
|
|
1290
|
-
* @type {OrderStatus}
|
|
1291
|
-
* @memberof Order
|
|
1292
|
-
*/
|
|
1293
499
|
'status'?: OrderStatus;
|
|
1294
|
-
/**
|
|
1295
|
-
*
|
|
1296
|
-
* @type {ContactInformation}
|
|
1297
|
-
* @memberof Order
|
|
1298
|
-
*/
|
|
1299
500
|
'contactInformation': ContactInformation;
|
|
1300
|
-
/**
|
|
1301
|
-
*
|
|
1302
|
-
* @type {Address}
|
|
1303
|
-
* @memberof Order
|
|
1304
|
-
*/
|
|
1305
501
|
'shippingAddress': Address;
|
|
1306
502
|
/**
|
|
1307
503
|
* ISO 8601 Timestamp
|
|
1308
|
-
* @type {string}
|
|
1309
|
-
* @memberof Order
|
|
1310
504
|
*/
|
|
1311
505
|
'createdAt'?: string;
|
|
1312
506
|
/**
|
|
1313
507
|
* ISO 8601 Timestamp
|
|
1314
|
-
* @type {string}
|
|
1315
|
-
* @memberof Order
|
|
1316
508
|
*/
|
|
1317
509
|
'updatedAt'?: string;
|
|
1318
510
|
/**
|
|
1319
511
|
* A custom reference to the merchant\'s order that will be displayed on the shipping label.
|
|
1320
|
-
* @type {string}
|
|
1321
|
-
* @memberof Order
|
|
1322
512
|
*/
|
|
1323
513
|
'merchantReference'?: string | null;
|
|
1324
|
-
/**
|
|
1325
|
-
*
|
|
1326
|
-
* @type {Array<Fulfillment>}
|
|
1327
|
-
* @memberof Order
|
|
1328
|
-
*/
|
|
1329
514
|
'fulfillments'?: Array<Fulfillment>;
|
|
1330
|
-
/**
|
|
1331
|
-
*
|
|
1332
|
-
* @type {Array<OrderItem>}
|
|
1333
|
-
* @memberof Order
|
|
1334
|
-
*/
|
|
1335
515
|
'items': Array<OrderItem>;
|
|
1336
|
-
/**
|
|
1337
|
-
*
|
|
1338
|
-
* @type {Price}
|
|
1339
|
-
* @memberof Order
|
|
1340
|
-
*/
|
|
1341
516
|
'totalPrice'?: Price;
|
|
1342
|
-
/**
|
|
1343
|
-
*
|
|
1344
|
-
* @type {Price}
|
|
1345
|
-
* @memberof Order
|
|
1346
|
-
*/
|
|
1347
517
|
'taxPrice'?: Price;
|
|
1348
|
-
/**
|
|
1349
|
-
*
|
|
1350
|
-
* @type {Price}
|
|
1351
|
-
* @memberof Order
|
|
1352
|
-
*/
|
|
1353
518
|
'subtotalPrice'?: Price;
|
|
1354
|
-
/**
|
|
1355
|
-
*
|
|
1356
|
-
* @type {Price}
|
|
1357
|
-
* @memberof Order
|
|
1358
|
-
*/
|
|
1359
519
|
'discountPrice'?: Price;
|
|
1360
|
-
/**
|
|
1361
|
-
*
|
|
1362
|
-
* @type {Coupon}
|
|
1363
|
-
* @memberof Order
|
|
1364
|
-
*/
|
|
1365
520
|
'coupon'?: Coupon | null;
|
|
1366
|
-
/**
|
|
1367
|
-
*
|
|
1368
|
-
* @type {Price}
|
|
1369
|
-
* @memberof Order
|
|
1370
|
-
*/
|
|
1371
521
|
'shippingPrice'?: Price;
|
|
1372
|
-
/**
|
|
1373
|
-
*
|
|
1374
|
-
* @type {Origin}
|
|
1375
|
-
* @memberof Order
|
|
1376
|
-
*/
|
|
1377
522
|
'origin'?: Origin;
|
|
1378
|
-
/**
|
|
1379
|
-
*
|
|
1380
|
-
* @type {Array<StatusHistoryItem>}
|
|
1381
|
-
* @memberof Order
|
|
1382
|
-
*/
|
|
1383
523
|
'statusHistory'?: Array<StatusHistoryItem>;
|
|
1384
|
-
/**
|
|
1385
|
-
*
|
|
1386
|
-
* @type {Project}
|
|
1387
|
-
* @memberof Order
|
|
1388
|
-
*/
|
|
1389
524
|
'project': Project;
|
|
1390
|
-
/**
|
|
1391
|
-
*
|
|
1392
|
-
* @type {Array<PaymentAttempt>}
|
|
1393
|
-
* @memberof Order
|
|
1394
|
-
*/
|
|
1395
525
|
'paymentAttempts'?: Array<PaymentAttempt>;
|
|
1396
526
|
/**
|
|
1397
527
|
* The integration type of the order, e.g. \"website\" or \"shopify\"
|
|
1398
|
-
* @type {string}
|
|
1399
|
-
* @memberof Order
|
|
1400
528
|
*/
|
|
1401
529
|
'integrationType'?: string;
|
|
1402
530
|
}
|
|
1403
|
-
/**
|
|
1404
|
-
*
|
|
1405
|
-
* @export
|
|
1406
|
-
* @interface OrderItem
|
|
1407
|
-
*/
|
|
1408
531
|
export interface OrderItem {
|
|
1409
532
|
/**
|
|
1410
533
|
* Unique object identifier
|
|
1411
|
-
* @type {string}
|
|
1412
|
-
* @memberof OrderItem
|
|
1413
534
|
*/
|
|
1414
535
|
'id'?: string;
|
|
1415
536
|
/**
|
|
1416
537
|
* Reference URL to the order item variant
|
|
1417
|
-
* @type {string}
|
|
1418
|
-
* @memberof OrderItem
|
|
1419
538
|
* @deprecated
|
|
1420
539
|
*/
|
|
1421
540
|
'variantRef': string;
|
|
1422
|
-
/**
|
|
1423
|
-
*
|
|
1424
|
-
* @type {Variant}
|
|
1425
|
-
* @memberof OrderItem
|
|
1426
|
-
*/
|
|
1427
541
|
'variant': Variant;
|
|
1428
542
|
/**
|
|
1429
543
|
* Options associated to an order item\'s variant, such as color and size.
|
|
1430
|
-
* @type {Array<Option>}
|
|
1431
|
-
* @memberof OrderItem
|
|
1432
544
|
*/
|
|
1433
545
|
'options'?: Array<Option>;
|
|
1434
|
-
/**
|
|
1435
|
-
*
|
|
1436
|
-
* @type {number}
|
|
1437
|
-
* @memberof OrderItem
|
|
1438
|
-
*/
|
|
1439
546
|
'quantity': number;
|
|
1440
547
|
/**
|
|
1441
548
|
* The name of the product
|
|
1442
|
-
* @type {string}
|
|
1443
|
-
* @memberof OrderItem
|
|
1444
549
|
*/
|
|
1445
550
|
'name'?: string;
|
|
1446
551
|
/**
|
|
1447
552
|
* Images
|
|
1448
|
-
* @type {Array<Image>}
|
|
1449
|
-
* @memberof OrderItem
|
|
1450
553
|
*/
|
|
1451
554
|
'images'?: Array<Image>;
|
|
1452
|
-
/**
|
|
1453
|
-
*
|
|
1454
|
-
* @type {Price}
|
|
1455
|
-
* @memberof OrderItem
|
|
1456
|
-
*/
|
|
1457
555
|
'totalPrice'?: Price;
|
|
1458
556
|
/**
|
|
1459
557
|
* This is an estimate until the order has been confirmed
|
|
1460
|
-
* @type {Price}
|
|
1461
|
-
* @memberof OrderItem
|
|
1462
558
|
*/
|
|
1463
559
|
'taxPrice'?: Price;
|
|
1464
|
-
/**
|
|
1465
|
-
*
|
|
1466
|
-
* @type {Price}
|
|
1467
|
-
* @memberof OrderItem
|
|
1468
|
-
*/
|
|
1469
560
|
'subtotalPrice'?: Price;
|
|
1470
|
-
/**
|
|
1471
|
-
*
|
|
1472
|
-
* @type {Price}
|
|
1473
|
-
* @memberof OrderItem
|
|
1474
|
-
*/
|
|
1475
561
|
'discountPrice'?: Price;
|
|
1476
562
|
/**
|
|
1477
563
|
* The price you charged the recipient for each item. It\'s highly recommended if you have international orders as it aids customs issues.
|
|
1478
|
-
* @type {Price}
|
|
1479
|
-
* @memberof OrderItem
|
|
1480
564
|
*/
|
|
1481
565
|
'recipientCost'?: Price;
|
|
1482
|
-
/**
|
|
1483
|
-
*
|
|
1484
|
-
* @type {Array<AmendmentLog>}
|
|
1485
|
-
* @memberof OrderItem
|
|
1486
|
-
*/
|
|
1487
566
|
'amendmentLogs'?: Array<AmendmentLog>;
|
|
1488
567
|
}
|
|
1489
|
-
/**
|
|
1490
|
-
*
|
|
1491
|
-
* @export
|
|
1492
|
-
* @interface OrderItem1
|
|
1493
|
-
*/
|
|
1494
568
|
export interface OrderItem1 {
|
|
1495
569
|
/**
|
|
1496
570
|
* A reference to the variant being ordered
|
|
1497
|
-
* @type {string}
|
|
1498
|
-
* @memberof OrderItem1
|
|
1499
571
|
*/
|
|
1500
572
|
'variantRef': string;
|
|
1501
|
-
/**
|
|
1502
|
-
*
|
|
1503
|
-
* @type {number}
|
|
1504
|
-
* @memberof OrderItem1
|
|
1505
|
-
*/
|
|
1506
573
|
'quantity': number;
|
|
1507
|
-
/**
|
|
1508
|
-
*
|
|
1509
|
-
* @type {OrderItem1RecipientCost}
|
|
1510
|
-
* @memberof OrderItem1
|
|
1511
|
-
*/
|
|
1512
574
|
'recipientCost'?: OrderItem1RecipientCost;
|
|
1513
575
|
}
|
|
1514
|
-
/**
|
|
1515
|
-
*
|
|
1516
|
-
* @export
|
|
1517
|
-
* @interface OrderItem1RecipientCost
|
|
1518
|
-
*/
|
|
1519
576
|
export interface OrderItem1RecipientCost {
|
|
1520
|
-
/**
|
|
1521
|
-
*
|
|
1522
|
-
* @type {string}
|
|
1523
|
-
* @memberof OrderItem1RecipientCost
|
|
1524
|
-
*/
|
|
1525
577
|
'amount': string;
|
|
1526
|
-
/**
|
|
1527
|
-
*
|
|
1528
|
-
* @type {string}
|
|
1529
|
-
* @memberof OrderItem1RecipientCost
|
|
1530
|
-
*/
|
|
1531
578
|
'currencyCode': string;
|
|
1532
579
|
}
|
|
1533
|
-
/**
|
|
1534
|
-
*
|
|
1535
|
-
* @export
|
|
1536
|
-
* @enum {string}
|
|
1537
|
-
*/
|
|
1538
580
|
export declare const OrderStatus: {
|
|
1539
581
|
readonly New: "new";
|
|
1540
582
|
readonly Paid: "paid";
|
|
@@ -1543,91 +585,30 @@ export declare const OrderStatus: {
|
|
|
1543
585
|
readonly Refunded: "refunded";
|
|
1544
586
|
};
|
|
1545
587
|
export type OrderStatus = typeof OrderStatus[keyof typeof OrderStatus];
|
|
1546
|
-
/**
|
|
1547
|
-
*
|
|
1548
|
-
* @export
|
|
1549
|
-
* @interface OrderTracking
|
|
1550
|
-
*/
|
|
1551
588
|
export interface OrderTracking {
|
|
1552
|
-
/**
|
|
1553
|
-
*
|
|
1554
|
-
* @type {string}
|
|
1555
|
-
* @memberof OrderTracking
|
|
1556
|
-
*/
|
|
1557
589
|
'courier'?: string;
|
|
1558
|
-
/**
|
|
1559
|
-
*
|
|
1560
|
-
* @type {string}
|
|
1561
|
-
* @memberof OrderTracking
|
|
1562
|
-
*/
|
|
1563
590
|
'code'?: string;
|
|
1564
|
-
/**
|
|
1565
|
-
*
|
|
1566
|
-
* @type {string}
|
|
1567
|
-
* @memberof OrderTracking
|
|
1568
|
-
*/
|
|
1569
591
|
'url'?: string;
|
|
1570
592
|
}
|
|
1571
|
-
/**
|
|
1572
|
-
*
|
|
1573
|
-
* @export
|
|
1574
|
-
* @interface OrdersResponse
|
|
1575
|
-
*/
|
|
1576
593
|
export interface OrdersResponse {
|
|
1577
|
-
/**
|
|
1578
|
-
*
|
|
1579
|
-
* @type {Array<Order>}
|
|
1580
|
-
* @memberof OrdersResponse
|
|
1581
|
-
*/
|
|
1582
594
|
'orders'?: Array<Order>;
|
|
1583
|
-
/**
|
|
1584
|
-
*
|
|
1585
|
-
* @type {number}
|
|
1586
|
-
* @memberof OrdersResponse
|
|
1587
|
-
*/
|
|
1588
595
|
'nextPageToken'?: number;
|
|
1589
596
|
}
|
|
1590
|
-
/**
|
|
1591
|
-
*
|
|
1592
|
-
* @export
|
|
1593
|
-
* @interface Origin
|
|
1594
|
-
*/
|
|
1595
597
|
export interface Origin {
|
|
1596
|
-
/**
|
|
1597
|
-
*
|
|
1598
|
-
* @type {string}
|
|
1599
|
-
* @memberof Origin
|
|
1600
|
-
*/
|
|
1601
598
|
'code'?: string;
|
|
1602
|
-
/**
|
|
1603
|
-
*
|
|
1604
|
-
* @type {boolean}
|
|
1605
|
-
* @memberof Origin
|
|
1606
|
-
*/
|
|
1607
599
|
'isPaid'?: boolean;
|
|
1608
600
|
}
|
|
1609
|
-
/**
|
|
1610
|
-
*
|
|
1611
|
-
* @export
|
|
1612
|
-
* @interface PaymentAccount
|
|
1613
|
-
*/
|
|
1614
601
|
export interface PaymentAccount {
|
|
1615
602
|
/**
|
|
1616
603
|
* The name of the payment account
|
|
1617
|
-
* @type {string}
|
|
1618
|
-
* @memberof PaymentAccount
|
|
1619
604
|
*/
|
|
1620
605
|
'name': string;
|
|
1621
606
|
/**
|
|
1622
607
|
* The payment method
|
|
1623
|
-
* @type {string}
|
|
1624
|
-
* @memberof PaymentAccount
|
|
1625
608
|
*/
|
|
1626
609
|
'method': PaymentAccountMethodEnum;
|
|
1627
610
|
/**
|
|
1628
611
|
* The configuration for the payment account
|
|
1629
|
-
* @type {{ [key: string]: string; }}
|
|
1630
|
-
* @memberof PaymentAccount
|
|
1631
612
|
*/
|
|
1632
613
|
'config': {
|
|
1633
614
|
[key: string]: string;
|
|
@@ -1639,38 +620,14 @@ export declare const PaymentAccountMethodEnum: {
|
|
|
1639
620
|
export type PaymentAccountMethodEnum = typeof PaymentAccountMethodEnum[keyof typeof PaymentAccountMethodEnum];
|
|
1640
621
|
/**
|
|
1641
622
|
* List of payment attempts for this order
|
|
1642
|
-
* @export
|
|
1643
|
-
* @interface PaymentAttempt
|
|
1644
623
|
*/
|
|
1645
624
|
export interface PaymentAttempt {
|
|
1646
|
-
/**
|
|
1647
|
-
*
|
|
1648
|
-
* @type {string}
|
|
1649
|
-
* @memberof PaymentAttempt
|
|
1650
|
-
*/
|
|
1651
625
|
'paymentProvider'?: PaymentAttemptPaymentProviderEnum;
|
|
1652
|
-
/**
|
|
1653
|
-
*
|
|
1654
|
-
* @type {string}
|
|
1655
|
-
* @memberof PaymentAttempt
|
|
1656
|
-
*/
|
|
1657
626
|
'status'?: PaymentAttemptStatusEnum;
|
|
1658
|
-
/**
|
|
1659
|
-
*
|
|
1660
|
-
* @type {string}
|
|
1661
|
-
* @memberof PaymentAttempt
|
|
1662
|
-
*/
|
|
1663
627
|
'transactionId'?: string | null;
|
|
1664
|
-
/**
|
|
1665
|
-
*
|
|
1666
|
-
* @type {string}
|
|
1667
|
-
* @memberof PaymentAttempt
|
|
1668
|
-
*/
|
|
1669
628
|
'message'?: string;
|
|
1670
629
|
/**
|
|
1671
630
|
* ISO 8601 Timestamp
|
|
1672
|
-
* @type {string}
|
|
1673
|
-
* @memberof PaymentAttempt
|
|
1674
631
|
*/
|
|
1675
632
|
'createdAt'?: string;
|
|
1676
633
|
}
|
|
@@ -1687,230 +644,90 @@ export declare const PaymentAttemptStatusEnum: {
|
|
|
1687
644
|
readonly Cancelled: "cancelled";
|
|
1688
645
|
};
|
|
1689
646
|
export type PaymentAttemptStatusEnum = typeof PaymentAttemptStatusEnum[keyof typeof PaymentAttemptStatusEnum];
|
|
1690
|
-
/**
|
|
1691
|
-
*
|
|
1692
|
-
* @export
|
|
1693
|
-
* @interface Pixel
|
|
1694
|
-
*/
|
|
1695
647
|
export interface Pixel {
|
|
1696
648
|
/**
|
|
1697
649
|
* Unique object identifier
|
|
1698
|
-
* @type {string}
|
|
1699
|
-
* @memberof Pixel
|
|
1700
650
|
*/
|
|
1701
651
|
'id': string;
|
|
1702
|
-
/**
|
|
1703
|
-
*
|
|
1704
|
-
* @type {string}
|
|
1705
|
-
* @memberof Pixel
|
|
1706
|
-
*/
|
|
1707
652
|
'name': string;
|
|
1708
|
-
/**
|
|
1709
|
-
*
|
|
1710
|
-
* @type {Array<string>}
|
|
1711
|
-
* @memberof Pixel
|
|
1712
|
-
*/
|
|
1713
653
|
'sourceProjects': Array<string>;
|
|
1714
|
-
/**
|
|
1715
|
-
*
|
|
1716
|
-
* @type {CreatePixelRequestFilters}
|
|
1717
|
-
* @memberof Pixel
|
|
1718
|
-
*/
|
|
1719
654
|
'filters': CreatePixelRequestFilters;
|
|
1720
655
|
}
|
|
1721
|
-
/**
|
|
1722
|
-
*
|
|
1723
|
-
* @export
|
|
1724
|
-
* @interface PixelsResponse
|
|
1725
|
-
*/
|
|
1726
656
|
export interface PixelsResponse {
|
|
1727
|
-
/**
|
|
1728
|
-
*
|
|
1729
|
-
* @type {Array<Pixel>}
|
|
1730
|
-
* @memberof PixelsResponse
|
|
1731
|
-
*/
|
|
1732
657
|
'pixels': Array<Pixel>;
|
|
1733
|
-
/**
|
|
1734
|
-
*
|
|
1735
|
-
* @type {number}
|
|
1736
|
-
* @memberof PixelsResponse
|
|
1737
|
-
*/
|
|
1738
658
|
'nextPageToken'?: number | null;
|
|
1739
659
|
}
|
|
1740
|
-
/**
|
|
1741
|
-
*
|
|
1742
|
-
* @export
|
|
1743
|
-
* @interface Platform
|
|
1744
|
-
*/
|
|
1745
660
|
export interface Platform {
|
|
1746
|
-
/**
|
|
1747
|
-
*
|
|
1748
|
-
* @type {string}
|
|
1749
|
-
* @memberof Platform
|
|
1750
|
-
*/
|
|
1751
661
|
'id': string;
|
|
1752
|
-
|
|
1753
|
-
*
|
|
1754
|
-
* @type {string}
|
|
1755
|
-
* @memberof Platform
|
|
1756
|
-
*/
|
|
1757
|
-
'name': string;
|
|
1758
|
-
/**
|
|
1759
|
-
*
|
|
1760
|
-
* @type {Array<string>}
|
|
1761
|
-
* @memberof Platform
|
|
1762
|
-
*/
|
|
662
|
+
'name': string;
|
|
1763
663
|
'domains': Array<string>;
|
|
1764
|
-
/**
|
|
1765
|
-
*
|
|
1766
|
-
* @type {Array<PlatformLogo>}
|
|
1767
|
-
* @memberof Platform
|
|
1768
|
-
*/
|
|
1769
664
|
'logos': Array<PlatformLogo>;
|
|
1770
|
-
/**
|
|
1771
|
-
*
|
|
1772
|
-
* @type {string}
|
|
1773
|
-
* @memberof Platform
|
|
1774
|
-
*/
|
|
1775
665
|
'favicon': string | null;
|
|
1776
|
-
/**
|
|
1777
|
-
*
|
|
1778
|
-
* @type {boolean}
|
|
1779
|
-
* @memberof Platform
|
|
1780
|
-
*/
|
|
1781
666
|
'clientGiftWrapAvailable': boolean;
|
|
1782
667
|
/**
|
|
1783
668
|
* The subscription fee for the platform
|
|
1784
|
-
* @type {number}
|
|
1785
|
-
* @memberof Platform
|
|
1786
669
|
*/
|
|
1787
670
|
'storeSubscriptionFee': number;
|
|
1788
671
|
/**
|
|
1789
672
|
* The order handling fee for the platform
|
|
1790
|
-
* @type {number}
|
|
1791
|
-
* @memberof Platform
|
|
1792
673
|
*/
|
|
1793
674
|
'orderHandlingFee': number;
|
|
1794
675
|
/**
|
|
1795
676
|
* The item handling fee for the platform
|
|
1796
|
-
* @type {number}
|
|
1797
|
-
* @memberof Platform
|
|
1798
677
|
*/
|
|
1799
678
|
'itemHandlingFee': number;
|
|
679
|
+
/**
|
|
680
|
+
* The neck print fee for the platform
|
|
681
|
+
*/
|
|
682
|
+
'neckPrintFee': number;
|
|
1800
683
|
/**
|
|
1801
684
|
* Whether the platform can charge clients for orders
|
|
1802
|
-
* @type {boolean}
|
|
1803
|
-
* @memberof Platform
|
|
1804
685
|
*/
|
|
1805
686
|
'chargeClients': boolean;
|
|
1806
687
|
}
|
|
1807
|
-
/**
|
|
1808
|
-
*
|
|
1809
|
-
* @export
|
|
1810
|
-
* @interface PlatformLogo
|
|
1811
|
-
*/
|
|
1812
688
|
export interface PlatformLogo {
|
|
1813
|
-
/**
|
|
1814
|
-
*
|
|
1815
|
-
* @type {string}
|
|
1816
|
-
* @memberof PlatformLogo
|
|
1817
|
-
*/
|
|
1818
689
|
'url': string;
|
|
1819
|
-
/**
|
|
1820
|
-
*
|
|
1821
|
-
* @type {{ [key: string]: string; }}
|
|
1822
|
-
* @memberof PlatformLogo
|
|
1823
|
-
*/
|
|
1824
690
|
'meta': {
|
|
1825
691
|
[key: string]: string;
|
|
1826
692
|
};
|
|
1827
693
|
}
|
|
1828
694
|
/**
|
|
1829
695
|
* Standard price definition that defines the amount and currency.
|
|
1830
|
-
* @export
|
|
1831
|
-
* @interface Price
|
|
1832
696
|
*/
|
|
1833
697
|
export interface Price {
|
|
1834
698
|
/**
|
|
1835
699
|
* Price including tax in the specified currency.
|
|
1836
|
-
* @type {string}
|
|
1837
|
-
* @memberof Price
|
|
1838
700
|
*/
|
|
1839
701
|
'amount'?: string;
|
|
1840
702
|
/**
|
|
1841
703
|
* Currency code for the currency the price is valued in.
|
|
1842
|
-
* @type {string}
|
|
1843
|
-
* @memberof Price
|
|
1844
704
|
*/
|
|
1845
705
|
'currencyCode'?: string;
|
|
1846
706
|
}
|
|
1847
|
-
/**
|
|
1848
|
-
*
|
|
1849
|
-
* @export
|
|
1850
|
-
* @interface Project
|
|
1851
|
-
*/
|
|
1852
707
|
export interface Project {
|
|
1853
|
-
/**
|
|
1854
|
-
*
|
|
1855
|
-
* @type {string}
|
|
1856
|
-
* @memberof Project
|
|
1857
|
-
*/
|
|
1858
708
|
'id': string;
|
|
1859
709
|
/**
|
|
1860
710
|
* The name of the project
|
|
1861
|
-
* @type {string}
|
|
1862
|
-
* @memberof Project
|
|
1863
711
|
*/
|
|
1864
712
|
'name': string;
|
|
1865
713
|
}
|
|
1866
|
-
/**
|
|
1867
|
-
*
|
|
1868
|
-
* @export
|
|
1869
|
-
* @interface ReturnOrderRequest
|
|
1870
|
-
*/
|
|
1871
714
|
export interface ReturnOrderRequest {
|
|
1872
|
-
/**
|
|
1873
|
-
*
|
|
1874
|
-
* @type {Array<ReturnOrderRequestReturnsInner>}
|
|
1875
|
-
* @memberof ReturnOrderRequest
|
|
1876
|
-
*/
|
|
1877
715
|
'returns': Array<ReturnOrderRequestReturnsInner>;
|
|
1878
716
|
}
|
|
1879
|
-
/**
|
|
1880
|
-
*
|
|
1881
|
-
* @export
|
|
1882
|
-
* @interface ReturnOrderRequestReturnsInner
|
|
1883
|
-
*/
|
|
1884
717
|
export interface ReturnOrderRequestReturnsInner {
|
|
1885
718
|
/**
|
|
1886
719
|
* Unique order item identifier
|
|
1887
|
-
* @type {string}
|
|
1888
|
-
* @memberof ReturnOrderRequestReturnsInner
|
|
1889
720
|
*/
|
|
1890
721
|
'id': string;
|
|
1891
|
-
/**
|
|
1892
|
-
*
|
|
1893
|
-
* @type {string}
|
|
1894
|
-
* @memberof ReturnOrderRequestReturnsInner
|
|
1895
|
-
*/
|
|
1896
722
|
'action': ReturnOrderRequestReturnsInnerActionEnum;
|
|
1897
723
|
/**
|
|
1898
724
|
* The quantity of the item to refund or exchange. This must be less than or equal to the quantity of the item in the order.
|
|
1899
|
-
* @type {number}
|
|
1900
|
-
* @memberof ReturnOrderRequestReturnsInner
|
|
1901
725
|
*/
|
|
1902
726
|
'quantity': number;
|
|
1903
727
|
/**
|
|
1904
728
|
* A reference to the variant being ordered
|
|
1905
|
-
* @type {string}
|
|
1906
|
-
* @memberof ReturnOrderRequestReturnsInner
|
|
1907
729
|
*/
|
|
1908
730
|
'newVariantRef'?: string;
|
|
1909
|
-
/**
|
|
1910
|
-
*
|
|
1911
|
-
* @type {ReturnOrderRequestReturnsInnerReason}
|
|
1912
|
-
* @memberof ReturnOrderRequestReturnsInner
|
|
1913
|
-
*/
|
|
1914
731
|
'reason': ReturnOrderRequestReturnsInnerReason;
|
|
1915
732
|
}
|
|
1916
733
|
export declare const ReturnOrderRequestReturnsInnerActionEnum: {
|
|
@@ -1918,544 +735,192 @@ export declare const ReturnOrderRequestReturnsInnerActionEnum: {
|
|
|
1918
735
|
readonly Exchange: "exchange";
|
|
1919
736
|
};
|
|
1920
737
|
export type ReturnOrderRequestReturnsInnerActionEnum = typeof ReturnOrderRequestReturnsInnerActionEnum[keyof typeof ReturnOrderRequestReturnsInnerActionEnum];
|
|
1921
|
-
/**
|
|
1922
|
-
*
|
|
1923
|
-
* @export
|
|
1924
|
-
* @interface ReturnOrderRequestReturnsInnerReason
|
|
1925
|
-
*/
|
|
1926
738
|
export interface ReturnOrderRequestReturnsInnerReason {
|
|
1927
739
|
/**
|
|
1928
740
|
* A reference to the reason for the return or exchange.
|
|
1929
|
-
* @type {string}
|
|
1930
|
-
* @memberof ReturnOrderRequestReturnsInnerReason
|
|
1931
741
|
*/
|
|
1932
742
|
'reasonRef': string;
|
|
1933
743
|
/**
|
|
1934
744
|
* Additional comments as to why the item is being returned or exchanged.
|
|
1935
|
-
* @type {string}
|
|
1936
|
-
* @memberof ReturnOrderRequestReturnsInnerReason
|
|
1937
745
|
*/
|
|
1938
746
|
'additionalComments'?: string | null;
|
|
1939
747
|
}
|
|
1940
|
-
/**
|
|
1941
|
-
*
|
|
1942
|
-
* @export
|
|
1943
|
-
* @interface Review
|
|
1944
|
-
*/
|
|
1945
748
|
export interface Review {
|
|
1946
749
|
/**
|
|
1947
750
|
* Unique object identifier
|
|
1948
|
-
* @type {string}
|
|
1949
|
-
* @memberof Review
|
|
1950
751
|
*/
|
|
1951
752
|
'id': string;
|
|
1952
753
|
/**
|
|
1953
754
|
* Text content of the review
|
|
1954
|
-
* @type {string}
|
|
1955
|
-
* @memberof Review
|
|
1956
755
|
*/
|
|
1957
756
|
'text': string;
|
|
1958
|
-
/**
|
|
1959
|
-
*
|
|
1960
|
-
* @type {ReviewProduct}
|
|
1961
|
-
* @memberof Review
|
|
1962
|
-
*/
|
|
1963
757
|
'product'?: ReviewProduct;
|
|
1964
|
-
/**
|
|
1965
|
-
*
|
|
1966
|
-
* @type {ReviewAuthor}
|
|
1967
|
-
* @memberof Review
|
|
1968
|
-
*/
|
|
1969
758
|
'author'?: ReviewAuthor;
|
|
1970
759
|
/**
|
|
1971
760
|
* Rating of the review
|
|
1972
|
-
* @type {number}
|
|
1973
|
-
* @memberof Review
|
|
1974
761
|
*/
|
|
1975
762
|
'rating'?: number;
|
|
1976
763
|
/**
|
|
1977
764
|
* Google\'s sentiment analysis score
|
|
1978
|
-
* @type {number}
|
|
1979
|
-
* @memberof Review
|
|
1980
765
|
*/
|
|
1981
766
|
'sentiment'?: number;
|
|
1982
767
|
/**
|
|
1983
768
|
* Whether the review has been approved or not. If the review is not enabled, it will not be visible to the public.
|
|
1984
|
-
* @type {boolean}
|
|
1985
|
-
* @memberof Review
|
|
1986
769
|
*/
|
|
1987
770
|
'enabled': boolean;
|
|
1988
|
-
/**
|
|
1989
|
-
*
|
|
1990
|
-
* @type {string}
|
|
1991
|
-
* @memberof Review
|
|
1992
|
-
*/
|
|
1993
771
|
'createdAt'?: string;
|
|
1994
|
-
/**
|
|
1995
|
-
*
|
|
1996
|
-
* @type {Project}
|
|
1997
|
-
* @memberof Review
|
|
1998
|
-
*/
|
|
1999
772
|
'project': Project;
|
|
2000
|
-
/**
|
|
2001
|
-
*
|
|
2002
|
-
* @type {Array<ReviewImagesInner>}
|
|
2003
|
-
* @memberof Review
|
|
2004
|
-
*/
|
|
2005
773
|
'images'?: Array<ReviewImagesInner>;
|
|
2006
|
-
/**
|
|
2007
|
-
*
|
|
2008
|
-
* @type {Array<ReviewReply>}
|
|
2009
|
-
* @memberof Review
|
|
2010
|
-
*/
|
|
2011
774
|
'replies'?: Array<ReviewReply> | null;
|
|
2012
775
|
}
|
|
2013
|
-
/**
|
|
2014
|
-
*
|
|
2015
|
-
* @export
|
|
2016
|
-
* @interface ReviewAuthor
|
|
2017
|
-
*/
|
|
2018
776
|
export interface ReviewAuthor {
|
|
2019
777
|
/**
|
|
2020
778
|
* Name of the review\'s author
|
|
2021
|
-
* @type {string}
|
|
2022
|
-
* @memberof ReviewAuthor
|
|
2023
779
|
*/
|
|
2024
780
|
'name'?: string;
|
|
2025
781
|
/**
|
|
2026
782
|
* Email of the review\'s author
|
|
2027
|
-
* @type {string}
|
|
2028
|
-
* @memberof ReviewAuthor
|
|
2029
783
|
*/
|
|
2030
784
|
'email'?: string;
|
|
2031
785
|
}
|
|
2032
|
-
/**
|
|
2033
|
-
*
|
|
2034
|
-
* @export
|
|
2035
|
-
* @interface ReviewImagesInner
|
|
2036
|
-
*/
|
|
2037
786
|
export interface ReviewImagesInner {
|
|
2038
787
|
/**
|
|
2039
788
|
* URL of the image
|
|
2040
|
-
* @type {string}
|
|
2041
|
-
* @memberof ReviewImagesInner
|
|
2042
789
|
*/
|
|
2043
790
|
'src'?: string;
|
|
2044
791
|
/**
|
|
2045
792
|
* Alternative text for the image
|
|
2046
|
-
* @type {string}
|
|
2047
|
-
* @memberof ReviewImagesInner
|
|
2048
793
|
*/
|
|
2049
794
|
'alt'?: string;
|
|
2050
795
|
}
|
|
2051
796
|
/**
|
|
2052
797
|
* The product that the review is for
|
|
2053
|
-
* @export
|
|
2054
|
-
* @interface ReviewProduct
|
|
2055
798
|
*/
|
|
2056
799
|
export interface ReviewProduct {
|
|
2057
800
|
/**
|
|
2058
801
|
* Unique object identifier
|
|
2059
|
-
* @type {string}
|
|
2060
|
-
* @memberof ReviewProduct
|
|
2061
802
|
*/
|
|
2062
803
|
'id'?: string;
|
|
2063
804
|
/**
|
|
2064
805
|
* The title of the product
|
|
2065
|
-
* @type {string}
|
|
2066
|
-
* @memberof ReviewProduct
|
|
2067
806
|
*/
|
|
2068
807
|
'title'?: string;
|
|
2069
808
|
}
|
|
2070
|
-
/**
|
|
2071
|
-
*
|
|
2072
|
-
* @export
|
|
2073
|
-
* @interface ReviewReply
|
|
2074
|
-
*/
|
|
2075
809
|
export interface ReviewReply {
|
|
2076
810
|
/**
|
|
2077
811
|
* Unique object identifier
|
|
2078
|
-
* @type {string}
|
|
2079
|
-
* @memberof ReviewReply
|
|
2080
812
|
*/
|
|
2081
813
|
'id': string;
|
|
2082
814
|
/**
|
|
2083
815
|
* Text content of the reply
|
|
2084
|
-
* @type {string}
|
|
2085
|
-
* @memberof ReviewReply
|
|
2086
816
|
*/
|
|
2087
817
|
'text': string;
|
|
2088
|
-
/**
|
|
2089
|
-
*
|
|
2090
|
-
* @type {ReviewReplyAuthor}
|
|
2091
|
-
* @memberof ReviewReply
|
|
2092
|
-
*/
|
|
2093
818
|
'author'?: ReviewReplyAuthor;
|
|
2094
|
-
/**
|
|
2095
|
-
*
|
|
2096
|
-
* @type {string}
|
|
2097
|
-
* @memberof ReviewReply
|
|
2098
|
-
*/
|
|
2099
819
|
'createdAt'?: string;
|
|
2100
820
|
}
|
|
2101
|
-
/**
|
|
2102
|
-
*
|
|
2103
|
-
* @export
|
|
2104
|
-
* @interface ReviewReplyAuthor
|
|
2105
|
-
*/
|
|
2106
821
|
export interface ReviewReplyAuthor {
|
|
2107
822
|
/**
|
|
2108
823
|
* Name of the reply\'s author
|
|
2109
|
-
* @type {string}
|
|
2110
|
-
* @memberof ReviewReplyAuthor
|
|
2111
824
|
*/
|
|
2112
825
|
'name'?: string;
|
|
2113
826
|
}
|
|
2114
|
-
/**
|
|
2115
|
-
*
|
|
2116
|
-
* @export
|
|
2117
|
-
* @interface ReviewsResponse
|
|
2118
|
-
*/
|
|
2119
827
|
export interface ReviewsResponse {
|
|
2120
|
-
/**
|
|
2121
|
-
*
|
|
2122
|
-
* @type {Array<Review>}
|
|
2123
|
-
* @memberof ReviewsResponse
|
|
2124
|
-
*/
|
|
2125
828
|
'reviews'?: Array<Review>;
|
|
2126
829
|
/**
|
|
2127
830
|
* The token referencing the next page number
|
|
2128
|
-
* @type {number}
|
|
2129
|
-
* @memberof ReviewsResponse
|
|
2130
831
|
*/
|
|
2131
832
|
'nextPageToken'?: number | null;
|
|
2132
833
|
}
|
|
2133
|
-
/**
|
|
2134
|
-
*
|
|
2135
|
-
* @export
|
|
2136
|
-
* @interface SaveDashboardRequest
|
|
2137
|
-
*/
|
|
2138
834
|
export interface SaveDashboardRequest {
|
|
2139
|
-
/**
|
|
2140
|
-
*
|
|
2141
|
-
* @type {Array<DashboardItem>}
|
|
2142
|
-
* @memberof SaveDashboardRequest
|
|
2143
|
-
*/
|
|
2144
835
|
'items'?: Array<DashboardItem>;
|
|
2145
836
|
}
|
|
2146
|
-
/**
|
|
2147
|
-
*
|
|
2148
|
-
* @export
|
|
2149
|
-
* @interface SaveTermsRequest
|
|
2150
|
-
*/
|
|
2151
837
|
export interface SaveTermsRequest {
|
|
2152
|
-
/**
|
|
2153
|
-
*
|
|
2154
|
-
* @type {string}
|
|
2155
|
-
* @memberof SaveTermsRequest
|
|
2156
|
-
*/
|
|
2157
838
|
'title': string;
|
|
2158
|
-
/**
|
|
2159
|
-
*
|
|
2160
|
-
* @type {string}
|
|
2161
|
-
* @memberof SaveTermsRequest
|
|
2162
|
-
*/
|
|
2163
839
|
'content': string;
|
|
2164
|
-
/**
|
|
2165
|
-
*
|
|
2166
|
-
* @type {boolean}
|
|
2167
|
-
* @memberof SaveTermsRequest
|
|
2168
|
-
*/
|
|
2169
840
|
'enabled': boolean;
|
|
2170
|
-
/**
|
|
2171
|
-
*
|
|
2172
|
-
* @type {boolean}
|
|
2173
|
-
* @memberof SaveTermsRequest
|
|
2174
|
-
*/
|
|
2175
841
|
'updateVersion': boolean;
|
|
2176
842
|
}
|
|
2177
|
-
/**
|
|
2178
|
-
*
|
|
2179
|
-
* @export
|
|
2180
|
-
* @interface ShippingMethod
|
|
2181
|
-
*/
|
|
2182
843
|
export interface ShippingMethod {
|
|
2183
844
|
/**
|
|
2184
845
|
* Unique object identifier
|
|
2185
|
-
* @type {string}
|
|
2186
|
-
* @memberof ShippingMethod
|
|
2187
846
|
*/
|
|
2188
847
|
'id'?: string;
|
|
2189
|
-
/**
|
|
2190
|
-
*
|
|
2191
|
-
* @type {string}
|
|
2192
|
-
* @memberof ShippingMethod
|
|
2193
|
-
*/
|
|
2194
848
|
'name'?: string;
|
|
2195
|
-
/**
|
|
2196
|
-
*
|
|
2197
|
-
* @type {string}
|
|
2198
|
-
* @memberof ShippingMethod
|
|
2199
|
-
*/
|
|
2200
849
|
'description'?: string;
|
|
2201
|
-
/**
|
|
2202
|
-
*
|
|
2203
|
-
* @type {DeliveryEstimates}
|
|
2204
|
-
* @memberof ShippingMethod
|
|
2205
|
-
*/
|
|
2206
850
|
'deliveryEstimates'?: DeliveryEstimates;
|
|
2207
|
-
/**
|
|
2208
|
-
*
|
|
2209
|
-
* @type {Price}
|
|
2210
|
-
* @memberof ShippingMethod
|
|
2211
|
-
*/
|
|
2212
851
|
'totalPrice'?: Price;
|
|
2213
|
-
/**
|
|
2214
|
-
*
|
|
2215
|
-
* @type {Price}
|
|
2216
|
-
* @memberof ShippingMethod
|
|
2217
|
-
*/
|
|
2218
852
|
'taxPrice'?: Price;
|
|
2219
|
-
/**
|
|
2220
|
-
*
|
|
2221
|
-
* @type {Price}
|
|
2222
|
-
* @memberof ShippingMethod
|
|
2223
|
-
*/
|
|
2224
853
|
'subtotalPrice'?: Price;
|
|
2225
|
-
/**
|
|
2226
|
-
*
|
|
2227
|
-
* @type {Price}
|
|
2228
|
-
* @memberof ShippingMethod
|
|
2229
|
-
*/
|
|
2230
854
|
'discountPrice'?: Price;
|
|
2231
855
|
}
|
|
2232
|
-
/**
|
|
2233
|
-
*
|
|
2234
|
-
* @export
|
|
2235
|
-
* @interface Statistics
|
|
2236
|
-
*/
|
|
2237
856
|
export interface Statistics {
|
|
2238
|
-
/**
|
|
2239
|
-
*
|
|
2240
|
-
* @type {number}
|
|
2241
|
-
* @memberof Statistics
|
|
2242
|
-
*/
|
|
2243
857
|
'lifetimeValue': number;
|
|
2244
|
-
/**
|
|
2245
|
-
*
|
|
2246
|
-
* @type {number}
|
|
2247
|
-
* @memberof Statistics
|
|
2248
|
-
*/
|
|
2249
858
|
'totalOrderCount': number;
|
|
2250
|
-
/**
|
|
2251
|
-
*
|
|
2252
|
-
* @type {number}
|
|
2253
|
-
* @memberof Statistics
|
|
2254
|
-
*/
|
|
2255
859
|
'refundedOrderCount': number;
|
|
2256
|
-
/**
|
|
2257
|
-
*
|
|
2258
|
-
* @type {string}
|
|
2259
|
-
* @memberof Statistics
|
|
2260
|
-
*/
|
|
2261
860
|
'lastPurchased': string | null;
|
|
2262
|
-
/**
|
|
2263
|
-
*
|
|
2264
|
-
* @type {boolean}
|
|
2265
|
-
* @memberof Statistics
|
|
2266
|
-
*/
|
|
2267
861
|
'usedDiscount': boolean;
|
|
2268
862
|
}
|
|
2269
|
-
/**
|
|
2270
|
-
*
|
|
2271
|
-
* @export
|
|
2272
|
-
* @interface StatusHistoryItem
|
|
2273
|
-
*/
|
|
2274
863
|
export interface StatusHistoryItem {
|
|
2275
|
-
/**
|
|
2276
|
-
*
|
|
2277
|
-
* @type {OrderStatus}
|
|
2278
|
-
* @memberof StatusHistoryItem
|
|
2279
|
-
*/
|
|
2280
864
|
'status'?: OrderStatus;
|
|
2281
865
|
/**
|
|
2282
866
|
* ISO 8601 Timestamp
|
|
2283
|
-
* @type {string}
|
|
2284
|
-
* @memberof StatusHistoryItem
|
|
2285
867
|
*/
|
|
2286
868
|
'createdAt'?: string;
|
|
2287
869
|
}
|
|
2288
|
-
/**
|
|
2289
|
-
*
|
|
2290
|
-
* @export
|
|
2291
|
-
* @interface Terms
|
|
2292
|
-
*/
|
|
2293
870
|
export interface Terms {
|
|
2294
|
-
/**
|
|
2295
|
-
*
|
|
2296
|
-
* @type {string}
|
|
2297
|
-
* @memberof Terms
|
|
2298
|
-
*/
|
|
2299
871
|
'id': string;
|
|
2300
|
-
/**
|
|
2301
|
-
*
|
|
2302
|
-
* @type {string}
|
|
2303
|
-
* @memberof Terms
|
|
2304
|
-
*/
|
|
2305
872
|
'title': string;
|
|
2306
|
-
/**
|
|
2307
|
-
*
|
|
2308
|
-
* @type {string}
|
|
2309
|
-
* @memberof Terms
|
|
2310
|
-
*/
|
|
2311
873
|
'content': string;
|
|
2312
|
-
/**
|
|
2313
|
-
*
|
|
2314
|
-
* @type {number}
|
|
2315
|
-
* @memberof Terms
|
|
2316
|
-
*/
|
|
2317
874
|
'version': number;
|
|
2318
|
-
/**
|
|
2319
|
-
*
|
|
2320
|
-
* @type {boolean}
|
|
2321
|
-
* @memberof Terms
|
|
2322
|
-
*/
|
|
2323
875
|
'enabled': boolean;
|
|
2324
|
-
/**
|
|
2325
|
-
*
|
|
2326
|
-
* @type {string}
|
|
2327
|
-
* @memberof Terms
|
|
2328
|
-
*/
|
|
2329
876
|
'createdAt': string;
|
|
2330
|
-
/**
|
|
2331
|
-
*
|
|
2332
|
-
* @type {string}
|
|
2333
|
-
* @memberof Terms
|
|
2334
|
-
*/
|
|
2335
877
|
'updatedAt': string;
|
|
2336
878
|
}
|
|
2337
|
-
/**
|
|
2338
|
-
*
|
|
2339
|
-
* @export
|
|
2340
|
-
* @interface UpdateCustomerEnquiryRequest
|
|
2341
|
-
*/
|
|
2342
879
|
export interface UpdateCustomerEnquiryRequest {
|
|
2343
880
|
/**
|
|
2344
881
|
* The unique id of the user who owns the enquiry
|
|
2345
|
-
* @type {string}
|
|
2346
|
-
* @memberof UpdateCustomerEnquiryRequest
|
|
2347
882
|
*/
|
|
2348
883
|
'owner'?: string | null;
|
|
2349
884
|
}
|
|
2350
|
-
/**
|
|
2351
|
-
*
|
|
2352
|
-
* @export
|
|
2353
|
-
* @interface UpdateFulfillmentRequest
|
|
2354
|
-
*/
|
|
2355
885
|
export interface UpdateFulfillmentRequest {
|
|
2356
886
|
/**
|
|
2357
887
|
* Unique object identifier
|
|
2358
|
-
* @type {string}
|
|
2359
|
-
* @memberof UpdateFulfillmentRequest
|
|
2360
888
|
*/
|
|
2361
889
|
'fulfillerId'?: string;
|
|
2362
890
|
}
|
|
2363
|
-
/**
|
|
2364
|
-
*
|
|
2365
|
-
* @export
|
|
2366
|
-
* @interface UpdatePlatformRequest
|
|
2367
|
-
*/
|
|
2368
891
|
export interface UpdatePlatformRequest {
|
|
2369
|
-
/**
|
|
2370
|
-
*
|
|
2371
|
-
* @type {Array<PlatformLogo>}
|
|
2372
|
-
* @memberof UpdatePlatformRequest
|
|
2373
|
-
*/
|
|
2374
892
|
'logos'?: Array<PlatformLogo>;
|
|
2375
|
-
/**
|
|
2376
|
-
*
|
|
2377
|
-
* @type {string}
|
|
2378
|
-
* @memberof UpdatePlatformRequest
|
|
2379
|
-
*/
|
|
2380
893
|
'favicon'?: string;
|
|
2381
|
-
/**
|
|
2382
|
-
*
|
|
2383
|
-
* @type {boolean}
|
|
2384
|
-
* @memberof UpdatePlatformRequest
|
|
2385
|
-
*/
|
|
2386
894
|
'clientGiftWrapAvailable'?: boolean;
|
|
2387
|
-
/**
|
|
2388
|
-
*
|
|
2389
|
-
* @type {number}
|
|
2390
|
-
* @memberof UpdatePlatformRequest
|
|
2391
|
-
*/
|
|
2392
895
|
'storeSubscriptionFee'?: number;
|
|
2393
|
-
/**
|
|
2394
|
-
*
|
|
2395
|
-
* @type {number}
|
|
2396
|
-
* @memberof UpdatePlatformRequest
|
|
2397
|
-
*/
|
|
2398
896
|
'orderHandlingFee'?: number;
|
|
2399
|
-
/**
|
|
2400
|
-
*
|
|
2401
|
-
* @type {number}
|
|
2402
|
-
* @memberof UpdatePlatformRequest
|
|
2403
|
-
*/
|
|
2404
897
|
'itemHandlingFee'?: number;
|
|
2405
|
-
|
|
2406
|
-
*
|
|
2407
|
-
* @type {boolean}
|
|
2408
|
-
* @memberof UpdatePlatformRequest
|
|
2409
|
-
*/
|
|
898
|
+
'neckPrintFee'?: number;
|
|
2410
899
|
'chargeClients'?: boolean;
|
|
2411
900
|
}
|
|
2412
|
-
/**
|
|
2413
|
-
*
|
|
2414
|
-
* @export
|
|
2415
|
-
* @interface ValidationError
|
|
2416
|
-
*/
|
|
2417
901
|
export interface ValidationError {
|
|
2418
|
-
/**
|
|
2419
|
-
*
|
|
2420
|
-
* @type {string}
|
|
2421
|
-
* @memberof ValidationError
|
|
2422
|
-
*/
|
|
2423
902
|
'message': string;
|
|
2424
903
|
}
|
|
2425
|
-
/**
|
|
2426
|
-
*
|
|
2427
|
-
* @export
|
|
2428
|
-
* @interface Variant
|
|
2429
|
-
*/
|
|
2430
904
|
export interface Variant {
|
|
2431
905
|
/**
|
|
2432
906
|
* Unique object identifier
|
|
2433
|
-
* @type {string}
|
|
2434
|
-
* @memberof Variant
|
|
2435
907
|
*/
|
|
2436
908
|
'id': string;
|
|
2437
909
|
/**
|
|
2438
910
|
* A reference to the resource location
|
|
2439
|
-
* @type {string}
|
|
2440
|
-
* @memberof Variant
|
|
2441
911
|
*/
|
|
2442
912
|
'ref': string;
|
|
2443
913
|
/**
|
|
2444
914
|
* A reference to the resource location
|
|
2445
|
-
* @type {string}
|
|
2446
|
-
* @memberof Variant
|
|
2447
915
|
*/
|
|
2448
916
|
'productRef': string;
|
|
2449
917
|
/**
|
|
2450
918
|
* A reference to the resource location
|
|
2451
|
-
* @type {string}
|
|
2452
|
-
* @memberof Variant
|
|
2453
919
|
*/
|
|
2454
920
|
'warehouseVariantRef': string;
|
|
2455
921
|
}
|
|
2456
922
|
/**
|
|
2457
923
|
* CustomersApi - axios parameter creator
|
|
2458
|
-
* @export
|
|
2459
924
|
*/
|
|
2460
925
|
export declare const CustomersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2461
926
|
/**
|
|
@@ -2536,7 +1001,6 @@ export declare const CustomersApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2536
1001
|
};
|
|
2537
1002
|
/**
|
|
2538
1003
|
* CustomersApi - functional programming interface
|
|
2539
|
-
* @export
|
|
2540
1004
|
*/
|
|
2541
1005
|
export declare const CustomersApiFp: (configuration?: Configuration) => {
|
|
2542
1006
|
/**
|
|
@@ -2585,7 +1049,7 @@ export declare const CustomersApiFp: (configuration?: Configuration) => {
|
|
|
2585
1049
|
* @param {*} [options] Override http request option.
|
|
2586
1050
|
* @throws {RequiredError}
|
|
2587
1051
|
*/
|
|
2588
|
-
listCustomerTags(project: string, platformId: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1052
|
+
listCustomerTags(project: string, platformId: string, pageToken?: number, pageSize?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCustomerTags200Response>>;
|
|
2589
1053
|
/**
|
|
2590
1054
|
* List customers for a platform
|
|
2591
1055
|
* @summary List customers
|
|
@@ -2617,7 +1081,6 @@ export declare const CustomersApiFp: (configuration?: Configuration) => {
|
|
|
2617
1081
|
};
|
|
2618
1082
|
/**
|
|
2619
1083
|
* CustomersApi - factory interface
|
|
2620
|
-
* @export
|
|
2621
1084
|
*/
|
|
2622
1085
|
export declare const CustomersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2623
1086
|
/**
|
|
@@ -2643,7 +1106,7 @@ export declare const CustomersApiFactory: (configuration?: Configuration, basePa
|
|
|
2643
1106
|
* @param {*} [options] Override http request option.
|
|
2644
1107
|
* @throws {RequiredError}
|
|
2645
1108
|
*/
|
|
2646
|
-
listCustomerTags(requestParameters: CustomersApiListCustomerTagsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
1109
|
+
listCustomerTags(requestParameters: CustomersApiListCustomerTagsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListCustomerTags200Response>;
|
|
2647
1110
|
/**
|
|
2648
1111
|
* List customers for a platform
|
|
2649
1112
|
* @summary List customers
|
|
@@ -2655,319 +1118,214 @@ export declare const CustomersApiFactory: (configuration?: Configuration, basePa
|
|
|
2655
1118
|
};
|
|
2656
1119
|
/**
|
|
2657
1120
|
* Request parameters for exportCustomers operation in CustomersApi.
|
|
2658
|
-
* @export
|
|
2659
|
-
* @interface CustomersApiExportCustomersRequest
|
|
2660
1121
|
*/
|
|
2661
1122
|
export interface CustomersApiExportCustomersRequest {
|
|
2662
1123
|
/**
|
|
2663
1124
|
* Project unique identifier
|
|
2664
|
-
* @type {string}
|
|
2665
|
-
* @memberof CustomersApiExportCustomers
|
|
2666
1125
|
*/
|
|
2667
1126
|
readonly project: string;
|
|
2668
1127
|
/**
|
|
2669
1128
|
* The platform identifier
|
|
2670
|
-
* @type {string}
|
|
2671
|
-
* @memberof CustomersApiExportCustomers
|
|
2672
1129
|
*/
|
|
2673
1130
|
readonly platformId: string;
|
|
2674
1131
|
/**
|
|
2675
1132
|
* An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2676
|
-
* @type {Array<'+lifetimeValue' | '-lifetimeValue' | '+totalOrderCount' | '-totalOrderCount' | '+refundedOrderCount' | '-refundedOrderCount' | '+lastPurchased' | '-lastPurchased' | '+usedDiscount' | '-usedDiscount'>}
|
|
2677
|
-
* @memberof CustomersApiExportCustomers
|
|
2678
1133
|
*/
|
|
2679
1134
|
readonly sortBy?: Array<ExportCustomersSortByEnum>;
|
|
2680
1135
|
/**
|
|
2681
1136
|
* Filter customers by country code
|
|
2682
|
-
* @type {Array<string>}
|
|
2683
|
-
* @memberof CustomersApiExportCustomers
|
|
2684
1137
|
*/
|
|
2685
1138
|
readonly countries?: Array<string>;
|
|
2686
1139
|
/**
|
|
2687
1140
|
* Filter customers by project. In the absence of this field, all projects will be included in the export.
|
|
2688
|
-
* @type {Array<string>}
|
|
2689
|
-
* @memberof CustomersApiExportCustomers
|
|
2690
1141
|
*/
|
|
2691
1142
|
readonly projects?: Array<string>;
|
|
2692
1143
|
/**
|
|
2693
1144
|
* Filter customers by gender equal to the value provided
|
|
2694
|
-
* @type {'male' | 'female'}
|
|
2695
|
-
* @memberof CustomersApiExportCustomers
|
|
2696
1145
|
*/
|
|
2697
1146
|
readonly gender?: ExportCustomersGenderEnum;
|
|
2698
1147
|
/**
|
|
2699
1148
|
* Filter customers by purchased product types. In the absence of this field, all customers will be included in the export.
|
|
2700
|
-
* @type {Array<number>}
|
|
2701
|
-
* @memberof CustomersApiExportCustomers
|
|
2702
1149
|
*/
|
|
2703
1150
|
readonly productTypes?: Array<number>;
|
|
2704
1151
|
/**
|
|
2705
1152
|
* Filter customers by purchase demographics. In the absence of this field, all customers will be included in the export.
|
|
2706
|
-
* @type {Array<string>}
|
|
2707
|
-
* @memberof CustomersApiExportCustomers
|
|
2708
1153
|
*/
|
|
2709
1154
|
readonly demographics?: Array<string>;
|
|
2710
1155
|
/**
|
|
2711
1156
|
* Filter customers by purchase tags. In the absence of this field, all customers will be included in the export.
|
|
2712
|
-
* @type {Array<string>}
|
|
2713
|
-
* @memberof CustomersApiExportCustomers
|
|
2714
1157
|
*/
|
|
2715
1158
|
readonly tags?: Array<string>;
|
|
2716
1159
|
/**
|
|
2717
1160
|
* Filter customers by whether they have used a discount
|
|
2718
|
-
* @type {boolean}
|
|
2719
|
-
* @memberof CustomersApiExportCustomers
|
|
2720
1161
|
*/
|
|
2721
1162
|
readonly usedDiscount?: boolean;
|
|
2722
1163
|
/**
|
|
2723
1164
|
* Filter customers by total order count greater than or equal to the value provided
|
|
2724
|
-
* @type {number}
|
|
2725
|
-
* @memberof CustomersApiExportCustomers
|
|
2726
1165
|
*/
|
|
2727
1166
|
readonly minimumTotalOrderCount?: number;
|
|
2728
1167
|
/**
|
|
2729
1168
|
* Filter customers by total order count less than or equal to the value provided
|
|
2730
|
-
* @type {number}
|
|
2731
|
-
* @memberof CustomersApiExportCustomers
|
|
2732
1169
|
*/
|
|
2733
1170
|
readonly maximumTotalOrderCount?: number;
|
|
2734
1171
|
/**
|
|
2735
1172
|
* Filter customers by refunded order count greater than or equal to the value provided
|
|
2736
|
-
* @type {number}
|
|
2737
|
-
* @memberof CustomersApiExportCustomers
|
|
2738
1173
|
*/
|
|
2739
1174
|
readonly minimumRefundedOrderCount?: number;
|
|
2740
1175
|
/**
|
|
2741
1176
|
* Filter customers by refunded order count less than or equal to the value provided
|
|
2742
|
-
* @type {number}
|
|
2743
|
-
* @memberof CustomersApiExportCustomers
|
|
2744
1177
|
*/
|
|
2745
1178
|
readonly maximumRefundedOrderCount?: number;
|
|
2746
1179
|
/**
|
|
2747
1180
|
* Filter customers by lifetime value greater than or equal to the value provided
|
|
2748
|
-
* @type {number}
|
|
2749
|
-
* @memberof CustomersApiExportCustomers
|
|
2750
1181
|
*/
|
|
2751
1182
|
readonly minimumLifetimeValue?: number;
|
|
2752
1183
|
/**
|
|
2753
1184
|
* Filter customers by lifetime value less than or equal to the value provided
|
|
2754
|
-
* @type {number}
|
|
2755
|
-
* @memberof CustomersApiExportCustomers
|
|
2756
1185
|
*/
|
|
2757
1186
|
readonly maximumLifetimeValue?: number;
|
|
2758
1187
|
/**
|
|
2759
1188
|
* Start of date range to filter customers by last purchase date
|
|
2760
|
-
* @type {string}
|
|
2761
|
-
* @memberof CustomersApiExportCustomers
|
|
2762
1189
|
*/
|
|
2763
1190
|
readonly lastPurchasedStart?: string;
|
|
2764
1191
|
/**
|
|
2765
1192
|
* End of date range to filter customers by last purchase date
|
|
2766
|
-
* @type {string}
|
|
2767
|
-
* @memberof CustomersApiExportCustomers
|
|
2768
1193
|
*/
|
|
2769
1194
|
readonly lastPurchasedEnd?: string;
|
|
2770
1195
|
}
|
|
2771
1196
|
/**
|
|
2772
1197
|
* Request parameters for getCustomer operation in CustomersApi.
|
|
2773
|
-
* @export
|
|
2774
|
-
* @interface CustomersApiGetCustomerRequest
|
|
2775
1198
|
*/
|
|
2776
1199
|
export interface CustomersApiGetCustomerRequest {
|
|
2777
1200
|
/**
|
|
2778
1201
|
* Project unique identifier
|
|
2779
|
-
* @type {string}
|
|
2780
|
-
* @memberof CustomersApiGetCustomer
|
|
2781
1202
|
*/
|
|
2782
1203
|
readonly project: string;
|
|
2783
1204
|
/**
|
|
2784
1205
|
* The platform identifier
|
|
2785
|
-
* @type {string}
|
|
2786
|
-
* @memberof CustomersApiGetCustomer
|
|
2787
1206
|
*/
|
|
2788
1207
|
readonly platformId: string;
|
|
2789
1208
|
/**
|
|
2790
1209
|
* The customer identifier
|
|
2791
|
-
* @type {string}
|
|
2792
|
-
* @memberof CustomersApiGetCustomer
|
|
2793
1210
|
*/
|
|
2794
1211
|
readonly customerId: string;
|
|
2795
1212
|
}
|
|
2796
1213
|
/**
|
|
2797
1214
|
* Request parameters for listCustomerTags operation in CustomersApi.
|
|
2798
|
-
* @export
|
|
2799
|
-
* @interface CustomersApiListCustomerTagsRequest
|
|
2800
1215
|
*/
|
|
2801
1216
|
export interface CustomersApiListCustomerTagsRequest {
|
|
2802
1217
|
/**
|
|
2803
1218
|
* Project unique identifier
|
|
2804
|
-
* @type {string}
|
|
2805
|
-
* @memberof CustomersApiListCustomerTags
|
|
2806
1219
|
*/
|
|
2807
1220
|
readonly project: string;
|
|
2808
1221
|
/**
|
|
2809
1222
|
* The platform identifier
|
|
2810
|
-
* @type {string}
|
|
2811
|
-
* @memberof CustomersApiListCustomerTags
|
|
2812
1223
|
*/
|
|
2813
1224
|
readonly platformId: string;
|
|
2814
1225
|
/**
|
|
2815
1226
|
* Page reference token
|
|
2816
|
-
* @type {number}
|
|
2817
|
-
* @memberof CustomersApiListCustomerTags
|
|
2818
1227
|
*/
|
|
2819
1228
|
readonly pageToken?: number;
|
|
2820
1229
|
/**
|
|
2821
1230
|
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2822
|
-
* @type {number}
|
|
2823
|
-
* @memberof CustomersApiListCustomerTags
|
|
2824
1231
|
*/
|
|
2825
1232
|
readonly pageSize?: number;
|
|
2826
1233
|
/**
|
|
2827
1234
|
* Search term to filter results
|
|
2828
|
-
* @type {string}
|
|
2829
|
-
* @memberof CustomersApiListCustomerTags
|
|
2830
1235
|
*/
|
|
2831
1236
|
readonly search?: string;
|
|
2832
1237
|
}
|
|
2833
1238
|
/**
|
|
2834
1239
|
* Request parameters for listCustomers operation in CustomersApi.
|
|
2835
|
-
* @export
|
|
2836
|
-
* @interface CustomersApiListCustomersRequest
|
|
2837
1240
|
*/
|
|
2838
1241
|
export interface CustomersApiListCustomersRequest {
|
|
2839
1242
|
/**
|
|
2840
1243
|
* Project unique identifier
|
|
2841
|
-
* @type {string}
|
|
2842
|
-
* @memberof CustomersApiListCustomers
|
|
2843
1244
|
*/
|
|
2844
1245
|
readonly project: string;
|
|
2845
1246
|
/**
|
|
2846
1247
|
* The platform identifier
|
|
2847
|
-
* @type {string}
|
|
2848
|
-
* @memberof CustomersApiListCustomers
|
|
2849
1248
|
*/
|
|
2850
1249
|
readonly platformId: string;
|
|
2851
1250
|
/**
|
|
2852
1251
|
* Page reference token
|
|
2853
|
-
* @type {number}
|
|
2854
|
-
* @memberof CustomersApiListCustomers
|
|
2855
1252
|
*/
|
|
2856
1253
|
readonly pageToken?: number;
|
|
2857
1254
|
/**
|
|
2858
1255
|
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2859
|
-
* @type {number}
|
|
2860
|
-
* @memberof CustomersApiListCustomers
|
|
2861
1256
|
*/
|
|
2862
1257
|
readonly pageSize?: number;
|
|
2863
1258
|
/**
|
|
2864
1259
|
* Search term to filter results
|
|
2865
|
-
* @type {string}
|
|
2866
|
-
* @memberof CustomersApiListCustomers
|
|
2867
1260
|
*/
|
|
2868
1261
|
readonly search?: string;
|
|
2869
1262
|
/**
|
|
2870
1263
|
* An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2871
|
-
* @type {Array<'+lifetimeValue' | '-lifetimeValue' | '+totalOrderCount' | '-totalOrderCount' | '+refundedOrderCount' | '-refundedOrderCount' | '+lastPurchased' | '-lastPurchased' | '+usedDiscount' | '-usedDiscount'>}
|
|
2872
|
-
* @memberof CustomersApiListCustomers
|
|
2873
1264
|
*/
|
|
2874
1265
|
readonly sortBy?: Array<ListCustomersSortByEnum>;
|
|
2875
1266
|
/**
|
|
2876
1267
|
* Filter customers by country code
|
|
2877
|
-
* @type {Array<string>}
|
|
2878
|
-
* @memberof CustomersApiListCustomers
|
|
2879
1268
|
*/
|
|
2880
1269
|
readonly countries?: Array<string>;
|
|
2881
1270
|
/**
|
|
2882
1271
|
* Filter customers by project. In the absence of this field, all projects will be included in the export.
|
|
2883
|
-
* @type {Array<string>}
|
|
2884
|
-
* @memberof CustomersApiListCustomers
|
|
2885
1272
|
*/
|
|
2886
1273
|
readonly projects?: Array<string>;
|
|
2887
1274
|
/**
|
|
2888
1275
|
* Filter customers by gender equal to the value provided
|
|
2889
|
-
* @type {'male' | 'female'}
|
|
2890
|
-
* @memberof CustomersApiListCustomers
|
|
2891
1276
|
*/
|
|
2892
1277
|
readonly gender?: ListCustomersGenderEnum;
|
|
2893
1278
|
/**
|
|
2894
1279
|
* Filter customers by purchased product types. In the absence of this field, all customers will be included in the export.
|
|
2895
|
-
* @type {Array<number>}
|
|
2896
|
-
* @memberof CustomersApiListCustomers
|
|
2897
1280
|
*/
|
|
2898
1281
|
readonly productTypes?: Array<number>;
|
|
2899
1282
|
/**
|
|
2900
1283
|
* Filter customers by purchase demographics. In the absence of this field, all customers will be included in the export.
|
|
2901
|
-
* @type {Array<string>}
|
|
2902
|
-
* @memberof CustomersApiListCustomers
|
|
2903
1284
|
*/
|
|
2904
1285
|
readonly demographics?: Array<string>;
|
|
2905
1286
|
/**
|
|
2906
1287
|
* Filter customers by purchase tags. In the absence of this field, all customers will be included in the export.
|
|
2907
|
-
* @type {Array<string>}
|
|
2908
|
-
* @memberof CustomersApiListCustomers
|
|
2909
1288
|
*/
|
|
2910
1289
|
readonly tags?: Array<string>;
|
|
2911
1290
|
/**
|
|
2912
1291
|
* Filter customers by whether they have used a discount
|
|
2913
|
-
* @type {boolean}
|
|
2914
|
-
* @memberof CustomersApiListCustomers
|
|
2915
1292
|
*/
|
|
2916
1293
|
readonly usedDiscount?: boolean;
|
|
2917
1294
|
/**
|
|
2918
1295
|
* Filter customers by total order count greater than or equal to the value provided
|
|
2919
|
-
* @type {number}
|
|
2920
|
-
* @memberof CustomersApiListCustomers
|
|
2921
1296
|
*/
|
|
2922
1297
|
readonly minimumTotalOrderCount?: number;
|
|
2923
1298
|
/**
|
|
2924
1299
|
* Filter customers by total order count less than or equal to the value provided
|
|
2925
|
-
* @type {number}
|
|
2926
|
-
* @memberof CustomersApiListCustomers
|
|
2927
1300
|
*/
|
|
2928
1301
|
readonly maximumTotalOrderCount?: number;
|
|
2929
1302
|
/**
|
|
2930
1303
|
* Filter customers by refunded order count greater than or equal to the value provided
|
|
2931
|
-
* @type {number}
|
|
2932
|
-
* @memberof CustomersApiListCustomers
|
|
2933
1304
|
*/
|
|
2934
1305
|
readonly minimumRefundedOrderCount?: number;
|
|
2935
1306
|
/**
|
|
2936
1307
|
* Filter customers by refunded order count less than or equal to the value provided
|
|
2937
|
-
* @type {number}
|
|
2938
|
-
* @memberof CustomersApiListCustomers
|
|
2939
1308
|
*/
|
|
2940
1309
|
readonly maximumRefundedOrderCount?: number;
|
|
2941
1310
|
/**
|
|
2942
1311
|
* Filter customers by lifetime value greater than or equal to the value provided
|
|
2943
|
-
* @type {number}
|
|
2944
|
-
* @memberof CustomersApiListCustomers
|
|
2945
1312
|
*/
|
|
2946
1313
|
readonly minimumLifetimeValue?: number;
|
|
2947
1314
|
/**
|
|
2948
1315
|
* Filter customers by lifetime value less than or equal to the value provided
|
|
2949
|
-
* @type {number}
|
|
2950
|
-
* @memberof CustomersApiListCustomers
|
|
2951
1316
|
*/
|
|
2952
1317
|
readonly maximumLifetimeValue?: number;
|
|
2953
1318
|
/**
|
|
2954
1319
|
* Start of date range to filter customers by last purchase date
|
|
2955
|
-
* @type {string}
|
|
2956
|
-
* @memberof CustomersApiListCustomers
|
|
2957
1320
|
*/
|
|
2958
1321
|
readonly lastPurchasedStart?: string;
|
|
2959
1322
|
/**
|
|
2960
1323
|
* End of date range to filter customers by last purchase date
|
|
2961
|
-
* @type {string}
|
|
2962
|
-
* @memberof CustomersApiListCustomers
|
|
2963
1324
|
*/
|
|
2964
1325
|
readonly lastPurchasedEnd?: string;
|
|
2965
1326
|
}
|
|
2966
1327
|
/**
|
|
2967
1328
|
* CustomersApi - object-oriented interface
|
|
2968
|
-
* @export
|
|
2969
|
-
* @class CustomersApi
|
|
2970
|
-
* @extends {BaseAPI}
|
|
2971
1329
|
*/
|
|
2972
1330
|
export declare class CustomersApi extends BaseAPI {
|
|
2973
1331
|
/**
|
|
@@ -2976,7 +1334,6 @@ export declare class CustomersApi extends BaseAPI {
|
|
|
2976
1334
|
* @param {CustomersApiExportCustomersRequest} requestParameters Request parameters.
|
|
2977
1335
|
* @param {*} [options] Override http request option.
|
|
2978
1336
|
* @throws {RequiredError}
|
|
2979
|
-
* @memberof CustomersApi
|
|
2980
1337
|
*/
|
|
2981
1338
|
exportCustomers(requestParameters: CustomersApiExportCustomersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
2982
1339
|
/**
|
|
@@ -2985,7 +1342,6 @@ export declare class CustomersApi extends BaseAPI {
|
|
|
2985
1342
|
* @param {CustomersApiGetCustomerRequest} requestParameters Request parameters.
|
|
2986
1343
|
* @param {*} [options] Override http request option.
|
|
2987
1344
|
* @throws {RequiredError}
|
|
2988
|
-
* @memberof CustomersApi
|
|
2989
1345
|
*/
|
|
2990
1346
|
getCustomer(requestParameters: CustomersApiGetCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Customer, any>>;
|
|
2991
1347
|
/**
|
|
@@ -2994,22 +1350,17 @@ export declare class CustomersApi extends BaseAPI {
|
|
|
2994
1350
|
* @param {CustomersApiListCustomerTagsRequest} requestParameters Request parameters.
|
|
2995
1351
|
* @param {*} [options] Override http request option.
|
|
2996
1352
|
* @throws {RequiredError}
|
|
2997
|
-
* @memberof CustomersApi
|
|
2998
1353
|
*/
|
|
2999
|
-
listCustomerTags(requestParameters: CustomersApiListCustomerTagsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
1354
|
+
listCustomerTags(requestParameters: CustomersApiListCustomerTagsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCustomerTags200Response, any>>;
|
|
3000
1355
|
/**
|
|
3001
1356
|
* List customers for a platform
|
|
3002
1357
|
* @summary List customers
|
|
3003
1358
|
* @param {CustomersApiListCustomersRequest} requestParameters Request parameters.
|
|
3004
1359
|
* @param {*} [options] Override http request option.
|
|
3005
1360
|
* @throws {RequiredError}
|
|
3006
|
-
* @memberof CustomersApi
|
|
3007
1361
|
*/
|
|
3008
1362
|
listCustomers(requestParameters: CustomersApiListCustomersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomersResponse, any>>;
|
|
3009
1363
|
}
|
|
3010
|
-
/**
|
|
3011
|
-
* @export
|
|
3012
|
-
*/
|
|
3013
1364
|
export declare const ExportCustomersSortByEnum: {
|
|
3014
1365
|
readonly LifetimeValue: "+lifetimeValue";
|
|
3015
1366
|
readonly LifetimeValue2: "-lifetimeValue";
|
|
@@ -3023,17 +1374,11 @@ export declare const ExportCustomersSortByEnum: {
|
|
|
3023
1374
|
readonly UsedDiscount2: "-usedDiscount";
|
|
3024
1375
|
};
|
|
3025
1376
|
export type ExportCustomersSortByEnum = typeof ExportCustomersSortByEnum[keyof typeof ExportCustomersSortByEnum];
|
|
3026
|
-
/**
|
|
3027
|
-
* @export
|
|
3028
|
-
*/
|
|
3029
1377
|
export declare const ExportCustomersGenderEnum: {
|
|
3030
1378
|
readonly Male: "male";
|
|
3031
1379
|
readonly Female: "female";
|
|
3032
1380
|
};
|
|
3033
1381
|
export type ExportCustomersGenderEnum = typeof ExportCustomersGenderEnum[keyof typeof ExportCustomersGenderEnum];
|
|
3034
|
-
/**
|
|
3035
|
-
* @export
|
|
3036
|
-
*/
|
|
3037
1382
|
export declare const ListCustomersSortByEnum: {
|
|
3038
1383
|
readonly LifetimeValue: "+lifetimeValue";
|
|
3039
1384
|
readonly LifetimeValue2: "-lifetimeValue";
|
|
@@ -3047,9 +1392,6 @@ export declare const ListCustomersSortByEnum: {
|
|
|
3047
1392
|
readonly UsedDiscount2: "-usedDiscount";
|
|
3048
1393
|
};
|
|
3049
1394
|
export type ListCustomersSortByEnum = typeof ListCustomersSortByEnum[keyof typeof ListCustomersSortByEnum];
|
|
3050
|
-
/**
|
|
3051
|
-
* @export
|
|
3052
|
-
*/
|
|
3053
1395
|
export declare const ListCustomersGenderEnum: {
|
|
3054
1396
|
readonly Male: "male";
|
|
3055
1397
|
readonly Female: "female";
|
|
@@ -3057,7 +1399,6 @@ export declare const ListCustomersGenderEnum: {
|
|
|
3057
1399
|
export type ListCustomersGenderEnum = typeof ListCustomersGenderEnum[keyof typeof ListCustomersGenderEnum];
|
|
3058
1400
|
/**
|
|
3059
1401
|
* DashboardApi - axios parameter creator
|
|
3060
|
-
* @export
|
|
3061
1402
|
*/
|
|
3062
1403
|
export declare const DashboardApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3063
1404
|
/**
|
|
@@ -3082,7 +1423,6 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
3082
1423
|
};
|
|
3083
1424
|
/**
|
|
3084
1425
|
* DashboardApi - functional programming interface
|
|
3085
|
-
* @export
|
|
3086
1426
|
*/
|
|
3087
1427
|
export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
3088
1428
|
/**
|
|
@@ -3107,7 +1447,6 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
3107
1447
|
};
|
|
3108
1448
|
/**
|
|
3109
1449
|
* DashboardApi - factory interface
|
|
3110
|
-
* @export
|
|
3111
1450
|
*/
|
|
3112
1451
|
export declare const DashboardApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3113
1452
|
/**
|
|
@@ -3129,53 +1468,36 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
3129
1468
|
};
|
|
3130
1469
|
/**
|
|
3131
1470
|
* Request parameters for getDashboard operation in DashboardApi.
|
|
3132
|
-
* @export
|
|
3133
|
-
* @interface DashboardApiGetDashboardRequest
|
|
3134
1471
|
*/
|
|
3135
1472
|
export interface DashboardApiGetDashboardRequest {
|
|
3136
1473
|
/**
|
|
3137
1474
|
* Project unique identifier
|
|
3138
|
-
* @type {string}
|
|
3139
|
-
* @memberof DashboardApiGetDashboard
|
|
3140
1475
|
*/
|
|
3141
1476
|
readonly project: string;
|
|
3142
1477
|
/**
|
|
3143
1478
|
* The platform identifier
|
|
3144
|
-
* @type {string}
|
|
3145
|
-
* @memberof DashboardApiGetDashboard
|
|
3146
1479
|
*/
|
|
3147
1480
|
readonly platformId: string;
|
|
3148
1481
|
}
|
|
3149
1482
|
/**
|
|
3150
1483
|
* Request parameters for saveDashboard operation in DashboardApi.
|
|
3151
|
-
* @export
|
|
3152
|
-
* @interface DashboardApiSaveDashboardRequest
|
|
3153
1484
|
*/
|
|
3154
1485
|
export interface DashboardApiSaveDashboardRequest {
|
|
3155
1486
|
/**
|
|
3156
1487
|
* Project unique identifier
|
|
3157
|
-
* @type {string}
|
|
3158
|
-
* @memberof DashboardApiSaveDashboard
|
|
3159
1488
|
*/
|
|
3160
1489
|
readonly project: string;
|
|
3161
1490
|
/**
|
|
3162
1491
|
* The platform identifier
|
|
3163
|
-
* @type {string}
|
|
3164
|
-
* @memberof DashboardApiSaveDashboard
|
|
3165
1492
|
*/
|
|
3166
1493
|
readonly platformId: string;
|
|
3167
1494
|
/**
|
|
3168
1495
|
* Save dashboard
|
|
3169
|
-
* @type {SaveDashboardRequest}
|
|
3170
|
-
* @memberof DashboardApiSaveDashboard
|
|
3171
1496
|
*/
|
|
3172
1497
|
readonly saveDashboardRequest: SaveDashboardRequest;
|
|
3173
1498
|
}
|
|
3174
1499
|
/**
|
|
3175
1500
|
* DashboardApi - object-oriented interface
|
|
3176
|
-
* @export
|
|
3177
|
-
* @class DashboardApi
|
|
3178
|
-
* @extends {BaseAPI}
|
|
3179
1501
|
*/
|
|
3180
1502
|
export declare class DashboardApi extends BaseAPI {
|
|
3181
1503
|
/**
|
|
@@ -3184,7 +1506,6 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
3184
1506
|
* @param {DashboardApiGetDashboardRequest} requestParameters Request parameters.
|
|
3185
1507
|
* @param {*} [options] Override http request option.
|
|
3186
1508
|
* @throws {RequiredError}
|
|
3187
|
-
* @memberof DashboardApi
|
|
3188
1509
|
*/
|
|
3189
1510
|
getDashboard(requestParameters: DashboardApiGetDashboardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDashboardResponse, any>>;
|
|
3190
1511
|
/**
|
|
@@ -3193,13 +1514,11 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
3193
1514
|
* @param {DashboardApiSaveDashboardRequest} requestParameters Request parameters.
|
|
3194
1515
|
* @param {*} [options] Override http request option.
|
|
3195
1516
|
* @throws {RequiredError}
|
|
3196
|
-
* @memberof DashboardApi
|
|
3197
1517
|
*/
|
|
3198
1518
|
saveDashboard(requestParameters: DashboardApiSaveDashboardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetDashboardResponse, any>>;
|
|
3199
1519
|
}
|
|
3200
1520
|
/**
|
|
3201
1521
|
* EnquiriesApi - axios parameter creator
|
|
3202
|
-
* @export
|
|
3203
1522
|
*/
|
|
3204
1523
|
export declare const EnquiriesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3205
1524
|
/**
|
|
@@ -3260,7 +1579,6 @@ export declare const EnquiriesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
3260
1579
|
};
|
|
3261
1580
|
/**
|
|
3262
1581
|
* EnquiriesApi - functional programming interface
|
|
3263
|
-
* @export
|
|
3264
1582
|
*/
|
|
3265
1583
|
export declare const EnquiriesApiFp: (configuration?: Configuration) => {
|
|
3266
1584
|
/**
|
|
@@ -3321,7 +1639,6 @@ export declare const EnquiriesApiFp: (configuration?: Configuration) => {
|
|
|
3321
1639
|
};
|
|
3322
1640
|
/**
|
|
3323
1641
|
* EnquiriesApi - factory interface
|
|
3324
|
-
* @export
|
|
3325
1642
|
*/
|
|
3326
1643
|
export declare const EnquiriesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3327
1644
|
/**
|
|
@@ -3367,164 +1684,111 @@ export declare const EnquiriesApiFactory: (configuration?: Configuration, basePa
|
|
|
3367
1684
|
};
|
|
3368
1685
|
/**
|
|
3369
1686
|
* Request parameters for createChatChannel operation in EnquiriesApi.
|
|
3370
|
-
* @export
|
|
3371
|
-
* @interface EnquiriesApiCreateChatChannelRequest
|
|
3372
1687
|
*/
|
|
3373
1688
|
export interface EnquiriesApiCreateChatChannelRequest {
|
|
3374
1689
|
/**
|
|
3375
1690
|
* Project unique identifier
|
|
3376
|
-
* @type {string}
|
|
3377
|
-
* @memberof EnquiriesApiCreateChatChannel
|
|
3378
1691
|
*/
|
|
3379
1692
|
readonly project: string;
|
|
3380
1693
|
/**
|
|
3381
1694
|
* The platform identifier
|
|
3382
|
-
* @type {string}
|
|
3383
|
-
* @memberof EnquiriesApiCreateChatChannel
|
|
3384
1695
|
*/
|
|
3385
1696
|
readonly platformId: string;
|
|
3386
1697
|
/**
|
|
3387
1698
|
* The enquiry identifier
|
|
3388
|
-
* @type {string}
|
|
3389
|
-
* @memberof EnquiriesApiCreateChatChannel
|
|
3390
1699
|
*/
|
|
3391
1700
|
readonly enquiryId: string;
|
|
3392
1701
|
}
|
|
3393
1702
|
/**
|
|
3394
1703
|
* Request parameters for getCustomerEnquiry operation in EnquiriesApi.
|
|
3395
|
-
* @export
|
|
3396
|
-
* @interface EnquiriesApiGetCustomerEnquiryRequest
|
|
3397
1704
|
*/
|
|
3398
1705
|
export interface EnquiriesApiGetCustomerEnquiryRequest {
|
|
3399
1706
|
/**
|
|
3400
1707
|
* Project unique identifier
|
|
3401
|
-
* @type {string}
|
|
3402
|
-
* @memberof EnquiriesApiGetCustomerEnquiry
|
|
3403
1708
|
*/
|
|
3404
1709
|
readonly project: string;
|
|
3405
1710
|
/**
|
|
3406
1711
|
* The platform identifier
|
|
3407
|
-
* @type {string}
|
|
3408
|
-
* @memberof EnquiriesApiGetCustomerEnquiry
|
|
3409
1712
|
*/
|
|
3410
1713
|
readonly platformId: string;
|
|
3411
1714
|
/**
|
|
3412
1715
|
* The enquiry identifier
|
|
3413
|
-
* @type {string}
|
|
3414
|
-
* @memberof EnquiriesApiGetCustomerEnquiry
|
|
3415
1716
|
*/
|
|
3416
1717
|
readonly enquiryId: string;
|
|
3417
1718
|
}
|
|
3418
1719
|
/**
|
|
3419
1720
|
* Request parameters for listCustomerEnquiries operation in EnquiriesApi.
|
|
3420
|
-
* @export
|
|
3421
|
-
* @interface EnquiriesApiListCustomerEnquiriesRequest
|
|
3422
1721
|
*/
|
|
3423
1722
|
export interface EnquiriesApiListCustomerEnquiriesRequest {
|
|
3424
1723
|
/**
|
|
3425
1724
|
* Project unique identifier
|
|
3426
|
-
* @type {string}
|
|
3427
|
-
* @memberof EnquiriesApiListCustomerEnquiries
|
|
3428
1725
|
*/
|
|
3429
1726
|
readonly project: string;
|
|
3430
1727
|
/**
|
|
3431
1728
|
* The platform identifier
|
|
3432
|
-
* @type {string}
|
|
3433
|
-
* @memberof EnquiriesApiListCustomerEnquiries
|
|
3434
1729
|
*/
|
|
3435
1730
|
readonly platformId: string;
|
|
3436
1731
|
/**
|
|
3437
1732
|
* Page reference token
|
|
3438
|
-
* @type {number}
|
|
3439
|
-
* @memberof EnquiriesApiListCustomerEnquiries
|
|
3440
1733
|
*/
|
|
3441
1734
|
readonly pageToken?: number;
|
|
3442
1735
|
/**
|
|
3443
1736
|
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3444
|
-
* @type {number}
|
|
3445
|
-
* @memberof EnquiriesApiListCustomerEnquiries
|
|
3446
1737
|
*/
|
|
3447
1738
|
readonly pageSize?: number;
|
|
3448
1739
|
/**
|
|
3449
1740
|
* Search term to filter based on enquiry title, content, customer name and customer email.
|
|
3450
|
-
* @type {string}
|
|
3451
|
-
* @memberof EnquiriesApiListCustomerEnquiries
|
|
3452
1741
|
*/
|
|
3453
1742
|
readonly search?: string;
|
|
3454
1743
|
/**
|
|
3455
1744
|
* Start of date range to filter by
|
|
3456
|
-
* @type {string}
|
|
3457
|
-
* @memberof EnquiriesApiListCustomerEnquiries
|
|
3458
1745
|
*/
|
|
3459
1746
|
readonly start?: string;
|
|
3460
1747
|
/**
|
|
3461
1748
|
* End of date range to filter by
|
|
3462
|
-
* @type {string}
|
|
3463
|
-
* @memberof EnquiriesApiListCustomerEnquiries
|
|
3464
1749
|
*/
|
|
3465
1750
|
readonly end?: string;
|
|
3466
1751
|
}
|
|
3467
1752
|
/**
|
|
3468
1753
|
* Request parameters for listCustomerEnquiryLogs operation in EnquiriesApi.
|
|
3469
|
-
* @export
|
|
3470
|
-
* @interface EnquiriesApiListCustomerEnquiryLogsRequest
|
|
3471
1754
|
*/
|
|
3472
1755
|
export interface EnquiriesApiListCustomerEnquiryLogsRequest {
|
|
3473
1756
|
/**
|
|
3474
1757
|
* Project unique identifier
|
|
3475
|
-
* @type {string}
|
|
3476
|
-
* @memberof EnquiriesApiListCustomerEnquiryLogs
|
|
3477
1758
|
*/
|
|
3478
1759
|
readonly project: string;
|
|
3479
1760
|
/**
|
|
3480
1761
|
* The platform identifier
|
|
3481
|
-
* @type {string}
|
|
3482
|
-
* @memberof EnquiriesApiListCustomerEnquiryLogs
|
|
3483
1762
|
*/
|
|
3484
1763
|
readonly platformId: string;
|
|
3485
1764
|
/**
|
|
3486
1765
|
* The enquiry identifier
|
|
3487
|
-
* @type {string}
|
|
3488
|
-
* @memberof EnquiriesApiListCustomerEnquiryLogs
|
|
3489
1766
|
*/
|
|
3490
1767
|
readonly enquiryId: string;
|
|
3491
1768
|
}
|
|
3492
1769
|
/**
|
|
3493
1770
|
* Request parameters for updateCustomerEnquiry operation in EnquiriesApi.
|
|
3494
|
-
* @export
|
|
3495
|
-
* @interface EnquiriesApiUpdateCustomerEnquiryRequest
|
|
3496
1771
|
*/
|
|
3497
1772
|
export interface EnquiriesApiUpdateCustomerEnquiryRequest {
|
|
3498
1773
|
/**
|
|
3499
1774
|
* Project unique identifier
|
|
3500
|
-
* @type {string}
|
|
3501
|
-
* @memberof EnquiriesApiUpdateCustomerEnquiry
|
|
3502
1775
|
*/
|
|
3503
1776
|
readonly project: string;
|
|
3504
1777
|
/**
|
|
3505
1778
|
* The platform identifier
|
|
3506
|
-
* @type {string}
|
|
3507
|
-
* @memberof EnquiriesApiUpdateCustomerEnquiry
|
|
3508
1779
|
*/
|
|
3509
1780
|
readonly platformId: string;
|
|
3510
1781
|
/**
|
|
3511
1782
|
* The enquiry identifier
|
|
3512
|
-
* @type {string}
|
|
3513
|
-
* @memberof EnquiriesApiUpdateCustomerEnquiry
|
|
3514
1783
|
*/
|
|
3515
1784
|
readonly enquiryId: string;
|
|
3516
1785
|
/**
|
|
3517
1786
|
* Enquiry update
|
|
3518
|
-
* @type {UpdateCustomerEnquiryRequest}
|
|
3519
|
-
* @memberof EnquiriesApiUpdateCustomerEnquiry
|
|
3520
1787
|
*/
|
|
3521
1788
|
readonly updateCustomerEnquiryRequest: UpdateCustomerEnquiryRequest;
|
|
3522
1789
|
}
|
|
3523
1790
|
/**
|
|
3524
1791
|
* EnquiriesApi - object-oriented interface
|
|
3525
|
-
* @export
|
|
3526
|
-
* @class EnquiriesApi
|
|
3527
|
-
* @extends {BaseAPI}
|
|
3528
1792
|
*/
|
|
3529
1793
|
export declare class EnquiriesApi extends BaseAPI {
|
|
3530
1794
|
/**
|
|
@@ -3533,7 +1797,6 @@ export declare class EnquiriesApi extends BaseAPI {
|
|
|
3533
1797
|
* @param {EnquiriesApiCreateChatChannelRequest} requestParameters Request parameters.
|
|
3534
1798
|
* @param {*} [options] Override http request option.
|
|
3535
1799
|
* @throws {RequiredError}
|
|
3536
|
-
* @memberof EnquiriesApi
|
|
3537
1800
|
*/
|
|
3538
1801
|
createChatChannel(requestParameters: EnquiriesApiCreateChatChannelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateChatChannel200Response, any>>;
|
|
3539
1802
|
/**
|
|
@@ -3542,7 +1805,6 @@ export declare class EnquiriesApi extends BaseAPI {
|
|
|
3542
1805
|
* @param {EnquiriesApiGetCustomerEnquiryRequest} requestParameters Request parameters.
|
|
3543
1806
|
* @param {*} [options] Override http request option.
|
|
3544
1807
|
* @throws {RequiredError}
|
|
3545
|
-
* @memberof EnquiriesApi
|
|
3546
1808
|
*/
|
|
3547
1809
|
getCustomerEnquiry(requestParameters: EnquiriesApiGetCustomerEnquiryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Enquiry, any>>;
|
|
3548
1810
|
/**
|
|
@@ -3551,7 +1813,6 @@ export declare class EnquiriesApi extends BaseAPI {
|
|
|
3551
1813
|
* @param {EnquiriesApiListCustomerEnquiriesRequest} requestParameters Request parameters.
|
|
3552
1814
|
* @param {*} [options] Override http request option.
|
|
3553
1815
|
* @throws {RequiredError}
|
|
3554
|
-
* @memberof EnquiriesApi
|
|
3555
1816
|
*/
|
|
3556
1817
|
listCustomerEnquiries(requestParameters: EnquiriesApiListCustomerEnquiriesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCustomerEnquiries200Response, any>>;
|
|
3557
1818
|
/**
|
|
@@ -3560,7 +1821,6 @@ export declare class EnquiriesApi extends BaseAPI {
|
|
|
3560
1821
|
* @param {EnquiriesApiListCustomerEnquiryLogsRequest} requestParameters Request parameters.
|
|
3561
1822
|
* @param {*} [options] Override http request option.
|
|
3562
1823
|
* @throws {RequiredError}
|
|
3563
|
-
* @memberof EnquiriesApi
|
|
3564
1824
|
*/
|
|
3565
1825
|
listCustomerEnquiryLogs(requestParameters: EnquiriesApiListCustomerEnquiryLogsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCustomerEnquiryLogs200Response, any>>;
|
|
3566
1826
|
/**
|
|
@@ -3569,13 +1829,11 @@ export declare class EnquiriesApi extends BaseAPI {
|
|
|
3569
1829
|
* @param {EnquiriesApiUpdateCustomerEnquiryRequest} requestParameters Request parameters.
|
|
3570
1830
|
* @param {*} [options] Override http request option.
|
|
3571
1831
|
* @throws {RequiredError}
|
|
3572
|
-
* @memberof EnquiriesApi
|
|
3573
1832
|
*/
|
|
3574
1833
|
updateCustomerEnquiry(requestParameters: EnquiriesApiUpdateCustomerEnquiryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Enquiry, any>>;
|
|
3575
1834
|
}
|
|
3576
1835
|
/**
|
|
3577
1836
|
* OrdersApi - axios parameter creator
|
|
3578
|
-
* @export
|
|
3579
1837
|
*/
|
|
3580
1838
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3581
1839
|
/**
|
|
@@ -3724,7 +1982,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3724
1982
|
};
|
|
3725
1983
|
/**
|
|
3726
1984
|
* OrdersApi - functional programming interface
|
|
3727
|
-
* @export
|
|
3728
1985
|
*/
|
|
3729
1986
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
3730
1987
|
/**
|
|
@@ -3873,7 +2130,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
3873
2130
|
};
|
|
3874
2131
|
/**
|
|
3875
2132
|
* OrdersApi - factory interface
|
|
3876
|
-
* @export
|
|
3877
2133
|
*/
|
|
3878
2134
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3879
2135
|
/**
|
|
@@ -3983,412 +2239,276 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
3983
2239
|
};
|
|
3984
2240
|
/**
|
|
3985
2241
|
* Request parameters for amendOrder operation in OrdersApi.
|
|
3986
|
-
* @export
|
|
3987
|
-
* @interface OrdersApiAmendOrderRequest
|
|
3988
2242
|
*/
|
|
3989
2243
|
export interface OrdersApiAmendOrderRequest {
|
|
3990
2244
|
/**
|
|
3991
2245
|
* Project unique identifier
|
|
3992
|
-
* @type {string}
|
|
3993
|
-
* @memberof OrdersApiAmendOrder
|
|
3994
2246
|
*/
|
|
3995
2247
|
readonly project: string;
|
|
3996
2248
|
/**
|
|
3997
2249
|
* The platform identifier
|
|
3998
|
-
* @type {string}
|
|
3999
|
-
* @memberof OrdersApiAmendOrder
|
|
4000
2250
|
*/
|
|
4001
2251
|
readonly platformId: string;
|
|
4002
2252
|
/**
|
|
4003
2253
|
* The order identifier
|
|
4004
|
-
* @type {string}
|
|
4005
|
-
* @memberof OrdersApiAmendOrder
|
|
4006
2254
|
*/
|
|
4007
2255
|
readonly orderId: string;
|
|
4008
2256
|
/**
|
|
4009
2257
|
* AmendOrder schema
|
|
4010
|
-
* @type {AmendOrderRequest}
|
|
4011
|
-
* @memberof OrdersApiAmendOrder
|
|
4012
2258
|
*/
|
|
4013
2259
|
readonly amendOrderRequest: AmendOrderRequest;
|
|
4014
2260
|
}
|
|
4015
2261
|
/**
|
|
4016
2262
|
* Request parameters for confirmOrder operation in OrdersApi.
|
|
4017
|
-
* @export
|
|
4018
|
-
* @interface OrdersApiConfirmOrderRequest
|
|
4019
2263
|
*/
|
|
4020
2264
|
export interface OrdersApiConfirmOrderRequest {
|
|
4021
2265
|
/**
|
|
4022
2266
|
* Project unique identifier
|
|
4023
|
-
* @type {string}
|
|
4024
|
-
* @memberof OrdersApiConfirmOrder
|
|
4025
2267
|
*/
|
|
4026
2268
|
readonly project: string;
|
|
4027
2269
|
/**
|
|
4028
2270
|
* The platform identifier
|
|
4029
|
-
* @type {string}
|
|
4030
|
-
* @memberof OrdersApiConfirmOrder
|
|
4031
2271
|
*/
|
|
4032
2272
|
readonly platformId: string;
|
|
4033
2273
|
/**
|
|
4034
2274
|
* The order identifier
|
|
4035
|
-
* @type {string}
|
|
4036
|
-
* @memberof OrdersApiConfirmOrder
|
|
4037
2275
|
*/
|
|
4038
2276
|
readonly orderId: string;
|
|
4039
2277
|
/**
|
|
4040
2278
|
* ConfirmFulfillment schema
|
|
4041
|
-
* @type {ConfirmOrderRequest}
|
|
4042
|
-
* @memberof OrdersApiConfirmOrder
|
|
4043
2279
|
*/
|
|
4044
2280
|
readonly confirmOrderRequest: ConfirmOrderRequest;
|
|
4045
2281
|
}
|
|
4046
2282
|
/**
|
|
4047
2283
|
* Request parameters for createOrder operation in OrdersApi.
|
|
4048
|
-
* @export
|
|
4049
|
-
* @interface OrdersApiCreateOrderRequest
|
|
4050
2284
|
*/
|
|
4051
2285
|
export interface OrdersApiCreateOrderRequest {
|
|
4052
2286
|
/**
|
|
4053
2287
|
* Project unique identifier
|
|
4054
|
-
* @type {string}
|
|
4055
|
-
* @memberof OrdersApiCreateOrder
|
|
4056
2288
|
*/
|
|
4057
2289
|
readonly project: string;
|
|
4058
2290
|
/**
|
|
4059
2291
|
* The platform identifier
|
|
4060
|
-
* @type {string}
|
|
4061
|
-
* @memberof OrdersApiCreateOrder
|
|
4062
2292
|
*/
|
|
4063
2293
|
readonly platformId: string;
|
|
4064
2294
|
/**
|
|
4065
2295
|
* Create Order schema
|
|
4066
|
-
* @type {CreateOrder}
|
|
4067
|
-
* @memberof OrdersApiCreateOrder
|
|
4068
2296
|
*/
|
|
4069
2297
|
readonly createOrder: CreateOrder;
|
|
4070
2298
|
}
|
|
4071
2299
|
/**
|
|
4072
2300
|
* Request parameters for exportOrders operation in OrdersApi.
|
|
4073
|
-
* @export
|
|
4074
|
-
* @interface OrdersApiExportOrdersRequest
|
|
4075
2301
|
*/
|
|
4076
2302
|
export interface OrdersApiExportOrdersRequest {
|
|
4077
2303
|
/**
|
|
4078
2304
|
* Project unique identifier
|
|
4079
|
-
* @type {string}
|
|
4080
|
-
* @memberof OrdersApiExportOrders
|
|
4081
2305
|
*/
|
|
4082
2306
|
readonly project: string;
|
|
4083
2307
|
/**
|
|
4084
2308
|
* The platform identifier
|
|
4085
|
-
* @type {string}
|
|
4086
|
-
* @memberof OrdersApiExportOrders
|
|
4087
2309
|
*/
|
|
4088
2310
|
readonly platformId: string;
|
|
4089
2311
|
/**
|
|
4090
2312
|
* Start of date range to filter by when orders were placed
|
|
4091
|
-
* @type {string}
|
|
4092
|
-
* @memberof OrdersApiExportOrders
|
|
4093
2313
|
*/
|
|
4094
2314
|
readonly start: string;
|
|
4095
2315
|
/**
|
|
4096
2316
|
* End of date range to filter when orders were placed
|
|
4097
|
-
* @type {string}
|
|
4098
|
-
* @memberof OrdersApiExportOrders
|
|
4099
2317
|
*/
|
|
4100
2318
|
readonly end?: string;
|
|
4101
2319
|
/**
|
|
4102
2320
|
* Search term to filter based on order reference, customer name and email
|
|
4103
|
-
* @type {string}
|
|
4104
|
-
* @memberof OrdersApiExportOrders
|
|
4105
2321
|
*/
|
|
4106
2322
|
readonly search?: string;
|
|
4107
2323
|
}
|
|
4108
2324
|
/**
|
|
4109
2325
|
* Request parameters for getFulfillment operation in OrdersApi.
|
|
4110
|
-
* @export
|
|
4111
|
-
* @interface OrdersApiGetFulfillmentRequest
|
|
4112
2326
|
*/
|
|
4113
2327
|
export interface OrdersApiGetFulfillmentRequest {
|
|
4114
2328
|
/**
|
|
4115
2329
|
* Project unique identifier
|
|
4116
|
-
* @type {string}
|
|
4117
|
-
* @memberof OrdersApiGetFulfillment
|
|
4118
2330
|
*/
|
|
4119
2331
|
readonly project: string;
|
|
4120
2332
|
/**
|
|
4121
2333
|
* The platform identifier
|
|
4122
|
-
* @type {string}
|
|
4123
|
-
* @memberof OrdersApiGetFulfillment
|
|
4124
2334
|
*/
|
|
4125
2335
|
readonly platformId: string;
|
|
4126
2336
|
/**
|
|
4127
2337
|
* The fulfillment identifier
|
|
4128
|
-
* @type {string}
|
|
4129
|
-
* @memberof OrdersApiGetFulfillment
|
|
4130
2338
|
*/
|
|
4131
2339
|
readonly fulfillmentId: string;
|
|
4132
2340
|
}
|
|
4133
2341
|
/**
|
|
4134
2342
|
* Request parameters for getOrder operation in OrdersApi.
|
|
4135
|
-
* @export
|
|
4136
|
-
* @interface OrdersApiGetOrderRequest
|
|
4137
2343
|
*/
|
|
4138
2344
|
export interface OrdersApiGetOrderRequest {
|
|
4139
2345
|
/**
|
|
4140
2346
|
* Project unique identifier
|
|
4141
|
-
* @type {string}
|
|
4142
|
-
* @memberof OrdersApiGetOrder
|
|
4143
2347
|
*/
|
|
4144
2348
|
readonly project: string;
|
|
4145
2349
|
/**
|
|
4146
2350
|
* The platform identifier
|
|
4147
|
-
* @type {string}
|
|
4148
|
-
* @memberof OrdersApiGetOrder
|
|
4149
2351
|
*/
|
|
4150
2352
|
readonly platformId: string;
|
|
4151
2353
|
/**
|
|
4152
2354
|
* The order identifier
|
|
4153
|
-
* @type {string}
|
|
4154
|
-
* @memberof OrdersApiGetOrder
|
|
4155
2355
|
*/
|
|
4156
2356
|
readonly orderId: string;
|
|
4157
2357
|
}
|
|
4158
2358
|
/**
|
|
4159
2359
|
* Request parameters for getOrderReceipt operation in OrdersApi.
|
|
4160
|
-
* @export
|
|
4161
|
-
* @interface OrdersApiGetOrderReceiptRequest
|
|
4162
2360
|
*/
|
|
4163
2361
|
export interface OrdersApiGetOrderReceiptRequest {
|
|
4164
2362
|
/**
|
|
4165
2363
|
* Project unique identifier
|
|
4166
|
-
* @type {string}
|
|
4167
|
-
* @memberof OrdersApiGetOrderReceipt
|
|
4168
2364
|
*/
|
|
4169
2365
|
readonly project: string;
|
|
4170
2366
|
/**
|
|
4171
2367
|
* The platform identifier
|
|
4172
|
-
* @type {string}
|
|
4173
|
-
* @memberof OrdersApiGetOrderReceipt
|
|
4174
2368
|
*/
|
|
4175
2369
|
readonly platformId: string;
|
|
4176
2370
|
/**
|
|
4177
2371
|
* The order identifier
|
|
4178
|
-
* @type {string}
|
|
4179
|
-
* @memberof OrdersApiGetOrderReceipt
|
|
4180
2372
|
*/
|
|
4181
2373
|
readonly orderId: string;
|
|
4182
2374
|
}
|
|
4183
2375
|
/**
|
|
4184
2376
|
* Request parameters for listAvailableFulfillers operation in OrdersApi.
|
|
4185
|
-
* @export
|
|
4186
|
-
* @interface OrdersApiListAvailableFulfillersRequest
|
|
4187
2377
|
*/
|
|
4188
2378
|
export interface OrdersApiListAvailableFulfillersRequest {
|
|
4189
2379
|
/**
|
|
4190
2380
|
* Project unique identifier
|
|
4191
|
-
* @type {string}
|
|
4192
|
-
* @memberof OrdersApiListAvailableFulfillers
|
|
4193
2381
|
*/
|
|
4194
2382
|
readonly project: string;
|
|
4195
2383
|
/**
|
|
4196
2384
|
* The platform identifier
|
|
4197
|
-
* @type {string}
|
|
4198
|
-
* @memberof OrdersApiListAvailableFulfillers
|
|
4199
2385
|
*/
|
|
4200
2386
|
readonly platformId: string;
|
|
4201
2387
|
/**
|
|
4202
2388
|
* The fulfillment identifier
|
|
4203
|
-
* @type {string}
|
|
4204
|
-
* @memberof OrdersApiListAvailableFulfillers
|
|
4205
2389
|
*/
|
|
4206
2390
|
readonly fulfillmentId: string;
|
|
4207
2391
|
}
|
|
4208
2392
|
/**
|
|
4209
2393
|
* Request parameters for listOrders operation in OrdersApi.
|
|
4210
|
-
* @export
|
|
4211
|
-
* @interface OrdersApiListOrdersRequest
|
|
4212
2394
|
*/
|
|
4213
2395
|
export interface OrdersApiListOrdersRequest {
|
|
4214
2396
|
/**
|
|
4215
2397
|
* Project unique identifier
|
|
4216
|
-
* @type {string}
|
|
4217
|
-
* @memberof OrdersApiListOrders
|
|
4218
2398
|
*/
|
|
4219
2399
|
readonly project: string;
|
|
4220
2400
|
/**
|
|
4221
2401
|
* The platform identifier
|
|
4222
|
-
* @type {string}
|
|
4223
|
-
* @memberof OrdersApiListOrders
|
|
4224
2402
|
*/
|
|
4225
2403
|
readonly platformId: string;
|
|
4226
2404
|
/**
|
|
4227
2405
|
* Page reference token
|
|
4228
|
-
* @type {number}
|
|
4229
|
-
* @memberof OrdersApiListOrders
|
|
4230
2406
|
*/
|
|
4231
2407
|
readonly pageToken?: number;
|
|
4232
2408
|
/**
|
|
4233
2409
|
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4234
|
-
* @type {number}
|
|
4235
|
-
* @memberof OrdersApiListOrders
|
|
4236
2410
|
*/
|
|
4237
2411
|
readonly pageSize?: number;
|
|
4238
2412
|
/**
|
|
4239
2413
|
* Search term to filter based on order reference, customer name and email
|
|
4240
|
-
* @type {string}
|
|
4241
|
-
* @memberof OrdersApiListOrders
|
|
4242
2414
|
*/
|
|
4243
2415
|
readonly search?: string;
|
|
4244
2416
|
/**
|
|
4245
2417
|
* Start of date range to filter when orders were placed
|
|
4246
|
-
* @type {string}
|
|
4247
|
-
* @memberof OrdersApiListOrders
|
|
4248
2418
|
*/
|
|
4249
2419
|
readonly start?: string;
|
|
4250
2420
|
/**
|
|
4251
2421
|
* End of date range to filter when orders were placed
|
|
4252
|
-
* @type {string}
|
|
4253
|
-
* @memberof OrdersApiListOrders
|
|
4254
2422
|
*/
|
|
4255
2423
|
readonly end?: string;
|
|
4256
2424
|
/**
|
|
4257
2425
|
* Specifies the type of date range filter to apply. Determines which date field the `start` and `end` fields should query.
|
|
4258
|
-
* @type {'createdAt' | 'updatedAt' | 'statusChangedAt'}
|
|
4259
|
-
* @memberof OrdersApiListOrders
|
|
4260
2426
|
*/
|
|
4261
2427
|
readonly dateFilterType?: ListOrdersDateFilterTypeEnum;
|
|
4262
2428
|
/**
|
|
4263
2429
|
* The maximum value of the order
|
|
4264
|
-
* @type {number}
|
|
4265
|
-
* @memberof OrdersApiListOrders
|
|
4266
2430
|
*/
|
|
4267
2431
|
readonly maxOrderTotal?: number;
|
|
4268
2432
|
/**
|
|
4269
2433
|
* The minimum value of the order
|
|
4270
|
-
* @type {number}
|
|
4271
|
-
* @memberof OrdersApiListOrders
|
|
4272
2434
|
*/
|
|
4273
2435
|
readonly minOrderTotal?: number;
|
|
4274
2436
|
}
|
|
4275
2437
|
/**
|
|
4276
2438
|
* Request parameters for retryPlatformPayment operation in OrdersApi.
|
|
4277
|
-
* @export
|
|
4278
|
-
* @interface OrdersApiRetryPlatformPaymentRequest
|
|
4279
2439
|
*/
|
|
4280
2440
|
export interface OrdersApiRetryPlatformPaymentRequest {
|
|
4281
2441
|
/**
|
|
4282
2442
|
* Project unique identifier
|
|
4283
|
-
* @type {string}
|
|
4284
|
-
* @memberof OrdersApiRetryPlatformPayment
|
|
4285
2443
|
*/
|
|
4286
2444
|
readonly project: string;
|
|
4287
2445
|
/**
|
|
4288
2446
|
* The platform identifier
|
|
4289
|
-
* @type {string}
|
|
4290
|
-
* @memberof OrdersApiRetryPlatformPayment
|
|
4291
2447
|
*/
|
|
4292
2448
|
readonly platformId: string;
|
|
4293
2449
|
/**
|
|
4294
2450
|
* The order identifier
|
|
4295
|
-
* @type {string}
|
|
4296
|
-
* @memberof OrdersApiRetryPlatformPayment
|
|
4297
2451
|
*/
|
|
4298
2452
|
readonly orderId: string;
|
|
4299
2453
|
}
|
|
4300
2454
|
/**
|
|
4301
2455
|
* Request parameters for returnOrder operation in OrdersApi.
|
|
4302
|
-
* @export
|
|
4303
|
-
* @interface OrdersApiReturnOrderRequest
|
|
4304
2456
|
*/
|
|
4305
2457
|
export interface OrdersApiReturnOrderRequest {
|
|
4306
2458
|
/**
|
|
4307
2459
|
* Project unique identifier
|
|
4308
|
-
* @type {string}
|
|
4309
|
-
* @memberof OrdersApiReturnOrder
|
|
4310
2460
|
*/
|
|
4311
2461
|
readonly project: string;
|
|
4312
2462
|
/**
|
|
4313
2463
|
* The platform identifier
|
|
4314
|
-
* @type {string}
|
|
4315
|
-
* @memberof OrdersApiReturnOrder
|
|
4316
2464
|
*/
|
|
4317
2465
|
readonly platformId: string;
|
|
4318
2466
|
/**
|
|
4319
2467
|
* The order identifier
|
|
4320
|
-
* @type {string}
|
|
4321
|
-
* @memberof OrdersApiReturnOrder
|
|
4322
2468
|
*/
|
|
4323
2469
|
readonly orderId: string;
|
|
4324
2470
|
/**
|
|
4325
2471
|
* ReturnOrder schema
|
|
4326
|
-
* @type {ReturnOrderRequest}
|
|
4327
|
-
* @memberof OrdersApiReturnOrder
|
|
4328
2472
|
*/
|
|
4329
2473
|
readonly returnOrderRequest: ReturnOrderRequest;
|
|
4330
2474
|
}
|
|
4331
2475
|
/**
|
|
4332
2476
|
* Request parameters for sendOrderReceipt operation in OrdersApi.
|
|
4333
|
-
* @export
|
|
4334
|
-
* @interface OrdersApiSendOrderReceiptRequest
|
|
4335
2477
|
*/
|
|
4336
2478
|
export interface OrdersApiSendOrderReceiptRequest {
|
|
4337
2479
|
/**
|
|
4338
2480
|
* Project unique identifier
|
|
4339
|
-
* @type {string}
|
|
4340
|
-
* @memberof OrdersApiSendOrderReceipt
|
|
4341
2481
|
*/
|
|
4342
2482
|
readonly project: string;
|
|
4343
2483
|
/**
|
|
4344
2484
|
* The platform identifier
|
|
4345
|
-
* @type {string}
|
|
4346
|
-
* @memberof OrdersApiSendOrderReceipt
|
|
4347
2485
|
*/
|
|
4348
2486
|
readonly platformId: string;
|
|
4349
2487
|
/**
|
|
4350
2488
|
* The order identifier
|
|
4351
|
-
* @type {string}
|
|
4352
|
-
* @memberof OrdersApiSendOrderReceipt
|
|
4353
2489
|
*/
|
|
4354
2490
|
readonly orderId: string;
|
|
4355
2491
|
}
|
|
4356
2492
|
/**
|
|
4357
2493
|
* Request parameters for updateFulfillment operation in OrdersApi.
|
|
4358
|
-
* @export
|
|
4359
|
-
* @interface OrdersApiUpdateFulfillmentRequest
|
|
4360
2494
|
*/
|
|
4361
2495
|
export interface OrdersApiUpdateFulfillmentRequest {
|
|
4362
2496
|
/**
|
|
4363
2497
|
* Project unique identifier
|
|
4364
|
-
* @type {string}
|
|
4365
|
-
* @memberof OrdersApiUpdateFulfillment
|
|
4366
2498
|
*/
|
|
4367
2499
|
readonly project: string;
|
|
4368
2500
|
/**
|
|
4369
2501
|
* The platform identifier
|
|
4370
|
-
* @type {string}
|
|
4371
|
-
* @memberof OrdersApiUpdateFulfillment
|
|
4372
2502
|
*/
|
|
4373
2503
|
readonly platformId: string;
|
|
4374
2504
|
/**
|
|
4375
2505
|
* The fulfillment identifier
|
|
4376
|
-
* @type {string}
|
|
4377
|
-
* @memberof OrdersApiUpdateFulfillment
|
|
4378
2506
|
*/
|
|
4379
2507
|
readonly fulfillmentId: string;
|
|
4380
|
-
/**
|
|
4381
|
-
*
|
|
4382
|
-
* @type {UpdateFulfillmentRequest}
|
|
4383
|
-
* @memberof OrdersApiUpdateFulfillment
|
|
4384
|
-
*/
|
|
4385
2508
|
readonly updateFulfillmentRequest: UpdateFulfillmentRequest;
|
|
4386
2509
|
}
|
|
4387
2510
|
/**
|
|
4388
2511
|
* OrdersApi - object-oriented interface
|
|
4389
|
-
* @export
|
|
4390
|
-
* @class OrdersApi
|
|
4391
|
-
* @extends {BaseAPI}
|
|
4392
2512
|
*/
|
|
4393
2513
|
export declare class OrdersApi extends BaseAPI {
|
|
4394
2514
|
/**
|
|
@@ -4397,7 +2517,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4397
2517
|
* @param {OrdersApiAmendOrderRequest} requestParameters Request parameters.
|
|
4398
2518
|
* @param {*} [options] Override http request option.
|
|
4399
2519
|
* @throws {RequiredError}
|
|
4400
|
-
* @memberof OrdersApi
|
|
4401
2520
|
*/
|
|
4402
2521
|
amendOrder(requestParameters: OrdersApiAmendOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Order, any>>;
|
|
4403
2522
|
/**
|
|
@@ -4406,7 +2525,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4406
2525
|
* @param {OrdersApiConfirmOrderRequest} requestParameters Request parameters.
|
|
4407
2526
|
* @param {*} [options] Override http request option.
|
|
4408
2527
|
* @throws {RequiredError}
|
|
4409
|
-
* @memberof OrdersApi
|
|
4410
2528
|
*/
|
|
4411
2529
|
confirmOrder(requestParameters: OrdersApiConfirmOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Order, any>>;
|
|
4412
2530
|
/**
|
|
@@ -4415,7 +2533,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4415
2533
|
* @param {OrdersApiCreateOrderRequest} requestParameters Request parameters.
|
|
4416
2534
|
* @param {*} [options] Override http request option.
|
|
4417
2535
|
* @throws {RequiredError}
|
|
4418
|
-
* @memberof OrdersApi
|
|
4419
2536
|
*/
|
|
4420
2537
|
createOrder(requestParameters: OrdersApiCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Order, any>>;
|
|
4421
2538
|
/**
|
|
@@ -4424,7 +2541,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4424
2541
|
* @param {OrdersApiExportOrdersRequest} requestParameters Request parameters.
|
|
4425
2542
|
* @param {*} [options] Override http request option.
|
|
4426
2543
|
* @throws {RequiredError}
|
|
4427
|
-
* @memberof OrdersApi
|
|
4428
2544
|
*/
|
|
4429
2545
|
exportOrders(requestParameters: OrdersApiExportOrdersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
4430
2546
|
/**
|
|
@@ -4433,7 +2549,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4433
2549
|
* @param {OrdersApiGetFulfillmentRequest} requestParameters Request parameters.
|
|
4434
2550
|
* @param {*} [options] Override http request option.
|
|
4435
2551
|
* @throws {RequiredError}
|
|
4436
|
-
* @memberof OrdersApi
|
|
4437
2552
|
*/
|
|
4438
2553
|
getFulfillment(requestParameters: OrdersApiGetFulfillmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Fulfillment, any>>;
|
|
4439
2554
|
/**
|
|
@@ -4442,7 +2557,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4442
2557
|
* @param {OrdersApiGetOrderRequest} requestParameters Request parameters.
|
|
4443
2558
|
* @param {*} [options] Override http request option.
|
|
4444
2559
|
* @throws {RequiredError}
|
|
4445
|
-
* @memberof OrdersApi
|
|
4446
2560
|
*/
|
|
4447
2561
|
getOrder(requestParameters: OrdersApiGetOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Order, any>>;
|
|
4448
2562
|
/**
|
|
@@ -4451,7 +2565,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4451
2565
|
* @param {OrdersApiGetOrderReceiptRequest} requestParameters Request parameters.
|
|
4452
2566
|
* @param {*} [options] Override http request option.
|
|
4453
2567
|
* @throws {RequiredError}
|
|
4454
|
-
* @memberof OrdersApi
|
|
4455
2568
|
*/
|
|
4456
2569
|
getOrderReceipt(requestParameters: OrdersApiGetOrderReceiptRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any>>;
|
|
4457
2570
|
/**
|
|
@@ -4460,7 +2573,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4460
2573
|
* @param {OrdersApiListAvailableFulfillersRequest} requestParameters Request parameters.
|
|
4461
2574
|
* @param {*} [options] Override http request option.
|
|
4462
2575
|
* @throws {RequiredError}
|
|
4463
|
-
* @memberof OrdersApi
|
|
4464
2576
|
*/
|
|
4465
2577
|
listAvailableFulfillers(requestParameters: OrdersApiListAvailableFulfillersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FulfillersResponse, any>>;
|
|
4466
2578
|
/**
|
|
@@ -4469,7 +2581,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4469
2581
|
* @param {OrdersApiListOrdersRequest} requestParameters Request parameters.
|
|
4470
2582
|
* @param {*} [options] Override http request option.
|
|
4471
2583
|
* @throws {RequiredError}
|
|
4472
|
-
* @memberof OrdersApi
|
|
4473
2584
|
*/
|
|
4474
2585
|
listOrders(requestParameters: OrdersApiListOrdersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrdersResponse, any>>;
|
|
4475
2586
|
/**
|
|
@@ -4478,7 +2589,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4478
2589
|
* @param {OrdersApiRetryPlatformPaymentRequest} requestParameters Request parameters.
|
|
4479
2590
|
* @param {*} [options] Override http request option.
|
|
4480
2591
|
* @throws {RequiredError}
|
|
4481
|
-
* @memberof OrdersApi
|
|
4482
2592
|
*/
|
|
4483
2593
|
retryPlatformPayment(requestParameters: OrdersApiRetryPlatformPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Order, any>>;
|
|
4484
2594
|
/**
|
|
@@ -4487,7 +2597,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4487
2597
|
* @param {OrdersApiReturnOrderRequest} requestParameters Request parameters.
|
|
4488
2598
|
* @param {*} [options] Override http request option.
|
|
4489
2599
|
* @throws {RequiredError}
|
|
4490
|
-
* @memberof OrdersApi
|
|
4491
2600
|
*/
|
|
4492
2601
|
returnOrder(requestParameters: OrdersApiReturnOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Order, any>>;
|
|
4493
2602
|
/**
|
|
@@ -4496,7 +2605,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4496
2605
|
* @param {OrdersApiSendOrderReceiptRequest} requestParameters Request parameters.
|
|
4497
2606
|
* @param {*} [options] Override http request option.
|
|
4498
2607
|
* @throws {RequiredError}
|
|
4499
|
-
* @memberof OrdersApi
|
|
4500
2608
|
*/
|
|
4501
2609
|
sendOrderReceipt(requestParameters: OrdersApiSendOrderReceiptRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4502
2610
|
/**
|
|
@@ -4505,13 +2613,9 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
4505
2613
|
* @param {OrdersApiUpdateFulfillmentRequest} requestParameters Request parameters.
|
|
4506
2614
|
* @param {*} [options] Override http request option.
|
|
4507
2615
|
* @throws {RequiredError}
|
|
4508
|
-
* @memberof OrdersApi
|
|
4509
2616
|
*/
|
|
4510
2617
|
updateFulfillment(requestParameters: OrdersApiUpdateFulfillmentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Fulfillment, any>>;
|
|
4511
2618
|
}
|
|
4512
|
-
/**
|
|
4513
|
-
* @export
|
|
4514
|
-
*/
|
|
4515
2619
|
export declare const ListOrdersDateFilterTypeEnum: {
|
|
4516
2620
|
readonly CreatedAt: "createdAt";
|
|
4517
2621
|
readonly UpdatedAt: "updatedAt";
|
|
@@ -4520,7 +2624,6 @@ export declare const ListOrdersDateFilterTypeEnum: {
|
|
|
4520
2624
|
export type ListOrdersDateFilterTypeEnum = typeof ListOrdersDateFilterTypeEnum[keyof typeof ListOrdersDateFilterTypeEnum];
|
|
4521
2625
|
/**
|
|
4522
2626
|
* PaymentApi - axios parameter creator
|
|
4523
|
-
* @export
|
|
4524
2627
|
*/
|
|
4525
2628
|
export declare const PaymentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4526
2629
|
/**
|
|
@@ -4550,7 +2653,6 @@ export declare const PaymentApiAxiosParamCreator: (configuration?: Configuration
|
|
|
4550
2653
|
};
|
|
4551
2654
|
/**
|
|
4552
2655
|
* PaymentApi - functional programming interface
|
|
4553
|
-
* @export
|
|
4554
2656
|
*/
|
|
4555
2657
|
export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
4556
2658
|
/**
|
|
@@ -4560,7 +2662,7 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
|
4560
2662
|
* @param {*} [options] Override http request option.
|
|
4561
2663
|
* @throws {RequiredError}
|
|
4562
2664
|
*/
|
|
4563
|
-
authorizeStripe(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2665
|
+
authorizeStripe(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AuthorizeStripe200Response>>;
|
|
4564
2666
|
/**
|
|
4565
2667
|
* Deauthorize a Stripe payment account
|
|
4566
2668
|
* @summary Deauthorize Stripe
|
|
@@ -4580,7 +2682,6 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
|
4580
2682
|
};
|
|
4581
2683
|
/**
|
|
4582
2684
|
* PaymentApi - factory interface
|
|
4583
|
-
* @export
|
|
4584
2685
|
*/
|
|
4585
2686
|
export declare const PaymentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4586
2687
|
/**
|
|
@@ -4590,7 +2691,7 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
|
|
|
4590
2691
|
* @param {*} [options] Override http request option.
|
|
4591
2692
|
* @throws {RequiredError}
|
|
4592
2693
|
*/
|
|
4593
|
-
authorizeStripe(requestParameters: PaymentApiAuthorizeStripeRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2694
|
+
authorizeStripe(requestParameters: PaymentApiAuthorizeStripeRequest, options?: RawAxiosRequestConfig): AxiosPromise<AuthorizeStripe200Response>;
|
|
4594
2695
|
/**
|
|
4595
2696
|
* Deauthorize a Stripe payment account
|
|
4596
2697
|
* @summary Deauthorize Stripe
|
|
@@ -4610,48 +2711,33 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
|
|
|
4610
2711
|
};
|
|
4611
2712
|
/**
|
|
4612
2713
|
* Request parameters for authorizeStripe operation in PaymentApi.
|
|
4613
|
-
* @export
|
|
4614
|
-
* @interface PaymentApiAuthorizeStripeRequest
|
|
4615
2714
|
*/
|
|
4616
2715
|
export interface PaymentApiAuthorizeStripeRequest {
|
|
4617
2716
|
/**
|
|
4618
2717
|
* Project unique identifier
|
|
4619
|
-
* @type {string}
|
|
4620
|
-
* @memberof PaymentApiAuthorizeStripe
|
|
4621
2718
|
*/
|
|
4622
2719
|
readonly project: string;
|
|
4623
2720
|
}
|
|
4624
2721
|
/**
|
|
4625
2722
|
* Request parameters for deauthorizeStripe operation in PaymentApi.
|
|
4626
|
-
* @export
|
|
4627
|
-
* @interface PaymentApiDeauthorizeStripeRequest
|
|
4628
2723
|
*/
|
|
4629
2724
|
export interface PaymentApiDeauthorizeStripeRequest {
|
|
4630
2725
|
/**
|
|
4631
2726
|
* Project unique identifier
|
|
4632
|
-
* @type {string}
|
|
4633
|
-
* @memberof PaymentApiDeauthorizeStripe
|
|
4634
2727
|
*/
|
|
4635
2728
|
readonly project: string;
|
|
4636
2729
|
}
|
|
4637
2730
|
/**
|
|
4638
2731
|
* Request parameters for getStripePaymentAccount operation in PaymentApi.
|
|
4639
|
-
* @export
|
|
4640
|
-
* @interface PaymentApiGetStripePaymentAccountRequest
|
|
4641
2732
|
*/
|
|
4642
2733
|
export interface PaymentApiGetStripePaymentAccountRequest {
|
|
4643
2734
|
/**
|
|
4644
2735
|
* Project unique identifier
|
|
4645
|
-
* @type {string}
|
|
4646
|
-
* @memberof PaymentApiGetStripePaymentAccount
|
|
4647
2736
|
*/
|
|
4648
2737
|
readonly project: string;
|
|
4649
2738
|
}
|
|
4650
2739
|
/**
|
|
4651
2740
|
* PaymentApi - object-oriented interface
|
|
4652
|
-
* @export
|
|
4653
|
-
* @class PaymentApi
|
|
4654
|
-
* @extends {BaseAPI}
|
|
4655
2741
|
*/
|
|
4656
2742
|
export declare class PaymentApi extends BaseAPI {
|
|
4657
2743
|
/**
|
|
@@ -4660,16 +2746,14 @@ export declare class PaymentApi extends BaseAPI {
|
|
|
4660
2746
|
* @param {PaymentApiAuthorizeStripeRequest} requestParameters Request parameters.
|
|
4661
2747
|
* @param {*} [options] Override http request option.
|
|
4662
2748
|
* @throws {RequiredError}
|
|
4663
|
-
* @memberof PaymentApi
|
|
4664
2749
|
*/
|
|
4665
|
-
authorizeStripe(requestParameters: PaymentApiAuthorizeStripeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
2750
|
+
authorizeStripe(requestParameters: PaymentApiAuthorizeStripeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthorizeStripe200Response, any>>;
|
|
4666
2751
|
/**
|
|
4667
2752
|
* Deauthorize a Stripe payment account
|
|
4668
2753
|
* @summary Deauthorize Stripe
|
|
4669
2754
|
* @param {PaymentApiDeauthorizeStripeRequest} requestParameters Request parameters.
|
|
4670
2755
|
* @param {*} [options] Override http request option.
|
|
4671
2756
|
* @throws {RequiredError}
|
|
4672
|
-
* @memberof PaymentApi
|
|
4673
2757
|
*/
|
|
4674
2758
|
deauthorizeStripe(requestParameters: PaymentApiDeauthorizeStripeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
4675
2759
|
/**
|
|
@@ -4678,13 +2762,11 @@ export declare class PaymentApi extends BaseAPI {
|
|
|
4678
2762
|
* @param {PaymentApiGetStripePaymentAccountRequest} requestParameters Request parameters.
|
|
4679
2763
|
* @param {*} [options] Override http request option.
|
|
4680
2764
|
* @throws {RequiredError}
|
|
4681
|
-
* @memberof PaymentApi
|
|
4682
2765
|
*/
|
|
4683
2766
|
getStripePaymentAccount(requestParameters: PaymentApiGetStripePaymentAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentAccount, any>>;
|
|
4684
2767
|
}
|
|
4685
2768
|
/**
|
|
4686
2769
|
* PixelsApi - axios parameter creator
|
|
4687
|
-
* @export
|
|
4688
2770
|
*/
|
|
4689
2771
|
export declare const PixelsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4690
2772
|
/**
|
|
@@ -4746,7 +2828,6 @@ export declare const PixelsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
4746
2828
|
};
|
|
4747
2829
|
/**
|
|
4748
2830
|
* PixelsApi - functional programming interface
|
|
4749
|
-
* @export
|
|
4750
2831
|
*/
|
|
4751
2832
|
export declare const PixelsApiFp: (configuration?: Configuration) => {
|
|
4752
2833
|
/**
|
|
@@ -4808,7 +2889,6 @@ export declare const PixelsApiFp: (configuration?: Configuration) => {
|
|
|
4808
2889
|
};
|
|
4809
2890
|
/**
|
|
4810
2891
|
* PixelsApi - factory interface
|
|
4811
|
-
* @export
|
|
4812
2892
|
*/
|
|
4813
2893
|
export declare const PixelsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4814
2894
|
/**
|
|
@@ -4854,170 +2934,109 @@ export declare const PixelsApiFactory: (configuration?: Configuration, basePath?
|
|
|
4854
2934
|
};
|
|
4855
2935
|
/**
|
|
4856
2936
|
* Request parameters for createPixel operation in PixelsApi.
|
|
4857
|
-
* @export
|
|
4858
|
-
* @interface PixelsApiCreatePixelRequest
|
|
4859
2937
|
*/
|
|
4860
2938
|
export interface PixelsApiCreatePixelRequest {
|
|
4861
2939
|
/**
|
|
4862
2940
|
* Project unique identifier
|
|
4863
|
-
* @type {string}
|
|
4864
|
-
* @memberof PixelsApiCreatePixel
|
|
4865
2941
|
*/
|
|
4866
2942
|
readonly project: string;
|
|
4867
2943
|
/**
|
|
4868
2944
|
* The platform identifier
|
|
4869
|
-
* @type {string}
|
|
4870
|
-
* @memberof PixelsApiCreatePixel
|
|
4871
2945
|
*/
|
|
4872
2946
|
readonly platformId: string;
|
|
4873
2947
|
/**
|
|
4874
2948
|
* Page reference token
|
|
4875
|
-
* @type {number}
|
|
4876
|
-
* @memberof PixelsApiCreatePixel
|
|
4877
2949
|
*/
|
|
4878
2950
|
readonly pageToken?: number;
|
|
4879
2951
|
/**
|
|
4880
2952
|
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4881
|
-
* @type {number}
|
|
4882
|
-
* @memberof PixelsApiCreatePixel
|
|
4883
2953
|
*/
|
|
4884
2954
|
readonly pageSize?: number;
|
|
4885
2955
|
/**
|
|
4886
2956
|
* Search term to filter results
|
|
4887
|
-
* @type {string}
|
|
4888
|
-
* @memberof PixelsApiCreatePixel
|
|
4889
2957
|
*/
|
|
4890
2958
|
readonly search?: string;
|
|
4891
|
-
/**
|
|
4892
|
-
*
|
|
4893
|
-
* @type {CreatePixelRequest}
|
|
4894
|
-
* @memberof PixelsApiCreatePixel
|
|
4895
|
-
*/
|
|
4896
2959
|
readonly createPixelRequest?: CreatePixelRequest;
|
|
4897
2960
|
}
|
|
4898
2961
|
/**
|
|
4899
2962
|
* Request parameters for deletePixel operation in PixelsApi.
|
|
4900
|
-
* @export
|
|
4901
|
-
* @interface PixelsApiDeletePixelRequest
|
|
4902
2963
|
*/
|
|
4903
2964
|
export interface PixelsApiDeletePixelRequest {
|
|
4904
2965
|
/**
|
|
4905
2966
|
* Project unique identifier
|
|
4906
|
-
* @type {string}
|
|
4907
|
-
* @memberof PixelsApiDeletePixel
|
|
4908
2967
|
*/
|
|
4909
2968
|
readonly project: string;
|
|
4910
2969
|
/**
|
|
4911
2970
|
* The platform identifier
|
|
4912
|
-
* @type {string}
|
|
4913
|
-
* @memberof PixelsApiDeletePixel
|
|
4914
2971
|
*/
|
|
4915
2972
|
readonly platformId: string;
|
|
4916
2973
|
/**
|
|
4917
2974
|
* The pixel identifier
|
|
4918
|
-
* @type {string}
|
|
4919
|
-
* @memberof PixelsApiDeletePixel
|
|
4920
2975
|
*/
|
|
4921
2976
|
readonly pixelId: string;
|
|
4922
2977
|
}
|
|
4923
2978
|
/**
|
|
4924
2979
|
* Request parameters for getPixel operation in PixelsApi.
|
|
4925
|
-
* @export
|
|
4926
|
-
* @interface PixelsApiGetPixelRequest
|
|
4927
2980
|
*/
|
|
4928
2981
|
export interface PixelsApiGetPixelRequest {
|
|
4929
2982
|
/**
|
|
4930
2983
|
* Project unique identifier
|
|
4931
|
-
* @type {string}
|
|
4932
|
-
* @memberof PixelsApiGetPixel
|
|
4933
2984
|
*/
|
|
4934
2985
|
readonly project: string;
|
|
4935
2986
|
/**
|
|
4936
2987
|
* The platform identifier
|
|
4937
|
-
* @type {string}
|
|
4938
|
-
* @memberof PixelsApiGetPixel
|
|
4939
2988
|
*/
|
|
4940
2989
|
readonly platformId: string;
|
|
4941
2990
|
/**
|
|
4942
2991
|
* The pixel identifier
|
|
4943
|
-
* @type {string}
|
|
4944
|
-
* @memberof PixelsApiGetPixel
|
|
4945
2992
|
*/
|
|
4946
2993
|
readonly pixelId: string;
|
|
4947
2994
|
}
|
|
4948
2995
|
/**
|
|
4949
2996
|
* Request parameters for listPixels operation in PixelsApi.
|
|
4950
|
-
* @export
|
|
4951
|
-
* @interface PixelsApiListPixelsRequest
|
|
4952
2997
|
*/
|
|
4953
2998
|
export interface PixelsApiListPixelsRequest {
|
|
4954
2999
|
/**
|
|
4955
3000
|
* Project unique identifier
|
|
4956
|
-
* @type {string}
|
|
4957
|
-
* @memberof PixelsApiListPixels
|
|
4958
3001
|
*/
|
|
4959
3002
|
readonly project: string;
|
|
4960
3003
|
/**
|
|
4961
3004
|
* The platform identifier
|
|
4962
|
-
* @type {string}
|
|
4963
|
-
* @memberof PixelsApiListPixels
|
|
4964
3005
|
*/
|
|
4965
3006
|
readonly platformId: string;
|
|
4966
3007
|
/**
|
|
4967
3008
|
* Page reference token
|
|
4968
|
-
* @type {number}
|
|
4969
|
-
* @memberof PixelsApiListPixels
|
|
4970
3009
|
*/
|
|
4971
3010
|
readonly pageToken?: number;
|
|
4972
3011
|
/**
|
|
4973
3012
|
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4974
|
-
* @type {number}
|
|
4975
|
-
* @memberof PixelsApiListPixels
|
|
4976
3013
|
*/
|
|
4977
3014
|
readonly pageSize?: number;
|
|
4978
3015
|
/**
|
|
4979
3016
|
* Search term to filter results
|
|
4980
|
-
* @type {string}
|
|
4981
|
-
* @memberof PixelsApiListPixels
|
|
4982
3017
|
*/
|
|
4983
3018
|
readonly search?: string;
|
|
4984
3019
|
}
|
|
4985
3020
|
/**
|
|
4986
3021
|
* Request parameters for updatePixel operation in PixelsApi.
|
|
4987
|
-
* @export
|
|
4988
|
-
* @interface PixelsApiUpdatePixelRequest
|
|
4989
3022
|
*/
|
|
4990
3023
|
export interface PixelsApiUpdatePixelRequest {
|
|
4991
3024
|
/**
|
|
4992
3025
|
* Project unique identifier
|
|
4993
|
-
* @type {string}
|
|
4994
|
-
* @memberof PixelsApiUpdatePixel
|
|
4995
3026
|
*/
|
|
4996
3027
|
readonly project: string;
|
|
4997
3028
|
/**
|
|
4998
3029
|
* The platform identifier
|
|
4999
|
-
* @type {string}
|
|
5000
|
-
* @memberof PixelsApiUpdatePixel
|
|
5001
3030
|
*/
|
|
5002
3031
|
readonly platformId: string;
|
|
5003
3032
|
/**
|
|
5004
3033
|
* The pixel identifier
|
|
5005
|
-
* @type {string}
|
|
5006
|
-
* @memberof PixelsApiUpdatePixel
|
|
5007
3034
|
*/
|
|
5008
3035
|
readonly pixelId: string;
|
|
5009
|
-
/**
|
|
5010
|
-
*
|
|
5011
|
-
* @type {CreatePixelRequest}
|
|
5012
|
-
* @memberof PixelsApiUpdatePixel
|
|
5013
|
-
*/
|
|
5014
3036
|
readonly createPixelRequest?: CreatePixelRequest;
|
|
5015
3037
|
}
|
|
5016
3038
|
/**
|
|
5017
3039
|
* PixelsApi - object-oriented interface
|
|
5018
|
-
* @export
|
|
5019
|
-
* @class PixelsApi
|
|
5020
|
-
* @extends {BaseAPI}
|
|
5021
3040
|
*/
|
|
5022
3041
|
export declare class PixelsApi extends BaseAPI {
|
|
5023
3042
|
/**
|
|
@@ -5026,7 +3045,6 @@ export declare class PixelsApi extends BaseAPI {
|
|
|
5026
3045
|
* @param {PixelsApiCreatePixelRequest} requestParameters Request parameters.
|
|
5027
3046
|
* @param {*} [options] Override http request option.
|
|
5028
3047
|
* @throws {RequiredError}
|
|
5029
|
-
* @memberof PixelsApi
|
|
5030
3048
|
*/
|
|
5031
3049
|
createPixel(requestParameters: PixelsApiCreatePixelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pixel, any>>;
|
|
5032
3050
|
/**
|
|
@@ -5035,7 +3053,6 @@ export declare class PixelsApi extends BaseAPI {
|
|
|
5035
3053
|
* @param {PixelsApiDeletePixelRequest} requestParameters Request parameters.
|
|
5036
3054
|
* @param {*} [options] Override http request option.
|
|
5037
3055
|
* @throws {RequiredError}
|
|
5038
|
-
* @memberof PixelsApi
|
|
5039
3056
|
*/
|
|
5040
3057
|
deletePixel(requestParameters: PixelsApiDeletePixelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
5041
3058
|
/**
|
|
@@ -5044,7 +3061,6 @@ export declare class PixelsApi extends BaseAPI {
|
|
|
5044
3061
|
* @param {PixelsApiGetPixelRequest} requestParameters Request parameters.
|
|
5045
3062
|
* @param {*} [options] Override http request option.
|
|
5046
3063
|
* @throws {RequiredError}
|
|
5047
|
-
* @memberof PixelsApi
|
|
5048
3064
|
*/
|
|
5049
3065
|
getPixel(requestParameters: PixelsApiGetPixelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pixel, any>>;
|
|
5050
3066
|
/**
|
|
@@ -5053,7 +3069,6 @@ export declare class PixelsApi extends BaseAPI {
|
|
|
5053
3069
|
* @param {PixelsApiListPixelsRequest} requestParameters Request parameters.
|
|
5054
3070
|
* @param {*} [options] Override http request option.
|
|
5055
3071
|
* @throws {RequiredError}
|
|
5056
|
-
* @memberof PixelsApi
|
|
5057
3072
|
*/
|
|
5058
3073
|
listPixels(requestParameters: PixelsApiListPixelsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PixelsResponse, any>>;
|
|
5059
3074
|
/**
|
|
@@ -5062,13 +3077,11 @@ export declare class PixelsApi extends BaseAPI {
|
|
|
5062
3077
|
* @param {PixelsApiUpdatePixelRequest} requestParameters Request parameters.
|
|
5063
3078
|
* @param {*} [options] Override http request option.
|
|
5064
3079
|
* @throws {RequiredError}
|
|
5065
|
-
* @memberof PixelsApi
|
|
5066
3080
|
*/
|
|
5067
3081
|
updatePixel(requestParameters: PixelsApiUpdatePixelRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Pixel, any>>;
|
|
5068
3082
|
}
|
|
5069
3083
|
/**
|
|
5070
3084
|
* PlatformApi - axios parameter creator
|
|
5071
|
-
* @export
|
|
5072
3085
|
*/
|
|
5073
3086
|
export declare const PlatformApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5074
3087
|
/**
|
|
@@ -5143,7 +3156,6 @@ export declare const PlatformApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
5143
3156
|
};
|
|
5144
3157
|
/**
|
|
5145
3158
|
* PlatformApi - functional programming interface
|
|
5146
|
-
* @export
|
|
5147
3159
|
*/
|
|
5148
3160
|
export declare const PlatformApiFp: (configuration?: Configuration) => {
|
|
5149
3161
|
/**
|
|
@@ -5197,7 +3209,7 @@ export declare const PlatformApiFp: (configuration?: Configuration) => {
|
|
|
5197
3209
|
* @param {*} [options] Override http request option.
|
|
5198
3210
|
* @throws {RequiredError}
|
|
5199
3211
|
*/
|
|
5200
|
-
listClientDomains(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3212
|
+
listClientDomains(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDomains200Response>>;
|
|
5201
3213
|
/**
|
|
5202
3214
|
* List the domains attached to a platform
|
|
5203
3215
|
* @summary List platform domains
|
|
@@ -5205,7 +3217,7 @@ export declare const PlatformApiFp: (configuration?: Configuration) => {
|
|
|
5205
3217
|
* @param {*} [options] Override http request option.
|
|
5206
3218
|
* @throws {RequiredError}
|
|
5207
3219
|
*/
|
|
5208
|
-
listDomains(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3220
|
+
listDomains(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListDomains200Response>>;
|
|
5209
3221
|
/**
|
|
5210
3222
|
*
|
|
5211
3223
|
* @summary Update platform
|
|
@@ -5218,7 +3230,6 @@ export declare const PlatformApiFp: (configuration?: Configuration) => {
|
|
|
5218
3230
|
};
|
|
5219
3231
|
/**
|
|
5220
3232
|
* PlatformApi - factory interface
|
|
5221
|
-
* @export
|
|
5222
3233
|
*/
|
|
5223
3234
|
export declare const PlatformApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5224
3235
|
/**
|
|
@@ -5268,7 +3279,7 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
|
|
|
5268
3279
|
* @param {*} [options] Override http request option.
|
|
5269
3280
|
* @throws {RequiredError}
|
|
5270
3281
|
*/
|
|
5271
|
-
listClientDomains(requestParameters: PlatformApiListClientDomainsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3282
|
+
listClientDomains(requestParameters: PlatformApiListClientDomainsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListDomains200Response>;
|
|
5272
3283
|
/**
|
|
5273
3284
|
* List the domains attached to a platform
|
|
5274
3285
|
* @summary List platform domains
|
|
@@ -5276,7 +3287,7 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
|
|
|
5276
3287
|
* @param {*} [options] Override http request option.
|
|
5277
3288
|
* @throws {RequiredError}
|
|
5278
3289
|
*/
|
|
5279
|
-
listDomains(requestParameters: PlatformApiListDomainsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
3290
|
+
listDomains(requestParameters: PlatformApiListDomainsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListDomains200Response>;
|
|
5280
3291
|
/**
|
|
5281
3292
|
*
|
|
5282
3293
|
* @summary Update platform
|
|
@@ -5288,143 +3299,89 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
|
|
|
5288
3299
|
};
|
|
5289
3300
|
/**
|
|
5290
3301
|
* Request parameters for createClientDomain operation in PlatformApi.
|
|
5291
|
-
* @export
|
|
5292
|
-
* @interface PlatformApiCreateClientDomainRequest
|
|
5293
3302
|
*/
|
|
5294
3303
|
export interface PlatformApiCreateClientDomainRequest {
|
|
5295
3304
|
/**
|
|
5296
3305
|
* Project unique identifier
|
|
5297
|
-
* @type {string}
|
|
5298
|
-
* @memberof PlatformApiCreateClientDomain
|
|
5299
3306
|
*/
|
|
5300
3307
|
readonly project: string;
|
|
5301
|
-
/**
|
|
5302
|
-
*
|
|
5303
|
-
* @type {CreateDomainRequest}
|
|
5304
|
-
* @memberof PlatformApiCreateClientDomain
|
|
5305
|
-
*/
|
|
5306
3308
|
readonly createDomainRequest?: CreateDomainRequest;
|
|
5307
3309
|
}
|
|
5308
3310
|
/**
|
|
5309
3311
|
* Request parameters for createDomain operation in PlatformApi.
|
|
5310
|
-
* @export
|
|
5311
|
-
* @interface PlatformApiCreateDomainRequest
|
|
5312
3312
|
*/
|
|
5313
3313
|
export interface PlatformApiCreateDomainRequest {
|
|
5314
3314
|
/**
|
|
5315
3315
|
* Project unique identifier
|
|
5316
|
-
* @type {string}
|
|
5317
|
-
* @memberof PlatformApiCreateDomain
|
|
5318
3316
|
*/
|
|
5319
3317
|
readonly project: string;
|
|
5320
|
-
/**
|
|
5321
|
-
*
|
|
5322
|
-
* @type {CreateDomainRequest}
|
|
5323
|
-
* @memberof PlatformApiCreateDomain
|
|
5324
|
-
*/
|
|
5325
3318
|
readonly createDomainRequest?: CreateDomainRequest;
|
|
5326
3319
|
}
|
|
5327
3320
|
/**
|
|
5328
3321
|
* Request parameters for deleteClientDomain operation in PlatformApi.
|
|
5329
|
-
* @export
|
|
5330
|
-
* @interface PlatformApiDeleteClientDomainRequest
|
|
5331
3322
|
*/
|
|
5332
3323
|
export interface PlatformApiDeleteClientDomainRequest {
|
|
5333
3324
|
/**
|
|
5334
3325
|
* Project unique identifier
|
|
5335
|
-
* @type {string}
|
|
5336
|
-
* @memberof PlatformApiDeleteClientDomain
|
|
5337
3326
|
*/
|
|
5338
3327
|
readonly project: string;
|
|
5339
3328
|
/**
|
|
5340
3329
|
* The domain identifier
|
|
5341
|
-
* @type {string}
|
|
5342
|
-
* @memberof PlatformApiDeleteClientDomain
|
|
5343
3330
|
*/
|
|
5344
3331
|
readonly domain: string;
|
|
5345
3332
|
}
|
|
5346
3333
|
/**
|
|
5347
3334
|
* Request parameters for deleteDomain operation in PlatformApi.
|
|
5348
|
-
* @export
|
|
5349
|
-
* @interface PlatformApiDeleteDomainRequest
|
|
5350
3335
|
*/
|
|
5351
3336
|
export interface PlatformApiDeleteDomainRequest {
|
|
5352
3337
|
/**
|
|
5353
3338
|
* Project unique identifier
|
|
5354
|
-
* @type {string}
|
|
5355
|
-
* @memberof PlatformApiDeleteDomain
|
|
5356
3339
|
*/
|
|
5357
3340
|
readonly project: string;
|
|
5358
3341
|
/**
|
|
5359
3342
|
* The domain identifier
|
|
5360
|
-
* @type {string}
|
|
5361
|
-
* @memberof PlatformApiDeleteDomain
|
|
5362
3343
|
*/
|
|
5363
3344
|
readonly domain: string;
|
|
5364
3345
|
}
|
|
5365
3346
|
/**
|
|
5366
3347
|
* Request parameters for getPlatform operation in PlatformApi.
|
|
5367
|
-
* @export
|
|
5368
|
-
* @interface PlatformApiGetPlatformRequest
|
|
5369
3348
|
*/
|
|
5370
3349
|
export interface PlatformApiGetPlatformRequest {
|
|
5371
3350
|
/**
|
|
5372
3351
|
* Project unique identifier
|
|
5373
|
-
* @type {string}
|
|
5374
|
-
* @memberof PlatformApiGetPlatform
|
|
5375
3352
|
*/
|
|
5376
3353
|
readonly project: string;
|
|
5377
3354
|
}
|
|
5378
3355
|
/**
|
|
5379
3356
|
* Request parameters for listClientDomains operation in PlatformApi.
|
|
5380
|
-
* @export
|
|
5381
|
-
* @interface PlatformApiListClientDomainsRequest
|
|
5382
3357
|
*/
|
|
5383
3358
|
export interface PlatformApiListClientDomainsRequest {
|
|
5384
3359
|
/**
|
|
5385
3360
|
* Project unique identifier
|
|
5386
|
-
* @type {string}
|
|
5387
|
-
* @memberof PlatformApiListClientDomains
|
|
5388
3361
|
*/
|
|
5389
3362
|
readonly project: string;
|
|
5390
3363
|
}
|
|
5391
3364
|
/**
|
|
5392
3365
|
* Request parameters for listDomains operation in PlatformApi.
|
|
5393
|
-
* @export
|
|
5394
|
-
* @interface PlatformApiListDomainsRequest
|
|
5395
3366
|
*/
|
|
5396
3367
|
export interface PlatformApiListDomainsRequest {
|
|
5397
3368
|
/**
|
|
5398
3369
|
* Project unique identifier
|
|
5399
|
-
* @type {string}
|
|
5400
|
-
* @memberof PlatformApiListDomains
|
|
5401
3370
|
*/
|
|
5402
3371
|
readonly project: string;
|
|
5403
3372
|
}
|
|
5404
3373
|
/**
|
|
5405
3374
|
* Request parameters for updatePlatform operation in PlatformApi.
|
|
5406
|
-
* @export
|
|
5407
|
-
* @interface PlatformApiUpdatePlatformRequest
|
|
5408
3375
|
*/
|
|
5409
3376
|
export interface PlatformApiUpdatePlatformRequest {
|
|
5410
3377
|
/**
|
|
5411
3378
|
* Project unique identifier
|
|
5412
|
-
* @type {string}
|
|
5413
|
-
* @memberof PlatformApiUpdatePlatform
|
|
5414
3379
|
*/
|
|
5415
3380
|
readonly project: string;
|
|
5416
|
-
/**
|
|
5417
|
-
*
|
|
5418
|
-
* @type {UpdatePlatformRequest}
|
|
5419
|
-
* @memberof PlatformApiUpdatePlatform
|
|
5420
|
-
*/
|
|
5421
3381
|
readonly updatePlatformRequest: UpdatePlatformRequest;
|
|
5422
3382
|
}
|
|
5423
3383
|
/**
|
|
5424
3384
|
* PlatformApi - object-oriented interface
|
|
5425
|
-
* @export
|
|
5426
|
-
* @class PlatformApi
|
|
5427
|
-
* @extends {BaseAPI}
|
|
5428
3385
|
*/
|
|
5429
3386
|
export declare class PlatformApi extends BaseAPI {
|
|
5430
3387
|
/**
|
|
@@ -5433,7 +3390,6 @@ export declare class PlatformApi extends BaseAPI {
|
|
|
5433
3390
|
* @param {PlatformApiCreateClientDomainRequest} requestParameters Request parameters.
|
|
5434
3391
|
* @param {*} [options] Override http request option.
|
|
5435
3392
|
* @throws {RequiredError}
|
|
5436
|
-
* @memberof PlatformApi
|
|
5437
3393
|
*/
|
|
5438
3394
|
createClientDomain(requestParameters: PlatformApiCreateClientDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Domain, any>>;
|
|
5439
3395
|
/**
|
|
@@ -5442,7 +3398,6 @@ export declare class PlatformApi extends BaseAPI {
|
|
|
5442
3398
|
* @param {PlatformApiCreateDomainRequest} requestParameters Request parameters.
|
|
5443
3399
|
* @param {*} [options] Override http request option.
|
|
5444
3400
|
* @throws {RequiredError}
|
|
5445
|
-
* @memberof PlatformApi
|
|
5446
3401
|
*/
|
|
5447
3402
|
createDomain(requestParameters: PlatformApiCreateDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Domain, any>>;
|
|
5448
3403
|
/**
|
|
@@ -5451,7 +3406,6 @@ export declare class PlatformApi extends BaseAPI {
|
|
|
5451
3406
|
* @param {PlatformApiDeleteClientDomainRequest} requestParameters Request parameters.
|
|
5452
3407
|
* @param {*} [options] Override http request option.
|
|
5453
3408
|
* @throws {RequiredError}
|
|
5454
|
-
* @memberof PlatformApi
|
|
5455
3409
|
*/
|
|
5456
3410
|
deleteClientDomain(requestParameters: PlatformApiDeleteClientDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
5457
3411
|
/**
|
|
@@ -5460,7 +3414,6 @@ export declare class PlatformApi extends BaseAPI {
|
|
|
5460
3414
|
* @param {PlatformApiDeleteDomainRequest} requestParameters Request parameters.
|
|
5461
3415
|
* @param {*} [options] Override http request option.
|
|
5462
3416
|
* @throws {RequiredError}
|
|
5463
|
-
* @memberof PlatformApi
|
|
5464
3417
|
*/
|
|
5465
3418
|
deleteDomain(requestParameters: PlatformApiDeleteDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
5466
3419
|
/**
|
|
@@ -5469,7 +3422,6 @@ export declare class PlatformApi extends BaseAPI {
|
|
|
5469
3422
|
* @param {PlatformApiGetPlatformRequest} requestParameters Request parameters.
|
|
5470
3423
|
* @param {*} [options] Override http request option.
|
|
5471
3424
|
* @throws {RequiredError}
|
|
5472
|
-
* @memberof PlatformApi
|
|
5473
3425
|
*/
|
|
5474
3426
|
getPlatform(requestParameters: PlatformApiGetPlatformRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Platform, any>>;
|
|
5475
3427
|
/**
|
|
@@ -5478,31 +3430,27 @@ export declare class PlatformApi extends BaseAPI {
|
|
|
5478
3430
|
* @param {PlatformApiListClientDomainsRequest} requestParameters Request parameters.
|
|
5479
3431
|
* @param {*} [options] Override http request option.
|
|
5480
3432
|
* @throws {RequiredError}
|
|
5481
|
-
* @memberof PlatformApi
|
|
5482
3433
|
*/
|
|
5483
|
-
listClientDomains(requestParameters: PlatformApiListClientDomainsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
3434
|
+
listClientDomains(requestParameters: PlatformApiListClientDomainsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDomains200Response, any>>;
|
|
5484
3435
|
/**
|
|
5485
3436
|
* List the domains attached to a platform
|
|
5486
3437
|
* @summary List platform domains
|
|
5487
3438
|
* @param {PlatformApiListDomainsRequest} requestParameters Request parameters.
|
|
5488
3439
|
* @param {*} [options] Override http request option.
|
|
5489
3440
|
* @throws {RequiredError}
|
|
5490
|
-
* @memberof PlatformApi
|
|
5491
3441
|
*/
|
|
5492
|
-
listDomains(requestParameters: PlatformApiListDomainsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
3442
|
+
listDomains(requestParameters: PlatformApiListDomainsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDomains200Response, any>>;
|
|
5493
3443
|
/**
|
|
5494
3444
|
*
|
|
5495
3445
|
* @summary Update platform
|
|
5496
3446
|
* @param {PlatformApiUpdatePlatformRequest} requestParameters Request parameters.
|
|
5497
3447
|
* @param {*} [options] Override http request option.
|
|
5498
3448
|
* @throws {RequiredError}
|
|
5499
|
-
* @memberof PlatformApi
|
|
5500
3449
|
*/
|
|
5501
3450
|
updatePlatform(requestParameters: PlatformApiUpdatePlatformRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Platform, any>>;
|
|
5502
3451
|
}
|
|
5503
3452
|
/**
|
|
5504
3453
|
* ReviewsApi - axios parameter creator
|
|
5505
|
-
* @export
|
|
5506
3454
|
*/
|
|
5507
3455
|
export declare const ReviewsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5508
3456
|
/**
|
|
@@ -5571,7 +3519,6 @@ export declare const ReviewsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5571
3519
|
};
|
|
5572
3520
|
/**
|
|
5573
3521
|
* ReviewsApi - functional programming interface
|
|
5574
|
-
* @export
|
|
5575
3522
|
*/
|
|
5576
3523
|
export declare const ReviewsApiFp: (configuration?: Configuration) => {
|
|
5577
3524
|
/**
|
|
@@ -5640,7 +3587,6 @@ export declare const ReviewsApiFp: (configuration?: Configuration) => {
|
|
|
5640
3587
|
};
|
|
5641
3588
|
/**
|
|
5642
3589
|
* ReviewsApi - factory interface
|
|
5643
|
-
* @export
|
|
5644
3590
|
*/
|
|
5645
3591
|
export declare const ReviewsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5646
3592
|
/**
|
|
@@ -5686,212 +3632,137 @@ export declare const ReviewsApiFactory: (configuration?: Configuration, basePath
|
|
|
5686
3632
|
};
|
|
5687
3633
|
/**
|
|
5688
3634
|
* Request parameters for createReview operation in ReviewsApi.
|
|
5689
|
-
* @export
|
|
5690
|
-
* @interface ReviewsApiCreateReviewRequest
|
|
5691
3635
|
*/
|
|
5692
3636
|
export interface ReviewsApiCreateReviewRequest {
|
|
5693
3637
|
/**
|
|
5694
3638
|
* Project unique identifier
|
|
5695
|
-
* @type {string}
|
|
5696
|
-
* @memberof ReviewsApiCreateReview
|
|
5697
3639
|
*/
|
|
5698
3640
|
readonly project: string;
|
|
5699
3641
|
/**
|
|
5700
3642
|
* The platform identifier
|
|
5701
|
-
* @type {string}
|
|
5702
|
-
* @memberof ReviewsApiCreateReview
|
|
5703
3643
|
*/
|
|
5704
3644
|
readonly platformId: string;
|
|
5705
|
-
/**
|
|
5706
|
-
*
|
|
5707
|
-
* @type {CreateReviewRequest}
|
|
5708
|
-
* @memberof ReviewsApiCreateReview
|
|
5709
|
-
*/
|
|
5710
3645
|
readonly createReviewRequest: CreateReviewRequest;
|
|
5711
3646
|
/**
|
|
5712
3647
|
* Page reference token
|
|
5713
|
-
* @type {number}
|
|
5714
|
-
* @memberof ReviewsApiCreateReview
|
|
5715
3648
|
*/
|
|
5716
3649
|
readonly pageToken?: number;
|
|
5717
3650
|
/**
|
|
5718
3651
|
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5719
|
-
* @type {number}
|
|
5720
|
-
* @memberof ReviewsApiCreateReview
|
|
5721
3652
|
*/
|
|
5722
3653
|
readonly pageSize?: number;
|
|
5723
3654
|
/**
|
|
5724
3655
|
* Search term to filter results
|
|
5725
|
-
* @type {string}
|
|
5726
|
-
* @memberof ReviewsApiCreateReview
|
|
5727
3656
|
*/
|
|
5728
3657
|
readonly search?: string;
|
|
5729
3658
|
/**
|
|
5730
3659
|
* An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
5731
|
-
* @type {Array<string>}
|
|
5732
|
-
* @memberof ReviewsApiCreateReview
|
|
5733
3660
|
*/
|
|
5734
3661
|
readonly sortBy?: Array<string>;
|
|
5735
3662
|
/**
|
|
5736
3663
|
* Start of date range to filter by
|
|
5737
|
-
* @type {string}
|
|
5738
|
-
* @memberof ReviewsApiCreateReview
|
|
5739
3664
|
*/
|
|
5740
3665
|
readonly start?: string;
|
|
5741
3666
|
/**
|
|
5742
3667
|
* End of date range to filter by
|
|
5743
|
-
* @type {string}
|
|
5744
|
-
* @memberof ReviewsApiCreateReview
|
|
5745
3668
|
*/
|
|
5746
3669
|
readonly end?: string;
|
|
5747
3670
|
}
|
|
5748
3671
|
/**
|
|
5749
3672
|
* Request parameters for exportReviews operation in ReviewsApi.
|
|
5750
|
-
* @export
|
|
5751
|
-
* @interface ReviewsApiExportReviewsRequest
|
|
5752
3673
|
*/
|
|
5753
3674
|
export interface ReviewsApiExportReviewsRequest {
|
|
5754
3675
|
/**
|
|
5755
3676
|
* Project unique identifier
|
|
5756
|
-
* @type {string}
|
|
5757
|
-
* @memberof ReviewsApiExportReviews
|
|
5758
3677
|
*/
|
|
5759
3678
|
readonly project: string;
|
|
5760
3679
|
/**
|
|
5761
3680
|
* The platform identifier
|
|
5762
|
-
* @type {string}
|
|
5763
|
-
* @memberof ReviewsApiExportReviews
|
|
5764
3681
|
*/
|
|
5765
3682
|
readonly platformId: string;
|
|
5766
3683
|
/**
|
|
5767
3684
|
* Start of date range to filter by
|
|
5768
|
-
* @type {string}
|
|
5769
|
-
* @memberof ReviewsApiExportReviews
|
|
5770
3685
|
*/
|
|
5771
3686
|
readonly start: string;
|
|
5772
3687
|
/**
|
|
5773
3688
|
* End of date range to filter by
|
|
5774
|
-
* @type {string}
|
|
5775
|
-
* @memberof ReviewsApiExportReviews
|
|
5776
3689
|
*/
|
|
5777
3690
|
readonly end?: string;
|
|
5778
3691
|
}
|
|
5779
3692
|
/**
|
|
5780
3693
|
* Request parameters for getReview operation in ReviewsApi.
|
|
5781
|
-
* @export
|
|
5782
|
-
* @interface ReviewsApiGetReviewRequest
|
|
5783
3694
|
*/
|
|
5784
3695
|
export interface ReviewsApiGetReviewRequest {
|
|
5785
3696
|
/**
|
|
5786
3697
|
* Project unique identifier
|
|
5787
|
-
* @type {string}
|
|
5788
|
-
* @memberof ReviewsApiGetReview
|
|
5789
3698
|
*/
|
|
5790
3699
|
readonly project: string;
|
|
5791
3700
|
/**
|
|
5792
3701
|
* The platform identifier
|
|
5793
|
-
* @type {string}
|
|
5794
|
-
* @memberof ReviewsApiGetReview
|
|
5795
3702
|
*/
|
|
5796
3703
|
readonly platformId: string;
|
|
5797
3704
|
/**
|
|
5798
3705
|
* The review identifier
|
|
5799
|
-
* @type {string}
|
|
5800
|
-
* @memberof ReviewsApiGetReview
|
|
5801
3706
|
*/
|
|
5802
3707
|
readonly reviewId: string;
|
|
5803
3708
|
}
|
|
5804
3709
|
/**
|
|
5805
3710
|
* Request parameters for listReviews operation in ReviewsApi.
|
|
5806
|
-
* @export
|
|
5807
|
-
* @interface ReviewsApiListReviewsRequest
|
|
5808
3711
|
*/
|
|
5809
3712
|
export interface ReviewsApiListReviewsRequest {
|
|
5810
3713
|
/**
|
|
5811
3714
|
* Project unique identifier
|
|
5812
|
-
* @type {string}
|
|
5813
|
-
* @memberof ReviewsApiListReviews
|
|
5814
3715
|
*/
|
|
5815
3716
|
readonly project: string;
|
|
5816
3717
|
/**
|
|
5817
3718
|
* The platform identifier
|
|
5818
|
-
* @type {string}
|
|
5819
|
-
* @memberof ReviewsApiListReviews
|
|
5820
3719
|
*/
|
|
5821
3720
|
readonly platformId: string;
|
|
5822
3721
|
/**
|
|
5823
3722
|
* Page reference token
|
|
5824
|
-
* @type {number}
|
|
5825
|
-
* @memberof ReviewsApiListReviews
|
|
5826
3723
|
*/
|
|
5827
3724
|
readonly pageToken?: number;
|
|
5828
3725
|
/**
|
|
5829
3726
|
* Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5830
|
-
* @type {number}
|
|
5831
|
-
* @memberof ReviewsApiListReviews
|
|
5832
3727
|
*/
|
|
5833
3728
|
readonly pageSize?: number;
|
|
5834
3729
|
/**
|
|
5835
3730
|
* Search term to filter results
|
|
5836
|
-
* @type {string}
|
|
5837
|
-
* @memberof ReviewsApiListReviews
|
|
5838
3731
|
*/
|
|
5839
3732
|
readonly search?: string;
|
|
5840
3733
|
/**
|
|
5841
3734
|
* An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
5842
|
-
* @type {Array<string>}
|
|
5843
|
-
* @memberof ReviewsApiListReviews
|
|
5844
3735
|
*/
|
|
5845
3736
|
readonly sortBy?: Array<string>;
|
|
5846
3737
|
/**
|
|
5847
3738
|
* Start of date range to filter by
|
|
5848
|
-
* @type {string}
|
|
5849
|
-
* @memberof ReviewsApiListReviews
|
|
5850
3739
|
*/
|
|
5851
3740
|
readonly start?: string;
|
|
5852
3741
|
/**
|
|
5853
3742
|
* End of date range to filter by
|
|
5854
|
-
* @type {string}
|
|
5855
|
-
* @memberof ReviewsApiListReviews
|
|
5856
3743
|
*/
|
|
5857
3744
|
readonly end?: string;
|
|
5858
3745
|
}
|
|
5859
3746
|
/**
|
|
5860
3747
|
* Request parameters for moderateReview operation in ReviewsApi.
|
|
5861
|
-
* @export
|
|
5862
|
-
* @interface ReviewsApiModerateReviewRequest
|
|
5863
3748
|
*/
|
|
5864
3749
|
export interface ReviewsApiModerateReviewRequest {
|
|
5865
3750
|
/**
|
|
5866
3751
|
* Project unique identifier
|
|
5867
|
-
* @type {string}
|
|
5868
|
-
* @memberof ReviewsApiModerateReview
|
|
5869
3752
|
*/
|
|
5870
3753
|
readonly project: string;
|
|
5871
3754
|
/**
|
|
5872
3755
|
* The platform identifier
|
|
5873
|
-
* @type {string}
|
|
5874
|
-
* @memberof ReviewsApiModerateReview
|
|
5875
3756
|
*/
|
|
5876
3757
|
readonly platformId: string;
|
|
5877
3758
|
/**
|
|
5878
3759
|
* The review identifier
|
|
5879
|
-
* @type {string}
|
|
5880
|
-
* @memberof ReviewsApiModerateReview
|
|
5881
3760
|
*/
|
|
5882
3761
|
readonly reviewId: string;
|
|
5883
|
-
/**
|
|
5884
|
-
*
|
|
5885
|
-
* @type {ModerateReviewRequest}
|
|
5886
|
-
* @memberof ReviewsApiModerateReview
|
|
5887
|
-
*/
|
|
5888
3762
|
readonly moderateReviewRequest?: ModerateReviewRequest;
|
|
5889
3763
|
}
|
|
5890
3764
|
/**
|
|
5891
3765
|
* ReviewsApi - object-oriented interface
|
|
5892
|
-
* @export
|
|
5893
|
-
* @class ReviewsApi
|
|
5894
|
-
* @extends {BaseAPI}
|
|
5895
3766
|
*/
|
|
5896
3767
|
export declare class ReviewsApi extends BaseAPI {
|
|
5897
3768
|
/**
|
|
@@ -5900,7 +3771,6 @@ export declare class ReviewsApi extends BaseAPI {
|
|
|
5900
3771
|
* @param {ReviewsApiCreateReviewRequest} requestParameters Request parameters.
|
|
5901
3772
|
* @param {*} [options] Override http request option.
|
|
5902
3773
|
* @throws {RequiredError}
|
|
5903
|
-
* @memberof ReviewsApi
|
|
5904
3774
|
*/
|
|
5905
3775
|
createReview(requestParameters: ReviewsApiCreateReviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateReview201Response, any>>;
|
|
5906
3776
|
/**
|
|
@@ -5909,7 +3779,6 @@ export declare class ReviewsApi extends BaseAPI {
|
|
|
5909
3779
|
* @param {ReviewsApiExportReviewsRequest} requestParameters Request parameters.
|
|
5910
3780
|
* @param {*} [options] Override http request option.
|
|
5911
3781
|
* @throws {RequiredError}
|
|
5912
|
-
* @memberof ReviewsApi
|
|
5913
3782
|
*/
|
|
5914
3783
|
exportReviews(requestParameters: ReviewsApiExportReviewsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
|
|
5915
3784
|
/**
|
|
@@ -5918,7 +3787,6 @@ export declare class ReviewsApi extends BaseAPI {
|
|
|
5918
3787
|
* @param {ReviewsApiGetReviewRequest} requestParameters Request parameters.
|
|
5919
3788
|
* @param {*} [options] Override http request option.
|
|
5920
3789
|
* @throws {RequiredError}
|
|
5921
|
-
* @memberof ReviewsApi
|
|
5922
3790
|
*/
|
|
5923
3791
|
getReview(requestParameters: ReviewsApiGetReviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Review, any>>;
|
|
5924
3792
|
/**
|
|
@@ -5927,7 +3795,6 @@ export declare class ReviewsApi extends BaseAPI {
|
|
|
5927
3795
|
* @param {ReviewsApiListReviewsRequest} requestParameters Request parameters.
|
|
5928
3796
|
* @param {*} [options] Override http request option.
|
|
5929
3797
|
* @throws {RequiredError}
|
|
5930
|
-
* @memberof ReviewsApi
|
|
5931
3798
|
*/
|
|
5932
3799
|
listReviews(requestParameters: ReviewsApiListReviewsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ReviewsResponse, any>>;
|
|
5933
3800
|
/**
|
|
@@ -5936,13 +3803,11 @@ export declare class ReviewsApi extends BaseAPI {
|
|
|
5936
3803
|
* @param {ReviewsApiModerateReviewRequest} requestParameters Request parameters.
|
|
5937
3804
|
* @param {*} [options] Override http request option.
|
|
5938
3805
|
* @throws {RequiredError}
|
|
5939
|
-
* @memberof ReviewsApi
|
|
5940
3806
|
*/
|
|
5941
3807
|
moderateReview(requestParameters: ReviewsApiModerateReviewRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Review, any>>;
|
|
5942
3808
|
}
|
|
5943
3809
|
/**
|
|
5944
3810
|
* TermsApi - axios parameter creator
|
|
5945
|
-
* @export
|
|
5946
3811
|
*/
|
|
5947
3812
|
export declare const TermsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5948
3813
|
/**
|
|
@@ -5967,7 +3832,6 @@ export declare const TermsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
5967
3832
|
};
|
|
5968
3833
|
/**
|
|
5969
3834
|
* TermsApi - functional programming interface
|
|
5970
|
-
* @export
|
|
5971
3835
|
*/
|
|
5972
3836
|
export declare const TermsApiFp: (configuration?: Configuration) => {
|
|
5973
3837
|
/**
|
|
@@ -5992,7 +3856,6 @@ export declare const TermsApiFp: (configuration?: Configuration) => {
|
|
|
5992
3856
|
};
|
|
5993
3857
|
/**
|
|
5994
3858
|
* TermsApi - factory interface
|
|
5995
|
-
* @export
|
|
5996
3859
|
*/
|
|
5997
3860
|
export declare const TermsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5998
3861
|
/**
|
|
@@ -6014,53 +3877,36 @@ export declare const TermsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6014
3877
|
};
|
|
6015
3878
|
/**
|
|
6016
3879
|
* Request parameters for getTerms operation in TermsApi.
|
|
6017
|
-
* @export
|
|
6018
|
-
* @interface TermsApiGetTermsRequest
|
|
6019
3880
|
*/
|
|
6020
3881
|
export interface TermsApiGetTermsRequest {
|
|
6021
3882
|
/**
|
|
6022
3883
|
* Project unique identifier
|
|
6023
|
-
* @type {string}
|
|
6024
|
-
* @memberof TermsApiGetTerms
|
|
6025
3884
|
*/
|
|
6026
3885
|
readonly project: string;
|
|
6027
3886
|
/**
|
|
6028
3887
|
* The platform identifier
|
|
6029
|
-
* @type {string}
|
|
6030
|
-
* @memberof TermsApiGetTerms
|
|
6031
3888
|
*/
|
|
6032
3889
|
readonly platformId: string;
|
|
6033
3890
|
}
|
|
6034
3891
|
/**
|
|
6035
3892
|
* Request parameters for saveTerms operation in TermsApi.
|
|
6036
|
-
* @export
|
|
6037
|
-
* @interface TermsApiSaveTermsRequest
|
|
6038
3893
|
*/
|
|
6039
3894
|
export interface TermsApiSaveTermsRequest {
|
|
6040
3895
|
/**
|
|
6041
3896
|
* Project unique identifier
|
|
6042
|
-
* @type {string}
|
|
6043
|
-
* @memberof TermsApiSaveTerms
|
|
6044
3897
|
*/
|
|
6045
3898
|
readonly project: string;
|
|
6046
3899
|
/**
|
|
6047
3900
|
* The platform identifier
|
|
6048
|
-
* @type {string}
|
|
6049
|
-
* @memberof TermsApiSaveTerms
|
|
6050
3901
|
*/
|
|
6051
3902
|
readonly platformId: string;
|
|
6052
3903
|
/**
|
|
6053
3904
|
* Save terms
|
|
6054
|
-
* @type {SaveTermsRequest}
|
|
6055
|
-
* @memberof TermsApiSaveTerms
|
|
6056
3905
|
*/
|
|
6057
3906
|
readonly saveTermsRequest: SaveTermsRequest;
|
|
6058
3907
|
}
|
|
6059
3908
|
/**
|
|
6060
3909
|
* TermsApi - object-oriented interface
|
|
6061
|
-
* @export
|
|
6062
|
-
* @class TermsApi
|
|
6063
|
-
* @extends {BaseAPI}
|
|
6064
3910
|
*/
|
|
6065
3911
|
export declare class TermsApi extends BaseAPI {
|
|
6066
3912
|
/**
|
|
@@ -6069,7 +3915,6 @@ export declare class TermsApi extends BaseAPI {
|
|
|
6069
3915
|
* @param {TermsApiGetTermsRequest} requestParameters Request parameters.
|
|
6070
3916
|
* @param {*} [options] Override http request option.
|
|
6071
3917
|
* @throws {RequiredError}
|
|
6072
|
-
* @memberof TermsApi
|
|
6073
3918
|
*/
|
|
6074
3919
|
getTerms(requestParameters: TermsApiGetTermsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Terms, any>>;
|
|
6075
3920
|
/**
|
|
@@ -6078,7 +3923,6 @@ export declare class TermsApi extends BaseAPI {
|
|
|
6078
3923
|
* @param {TermsApiSaveTermsRequest} requestParameters Request parameters.
|
|
6079
3924
|
* @param {*} [options] Override http request option.
|
|
6080
3925
|
* @throws {RequiredError}
|
|
6081
|
-
* @memberof TermsApi
|
|
6082
3926
|
*/
|
|
6083
3927
|
saveTerms(requestParameters: TermsApiSaveTermsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Terms, any>>;
|
|
6084
3928
|
}
|