@indigina/wms-api 0.0.163 → 0.0.164
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 +158 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +137 -3
package/package.json
CHANGED
|
@@ -7258,6 +7258,33 @@ declare class WaveConfigurationsService extends BaseService {
|
|
|
7258
7258
|
context?: HttpContext;
|
|
7259
7259
|
transferCache?: boolean;
|
|
7260
7260
|
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
7261
|
+
/**
|
|
7262
|
+
* Wave configurations list
|
|
7263
|
+
* @endpoint get /waveConfigurations/search
|
|
7264
|
+
* @param $skip
|
|
7265
|
+
* @param $top
|
|
7266
|
+
* @param $orderby
|
|
7267
|
+
* @param $filter
|
|
7268
|
+
* @param searchTerm
|
|
7269
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
7270
|
+
* @param reportProgress flag to report request and response progress.
|
|
7271
|
+
* @param options additional options
|
|
7272
|
+
*/
|
|
7273
|
+
getWaveConfigurationsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
7274
|
+
httpHeaderAccept?: 'application/json';
|
|
7275
|
+
context?: HttpContext;
|
|
7276
|
+
transferCache?: boolean;
|
|
7277
|
+
}): Observable<WaveConfigurations>;
|
|
7278
|
+
getWaveConfigurationsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
7279
|
+
httpHeaderAccept?: 'application/json';
|
|
7280
|
+
context?: HttpContext;
|
|
7281
|
+
transferCache?: boolean;
|
|
7282
|
+
}): Observable<HttpResponse<WaveConfigurations>>;
|
|
7283
|
+
getWaveConfigurationsFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
7284
|
+
httpHeaderAccept?: 'application/json';
|
|
7285
|
+
context?: HttpContext;
|
|
7286
|
+
transferCache?: boolean;
|
|
7287
|
+
}): Observable<HttpEvent<WaveConfigurations>>;
|
|
7261
7288
|
static ɵfac: i0.ɵɵFactoryDeclaration<WaveConfigurationsService, [null, { optional: true; }, { optional: true; }]>;
|
|
7262
7289
|
static ɵprov: i0.ɵɵInjectableDeclaration<WaveConfigurationsService>;
|
|
7263
7290
|
}
|
|
@@ -7925,6 +7952,113 @@ declare class WavePickingAccessService extends BaseService {
|
|
|
7925
7952
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavePickingAccessService>;
|
|
7926
7953
|
}
|
|
7927
7954
|
|
|
7955
|
+
/**
|
|
7956
|
+
* Wms.API.Client
|
|
7957
|
+
*
|
|
7958
|
+
*
|
|
7959
|
+
*
|
|
7960
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
7961
|
+
* https://openapi-generator.tech
|
|
7962
|
+
* Do not edit the class manually.
|
|
7963
|
+
*/
|
|
7964
|
+
|
|
7965
|
+
interface WaveSummaryView {
|
|
7966
|
+
id: string;
|
|
7967
|
+
dispatchId: string;
|
|
7968
|
+
clientId: string;
|
|
7969
|
+
client: string;
|
|
7970
|
+
wavePickReleaseNumber: string;
|
|
7971
|
+
waveNumber: number;
|
|
7972
|
+
waveStatus: WaveStatuses;
|
|
7973
|
+
salesOrderNumberList?: string;
|
|
7974
|
+
dispatchNumber?: string;
|
|
7975
|
+
plateNumber: number;
|
|
7976
|
+
extPlatesPending: boolean;
|
|
7977
|
+
documentGenerationStatus: DocumentGenerationStatuses;
|
|
7978
|
+
extPlateNumber?: string;
|
|
7979
|
+
containsCi?: boolean | null;
|
|
7980
|
+
containsBuildKit: boolean;
|
|
7981
|
+
createdDate: string;
|
|
7982
|
+
}
|
|
7983
|
+
declare namespace WaveSummaryView {
|
|
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 WaveSummaries {
|
|
7997
|
+
total: number;
|
|
7998
|
+
data: Array<WaveSummaryView>;
|
|
7999
|
+
}
|
|
8000
|
+
|
|
8001
|
+
declare class WaveSummariesService extends BaseService {
|
|
8002
|
+
protected httpClient: HttpClient;
|
|
8003
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
8004
|
+
/**
|
|
8005
|
+
* Getting wave summaries
|
|
8006
|
+
* @endpoint get /waveSummaries
|
|
8007
|
+
* @param $skip
|
|
8008
|
+
* @param $top
|
|
8009
|
+
* @param $orderby
|
|
8010
|
+
* @param $filter
|
|
8011
|
+
* @param $search
|
|
8012
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8013
|
+
* @param reportProgress flag to report request and response progress.
|
|
8014
|
+
* @param options additional options
|
|
8015
|
+
*/
|
|
8016
|
+
getWaveSummaries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8017
|
+
httpHeaderAccept?: 'application/json';
|
|
8018
|
+
context?: HttpContext;
|
|
8019
|
+
transferCache?: boolean;
|
|
8020
|
+
}): Observable<WaveSummaries>;
|
|
8021
|
+
getWaveSummaries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8022
|
+
httpHeaderAccept?: 'application/json';
|
|
8023
|
+
context?: HttpContext;
|
|
8024
|
+
transferCache?: boolean;
|
|
8025
|
+
}): Observable<HttpResponse<WaveSummaries>>;
|
|
8026
|
+
getWaveSummaries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8027
|
+
httpHeaderAccept?: 'application/json';
|
|
8028
|
+
context?: HttpContext;
|
|
8029
|
+
transferCache?: boolean;
|
|
8030
|
+
}): Observable<HttpEvent<WaveSummaries>>;
|
|
8031
|
+
/**
|
|
8032
|
+
* Wave summaries list
|
|
8033
|
+
* @endpoint get /waveSummaries/search
|
|
8034
|
+
* @param $skip
|
|
8035
|
+
* @param $top
|
|
8036
|
+
* @param $orderby
|
|
8037
|
+
* @param $filter
|
|
8038
|
+
* @param searchTerm
|
|
8039
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
8040
|
+
* @param reportProgress flag to report request and response progress.
|
|
8041
|
+
* @param options additional options
|
|
8042
|
+
*/
|
|
8043
|
+
getWaveSummariesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
8044
|
+
httpHeaderAccept?: 'application/json';
|
|
8045
|
+
context?: HttpContext;
|
|
8046
|
+
transferCache?: boolean;
|
|
8047
|
+
}): Observable<WaveSummaries>;
|
|
8048
|
+
getWaveSummariesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
8049
|
+
httpHeaderAccept?: 'application/json';
|
|
8050
|
+
context?: HttpContext;
|
|
8051
|
+
transferCache?: boolean;
|
|
8052
|
+
}): Observable<HttpResponse<WaveSummaries>>;
|
|
8053
|
+
getWaveSummariesFromIndex($skip?: number, $top?: number, $orderby?: string, $filter?: string, searchTerm?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
8054
|
+
httpHeaderAccept?: 'application/json';
|
|
8055
|
+
context?: HttpContext;
|
|
8056
|
+
transferCache?: boolean;
|
|
8057
|
+
}): Observable<HttpEvent<WaveSummaries>>;
|
|
8058
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<WaveSummariesService, [null, { optional: true; }, { optional: true; }]>;
|
|
8059
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<WaveSummariesService>;
|
|
8060
|
+
}
|
|
8061
|
+
|
|
7928
8062
|
/**
|
|
7929
8063
|
* Wms.API.Client
|
|
7930
8064
|
*
|
|
@@ -8004,7 +8138,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
8004
8138
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
8005
8139
|
}
|
|
8006
8140
|
|
|
8007
|
-
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)[];
|
|
8141
|
+
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 WaveSummariesService | typeof WavesByPickReleaseIdService)[];
|
|
8008
8142
|
|
|
8009
8143
|
/**
|
|
8010
8144
|
* Wms.API.Client
|
|
@@ -8277,5 +8411,5 @@ declare class ApiModule {
|
|
|
8277
8411
|
|
|
8278
8412
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
8279
8413
|
|
|
8280
|
-
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 };
|
|
8281
|
-
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, ReplenishmentCompanySummary, 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, WavePickingAccessCompanySummary, WavePickingAccessView, WavePickingAccesses, Waves };
|
|
8414
|
+
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, WaveSummariesService, WaveSummaryView, WavesByPickReleaseIdService, provideApi };
|
|
8415
|
+
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, ReplenishmentCompanySummary, 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, WavePickingAccessCompanySummary, WavePickingAccessView, WavePickingAccesses, WaveSummaries, Waves };
|