@indigina/wms-api 0.0.105 → 0.0.107

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,201 @@ 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
+ * Cancel a replenishment record
3683
+ * @param id
3684
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3685
+ * @param reportProgress flag to report request and response progress.
3686
+ */
3687
+ cancelReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
3688
+ httpHeaderAccept?: undefined;
3689
+ context?: HttpContext;
3690
+ transferCache?: boolean;
3691
+ }): Observable<any>;
3692
+ cancelReplenishmentRecord(id: string, observe?: 'response', reportProgress?: boolean, options?: {
3693
+ httpHeaderAccept?: undefined;
3694
+ context?: HttpContext;
3695
+ transferCache?: boolean;
3696
+ }): Observable<HttpResponse<any>>;
3697
+ cancelReplenishmentRecord(id: string, observe?: 'events', reportProgress?: boolean, options?: {
3698
+ httpHeaderAccept?: undefined;
3699
+ context?: HttpContext;
3700
+ transferCache?: boolean;
3701
+ }): Observable<HttpEvent<any>>;
3702
+ /**
3703
+ * Getting replenishment records
3704
+ * @param $skip
3705
+ * @param $top
3706
+ * @param $orderby
3707
+ * @param $filter
3708
+ * @param $search
3709
+ * @param replenishmentStatuses List of replenishment statuses to filter by
3710
+ * @param hasAllocatedUsers
3711
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3712
+ * @param reportProgress flag to report request and response progress.
3713
+ */
3714
+ getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, replenishmentStatuses?: Array<ReplenishmentStatuses>, hasAllocatedUsers?: boolean, observe?: 'body', reportProgress?: boolean, options?: {
3715
+ httpHeaderAccept?: 'application/json';
3716
+ context?: HttpContext;
3717
+ transferCache?: boolean;
3718
+ }): Observable<ReplenishmentRecords>;
3719
+ getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, replenishmentStatuses?: Array<ReplenishmentStatuses>, hasAllocatedUsers?: boolean, observe?: 'response', reportProgress?: boolean, options?: {
3720
+ httpHeaderAccept?: 'application/json';
3721
+ context?: HttpContext;
3722
+ transferCache?: boolean;
3723
+ }): Observable<HttpResponse<ReplenishmentRecords>>;
3724
+ getReplenishmentRecords($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, replenishmentStatuses?: Array<ReplenishmentStatuses>, hasAllocatedUsers?: boolean, observe?: 'events', reportProgress?: boolean, options?: {
3725
+ httpHeaderAccept?: 'application/json';
3726
+ context?: HttpContext;
3727
+ transferCache?: boolean;
3728
+ }): Observable<HttpEvent<ReplenishmentRecords>>;
3729
+ /**
3730
+ * Unallocate a replenishment record
3731
+ * @param id
3732
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
3733
+ * @param reportProgress flag to report request and response progress.
3734
+ */
3735
+ unallocateReplenishmentRecord(id: string, observe?: 'body', reportProgress?: boolean, options?: {
3736
+ httpHeaderAccept?: undefined;
3737
+ context?: HttpContext;
3738
+ transferCache?: boolean;
3739
+ }): Observable<any>;
3740
+ unallocateReplenishmentRecord(id: string, observe?: 'response', reportProgress?: boolean, options?: {
3741
+ httpHeaderAccept?: undefined;
3742
+ context?: HttpContext;
3743
+ transferCache?: boolean;
3744
+ }): Observable<HttpResponse<any>>;
3745
+ unallocateReplenishmentRecord(id: string, observe?: 'events', reportProgress?: boolean, options?: {
3746
+ httpHeaderAccept?: undefined;
3747
+ context?: HttpContext;
3748
+ transferCache?: boolean;
3749
+ }): Observable<HttpEvent<any>>;
3750
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentRecordsService, [null, { optional: true; }, { optional: true; }]>;
3751
+ static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentRecordsService>;
3752
+ }
3753
+
3559
3754
  /**
3560
3755
  * Wms.API.Client
3561
3756
  *
@@ -5015,7 +5210,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
5015
5210
  static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
5016
5211
  }
5017
5212
 
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)[];
5213
+ 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
5214
 
5020
5215
  /**
5021
5216
  * Wms.API.Client
@@ -5200,5 +5395,5 @@ declare class ApiModule {
5200
5395
 
5201
5396
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
5202
5397
 
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 };
5398
+ 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 };
5399
+ 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.107",
4
4
  "description": "OpenAPI client for @indigina/wms-api",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {