@indigina/wms-api 0.0.159 → 0.0.160
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.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +35 -35
package/package.json
CHANGED
|
@@ -6720,18 +6720,14 @@ declare class UsersInternalService extends BaseService {
|
|
|
6720
6720
|
* https://openapi-generator.tech
|
|
6721
6721
|
* Do not edit the class manually.
|
|
6722
6722
|
*/
|
|
6723
|
-
|
|
6724
|
-
|
|
6725
|
-
id?: number;
|
|
6723
|
+
interface WaveConfiguration {
|
|
6724
|
+
id?: string;
|
|
6726
6725
|
dcId?: string;
|
|
6727
6726
|
clientId?: string;
|
|
6728
|
-
company?: Company;
|
|
6729
6727
|
code?: string;
|
|
6730
6728
|
description?: string;
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
lastModifiedDate?: string | null;
|
|
6734
|
-
lastModifiedUserId?: string | null;
|
|
6729
|
+
sequence?: number;
|
|
6730
|
+
enabled?: boolean;
|
|
6735
6731
|
}
|
|
6736
6732
|
|
|
6737
6733
|
/**
|
|
@@ -6743,14 +6739,33 @@ interface WaveConfigGroup {
|
|
|
6743
6739
|
* https://openapi-generator.tech
|
|
6744
6740
|
* Do not edit the class manually.
|
|
6745
6741
|
*/
|
|
6746
|
-
|
|
6747
|
-
|
|
6742
|
+
|
|
6743
|
+
interface GroupWaveConfigurations {
|
|
6744
|
+
total: number;
|
|
6745
|
+
data: Array<WaveConfiguration>;
|
|
6746
|
+
}
|
|
6747
|
+
|
|
6748
|
+
/**
|
|
6749
|
+
* Wms.API.Client
|
|
6750
|
+
*
|
|
6751
|
+
*
|
|
6752
|
+
*
|
|
6753
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6754
|
+
* https://openapi-generator.tech
|
|
6755
|
+
* Do not edit the class manually.
|
|
6756
|
+
*/
|
|
6757
|
+
|
|
6758
|
+
interface WaveConfigGroup {
|
|
6759
|
+
id?: number;
|
|
6748
6760
|
dcId?: string;
|
|
6749
6761
|
clientId?: string;
|
|
6762
|
+
company?: Company;
|
|
6750
6763
|
code?: string;
|
|
6751
6764
|
description?: string;
|
|
6752
|
-
|
|
6753
|
-
|
|
6765
|
+
createdDate?: string;
|
|
6766
|
+
createdUserId?: string;
|
|
6767
|
+
lastModifiedDate?: string | null;
|
|
6768
|
+
lastModifiedUserId?: string | null;
|
|
6754
6769
|
}
|
|
6755
6770
|
|
|
6756
6771
|
/**
|
|
@@ -6835,21 +6850,6 @@ interface WaveConfigGroups {
|
|
|
6835
6850
|
data: Array<WaveConfigGroupView>;
|
|
6836
6851
|
}
|
|
6837
6852
|
|
|
6838
|
-
/**
|
|
6839
|
-
* Wms.API.Client
|
|
6840
|
-
*
|
|
6841
|
-
*
|
|
6842
|
-
*
|
|
6843
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
6844
|
-
* https://openapi-generator.tech
|
|
6845
|
-
* Do not edit the class manually.
|
|
6846
|
-
*/
|
|
6847
|
-
|
|
6848
|
-
interface WaveConfigurations {
|
|
6849
|
-
total: number;
|
|
6850
|
-
data: Array<WaveConfiguration>;
|
|
6851
|
-
}
|
|
6852
|
-
|
|
6853
6853
|
declare class WaveConfigGroupsService extends BaseService {
|
|
6854
6854
|
protected httpClient: HttpClient;
|
|
6855
6855
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
@@ -6982,17 +6982,17 @@ declare class WaveConfigGroupsService extends BaseService {
|
|
|
6982
6982
|
httpHeaderAccept?: 'application/json';
|
|
6983
6983
|
context?: HttpContext;
|
|
6984
6984
|
transferCache?: boolean;
|
|
6985
|
-
}): Observable<
|
|
6985
|
+
}): Observable<GroupWaveConfigurations>;
|
|
6986
6986
|
getWaveConfigGroupAvailableConfigurations(waveConfigGroupId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
6987
6987
|
httpHeaderAccept?: 'application/json';
|
|
6988
6988
|
context?: HttpContext;
|
|
6989
6989
|
transferCache?: boolean;
|
|
6990
|
-
}): Observable<HttpResponse<
|
|
6990
|
+
}): Observable<HttpResponse<GroupWaveConfigurations>>;
|
|
6991
6991
|
getWaveConfigGroupAvailableConfigurations(waveConfigGroupId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
6992
6992
|
httpHeaderAccept?: 'application/json';
|
|
6993
6993
|
context?: HttpContext;
|
|
6994
6994
|
transferCache?: boolean;
|
|
6995
|
-
}): Observable<HttpEvent<
|
|
6995
|
+
}): Observable<HttpEvent<GroupWaveConfigurations>>;
|
|
6996
6996
|
/**
|
|
6997
6997
|
* Get list of wave config group clients
|
|
6998
6998
|
* @endpoint get /waveConfigGroups/clients
|
|
@@ -7186,7 +7186,7 @@ interface WaveConfigurationGridView {
|
|
|
7186
7186
|
* Do not edit the class manually.
|
|
7187
7187
|
*/
|
|
7188
7188
|
|
|
7189
|
-
interface
|
|
7189
|
+
interface WaveConfigurations {
|
|
7190
7190
|
total: number;
|
|
7191
7191
|
data: Array<WaveConfigurationGridView>;
|
|
7192
7192
|
}
|
|
@@ -7210,17 +7210,17 @@ declare class WaveConfigurationsService extends BaseService {
|
|
|
7210
7210
|
httpHeaderAccept?: 'application/json';
|
|
7211
7211
|
context?: HttpContext;
|
|
7212
7212
|
transferCache?: boolean;
|
|
7213
|
-
}): Observable<
|
|
7213
|
+
}): Observable<WaveConfigurations>;
|
|
7214
7214
|
getWaveConfigurations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7215
7215
|
httpHeaderAccept?: 'application/json';
|
|
7216
7216
|
context?: HttpContext;
|
|
7217
7217
|
transferCache?: boolean;
|
|
7218
|
-
}): Observable<HttpResponse<
|
|
7218
|
+
}): Observable<HttpResponse<WaveConfigurations>>;
|
|
7219
7219
|
getWaveConfigurations($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7220
7220
|
httpHeaderAccept?: 'application/json';
|
|
7221
7221
|
context?: HttpContext;
|
|
7222
7222
|
transferCache?: boolean;
|
|
7223
|
-
}): Observable<HttpEvent<
|
|
7223
|
+
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
7224
7224
|
static ɵfac: i0.ɵɵFactoryDeclaration<WaveConfigurationsService, [null, { optional: true; }, { optional: true; }]>;
|
|
7225
7225
|
static ɵprov: i0.ɵɵInjectableDeclaration<WaveConfigurationsService>;
|
|
7226
7226
|
}
|
|
@@ -8227,4 +8227,4 @@ declare class ApiModule {
|
|
|
8227
8227
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
8228
8228
|
|
|
8229
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,
|
|
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, GroupWaveConfigurations, 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, WaveHistories, WaveHistoryWaveConfigurationSummary, WaveHistoryWavePickReleaseSummary, WavePickReleases, WavePickingAccess, WavePickingAccessClient, WavePickingAccessClients, WavePickingAccessView, WavePickingAccesses, Waves };
|