@indigina/myseko-api 0.0.11 → 0.0.13

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/index.d.ts CHANGED
@@ -176,17 +176,17 @@ declare class AuthService extends BaseService {
176
176
  * @param reportProgress flag to report request and response progress.
177
177
  */
178
178
  userLogin(observe?: 'body', reportProgress?: boolean, options?: {
179
- httpHeaderAccept?: 'application/json';
179
+ httpHeaderAccept?: undefined;
180
180
  context?: HttpContext;
181
181
  transferCache?: boolean;
182
182
  }): Observable<any>;
183
183
  userLogin(observe?: 'response', reportProgress?: boolean, options?: {
184
- httpHeaderAccept?: 'application/json';
184
+ httpHeaderAccept?: undefined;
185
185
  context?: HttpContext;
186
186
  transferCache?: boolean;
187
187
  }): Observable<HttpResponse<any>>;
188
188
  userLogin(observe?: 'events', reportProgress?: boolean, options?: {
189
- httpHeaderAccept?: 'application/json';
189
+ httpHeaderAccept?: undefined;
190
190
  context?: HttpContext;
191
191
  transferCache?: boolean;
192
192
  }): Observable<HttpEvent<any>>;
@@ -194,6 +194,226 @@ declare class AuthService extends BaseService {
194
194
  static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
195
195
  }
196
196
 
197
+ /**
198
+ * MySeko.API.Client
199
+ *
200
+ *
201
+ *
202
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
203
+ * https://openapi-generator.tech
204
+ * Do not edit the class manually.
205
+ */
206
+ declare const CalendarViewBy: {
207
+ readonly Due: "due";
208
+ readonly Pickup: "pickup";
209
+ readonly Pod: "pod";
210
+ readonly Created: "created";
211
+ };
212
+ type CalendarViewBy = typeof CalendarViewBy[keyof typeof CalendarViewBy];
213
+
214
+ /**
215
+ * MySeko.API.Client
216
+ *
217
+ *
218
+ *
219
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
220
+ * https://openapi-generator.tech
221
+ * Do not edit the class manually.
222
+ */
223
+ interface ShipmentCalendarItem {
224
+ ordOrderID: string;
225
+ date?: string | null;
226
+ number?: string | null;
227
+ status?: string | null;
228
+ from?: string | null;
229
+ to?: string | null;
230
+ }
231
+
232
+ /**
233
+ * MySeko.API.Client
234
+ *
235
+ *
236
+ *
237
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
238
+ * https://openapi-generator.tech
239
+ * Do not edit the class manually.
240
+ */
241
+
242
+ interface ShipmentCalendarDateGroup {
243
+ total?: number | null;
244
+ data?: Array<ShipmentCalendarItem> | null;
245
+ date?: string | null;
246
+ }
247
+
248
+ /**
249
+ * MySeko.API.Client
250
+ *
251
+ *
252
+ *
253
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
254
+ * https://openapi-generator.tech
255
+ * Do not edit the class manually.
256
+ */
257
+
258
+ interface ShipmentCalendarDates {
259
+ dates?: Array<ShipmentCalendarDateGroup> | null;
260
+ }
261
+
262
+ declare class CalendarService extends BaseService {
263
+ protected httpClient: HttpClient;
264
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
265
+ /**
266
+ * Returns Calendar for a given day
267
+ * @param date
268
+ * @param viewBy
269
+ * @param $filter
270
+ * @param $orderby
271
+ * @param $select
272
+ * @param $expand
273
+ * @param $top
274
+ * @param $skip
275
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
276
+ * @param reportProgress flag to report request and response progress.
277
+ */
278
+ getShipmentCalendarDay(date: string, viewBy?: CalendarViewBy, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, observe?: 'body', reportProgress?: boolean, options?: {
279
+ httpHeaderAccept?: 'application/json';
280
+ context?: HttpContext;
281
+ transferCache?: boolean;
282
+ }): Observable<ShipmentCalendarDates>;
283
+ getShipmentCalendarDay(date: string, viewBy?: CalendarViewBy, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, observe?: 'response', reportProgress?: boolean, options?: {
284
+ httpHeaderAccept?: 'application/json';
285
+ context?: HttpContext;
286
+ transferCache?: boolean;
287
+ }): Observable<HttpResponse<ShipmentCalendarDates>>;
288
+ getShipmentCalendarDay(date: string, viewBy?: CalendarViewBy, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, observe?: 'events', reportProgress?: boolean, options?: {
289
+ httpHeaderAccept?: 'application/json';
290
+ context?: HttpContext;
291
+ transferCache?: boolean;
292
+ }): Observable<HttpEvent<ShipmentCalendarDates>>;
293
+ /**
294
+ * Returns Calendar for a given day
295
+ * @param date
296
+ * @param viewBy
297
+ * @param $filter
298
+ * @param $orderby
299
+ * @param $select
300
+ * @param $expand
301
+ * @param $top
302
+ * @param $skip
303
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
304
+ * @param reportProgress flag to report request and response progress.
305
+ */
306
+ getShipmentCalendarDayShort(date: string, viewBy?: CalendarViewBy, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, observe?: 'body', reportProgress?: boolean, options?: {
307
+ httpHeaderAccept?: 'application/json';
308
+ context?: HttpContext;
309
+ transferCache?: boolean;
310
+ }): Observable<ShipmentCalendarDates>;
311
+ getShipmentCalendarDayShort(date: string, viewBy?: CalendarViewBy, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, observe?: 'response', reportProgress?: boolean, options?: {
312
+ httpHeaderAccept?: 'application/json';
313
+ context?: HttpContext;
314
+ transferCache?: boolean;
315
+ }): Observable<HttpResponse<ShipmentCalendarDates>>;
316
+ getShipmentCalendarDayShort(date: string, viewBy?: CalendarViewBy, $filter?: string, $orderby?: string, $select?: string, $expand?: string, $top?: number, $skip?: number, observe?: 'events', reportProgress?: boolean, options?: {
317
+ httpHeaderAccept?: 'application/json';
318
+ context?: HttpContext;
319
+ transferCache?: boolean;
320
+ }): Observable<HttpEvent<ShipmentCalendarDates>>;
321
+ /**
322
+ * Returns Calendar for a given month
323
+ * @param year
324
+ * @param month
325
+ * @param viewBy
326
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
327
+ * @param reportProgress flag to report request and response progress.
328
+ */
329
+ getShipmentCalendarMonth(year: number, month: number, viewBy?: CalendarViewBy, observe?: 'body', reportProgress?: boolean, options?: {
330
+ httpHeaderAccept?: 'application/json';
331
+ context?: HttpContext;
332
+ transferCache?: boolean;
333
+ }): Observable<ShipmentCalendarDates>;
334
+ getShipmentCalendarMonth(year: number, month: number, viewBy?: CalendarViewBy, observe?: 'response', reportProgress?: boolean, options?: {
335
+ httpHeaderAccept?: 'application/json';
336
+ context?: HttpContext;
337
+ transferCache?: boolean;
338
+ }): Observable<HttpResponse<ShipmentCalendarDates>>;
339
+ getShipmentCalendarMonth(year: number, month: number, viewBy?: CalendarViewBy, observe?: 'events', reportProgress?: boolean, options?: {
340
+ httpHeaderAccept?: 'application/json';
341
+ context?: HttpContext;
342
+ transferCache?: boolean;
343
+ }): Observable<HttpEvent<ShipmentCalendarDates>>;
344
+ /**
345
+ * Returns Calendar for a given month
346
+ * @param year
347
+ * @param month
348
+ * @param viewBy
349
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
350
+ * @param reportProgress flag to report request and response progress.
351
+ */
352
+ getShipmentCalendarMonthShort(year: number, month: number, viewBy?: CalendarViewBy, observe?: 'body', reportProgress?: boolean, options?: {
353
+ httpHeaderAccept?: 'application/json';
354
+ context?: HttpContext;
355
+ transferCache?: boolean;
356
+ }): Observable<ShipmentCalendarDates>;
357
+ getShipmentCalendarMonthShort(year: number, month: number, viewBy?: CalendarViewBy, observe?: 'response', reportProgress?: boolean, options?: {
358
+ httpHeaderAccept?: 'application/json';
359
+ context?: HttpContext;
360
+ transferCache?: boolean;
361
+ }): Observable<HttpResponse<ShipmentCalendarDates>>;
362
+ getShipmentCalendarMonthShort(year: number, month: number, viewBy?: CalendarViewBy, observe?: 'events', reportProgress?: boolean, options?: {
363
+ httpHeaderAccept?: 'application/json';
364
+ context?: HttpContext;
365
+ transferCache?: boolean;
366
+ }): Observable<HttpEvent<ShipmentCalendarDates>>;
367
+ /**
368
+ * Returns Calendar for a given range
369
+ * @param startDate
370
+ * @param endDate
371
+ * @param viewBy
372
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
373
+ * @param reportProgress flag to report request and response progress.
374
+ */
375
+ getShipmentCalendarRange(startDate: string, endDate: string, viewBy?: CalendarViewBy, observe?: 'body', reportProgress?: boolean, options?: {
376
+ httpHeaderAccept?: 'application/json';
377
+ context?: HttpContext;
378
+ transferCache?: boolean;
379
+ }): Observable<ShipmentCalendarDates>;
380
+ getShipmentCalendarRange(startDate: string, endDate: string, viewBy?: CalendarViewBy, observe?: 'response', reportProgress?: boolean, options?: {
381
+ httpHeaderAccept?: 'application/json';
382
+ context?: HttpContext;
383
+ transferCache?: boolean;
384
+ }): Observable<HttpResponse<ShipmentCalendarDates>>;
385
+ getShipmentCalendarRange(startDate: string, endDate: string, viewBy?: CalendarViewBy, observe?: 'events', reportProgress?: boolean, options?: {
386
+ httpHeaderAccept?: 'application/json';
387
+ context?: HttpContext;
388
+ transferCache?: boolean;
389
+ }): Observable<HttpEvent<ShipmentCalendarDates>>;
390
+ /**
391
+ * Returns Calendar for a given range
392
+ * @param startDate
393
+ * @param endDate
394
+ * @param viewBy
395
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
396
+ * @param reportProgress flag to report request and response progress.
397
+ */
398
+ getShipmentCalendarRangeShort(startDate: string, endDate: string, viewBy?: CalendarViewBy, observe?: 'body', reportProgress?: boolean, options?: {
399
+ httpHeaderAccept?: 'application/json';
400
+ context?: HttpContext;
401
+ transferCache?: boolean;
402
+ }): Observable<ShipmentCalendarDates>;
403
+ getShipmentCalendarRangeShort(startDate: string, endDate: string, viewBy?: CalendarViewBy, observe?: 'response', reportProgress?: boolean, options?: {
404
+ httpHeaderAccept?: 'application/json';
405
+ context?: HttpContext;
406
+ transferCache?: boolean;
407
+ }): Observable<HttpResponse<ShipmentCalendarDates>>;
408
+ getShipmentCalendarRangeShort(startDate: string, endDate: string, viewBy?: CalendarViewBy, observe?: 'events', reportProgress?: boolean, options?: {
409
+ httpHeaderAccept?: 'application/json';
410
+ context?: HttpContext;
411
+ transferCache?: boolean;
412
+ }): Observable<HttpEvent<ShipmentCalendarDates>>;
413
+ static ɵfac: i0.ɵɵFactoryDeclaration<CalendarService, [null, { optional: true; }, { optional: true; }]>;
414
+ static ɵprov: i0.ɵɵInjectableDeclaration<CalendarService>;
415
+ }
416
+
197
417
  /**
198
418
  * MySeko.API.Client
199
419
  *
@@ -427,6 +647,222 @@ declare class SettingsService extends BaseService {
427
647
  static ɵprov: i0.ɵɵInjectableDeclaration<SettingsService>;
428
648
  }
429
649
 
650
+ /**
651
+ * MySeko.API.Client
652
+ *
653
+ *
654
+ *
655
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
656
+ * https://openapi-generator.tech
657
+ * Do not edit the class manually.
658
+ */
659
+ interface PieceDetail {
660
+ id?: number | null;
661
+ pieces?: number | null;
662
+ innerPieces?: number | null;
663
+ weight?: number | null;
664
+ chargeableWeight?: number | null;
665
+ length?: number | null;
666
+ width?: number | null;
667
+ height?: number | null;
668
+ dimUnit?: string | null;
669
+ description?: string | null;
670
+ }
671
+
672
+ /**
673
+ * MySeko.API.Client
674
+ *
675
+ *
676
+ *
677
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
678
+ * https://openapi-generator.tech
679
+ * Do not edit the class manually.
680
+ */
681
+
682
+ interface PackageDetails {
683
+ pieceDetails?: Array<PieceDetail> | null;
684
+ }
685
+
686
+ /**
687
+ * MySeko.API.Client
688
+ *
689
+ *
690
+ *
691
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
692
+ * https://openapi-generator.tech
693
+ * Do not edit the class manually.
694
+ */
695
+ interface ShipmentPurchaseOrder {
696
+ purchaseOrder?: string | null;
697
+ department?: string | null;
698
+ pieces?: number | null;
699
+ startDate?: string | null;
700
+ cancelDate?: string | null;
701
+ verified?: string | null;
702
+ sku?: string | null;
703
+ }
704
+
705
+ /**
706
+ * MySeko.API.Client
707
+ *
708
+ *
709
+ *
710
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
711
+ * https://openapi-generator.tech
712
+ * Do not edit the class manually.
713
+ */
714
+
715
+ interface ShipmentPurchaseOrderDetails {
716
+ purchaseOrders?: Array<ShipmentPurchaseOrder> | null;
717
+ }
718
+
719
+ /**
720
+ * MySeko.API.Client
721
+ *
722
+ *
723
+ *
724
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
725
+ * https://openapi-generator.tech
726
+ * Do not edit the class manually.
727
+ */
728
+ interface Address {
729
+ id?: string | null;
730
+ addressCode?: string | null;
731
+ name?: string | null;
732
+ addressLines?: Array<string> | null;
733
+ city?: string | null;
734
+ state?: string | null;
735
+ postal?: string | null;
736
+ countryCode?: string | null;
737
+ }
738
+
739
+ /**
740
+ * MySeko.API.Client
741
+ *
742
+ *
743
+ *
744
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
745
+ * https://openapi-generator.tech
746
+ * Do not edit the class manually.
747
+ */
748
+ interface Contact {
749
+ name?: string | null;
750
+ phone?: string | null;
751
+ fax?: string | null;
752
+ email?: string | null;
753
+ mobile?: string | null;
754
+ title?: string | null;
755
+ }
756
+
757
+ /**
758
+ * MySeko.API.Client
759
+ *
760
+ *
761
+ *
762
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
763
+ * https://openapi-generator.tech
764
+ * Do not edit the class manually.
765
+ */
766
+
767
+ interface ShipmentParty {
768
+ address?: Address;
769
+ contact?: Contact;
770
+ reference?: string | null;
771
+ department?: string | null;
772
+ attention?: string | null;
773
+ }
774
+
775
+ /**
776
+ * MySeko.API.Client
777
+ *
778
+ *
779
+ *
780
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
781
+ * https://openapi-generator.tech
782
+ * Do not edit the class manually.
783
+ */
784
+
785
+ interface ShipmentSummary {
786
+ ordOrderID: string;
787
+ typeOrderID?: string | null;
788
+ number?: string | null;
789
+ status?: string | null;
790
+ serviceLevel?: string | null;
791
+ description?: string | null;
792
+ shipper?: ShipmentParty;
793
+ consignee?: ShipmentParty;
794
+ pieces?: number | null;
795
+ podName?: string | null;
796
+ pod?: string | null;
797
+ podTime?: string | null;
798
+ pickupDate?: string | null;
799
+ dueDate?: string | null;
800
+ origin?: string | null;
801
+ destination?: string | null;
802
+ originName?: string | null;
803
+ destinationName?: string | null;
804
+ secondaryPUServiceLevel?: string | null;
805
+ secondaryDelServiceLevel?: string | null;
806
+ podTimeIn?: string | null;
807
+ dueTime?: string | null;
808
+ dueDateReady?: string | null;
809
+ dueDateClose?: string | null;
810
+ apptDate?: string | null;
811
+ apptStartTime?: string | null;
812
+ apptEndTime?: string | null;
813
+ shipDate?: string | null;
814
+ readyTime?: string | null;
815
+ closeTime?: string | null;
816
+ shipperApptDate?: string | null;
817
+ shipperApptStartTime?: string | null;
818
+ shipperApptEndTime?: string | null;
819
+ appointmentRequired?: boolean | null;
820
+ originPort?: string | null;
821
+ destPort?: string | null;
822
+ originPortName?: string | null;
823
+ destPortName?: string | null;
824
+ mode?: string | null;
825
+ containerType?: string | null;
826
+ volume?: number | null;
827
+ volumeUOM?: string | null;
828
+ addlShipmentRef?: string | null;
829
+ bookedDate?: string | null;
830
+ etdSailDate?: string | null;
831
+ etaDueDate?: string | null;
832
+ delivery?: Address;
833
+ finalDelivery?: Address;
834
+ }
835
+
836
+ /**
837
+ * MySeko.API.Client
838
+ *
839
+ *
840
+ *
841
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
842
+ * https://openapi-generator.tech
843
+ * Do not edit the class manually.
844
+ */
845
+ interface TimelineEvent {
846
+ comment?: string | null;
847
+ code?: string | null;
848
+ status?: string | null;
849
+ date?: string | null;
850
+ }
851
+
852
+ /**
853
+ * MySeko.API.Client
854
+ *
855
+ *
856
+ *
857
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
858
+ * https://openapi-generator.tech
859
+ * Do not edit the class manually.
860
+ */
861
+
862
+ interface ShipmentTimeline {
863
+ events?: Array<TimelineEvent> | null;
864
+ }
865
+
430
866
  /**
431
867
  * MySeko.API.Client
432
868
  *
@@ -563,6 +999,90 @@ interface Shipments {
563
999
  declare class ShipmentService extends BaseService {
564
1000
  protected httpClient: HttpClient;
565
1001
  constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1002
+ /**
1003
+ * Get shipment package details by ordOrderID
1004
+ * @param ordOrderID
1005
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1006
+ * @param reportProgress flag to report request and response progress.
1007
+ */
1008
+ getShipmentPackageDetails(ordOrderID: string, observe?: 'body', reportProgress?: boolean, options?: {
1009
+ httpHeaderAccept?: 'application/json';
1010
+ context?: HttpContext;
1011
+ transferCache?: boolean;
1012
+ }): Observable<PackageDetails>;
1013
+ getShipmentPackageDetails(ordOrderID: string, observe?: 'response', reportProgress?: boolean, options?: {
1014
+ httpHeaderAccept?: 'application/json';
1015
+ context?: HttpContext;
1016
+ transferCache?: boolean;
1017
+ }): Observable<HttpResponse<PackageDetails>>;
1018
+ getShipmentPackageDetails(ordOrderID: string, observe?: 'events', reportProgress?: boolean, options?: {
1019
+ httpHeaderAccept?: 'application/json';
1020
+ context?: HttpContext;
1021
+ transferCache?: boolean;
1022
+ }): Observable<HttpEvent<PackageDetails>>;
1023
+ /**
1024
+ * Get shipment purchase order details by ordOrderID
1025
+ * @param ordOrderID
1026
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1027
+ * @param reportProgress flag to report request and response progress.
1028
+ */
1029
+ getShipmentPurchaseOrderDetails(ordOrderID: string, observe?: 'body', reportProgress?: boolean, options?: {
1030
+ httpHeaderAccept?: 'application/json';
1031
+ context?: HttpContext;
1032
+ transferCache?: boolean;
1033
+ }): Observable<ShipmentPurchaseOrderDetails>;
1034
+ getShipmentPurchaseOrderDetails(ordOrderID: string, observe?: 'response', reportProgress?: boolean, options?: {
1035
+ httpHeaderAccept?: 'application/json';
1036
+ context?: HttpContext;
1037
+ transferCache?: boolean;
1038
+ }): Observable<HttpResponse<ShipmentPurchaseOrderDetails>>;
1039
+ getShipmentPurchaseOrderDetails(ordOrderID: string, observe?: 'events', reportProgress?: boolean, options?: {
1040
+ httpHeaderAccept?: 'application/json';
1041
+ context?: HttpContext;
1042
+ transferCache?: boolean;
1043
+ }): Observable<HttpEvent<ShipmentPurchaseOrderDetails>>;
1044
+ /**
1045
+ * Get shipment summary by ordOrderID
1046
+ * @param ordOrderID
1047
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1048
+ * @param reportProgress flag to report request and response progress.
1049
+ */
1050
+ getShipmentSummary(ordOrderID: string, observe?: 'body', reportProgress?: boolean, options?: {
1051
+ httpHeaderAccept?: 'application/json';
1052
+ context?: HttpContext;
1053
+ transferCache?: boolean;
1054
+ }): Observable<ShipmentSummary>;
1055
+ getShipmentSummary(ordOrderID: string, observe?: 'response', reportProgress?: boolean, options?: {
1056
+ httpHeaderAccept?: 'application/json';
1057
+ context?: HttpContext;
1058
+ transferCache?: boolean;
1059
+ }): Observable<HttpResponse<ShipmentSummary>>;
1060
+ getShipmentSummary(ordOrderID: string, observe?: 'events', reportProgress?: boolean, options?: {
1061
+ httpHeaderAccept?: 'application/json';
1062
+ context?: HttpContext;
1063
+ transferCache?: boolean;
1064
+ }): Observable<HttpEvent<ShipmentSummary>>;
1065
+ /**
1066
+ * Get shipment timeline events by ordOrderID
1067
+ * @param ordOrderID
1068
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1069
+ * @param reportProgress flag to report request and response progress.
1070
+ */
1071
+ getShipmentTimeline(ordOrderID: string, observe?: 'body', reportProgress?: boolean, options?: {
1072
+ httpHeaderAccept?: 'application/json';
1073
+ context?: HttpContext;
1074
+ transferCache?: boolean;
1075
+ }): Observable<ShipmentTimeline>;
1076
+ getShipmentTimeline(ordOrderID: string, observe?: 'response', reportProgress?: boolean, options?: {
1077
+ httpHeaderAccept?: 'application/json';
1078
+ context?: HttpContext;
1079
+ transferCache?: boolean;
1080
+ }): Observable<HttpResponse<ShipmentTimeline>>;
1081
+ getShipmentTimeline(ordOrderID: string, observe?: 'events', reportProgress?: boolean, options?: {
1082
+ httpHeaderAccept?: 'application/json';
1083
+ context?: HttpContext;
1084
+ transferCache?: boolean;
1085
+ }): Observable<HttpEvent<ShipmentTimeline>>;
566
1086
  /**
567
1087
  * Get all shipments
568
1088
  * @param $skip
@@ -723,17 +1243,17 @@ declare class UsergroupService extends BaseService {
723
1243
  * @param reportProgress flag to report request and response progress.
724
1244
  */
725
1245
  setUserGroup(regGroupID: string, observe?: 'body', reportProgress?: boolean, options?: {
726
- httpHeaderAccept?: 'application/json';
1246
+ httpHeaderAccept?: undefined;
727
1247
  context?: HttpContext;
728
1248
  transferCache?: boolean;
729
1249
  }): Observable<any>;
730
1250
  setUserGroup(regGroupID: string, observe?: 'response', reportProgress?: boolean, options?: {
731
- httpHeaderAccept?: 'application/json';
1251
+ httpHeaderAccept?: undefined;
732
1252
  context?: HttpContext;
733
1253
  transferCache?: boolean;
734
1254
  }): Observable<HttpResponse<any>>;
735
1255
  setUserGroup(regGroupID: string, observe?: 'events', reportProgress?: boolean, options?: {
736
- httpHeaderAccept?: 'application/json';
1256
+ httpHeaderAccept?: undefined;
737
1257
  context?: HttpContext;
738
1258
  transferCache?: boolean;
739
1259
  }): Observable<HttpEvent<any>>;
@@ -741,7 +1261,34 @@ declare class UsergroupService extends BaseService {
741
1261
  static ɵprov: i0.ɵɵInjectableDeclaration<UsergroupService>;
742
1262
  }
743
1263
 
744
- declare const APIS: (typeof AuthService | typeof DashboardService | typeof HealthService | typeof SettingsService | typeof ShipmentService | typeof UserService | typeof UsergroupService)[];
1264
+ declare const APIS: (typeof AuthService | typeof CalendarService | typeof DashboardService | typeof HealthService | typeof SettingsService | typeof ShipmentService | typeof UserService | typeof UsergroupService)[];
1265
+
1266
+ /**
1267
+ * MySeko.API.Client
1268
+ *
1269
+ *
1270
+ *
1271
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1272
+ * https://openapi-generator.tech
1273
+ * Do not edit the class manually.
1274
+ */
1275
+
1276
+ interface BaseShipmentSummary {
1277
+ ordOrderID: string;
1278
+ typeOrderID?: string | null;
1279
+ number?: string | null;
1280
+ status?: string | null;
1281
+ serviceLevel?: string | null;
1282
+ description?: string | null;
1283
+ shipper?: ShipmentParty;
1284
+ consignee?: ShipmentParty;
1285
+ pieces?: number | null;
1286
+ podName?: string | null;
1287
+ pod?: string | null;
1288
+ podTime?: string | null;
1289
+ pickupDate?: string | null;
1290
+ dueDate?: string | null;
1291
+ }
745
1292
 
746
1293
  /**
747
1294
  * MySeko.API.Client
@@ -757,6 +1304,47 @@ interface EntityList {
757
1304
  data: Array<object>;
758
1305
  }
759
1306
 
1307
+ /**
1308
+ * MySeko.API.Client
1309
+ *
1310
+ *
1311
+ *
1312
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1313
+ * https://openapi-generator.tech
1314
+ * Do not edit the class manually.
1315
+ */
1316
+
1317
+ interface IntlShipmentSummary {
1318
+ ordOrderID: string;
1319
+ typeOrderID?: string | null;
1320
+ number?: string | null;
1321
+ status?: string | null;
1322
+ serviceLevel?: string | null;
1323
+ description?: string | null;
1324
+ shipper?: ShipmentParty;
1325
+ consignee?: ShipmentParty;
1326
+ pieces?: number | null;
1327
+ podName?: string | null;
1328
+ pod?: string | null;
1329
+ podTime?: string | null;
1330
+ pickupDate?: string | null;
1331
+ dueDate?: string | null;
1332
+ originPort?: string | null;
1333
+ destPort?: string | null;
1334
+ originPortName?: string | null;
1335
+ destPortName?: string | null;
1336
+ mode?: string | null;
1337
+ containerType?: string | null;
1338
+ volume?: number | null;
1339
+ volumeUOM?: string | null;
1340
+ addlShipmentRef?: string | null;
1341
+ bookedDate?: string | null;
1342
+ etdSailDate?: string | null;
1343
+ etaDueDate?: string | null;
1344
+ delivery?: Address;
1345
+ finalDelivery?: Address;
1346
+ }
1347
+
760
1348
  /**
761
1349
  * MySeko.API.Client
762
1350
  *
@@ -774,6 +1362,53 @@ interface ModelError {
774
1362
  } | null;
775
1363
  }
776
1364
 
1365
+ /**
1366
+ * MySeko.API.Client
1367
+ *
1368
+ *
1369
+ *
1370
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1371
+ * https://openapi-generator.tech
1372
+ * Do not edit the class manually.
1373
+ */
1374
+
1375
+ interface SekonaShipmentSummary {
1376
+ ordOrderID: string;
1377
+ typeOrderID?: string | null;
1378
+ number?: string | null;
1379
+ status?: string | null;
1380
+ serviceLevel?: string | null;
1381
+ description?: string | null;
1382
+ shipper?: ShipmentParty;
1383
+ consignee?: ShipmentParty;
1384
+ pieces?: number | null;
1385
+ podName?: string | null;
1386
+ pod?: string | null;
1387
+ podTime?: string | null;
1388
+ pickupDate?: string | null;
1389
+ dueDate?: string | null;
1390
+ origin?: string | null;
1391
+ destination?: string | null;
1392
+ originName?: string | null;
1393
+ destinationName?: string | null;
1394
+ secondaryPUServiceLevel?: string | null;
1395
+ secondaryDelServiceLevel?: string | null;
1396
+ podTimeIn?: string | null;
1397
+ dueTime?: string | null;
1398
+ dueDateReady?: string | null;
1399
+ dueDateClose?: string | null;
1400
+ apptDate?: string | null;
1401
+ apptStartTime?: string | null;
1402
+ apptEndTime?: string | null;
1403
+ shipDate?: string | null;
1404
+ readyTime?: string | null;
1405
+ closeTime?: string | null;
1406
+ shipperApptDate?: string | null;
1407
+ shipperApptStartTime?: string | null;
1408
+ shipperApptEndTime?: string | null;
1409
+ appointmentRequired?: boolean | null;
1410
+ }
1411
+
777
1412
  declare const BASE_PATH: InjectionToken<string>;
778
1413
  declare const COLLECTION_FORMATS: {
779
1414
  csv: string;
@@ -792,5 +1427,5 @@ declare class ApiModule {
792
1427
 
793
1428
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
794
1429
 
795
- export { APIS, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, Configuration, DashboardService, HealthService, SettingsService, ShipmentService, UserService, UsergroupService, provideApi };
796
- export type { ActiveShipment, ConfigurationParameters, DataFormat, DataType, EntityList, ModelError, Param, ParamLocation, ParamStyle, RegGroup, SettingValue, SettingView, Shipment, Shipments, StandardDataFormat, StandardDataType, StandardParamStyle, User, UserAccount };
1430
+ export { APIS, ApiModule, AuthService, BASE_PATH, COLLECTION_FORMATS, CalendarService, CalendarViewBy, Configuration, DashboardService, HealthService, SettingsService, ShipmentService, UserService, UsergroupService, provideApi };
1431
+ export type { ActiveShipment, Address, BaseShipmentSummary, ConfigurationParameters, Contact, DataFormat, DataType, EntityList, IntlShipmentSummary, ModelError, PackageDetails, Param, ParamLocation, ParamStyle, PieceDetail, RegGroup, SekonaShipmentSummary, SettingValue, SettingView, Shipment, ShipmentCalendarDateGroup, ShipmentCalendarDates, ShipmentCalendarItem, ShipmentParty, ShipmentPurchaseOrder, ShipmentPurchaseOrderDetails, ShipmentSummary, ShipmentTimeline, Shipments, StandardDataFormat, StandardDataType, StandardParamStyle, TimelineEvent, User, UserAccount };