@indigina/wms-api 0.0.190 → 0.0.192
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/README.md +2 -2
- package/fesm2022/indigina-wms-api.mjs +88 -4
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +106 -10
package/package.json
CHANGED
|
@@ -5580,6 +5580,28 @@ declare class DispatchesService extends BaseService {
|
|
|
5580
5580
|
context?: HttpContext;
|
|
5581
5581
|
transferCache?: boolean;
|
|
5582
5582
|
}): Observable<HttpEvent<PrintDispatchView>>;
|
|
5583
|
+
/**
|
|
5584
|
+
* Get the clients with a wave configuration in the current DC
|
|
5585
|
+
* @endpoint get /dispatches/star-dispatches/clients
|
|
5586
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5587
|
+
* @param reportProgress flag to report request and response progress.
|
|
5588
|
+
* @param options additional options
|
|
5589
|
+
*/
|
|
5590
|
+
getStarDispatchClients(observe?: 'body', reportProgress?: boolean, options?: {
|
|
5591
|
+
httpHeaderAccept?: 'application/json';
|
|
5592
|
+
context?: HttpContext;
|
|
5593
|
+
transferCache?: boolean;
|
|
5594
|
+
}): Observable<Array<string>>;
|
|
5595
|
+
getStarDispatchClients(observe?: 'response', reportProgress?: boolean, options?: {
|
|
5596
|
+
httpHeaderAccept?: 'application/json';
|
|
5597
|
+
context?: HttpContext;
|
|
5598
|
+
transferCache?: boolean;
|
|
5599
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
5600
|
+
getStarDispatchClients(observe?: 'events', reportProgress?: boolean, options?: {
|
|
5601
|
+
httpHeaderAccept?: 'application/json';
|
|
5602
|
+
context?: HttpContext;
|
|
5603
|
+
transferCache?: boolean;
|
|
5604
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
5583
5605
|
/**
|
|
5584
5606
|
* Getting the To Be Picked star dispatches
|
|
5585
5607
|
* @endpoint get /dispatches/star-dispatches
|
|
@@ -7964,7 +7986,7 @@ interface CancellableSalesOrders {
|
|
|
7964
7986
|
* https://openapi-generator.tech
|
|
7965
7987
|
* Do not edit the class manually.
|
|
7966
7988
|
*/
|
|
7967
|
-
interface
|
|
7989
|
+
interface SalesOrderCancellationCreateModel {
|
|
7968
7990
|
salesOrderId: string;
|
|
7969
7991
|
reasonCode: string;
|
|
7970
7992
|
}
|
|
@@ -8007,11 +8029,59 @@ interface SalesOrderCancellationReasons {
|
|
|
8007
8029
|
* https://openapi-generator.tech
|
|
8008
8030
|
* Do not edit the class manually.
|
|
8009
8031
|
*/
|
|
8010
|
-
interface
|
|
8032
|
+
interface SalesOrderCancellationResult {
|
|
8011
8033
|
id: string;
|
|
8012
8034
|
salesOrderCancelNumber: string;
|
|
8013
8035
|
}
|
|
8014
8036
|
|
|
8037
|
+
/**
|
|
8038
|
+
* Wms.API.Client
|
|
8039
|
+
*
|
|
8040
|
+
*
|
|
8041
|
+
*
|
|
8042
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8043
|
+
* https://openapi-generator.tech
|
|
8044
|
+
* Do not edit the class manually.
|
|
8045
|
+
*/
|
|
8046
|
+
interface SalesOrderNumberSummary {
|
|
8047
|
+
salesOrderNumber?: string | null;
|
|
8048
|
+
}
|
|
8049
|
+
|
|
8050
|
+
/**
|
|
8051
|
+
* Wms.API.Client
|
|
8052
|
+
*
|
|
8053
|
+
*
|
|
8054
|
+
*
|
|
8055
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8056
|
+
* https://openapi-generator.tech
|
|
8057
|
+
* Do not edit the class manually.
|
|
8058
|
+
*/
|
|
8059
|
+
|
|
8060
|
+
interface SalesOrderCancellationView {
|
|
8061
|
+
id: string;
|
|
8062
|
+
salesOrderCancelNumber?: string | null;
|
|
8063
|
+
salesOrderHeader?: SalesOrderNumberSummary | null;
|
|
8064
|
+
reasonCode?: string | null;
|
|
8065
|
+
reasonDescription?: string | null;
|
|
8066
|
+
createdDate: string;
|
|
8067
|
+
createdBy?: string | null;
|
|
8068
|
+
}
|
|
8069
|
+
|
|
8070
|
+
/**
|
|
8071
|
+
* Wms.API.Client
|
|
8072
|
+
*
|
|
8073
|
+
*
|
|
8074
|
+
*
|
|
8075
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8076
|
+
* https://openapi-generator.tech
|
|
8077
|
+
* Do not edit the class manually.
|
|
8078
|
+
*/
|
|
8079
|
+
|
|
8080
|
+
interface SalesOrderCancellations {
|
|
8081
|
+
total: number;
|
|
8082
|
+
data: Array<SalesOrderCancellationView>;
|
|
8083
|
+
}
|
|
8084
|
+
|
|
8015
8085
|
/**
|
|
8016
8086
|
* Wms.API.Client
|
|
8017
8087
|
*
|
|
@@ -8278,26 +8348,26 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8278
8348
|
/**
|
|
8279
8349
|
* Cancel a sales order
|
|
8280
8350
|
* @endpoint post /salesOrders/cancellations
|
|
8281
|
-
* @param
|
|
8351
|
+
* @param salesOrderCancellationCreateModel
|
|
8282
8352
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8283
8353
|
* @param reportProgress flag to report request and response progress.
|
|
8284
8354
|
* @param options additional options
|
|
8285
8355
|
*/
|
|
8286
|
-
createSalesOrderCancellation(
|
|
8356
|
+
createSalesOrderCancellation(salesOrderCancellationCreateModel: SalesOrderCancellationCreateModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8287
8357
|
httpHeaderAccept?: 'application/json';
|
|
8288
8358
|
context?: HttpContext;
|
|
8289
8359
|
transferCache?: boolean;
|
|
8290
|
-
}): Observable<
|
|
8291
|
-
createSalesOrderCancellation(
|
|
8360
|
+
}): Observable<SalesOrderCancellationResult>;
|
|
8361
|
+
createSalesOrderCancellation(salesOrderCancellationCreateModel: SalesOrderCancellationCreateModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8292
8362
|
httpHeaderAccept?: 'application/json';
|
|
8293
8363
|
context?: HttpContext;
|
|
8294
8364
|
transferCache?: boolean;
|
|
8295
|
-
}): Observable<HttpResponse<
|
|
8296
|
-
createSalesOrderCancellation(
|
|
8365
|
+
}): Observable<HttpResponse<SalesOrderCancellationResult>>;
|
|
8366
|
+
createSalesOrderCancellation(salesOrderCancellationCreateModel: SalesOrderCancellationCreateModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8297
8367
|
httpHeaderAccept?: 'application/json';
|
|
8298
8368
|
context?: HttpContext;
|
|
8299
8369
|
transferCache?: boolean;
|
|
8300
|
-
}): Observable<HttpEvent<
|
|
8370
|
+
}): Observable<HttpEvent<SalesOrderCancellationResult>>;
|
|
8301
8371
|
/**
|
|
8302
8372
|
* Delete a sales order
|
|
8303
8373
|
* @endpoint delete /salesOrders/{id}
|
|
@@ -8389,6 +8459,32 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8389
8459
|
context?: HttpContext;
|
|
8390
8460
|
transferCache?: boolean;
|
|
8391
8461
|
}): Observable<HttpEvent<SalesOrderCancellationReasons>>;
|
|
8462
|
+
/**
|
|
8463
|
+
* Getting sales order cancellations for the client SO Cancellations grid
|
|
8464
|
+
* @endpoint get /salesOrders/cancellations
|
|
8465
|
+
* @param $skip
|
|
8466
|
+
* @param $top
|
|
8467
|
+
* @param $orderby
|
|
8468
|
+
* @param $filter
|
|
8469
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8470
|
+
* @param reportProgress flag to report request and response progress.
|
|
8471
|
+
* @param options additional options
|
|
8472
|
+
*/
|
|
8473
|
+
getSalesOrderCancellations($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8474
|
+
httpHeaderAccept?: 'application/json';
|
|
8475
|
+
context?: HttpContext;
|
|
8476
|
+
transferCache?: boolean;
|
|
8477
|
+
}): Observable<SalesOrderCancellations>;
|
|
8478
|
+
getSalesOrderCancellations($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8479
|
+
httpHeaderAccept?: 'application/json';
|
|
8480
|
+
context?: HttpContext;
|
|
8481
|
+
transferCache?: boolean;
|
|
8482
|
+
}): Observable<HttpResponse<SalesOrderCancellations>>;
|
|
8483
|
+
getSalesOrderCancellations($skip?: number, $top?: number, $orderby?: string, $filter?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8484
|
+
httpHeaderAccept?: 'application/json';
|
|
8485
|
+
context?: HttpContext;
|
|
8486
|
+
transferCache?: boolean;
|
|
8487
|
+
}): Observable<HttpEvent<SalesOrderCancellations>>;
|
|
8392
8488
|
/**
|
|
8393
8489
|
* Getting sales order items for a sales order
|
|
8394
8490
|
* @endpoint get /salesOrders/{id}/items
|
|
@@ -11417,4 +11513,4 @@ declare class ApiModule {
|
|
|
11417
11513
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
11418
11514
|
|
|
11419
11515
|
export { APIS, AddressSource, AddressType, AddressesService, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CarrierServiceTypesService, CarriersService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, ClusterPackWaveGridTypes, ClusterPackWaveView, ClusterPackingReprintView, ClusterPackingService, CompaniesService, CompanyType, Configuration, ContactsService, CountContinuousInventoryService, CountRecordGridView, CountRecordsService, CountStatusGroup, CountStatuses, CountType, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryCreateModel, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryUpdateModel, DeliveryView, DeviceType, Dispatch, DispatchBoxTypesService, DispatchBoxesService, DispatchCarriersService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, DocumentTypes, HealthService, LicencePlateLabelsGenerateModel, LicencePlateLabelsService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OperatorCountGridView, OrderStatus, OrderType, PackageTypesService, PackingProcesses, PendoService, PeopleGroup, PermissionsService, PickReleaseHistoryTypes, PickSummariesService, PickingProcesses, PrintDispatchView, PrintLabelTemplates, PrintTypePrinterTray, PrintTypePrinterTrayCreateModel, PrintTypePrinterTrayDataModel, PrintTypePrinterTrayUpdateModel, PrintTypes, Printer, PrinterCreateModel, PrinterDataModel, PrinterTray, PrinterTrayCreateModel, PrinterTrayDataModel, PrinterTrayUpdateModel, PrinterUpdateModel, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReprintStatuses, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SalesOrderCompletionIssue, SalesOrderGridView, SalesOrderHeaderCreateModel, SalesOrderHeaderDataModel, SalesOrderHeaderUpdateModel, SalesOrderHeaderView, SalesOrderItemsService, SalesOrderTab, SalesOrdersService, SettingsService, ShipToCompany, ShipToSubtype, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveConfigurationsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WavePickingStarDispatchView, WaveStatuses, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
11420
|
-
export type { AddressView, Addresses, ApplicationSetting, CancellableSalesOrderView, CancellableSalesOrders, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServiceTypes, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CountrySummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems,
|
|
11516
|
+
export type { AddressView, Addresses, ApplicationSetting, CancellableSalesOrderView, CancellableSalesOrders, CarrierProviderIntegration, CarrierProviderIntegrations, CarrierService, CarrierServiceType, CarrierServiceTypeSummary, CarrierServiceTypes, CarrierServices, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, ClusterPackPrinterRequest, ClusterPackPrinterView, ClusterPackWaves, ClusterPackingErrorLogView, ClusterPackingErrorLogs, ClusterPackingReprints, CommandStatusResult, Companies, Company, CompanyDescriptionSummary, ConfigurationParameters, ContactView, Contacts, CountContinuousInventories, CountContinuousInventory, CountContinuousInventoryClient, CountContinuousInventoryClients, CountContinuousInventoryGridView, CountRecords, CountingSummary, CountrySummary, CreateCountContinuousInventory, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxType, DispatchBoxTypeView, DispatchBoxTypes, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, GroupWaveConfigurations, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, OperatorCounts, PackageType, PackageTypeSummary, PackageTypes, Param, ParamLocation, ParamStyle, PickSummaries, PickSummaryView, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, QueueClusterPackReprintResult, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SalesOrderCancellationCreateModel, SalesOrderCancellationReasonView, SalesOrderCancellationReasons, SalesOrderCancellationResult, SalesOrderCancellationView, SalesOrderCancellations, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, SalesOrderNumberSummary, SalesOrders, SetNewFeaturesVisibilityCommand, SetWavePrinterResult, SettingValue, SettingView, ShipToCompanies, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UpdateCountContinuousInventory, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, WavePickingStarDispatches, WaveSummaries, Waves };
|