ets-fe-ng-sdk 20.3.7 → 20.3.8
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/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/index.d.ts +25 -25
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3208,7 +3208,7 @@ declare class UtilityService<TEnvironment extends SDKEnvironment = SDKEnvironmen
|
|
|
3208
3208
|
* @returns Array containing value, validators, and async validators
|
|
3209
3209
|
* @template T - Type of the form control value
|
|
3210
3210
|
*/
|
|
3211
|
-
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (
|
|
3211
|
+
formControl: <T>(value?: T | null, validatorOrOpts?: ValidatorFn | ValidatorFn[] | FormControlOptions, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[]) => (ValidatorFn | AsyncValidatorFn | ValidatorFn[] | AsyncValidatorFn[] | FormControlOptions | T)[];
|
|
3212
3212
|
/**
|
|
3213
3213
|
* Navigates back to the previous page using Angular's Location service
|
|
3214
3214
|
*/
|
|
@@ -4463,8 +4463,8 @@ declare class ApiService {
|
|
|
4463
4463
|
* @param extras Extra configurations for the request
|
|
4464
4464
|
* @returns Observable of type T
|
|
4465
4465
|
*/
|
|
4466
|
-
patch<T = any>(route: string, body?: any, extras?:
|
|
4467
|
-
optionsHandler: (extras?:
|
|
4466
|
+
patch<T = any>(route: string, body?: any, extras?: IAPIConfig): Observable<T>;
|
|
4467
|
+
optionsHandler: (extras?: IAPIConfig) => {};
|
|
4468
4468
|
/**
|
|
4469
4469
|
* Performs a POST request
|
|
4470
4470
|
* @param route API endpoint
|
|
@@ -4472,7 +4472,7 @@ declare class ApiService {
|
|
|
4472
4472
|
* @param extras Extra configurations for the request
|
|
4473
4473
|
* @returns Observable of type T
|
|
4474
4474
|
*/
|
|
4475
|
-
post<T = any>(route: string, body?: any, extras?:
|
|
4475
|
+
post<T = any>(route: string, body?: any, extras?: IAPIConfig): Observable<T>;
|
|
4476
4476
|
/**
|
|
4477
4477
|
* Performs a POST request with FormData
|
|
4478
4478
|
* @param route API endpoint
|
|
@@ -4480,7 +4480,7 @@ declare class ApiService {
|
|
|
4480
4480
|
* @param extras Extra configurations for the request
|
|
4481
4481
|
* @returns Observable of type T
|
|
4482
4482
|
*/
|
|
4483
|
-
postFile<T = any>(route: string, body: FormData, extras?:
|
|
4483
|
+
postFile<T = any>(route: string, body: FormData, extras?: IAPIConfig): Observable<T>;
|
|
4484
4484
|
/**
|
|
4485
4485
|
* Performs a POST request with FormData and endorsement header
|
|
4486
4486
|
* @param route API endpoint
|
|
@@ -4495,7 +4495,7 @@ declare class ApiService {
|
|
|
4495
4495
|
* @param extras Extra configurations for the request
|
|
4496
4496
|
* @returns Observable of string
|
|
4497
4497
|
*/
|
|
4498
|
-
postString(route: string, body?: any, extras?:
|
|
4498
|
+
postString(route: string, body?: any, extras?: IAPIConfig): Observable<string>;
|
|
4499
4499
|
/**
|
|
4500
4500
|
* Performs a POST request with text content type and local caching
|
|
4501
4501
|
* @param route API endpoint
|
|
@@ -4510,7 +4510,7 @@ declare class ApiService {
|
|
|
4510
4510
|
* @param extras Extra configurations for the request
|
|
4511
4511
|
* @returns
|
|
4512
4512
|
*/
|
|
4513
|
-
get: <T = any>(route: string, parameters?: IObjectLiteral, extras?:
|
|
4513
|
+
get: <T = any>(route: string, parameters?: IObjectLiteral, extras?: IAPIConfig) => Observable<T>;
|
|
4514
4514
|
/**
|
|
4515
4515
|
* Fetches code data and sorts it
|
|
4516
4516
|
* @param route API endpoint
|
|
@@ -4526,7 +4526,7 @@ declare class ApiService {
|
|
|
4526
4526
|
*/
|
|
4527
4527
|
getText: <T = string>(route: string, parameters?: {
|
|
4528
4528
|
[field: string]: string | number | boolean;
|
|
4529
|
-
}, extras?:
|
|
4529
|
+
}, extras?: IAPIConfig) => Observable<T>;
|
|
4530
4530
|
/**
|
|
4531
4531
|
* Performs a GET request for file download
|
|
4532
4532
|
* @param route API endpoint
|
|
@@ -4536,7 +4536,7 @@ declare class ApiService {
|
|
|
4536
4536
|
*/
|
|
4537
4537
|
getFile: <T = string>(route: string, parameters?: {
|
|
4538
4538
|
[field: string]: string | number | boolean;
|
|
4539
|
-
}, extras?:
|
|
4539
|
+
}, extras?: IAPIConfig) => Observable<T>;
|
|
4540
4540
|
/**
|
|
4541
4541
|
* Performs a GET request with a request body
|
|
4542
4542
|
* @param route API endpoint
|
|
@@ -4544,7 +4544,7 @@ declare class ApiService {
|
|
|
4544
4544
|
* @param extras Extra configurations for the request
|
|
4545
4545
|
* @returns Observable of type T
|
|
4546
4546
|
*/
|
|
4547
|
-
getWithBody: <T = any>(route: string, body?: any, extras?:
|
|
4547
|
+
getWithBody: <T = any>(route: string, body?: any, extras?: IAPIConfig) => Observable<T>;
|
|
4548
4548
|
/**
|
|
4549
4549
|
* Gets data from local cache or fetches it if not available
|
|
4550
4550
|
* @param route API endpoint
|
|
@@ -4552,7 +4552,7 @@ declare class ApiService {
|
|
|
4552
4552
|
* @param extras Extra configurations for the request
|
|
4553
4553
|
* @returns Observable of type T
|
|
4554
4554
|
*/
|
|
4555
|
-
getFromlocal: <T = any>(route: string, parameters?: Object, extras?:
|
|
4555
|
+
getFromlocal: <T = any>(route: string, parameters?: Object, extras?: IAPIConfig) => Observable<T>;
|
|
4556
4556
|
/**
|
|
4557
4557
|
* Gets data with local caching - returns cached data first, then updates with fresh data
|
|
4558
4558
|
* @param route API endpoint
|
|
@@ -4560,7 +4560,7 @@ declare class ApiService {
|
|
|
4560
4560
|
* @param extras Extra configurations for the request
|
|
4561
4561
|
* @returns Observable of type T
|
|
4562
4562
|
*/
|
|
4563
|
-
getWithLocalCache: <T = any>(route: string, parameters?: Object, extras?:
|
|
4563
|
+
getWithLocalCache: <T = any>(route: string, parameters?: Object, extras?: IAPIConfig) => Observable<T>;
|
|
4564
4564
|
/**
|
|
4565
4565
|
* Gets data from memory cache or fetches it if not available
|
|
4566
4566
|
* @param route API endpoint
|
|
@@ -4568,7 +4568,7 @@ declare class ApiService {
|
|
|
4568
4568
|
* @param extras Extra configurations for the request
|
|
4569
4569
|
* @returns Observable of type T
|
|
4570
4570
|
*/
|
|
4571
|
-
getFromMemory: <T>(route: string, parameters?: Object, extras?:
|
|
4571
|
+
getFromMemory: <T>(route: string, parameters?: Object, extras?: IAPIConfig) => Observable<T>;
|
|
4572
4572
|
/**
|
|
4573
4573
|
* Converts an object to URL query parameters
|
|
4574
4574
|
* @param parameters Object to convert
|
|
@@ -4582,7 +4582,7 @@ declare class ApiService {
|
|
|
4582
4582
|
* @param extras Extra configurations for the request
|
|
4583
4583
|
* @returns Observable of type T
|
|
4584
4584
|
*/
|
|
4585
|
-
put<T = any>(route: string, body?: any, extras?:
|
|
4585
|
+
put<T = any>(route: string, body?: any, extras?: IAPIConfig): Observable<T>;
|
|
4586
4586
|
/**
|
|
4587
4587
|
* Performs a PUT request with FormData
|
|
4588
4588
|
* @param route API endpoint
|
|
@@ -4604,7 +4604,7 @@ declare class ApiService {
|
|
|
4604
4604
|
* @param extras Extra configurations for the request
|
|
4605
4605
|
* @returns Observable of type T
|
|
4606
4606
|
*/
|
|
4607
|
-
delete: <T = any>(route: string, extras?:
|
|
4607
|
+
delete: <T = any>(route: string, extras?: IAPIConfig) => Observable<any>;
|
|
4608
4608
|
/**
|
|
4609
4609
|
* Performs a DELETE request with a request body
|
|
4610
4610
|
* @param route API endpoint
|
|
@@ -4612,14 +4612,14 @@ declare class ApiService {
|
|
|
4612
4612
|
* @param extras Extra configurations for the request
|
|
4613
4613
|
* @returns Observable of type T
|
|
4614
4614
|
*/
|
|
4615
|
-
deleteWithBody: <T = any>(route: string, body?: any, extras?:
|
|
4615
|
+
deleteWithBody: <T = any>(route: string, body?: any, extras?: IAPIConfig) => Observable<any>;
|
|
4616
4616
|
/**
|
|
4617
4617
|
* Performs a DELETE request with text response type
|
|
4618
4618
|
* @param route API endpoint
|
|
4619
4619
|
* @param extras Extra configurations for the request
|
|
4620
4620
|
* @returns Observable of string
|
|
4621
4621
|
*/
|
|
4622
|
-
deleteText: (route: string, extras?:
|
|
4622
|
+
deleteText: (route: string, extras?: IAPIConfig) => Observable<any>;
|
|
4623
4623
|
/**
|
|
4624
4624
|
* Sorts an array of objects by code property
|
|
4625
4625
|
* @param data Array to sort
|
|
@@ -4635,7 +4635,7 @@ declare class ApiService {
|
|
|
4635
4635
|
/**
|
|
4636
4636
|
* Interface for extra request configurations
|
|
4637
4637
|
*/
|
|
4638
|
-
interface
|
|
4638
|
+
interface IAPIConfig {
|
|
4639
4639
|
/**
|
|
4640
4640
|
* Specify whether to use the endorsement header
|
|
4641
4641
|
*/
|
|
@@ -5660,7 +5660,7 @@ declare class BtnComponent implements OnInit {
|
|
|
5660
5660
|
/** CSS class for the button */
|
|
5661
5661
|
readonly _mclass: _angular_core.WritableSignal<string>;
|
|
5662
5662
|
/** HTML button type (submit, button, reset) */
|
|
5663
|
-
readonly actionType: _angular_core.InputSignal<"submit" | "
|
|
5663
|
+
readonly actionType: _angular_core.InputSignal<"submit" | "reset" | "button">;
|
|
5664
5664
|
/** Enables animation effect on the button */
|
|
5665
5665
|
readonly animate: _angular_core.InputSignal<boolean>;
|
|
5666
5666
|
/** Excludes this button from logging when true */
|
|
@@ -7983,7 +7983,7 @@ declare class InfoDialogComponent implements OnInit {
|
|
|
7983
7983
|
* @param status Status code (0=danger, 1=success, 2=info, 3=warning)
|
|
7984
7984
|
* @returns CSS class name corresponding to the status
|
|
7985
7985
|
*/
|
|
7986
|
-
cls: (status?: 0 | 1 | 2 | 3) => "
|
|
7986
|
+
cls: (status?: 0 | 1 | 2 | 3) => "" | "info" | "danger" | "success" | "warning";
|
|
7987
7987
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoDialogComponent, never>;
|
|
7988
7988
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
7989
7989
|
}
|
|
@@ -8860,7 +8860,7 @@ declare class ResizeGridPipe implements PipeTransform {
|
|
|
8860
8860
|
*/
|
|
8861
8861
|
declare class IndexCompLayoutComponent {
|
|
8862
8862
|
/** Number of columns in the grid layout */
|
|
8863
|
-
readonly grid: InputSignal<
|
|
8863
|
+
readonly grid: InputSignal<2 | 1 | 4 | 3 | 5 | 6 | "auto">;
|
|
8864
8864
|
/** Whether to show the action buttons */
|
|
8865
8865
|
readonly showButtons: InputSignal<boolean>;
|
|
8866
8866
|
/** Whether to hide the clone button */
|
|
@@ -10496,7 +10496,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
|
|
|
10496
10496
|
readonly form: FormGroup<{
|
|
10497
10497
|
pageNumber: FormControl<number>;
|
|
10498
10498
|
sortBy: FormControl<keyof TItem>;
|
|
10499
|
-
sortDirection: FormControl<"" | "
|
|
10499
|
+
sortDirection: FormControl<"" | "DESC" | "ASC">;
|
|
10500
10500
|
pageSize: FormControl<number>;
|
|
10501
10501
|
}>;
|
|
10502
10502
|
/**
|
|
@@ -10505,7 +10505,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
|
|
|
10505
10505
|
readonly allQueryData: _angular_core.Signal<{
|
|
10506
10506
|
pageNumber: number;
|
|
10507
10507
|
sortBy: keyof TItem;
|
|
10508
|
-
sortDirection: "" | "
|
|
10508
|
+
sortDirection: "" | "DESC" | "ASC";
|
|
10509
10509
|
pageSize: number;
|
|
10510
10510
|
}>;
|
|
10511
10511
|
/**
|
|
@@ -10514,7 +10514,7 @@ declare class TableHttpsComponent<TItem = any> extends TableBaseComponent<TItem>
|
|
|
10514
10514
|
readonly formValue: _angular_core.Signal<{
|
|
10515
10515
|
pageNumber: number;
|
|
10516
10516
|
sortBy: keyof TItem;
|
|
10517
|
-
sortDirection: "" | "
|
|
10517
|
+
sortDirection: "" | "DESC" | "ASC";
|
|
10518
10518
|
pageSize: number;
|
|
10519
10519
|
}>;
|
|
10520
10520
|
/**
|
|
@@ -14526,4 +14526,4 @@ declare class WebUserResetPasswordComponent {
|
|
|
14526
14526
|
}
|
|
14527
14527
|
|
|
14528
14528
|
export { AddItemComponent, ApiService, AppRouteBase, AppRouteService, AppRouteState, AppService, ArraySplitter, AuthenticationInterceptorService, AutocompleteComponent, AutocompleteModule, AutocompleteService, AutocompleteTdRfComponent, BaseFormGenerator, BaseNativeEventListenerDirective, BlinkingBlocksComponent, BouncingBallComponent, Btn, BtnComponent, BtnLg, BtnLgComponent, BtnLinkComponent, BtnModule, BtnService, ButtonComponent, CETSInput, CacheService, CacheUpdaterService, CardComponent, CardComponent as CardModule, CodeTitleDescPipe, CommafyNumberDirective, ButtonComponent as ComponentsModule, Config, ConfirmDialogComponent, ConfirmDialogComponent as ConfirmDialogModule, Constant, CustomDatePipe, DEFAULT_TIMEOUT, DateInputComponent, Day, DayHourMinInputComponent, DebouncerService, DesktopClassDirective, DetailsBtnComponent, DetailsBtnComponent as DetailsBtnModule, DirectivesModule, DocumentsNameDisplayComponent, DocumentsNameDisplayComponent as DocumentsNameDisplayModule, DragDropFileUploadDirective, EETSPageBtnID, ELanguage, EMenuLocation, EMenuType, EPageType, ESubSystem, ESystem, ESystemBusLine, ETSCheckForUpdateService, ETSConfirmDialogService, ETSExtraPagesModule, ETSFKVP, ETSForms, ETSHandleUnrecoverableStateService, ETSKVP, ETSLogUpdateService, ETSLoggerModule, ETSMenuItem, ETSMenuItemDivider, ETSPageNotFoundComponent, ETSPromptUpdateService, ETSReactiveFormInputService, ETSResetModule, ETSResponsivenessDirectiveModule, ETSRobotModule, ETSServiceWorkerService, ETSStorageService, ETSThemeService, ETSTimeoutTesterModule, ETSVersionModule, ETSWindowSecurityService, EUA, EVFunctions, EValidationType, EditableTextCaseComponent, EditableTextCaseComponent as EditableTextCaseModule, SDKEnvironment as Environment, EqualChildrenDirective, ErrorMessagePipe, ErrorReporterService, ExportTableComponent, ExportTableComponent as ExportTableModule, FCInput, FadingBarsComponent, FadingCirclesComponent, FieldToLabelPipe, FieldsToDisplayComponent, FileUploadComponent, FilterArrayByStringPipe, FilterArrayPipe, FilterFormArrayControlPipe, FilterFormArrayGroupPipe, FilterOptions, FindItemComponent, FormErrorComponent, FormGeneratedValueComponent, FormGeneratorComponent, FormGeneratorComponent as FormGeneratorModule, FormGeneratorService, FormInvalidClassDirective, FormInvalidClassPipe, FormLinkComponent, FormLinkComponent as FormLinkModule, FormSchemaToTableColumnsPipe, FormTabHeadersComponent, FormTabHeadersComponent as FormTabHeadersModule, FormValuePipe, FunctionCaller, FunctionCaller1, FunctionCaller2, FunctionCaller3, GenderPipe, GetColFormattedEPipe, GetColFormattedPipe, GetHeadersPipe, GetRawFieldsPipe, GetValueLabel, GlobalErrorHandlerService, HasFormValuePipe, HasValuePipe, HideDesktopDirective, HideMobileDirective, HtmlerService, HttpListCaller, HttpListCaller1, HttpListCaller2, IdlerComponent, IdlerService, ImageLoaderDirective, ImageUpload, IndexCompLayoutComponent, InfoDialogComponent, InfoDialogModule, InfoDialogService, InfoIconComponent, InfoIconComponent as InfoIconModule, InputBasicComponent, InputClassPipe, InputComponent, InputComponents, InputControlComponent, InputFormatDirective, InputFormatService, InputLabelComponent, InputModule, InputNGModelComponent, InputNGModelComponent as InputNGModelModule, InputPipesModule, InputService, InputTD_RFComponent, InputTableComponent, InputTableService, IntegerOnlyDirective, IsClonePage, IsShowPage, LabelComponent, LabelComponent as LabelModule, Lbl, ListOptionFinderPipe, LoaderComponent, LoaderComponent as LoaderModule, LoaderService, LocalCacheService, Log, LoggerComponent, LoggerInterceptorService, LoggerRoutingModule, LoggerService, MHrefDirective, MobileClassDirective, ModalBodyDirective, ModalComponent, ModalComponents, ModalFooterDirective, ModalFormComponent, ModalFormComponent as ModalFormModule, ModalHeaderComponent, ModalHeaderComponent as ModalHeaderModule, ModalComponent as ModalModule, MouseClickListenerDirective, MouseEnterListenerDirective, MouseLeaveListenerDirective, MrouterLinkirective, NELEventName, NarrationHistoryCompComponent, NativeEventListenerDirectives, NegativeNumberOnlyDirective, NumberFormatService, NumberPipe, ObjectToArrayPipe, ObjectToLabelsPipe, OnClickDirective, OptionLabeller, OptionerPipe, OptionsFormatter, PSDirective, PageCenterBodyComponent, PageLoader, PageLoaderService, PageModal, PageService, PageTemplateComponent, PageTemplateComponent as PageTemplateModule, PageToComponentComponent, PageToComponentDirective, PageToComponentComponent as PageToComponentModule, PageToComponentService, PaginatorComponent, PaginatorPipe, PhoneNumberComponent, PhoneNumberService, PointerMoveListenerDirective, prototypes_d as Prototypes, RefresherPipe, RemoveUsedOptionsPipe, RemoveUsedOptionsReactivePipe, ReplaceAllPipe, RequestLoggerInterceptorService, RequestTimeoutInterceptorService, ResizeGridPipe, ResponsiveValPipe, ResponsivenessDirective, ReverseTranslateSingleNLPipe, RichTextEditorComponent, RichTextEditorRFComponent, RingRipplesComponent, RoundPipe, RouteItem, RowActionsComponent, RowActionsComponent as RowActionsModule, BaseEffect as SDKBaseEffect, BaseFacadeService as SDKBaseFacadeService, BaseService as SDKBaseService, SDKTranslateNoLoaderPipe, SDKTranslatePipe, SDKTranslateSingleNoLoaderPipe, SDKTranslateSinglePipe, SaverClass, SaverService, SecondsToTimePipe, SharedModule, SortPipe, SpinnerComponent, StorageClass, StrConcatenatorPipe, SvgIconComponent, SvgIconService, TableBaseComponent, TableCol, TableHttpsComponent, TableInputClassFunctionPipe, TableInputComponent, TableInputRowComponent, TablePipesModule, TablePlainComponent, TableService, TableToStringPipe, TextAreaModalComponent, TextAreaModalService, TextCase1Component, TextCase2Component, TextCase2ForObject, TextCaseInputComponent, TextCaseService, TextComponent, ToAnyArrayPipe, ToAnyPipe, ToggleInputFormComponent, TranslatePipeModule, TranslationService, TranslatorCaseComponent, TranslatorDirective, TrimPipe, TrimTextPipe, TyperPipe, UserActivity, UserActivityService, UtilityPipesModule, UtilityService, ValidationMessageComponent, ValidationMessageNgmodelComponent, ValidationMsg, Validator, ValueFormatterPipe, ValueOrXPipe, VersionService, VerticalNavComponent, ViewFormButtonsComponent, ViewFormButtonsComponent as ViewFormButtonsModule, WatermarkComponent, WebUserAuthenticationService, WebUserForgotPasswordComponent, WebUserLoginComponent, WebUserResetPasswordComponent, WebcamMediaComponent, XOrYPipe, YearMonthTdRfComponent, _SharedModule, configForms, configPatterns, configValidationMessages, environment, pageErrorRouter, webUserAuthenticationGuard, webUserAuthenticationInterceptor, widthOffsetPipe };
|
|
14529
|
-
export type { BtnGroup, BtnType, CellType, CustomValidationError, ETimeType, IAutoCompleteOption, IBaseFormSchema, IBtn, ICode, ICodeDescription, ICodeTitle, IConfigImages, ICountry, IDocMetadata, IETSMenuItem, IETSMenuItemBase, IETSMenuItemRaw, IETSMenuItemRawBase, IFile_Metadata, IFindItemShownFields, IFormGeneratorConfig, IFormOptions, IFormSchema, IFormSchema2, IGetQuery, IInfoDialogBtn, IInputConfig, IInputTableScheme, IKVP, ILbl, ILog, IMktDescription, IObjectLiteral, IOption, IPageErrorConfig, IPageState, IResponse, IRowOption, ISearchFormSchema, ISearchResponse, ISearchResponse2, IServiceFunction, IStrictFormGroup, ISystem, ITab, ITableCol, ITableInputBtn, ITableInputFormSchema, ITableName, ITableSearchFunc, ITableSearchResp, ITextCase2, IToggleOption, IToggleRow, ITranslatorConfig, ITypeDescription, IUADeletionPayload, IUASearchObj, IUASearchResponse, IUploadSubmissionResp, IUserActivity, IValidationMessage, IValidationResp, IValueLabel, IWebUser, IWebcamMedia, IconType, ImageType, InputSubType, InputType, KeyOfType, NELEvent, NELEventHandler, NELMouseEventHandler, NELPointerEventHandler, NELQuery, OptionLabelType, RefCat, SVGIconType, SortType, Status, SubCategory, TypeOf, ValueType };
|
|
14529
|
+
export type { BtnGroup, BtnType, CellType, CustomValidationError, ETimeType, IAPIConfig, IAutoCompleteOption, IBaseFormSchema, IBtn, ICode, ICodeDescription, ICodeTitle, IConfigImages, ICountry, IDocMetadata, IETSMenuItem, IETSMenuItemBase, IETSMenuItemRaw, IETSMenuItemRawBase, IFile_Metadata, IFindItemShownFields, IFormGeneratorConfig, IFormOptions, IFormSchema, IFormSchema2, IGetQuery, IInfoDialogBtn, IInputConfig, IInputTableScheme, IKVP, ILbl, ILog, IMktDescription, IObjectLiteral, IOption, IPageErrorConfig, IPageState, IResponse, IRowOption, ISearchFormSchema, ISearchResponse, ISearchResponse2, IServiceFunction, IStrictFormGroup, ISystem, ITab, ITableCol, ITableInputBtn, ITableInputFormSchema, ITableName, ITableSearchFunc, ITableSearchResp, ITextCase2, IToggleOption, IToggleRow, ITranslatorConfig, ITypeDescription, IUADeletionPayload, IUASearchObj, IUASearchResponse, IUploadSubmissionResp, IUserActivity, IValidationMessage, IValidationResp, IValueLabel, IWebUser, IWebcamMedia, IconType, ImageType, InputSubType, InputType, KeyOfType, NELEvent, NELEventHandler, NELMouseEventHandler, NELPointerEventHandler, NELQuery, OptionLabelType, RefCat, SVGIconType, SortType, Status, SubCategory, TypeOf, ValueType };
|