@indigina/wms-api 0.0.189 → 0.0.191
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 +191 -0
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +177 -1
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
|
|
@@ -7926,6 +7948,92 @@ declare class SalesOrderItemsService extends BaseService {
|
|
|
7926
7948
|
static ɵprov: i0.ɵɵInjectableDeclaration<SalesOrderItemsService>;
|
|
7927
7949
|
}
|
|
7928
7950
|
|
|
7951
|
+
/**
|
|
7952
|
+
* Wms.API.Client
|
|
7953
|
+
*
|
|
7954
|
+
*
|
|
7955
|
+
*
|
|
7956
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7957
|
+
* https://openapi-generator.tech
|
|
7958
|
+
* Do not edit the class manually.
|
|
7959
|
+
*/
|
|
7960
|
+
interface CancellableSalesOrderView {
|
|
7961
|
+
id: string;
|
|
7962
|
+
displayText: string;
|
|
7963
|
+
}
|
|
7964
|
+
|
|
7965
|
+
/**
|
|
7966
|
+
* Wms.API.Client
|
|
7967
|
+
*
|
|
7968
|
+
*
|
|
7969
|
+
*
|
|
7970
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7971
|
+
* https://openapi-generator.tech
|
|
7972
|
+
* Do not edit the class manually.
|
|
7973
|
+
*/
|
|
7974
|
+
|
|
7975
|
+
interface CancellableSalesOrders {
|
|
7976
|
+
total: number;
|
|
7977
|
+
data: Array<CancellableSalesOrderView>;
|
|
7978
|
+
}
|
|
7979
|
+
|
|
7980
|
+
/**
|
|
7981
|
+
* Wms.API.Client
|
|
7982
|
+
*
|
|
7983
|
+
*
|
|
7984
|
+
*
|
|
7985
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7986
|
+
* https://openapi-generator.tech
|
|
7987
|
+
* Do not edit the class manually.
|
|
7988
|
+
*/
|
|
7989
|
+
interface SalesOrderCancellationCreate {
|
|
7990
|
+
salesOrderId: string;
|
|
7991
|
+
reasonCode: string;
|
|
7992
|
+
}
|
|
7993
|
+
|
|
7994
|
+
/**
|
|
7995
|
+
* Wms.API.Client
|
|
7996
|
+
*
|
|
7997
|
+
*
|
|
7998
|
+
*
|
|
7999
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8000
|
+
* https://openapi-generator.tech
|
|
8001
|
+
* Do not edit the class manually.
|
|
8002
|
+
*/
|
|
8003
|
+
interface SalesOrderCancellationReasonView {
|
|
8004
|
+
reasonCode: string;
|
|
8005
|
+
displayText: string;
|
|
8006
|
+
}
|
|
8007
|
+
|
|
8008
|
+
/**
|
|
8009
|
+
* Wms.API.Client
|
|
8010
|
+
*
|
|
8011
|
+
*
|
|
8012
|
+
*
|
|
8013
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8014
|
+
* https://openapi-generator.tech
|
|
8015
|
+
* Do not edit the class manually.
|
|
8016
|
+
*/
|
|
8017
|
+
|
|
8018
|
+
interface SalesOrderCancellationReasons {
|
|
8019
|
+
total: number;
|
|
8020
|
+
data: Array<SalesOrderCancellationReasonView>;
|
|
8021
|
+
}
|
|
8022
|
+
|
|
8023
|
+
/**
|
|
8024
|
+
* Wms.API.Client
|
|
8025
|
+
*
|
|
8026
|
+
*
|
|
8027
|
+
*
|
|
8028
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
8029
|
+
* https://openapi-generator.tech
|
|
8030
|
+
* Do not edit the class manually.
|
|
8031
|
+
*/
|
|
8032
|
+
interface SalesOrderCancellationView {
|
|
8033
|
+
id: string;
|
|
8034
|
+
salesOrderCancelNumber: string;
|
|
8035
|
+
}
|
|
8036
|
+
|
|
7929
8037
|
/**
|
|
7930
8038
|
* Wms.API.Client
|
|
7931
8039
|
*
|
|
@@ -8189,6 +8297,29 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8189
8297
|
context?: HttpContext;
|
|
8190
8298
|
transferCache?: boolean;
|
|
8191
8299
|
}): Observable<HttpEvent<SalesOrderHeaderView>>;
|
|
8300
|
+
/**
|
|
8301
|
+
* Cancel a sales order
|
|
8302
|
+
* @endpoint post /salesOrders/cancellations
|
|
8303
|
+
* @param salesOrderCancellationCreate
|
|
8304
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8305
|
+
* @param reportProgress flag to report request and response progress.
|
|
8306
|
+
* @param options additional options
|
|
8307
|
+
*/
|
|
8308
|
+
createSalesOrderCancellation(salesOrderCancellationCreate: SalesOrderCancellationCreate, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8309
|
+
httpHeaderAccept?: 'application/json';
|
|
8310
|
+
context?: HttpContext;
|
|
8311
|
+
transferCache?: boolean;
|
|
8312
|
+
}): Observable<SalesOrderCancellationView>;
|
|
8313
|
+
createSalesOrderCancellation(salesOrderCancellationCreate: SalesOrderCancellationCreate, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8314
|
+
httpHeaderAccept?: 'application/json';
|
|
8315
|
+
context?: HttpContext;
|
|
8316
|
+
transferCache?: boolean;
|
|
8317
|
+
}): Observable<HttpResponse<SalesOrderCancellationView>>;
|
|
8318
|
+
createSalesOrderCancellation(salesOrderCancellationCreate: SalesOrderCancellationCreate, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8319
|
+
httpHeaderAccept?: 'application/json';
|
|
8320
|
+
context?: HttpContext;
|
|
8321
|
+
transferCache?: boolean;
|
|
8322
|
+
}): Observable<HttpEvent<SalesOrderCancellationView>>;
|
|
8192
8323
|
/**
|
|
8193
8324
|
* Delete a sales order
|
|
8194
8325
|
* @endpoint delete /salesOrders/{id}
|
|
@@ -8212,6 +8343,29 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8212
8343
|
context?: HttpContext;
|
|
8213
8344
|
transferCache?: boolean;
|
|
8214
8345
|
}): Observable<HttpEvent<any>>;
|
|
8346
|
+
/**
|
|
8347
|
+
* Getting the sales orders that can be cancelled
|
|
8348
|
+
* @endpoint get /salesOrders/cancellable
|
|
8349
|
+
* @param searchTerm
|
|
8350
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8351
|
+
* @param reportProgress flag to report request and response progress.
|
|
8352
|
+
* @param options additional options
|
|
8353
|
+
*/
|
|
8354
|
+
getCancellableSalesOrders(searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8355
|
+
httpHeaderAccept?: 'application/json';
|
|
8356
|
+
context?: HttpContext;
|
|
8357
|
+
transferCache?: boolean;
|
|
8358
|
+
}): Observable<CancellableSalesOrders>;
|
|
8359
|
+
getCancellableSalesOrders(searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8360
|
+
httpHeaderAccept?: 'application/json';
|
|
8361
|
+
context?: HttpContext;
|
|
8362
|
+
transferCache?: boolean;
|
|
8363
|
+
}): Observable<HttpResponse<CancellableSalesOrders>>;
|
|
8364
|
+
getCancellableSalesOrders(searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8365
|
+
httpHeaderAccept?: 'application/json';
|
|
8366
|
+
context?: HttpContext;
|
|
8367
|
+
transferCache?: boolean;
|
|
8368
|
+
}): Observable<HttpEvent<CancellableSalesOrders>>;
|
|
8215
8369
|
/**
|
|
8216
8370
|
* Getting sales order by id
|
|
8217
8371
|
* @endpoint get /salesOrders/{id}
|
|
@@ -8235,6 +8389,28 @@ declare class SalesOrdersService extends BaseService {
|
|
|
8235
8389
|
context?: HttpContext;
|
|
8236
8390
|
transferCache?: boolean;
|
|
8237
8391
|
}): Observable<HttpEvent<SalesOrderHeaderView>>;
|
|
8392
|
+
/**
|
|
8393
|
+
* Getting the sales order cancellation reasons
|
|
8394
|
+
* @endpoint get /salesOrders/cancellation-reasons
|
|
8395
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8396
|
+
* @param reportProgress flag to report request and response progress.
|
|
8397
|
+
* @param options additional options
|
|
8398
|
+
*/
|
|
8399
|
+
getSalesOrderCancellationReasons(observe?: 'body', reportProgress?: boolean, options?: {
|
|
8400
|
+
httpHeaderAccept?: 'application/json';
|
|
8401
|
+
context?: HttpContext;
|
|
8402
|
+
transferCache?: boolean;
|
|
8403
|
+
}): Observable<SalesOrderCancellationReasons>;
|
|
8404
|
+
getSalesOrderCancellationReasons(observe?: 'response', reportProgress?: boolean, options?: {
|
|
8405
|
+
httpHeaderAccept?: 'application/json';
|
|
8406
|
+
context?: HttpContext;
|
|
8407
|
+
transferCache?: boolean;
|
|
8408
|
+
}): Observable<HttpResponse<SalesOrderCancellationReasons>>;
|
|
8409
|
+
getSalesOrderCancellationReasons(observe?: 'events', reportProgress?: boolean, options?: {
|
|
8410
|
+
httpHeaderAccept?: 'application/json';
|
|
8411
|
+
context?: HttpContext;
|
|
8412
|
+
transferCache?: boolean;
|
|
8413
|
+
}): Observable<HttpEvent<SalesOrderCancellationReasons>>;
|
|
8238
8414
|
/**
|
|
8239
8415
|
* Getting sales order items for a sales order
|
|
8240
8416
|
* @endpoint get /salesOrders/{id}/items
|
|
@@ -11263,4 +11439,4 @@ declare class ApiModule {
|
|
|
11263
11439
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
11264
11440
|
|
|
11265
11441
|
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 };
|
|
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, 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 };
|