@sankhyalabs/core-docs 2.3.4 → 2.3.6
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 +57 -0
- package/classes/ApplicationContext.md +76 -0
- package/classes/ArrayUtils.md +89 -0
- package/classes/AuthorizedServiceCaller.md +76 -0
- package/classes/Change.md +168 -0
- package/classes/DataUnit.md +1394 -0
- package/classes/DataUnitAction.md +96 -0
- package/classes/DateUtils.md +190 -0
- package/classes/ElementIDUtils.md +243 -0
- package/classes/ErrorException.md +204 -0
- package/classes/ErrorTracking.md +54 -0
- package/classes/FloatingManager.md +384 -0
- package/classes/HttpProvider.md +96 -0
- package/classes/MaskFormatter-1.md +336 -0
- package/classes/NumberUtils.md +188 -0
- package/classes/ObjectUtils.md +81 -0
- package/classes/ReadyUtil.md +103 -0
- package/classes/RequestMetadata.md +84 -0
- package/classes/SkwHttpProvider.md +109 -0
- package/classes/StringUtils.md +410 -0
- package/classes/TimeFormatter.md +98 -0
- package/classes/UserAgentUtils.md +48 -0
- package/classes/WaitingChangeException.md +192 -0
- package/classes/WarningException.md +204 -0
- package/enums/Action.md +250 -0
- package/enums/ChangeOperation.md +52 -0
- package/enums/DataType.md +63 -0
- package/enums/DependencyType.md +41 -0
- package/enums/SortMode.md +30 -0
- package/enums/UserInterface.md +195 -0
- package/interfaces/DUActionInterceptor.md +29 -0
- package/interfaces/ExecutionContext.md +58 -0
- package/interfaces/FieldDescriptor.md +129 -0
- package/interfaces/Filter.md +41 -0
- package/interfaces/IElementIDInfo.md +30 -0
- package/interfaces/LoadDataRequest.md +63 -0
- package/interfaces/LoadDataResponse.md +30 -0
- package/interfaces/PageRequest.md +41 -0
- package/interfaces/PaginationInfo.md +63 -0
- package/interfaces/QuickFilter.md +30 -0
- package/interfaces/Record.md +40 -0
- package/interfaces/SavedRecord.md +55 -0
- package/interfaces/Sort.md +41 -0
- package/interfaces/SortingProvider.md +29 -0
- package/interfaces/UnitMetadata.md +41 -0
- package/interfaces/WaitingChange.md +41 -0
- package/modules/MaskFormatter.md +37 -0
- package/modules.md +63 -0
- package/package.json +1 -1
@@ -0,0 +1,63 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / LoadDataRequest
|
2
|
+
|
3
|
+
# Interface: LoadDataRequest
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Properties
|
8
|
+
|
9
|
+
- [filters](LoadDataRequest.md#filters)
|
10
|
+
- [limit](LoadDataRequest.md#limit)
|
11
|
+
- [offset](LoadDataRequest.md#offset)
|
12
|
+
- [quickFilter](LoadDataRequest.md#quickfilter)
|
13
|
+
- [sort](LoadDataRequest.md#sort)
|
14
|
+
|
15
|
+
## Properties
|
16
|
+
|
17
|
+
### filters
|
18
|
+
|
19
|
+
• `Optional` **filters**: [`Filter`](Filter.md)[]
|
20
|
+
|
21
|
+
#### Defined in
|
22
|
+
|
23
|
+
src/dataunit/loading/LoadDataRequest.ts:8
|
24
|
+
|
25
|
+
___
|
26
|
+
|
27
|
+
### limit
|
28
|
+
|
29
|
+
• `Optional` **limit**: `number`
|
30
|
+
|
31
|
+
#### Defined in
|
32
|
+
|
33
|
+
src/dataunit/loading/LoadDataRequest.ts:6
|
34
|
+
|
35
|
+
___
|
36
|
+
|
37
|
+
### offset
|
38
|
+
|
39
|
+
• `Optional` **offset**: `number`
|
40
|
+
|
41
|
+
#### Defined in
|
42
|
+
|
43
|
+
src/dataunit/loading/LoadDataRequest.ts:5
|
44
|
+
|
45
|
+
___
|
46
|
+
|
47
|
+
### quickFilter
|
48
|
+
|
49
|
+
• `Optional` **quickFilter**: [`QuickFilter`](QuickFilter.md)
|
50
|
+
|
51
|
+
#### Defined in
|
52
|
+
|
53
|
+
src/dataunit/loading/LoadDataRequest.ts:7
|
54
|
+
|
55
|
+
___
|
56
|
+
|
57
|
+
### sort
|
58
|
+
|
59
|
+
• `Optional` **sort**: [`Sort`](Sort.md)[]
|
60
|
+
|
61
|
+
#### Defined in
|
62
|
+
|
63
|
+
src/dataunit/loading/LoadDataRequest.ts:9
|
@@ -0,0 +1,30 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / LoadDataResponse
|
2
|
+
|
3
|
+
# Interface: LoadDataResponse
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Properties
|
8
|
+
|
9
|
+
- [paginationInfo](LoadDataResponse.md#paginationinfo)
|
10
|
+
- [records](LoadDataResponse.md#records)
|
11
|
+
|
12
|
+
## Properties
|
13
|
+
|
14
|
+
### paginationInfo
|
15
|
+
|
16
|
+
• `Optional` **paginationInfo**: [`PaginationInfo`](PaginationInfo.md)
|
17
|
+
|
18
|
+
#### Defined in
|
19
|
+
|
20
|
+
src/dataunit/loading/LoadDataResponse.ts:6
|
21
|
+
|
22
|
+
___
|
23
|
+
|
24
|
+
### records
|
25
|
+
|
26
|
+
• **records**: [`Record`](Record.md)[]
|
27
|
+
|
28
|
+
#### Defined in
|
29
|
+
|
30
|
+
src/dataunit/loading/LoadDataResponse.ts:5
|
@@ -0,0 +1,41 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / PageRequest
|
2
|
+
|
3
|
+
# Interface: PageRequest
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Properties
|
8
|
+
|
9
|
+
- [limit](PageRequest.md#limit)
|
10
|
+
- [offset](PageRequest.md#offset)
|
11
|
+
- [quickFilter](PageRequest.md#quickfilter)
|
12
|
+
|
13
|
+
## Properties
|
14
|
+
|
15
|
+
### limit
|
16
|
+
|
17
|
+
• **limit**: `number`
|
18
|
+
|
19
|
+
#### Defined in
|
20
|
+
|
21
|
+
src/dataunit/DataUnit.ts:621
|
22
|
+
|
23
|
+
___
|
24
|
+
|
25
|
+
### offset
|
26
|
+
|
27
|
+
• **offset**: `number`
|
28
|
+
|
29
|
+
#### Defined in
|
30
|
+
|
31
|
+
src/dataunit/DataUnit.ts:622
|
32
|
+
|
33
|
+
___
|
34
|
+
|
35
|
+
### quickFilter
|
36
|
+
|
37
|
+
• `Optional` **quickFilter**: [`QuickFilter`](QuickFilter.md)
|
38
|
+
|
39
|
+
#### Defined in
|
40
|
+
|
41
|
+
src/dataunit/DataUnit.ts:623
|
@@ -0,0 +1,63 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / PaginationInfo
|
2
|
+
|
3
|
+
# Interface: PaginationInfo
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Properties
|
8
|
+
|
9
|
+
- [currentPage](PaginationInfo.md#currentpage)
|
10
|
+
- [firstRecord](PaginationInfo.md#firstrecord)
|
11
|
+
- [hasMore](PaginationInfo.md#hasmore)
|
12
|
+
- [lastRecord](PaginationInfo.md#lastrecord)
|
13
|
+
- [total](PaginationInfo.md#total)
|
14
|
+
|
15
|
+
## Properties
|
16
|
+
|
17
|
+
### currentPage
|
18
|
+
|
19
|
+
• **currentPage**: `number`
|
20
|
+
|
21
|
+
#### Defined in
|
22
|
+
|
23
|
+
src/dataunit/loading/PaginationInfo.ts:3
|
24
|
+
|
25
|
+
___
|
26
|
+
|
27
|
+
### firstRecord
|
28
|
+
|
29
|
+
• **firstRecord**: `number`
|
30
|
+
|
31
|
+
#### Defined in
|
32
|
+
|
33
|
+
src/dataunit/loading/PaginationInfo.ts:4
|
34
|
+
|
35
|
+
___
|
36
|
+
|
37
|
+
### hasMore
|
38
|
+
|
39
|
+
• **hasMore**: `boolean`
|
40
|
+
|
41
|
+
#### Defined in
|
42
|
+
|
43
|
+
src/dataunit/loading/PaginationInfo.ts:7
|
44
|
+
|
45
|
+
___
|
46
|
+
|
47
|
+
### lastRecord
|
48
|
+
|
49
|
+
• **lastRecord**: `number`
|
50
|
+
|
51
|
+
#### Defined in
|
52
|
+
|
53
|
+
src/dataunit/loading/PaginationInfo.ts:5
|
54
|
+
|
55
|
+
___
|
56
|
+
|
57
|
+
### total
|
58
|
+
|
59
|
+
• **total**: `number`
|
60
|
+
|
61
|
+
#### Defined in
|
62
|
+
|
63
|
+
src/dataunit/loading/PaginationInfo.ts:6
|
@@ -0,0 +1,30 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / QuickFilter
|
2
|
+
|
3
|
+
# Interface: QuickFilter
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Properties
|
8
|
+
|
9
|
+
- [fields](QuickFilter.md#fields)
|
10
|
+
- [term](QuickFilter.md#term)
|
11
|
+
|
12
|
+
## Properties
|
13
|
+
|
14
|
+
### fields
|
15
|
+
|
16
|
+
• `Optional` **fields**: `string`[]
|
17
|
+
|
18
|
+
#### Defined in
|
19
|
+
|
20
|
+
src/dataunit/DataUnit.ts:628
|
21
|
+
|
22
|
+
___
|
23
|
+
|
24
|
+
### term
|
25
|
+
|
26
|
+
• **term**: `string`
|
27
|
+
|
28
|
+
#### Defined in
|
29
|
+
|
30
|
+
src/dataunit/DataUnit.ts:627
|
@@ -0,0 +1,40 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / Record
|
2
|
+
|
3
|
+
# Interface: Record
|
4
|
+
|
5
|
+
## Hierarchy
|
6
|
+
|
7
|
+
- **`Record`**
|
8
|
+
|
9
|
+
↳ [`SavedRecord`](SavedRecord.md)
|
10
|
+
|
11
|
+
## Indexable
|
12
|
+
|
13
|
+
▪ [key: `string`]: `any`
|
14
|
+
|
15
|
+
## Table of contents
|
16
|
+
|
17
|
+
### Properties
|
18
|
+
|
19
|
+
- [\_\_parent\_\_record\_\_id\_\_](Record.md#__parent__record__id__)
|
20
|
+
- [\_\_record\_\_id\_\_](Record.md#__record__id__)
|
21
|
+
|
22
|
+
## Properties
|
23
|
+
|
24
|
+
### \_\_parent\_\_record\_\_id\_\_
|
25
|
+
|
26
|
+
• `Optional` **\_\_parent\_\_record\_\_id\_\_**: `string`
|
27
|
+
|
28
|
+
#### Defined in
|
29
|
+
|
30
|
+
src/dataunit/DataUnit.ts:560
|
31
|
+
|
32
|
+
___
|
33
|
+
|
34
|
+
### \_\_record\_\_id\_\_
|
35
|
+
|
36
|
+
• **\_\_record\_\_id\_\_**: `string`
|
37
|
+
|
38
|
+
#### Defined in
|
39
|
+
|
40
|
+
src/dataunit/DataUnit.ts:559
|
@@ -0,0 +1,55 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / SavedRecord
|
2
|
+
|
3
|
+
# Interface: SavedRecord
|
4
|
+
|
5
|
+
## Hierarchy
|
6
|
+
|
7
|
+
- [`Record`](Record.md)
|
8
|
+
|
9
|
+
↳ **`SavedRecord`**
|
10
|
+
|
11
|
+
## Table of contents
|
12
|
+
|
13
|
+
### Properties
|
14
|
+
|
15
|
+
- [\_\_old\_\_id\_\_](SavedRecord.md#__old__id__)
|
16
|
+
- [\_\_parent\_\_record\_\_id\_\_](SavedRecord.md#__parent__record__id__)
|
17
|
+
- [\_\_record\_\_id\_\_](SavedRecord.md#__record__id__)
|
18
|
+
|
19
|
+
## Properties
|
20
|
+
|
21
|
+
### \_\_old\_\_id\_\_
|
22
|
+
|
23
|
+
• `Optional` **\_\_old\_\_id\_\_**: `string`
|
24
|
+
|
25
|
+
#### Defined in
|
26
|
+
|
27
|
+
src/dataunit/DataUnit.ts:565
|
28
|
+
|
29
|
+
___
|
30
|
+
|
31
|
+
### \_\_parent\_\_record\_\_id\_\_
|
32
|
+
|
33
|
+
• `Optional` **\_\_parent\_\_record\_\_id\_\_**: `string`
|
34
|
+
|
35
|
+
#### Inherited from
|
36
|
+
|
37
|
+
[Record](Record.md).[__parent__record__id__](Record.md#__parent__record__id__)
|
38
|
+
|
39
|
+
#### Defined in
|
40
|
+
|
41
|
+
src/dataunit/DataUnit.ts:560
|
42
|
+
|
43
|
+
___
|
44
|
+
|
45
|
+
### \_\_record\_\_id\_\_
|
46
|
+
|
47
|
+
• **\_\_record\_\_id\_\_**: `string`
|
48
|
+
|
49
|
+
#### Inherited from
|
50
|
+
|
51
|
+
[Record](Record.md).[__record__id__](Record.md#__record__id__)
|
52
|
+
|
53
|
+
#### Defined in
|
54
|
+
|
55
|
+
src/dataunit/DataUnit.ts:559
|
@@ -0,0 +1,41 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / Sort
|
2
|
+
|
3
|
+
# Interface: Sort
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Properties
|
8
|
+
|
9
|
+
- [dataType](Sort.md#datatype)
|
10
|
+
- [field](Sort.md#field)
|
11
|
+
- [mode](Sort.md#mode)
|
12
|
+
|
13
|
+
## Properties
|
14
|
+
|
15
|
+
### dataType
|
16
|
+
|
17
|
+
• **dataType**: [`DataType`](../enums/DataType.md)
|
18
|
+
|
19
|
+
#### Defined in
|
20
|
+
|
21
|
+
src/dataunit/metadata/UnitMetadata.ts:44
|
22
|
+
|
23
|
+
___
|
24
|
+
|
25
|
+
### field
|
26
|
+
|
27
|
+
• **field**: `string`
|
28
|
+
|
29
|
+
#### Defined in
|
30
|
+
|
31
|
+
src/dataunit/metadata/UnitMetadata.ts:42
|
32
|
+
|
33
|
+
___
|
34
|
+
|
35
|
+
### mode
|
36
|
+
|
37
|
+
• **mode**: [`SortMode`](../enums/SortMode.md)
|
38
|
+
|
39
|
+
#### Defined in
|
40
|
+
|
41
|
+
src/dataunit/metadata/UnitMetadata.ts:43
|
@@ -0,0 +1,29 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / SortingProvider
|
2
|
+
|
3
|
+
# Interface: SortingProvider
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Methods
|
8
|
+
|
9
|
+
- [getSort](SortingProvider.md#getsort)
|
10
|
+
|
11
|
+
## Methods
|
12
|
+
|
13
|
+
### getSort
|
14
|
+
|
15
|
+
▸ **getSort**(`dataUnit`): `undefined` \| [`Sort`](Sort.md)[]
|
16
|
+
|
17
|
+
#### Parameters
|
18
|
+
|
19
|
+
| Name | Type |
|
20
|
+
| :------ | :------ |
|
21
|
+
| `dataUnit` | `string` |
|
22
|
+
|
23
|
+
#### Returns
|
24
|
+
|
25
|
+
`undefined` \| [`Sort`](Sort.md)[]
|
26
|
+
|
27
|
+
#### Defined in
|
28
|
+
|
29
|
+
src/dataunit/metadata/UnitMetadata.ts:53
|
@@ -0,0 +1,41 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / UnitMetadata
|
2
|
+
|
3
|
+
# Interface: UnitMetadata
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Properties
|
8
|
+
|
9
|
+
- [fields](UnitMetadata.md#fields)
|
10
|
+
- [label](UnitMetadata.md#label)
|
11
|
+
- [name](UnitMetadata.md#name)
|
12
|
+
|
13
|
+
## Properties
|
14
|
+
|
15
|
+
### fields
|
16
|
+
|
17
|
+
• **fields**: [`FieldDescriptor`](FieldDescriptor.md)[]
|
18
|
+
|
19
|
+
#### Defined in
|
20
|
+
|
21
|
+
src/dataunit/metadata/UnitMetadata.ts:6
|
22
|
+
|
23
|
+
___
|
24
|
+
|
25
|
+
### label
|
26
|
+
|
27
|
+
• **label**: `string`
|
28
|
+
|
29
|
+
#### Defined in
|
30
|
+
|
31
|
+
src/dataunit/metadata/UnitMetadata.ts:5
|
32
|
+
|
33
|
+
___
|
34
|
+
|
35
|
+
### name
|
36
|
+
|
37
|
+
• **name**: `string`
|
38
|
+
|
39
|
+
#### Defined in
|
40
|
+
|
41
|
+
src/dataunit/metadata/UnitMetadata.ts:4
|
@@ -0,0 +1,41 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / WaitingChange
|
2
|
+
|
3
|
+
# Interface: WaitingChange
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Properties
|
8
|
+
|
9
|
+
- [blocking](WaitingChange.md#blocking)
|
10
|
+
- [promise](WaitingChange.md#promise)
|
11
|
+
- [waitmessage](WaitingChange.md#waitmessage)
|
12
|
+
|
13
|
+
## Properties
|
14
|
+
|
15
|
+
### blocking
|
16
|
+
|
17
|
+
• **blocking**: `boolean`
|
18
|
+
|
19
|
+
#### Defined in
|
20
|
+
|
21
|
+
src/dataunit/DataUnit.ts:616
|
22
|
+
|
23
|
+
___
|
24
|
+
|
25
|
+
### promise
|
26
|
+
|
27
|
+
• `Optional` **promise**: `Promise`<`any`\>
|
28
|
+
|
29
|
+
#### Defined in
|
30
|
+
|
31
|
+
src/dataunit/DataUnit.ts:617
|
32
|
+
|
33
|
+
___
|
34
|
+
|
35
|
+
### waitmessage
|
36
|
+
|
37
|
+
• **waitmessage**: `string`
|
38
|
+
|
39
|
+
#### Defined in
|
40
|
+
|
41
|
+
src/dataunit/DataUnit.ts:615
|
@@ -0,0 +1,37 @@
|
|
1
|
+
[@sankhyalabs/core](../README.md) / [Exports](../modules.md) / MaskFormatter
|
2
|
+
|
3
|
+
# Namespace: MaskFormatter
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Type Aliases
|
8
|
+
|
9
|
+
- [MaskCharacter](MaskFormatter.md#maskcharacter)
|
10
|
+
|
11
|
+
### Variables
|
12
|
+
|
13
|
+
- [MaskCharacter](MaskFormatter.md#maskcharacter-1)
|
14
|
+
|
15
|
+
## Type Aliases
|
16
|
+
|
17
|
+
### MaskCharacter
|
18
|
+
|
19
|
+
Ƭ **MaskCharacter**: `InstanceType`<typeof [`MaskCharacter`](MaskFormatter.md#maskcharacter)\>
|
20
|
+
|
21
|
+
#### Defined in
|
22
|
+
|
23
|
+
src/utils/MaskFormatter.ts:158
|
24
|
+
|
25
|
+
src/utils/MaskFormatter.ts:322
|
26
|
+
|
27
|
+
## Variables
|
28
|
+
|
29
|
+
### MaskCharacter
|
30
|
+
|
31
|
+
• **MaskCharacter**: typeof `__class`
|
32
|
+
|
33
|
+
#### Defined in
|
34
|
+
|
35
|
+
src/utils/MaskFormatter.ts:158
|
36
|
+
|
37
|
+
src/utils/MaskFormatter.ts:322
|
package/modules.md
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
[@sankhyalabs/core](README.md) / Exports
|
2
|
+
|
3
|
+
# @sankhyalabs/core
|
4
|
+
|
5
|
+
## Table of contents
|
6
|
+
|
7
|
+
### Namespaces
|
8
|
+
|
9
|
+
- [MaskFormatter](modules/MaskFormatter.md)
|
10
|
+
|
11
|
+
### Enumerations
|
12
|
+
|
13
|
+
- [Action](enums/Action.md)
|
14
|
+
- [ChangeOperation](enums/ChangeOperation.md)
|
15
|
+
- [DataType](enums/DataType.md)
|
16
|
+
- [DependencyType](enums/DependencyType.md)
|
17
|
+
- [SortMode](enums/SortMode.md)
|
18
|
+
- [UserInterface](enums/UserInterface.md)
|
19
|
+
|
20
|
+
### Classes
|
21
|
+
|
22
|
+
- [ApplicationContext](classes/ApplicationContext.md)
|
23
|
+
- [ArrayUtils](classes/ArrayUtils.md)
|
24
|
+
- [AuthorizedServiceCaller](classes/AuthorizedServiceCaller.md)
|
25
|
+
- [Change](classes/Change.md)
|
26
|
+
- [DataUnit](classes/DataUnit.md)
|
27
|
+
- [DataUnitAction](classes/DataUnitAction.md)
|
28
|
+
- [DateUtils](classes/DateUtils.md)
|
29
|
+
- [ElementIDUtils](classes/ElementIDUtils.md)
|
30
|
+
- [ErrorException](classes/ErrorException.md)
|
31
|
+
- [ErrorTracking](classes/ErrorTracking.md)
|
32
|
+
- [FloatingManager](classes/FloatingManager.md)
|
33
|
+
- [HttpProvider](classes/HttpProvider.md)
|
34
|
+
- [MaskFormatter](classes/MaskFormatter-1.md)
|
35
|
+
- [NumberUtils](classes/NumberUtils.md)
|
36
|
+
- [ObjectUtils](classes/ObjectUtils.md)
|
37
|
+
- [ReadyUtil](classes/ReadyUtil.md)
|
38
|
+
- [RequestMetadata](classes/RequestMetadata.md)
|
39
|
+
- [SkwHttpProvider](classes/SkwHttpProvider.md)
|
40
|
+
- [StringUtils](classes/StringUtils.md)
|
41
|
+
- [TimeFormatter](classes/TimeFormatter.md)
|
42
|
+
- [UserAgentUtils](classes/UserAgentUtils.md)
|
43
|
+
- [WaitingChangeException](classes/WaitingChangeException.md)
|
44
|
+
- [WarningException](classes/WarningException.md)
|
45
|
+
|
46
|
+
### Interfaces
|
47
|
+
|
48
|
+
- [DUActionInterceptor](interfaces/DUActionInterceptor.md)
|
49
|
+
- [ExecutionContext](interfaces/ExecutionContext.md)
|
50
|
+
- [FieldDescriptor](interfaces/FieldDescriptor.md)
|
51
|
+
- [Filter](interfaces/Filter.md)
|
52
|
+
- [IElementIDInfo](interfaces/IElementIDInfo.md)
|
53
|
+
- [LoadDataRequest](interfaces/LoadDataRequest.md)
|
54
|
+
- [LoadDataResponse](interfaces/LoadDataResponse.md)
|
55
|
+
- [PageRequest](interfaces/PageRequest.md)
|
56
|
+
- [PaginationInfo](interfaces/PaginationInfo.md)
|
57
|
+
- [QuickFilter](interfaces/QuickFilter.md)
|
58
|
+
- [Record](interfaces/Record.md)
|
59
|
+
- [SavedRecord](interfaces/SavedRecord.md)
|
60
|
+
- [Sort](interfaces/Sort.md)
|
61
|
+
- [SortingProvider](interfaces/SortingProvider.md)
|
62
|
+
- [UnitMetadata](interfaces/UnitMetadata.md)
|
63
|
+
- [WaitingChange](interfaces/WaitingChange.md)
|