@indigina/wms-api 0.0.189 → 0.0.190
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 +157 -0
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +155 -1
package/package.json
CHANGED
|
@@ -7926,6 +7926,92 @@ declare class SalesOrderItemsService extends BaseService {
|
|
|
7926
7926
|
static ɵprov: i0.ɵɵInjectableDeclaration<SalesOrderItemsService>;
|
|
7927
7927
|
}
|
|
7928
7928
|
|
|
7929
|
+
/**
|
|
7930
|
+
* Wms.API.Client
|
|
7931
|
+
*
|
|
7932
|
+
*
|
|
7933
|
+
*
|
|
7934
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7935
|
+
* https://openapi-generator.tech
|
|
7936
|
+
* Do not edit the class manually.
|
|
7937
|
+
*/
|
|
7938
|
+
interface CancellableSalesOrderView {
|
|
7939
|
+
id: string;
|
|
7940
|
+
displayText: string;
|
|
7941
|
+
}
|
|
7942
|
+
|
|
7943
|
+
/**
|
|
7944
|
+
* Wms.API.Client
|
|
7945
|
+
*
|
|
7946
|
+
*
|
|
7947
|
+
*
|
|
7948
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7949
|
+
* https://openapi-generator.tech
|
|
7950
|
+
* Do not edit the class manually.
|
|
7951
|
+
*/
|
|
7952
|
+
|
|
7953
|
+
interface CancellableSalesOrders {
|
|
7954
|
+
total: number;
|
|
7955
|
+
data: Array<CancellableSalesOrderView>;
|
|
7956
|
+
}
|
|
7957
|
+
|
|
7958
|
+
/**
|
|
7959
|
+
* Wms.API.Client
|
|
7960
|
+
*
|
|
7961
|
+
*
|
|
7962
|
+
*
|
|
7963
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7964
|
+
* https://openapi-generator.tech
|
|
7965
|
+
* Do not edit the class manually.
|
|
7966
|
+
*/
|
|
7967
|
+
interface SalesOrderCancellationCreate {
|
|
7968
|
+
salesOrderId: string;
|
|
7969
|
+
reasonCode: string;
|
|
7970
|
+
}
|
|
7971
|
+
|
|
7972
|
+
/**
|
|
7973
|
+
* Wms.API.Client
|
|
7974
|
+
*
|
|
7975
|
+
*
|
|
7976
|
+
*
|
|
7977
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7978
|
+
* https://openapi-generator.tech
|
|
7979
|
+
* Do not edit the class manually.
|
|
7980
|
+
*/
|
|
7981
|
+
interface SalesOrderCancellationReasonView {
|
|
7982
|
+
reasonCode: string;
|
|
7983
|
+
displayText: string;
|
|
7984
|
+
}
|
|
7985
|
+
|
|
7986
|
+
/**
|
|
7987
|
+
* Wms.API.Client
|
|
7988
|
+
*
|
|
7989
|
+
*
|
|
7990
|
+
*
|
|
7991
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7992
|
+
* https://openapi-generator.tech
|
|
7993
|
+
* Do not edit the class manually.
|
|
7994
|
+
*/
|
|
7995
|
+
|
|
7996
|
+
interface SalesOrderCancellationReasons {
|
|
7997
|
+
total: number;
|
|
7998
|
+
data: Array<SalesOrderCancellationReasonView>;
|
|
7999
|
+
}
|
|
8000
|
+
|
|
8001
|
+
/**
|
|
8002
|
+
* Wms.API.Client
|
|
8003
|
+
*
|
|
8004
|
+
*
|
|
8005
|
+
*
|
|
8006
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8007
|
+
* https://openapi-generator.tech
|
|
8008
|
+
* Do not edit the class manually.
|
|
8009
|
+
*/
|
|
8010
|
+
interface SalesOrderCancellationView {
|
|
8011
|
+
id: string;
|
|
8012
|
+
salesOrderCancelNumber: string;
|
|
8013
|
+
}
|
|
8014
|
+
|
|
7929
8015
|
/**
|
|
7930
8016
|
* Wms.API.Client
|
|
7931
8017
|
*
|
|
@@ -8189,6 +8275,29 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8189
8275
|
context?: HttpContext;
|
|
8190
8276
|
transferCache?: boolean;
|
|
8191
8277
|
}): Observable<HttpEvent<SalesOrderHeaderView>>;
|
|
8278
|
+
/**
|
|
8279
|
+
* Cancel a sales order
|
|
8280
|
+
* @endpoint post /salesOrders/cancellations
|
|
8281
|
+
* @param salesOrderCancellationCreate
|
|
8282
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8283
|
+
* @param reportProgress flag to report request and response progress.
|
|
8284
|
+
* @param options additional options
|
|
8285
|
+
*/
|
|
8286
|
+
createSalesOrderCancellation(salesOrderCancellationCreate: SalesOrderCancellationCreate, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8287
|
+
httpHeaderAccept?: 'application/json';
|
|
8288
|
+
context?: HttpContext;
|
|
8289
|
+
transferCache?: boolean;
|
|
8290
|
+
}): Observable<SalesOrderCancellationView>;
|
|
8291
|
+
createSalesOrderCancellation(salesOrderCancellationCreate: SalesOrderCancellationCreate, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8292
|
+
httpHeaderAccept?: 'application/json';
|
|
8293
|
+
context?: HttpContext;
|
|
8294
|
+
transferCache?: boolean;
|
|
8295
|
+
}): Observable<HttpResponse<SalesOrderCancellationView>>;
|
|
8296
|
+
createSalesOrderCancellation(salesOrderCancellationCreate: SalesOrderCancellationCreate, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8297
|
+
httpHeaderAccept?: 'application/json';
|
|
8298
|
+
context?: HttpContext;
|
|
8299
|
+
transferCache?: boolean;
|
|
8300
|
+
}): Observable<HttpEvent<SalesOrderCancellationView>>;
|
|
8192
8301
|
/**
|
|
8193
8302
|
* Delete a sales order
|
|
8194
8303
|
* @endpoint delete /salesOrders/{id}
|
|
@@ -8212,6 +8321,29 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8212
8321
|
context?: HttpContext;
|
|
8213
8322
|
transferCache?: boolean;
|
|
8214
8323
|
}): Observable<HttpEvent<any>>;
|
|
8324
|
+
/**
|
|
8325
|
+
* Getting the sales orders that can be cancelled
|
|
8326
|
+
* @endpoint get /salesOrders/cancellable
|
|
8327
|
+
* @param searchTerm
|
|
8328
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8329
|
+
* @param reportProgress flag to report request and response progress.
|
|
8330
|
+
* @param options additional options
|
|
8331
|
+
*/
|
|
8332
|
+
getCancellableSalesOrders(searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8333
|
+
httpHeaderAccept?: 'application/json';
|
|
8334
|
+
context?: HttpContext;
|
|
8335
|
+
transferCache?: boolean;
|
|
8336
|
+
}): Observable<CancellableSalesOrders>;
|
|
8337
|
+
getCancellableSalesOrders(searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8338
|
+
httpHeaderAccept?: 'application/json';
|
|
8339
|
+
context?: HttpContext;
|
|
8340
|
+
transferCache?: boolean;
|
|
8341
|
+
}): Observable<HttpResponse<CancellableSalesOrders>>;
|
|
8342
|
+
getCancellableSalesOrders(searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8343
|
+
httpHeaderAccept?: 'application/json';
|
|
8344
|
+
context?: HttpContext;
|
|
8345
|
+
transferCache?: boolean;
|
|
8346
|
+
}): Observable<HttpEvent<CancellableSalesOrders>>;
|
|
8215
8347
|
/**
|
|
8216
8348
|
* Getting sales order by id
|
|
8217
8349
|
* @endpoint get /salesOrders/{id}
|
|
@@ -8235,6 +8367,28 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8235
8367
|
context?: HttpContext;
|
|
8236
8368
|
transferCache?: boolean;
|
|
8237
8369
|
}): Observable<HttpEvent<SalesOrderHeaderView>>;
|
|
8370
|
+
/**
|
|
8371
|
+
* Getting the sales order cancellation reasons
|
|
8372
|
+
* @endpoint get /salesOrders/cancellation-reasons
|
|
8373
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8374
|
+
* @param reportProgress flag to report request and response progress.
|
|
8375
|
+
* @param options additional options
|
|
8376
|
+
*/
|
|
8377
|
+
getSalesOrderCancellationReasons(observe?: 'body', reportProgress?: boolean, options?: {
|
|
8378
|
+
httpHeaderAccept?: 'application/json';
|
|
8379
|
+
context?: HttpContext;
|
|
8380
|
+
transferCache?: boolean;
|
|
8381
|
+
}): Observable<SalesOrderCancellationReasons>;
|
|
8382
|
+
getSalesOrderCancellationReasons(observe?: 'response', reportProgress?: boolean, options?: {
|
|
8383
|
+
httpHeaderAccept?: 'application/json';
|
|
8384
|
+
context?: HttpContext;
|
|
8385
|
+
transferCache?: boolean;
|
|
8386
|
+
}): Observable<HttpResponse<SalesOrderCancellationReasons>>;
|
|
8387
|
+
getSalesOrderCancellationReasons(observe?: 'events', reportProgress?: boolean, options?: {
|
|
8388
|
+
httpHeaderAccept?: 'application/json';
|
|
8389
|
+
context?: HttpContext;
|
|
8390
|
+
transferCache?: boolean;
|
|
8391
|
+
}): Observable<HttpEvent<SalesOrderCancellationReasons>>;
|
|
8238
8392
|
/**
|
|
8239
8393
|
* Getting sales order items for a sales order
|
|
8240
8394
|
* @endpoint get /salesOrders/{id}/items
|
|
@@ -11263,4 +11417,4 @@ declare class ApiModule {
|
|
|
11263
11417
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
11264
11418
|
|
|
11265
11419
|
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 };
|
|
11266
|
-
export type { AddressView, Addresses, ApplicationSetting, 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, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, 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 };
|
|
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, SalesOrderCancellationCreate, SalesOrderCancellationReasonView, SalesOrderCancellationReasons, SalesOrderCancellationView, SalesOrderItemCreateModel, SalesOrderItemDataModel, SalesOrderItemUpdateModel, SalesOrderItemView, SalesOrderItems, 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 };
|