erpnext-queue-client 1.22.1 → 1.22.3
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.
|
@@ -155,15 +155,19 @@ export declare const ReturnItemBase: z.ZodObject<{
|
|
|
155
155
|
return_quantity: z.ZodNumber;
|
|
156
156
|
total_price: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
157
157
|
return_fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
158
|
-
is_complaint: z.
|
|
158
|
+
is_complaint: z.ZodNumber;
|
|
159
159
|
servicecase_reason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
160
160
|
servicecase_solution: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
161
161
|
batch_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
162
162
|
complaint_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
163
|
+
internal_reasons: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
164
|
+
attachments: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
163
165
|
}, "strip", z.ZodTypeAny, {
|
|
164
166
|
item: string;
|
|
165
167
|
return_quantity: number;
|
|
166
|
-
is_complaint:
|
|
168
|
+
is_complaint: number;
|
|
169
|
+
attachments?: string | null | undefined;
|
|
170
|
+
internal_reasons?: string | null | undefined;
|
|
167
171
|
line_item_id?: string | null | undefined;
|
|
168
172
|
total_price?: number | null | undefined;
|
|
169
173
|
return_fee?: number | null | undefined;
|
|
@@ -174,10 +178,12 @@ export declare const ReturnItemBase: z.ZodObject<{
|
|
|
174
178
|
}, {
|
|
175
179
|
item: string;
|
|
176
180
|
return_quantity: number;
|
|
181
|
+
is_complaint: number;
|
|
182
|
+
attachments?: string | null | undefined;
|
|
183
|
+
internal_reasons?: string | null | undefined;
|
|
177
184
|
line_item_id?: string | null | undefined;
|
|
178
185
|
total_price?: number | null | undefined;
|
|
179
186
|
return_fee?: number | null | undefined;
|
|
180
|
-
is_complaint?: unknown;
|
|
181
187
|
servicecase_reason?: string | null | undefined;
|
|
182
188
|
servicecase_solution?: string | null | undefined;
|
|
183
189
|
batch_number?: string | null | undefined;
|
|
@@ -190,18 +196,18 @@ export declare const ReturnItemInput: z.ZodObject<{
|
|
|
190
196
|
return_quantity: z.ZodNumber;
|
|
191
197
|
total_price: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
192
198
|
return_fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
193
|
-
is_complaint: z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>;
|
|
194
199
|
servicecase_reason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
195
200
|
servicecase_solution: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
196
201
|
batch_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
197
202
|
complaint_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
198
|
-
} & {
|
|
199
203
|
internal_reasons: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
200
204
|
attachments: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
205
|
+
} & {
|
|
206
|
+
is_complaint: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
201
207
|
}, "strip", z.ZodTypeAny, {
|
|
202
208
|
item: string;
|
|
203
209
|
return_quantity: number;
|
|
204
|
-
is_complaint:
|
|
210
|
+
is_complaint: number;
|
|
205
211
|
attachments?: string | null | undefined;
|
|
206
212
|
internal_reasons?: string | null | undefined;
|
|
207
213
|
line_item_id?: string | null | undefined;
|
|
@@ -232,11 +238,13 @@ export declare const ReturnItem: z.ZodObject<{
|
|
|
232
238
|
return_quantity: z.ZodNumber;
|
|
233
239
|
total_price: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
234
240
|
return_fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
235
|
-
is_complaint: z.
|
|
241
|
+
is_complaint: z.ZodNumber;
|
|
236
242
|
servicecase_reason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
237
243
|
servicecase_solution: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
238
244
|
batch_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
239
245
|
complaint_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
246
|
+
internal_reasons: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
247
|
+
attachments: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
240
248
|
} & {
|
|
241
249
|
name: z.ZodString;
|
|
242
250
|
owner: z.ZodString;
|
|
@@ -244,8 +252,6 @@ export declare const ReturnItem: z.ZodObject<{
|
|
|
244
252
|
modified: z.ZodString;
|
|
245
253
|
modified_by: z.ZodString;
|
|
246
254
|
idx: z.ZodNumber;
|
|
247
|
-
internal_reasons: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
248
|
-
attachments: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
249
255
|
}, "strip", z.ZodTypeAny, {
|
|
250
256
|
name: string;
|
|
251
257
|
owner: string;
|
|
@@ -255,7 +261,7 @@ export declare const ReturnItem: z.ZodObject<{
|
|
|
255
261
|
idx: number;
|
|
256
262
|
item: string;
|
|
257
263
|
return_quantity: number;
|
|
258
|
-
is_complaint:
|
|
264
|
+
is_complaint: number;
|
|
259
265
|
attachments?: string | null | undefined;
|
|
260
266
|
internal_reasons?: string | null | undefined;
|
|
261
267
|
line_item_id?: string | null | undefined;
|
|
@@ -274,12 +280,12 @@ export declare const ReturnItem: z.ZodObject<{
|
|
|
274
280
|
idx: number;
|
|
275
281
|
item: string;
|
|
276
282
|
return_quantity: number;
|
|
283
|
+
is_complaint: number;
|
|
277
284
|
attachments?: string | null | undefined;
|
|
278
285
|
internal_reasons?: string | null | undefined;
|
|
279
286
|
line_item_id?: string | null | undefined;
|
|
280
287
|
total_price?: number | null | undefined;
|
|
281
288
|
return_fee?: number | null | undefined;
|
|
282
|
-
is_complaint?: unknown;
|
|
283
289
|
servicecase_reason?: string | null | undefined;
|
|
284
290
|
servicecase_solution?: string | null | undefined;
|
|
285
291
|
batch_number?: string | null | undefined;
|
|
@@ -292,7 +298,6 @@ export declare const ReturnItemExtended: z.ZodObject<{
|
|
|
292
298
|
return_quantity: z.ZodNumber;
|
|
293
299
|
total_price: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
294
300
|
return_fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
295
|
-
is_complaint: z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>;
|
|
296
301
|
servicecase_reason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
297
302
|
servicecase_solution: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
298
303
|
batch_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -304,7 +309,17 @@ export declare const ReturnItemExtended: z.ZodObject<{
|
|
|
304
309
|
modified: z.ZodString;
|
|
305
310
|
modified_by: z.ZodString;
|
|
306
311
|
idx: z.ZodNumber;
|
|
307
|
-
attachments: z.ZodArray<z.
|
|
312
|
+
attachments: z.ZodArray<z.ZodObject<{
|
|
313
|
+
url: z.ZodString;
|
|
314
|
+
type: z.ZodEnum<["image", "video"]>;
|
|
315
|
+
}, "strip", z.ZodTypeAny, {
|
|
316
|
+
type: "image" | "video";
|
|
317
|
+
url: string;
|
|
318
|
+
}, {
|
|
319
|
+
type: "image" | "video";
|
|
320
|
+
url: string;
|
|
321
|
+
}>, "many">;
|
|
322
|
+
is_complaint: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
308
323
|
attachments_collection_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
309
324
|
internal_reasons: z.ZodArray<z.ZodString, "many">;
|
|
310
325
|
internal_reasons_collection_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -315,7 +330,10 @@ export declare const ReturnItemExtended: z.ZodObject<{
|
|
|
315
330
|
modified: string;
|
|
316
331
|
modified_by: string;
|
|
317
332
|
idx: number;
|
|
318
|
-
attachments:
|
|
333
|
+
attachments: {
|
|
334
|
+
type: "image" | "video";
|
|
335
|
+
url: string;
|
|
336
|
+
}[];
|
|
319
337
|
internal_reasons: string[];
|
|
320
338
|
item: string;
|
|
321
339
|
return_quantity: number;
|
|
@@ -336,14 +354,17 @@ export declare const ReturnItemExtended: z.ZodObject<{
|
|
|
336
354
|
modified: string;
|
|
337
355
|
modified_by: string;
|
|
338
356
|
idx: number;
|
|
339
|
-
attachments:
|
|
357
|
+
attachments: {
|
|
358
|
+
type: "image" | "video";
|
|
359
|
+
url: string;
|
|
360
|
+
}[];
|
|
340
361
|
internal_reasons: string[];
|
|
341
362
|
item: string;
|
|
342
363
|
return_quantity: number;
|
|
364
|
+
is_complaint: number;
|
|
343
365
|
line_item_id?: string | null | undefined;
|
|
344
366
|
total_price?: number | null | undefined;
|
|
345
367
|
return_fee?: number | null | undefined;
|
|
346
|
-
is_complaint?: unknown;
|
|
347
368
|
servicecase_reason?: string | null | undefined;
|
|
348
369
|
servicecase_solution?: string | null | undefined;
|
|
349
370
|
batch_number?: string | null | undefined;
|
|
@@ -360,15 +381,15 @@ export declare const ServicecaseBase: z.ZodObject<{
|
|
|
360
381
|
customer_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
361
382
|
status: z.ZodDefault<z.ZodEnum<["EDITING", "SUBMITTING", "VALIDATING", "REJECTED", "SHIPPING", "COMPLETED"]>>;
|
|
362
383
|
complaint_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
363
|
-
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.
|
|
364
|
-
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.
|
|
384
|
+
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
385
|
+
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
365
386
|
customer_message: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
366
387
|
agreed_terms: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
367
388
|
created_with: z.ZodDefault<z.ZodEnum<["Serviceportal", "Missive Sidebar", "Amazon FBA", "Amazon FBM"]>>;
|
|
368
|
-
country: z.
|
|
389
|
+
country: z.ZodString;
|
|
369
390
|
}, "strip", z.ZodTypeAny, {
|
|
370
391
|
status: "EDITING" | "SUBMITTING" | "VALIDATING" | "REJECTED" | "SHIPPING" | "COMPLETED";
|
|
371
|
-
country:
|
|
392
|
+
country: string;
|
|
372
393
|
title: string;
|
|
373
394
|
order_number: string;
|
|
374
395
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
@@ -376,12 +397,12 @@ export declare const ServicecaseBase: z.ZodObject<{
|
|
|
376
397
|
external_id?: string | null | undefined;
|
|
377
398
|
customer_email?: string | null | undefined;
|
|
378
399
|
complaint_date?: string | null | undefined;
|
|
379
|
-
is_sent_to_client?:
|
|
380
|
-
is_sent_to_cc?:
|
|
400
|
+
is_sent_to_client?: number | null | undefined;
|
|
401
|
+
is_sent_to_cc?: number | null | undefined;
|
|
381
402
|
customer_message?: string | null | undefined;
|
|
382
403
|
agreed_terms?: string | null | undefined;
|
|
383
404
|
}, {
|
|
384
|
-
country:
|
|
405
|
+
country: string;
|
|
385
406
|
title: string;
|
|
386
407
|
order_number: string;
|
|
387
408
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
@@ -389,8 +410,8 @@ export declare const ServicecaseBase: z.ZodObject<{
|
|
|
389
410
|
external_id?: string | null | undefined;
|
|
390
411
|
customer_email?: string | null | undefined;
|
|
391
412
|
complaint_date?: string | null | undefined;
|
|
392
|
-
is_sent_to_client?:
|
|
393
|
-
is_sent_to_cc?:
|
|
413
|
+
is_sent_to_client?: number | null | undefined;
|
|
414
|
+
is_sent_to_cc?: number | null | undefined;
|
|
394
415
|
customer_message?: string | null | undefined;
|
|
395
416
|
agreed_terms?: string | null | undefined;
|
|
396
417
|
created_with?: "Amazon FBA" | "Amazon FBM" | "Serviceportal" | "Missive Sidebar" | undefined;
|
|
@@ -404,12 +425,10 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
404
425
|
customer_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
405
426
|
status: z.ZodDefault<z.ZodEnum<["EDITING", "SUBMITTING", "VALIDATING", "REJECTED", "SHIPPING", "COMPLETED"]>>;
|
|
406
427
|
complaint_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
407
|
-
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>>>;
|
|
408
|
-
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>>>;
|
|
409
428
|
customer_message: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
410
429
|
agreed_terms: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
411
430
|
created_with: z.ZodDefault<z.ZodEnum<["Serviceportal", "Missive Sidebar", "Amazon FBA", "Amazon FBM"]>>;
|
|
412
|
-
country: z.
|
|
431
|
+
country: z.ZodString;
|
|
413
432
|
} & {
|
|
414
433
|
name: z.ZodString;
|
|
415
434
|
owner: z.ZodString;
|
|
@@ -422,11 +441,13 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
422
441
|
return_quantity: z.ZodNumber;
|
|
423
442
|
total_price: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
424
443
|
return_fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
425
|
-
is_complaint: z.
|
|
444
|
+
is_complaint: z.ZodNumber;
|
|
426
445
|
servicecase_reason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
427
446
|
servicecase_solution: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
428
447
|
batch_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
429
448
|
complaint_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
449
|
+
internal_reasons: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
450
|
+
attachments: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
430
451
|
} & {
|
|
431
452
|
name: z.ZodString;
|
|
432
453
|
owner: z.ZodString;
|
|
@@ -434,8 +455,6 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
434
455
|
modified: z.ZodString;
|
|
435
456
|
modified_by: z.ZodString;
|
|
436
457
|
idx: z.ZodNumber;
|
|
437
|
-
internal_reasons: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
438
|
-
attachments: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
439
458
|
}, "strip", z.ZodTypeAny, {
|
|
440
459
|
name: string;
|
|
441
460
|
owner: string;
|
|
@@ -445,7 +464,7 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
445
464
|
idx: number;
|
|
446
465
|
item: string;
|
|
447
466
|
return_quantity: number;
|
|
448
|
-
is_complaint:
|
|
467
|
+
is_complaint: number;
|
|
449
468
|
attachments?: string | null | undefined;
|
|
450
469
|
internal_reasons?: string | null | undefined;
|
|
451
470
|
line_item_id?: string | null | undefined;
|
|
@@ -464,21 +483,23 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
464
483
|
idx: number;
|
|
465
484
|
item: string;
|
|
466
485
|
return_quantity: number;
|
|
486
|
+
is_complaint: number;
|
|
467
487
|
attachments?: string | null | undefined;
|
|
468
488
|
internal_reasons?: string | null | undefined;
|
|
469
489
|
line_item_id?: string | null | undefined;
|
|
470
490
|
total_price?: number | null | undefined;
|
|
471
491
|
return_fee?: number | null | undefined;
|
|
472
|
-
is_complaint?: unknown;
|
|
473
492
|
servicecase_reason?: string | null | undefined;
|
|
474
493
|
servicecase_solution?: string | null | undefined;
|
|
475
494
|
batch_number?: string | null | undefined;
|
|
476
495
|
complaint_description?: string | null | undefined;
|
|
477
496
|
}>, "many">;
|
|
497
|
+
is_sent_to_client: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
498
|
+
is_sent_to_cc: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
478
499
|
}, "strip", z.ZodTypeAny, {
|
|
479
500
|
status: "EDITING" | "SUBMITTING" | "VALIDATING" | "REJECTED" | "SHIPPING" | "COMPLETED";
|
|
480
501
|
name: string;
|
|
481
|
-
country:
|
|
502
|
+
country: string;
|
|
482
503
|
owner: string;
|
|
483
504
|
creation: string;
|
|
484
505
|
modified: string;
|
|
@@ -486,6 +507,8 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
486
507
|
title: string;
|
|
487
508
|
order_number: string;
|
|
488
509
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
510
|
+
is_sent_to_client: boolean;
|
|
511
|
+
is_sent_to_cc: boolean;
|
|
489
512
|
created_with: "Amazon FBA" | "Amazon FBM" | "Serviceportal" | "Missive Sidebar";
|
|
490
513
|
return_items: {
|
|
491
514
|
name: string;
|
|
@@ -496,7 +519,7 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
496
519
|
idx: number;
|
|
497
520
|
item: string;
|
|
498
521
|
return_quantity: number;
|
|
499
|
-
is_complaint:
|
|
522
|
+
is_complaint: number;
|
|
500
523
|
attachments?: string | null | undefined;
|
|
501
524
|
internal_reasons?: string | null | undefined;
|
|
502
525
|
line_item_id?: string | null | undefined;
|
|
@@ -510,13 +533,11 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
510
533
|
external_id?: string | null | undefined;
|
|
511
534
|
customer_email?: string | null | undefined;
|
|
512
535
|
complaint_date?: string | null | undefined;
|
|
513
|
-
is_sent_to_client?: boolean | null | undefined;
|
|
514
|
-
is_sent_to_cc?: boolean | null | undefined;
|
|
515
536
|
customer_message?: string | null | undefined;
|
|
516
537
|
agreed_terms?: string | null | undefined;
|
|
517
538
|
}, {
|
|
518
539
|
name: string;
|
|
519
|
-
country:
|
|
540
|
+
country: string;
|
|
520
541
|
owner: string;
|
|
521
542
|
creation: string;
|
|
522
543
|
modified: string;
|
|
@@ -524,6 +545,8 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
524
545
|
title: string;
|
|
525
546
|
order_number: string;
|
|
526
547
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
548
|
+
is_sent_to_client: number;
|
|
549
|
+
is_sent_to_cc: number;
|
|
527
550
|
return_items: {
|
|
528
551
|
name: string;
|
|
529
552
|
owner: string;
|
|
@@ -533,12 +556,12 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
533
556
|
idx: number;
|
|
534
557
|
item: string;
|
|
535
558
|
return_quantity: number;
|
|
559
|
+
is_complaint: number;
|
|
536
560
|
attachments?: string | null | undefined;
|
|
537
561
|
internal_reasons?: string | null | undefined;
|
|
538
562
|
line_item_id?: string | null | undefined;
|
|
539
563
|
total_price?: number | null | undefined;
|
|
540
564
|
return_fee?: number | null | undefined;
|
|
541
|
-
is_complaint?: unknown;
|
|
542
565
|
servicecase_reason?: string | null | undefined;
|
|
543
566
|
servicecase_solution?: string | null | undefined;
|
|
544
567
|
batch_number?: string | null | undefined;
|
|
@@ -548,8 +571,6 @@ export declare const Servicecase: z.ZodObject<{
|
|
|
548
571
|
external_id?: string | null | undefined;
|
|
549
572
|
customer_email?: string | null | undefined;
|
|
550
573
|
complaint_date?: string | null | undefined;
|
|
551
|
-
is_sent_to_client?: unknown;
|
|
552
|
-
is_sent_to_cc?: unknown;
|
|
553
574
|
customer_message?: string | null | undefined;
|
|
554
575
|
agreed_terms?: string | null | undefined;
|
|
555
576
|
created_with?: "Amazon FBA" | "Amazon FBM" | "Serviceportal" | "Missive Sidebar" | undefined;
|
|
@@ -563,12 +584,10 @@ export declare const ServicecaseInput: z.ZodObject<{
|
|
|
563
584
|
customer_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
564
585
|
status: z.ZodDefault<z.ZodEnum<["EDITING", "SUBMITTING", "VALIDATING", "REJECTED", "SHIPPING", "COMPLETED"]>>;
|
|
565
586
|
complaint_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
566
|
-
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>>>;
|
|
567
|
-
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>>>;
|
|
568
587
|
customer_message: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
569
588
|
agreed_terms: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
570
589
|
created_with: z.ZodDefault<z.ZodEnum<["Serviceportal", "Missive Sidebar", "Amazon FBA", "Amazon FBM"]>>;
|
|
571
|
-
country: z.
|
|
590
|
+
country: z.ZodString;
|
|
572
591
|
} & {
|
|
573
592
|
return_items: z.ZodArray<z.ZodObject<{
|
|
574
593
|
item: z.ZodString;
|
|
@@ -576,18 +595,18 @@ export declare const ServicecaseInput: z.ZodObject<{
|
|
|
576
595
|
return_quantity: z.ZodNumber;
|
|
577
596
|
total_price: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
578
597
|
return_fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
579
|
-
is_complaint: z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>;
|
|
580
598
|
servicecase_reason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
581
599
|
servicecase_solution: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
582
600
|
batch_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
583
601
|
complaint_description: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
584
|
-
} & {
|
|
585
602
|
internal_reasons: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
586
603
|
attachments: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
604
|
+
} & {
|
|
605
|
+
is_complaint: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
587
606
|
}, "strip", z.ZodTypeAny, {
|
|
588
607
|
item: string;
|
|
589
608
|
return_quantity: number;
|
|
590
|
-
is_complaint:
|
|
609
|
+
is_complaint: number;
|
|
591
610
|
attachments?: string | null | undefined;
|
|
592
611
|
internal_reasons?: string | null | undefined;
|
|
593
612
|
line_item_id?: string | null | undefined;
|
|
@@ -611,17 +630,21 @@ export declare const ServicecaseInput: z.ZodObject<{
|
|
|
611
630
|
batch_number?: string | null | undefined;
|
|
612
631
|
complaint_description?: string | null | undefined;
|
|
613
632
|
}>, "many">;
|
|
633
|
+
is_sent_to_client: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
634
|
+
is_sent_to_cc: z.ZodEffects<z.ZodNumber, number, unknown>;
|
|
614
635
|
}, "strip", z.ZodTypeAny, {
|
|
615
636
|
status: "EDITING" | "SUBMITTING" | "VALIDATING" | "REJECTED" | "SHIPPING" | "COMPLETED";
|
|
616
|
-
country:
|
|
637
|
+
country: string;
|
|
617
638
|
title: string;
|
|
618
639
|
order_number: string;
|
|
619
640
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
641
|
+
is_sent_to_client: number;
|
|
642
|
+
is_sent_to_cc: number;
|
|
620
643
|
created_with: "Amazon FBA" | "Amazon FBM" | "Serviceportal" | "Missive Sidebar";
|
|
621
644
|
return_items: {
|
|
622
645
|
item: string;
|
|
623
646
|
return_quantity: number;
|
|
624
|
-
is_complaint:
|
|
647
|
+
is_complaint: number;
|
|
625
648
|
attachments?: string | null | undefined;
|
|
626
649
|
internal_reasons?: string | null | undefined;
|
|
627
650
|
line_item_id?: string | null | undefined;
|
|
@@ -635,12 +658,10 @@ export declare const ServicecaseInput: z.ZodObject<{
|
|
|
635
658
|
external_id?: string | null | undefined;
|
|
636
659
|
customer_email?: string | null | undefined;
|
|
637
660
|
complaint_date?: string | null | undefined;
|
|
638
|
-
is_sent_to_client?: boolean | null | undefined;
|
|
639
|
-
is_sent_to_cc?: boolean | null | undefined;
|
|
640
661
|
customer_message?: string | null | undefined;
|
|
641
662
|
agreed_terms?: string | null | undefined;
|
|
642
663
|
}, {
|
|
643
|
-
country:
|
|
664
|
+
country: string;
|
|
644
665
|
title: string;
|
|
645
666
|
order_number: string;
|
|
646
667
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
@@ -677,12 +698,10 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
677
698
|
customer_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
678
699
|
status: z.ZodDefault<z.ZodEnum<["EDITING", "SUBMITTING", "VALIDATING", "REJECTED", "SHIPPING", "COMPLETED"]>>;
|
|
679
700
|
complaint_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
680
|
-
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>>>;
|
|
681
|
-
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>>>;
|
|
682
701
|
customer_message: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
683
702
|
agreed_terms: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
684
703
|
created_with: z.ZodDefault<z.ZodEnum<["Serviceportal", "Missive Sidebar", "Amazon FBA", "Amazon FBM"]>>;
|
|
685
|
-
country: z.
|
|
704
|
+
country: z.ZodString;
|
|
686
705
|
name: z.ZodString;
|
|
687
706
|
owner: z.ZodString;
|
|
688
707
|
creation: z.ZodString;
|
|
@@ -695,7 +714,6 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
695
714
|
return_quantity: z.ZodNumber;
|
|
696
715
|
total_price: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
697
716
|
return_fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
698
|
-
is_complaint: z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>;
|
|
699
717
|
servicecase_reason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
700
718
|
servicecase_solution: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
701
719
|
batch_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -707,7 +725,17 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
707
725
|
modified: z.ZodString;
|
|
708
726
|
modified_by: z.ZodString;
|
|
709
727
|
idx: z.ZodNumber;
|
|
710
|
-
attachments: z.ZodArray<z.
|
|
728
|
+
attachments: z.ZodArray<z.ZodObject<{
|
|
729
|
+
url: z.ZodString;
|
|
730
|
+
type: z.ZodEnum<["image", "video"]>;
|
|
731
|
+
}, "strip", z.ZodTypeAny, {
|
|
732
|
+
type: "image" | "video";
|
|
733
|
+
url: string;
|
|
734
|
+
}, {
|
|
735
|
+
type: "image" | "video";
|
|
736
|
+
url: string;
|
|
737
|
+
}>, "many">;
|
|
738
|
+
is_complaint: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
711
739
|
attachments_collection_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
712
740
|
internal_reasons: z.ZodArray<z.ZodString, "many">;
|
|
713
741
|
internal_reasons_collection_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -718,7 +746,10 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
718
746
|
modified: string;
|
|
719
747
|
modified_by: string;
|
|
720
748
|
idx: number;
|
|
721
|
-
attachments:
|
|
749
|
+
attachments: {
|
|
750
|
+
type: "image" | "video";
|
|
751
|
+
url: string;
|
|
752
|
+
}[];
|
|
722
753
|
internal_reasons: string[];
|
|
723
754
|
item: string;
|
|
724
755
|
return_quantity: number;
|
|
@@ -739,14 +770,17 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
739
770
|
modified: string;
|
|
740
771
|
modified_by: string;
|
|
741
772
|
idx: number;
|
|
742
|
-
attachments:
|
|
773
|
+
attachments: {
|
|
774
|
+
type: "image" | "video";
|
|
775
|
+
url: string;
|
|
776
|
+
}[];
|
|
743
777
|
internal_reasons: string[];
|
|
744
778
|
item: string;
|
|
745
779
|
return_quantity: number;
|
|
780
|
+
is_complaint: number;
|
|
746
781
|
line_item_id?: string | null | undefined;
|
|
747
782
|
total_price?: number | null | undefined;
|
|
748
783
|
return_fee?: number | null | undefined;
|
|
749
|
-
is_complaint?: unknown;
|
|
750
784
|
servicecase_reason?: string | null | undefined;
|
|
751
785
|
servicecase_solution?: string | null | undefined;
|
|
752
786
|
batch_number?: string | null | undefined;
|
|
@@ -754,10 +788,12 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
754
788
|
attachments_collection_name?: string | null | undefined;
|
|
755
789
|
internal_reasons_collection_name?: string | null | undefined;
|
|
756
790
|
}>, "many">;
|
|
791
|
+
is_sent_to_client: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
792
|
+
is_sent_to_cc: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
757
793
|
}, "strip", z.ZodTypeAny, {
|
|
758
794
|
status: "EDITING" | "SUBMITTING" | "VALIDATING" | "REJECTED" | "SHIPPING" | "COMPLETED";
|
|
759
795
|
name: string;
|
|
760
|
-
country:
|
|
796
|
+
country: string;
|
|
761
797
|
owner: string;
|
|
762
798
|
creation: string;
|
|
763
799
|
modified: string;
|
|
@@ -765,6 +801,8 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
765
801
|
title: string;
|
|
766
802
|
order_number: string;
|
|
767
803
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
804
|
+
is_sent_to_client: boolean;
|
|
805
|
+
is_sent_to_cc: boolean;
|
|
768
806
|
created_with: "Amazon FBA" | "Amazon FBM" | "Serviceportal" | "Missive Sidebar";
|
|
769
807
|
return_items: {
|
|
770
808
|
name: string;
|
|
@@ -773,7 +811,10 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
773
811
|
modified: string;
|
|
774
812
|
modified_by: string;
|
|
775
813
|
idx: number;
|
|
776
|
-
attachments:
|
|
814
|
+
attachments: {
|
|
815
|
+
type: "image" | "video";
|
|
816
|
+
url: string;
|
|
817
|
+
}[];
|
|
777
818
|
internal_reasons: string[];
|
|
778
819
|
item: string;
|
|
779
820
|
return_quantity: number;
|
|
@@ -791,13 +832,11 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
791
832
|
external_id?: string | null | undefined;
|
|
792
833
|
customer_email?: string | null | undefined;
|
|
793
834
|
complaint_date?: string | null | undefined;
|
|
794
|
-
is_sent_to_client?: boolean | null | undefined;
|
|
795
|
-
is_sent_to_cc?: boolean | null | undefined;
|
|
796
835
|
customer_message?: string | null | undefined;
|
|
797
836
|
agreed_terms?: string | null | undefined;
|
|
798
837
|
}, {
|
|
799
838
|
name: string;
|
|
800
|
-
country:
|
|
839
|
+
country: string;
|
|
801
840
|
owner: string;
|
|
802
841
|
creation: string;
|
|
803
842
|
modified: string;
|
|
@@ -805,6 +844,8 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
805
844
|
title: string;
|
|
806
845
|
order_number: string;
|
|
807
846
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
847
|
+
is_sent_to_client: number;
|
|
848
|
+
is_sent_to_cc: number;
|
|
808
849
|
return_items: {
|
|
809
850
|
name: string;
|
|
810
851
|
owner: string;
|
|
@@ -812,14 +853,17 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
812
853
|
modified: string;
|
|
813
854
|
modified_by: string;
|
|
814
855
|
idx: number;
|
|
815
|
-
attachments:
|
|
856
|
+
attachments: {
|
|
857
|
+
type: "image" | "video";
|
|
858
|
+
url: string;
|
|
859
|
+
}[];
|
|
816
860
|
internal_reasons: string[];
|
|
817
861
|
item: string;
|
|
818
862
|
return_quantity: number;
|
|
863
|
+
is_complaint: number;
|
|
819
864
|
line_item_id?: string | null | undefined;
|
|
820
865
|
total_price?: number | null | undefined;
|
|
821
866
|
return_fee?: number | null | undefined;
|
|
822
|
-
is_complaint?: unknown;
|
|
823
867
|
servicecase_reason?: string | null | undefined;
|
|
824
868
|
servicecase_solution?: string | null | undefined;
|
|
825
869
|
batch_number?: string | null | undefined;
|
|
@@ -831,8 +875,6 @@ export declare const ServicecaseExtended: z.ZodObject<{
|
|
|
831
875
|
external_id?: string | null | undefined;
|
|
832
876
|
customer_email?: string | null | undefined;
|
|
833
877
|
complaint_date?: string | null | undefined;
|
|
834
|
-
is_sent_to_client?: unknown;
|
|
835
|
-
is_sent_to_cc?: unknown;
|
|
836
878
|
customer_message?: string | null | undefined;
|
|
837
879
|
agreed_terms?: string | null | undefined;
|
|
838
880
|
created_with?: "Amazon FBA" | "Amazon FBM" | "Serviceportal" | "Missive Sidebar" | undefined;
|
|
@@ -846,12 +888,10 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
846
888
|
customer_email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
847
889
|
status: z.ZodDefault<z.ZodEnum<["EDITING", "SUBMITTING", "VALIDATING", "REJECTED", "SHIPPING", "COMPLETED"]>>;
|
|
848
890
|
complaint_date: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
849
|
-
is_sent_to_client: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>>>;
|
|
850
|
-
is_sent_to_cc: z.ZodNullable<z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>>>;
|
|
851
891
|
customer_message: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
852
892
|
agreed_terms: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
853
893
|
created_with: z.ZodDefault<z.ZodEnum<["Serviceportal", "Missive Sidebar", "Amazon FBA", "Amazon FBM"]>>;
|
|
854
|
-
country: z.
|
|
894
|
+
country: z.ZodString;
|
|
855
895
|
name: z.ZodString;
|
|
856
896
|
owner: z.ZodString;
|
|
857
897
|
creation: z.ZodString;
|
|
@@ -864,7 +904,6 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
864
904
|
return_quantity: z.ZodNumber;
|
|
865
905
|
total_price: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
866
906
|
return_fee: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
867
|
-
is_complaint: z.ZodEffects<z.ZodEffects<z.ZodNumber, boolean, number>, boolean, unknown>;
|
|
868
907
|
servicecase_reason: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
869
908
|
servicecase_solution: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
870
909
|
batch_number: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -876,7 +915,17 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
876
915
|
modified: z.ZodString;
|
|
877
916
|
modified_by: z.ZodString;
|
|
878
917
|
idx: z.ZodNumber;
|
|
879
|
-
attachments: z.ZodArray<z.
|
|
918
|
+
attachments: z.ZodArray<z.ZodObject<{
|
|
919
|
+
url: z.ZodString;
|
|
920
|
+
type: z.ZodEnum<["image", "video"]>;
|
|
921
|
+
}, "strip", z.ZodTypeAny, {
|
|
922
|
+
type: "image" | "video";
|
|
923
|
+
url: string;
|
|
924
|
+
}, {
|
|
925
|
+
type: "image" | "video";
|
|
926
|
+
url: string;
|
|
927
|
+
}>, "many">;
|
|
928
|
+
is_complaint: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
880
929
|
attachments_collection_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
881
930
|
internal_reasons: z.ZodArray<z.ZodString, "many">;
|
|
882
931
|
internal_reasons_collection_name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -887,7 +936,10 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
887
936
|
modified: string;
|
|
888
937
|
modified_by: string;
|
|
889
938
|
idx: number;
|
|
890
|
-
attachments:
|
|
939
|
+
attachments: {
|
|
940
|
+
type: "image" | "video";
|
|
941
|
+
url: string;
|
|
942
|
+
}[];
|
|
891
943
|
internal_reasons: string[];
|
|
892
944
|
item: string;
|
|
893
945
|
return_quantity: number;
|
|
@@ -908,14 +960,17 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
908
960
|
modified: string;
|
|
909
961
|
modified_by: string;
|
|
910
962
|
idx: number;
|
|
911
|
-
attachments:
|
|
963
|
+
attachments: {
|
|
964
|
+
type: "image" | "video";
|
|
965
|
+
url: string;
|
|
966
|
+
}[];
|
|
912
967
|
internal_reasons: string[];
|
|
913
968
|
item: string;
|
|
914
969
|
return_quantity: number;
|
|
970
|
+
is_complaint: number;
|
|
915
971
|
line_item_id?: string | null | undefined;
|
|
916
972
|
total_price?: number | null | undefined;
|
|
917
973
|
return_fee?: number | null | undefined;
|
|
918
|
-
is_complaint?: unknown;
|
|
919
974
|
servicecase_reason?: string | null | undefined;
|
|
920
975
|
servicecase_solution?: string | null | undefined;
|
|
921
976
|
batch_number?: string | null | undefined;
|
|
@@ -923,10 +978,12 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
923
978
|
attachments_collection_name?: string | null | undefined;
|
|
924
979
|
internal_reasons_collection_name?: string | null | undefined;
|
|
925
980
|
}>, "many">;
|
|
981
|
+
is_sent_to_client: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
982
|
+
is_sent_to_cc: z.ZodEffects<z.ZodNumber, boolean, number>;
|
|
926
983
|
}, "strip", z.ZodTypeAny, {
|
|
927
984
|
status: "EDITING" | "SUBMITTING" | "VALIDATING" | "REJECTED" | "SHIPPING" | "COMPLETED";
|
|
928
985
|
name: string;
|
|
929
|
-
country:
|
|
986
|
+
country: string;
|
|
930
987
|
owner: string;
|
|
931
988
|
creation: string;
|
|
932
989
|
modified: string;
|
|
@@ -934,6 +991,8 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
934
991
|
title: string;
|
|
935
992
|
order_number: string;
|
|
936
993
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
994
|
+
is_sent_to_client: boolean;
|
|
995
|
+
is_sent_to_cc: boolean;
|
|
937
996
|
created_with: "Amazon FBA" | "Amazon FBM" | "Serviceportal" | "Missive Sidebar";
|
|
938
997
|
return_items: {
|
|
939
998
|
name: string;
|
|
@@ -942,7 +1001,10 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
942
1001
|
modified: string;
|
|
943
1002
|
modified_by: string;
|
|
944
1003
|
idx: number;
|
|
945
|
-
attachments:
|
|
1004
|
+
attachments: {
|
|
1005
|
+
type: "image" | "video";
|
|
1006
|
+
url: string;
|
|
1007
|
+
}[];
|
|
946
1008
|
internal_reasons: string[];
|
|
947
1009
|
item: string;
|
|
948
1010
|
return_quantity: number;
|
|
@@ -960,13 +1022,11 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
960
1022
|
external_id?: string | null | undefined;
|
|
961
1023
|
customer_email?: string | null | undefined;
|
|
962
1024
|
complaint_date?: string | null | undefined;
|
|
963
|
-
is_sent_to_client?: boolean | null | undefined;
|
|
964
|
-
is_sent_to_cc?: boolean | null | undefined;
|
|
965
1025
|
customer_message?: string | null | undefined;
|
|
966
1026
|
agreed_terms?: string | null | undefined;
|
|
967
1027
|
}, {
|
|
968
1028
|
name: string;
|
|
969
|
-
country:
|
|
1029
|
+
country: string;
|
|
970
1030
|
owner: string;
|
|
971
1031
|
creation: string;
|
|
972
1032
|
modified: string;
|
|
@@ -974,6 +1034,8 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
974
1034
|
title: string;
|
|
975
1035
|
order_number: string;
|
|
976
1036
|
shop: "Shopify" | "Amazon FBA" | "Amazon FBM" | "Otto";
|
|
1037
|
+
is_sent_to_client: number;
|
|
1038
|
+
is_sent_to_cc: number;
|
|
977
1039
|
return_items: {
|
|
978
1040
|
name: string;
|
|
979
1041
|
owner: string;
|
|
@@ -981,14 +1043,17 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
981
1043
|
modified: string;
|
|
982
1044
|
modified_by: string;
|
|
983
1045
|
idx: number;
|
|
984
|
-
attachments:
|
|
1046
|
+
attachments: {
|
|
1047
|
+
type: "image" | "video";
|
|
1048
|
+
url: string;
|
|
1049
|
+
}[];
|
|
985
1050
|
internal_reasons: string[];
|
|
986
1051
|
item: string;
|
|
987
1052
|
return_quantity: number;
|
|
1053
|
+
is_complaint: number;
|
|
988
1054
|
line_item_id?: string | null | undefined;
|
|
989
1055
|
total_price?: number | null | undefined;
|
|
990
1056
|
return_fee?: number | null | undefined;
|
|
991
|
-
is_complaint?: unknown;
|
|
992
1057
|
servicecase_reason?: string | null | undefined;
|
|
993
1058
|
servicecase_solution?: string | null | undefined;
|
|
994
1059
|
batch_number?: string | null | undefined;
|
|
@@ -1000,8 +1065,6 @@ export declare const ServicecaseMethodResponse: z.ZodArray<z.ZodObject<{
|
|
|
1000
1065
|
external_id?: string | null | undefined;
|
|
1001
1066
|
customer_email?: string | null | undefined;
|
|
1002
1067
|
complaint_date?: string | null | undefined;
|
|
1003
|
-
is_sent_to_client?: unknown;
|
|
1004
|
-
is_sent_to_cc?: unknown;
|
|
1005
1068
|
customer_message?: string | null | undefined;
|
|
1006
1069
|
agreed_terms?: string | null | undefined;
|
|
1007
1070
|
created_with?: "Amazon FBA" | "Amazon FBM" | "Serviceportal" | "Missive Sidebar" | undefined;
|