@sankhyalabs/core-docs 0.0.0-hotfix-rc-KB-74140.5 → 0.0.0-hotfix-rc-kb-74481.1
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/classes/Change.md +11 -11
- package/classes/DataUnit.md +136 -144
- package/classes/SelectionInfo.md +12 -12
- package/enumerations/ChangeOperation.md +4 -4
- package/enumerations/SelectionMode.md +2 -2
- package/globals.md +0 -3
- package/interfaces/DUActionInterceptor.md +1 -1
- package/interfaces/PageRequest.md +3 -3
- package/interfaces/QuickFilter.md +3 -3
- package/interfaces/Record.md +4 -4
- package/interfaces/SavedRecord.md +5 -5
- package/interfaces/WaitingChange.md +3 -3
- package/package.json +1 -1
- package/type-aliases/DataUnitEventOptions.md +1 -1
- package/classes/LockManager.md +0 -191
- package/classes/SilentException.md +0 -193
- package/enumerations/LockManagerOperation.md +0 -21
@@ -1,193 +0,0 @@
|
|
1
|
-
[**@sankhyalabs/core**](../README.md) • **Docs**
|
2
|
-
|
3
|
-
***
|
4
|
-
|
5
|
-
[@sankhyalabs/core](../globals.md) / SilentException
|
6
|
-
|
7
|
-
# Class: SilentException
|
8
|
-
|
9
|
-
`SilentException`: Exceção lançada quando uma exception silenciosa é.
|
10
|
-
|
11
|
-
## Extends
|
12
|
-
|
13
|
-
- `Error`
|
14
|
-
|
15
|
-
## Constructors
|
16
|
-
|
17
|
-
### new SilentException()
|
18
|
-
|
19
|
-
> **new SilentException**(`title`, `message`, `errorCode`): [`SilentException`](SilentException.md)
|
20
|
-
|
21
|
-
#### Parameters
|
22
|
-
|
23
|
-
• **title**: `string`= `""`
|
24
|
-
|
25
|
-
• **message**: `string`= `""`
|
26
|
-
|
27
|
-
• **errorCode**: `string`= `""`
|
28
|
-
|
29
|
-
#### Returns
|
30
|
-
|
31
|
-
[`SilentException`](SilentException.md)
|
32
|
-
|
33
|
-
#### Overrides
|
34
|
-
|
35
|
-
`Error.constructor`
|
36
|
-
|
37
|
-
#### Source
|
38
|
-
|
39
|
-
src/exceptions/SilentException.ts:18
|
40
|
-
|
41
|
-
## Properties
|
42
|
-
|
43
|
-
### cause?
|
44
|
-
|
45
|
-
> `optional` **cause**: `unknown`
|
46
|
-
|
47
|
-
#### Inherited from
|
48
|
-
|
49
|
-
`Error.cause`
|
50
|
-
|
51
|
-
#### Source
|
52
|
-
|
53
|
-
node\_modules/typescript/lib/lib.es2022.error.d.ts:26
|
54
|
-
|
55
|
-
***
|
56
|
-
|
57
|
-
### errorCode
|
58
|
-
|
59
|
-
> **errorCode**: `string`
|
60
|
-
|
61
|
-
Código do erro, indica o erro disparado pelo backend.
|
62
|
-
|
63
|
-
#### Source
|
64
|
-
|
65
|
-
src/exceptions/SilentException.ts:16
|
66
|
-
|
67
|
-
***
|
68
|
-
|
69
|
-
### message
|
70
|
-
|
71
|
-
> **message**: `string`
|
72
|
-
|
73
|
-
Descrição do erro.
|
74
|
-
|
75
|
-
#### Overrides
|
76
|
-
|
77
|
-
`Error.message`
|
78
|
-
|
79
|
-
#### Source
|
80
|
-
|
81
|
-
src/exceptions/SilentException.ts:13
|
82
|
-
|
83
|
-
***
|
84
|
-
|
85
|
-
### name
|
86
|
-
|
87
|
-
> **name**: `string`
|
88
|
-
|
89
|
-
Nome da exceção.
|
90
|
-
|
91
|
-
#### Overrides
|
92
|
-
|
93
|
-
`Error.name`
|
94
|
-
|
95
|
-
#### Source
|
96
|
-
|
97
|
-
src/exceptions/SilentException.ts:7
|
98
|
-
|
99
|
-
***
|
100
|
-
|
101
|
-
### stack?
|
102
|
-
|
103
|
-
> `optional` **stack**: `string`
|
104
|
-
|
105
|
-
#### Inherited from
|
106
|
-
|
107
|
-
`Error.stack`
|
108
|
-
|
109
|
-
#### Source
|
110
|
-
|
111
|
-
node\_modules/typescript/lib/lib.es5.d.ts:1055
|
112
|
-
|
113
|
-
***
|
114
|
-
|
115
|
-
### title
|
116
|
-
|
117
|
-
> **title**: `string`
|
118
|
-
|
119
|
-
Titulo do erro.
|
120
|
-
|
121
|
-
#### Source
|
122
|
-
|
123
|
-
src/exceptions/SilentException.ts:10
|
124
|
-
|
125
|
-
***
|
126
|
-
|
127
|
-
### prepareStackTrace()?
|
128
|
-
|
129
|
-
> `static` `optional` **prepareStackTrace**: (`err`, `stackTraces`) => `any`
|
130
|
-
|
131
|
-
Optional override for formatting stack traces
|
132
|
-
|
133
|
-
#### See
|
134
|
-
|
135
|
-
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
|
136
|
-
|
137
|
-
#### Parameters
|
138
|
-
|
139
|
-
• **err**: `Error`
|
140
|
-
|
141
|
-
• **stackTraces**: `CallSite`[]
|
142
|
-
|
143
|
-
#### Returns
|
144
|
-
|
145
|
-
`any`
|
146
|
-
|
147
|
-
#### Inherited from
|
148
|
-
|
149
|
-
`Error.prepareStackTrace`
|
150
|
-
|
151
|
-
#### Source
|
152
|
-
|
153
|
-
node\_modules/@types/node/globals.d.ts:27
|
154
|
-
|
155
|
-
***
|
156
|
-
|
157
|
-
### stackTraceLimit
|
158
|
-
|
159
|
-
> `static` **stackTraceLimit**: `number`
|
160
|
-
|
161
|
-
#### Inherited from
|
162
|
-
|
163
|
-
`Error.stackTraceLimit`
|
164
|
-
|
165
|
-
#### Source
|
166
|
-
|
167
|
-
node\_modules/@types/node/globals.d.ts:29
|
168
|
-
|
169
|
-
## Methods
|
170
|
-
|
171
|
-
### captureStackTrace()
|
172
|
-
|
173
|
-
> `static` **captureStackTrace**(`targetObject`, `constructorOpt`?): `void`
|
174
|
-
|
175
|
-
Create .stack property on a target object
|
176
|
-
|
177
|
-
#### Parameters
|
178
|
-
|
179
|
-
• **targetObject**: `object`
|
180
|
-
|
181
|
-
• **constructorOpt?**: `Function`
|
182
|
-
|
183
|
-
#### Returns
|
184
|
-
|
185
|
-
`void`
|
186
|
-
|
187
|
-
#### Inherited from
|
188
|
-
|
189
|
-
`Error.captureStackTrace`
|
190
|
-
|
191
|
-
#### Source
|
192
|
-
|
193
|
-
node\_modules/@types/node/globals.d.ts:20
|
@@ -1,21 +0,0 @@
|
|
1
|
-
[**@sankhyalabs/core**](../README.md) • **Docs**
|
2
|
-
|
3
|
-
***
|
4
|
-
|
5
|
-
[@sankhyalabs/core](../globals.md) / LockManagerOperation
|
6
|
-
|
7
|
-
# Enumeration: LockManagerOperation
|
8
|
-
|
9
|
-
Define os tipos de operação que o locker pode controlar
|
10
|
-
|
11
|
-
## Enumeration Members
|
12
|
-
|
13
|
-
### TASKBAR\_CLICK
|
14
|
-
|
15
|
-
> **TASKBAR\_CLICK**: `"taskbar_click"`
|
16
|
-
|
17
|
-
Operação de lock utilizada para controlar cliques nos botoes da taskbar.
|
18
|
-
|
19
|
-
#### Source
|
20
|
-
|
21
|
-
src/utils/LockManager.ts:9
|