@indigina/wms-api 0.0.105 → 0.0.106

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
@@ -3556,6 +3556,159 @@ declare class ReplenishmentService extends BaseService {
3556
3556
  static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentService>;
3557
3557
  }
3558
3558
 
3559
+ /**
3560
+ * Wms.API.Client
3561
+ *
3562
+ *
3563
+ *
3564
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3565
+ * https://openapi-generator.tech
3566
+ * Do not edit the class manually.
3567
+ */
3568
+ declare const ReplenishmentStages: {
3569
+ readonly Unallocated: "Unallocated";
3570
+ readonly ForcedBulkScan: "ForcedBulkScan";
3571
+ readonly ForcedPickFaceScan: "ForcedPickFaceScan";
3572
+ readonly SystemBulkScan: "SystemBulkScan";
3573
+ readonly SystemPickFaceScan: "SystemPickFaceScan";
3574
+ readonly SystemFloorSpotScan: "SystemFloorSpotScan";
3575
+ readonly SystemFloorSpotComplete: "SystemFloorSpotComplete";
3576
+ readonly FloorSpotQtyToPick: "FloorSpotQtyToPick";
3577
+ readonly FloorSpotPickFaceScan: "FloorSpotPickFaceScan";
3578
+ readonly Complete: "Complete";
3579
+ };
3580
+ type ReplenishmentStages = typeof ReplenishmentStages[keyof typeof ReplenishmentStages];
3581
+
3582
+ /**
3583
+ * Wms.API.Client
3584
+ *
3585
+ *
3586
+ *
3587
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3588
+ * https://openapi-generator.tech
3589
+ * Do not edit the class manually.
3590
+ */
3591
+ declare const ReplenishmentTypes: {
3592
+ readonly Forced: "Forced";
3593
+ readonly System: "System";
3594
+ };
3595
+ type ReplenishmentTypes = typeof ReplenishmentTypes[keyof typeof ReplenishmentTypes];
3596
+
3597
+ /**
3598
+ * Wms.API.Client
3599
+ *
3600
+ *
3601
+ *
3602
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3603
+ * https://openapi-generator.tech
3604
+ * Do not edit the class manually.
3605
+ */
3606
+
3607
+ interface ReplenishmentRecordGridView {
3608
+ id: string;
3609
+ clientName: string;
3610
+ replenishmentType: ReplenishmentTypes;
3611
+ replenishmentTypeIdLocalizedName?: string;
3612
+ productCode: string;
3613
+ bestBeforeDate?: string | null;
3614
+ lotNo?: string;
3615
+ quantityToReplenish: number;
3616
+ bulkDcLocationFullLocationPath: string;
3617
+ bulkCartonNumber: number;
3618
+ bulkSortOrder: number;
3619
+ pickFaceDcLocationFullLocationPath: string;
3620
+ pickFaceCartonNumber?: number | null;
3621
+ replenishmentStage: ReplenishmentStages;
3622
+ replenishmentStageIdLocalizedName?: string;
3623
+ createdDate: string;
3624
+ createdUserName: string;
3625
+ allocatedDate?: string | null;
3626
+ allocatedUserName?: string;
3627
+ bulkQtyPicked?: number | null;
3628
+ bulkQtyPickedDate?: string | null;
3629
+ bulkQtyPickedUserName?: string;
3630
+ floorSpotDcLocationFullLocationPath?: string;
3631
+ floorSpotCartonNumber?: number | null;
3632
+ qtySpotted?: number | null;
3633
+ qtySpottedDate?: string | null;
3634
+ qtySpottedUserName?: string;
3635
+ floorSpotQtyPicked?: number | null;
3636
+ floorSpotQtyPickedDate?: string | null;
3637
+ floorSpotQtyPickedUserName?: string;
3638
+ qtyPutaway?: number | null;
3639
+ qtyPutawayDate?: string | null;
3640
+ qtyPutawayUserName?: string;
3641
+ cancelDate?: string | null;
3642
+ cancelUserName?: string;
3643
+ }
3644
+ declare namespace ReplenishmentRecordGridView {
3645
+ }
3646
+
3647
+ /**
3648
+ * Wms.API.Client
3649
+ *
3650
+ *
3651
+ *
3652
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3653
+ * https://openapi-generator.tech
3654
+ * Do not edit the class manually.
3655
+ */
3656
+
3657
+ interface ReplenishmentRecords {
3658
+ total: number;
3659
+ data: Array<ReplenishmentRecordGridView>;
3660
+ }
3661
+
3662
+ /**
3663
+ * Wms.API.Client
3664
+ *
3665
+ *
3666
+ *
3667
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3668
+ * https://openapi-generator.tech
3669
+ * Do not edit the class manually.
3670
+ */
3671
+ declare const ReplenishmentStatuses: {
3672
+ readonly Active: "Active";
3673
+ readonly Complete: "Complete";
3674
+ readonly Cancel: "Cancel";
3675
+ };
3676
+ type ReplenishmentStatuses = typeof ReplenishmentStatuses[keyof typeof ReplenishmentStatuses];
3677
+
3678
+ declare class ReplenishmentRecordsService extends BaseService {
3679
+ protected httpClient: HttpClient;
3680
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
3681
+ /**
3682
+ * Getting replenishment records
3683
+ * @param $skip
3684
+ * @param $top
3685
+ * @param $orderby
3686
+ * @param $filter
3687
+ * @param $search
3688
+ * @param replenishmentStatuses List of replenishment statuses to filter by
3689
+ * @param hasAllocatedUsers
3690
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3691
+ * @param reportProgress flag to report request and response progress.
3692
+ */
3693
+ getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, replenishmentStatuses?: Array<ReplenishmentStatuses>, hasAllocatedUsers?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
3694
+ httpHeaderAccept?: 'application/json';
3695
+ context?: HttpContext;
3696
+ transferCache?: boolean;
3697
+ }): Observable<ReplenishmentRecords>;
3698
+ getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, replenishmentStatuses?: Array<ReplenishmentStatuses>, hasAllocatedUsers?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
3699
+ httpHeaderAccept?: 'application/json';
3700
+ context?: HttpContext;
3701
+ transferCache?: boolean;
3702
+ }): Observable<HttpResponse<ReplenishmentRecords>>;
3703
+ getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, replenishmentStatuses?: Array<ReplenishmentStatuses>, hasAllocatedUsers?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
3704
+ httpHeaderAccept?: 'application/json';
3705
+ context?: HttpContext;
3706
+ transferCache?: boolean;
3707
+ }): Observable<HttpEvent<ReplenishmentRecords>>;
3708
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentRecordsService, [null, { optional: true; }, { optional: true; }]>;
3709
+ static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentRecordsService>;
3710
+ }
3711
+
3559
3712
  /**
3560
3713
  * Wms.API.Client
3561
3714
  *
@@ -5015,7 +5168,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
5015
5168
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
5016
5169
  }
5017
5170
 
5018
- declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5171
+ declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
5019
5172
 
5020
5173
  /**
5021
5174
  * Wms.API.Client
@@ -5200,5 +5353,5 @@ declare class ApiModule {
5200
5353
 
5201
5354
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
5202
5355
 
5203
- export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentService, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5204
- export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
5356
+ export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, ProductMaster, ProductMastersService, ProductQuantitiesService, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
5357
+ export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Notes, Param, ParamLocation, ParamStyle, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indigina/wms-api",
3
- "version": "0.0.105",
3
+ "version": "0.0.106",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {