@indigina/wms-api 0.0.120 → 0.0.122
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 +208 -6
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +191 -7
package/package.json
CHANGED
|
@@ -3528,6 +3528,92 @@ declare class PermissionsService extends BaseService {
|
|
|
3528
3528
|
static ɵprov: i0.ɵɵInjectableDeclaration<PermissionsService>;
|
|
3529
3529
|
}
|
|
3530
3530
|
|
|
3531
|
+
/**
|
|
3532
|
+
* Wms.API.Client
|
|
3533
|
+
*
|
|
3534
|
+
*
|
|
3535
|
+
*
|
|
3536
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3537
|
+
* https://openapi-generator.tech
|
|
3538
|
+
* Do not edit the class manually.
|
|
3539
|
+
*/
|
|
3540
|
+
declare const PrintTypes: {
|
|
3541
|
+
readonly Label: "Label";
|
|
3542
|
+
readonly Document: "Document";
|
|
3543
|
+
readonly GiftMessageCard: "GiftMessageCard";
|
|
3544
|
+
readonly MultiTray: "MultiTray";
|
|
3545
|
+
};
|
|
3546
|
+
type PrintTypes = typeof PrintTypes[keyof typeof PrintTypes];
|
|
3547
|
+
|
|
3548
|
+
/**
|
|
3549
|
+
* Wms.API.Client
|
|
3550
|
+
*
|
|
3551
|
+
*
|
|
3552
|
+
*
|
|
3553
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3554
|
+
* https://openapi-generator.tech
|
|
3555
|
+
* Do not edit the class manually.
|
|
3556
|
+
*/
|
|
3557
|
+
|
|
3558
|
+
interface PrinterView {
|
|
3559
|
+
id: number;
|
|
3560
|
+
printerName: string;
|
|
3561
|
+
printerDescription: string;
|
|
3562
|
+
printType: PrintTypes;
|
|
3563
|
+
sequence?: number | null;
|
|
3564
|
+
}
|
|
3565
|
+
declare namespace PrinterView {
|
|
3566
|
+
}
|
|
3567
|
+
|
|
3568
|
+
/**
|
|
3569
|
+
* Wms.API.Client
|
|
3570
|
+
*
|
|
3571
|
+
*
|
|
3572
|
+
*
|
|
3573
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3574
|
+
* https://openapi-generator.tech
|
|
3575
|
+
* Do not edit the class manually.
|
|
3576
|
+
*/
|
|
3577
|
+
|
|
3578
|
+
interface Printers {
|
|
3579
|
+
total: number;
|
|
3580
|
+
data: Array<PrinterView>;
|
|
3581
|
+
}
|
|
3582
|
+
|
|
3583
|
+
declare class PrintersService extends BaseService {
|
|
3584
|
+
protected httpClient: HttpClient;
|
|
3585
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3586
|
+
/**
|
|
3587
|
+
* Getting printers
|
|
3588
|
+
* @endpoint get /printers
|
|
3589
|
+
* @param $skip
|
|
3590
|
+
* @param $top
|
|
3591
|
+
* @param $orderby
|
|
3592
|
+
* @param $filter
|
|
3593
|
+
* @param $search
|
|
3594
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3595
|
+
* @param reportProgress flag to report request and response progress.
|
|
3596
|
+
* @param options additional options
|
|
3597
|
+
*/
|
|
3598
|
+
getPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3599
|
+
httpHeaderAccept?: 'application/json';
|
|
3600
|
+
context?: HttpContext;
|
|
3601
|
+
transferCache?: boolean;
|
|
3602
|
+
}): Observable<Printers>;
|
|
3603
|
+
getPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3604
|
+
httpHeaderAccept?: 'application/json';
|
|
3605
|
+
context?: HttpContext;
|
|
3606
|
+
transferCache?: boolean;
|
|
3607
|
+
}): Observable<HttpResponse<Printers>>;
|
|
3608
|
+
getPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3609
|
+
httpHeaderAccept?: 'application/json';
|
|
3610
|
+
context?: HttpContext;
|
|
3611
|
+
transferCache?: boolean;
|
|
3612
|
+
}): Observable<HttpEvent<Printers>>;
|
|
3613
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrintersService, [null, { optional: true; }, { optional: true; }]>;
|
|
3614
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
|
|
3615
|
+
}
|
|
3616
|
+
|
|
3531
3617
|
/**
|
|
3532
3618
|
* Wms.API.Client
|
|
3533
3619
|
*
|
|
@@ -4019,22 +4105,21 @@ declare class ReplenishmentAccessesService extends BaseService {
|
|
|
4019
4105
|
* @endpoint put /replenishmentAccesses/{id}
|
|
4020
4106
|
* @param id
|
|
4021
4107
|
* @param replenishmentAccess
|
|
4022
|
-
* @param propertiesToUpdate Array of property names to update
|
|
4023
4108
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4024
4109
|
* @param reportProgress flag to report request and response progress.
|
|
4025
4110
|
* @param options additional options
|
|
4026
4111
|
*/
|
|
4027
|
-
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess,
|
|
4112
|
+
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4028
4113
|
httpHeaderAccept?: 'application/json';
|
|
4029
4114
|
context?: HttpContext;
|
|
4030
4115
|
transferCache?: boolean;
|
|
4031
4116
|
}): Observable<ReplenishmentAccess>;
|
|
4032
|
-
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess,
|
|
4117
|
+
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4033
4118
|
httpHeaderAccept?: 'application/json';
|
|
4034
4119
|
context?: HttpContext;
|
|
4035
4120
|
transferCache?: boolean;
|
|
4036
4121
|
}): Observable<HttpResponse<ReplenishmentAccess>>;
|
|
4037
|
-
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess,
|
|
4122
|
+
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4038
4123
|
httpHeaderAccept?: 'application/json';
|
|
4039
4124
|
context?: HttpContext;
|
|
4040
4125
|
transferCache?: boolean;
|
|
@@ -5464,6 +5549,105 @@ declare class UserService extends BaseService {
|
|
|
5464
5549
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
5465
5550
|
}
|
|
5466
5551
|
|
|
5552
|
+
/**
|
|
5553
|
+
* Wms.API.Client
|
|
5554
|
+
*
|
|
5555
|
+
*
|
|
5556
|
+
*
|
|
5557
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5558
|
+
* https://openapi-generator.tech
|
|
5559
|
+
* Do not edit the class manually.
|
|
5560
|
+
*/
|
|
5561
|
+
|
|
5562
|
+
interface Printer {
|
|
5563
|
+
id: number;
|
|
5564
|
+
dcId: string;
|
|
5565
|
+
printType: PrintTypes;
|
|
5566
|
+
printerName: string;
|
|
5567
|
+
printerDescription: string;
|
|
5568
|
+
printReverseOrder: boolean;
|
|
5569
|
+
}
|
|
5570
|
+
declare namespace Printer {
|
|
5571
|
+
}
|
|
5572
|
+
|
|
5573
|
+
/**
|
|
5574
|
+
* Wms.API.Client
|
|
5575
|
+
*
|
|
5576
|
+
*
|
|
5577
|
+
*
|
|
5578
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5579
|
+
* https://openapi-generator.tech
|
|
5580
|
+
* Do not edit the class manually.
|
|
5581
|
+
*/
|
|
5582
|
+
|
|
5583
|
+
interface UserPrinter {
|
|
5584
|
+
id: number;
|
|
5585
|
+
userId: string;
|
|
5586
|
+
printerId: number;
|
|
5587
|
+
sequence: number;
|
|
5588
|
+
printType: PrintTypes;
|
|
5589
|
+
printer: Printer;
|
|
5590
|
+
}
|
|
5591
|
+
declare namespace UserPrinter {
|
|
5592
|
+
}
|
|
5593
|
+
|
|
5594
|
+
declare class UserPrintersService extends BaseService {
|
|
5595
|
+
protected httpClient: HttpClient;
|
|
5596
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5597
|
+
/**
|
|
5598
|
+
* Getting user printers
|
|
5599
|
+
* @endpoint get /userPrinters
|
|
5600
|
+
* @param $skip
|
|
5601
|
+
* @param $top
|
|
5602
|
+
* @param $orderby
|
|
5603
|
+
* @param $filter
|
|
5604
|
+
* @param $search
|
|
5605
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5606
|
+
* @param reportProgress flag to report request and response progress.
|
|
5607
|
+
* @param options additional options
|
|
5608
|
+
*/
|
|
5609
|
+
getUserPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5610
|
+
httpHeaderAccept?: 'application/json';
|
|
5611
|
+
context?: HttpContext;
|
|
5612
|
+
transferCache?: boolean;
|
|
5613
|
+
}): Observable<Printers>;
|
|
5614
|
+
getUserPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5615
|
+
httpHeaderAccept?: 'application/json';
|
|
5616
|
+
context?: HttpContext;
|
|
5617
|
+
transferCache?: boolean;
|
|
5618
|
+
}): Observable<HttpResponse<Printers>>;
|
|
5619
|
+
getUserPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5620
|
+
httpHeaderAccept?: 'application/json';
|
|
5621
|
+
context?: HttpContext;
|
|
5622
|
+
transferCache?: boolean;
|
|
5623
|
+
}): Observable<HttpEvent<Printers>>;
|
|
5624
|
+
/**
|
|
5625
|
+
* Update user printers
|
|
5626
|
+
* @endpoint put /userPrinters
|
|
5627
|
+
* @param userPrinter
|
|
5628
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5629
|
+
* @param reportProgress flag to report request and response progress.
|
|
5630
|
+
* @param options additional options
|
|
5631
|
+
*/
|
|
5632
|
+
updateUserPrinters(userPrinter?: Array<UserPrinter>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5633
|
+
httpHeaderAccept?: undefined;
|
|
5634
|
+
context?: HttpContext;
|
|
5635
|
+
transferCache?: boolean;
|
|
5636
|
+
}): Observable<any>;
|
|
5637
|
+
updateUserPrinters(userPrinter?: Array<UserPrinter>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5638
|
+
httpHeaderAccept?: undefined;
|
|
5639
|
+
context?: HttpContext;
|
|
5640
|
+
transferCache?: boolean;
|
|
5641
|
+
}): Observable<HttpResponse<any>>;
|
|
5642
|
+
updateUserPrinters(userPrinter?: Array<UserPrinter>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5643
|
+
httpHeaderAccept?: undefined;
|
|
5644
|
+
context?: HttpContext;
|
|
5645
|
+
transferCache?: boolean;
|
|
5646
|
+
}): Observable<HttpEvent<any>>;
|
|
5647
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserPrintersService, [null, { optional: true; }, { optional: true; }]>;
|
|
5648
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserPrintersService>;
|
|
5649
|
+
}
|
|
5650
|
+
|
|
5467
5651
|
/**
|
|
5468
5652
|
* Wms.API.Client
|
|
5469
5653
|
*
|
|
@@ -5801,7 +5985,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
5801
5985
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
5802
5986
|
}
|
|
5803
5987
|
|
|
5804
|
-
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessesService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
|
|
5988
|
+
declare const APIS: (typeof AnalyticsService | typeof CarrierProviderIntegrationsService | typeof CartonDeliveryItemsService | typeof CartonMovementHistoriesService | typeof CartonPicksService | typeof CartonsService | typeof CompaniesService | typeof DcLocationsService | typeof DcUnitOfMeasurementService | typeof DcsService | typeof DeliveriesService | typeof DeliveryItemsService | typeof DispatchBoxesService | typeof DispatchItemQuantityChangesService | typeof DispatchItemsService | typeof DispatchesService | typeof HealthService | typeof NotesService | typeof PendoService | typeof PermissionsService | typeof PrintersService | typeof ProductMasterSuppliersService | typeof ProductMastersService | typeof ProductQuantitiesService | typeof ReasonsService | typeof ReplenishmentAccessesService | typeof ReplenishmentRecordsService | typeof ReturnedItemsService | typeof SettingsService | typeof SummaryService | typeof TaskCompletionTimeService | typeof TaskOperationsService | typeof TaskUserRecordsService | typeof UserService | typeof UserPrintersService | typeof UsersInternalService | typeof WavePickReleasesService | typeof WavesByPickReleaseIdService)[];
|
|
5805
5989
|
|
|
5806
5990
|
/**
|
|
5807
5991
|
* Wms.API.Client
|
|
@@ -5986,5 +6170,5 @@ declare class ApiModule {
|
|
|
5986
6170
|
|
|
5987
6171
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
5988
6172
|
|
|
5989
|
-
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
5990
|
-
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
|
|
6173
|
+
export { APIS, AnalyticsService, ApiModule, BASE_PATH, COLLECTION_FORMATS, CarrierProviderIntegrationsService, CartonDeliveryItemGridView, CartonDeliveryItemsService, CartonGridView, CartonMovementHistoriesService, CartonPicksService, CartonsService, CompaniesService, Configuration, CurrentUser, DcLocationStatus, DcLocationsService, DcUnitOfMeasurementService, DcsService, DeliveriesService, Delivery, DeliveryDataModel, DeliveryGridView, DeliveryItem, DeliveryItemView, DeliveryItemsService, DeliverySummary, DeliveryType, DeliveryView, DeviceType, Dispatch, DispatchBoxesService, DispatchGridView, DispatchItemQuantityChangesService, DispatchItemsService, DispatchSummaryView, DispatchView, DispatchesService, DocumentGenerationStatuses, HealthService, LocationType, MeasurementModel, Note, NoteCategory, NoteSourceType, NotesService, OrderStatus, OrderType, PackingProcesses, PendoService, PermissionsService, PickReleaseHistoryTypes, PickingProcesses, PrintDispatchView, PrintTypes, Printer, PrinterView, PrintersService, ProductMaster, ProductMasterSuppliersService, ProductMastersService, ProductQuantitiesService, ProductStatus, QcType, Reason, ReasonType, ReasonsService, RecordType, ReplenishmentAccessesService, ReplenishmentRecordGridView, ReplenishmentRecordsService, ReplenishmentStages, ReplenishmentStatuses, ReplenishmentTypes, ReturnedDeliveryItemDeliveryModel, ReturnedItemsService, SettingsService, StorageType, SummaryService, TaskCompletionTimeService, TaskOperationsService, TaskUserRecord, TaskUserRecordSelf, TaskUserRecordView, TaskUserRecordsService, UnitOfMeasurementTypes, UserCompanyType, UserPrinter, UserPrintersService, UserService, UsersInternalService, WaveModel, WavePickReleaseMethods, WavePickReleaseModel, WavePickReleaseStatuses, WavePickReleasesService, WaveStatuses, WavesByPickReleaseIdService, provideApi };
|
|
6174
|
+
export type { ApplicationSetting, CarrierProviderIntegration, CarrierProviderIntegrations, CartonDeliveryItemCarton, CartonDeliveryItemDelivery, CartonDeliveryItemDeliveryItem, CartonDeliveryItemView, CartonDeliveryItems, CartonMovementHistories, CartonMovementHistoryGridView, CartonPickGridView, CartonView, Cartons, Channel, CommandStatusResult, Companies, Company, ConfigurationParameters, CountingSummary, DataFormat, DataType, Dc, DcLocations, Dcs, Deliveries, DeliveryItems, DispatchBoxDispatchHeaderModel, DispatchBoxViewModel, DispatchBoxes, DispatchItemQuantityChanges, DispatchItemView, DispatchItems, DispatchQuantityChangeDispatchLineItemModel, DispatchQuantityChangeDispatchModel, DispatchQuantityChangeProductMasterModel, DispatchQuantityChangeSalesOrderHeaderModel, DispatchQuantityChangeSoLineItemModel, DispatchQuantityChangeViewModel, DispatchSummary, Dispatches, EmbedReport, EmbedTokenDto, EntityList, Group, ModelError, NoteView, Param, ParamLocation, ParamStyle, Picks, Printers, ProductMaster1, ProductMasterSystemEan, ProductMasters, ProductQuantities, ProductQuantity, Reasons, ReceivingSummary, ReplenishmentAccess, ReplenishmentAccessClient, ReplenishmentAccessClients, ReplenishmentAccessGridView, ReplenishmentAccessView, ReplenishmentAccesses, ReplenishmentRecords, ReplenishmentSummary, Report, ReturnedDeliveryItemView, ReturnedDeliveryItems, SetNewFeaturesVisibilityCommand, SettingValue, SettingView, StandardDataFormat, StandardDataType, StandardParamStyle, TaskCompletionTime, TaskCompletionTimes, TaskOperation, TaskOperations, TaskUserRecords, UserApplication, UserApplications, UserInfo, UserInfos, UserPermissions, WavePickReleases, Waves };
|