@indigina/wms-api 0.0.121 → 0.0.123
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 +242 -2
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/package.json +1 -1
- package/types/indigina-wms-api.d.ts +211 -3
package/package.json
CHANGED
|
@@ -3379,6 +3379,29 @@ declare class NotesService extends BaseService {
|
|
|
3379
3379
|
context?: HttpContext;
|
|
3380
3380
|
transferCache?: boolean;
|
|
3381
3381
|
}): Observable<HttpEvent<Note>>;
|
|
3382
|
+
/**
|
|
3383
|
+
* Delete a specific note
|
|
3384
|
+
* @endpoint delete /notes/{id}
|
|
3385
|
+
* @param id
|
|
3386
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3387
|
+
* @param reportProgress flag to report request and response progress.
|
|
3388
|
+
* @param options additional options
|
|
3389
|
+
*/
|
|
3390
|
+
deleteNote(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3391
|
+
httpHeaderAccept?: undefined;
|
|
3392
|
+
context?: HttpContext;
|
|
3393
|
+
transferCache?: boolean;
|
|
3394
|
+
}): Observable<any>;
|
|
3395
|
+
deleteNote(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3396
|
+
httpHeaderAccept?: undefined;
|
|
3397
|
+
context?: HttpContext;
|
|
3398
|
+
transferCache?: boolean;
|
|
3399
|
+
}): Observable<HttpResponse<any>>;
|
|
3400
|
+
deleteNote(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3401
|
+
httpHeaderAccept?: undefined;
|
|
3402
|
+
context?: HttpContext;
|
|
3403
|
+
transferCache?: boolean;
|
|
3404
|
+
}): Observable<HttpEvent<any>>;
|
|
3382
3405
|
/**
|
|
3383
3406
|
* Get note by source with category
|
|
3384
3407
|
* @endpoint get /notes/{sourceId}/{type}/{category}
|
|
@@ -3528,6 +3551,92 @@ declare class PermissionsService extends BaseService {
|
|
|
3528
3551
|
static ɵprov: i0.ɵɵInjectableDeclaration<PermissionsService>;
|
|
3529
3552
|
}
|
|
3530
3553
|
|
|
3554
|
+
/**
|
|
3555
|
+
* Wms.API.Client
|
|
3556
|
+
*
|
|
3557
|
+
*
|
|
3558
|
+
*
|
|
3559
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3560
|
+
* https://openapi-generator.tech
|
|
3561
|
+
* Do not edit the class manually.
|
|
3562
|
+
*/
|
|
3563
|
+
declare const PrintTypes: {
|
|
3564
|
+
readonly Label: "Label";
|
|
3565
|
+
readonly Document: "Document";
|
|
3566
|
+
readonly GiftMessageCard: "GiftMessageCard";
|
|
3567
|
+
readonly MultiTray: "MultiTray";
|
|
3568
|
+
};
|
|
3569
|
+
type PrintTypes = typeof PrintTypes[keyof typeof PrintTypes];
|
|
3570
|
+
|
|
3571
|
+
/**
|
|
3572
|
+
* Wms.API.Client
|
|
3573
|
+
*
|
|
3574
|
+
*
|
|
3575
|
+
*
|
|
3576
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3577
|
+
* https://openapi-generator.tech
|
|
3578
|
+
* Do not edit the class manually.
|
|
3579
|
+
*/
|
|
3580
|
+
|
|
3581
|
+
interface PrinterView {
|
|
3582
|
+
id: number;
|
|
3583
|
+
printerName: string;
|
|
3584
|
+
printerDescription: string;
|
|
3585
|
+
printType: PrintTypes;
|
|
3586
|
+
sequence?: number | null;
|
|
3587
|
+
}
|
|
3588
|
+
declare namespace PrinterView {
|
|
3589
|
+
}
|
|
3590
|
+
|
|
3591
|
+
/**
|
|
3592
|
+
* Wms.API.Client
|
|
3593
|
+
*
|
|
3594
|
+
*
|
|
3595
|
+
*
|
|
3596
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3597
|
+
* https://openapi-generator.tech
|
|
3598
|
+
* Do not edit the class manually.
|
|
3599
|
+
*/
|
|
3600
|
+
|
|
3601
|
+
interface Printers {
|
|
3602
|
+
total: number;
|
|
3603
|
+
data: Array<PrinterView>;
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3606
|
+
declare class PrintersService extends BaseService {
|
|
3607
|
+
protected httpClient: HttpClient;
|
|
3608
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
3609
|
+
/**
|
|
3610
|
+
* Getting printers
|
|
3611
|
+
* @endpoint get /printers
|
|
3612
|
+
* @param $skip
|
|
3613
|
+
* @param $top
|
|
3614
|
+
* @param $orderby
|
|
3615
|
+
* @param $filter
|
|
3616
|
+
* @param $search
|
|
3617
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3618
|
+
* @param reportProgress flag to report request and response progress.
|
|
3619
|
+
* @param options additional options
|
|
3620
|
+
*/
|
|
3621
|
+
getPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3622
|
+
httpHeaderAccept?: 'application/json';
|
|
3623
|
+
context?: HttpContext;
|
|
3624
|
+
transferCache?: boolean;
|
|
3625
|
+
}): Observable<Printers>;
|
|
3626
|
+
getPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3627
|
+
httpHeaderAccept?: 'application/json';
|
|
3628
|
+
context?: HttpContext;
|
|
3629
|
+
transferCache?: boolean;
|
|
3630
|
+
}): Observable<HttpResponse<Printers>>;
|
|
3631
|
+
getPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3632
|
+
httpHeaderAccept?: 'application/json';
|
|
3633
|
+
context?: HttpContext;
|
|
3634
|
+
transferCache?: boolean;
|
|
3635
|
+
}): Observable<HttpEvent<Printers>>;
|
|
3636
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrintersService, [null, { optional: true; }, { optional: true; }]>;
|
|
3637
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
|
|
3638
|
+
}
|
|
3639
|
+
|
|
3531
3640
|
/**
|
|
3532
3641
|
* Wms.API.Client
|
|
3533
3642
|
*
|
|
@@ -5463,6 +5572,105 @@ declare class UserService extends BaseService {
|
|
|
5463
5572
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
5464
5573
|
}
|
|
5465
5574
|
|
|
5575
|
+
/**
|
|
5576
|
+
* Wms.API.Client
|
|
5577
|
+
*
|
|
5578
|
+
*
|
|
5579
|
+
*
|
|
5580
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5581
|
+
* https://openapi-generator.tech
|
|
5582
|
+
* Do not edit the class manually.
|
|
5583
|
+
*/
|
|
5584
|
+
|
|
5585
|
+
interface Printer {
|
|
5586
|
+
id: number;
|
|
5587
|
+
dcId: string;
|
|
5588
|
+
printType: PrintTypes;
|
|
5589
|
+
printerName: string;
|
|
5590
|
+
printerDescription: string;
|
|
5591
|
+
printReverseOrder: boolean;
|
|
5592
|
+
}
|
|
5593
|
+
declare namespace Printer {
|
|
5594
|
+
}
|
|
5595
|
+
|
|
5596
|
+
/**
|
|
5597
|
+
* Wms.API.Client
|
|
5598
|
+
*
|
|
5599
|
+
*
|
|
5600
|
+
*
|
|
5601
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
5602
|
+
* https://openapi-generator.tech
|
|
5603
|
+
* Do not edit the class manually.
|
|
5604
|
+
*/
|
|
5605
|
+
|
|
5606
|
+
interface UserPrinter {
|
|
5607
|
+
id: number;
|
|
5608
|
+
userId: string;
|
|
5609
|
+
printerId: number;
|
|
5610
|
+
sequence: number;
|
|
5611
|
+
printType: PrintTypes;
|
|
5612
|
+
printer: Printer;
|
|
5613
|
+
}
|
|
5614
|
+
declare namespace UserPrinter {
|
|
5615
|
+
}
|
|
5616
|
+
|
|
5617
|
+
declare class UserPrintersService extends BaseService {
|
|
5618
|
+
protected httpClient: HttpClient;
|
|
5619
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5620
|
+
/**
|
|
5621
|
+
* Getting user printers
|
|
5622
|
+
* @endpoint get /userPrinters
|
|
5623
|
+
* @param $skip
|
|
5624
|
+
* @param $top
|
|
5625
|
+
* @param $orderby
|
|
5626
|
+
* @param $filter
|
|
5627
|
+
* @param $search
|
|
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
|
+
getUserPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5633
|
+
httpHeaderAccept?: 'application/json';
|
|
5634
|
+
context?: HttpContext;
|
|
5635
|
+
transferCache?: boolean;
|
|
5636
|
+
}): Observable<Printers>;
|
|
5637
|
+
getUserPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5638
|
+
httpHeaderAccept?: 'application/json';
|
|
5639
|
+
context?: HttpContext;
|
|
5640
|
+
transferCache?: boolean;
|
|
5641
|
+
}): Observable<HttpResponse<Printers>>;
|
|
5642
|
+
getUserPrinters($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5643
|
+
httpHeaderAccept?: 'application/json';
|
|
5644
|
+
context?: HttpContext;
|
|
5645
|
+
transferCache?: boolean;
|
|
5646
|
+
}): Observable<HttpEvent<Printers>>;
|
|
5647
|
+
/**
|
|
5648
|
+
* Update user printers
|
|
5649
|
+
* @endpoint put /userPrinters
|
|
5650
|
+
* @param userPrinter
|
|
5651
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5652
|
+
* @param reportProgress flag to report request and response progress.
|
|
5653
|
+
* @param options additional options
|
|
5654
|
+
*/
|
|
5655
|
+
updateUserPrinters(userPrinter?: Array<UserPrinter>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5656
|
+
httpHeaderAccept?: undefined;
|
|
5657
|
+
context?: HttpContext;
|
|
5658
|
+
transferCache?: boolean;
|
|
5659
|
+
}): Observable<any>;
|
|
5660
|
+
updateUserPrinters(userPrinter?: Array<UserPrinter>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5661
|
+
httpHeaderAccept?: undefined;
|
|
5662
|
+
context?: HttpContext;
|
|
5663
|
+
transferCache?: boolean;
|
|
5664
|
+
}): Observable<HttpResponse<any>>;
|
|
5665
|
+
updateUserPrinters(userPrinter?: Array<UserPrinter>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5666
|
+
httpHeaderAccept?: undefined;
|
|
5667
|
+
context?: HttpContext;
|
|
5668
|
+
transferCache?: boolean;
|
|
5669
|
+
}): Observable<HttpEvent<any>>;
|
|
5670
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserPrintersService, [null, { optional: true; }, { optional: true; }]>;
|
|
5671
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<UserPrintersService>;
|
|
5672
|
+
}
|
|
5673
|
+
|
|
5466
5674
|
/**
|
|
5467
5675
|
* Wms.API.Client
|
|
5468
5676
|
*
|
|
@@ -5800,7 +6008,7 @@ declare class WavesByPickReleaseIdService extends BaseService {
|
|
|
5800
6008
|
static ɵprov: i0.ɵɵInjectableDeclaration<WavesByPickReleaseIdService>;
|
|
5801
6009
|
}
|
|
5802
6010
|
|
|
5803
|
-
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)[];
|
|
6011
|
+
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)[];
|
|
5804
6012
|
|
|
5805
6013
|
/**
|
|
5806
6014
|
* Wms.API.Client
|
|
@@ -5985,5 +6193,5 @@ declare class ApiModule {
|
|
|
5985
6193
|
|
|
5986
6194
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
5987
6195
|
|
|
5988
|
-
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 };
|
|
5989
|
-
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 };
|
|
6196
|
+
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 };
|
|
6197
|
+
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 };
|