@indigina/wms-api 0.0.132 → 0.0.134
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/package.json
CHANGED
|
@@ -3231,6 +3231,30 @@ declare class DispatchesService extends BaseService {
|
|
|
3231
3231
|
context?: HttpContext;
|
|
3232
3232
|
transferCache?: boolean;
|
|
3233
3233
|
}): Observable<HttpEvent<Dispatches>>;
|
|
3234
|
+
/**
|
|
3235
|
+
* Get owner company IDs without dispatches
|
|
3236
|
+
* @endpoint get /dispatches/owner-companies/without-dispatch
|
|
3237
|
+
* @param orderStatus
|
|
3238
|
+
* @param ownerCompanyIds
|
|
3239
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3240
|
+
* @param reportProgress flag to report request and response progress.
|
|
3241
|
+
* @param options additional options
|
|
3242
|
+
*/
|
|
3243
|
+
getOwnerCompanyIdsWithoutDispatches(orderStatus: OrderStatus, ownerCompanyIds: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3244
|
+
httpHeaderAccept?: 'application/json';
|
|
3245
|
+
context?: HttpContext;
|
|
3246
|
+
transferCache?: boolean;
|
|
3247
|
+
}): Observable<Array<string>>;
|
|
3248
|
+
getOwnerCompanyIdsWithoutDispatches(orderStatus: OrderStatus, ownerCompanyIds: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3249
|
+
httpHeaderAccept?: 'application/json';
|
|
3250
|
+
context?: HttpContext;
|
|
3251
|
+
transferCache?: boolean;
|
|
3252
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
3253
|
+
getOwnerCompanyIdsWithoutDispatches(orderStatus: OrderStatus, ownerCompanyIds: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3254
|
+
httpHeaderAccept?: 'application/json';
|
|
3255
|
+
context?: HttpContext;
|
|
3256
|
+
transferCache?: boolean;
|
|
3257
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
3234
3258
|
/**
|
|
3235
3259
|
* Getting dispatch print details by id
|
|
3236
3260
|
* @endpoint get /dispatches/{id}/print-details
|
|
@@ -5593,36 +5617,12 @@ declare class UserService extends BaseService {
|
|
|
5593
5617
|
* Do not edit the class manually.
|
|
5594
5618
|
*/
|
|
5595
5619
|
|
|
5596
|
-
interface
|
|
5597
|
-
id: number;
|
|
5598
|
-
dcId: string;
|
|
5599
|
-
printType: PrintTypes;
|
|
5600
|
-
printerName: string;
|
|
5601
|
-
printerDescription: string;
|
|
5602
|
-
printReverseOrder: boolean;
|
|
5603
|
-
}
|
|
5604
|
-
declare namespace Printer {
|
|
5605
|
-
}
|
|
5606
|
-
|
|
5607
|
-
/**
|
|
5608
|
-
* Wms.API.Client
|
|
5609
|
-
*
|
|
5610
|
-
*
|
|
5611
|
-
*
|
|
5612
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5613
|
-
* https://openapi-generator.tech
|
|
5614
|
-
* Do not edit the class manually.
|
|
5615
|
-
*/
|
|
5616
|
-
|
|
5617
|
-
interface UserPrinter {
|
|
5618
|
-
id: number;
|
|
5619
|
-
userId: string;
|
|
5620
|
+
interface UserPrinterUpdateModel {
|
|
5620
5621
|
printerId: number;
|
|
5621
|
-
sequence: number;
|
|
5622
5622
|
printType: PrintTypes;
|
|
5623
|
-
|
|
5623
|
+
sequence: number;
|
|
5624
5624
|
}
|
|
5625
|
-
declare namespace
|
|
5625
|
+
declare namespace UserPrinterUpdateModel {
|
|
5626
5626
|
}
|
|
5627
5627
|
|
|
5628
5628
|
declare class UserPrintersService extends BaseService {
|
|
@@ -5658,22 +5658,22 @@ declare class UserPrintersService extends BaseService {
|
|
|
5658
5658
|
/**
|
|
5659
5659
|
* Update user printers
|
|
5660
5660
|
* @endpoint put /userPrinters
|
|
5661
|
-
* @param
|
|
5661
|
+
* @param userPrinterUpdateModel
|
|
5662
5662
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5663
5663
|
* @param reportProgress flag to report request and response progress.
|
|
5664
5664
|
* @param options additional options
|
|
5665
5665
|
*/
|
|
5666
|
-
updateUserPrinters(
|
|
5666
|
+
updateUserPrinters(userPrinterUpdateModel?: Array<UserPrinterUpdateModel>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5667
5667
|
httpHeaderAccept?: undefined;
|
|
5668
5668
|
context?: HttpContext;
|
|
5669
5669
|
transferCache?: boolean;
|
|
5670
5670
|
}): Observable<any>;
|
|
5671
|
-
updateUserPrinters(
|
|
5671
|
+
updateUserPrinters(userPrinterUpdateModel?: Array<UserPrinterUpdateModel>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5672
5672
|
httpHeaderAccept?: undefined;
|
|
5673
5673
|
context?: HttpContext;
|
|
5674
5674
|
transferCache?: boolean;
|
|
5675
5675
|
}): Observable<HttpResponse<any>>;
|
|
5676
|
-
updateUserPrinters(
|
|
5676
|
+
updateUserPrinters(userPrinterUpdateModel?: Array<UserPrinterUpdateModel>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5677
5677
|
httpHeaderAccept?: undefined;
|
|
5678
5678
|
context?: HttpContext;
|
|
5679
5679
|
transferCache?: boolean;
|
|
@@ -6469,5 +6469,5 @@ declare class ApiModule {
|
|
|
6469
6469
|
|
|
6470
6470
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
6471
6471
|
|
|
6472
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, 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, PrintTypes,
|
|
6472
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, 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, PrintTypes, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
6473
6473
|
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, 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, Param, ParamLocation, ParamStyle, Picks, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|