@indigina/wms-api 0.0.88 → 0.0.90

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
@@ -512,6 +512,77 @@ declare class CarrierProviderIntegrationsService extends BaseService {
512
512
  static ɵprov: i0.ɵɵInjectableDeclaration<CarrierProviderIntegrationsService>;
513
513
  }
514
514
 
515
+ /**
516
+ * Wms.API.Client
517
+ *
518
+ *
519
+ *
520
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
521
+ * https://openapi-generator.tech
522
+ * Do not edit the class manually.
523
+ */
524
+ interface Cartons {
525
+ total: number;
526
+ data: Array<object>;
527
+ }
528
+
529
+ declare class CartonsService extends BaseService {
530
+ protected httpClient: HttpClient;
531
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
532
+ /**
533
+ * Getting cartons
534
+ * @param $skip
535
+ * @param $top
536
+ * @param $orderby
537
+ * @param $filter
538
+ * @param $search
539
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
540
+ * @param reportProgress flag to report request and response progress.
541
+ */
542
+ getCartons($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
543
+ httpHeaderAccept?: 'application/json';
544
+ context?: HttpContext;
545
+ transferCache?: boolean;
546
+ }): Observable<Cartons>;
547
+ getCartons($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
548
+ httpHeaderAccept?: 'application/json';
549
+ context?: HttpContext;
550
+ transferCache?: boolean;
551
+ }): Observable<HttpResponse<Cartons>>;
552
+ getCartons($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
553
+ httpHeaderAccept?: 'application/json';
554
+ context?: HttpContext;
555
+ transferCache?: boolean;
556
+ }): Observable<HttpEvent<Cartons>>;
557
+ /**
558
+ * Cartons list
559
+ * @param $skip
560
+ * @param $top
561
+ * @param $orderby
562
+ * @param $filter
563
+ * @param searchTerm
564
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
565
+ * @param reportProgress flag to report request and response progress.
566
+ */
567
+ getCartonsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
568
+ httpHeaderAccept?: 'application/json';
569
+ context?: HttpContext;
570
+ transferCache?: boolean;
571
+ }): Observable<Cartons>;
572
+ getCartonsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
573
+ httpHeaderAccept?: 'application/json';
574
+ context?: HttpContext;
575
+ transferCache?: boolean;
576
+ }): Observable<HttpResponse<Cartons>>;
577
+ getCartonsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
578
+ httpHeaderAccept?: 'application/json';
579
+ context?: HttpContext;
580
+ transferCache?: boolean;
581
+ }): Observable<HttpEvent<Cartons>>;
582
+ static ɵfac: i0.ɵɵFactoryDeclaration<CartonsService, [null, { optional: true; }, { optional: true; }]>;
583
+ static ɵprov: i0.ɵɵInjectableDeclaration<CartonsService>;
584
+ }
585
+
515
586
  /**
516
587
  * Wms.API.Client
517
588
  *
@@ -595,6 +666,52 @@ declare class CompaniesService extends BaseService {
595
666
  static ɵprov: i0.ɵɵInjectableDeclaration<CompaniesService>;
596
667
  }
597
668
 
669
+ /**
670
+ * Wms.API.Client
671
+ *
672
+ *
673
+ *
674
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
675
+ * https://openapi-generator.tech
676
+ * Do not edit the class manually.
677
+ */
678
+ interface DcLocations {
679
+ total: number;
680
+ data: Array<object>;
681
+ }
682
+
683
+ declare class DcLocationsService extends BaseService {
684
+ protected httpClient: HttpClient;
685
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
686
+ /**
687
+ * Getting dcLocations
688
+ * @param $skip
689
+ * @param $top
690
+ * @param $orderby
691
+ * @param $filter
692
+ * @param $search
693
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
694
+ * @param reportProgress flag to report request and response progress.
695
+ */
696
+ getDcLocations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
697
+ httpHeaderAccept?: 'application/json';
698
+ context?: HttpContext;
699
+ transferCache?: boolean;
700
+ }): Observable<DcLocations>;
701
+ getDcLocations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
702
+ httpHeaderAccept?: 'application/json';
703
+ context?: HttpContext;
704
+ transferCache?: boolean;
705
+ }): Observable<HttpResponse<DcLocations>>;
706
+ getDcLocations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
707
+ httpHeaderAccept?: 'application/json';
708
+ context?: HttpContext;
709
+ transferCache?: boolean;
710
+ }): Observable<HttpEvent<DcLocations>>;
711
+ static ɵfac: i0.ɵɵFactoryDeclaration<DcLocationsService, [null, { optional: true; }, { optional: true; }]>;
712
+ static ɵprov: i0.ɵɵInjectableDeclaration<DcLocationsService>;
713
+ }
714
+
598
715
  /**
599
716
  * Wms.API.Client
600
717
  *
@@ -1375,6 +1492,7 @@ interface DeliveryItemView {
1375
1492
  grnQuantity: number;
1376
1493
  putAway: boolean;
1377
1494
  returnReason: string;
1495
+ reasonDescription: string;
1378
1496
  qcPercentage: number | null;
1379
1497
  qcControlled: boolean;
1380
1498
  bestBeforeDate: string | null;
@@ -3791,7 +3909,7 @@ declare class UsersInternalService extends BaseService {
3791
3909
  static ɵprov: i0.ɵɵInjectableDeclaration<UsersInternalService>;
3792
3910
  }
3793
3911
 
3794
- declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CompaniesService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
3912
+ declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService)[];
3795
3913
 
3796
3914
  /**
3797
3915
  * Wms.API.Client
@@ -3923,5 +4041,5 @@ declare class ApiModule {
3923
4041
 
3924
4042
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
3925
4043
 
3926
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CompaniesService, Configuration, CurrentUser, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
3927
- export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, Dcs, Deliveries, DeliveryItems, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
4044
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationsService, DcsService, DeliveriesService, Delivery, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchGridView, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, HealthService, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickingProcesses, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, SettingsService, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UserCompanyType, UserService, UsersInternalService, provideApi };
4045
+ export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, Cartons, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchItemView, DispatchItems, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.88",
3
+ "version": "0.0.90",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {