@indigina/wms-api 0.0.191 → 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/package.json
CHANGED
|
@@ -7986,7 +7986,7 @@ interface CancellableSalesOrders {
|
|
|
7986
7986
|
* https://openapi-generator.tech
|
|
7987
7987
|
* Do not edit the class manually.
|
|
7988
7988
|
*/
|
|
7989
|
-
interface
|
|
7989
|
+
interface SalesOrderCancellationCreateModel {
|
|
7990
7990
|
salesOrderId: string;
|
|
7991
7991
|
reasonCode: string;
|
|
7992
7992
|
}
|
|
@@ -8029,11 +8029,59 @@ interface SalesOrderCancellationReasons {
|
|
|
8029
8029
|
* https://openapi-generator.tech
|
|
8030
8030
|
* Do not edit the class manually.
|
|
8031
8031
|
*/
|
|
8032
|
-
interface
|
|
8032
|
+
interface SalesOrderCancellationResult {
|
|
8033
8033
|
id: string;
|
|
8034
8034
|
salesOrderCancelNumber: string;
|
|
8035
8035
|
}
|
|
8036
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
|
+
|
|
8037
8085
|
/**
|
|
8038
8086
|
* Wms.API.Client
|
|
8039
8087
|
*
|
|
@@ -8300,26 +8348,26 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8300
8348
|
/**
|
|
8301
8349
|
* Cancel a sales order
|
|
8302
8350
|
* @endpoint post /salesOrders/cancellations
|
|
8303
|
-
* @param
|
|
8351
|
+
* @param salesOrderCancellationCreateModel
|
|
8304
8352
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8305
8353
|
* @param reportProgress flag to report request and response progress.
|
|
8306
8354
|
* @param options additional options
|
|
8307
8355
|
*/
|
|
8308
|
-
createSalesOrderCancellation(
|
|
8356
|
+
createSalesOrderCancellation(salesOrderCancellationCreateModel: SalesOrderCancellationCreateModel, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8309
8357
|
httpHeaderAccept?: 'application/json';
|
|
8310
8358
|
context?: HttpContext;
|
|
8311
8359
|
transferCache?: boolean;
|
|
8312
|
-
}): Observable<
|
|
8313
|
-
createSalesOrderCancellation(
|
|
8360
|
+
}): Observable<SalesOrderCancellationResult>;
|
|
8361
|
+
createSalesOrderCancellation(salesOrderCancellationCreateModel: SalesOrderCancellationCreateModel, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8314
8362
|
httpHeaderAccept?: 'application/json';
|
|
8315
8363
|
context?: HttpContext;
|
|
8316
8364
|
transferCache?: boolean;
|
|
8317
|
-
}): Observable<HttpResponse<
|
|
8318
|
-
createSalesOrderCancellation(
|
|
8365
|
+
}): Observable<HttpResponse<SalesOrderCancellationResult>>;
|
|
8366
|
+
createSalesOrderCancellation(salesOrderCancellationCreateModel: SalesOrderCancellationCreateModel, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8319
8367
|
httpHeaderAccept?: 'application/json';
|
|
8320
8368
|
context?: HttpContext;
|
|
8321
8369
|
transferCache?: boolean;
|
|
8322
|
-
}): Observable<HttpEvent<
|
|
8370
|
+
}): Observable<HttpEvent<SalesOrderCancellationResult>>;
|
|
8323
8371
|
/**
|
|
8324
8372
|
* Delete a sales order
|
|
8325
8373
|
* @endpoint delete /salesOrders/{id}
|
|
@@ -8411,6 +8459,32 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8411
8459
|
context?: HttpContext;
|
|
8412
8460
|
transferCache?: boolean;
|
|
8413
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>>;
|
|
8414
8488
|
/**
|
|
8415
8489
|
* Getting sales order items for a sales order
|
|
8416
8490
|
* @endpoint get /salesOrders/{id}/items
|
|
@@ -11439,4 +11513,4 @@ declare class ApiModule {
|
|
|
11439
11513
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
11440
11514
|
|
|
11441
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 };
|
|
11442
|
-
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 };
|