@indigina/myseko-api 0.0.7 → 0.0.9
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 +2 -2
- package/fesm2022/indigina-myseko-api.mjs +401 -2
- package/fesm2022/indigina-myseko-api.mjs.map +1 -1
- package/index.d.ts +530 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -271,23 +271,186 @@ declare class HealthService extends BaseService {
|
|
|
271
271
|
* https://openapi-generator.tech
|
|
272
272
|
* Do not edit the class manually.
|
|
273
273
|
*/
|
|
274
|
-
interface
|
|
274
|
+
interface SettingValue {
|
|
275
|
+
value?: string;
|
|
276
|
+
group: string | null;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* MySeko.API.Client
|
|
281
|
+
*
|
|
282
|
+
*
|
|
283
|
+
*
|
|
284
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
285
|
+
* https://openapi-generator.tech
|
|
286
|
+
* Do not edit the class manually.
|
|
287
|
+
*/
|
|
288
|
+
interface SettingView {
|
|
289
|
+
key: string;
|
|
290
|
+
value?: string;
|
|
291
|
+
group: string | null;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
declare class SettingsService extends BaseService {
|
|
295
|
+
protected httpClient: HttpClient;
|
|
296
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
297
|
+
/**
|
|
298
|
+
* Delete a specific setting by group and key
|
|
299
|
+
* @param key
|
|
300
|
+
* @param group
|
|
301
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
302
|
+
* @param reportProgress flag to report request and response progress.
|
|
303
|
+
*/
|
|
304
|
+
deleteSettingByGroupAndKey(key: string, group: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
305
|
+
httpHeaderAccept?: undefined;
|
|
306
|
+
context?: HttpContext;
|
|
307
|
+
transferCache?: boolean;
|
|
308
|
+
}): Observable<any>;
|
|
309
|
+
deleteSettingByGroupAndKey(key: string, group: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
310
|
+
httpHeaderAccept?: undefined;
|
|
311
|
+
context?: HttpContext;
|
|
312
|
+
transferCache?: boolean;
|
|
313
|
+
}): Observable<HttpResponse<any>>;
|
|
314
|
+
deleteSettingByGroupAndKey(key: string, group: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
315
|
+
httpHeaderAccept?: undefined;
|
|
316
|
+
context?: HttpContext;
|
|
317
|
+
transferCache?: boolean;
|
|
318
|
+
}): Observable<HttpEvent<any>>;
|
|
319
|
+
/**
|
|
320
|
+
* Delete a specific setting by key
|
|
321
|
+
* @param key
|
|
322
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
323
|
+
* @param reportProgress flag to report request and response progress.
|
|
324
|
+
*/
|
|
325
|
+
deleteSettingByKey(key: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
326
|
+
httpHeaderAccept?: undefined;
|
|
327
|
+
context?: HttpContext;
|
|
328
|
+
transferCache?: boolean;
|
|
329
|
+
}): Observable<any>;
|
|
330
|
+
deleteSettingByKey(key: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
331
|
+
httpHeaderAccept?: undefined;
|
|
332
|
+
context?: HttpContext;
|
|
333
|
+
transferCache?: boolean;
|
|
334
|
+
}): Observable<HttpResponse<any>>;
|
|
335
|
+
deleteSettingByKey(key: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
336
|
+
httpHeaderAccept?: undefined;
|
|
337
|
+
context?: HttpContext;
|
|
338
|
+
transferCache?: boolean;
|
|
339
|
+
}): Observable<HttpEvent<any>>;
|
|
340
|
+
/**
|
|
341
|
+
* Get a specific setting by group and key
|
|
342
|
+
* @param key
|
|
343
|
+
* @param group
|
|
344
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
345
|
+
* @param reportProgress flag to report request and response progress.
|
|
346
|
+
*/
|
|
347
|
+
getSettingByGroupAndKey(key: string, group: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
348
|
+
httpHeaderAccept?: 'application/json';
|
|
349
|
+
context?: HttpContext;
|
|
350
|
+
transferCache?: boolean;
|
|
351
|
+
}): Observable<SettingValue>;
|
|
352
|
+
getSettingByGroupAndKey(key: string, group: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
353
|
+
httpHeaderAccept?: 'application/json';
|
|
354
|
+
context?: HttpContext;
|
|
355
|
+
transferCache?: boolean;
|
|
356
|
+
}): Observable<HttpResponse<SettingValue>>;
|
|
357
|
+
getSettingByGroupAndKey(key: string, group: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
358
|
+
httpHeaderAccept?: 'application/json';
|
|
359
|
+
context?: HttpContext;
|
|
360
|
+
transferCache?: boolean;
|
|
361
|
+
}): Observable<HttpEvent<SettingValue>>;
|
|
362
|
+
/**
|
|
363
|
+
* Get a specific setting by key
|
|
364
|
+
* @param key
|
|
365
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
366
|
+
* @param reportProgress flag to report request and response progress.
|
|
367
|
+
*/
|
|
368
|
+
getSettingByKey(key: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
369
|
+
httpHeaderAccept?: 'application/json';
|
|
370
|
+
context?: HttpContext;
|
|
371
|
+
transferCache?: boolean;
|
|
372
|
+
}): Observable<SettingValue>;
|
|
373
|
+
getSettingByKey(key: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
374
|
+
httpHeaderAccept?: 'application/json';
|
|
375
|
+
context?: HttpContext;
|
|
376
|
+
transferCache?: boolean;
|
|
377
|
+
}): Observable<HttpResponse<SettingValue>>;
|
|
378
|
+
getSettingByKey(key: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
379
|
+
httpHeaderAccept?: 'application/json';
|
|
380
|
+
context?: HttpContext;
|
|
381
|
+
transferCache?: boolean;
|
|
382
|
+
}): Observable<HttpEvent<SettingValue>>;
|
|
383
|
+
/**
|
|
384
|
+
* Get settings by group
|
|
385
|
+
* @param group
|
|
386
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
387
|
+
* @param reportProgress flag to report request and response progress.
|
|
388
|
+
*/
|
|
389
|
+
getSettingsByGroup(group: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
390
|
+
httpHeaderAccept?: 'application/json';
|
|
391
|
+
context?: HttpContext;
|
|
392
|
+
transferCache?: boolean;
|
|
393
|
+
}): Observable<Array<SettingView>>;
|
|
394
|
+
getSettingsByGroup(group: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
395
|
+
httpHeaderAccept?: 'application/json';
|
|
396
|
+
context?: HttpContext;
|
|
397
|
+
transferCache?: boolean;
|
|
398
|
+
}): Observable<HttpResponse<Array<SettingView>>>;
|
|
399
|
+
getSettingsByGroup(group: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
400
|
+
httpHeaderAccept?: 'application/json';
|
|
401
|
+
context?: HttpContext;
|
|
402
|
+
transferCache?: boolean;
|
|
403
|
+
}): Observable<HttpEvent<Array<SettingView>>>;
|
|
404
|
+
/**
|
|
405
|
+
* Create or update a specific setting by key
|
|
406
|
+
* @param key
|
|
407
|
+
* @param settingValue
|
|
408
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
409
|
+
* @param reportProgress flag to report request and response progress.
|
|
410
|
+
*/
|
|
411
|
+
setSettingByKey(key: string, settingValue: SettingValue, observe?: 'body', reportProgress?: boolean, options?: {
|
|
412
|
+
httpHeaderAccept?: 'application/json';
|
|
413
|
+
context?: HttpContext;
|
|
414
|
+
transferCache?: boolean;
|
|
415
|
+
}): Observable<SettingValue>;
|
|
416
|
+
setSettingByKey(key: string, settingValue: SettingValue, observe?: 'response', reportProgress?: boolean, options?: {
|
|
417
|
+
httpHeaderAccept?: 'application/json';
|
|
418
|
+
context?: HttpContext;
|
|
419
|
+
transferCache?: boolean;
|
|
420
|
+
}): Observable<HttpResponse<SettingValue>>;
|
|
421
|
+
setSettingByKey(key: string, settingValue: SettingValue, observe?: 'events', reportProgress?: boolean, options?: {
|
|
422
|
+
httpHeaderAccept?: 'application/json';
|
|
423
|
+
context?: HttpContext;
|
|
424
|
+
transferCache?: boolean;
|
|
425
|
+
}): Observable<HttpEvent<SettingValue>>;
|
|
426
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsService, [null, { optional: true; }, { optional: true; }]>;
|
|
427
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SettingsService>;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
/**
|
|
431
|
+
* MySeko.API.Client
|
|
432
|
+
*
|
|
433
|
+
*
|
|
434
|
+
*
|
|
435
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
436
|
+
* https://openapi-generator.tech
|
|
437
|
+
* Do not edit the class manually.
|
|
438
|
+
*/
|
|
439
|
+
interface CombinedShipment {
|
|
275
440
|
ordOrderID: string;
|
|
276
|
-
orderID?:
|
|
441
|
+
orderID?: string | null;
|
|
277
442
|
/**
|
|
278
443
|
* Tracking Number
|
|
279
444
|
*/
|
|
280
445
|
number?: string | null;
|
|
281
446
|
status?: string | null;
|
|
282
|
-
|
|
447
|
+
created?: string | null;
|
|
283
448
|
/**
|
|
284
449
|
* OuterPkQuantity
|
|
285
450
|
*/
|
|
286
451
|
pieces?: number | null;
|
|
287
|
-
dueDate?: string | null;
|
|
288
452
|
chargeableWeight?: number | null;
|
|
289
453
|
chargeableWeightUOM?: string | null;
|
|
290
|
-
outerPkType?: string | null;
|
|
291
454
|
/**
|
|
292
455
|
* TotalWeight
|
|
293
456
|
*/
|
|
@@ -302,25 +465,30 @@ interface DomesticShipment {
|
|
|
302
465
|
shipState?: string | null;
|
|
303
466
|
shipZip?: string | null;
|
|
304
467
|
shipCountry?: string | null;
|
|
305
|
-
shipReference?: string | null;
|
|
306
468
|
consName?: string | null;
|
|
307
469
|
consCity?: string | null;
|
|
308
470
|
consState?: string | null;
|
|
309
471
|
consZip?: string | null;
|
|
310
472
|
consCountry?: string | null;
|
|
311
|
-
consReference?: string | null;
|
|
312
473
|
podName?: string | null;
|
|
313
474
|
/**
|
|
314
475
|
* POD
|
|
315
476
|
*/
|
|
316
477
|
podDate?: string | null;
|
|
317
478
|
podTime?: string | null;
|
|
479
|
+
accountNumber?: string | null;
|
|
480
|
+
origin?: string | null;
|
|
481
|
+
destination?: string | null;
|
|
482
|
+
outerPkgType?: string | null;
|
|
483
|
+
pickupDate?: string | null;
|
|
484
|
+
dueDate?: string | null;
|
|
485
|
+
shipReference?: string | null;
|
|
486
|
+
consReference?: string | null;
|
|
318
487
|
podTimeIn?: string | null;
|
|
319
488
|
shipperAssembly?: string | null;
|
|
320
489
|
consigneeAssembly?: string | null;
|
|
321
490
|
puSecServiceLevel?: string | null;
|
|
322
491
|
delSecServiceLavel?: string | null;
|
|
323
|
-
accountNumber?: string | null;
|
|
324
492
|
carrier?: string | null;
|
|
325
493
|
/**
|
|
326
494
|
* ProNumber
|
|
@@ -328,9 +496,140 @@ interface DomesticShipment {
|
|
|
328
496
|
pro_Number?: string | null;
|
|
329
497
|
shipDate?: string | null;
|
|
330
498
|
description?: string | null;
|
|
499
|
+
poNumber?: string | null;
|
|
500
|
+
houseBill?: string | null;
|
|
501
|
+
mode?: string | null;
|
|
502
|
+
containerType?: string | null;
|
|
503
|
+
shipCountryCode?: string | null;
|
|
504
|
+
consCountryCode?: string | null;
|
|
505
|
+
clientName?: string | null;
|
|
506
|
+
references?: string | null;
|
|
507
|
+
incoTerm?: string | null;
|
|
508
|
+
additionalShipmentRef?: string | null;
|
|
509
|
+
waybill?: string | null;
|
|
510
|
+
estPickupDate?: string | null;
|
|
511
|
+
pickupAddress1?: string | null;
|
|
512
|
+
pickupAddress2?: string | null;
|
|
513
|
+
pickupCity?: string | null;
|
|
514
|
+
pickupState?: string | null;
|
|
515
|
+
pickupZip?: string | null;
|
|
516
|
+
bookingRef?: string | null;
|
|
517
|
+
etdPort?: string | null;
|
|
518
|
+
voyage?: string | null;
|
|
519
|
+
vessel?: string | null;
|
|
520
|
+
goodsDescription?: string | null;
|
|
521
|
+
etaPort?: string | null;
|
|
522
|
+
estDelDate?: string | null;
|
|
523
|
+
deliveryAddress1?: string | null;
|
|
524
|
+
deliveryAddress2?: string | null;
|
|
525
|
+
deliveryCity?: string | null;
|
|
526
|
+
deliveryState?: string | null;
|
|
527
|
+
deliveryZip?: string | null;
|
|
528
|
+
innerPkgType?: string | null;
|
|
529
|
+
innerPieces?: number | null;
|
|
530
|
+
volume?: number | null;
|
|
531
|
+
volumeUOM?: string | null;
|
|
532
|
+
containerCount?: number | null;
|
|
533
|
+
containerNum?: string | null;
|
|
534
|
+
containerRefNum?: string | null;
|
|
535
|
+
teu?: number | null;
|
|
536
|
+
entryType?: string | null;
|
|
537
|
+
entryNumber?: string | null;
|
|
538
|
+
importBroker?: string | null;
|
|
539
|
+
exportBroker?: string | null;
|
|
540
|
+
tcn?: string | null;
|
|
541
|
+
releaseDate?: string | null;
|
|
542
|
+
submittedDate?: string | null;
|
|
543
|
+
eta?: string | null;
|
|
544
|
+
etd?: string | null;
|
|
545
|
+
deliveryRequiredBy?: string | null;
|
|
546
|
+
typeOrderID?: string | null;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
/**
|
|
550
|
+
* MySeko.API.Client
|
|
551
|
+
*
|
|
552
|
+
*
|
|
553
|
+
*
|
|
554
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
555
|
+
* https://openapi-generator.tech
|
|
556
|
+
* Do not edit the class manually.
|
|
557
|
+
*/
|
|
558
|
+
|
|
559
|
+
interface CombinedShipments {
|
|
560
|
+
total: number;
|
|
561
|
+
data: Array<CombinedShipment>;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* MySeko.API.Client
|
|
566
|
+
*
|
|
567
|
+
*
|
|
568
|
+
*
|
|
569
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
570
|
+
* https://openapi-generator.tech
|
|
571
|
+
* Do not edit the class manually.
|
|
572
|
+
*/
|
|
573
|
+
interface DomesticShipment {
|
|
574
|
+
ordOrderID: string;
|
|
575
|
+
orderID?: number | null;
|
|
576
|
+
/**
|
|
577
|
+
* Tracking Number
|
|
578
|
+
*/
|
|
579
|
+
number?: string | null;
|
|
580
|
+
status?: string | null;
|
|
581
|
+
created?: string | null;
|
|
582
|
+
/**
|
|
583
|
+
* OuterPkQuantity
|
|
584
|
+
*/
|
|
585
|
+
pieces?: number | null;
|
|
586
|
+
chargeableWeight?: number | null;
|
|
587
|
+
chargeableWeightUOM?: string | null;
|
|
588
|
+
/**
|
|
589
|
+
* TotalWeight
|
|
590
|
+
*/
|
|
591
|
+
actualWeight?: number | null;
|
|
592
|
+
/**
|
|
593
|
+
* TotalWeightUOM
|
|
594
|
+
*/
|
|
595
|
+
actualWeightUOM?: string | null;
|
|
596
|
+
serviceLevel?: string | null;
|
|
597
|
+
shipName?: string | null;
|
|
598
|
+
shipCity?: string | null;
|
|
599
|
+
shipState?: string | null;
|
|
600
|
+
shipZip?: string | null;
|
|
601
|
+
shipCountry?: string | null;
|
|
602
|
+
consName?: string | null;
|
|
603
|
+
consCity?: string | null;
|
|
604
|
+
consState?: string | null;
|
|
605
|
+
consZip?: string | null;
|
|
606
|
+
consCountry?: string | null;
|
|
607
|
+
podName?: string | null;
|
|
608
|
+
/**
|
|
609
|
+
* POD
|
|
610
|
+
*/
|
|
611
|
+
podDate?: string | null;
|
|
612
|
+
podTime?: string | null;
|
|
613
|
+
accountNumber?: string | null;
|
|
331
614
|
origin?: string | null;
|
|
332
615
|
destination?: string | null;
|
|
333
|
-
|
|
616
|
+
outerPkgType?: string | null;
|
|
617
|
+
pickupDate?: string | null;
|
|
618
|
+
dueDate?: string | null;
|
|
619
|
+
shipReference?: string | null;
|
|
620
|
+
consReference?: string | null;
|
|
621
|
+
podTimeIn?: string | null;
|
|
622
|
+
shipperAssembly?: string | null;
|
|
623
|
+
consigneeAssembly?: string | null;
|
|
624
|
+
puSecServiceLevel?: string | null;
|
|
625
|
+
delSecServiceLavel?: string | null;
|
|
626
|
+
carrier?: string | null;
|
|
627
|
+
/**
|
|
628
|
+
* ProNumber
|
|
629
|
+
*/
|
|
630
|
+
pro_Number?: string | null;
|
|
631
|
+
shipDate?: string | null;
|
|
632
|
+
description?: string | null;
|
|
334
633
|
poNumber?: string | null;
|
|
335
634
|
}
|
|
336
635
|
|
|
@@ -349,9 +648,149 @@ interface DomesticShipments {
|
|
|
349
648
|
data: Array<DomesticShipment>;
|
|
350
649
|
}
|
|
351
650
|
|
|
651
|
+
/**
|
|
652
|
+
* MySeko.API.Client
|
|
653
|
+
*
|
|
654
|
+
*
|
|
655
|
+
*
|
|
656
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
657
|
+
* https://openapi-generator.tech
|
|
658
|
+
* Do not edit the class manually.
|
|
659
|
+
*/
|
|
660
|
+
interface InternationalShipment {
|
|
661
|
+
ordOrderID: string;
|
|
662
|
+
orderID?: string | null;
|
|
663
|
+
/**
|
|
664
|
+
* Tracking Number
|
|
665
|
+
*/
|
|
666
|
+
number?: string | null;
|
|
667
|
+
status?: string | null;
|
|
668
|
+
created?: string | null;
|
|
669
|
+
/**
|
|
670
|
+
* OuterPkQuantity
|
|
671
|
+
*/
|
|
672
|
+
pieces?: number | null;
|
|
673
|
+
chargeableWeight?: number | null;
|
|
674
|
+
chargeableWeightUOM?: string | null;
|
|
675
|
+
/**
|
|
676
|
+
* TotalWeight
|
|
677
|
+
*/
|
|
678
|
+
actualWeight?: number | null;
|
|
679
|
+
/**
|
|
680
|
+
* TotalWeightUOM
|
|
681
|
+
*/
|
|
682
|
+
actualWeightUOM?: string | null;
|
|
683
|
+
serviceLevel?: string | null;
|
|
684
|
+
shipName?: string | null;
|
|
685
|
+
shipCity?: string | null;
|
|
686
|
+
shipState?: string | null;
|
|
687
|
+
shipZip?: string | null;
|
|
688
|
+
shipCountry?: string | null;
|
|
689
|
+
consName?: string | null;
|
|
690
|
+
consCity?: string | null;
|
|
691
|
+
consState?: string | null;
|
|
692
|
+
consZip?: string | null;
|
|
693
|
+
consCountry?: string | null;
|
|
694
|
+
podName?: string | null;
|
|
695
|
+
/**
|
|
696
|
+
* POD
|
|
697
|
+
*/
|
|
698
|
+
podDate?: string | null;
|
|
699
|
+
podTime?: string | null;
|
|
700
|
+
accountNumber?: string | null;
|
|
701
|
+
origin?: string | null;
|
|
702
|
+
destination?: string | null;
|
|
703
|
+
outerPkgType?: string | null;
|
|
704
|
+
houseBill?: string | null;
|
|
705
|
+
mode?: string | null;
|
|
706
|
+
containerType?: string | null;
|
|
707
|
+
shipCountryCode?: string | null;
|
|
708
|
+
consCountryCode?: string | null;
|
|
709
|
+
clientName?: string | null;
|
|
710
|
+
references?: string | null;
|
|
711
|
+
incoTerm?: string | null;
|
|
712
|
+
additionalShipmentRef?: string | null;
|
|
713
|
+
waybill?: string | null;
|
|
714
|
+
estPickupDate?: string | null;
|
|
715
|
+
pickupAddress1?: string | null;
|
|
716
|
+
pickupAddress2?: string | null;
|
|
717
|
+
pickupCity?: string | null;
|
|
718
|
+
pickupState?: string | null;
|
|
719
|
+
pickupZip?: string | null;
|
|
720
|
+
bookingRef?: string | null;
|
|
721
|
+
etdPort?: string | null;
|
|
722
|
+
voyage?: string | null;
|
|
723
|
+
vessel?: string | null;
|
|
724
|
+
goodsDescription?: string | null;
|
|
725
|
+
etaPort?: string | null;
|
|
726
|
+
estDelDate?: string | null;
|
|
727
|
+
deliveryAddress1?: string | null;
|
|
728
|
+
deliveryAddress2?: string | null;
|
|
729
|
+
deliveryCity?: string | null;
|
|
730
|
+
deliveryState?: string | null;
|
|
731
|
+
deliveryZip?: string | null;
|
|
732
|
+
innerPkgType?: string | null;
|
|
733
|
+
innerPieces?: number | null;
|
|
734
|
+
volume?: number | null;
|
|
735
|
+
volumeUOM?: string | null;
|
|
736
|
+
containerCount?: number | null;
|
|
737
|
+
containerNum?: string | null;
|
|
738
|
+
containerRefNum?: string | null;
|
|
739
|
+
teu?: number | null;
|
|
740
|
+
entryType?: string | null;
|
|
741
|
+
entryNumber?: string | null;
|
|
742
|
+
importBroker?: string | null;
|
|
743
|
+
exportBroker?: string | null;
|
|
744
|
+
tcn?: string | null;
|
|
745
|
+
releaseDate?: string | null;
|
|
746
|
+
submittedDate?: string | null;
|
|
747
|
+
eta?: string | null;
|
|
748
|
+
etd?: string | null;
|
|
749
|
+
deliveryRequiredBy?: string | null;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
/**
|
|
753
|
+
* MySeko.API.Client
|
|
754
|
+
*
|
|
755
|
+
*
|
|
756
|
+
*
|
|
757
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
758
|
+
* https://openapi-generator.tech
|
|
759
|
+
* Do not edit the class manually.
|
|
760
|
+
*/
|
|
761
|
+
|
|
762
|
+
interface InternationalShipments {
|
|
763
|
+
total: number;
|
|
764
|
+
data: Array<InternationalShipment>;
|
|
765
|
+
}
|
|
766
|
+
|
|
352
767
|
declare class ShipmentService extends BaseService {
|
|
353
768
|
protected httpClient: HttpClient;
|
|
354
769
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
770
|
+
/**
|
|
771
|
+
* Get combined shipments (domestic and international)
|
|
772
|
+
* @param $skip
|
|
773
|
+
* @param $top
|
|
774
|
+
* @param $orderby
|
|
775
|
+
* @param $filter
|
|
776
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
777
|
+
* @param reportProgress flag to report request and response progress.
|
|
778
|
+
*/
|
|
779
|
+
getCombinedShipments($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
780
|
+
httpHeaderAccept?: 'application/json';
|
|
781
|
+
context?: HttpContext;
|
|
782
|
+
transferCache?: boolean;
|
|
783
|
+
}): Observable<CombinedShipments>;
|
|
784
|
+
getCombinedShipments($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
785
|
+
httpHeaderAccept?: 'application/json';
|
|
786
|
+
context?: HttpContext;
|
|
787
|
+
transferCache?: boolean;
|
|
788
|
+
}): Observable<HttpResponse<CombinedShipments>>;
|
|
789
|
+
getCombinedShipments($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
790
|
+
httpHeaderAccept?: 'application/json';
|
|
791
|
+
context?: HttpContext;
|
|
792
|
+
transferCache?: boolean;
|
|
793
|
+
}): Observable<HttpEvent<CombinedShipments>>;
|
|
355
794
|
/**
|
|
356
795
|
* Get domestic shipments
|
|
357
796
|
* @param $skip
|
|
@@ -376,6 +815,30 @@ declare class ShipmentService extends BaseService {
|
|
|
376
815
|
context?: HttpContext;
|
|
377
816
|
transferCache?: boolean;
|
|
378
817
|
}): Observable<HttpEvent<DomesticShipments>>;
|
|
818
|
+
/**
|
|
819
|
+
* Get international shipments
|
|
820
|
+
* @param $skip
|
|
821
|
+
* @param $top
|
|
822
|
+
* @param $orderby
|
|
823
|
+
* @param $filter
|
|
824
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
825
|
+
* @param reportProgress flag to report request and response progress.
|
|
826
|
+
*/
|
|
827
|
+
getInternationalShipments($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
828
|
+
httpHeaderAccept?: 'application/json';
|
|
829
|
+
context?: HttpContext;
|
|
830
|
+
transferCache?: boolean;
|
|
831
|
+
}): Observable<InternationalShipments>;
|
|
832
|
+
getInternationalShipments($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
833
|
+
httpHeaderAccept?: 'application/json';
|
|
834
|
+
context?: HttpContext;
|
|
835
|
+
transferCache?: boolean;
|
|
836
|
+
}): Observable<HttpResponse<InternationalShipments>>;
|
|
837
|
+
getInternationalShipments($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
838
|
+
httpHeaderAccept?: 'application/json';
|
|
839
|
+
context?: HttpContext;
|
|
840
|
+
transferCache?: boolean;
|
|
841
|
+
}): Observable<HttpEvent<InternationalShipments>>;
|
|
379
842
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShipmentService, [null, { optional: true; }, { optional: true; }]>;
|
|
380
843
|
static ɵprov: i0.ɵɵInjectableDeclaration<ShipmentService>;
|
|
381
844
|
}
|
|
@@ -505,7 +968,7 @@ declare class UsergroupService extends BaseService {
|
|
|
505
968
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsergroupService>;
|
|
506
969
|
}
|
|
507
970
|
|
|
508
|
-
declare const APIS: (typeof AuthService | typeof DashboardService | typeof HealthService | typeof ShipmentService | typeof UserService | typeof UsergroupService)[];
|
|
971
|
+
declare const APIS: (typeof AuthService | typeof DashboardService | typeof HealthService | typeof SettingsService | typeof ShipmentService | typeof UserService | typeof UsergroupService)[];
|
|
509
972
|
|
|
510
973
|
/**
|
|
511
974
|
* MySeko.API.Client
|
|
@@ -538,6 +1001,61 @@ interface ModelError {
|
|
|
538
1001
|
} | null;
|
|
539
1002
|
}
|
|
540
1003
|
|
|
1004
|
+
/**
|
|
1005
|
+
* MySeko.API.Client
|
|
1006
|
+
*
|
|
1007
|
+
*
|
|
1008
|
+
*
|
|
1009
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1010
|
+
* https://openapi-generator.tech
|
|
1011
|
+
* Do not edit the class manually.
|
|
1012
|
+
*/
|
|
1013
|
+
interface Shipment {
|
|
1014
|
+
ordOrderID: string;
|
|
1015
|
+
orderID?: string | null;
|
|
1016
|
+
/**
|
|
1017
|
+
* Tracking Number
|
|
1018
|
+
*/
|
|
1019
|
+
number?: string | null;
|
|
1020
|
+
status?: string | null;
|
|
1021
|
+
created?: string | null;
|
|
1022
|
+
/**
|
|
1023
|
+
* OuterPkQuantity
|
|
1024
|
+
*/
|
|
1025
|
+
pieces?: number | null;
|
|
1026
|
+
chargeableWeight?: number | null;
|
|
1027
|
+
chargeableWeightUOM?: string | null;
|
|
1028
|
+
/**
|
|
1029
|
+
* TotalWeight
|
|
1030
|
+
*/
|
|
1031
|
+
actualWeight?: number | null;
|
|
1032
|
+
/**
|
|
1033
|
+
* TotalWeightUOM
|
|
1034
|
+
*/
|
|
1035
|
+
actualWeightUOM?: string | null;
|
|
1036
|
+
serviceLevel?: string | null;
|
|
1037
|
+
shipName?: string | null;
|
|
1038
|
+
shipCity?: string | null;
|
|
1039
|
+
shipState?: string | null;
|
|
1040
|
+
shipZip?: string | null;
|
|
1041
|
+
shipCountry?: string | null;
|
|
1042
|
+
consName?: string | null;
|
|
1043
|
+
consCity?: string | null;
|
|
1044
|
+
consState?: string | null;
|
|
1045
|
+
consZip?: string | null;
|
|
1046
|
+
consCountry?: string | null;
|
|
1047
|
+
podName?: string | null;
|
|
1048
|
+
/**
|
|
1049
|
+
* POD
|
|
1050
|
+
*/
|
|
1051
|
+
podDate?: string | null;
|
|
1052
|
+
podTime?: string | null;
|
|
1053
|
+
accountNumber?: string | null;
|
|
1054
|
+
origin?: string | null;
|
|
1055
|
+
destination?: string | null;
|
|
1056
|
+
outerPkgType?: string | null;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
541
1059
|
declare const BASE_PATH: InjectionToken<string>;
|
|
542
1060
|
declare const COLLECTION_FORMATS: {
|
|
543
1061
|
csv: string;
|
|
@@ -556,5 +1074,5 @@ declare class ApiModule {
|
|
|
556
1074
|
|
|
557
1075
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
558
1076
|
|
|
559
|
-
export { APIS, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, Configuration, DashboardService, HealthService, ShipmentService, UserService, UsergroupService, provideApi };
|
|
560
|
-
export type { ActiveShipment, ConfigurationParameters, DataFormat, DataType, DomesticShipment, DomesticShipments, EntityList, ModelError, Param, ParamLocation, ParamStyle, RegGroup, StandardDataFormat, StandardDataType, StandardParamStyle, User, UserAccount };
|
|
1077
|
+
export { APIS, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, Configuration, DashboardService, HealthService, SettingsService, ShipmentService, UserService, UsergroupService, provideApi };
|
|
1078
|
+
export type { ActiveShipment, CombinedShipment, CombinedShipments, ConfigurationParameters, DataFormat, DataType, DomesticShipment, DomesticShipments, EntityList, InternationalShipment, InternationalShipments, ModelError, Param, ParamLocation, ParamStyle, RegGroup, SettingValue, SettingView, Shipment, StandardDataFormat, StandardDataType, StandardParamStyle, User, UserAccount };
|