@indigina/wms-api 0.0.157 → 0.0.159
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 +127 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +125 -3
package/package.json
CHANGED
|
@@ -6993,6 +6993,33 @@ declare class WaveConfigGroupsService extends BaseService {
|
|
|
6993
6993
|
context?: HttpContext;
|
|
6994
6994
|
transferCache?: boolean;
|
|
6995
6995
|
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
6996
|
+
/**
|
|
6997
|
+
* Get list of wave config group clients
|
|
6998
|
+
* @endpoint get /waveConfigGroups/clients
|
|
6999
|
+
* @param $skip
|
|
7000
|
+
* @param $top
|
|
7001
|
+
* @param $orderby
|
|
7002
|
+
* @param $filter
|
|
7003
|
+
* @param $search
|
|
7004
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7005
|
+
* @param reportProgress flag to report request and response progress.
|
|
7006
|
+
* @param options additional options
|
|
7007
|
+
*/
|
|
7008
|
+
getWaveConfigGroupClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7009
|
+
httpHeaderAccept?: 'application/json';
|
|
7010
|
+
context?: HttpContext;
|
|
7011
|
+
transferCache?: boolean;
|
|
7012
|
+
}): Observable<Array<string>>;
|
|
7013
|
+
getWaveConfigGroupClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7014
|
+
httpHeaderAccept?: 'application/json';
|
|
7015
|
+
context?: HttpContext;
|
|
7016
|
+
transferCache?: boolean;
|
|
7017
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
7018
|
+
getWaveConfigGroupClients($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7019
|
+
httpHeaderAccept?: 'application/json';
|
|
7020
|
+
context?: HttpContext;
|
|
7021
|
+
transferCache?: boolean;
|
|
7022
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
6996
7023
|
/**
|
|
6997
7024
|
* Get configurations for a wave config group
|
|
6998
7025
|
* @endpoint get /waveConfigGroups/{waveConfigGroupId}/configurations
|
|
@@ -7103,6 +7130,101 @@ declare class WaveConfigGroupsService extends BaseService {
|
|
|
7103
7130
|
static ɵprov: i0.ɵɵInjectableDeclaration<WaveConfigGroupsService>;
|
|
7104
7131
|
}
|
|
7105
7132
|
|
|
7133
|
+
/**
|
|
7134
|
+
* Wms.API.Client
|
|
7135
|
+
*
|
|
7136
|
+
*
|
|
7137
|
+
*
|
|
7138
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7139
|
+
* https://openapi-generator.tech
|
|
7140
|
+
* Do not edit the class manually.
|
|
7141
|
+
*/
|
|
7142
|
+
interface WaveConfigurationGridView {
|
|
7143
|
+
id: string;
|
|
7144
|
+
clientId?: string | null;
|
|
7145
|
+
clientName: string;
|
|
7146
|
+
code: string;
|
|
7147
|
+
description: string;
|
|
7148
|
+
sequence: number;
|
|
7149
|
+
dispatchesPerWave: number;
|
|
7150
|
+
serviceGroupName: string | null;
|
|
7151
|
+
niCarrierGroupName: string | null;
|
|
7152
|
+
nonStandardRequirement: boolean;
|
|
7153
|
+
totalUnitsInDispatchMin: number | null;
|
|
7154
|
+
totalUnitsInDispatchMax: number | null;
|
|
7155
|
+
noOfLinesInDispatchMin: number | null;
|
|
7156
|
+
noOfLinesInDispatchMax: number | null;
|
|
7157
|
+
clusterPick: boolean;
|
|
7158
|
+
clusterPack: boolean;
|
|
7159
|
+
noOfSkus: number | null;
|
|
7160
|
+
noOfZones: number | null;
|
|
7161
|
+
reverseSortOrder: boolean;
|
|
7162
|
+
orderType: string | null;
|
|
7163
|
+
star: boolean;
|
|
7164
|
+
buildKit: boolean;
|
|
7165
|
+
bot: boolean;
|
|
7166
|
+
groupReference: string | null;
|
|
7167
|
+
multiZonePick: boolean;
|
|
7168
|
+
giftCard: boolean;
|
|
7169
|
+
autoPrint: boolean;
|
|
7170
|
+
findStockOutsideZones: boolean;
|
|
7171
|
+
editLocked: boolean;
|
|
7172
|
+
enabled: boolean;
|
|
7173
|
+
createDate: string;
|
|
7174
|
+
createdBy: string;
|
|
7175
|
+
lastModifiedDate?: string | null;
|
|
7176
|
+
lastModifiedBy?: string | null;
|
|
7177
|
+
}
|
|
7178
|
+
|
|
7179
|
+
/**
|
|
7180
|
+
* Wms.API.Client
|
|
7181
|
+
*
|
|
7182
|
+
*
|
|
7183
|
+
*
|
|
7184
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7185
|
+
* https://openapi-generator.tech
|
|
7186
|
+
* Do not edit the class manually.
|
|
7187
|
+
*/
|
|
7188
|
+
|
|
7189
|
+
interface WaveConfigurations1 {
|
|
7190
|
+
total: number;
|
|
7191
|
+
data: Array<WaveConfigurationGridView>;
|
|
7192
|
+
}
|
|
7193
|
+
|
|
7194
|
+
declare class WaveConfigurationsService extends BaseService {
|
|
7195
|
+
protected httpClient: HttpClient;
|
|
7196
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
7197
|
+
/**
|
|
7198
|
+
* Getting wave configurations
|
|
7199
|
+
* @endpoint get /waveConfigurations
|
|
7200
|
+
* @param $skip
|
|
7201
|
+
* @param $top
|
|
7202
|
+
* @param $orderby
|
|
7203
|
+
* @param $filter
|
|
7204
|
+
* @param $search
|
|
7205
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7206
|
+
* @param reportProgress flag to report request and response progress.
|
|
7207
|
+
* @param options additional options
|
|
7208
|
+
*/
|
|
7209
|
+
getWaveConfigurations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7210
|
+
httpHeaderAccept?: 'application/json';
|
|
7211
|
+
context?: HttpContext;
|
|
7212
|
+
transferCache?: boolean;
|
|
7213
|
+
}): Observable<WaveConfigurations1>;
|
|
7214
|
+
getWaveConfigurations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7215
|
+
httpHeaderAccept?: 'application/json';
|
|
7216
|
+
context?: HttpContext;
|
|
7217
|
+
transferCache?: boolean;
|
|
7218
|
+
}): Observable<HttpResponse<WaveConfigurations1>>;
|
|
7219
|
+
getWaveConfigurations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7220
|
+
httpHeaderAccept?: 'application/json';
|
|
7221
|
+
context?: HttpContext;
|
|
7222
|
+
transferCache?: boolean;
|
|
7223
|
+
}): Observable<HttpEvent<WaveConfigurations1>>;
|
|
7224
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WaveConfigurationsService, [null, { optional: true; }, { optional: true; }]>;
|
|
7225
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WaveConfigurationsService>;
|
|
7226
|
+
}
|
|
7227
|
+
|
|
7106
7228
|
/**
|
|
7107
7229
|
* Wms.API.Client
|
|
7108
7230
|
*
|
|
@@ -7831,7 +7953,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
7831
7953
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
7832
7954
|
}
|
|
7833
7955
|
|
|
7834
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
|
|
7956
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof ClientWaveConfigurationsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof LicencePlateSerialsService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserCompaniesService | typeof UserPrintersService | typeof UsersInternalService | typeof WaveConfigGroupsService | typeof WaveConfigurationsService | typeof WaveHistoryService | typeof WavePickReleasesService | typeof WavePickingAccessService | typeof WavesByPickReleaseIdService)[];
|
|
7835
7957
|
|
|
7836
7958
|
/**
|
|
7837
7959
|
* Wms.API.Client
|
|
@@ -8104,5 +8226,5 @@ declare class ApiModule {
|
|
|
8104
8226
|
|
|
8105
8227
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
8106
8228
|
|
|
8107
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, 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, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, 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, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompaniesService, UserCompanyType, UserPrinterUpdateModel, UserPrintersService, UserService, UsersInternalService, WaveConfigGroupsService, WaveHistoryService, WaveHistoryTypes, WaveHistoryView, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WavePickingAccessService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
8108
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationSequenceItem, WaveConfigurations, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|
|
8229
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, ClientWaveConfigurationsService, ClusterPackStatuses, 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, DocumentTypes, HealthService, LicencePlateSerialsService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, 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, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, 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, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
8230
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDcLocation, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonProductMaster, CartonProductMasterSystemEan, CartonView, Cartons, Channel, ClientWaveConfigurationGridView, ClientWaveConfigurations, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchCarrier, DispatchCarriers, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, LicencePlateSerialCarton, LicencePlateSerialView, LicencePlateSerials, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, PrintTypePrinterTrays, PrinterTrays, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ResequenceClientWaveConfigurationsCommand, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UnlockWaveResult, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WaveConfigGroup, WaveConfigGroupConfiguration, WaveConfigGroupConfigurationView, WaveConfigGroupConfigurations, WaveConfigGroupView, WaveConfigGroups, WaveConfiguration, WaveConfigurationGridView, WaveConfigurationSequenceItem, WaveConfigurations, WaveConfigurations1, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|