@sankhyalabs/core-docs 0.0.0-hotfix-ga-5531422.0 → 0.0.0-hotfix-rc-KB-68470.0
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 +158 -130
- package/classes/IDBRepository.md +22 -0
- package/classes/MaskFormatter.md +13 -9
- package/classes/ObjectUtils.md +95 -2
- package/classes/SelectionInfo.md +25 -11
- package/enumerations/ChangeOperation.md +4 -4
- package/enumerations/SelectionMode.md +2 -2
- package/globals.md +0 -1
- package/interfaces/DUActionInterceptor.md +1 -1
- package/interfaces/IRepository.md +18 -0
- package/interfaces/LoadDataRequest.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/namespaces/MaskFormatter/type-aliases/MaskCharacter.md +1 -1
- package/namespaces/MaskFormatter/variables/MaskCharacter.md +1 -1
- package/package.json +1 -1
- package/type-aliases/DataUnitEventOptions.md +1 -1
- package/classes/ServiceCanceledException.md +0 -193
@@ -1,193 +0,0 @@
|
|
1
|
-
[**@sankhyalabs/core**](../README.md) • **Docs**
|
2
|
-
|
3
|
-
***
|
4
|
-
|
5
|
-
[@sankhyalabs/core](../globals.md) / ServiceCanceledException
|
6
|
-
|
7
|
-
# Class: ServiceCanceledException
|
8
|
-
|
9
|
-
`ServiceCanceledException`: Exceção lançada quando ocorre o cancelamento de um serviço.
|
10
|
-
|
11
|
-
## Extends
|
12
|
-
|
13
|
-
- `Error`
|
14
|
-
|
15
|
-
## Constructors
|
16
|
-
|
17
|
-
### new ServiceCanceledException()
|
18
|
-
|
19
|
-
> **new ServiceCanceledException**(`title`, `message`, `errorCode`): [`ServiceCanceledException`](ServiceCanceledException.md)
|
20
|
-
|
21
|
-
#### Parameters
|
22
|
-
|
23
|
-
• **title**: `string`
|
24
|
-
|
25
|
-
• **message**: `string`
|
26
|
-
|
27
|
-
• **errorCode**: `string`= `""`
|
28
|
-
|
29
|
-
#### Returns
|
30
|
-
|
31
|
-
[`ServiceCanceledException`](ServiceCanceledException.md)
|
32
|
-
|
33
|
-
#### Overrides
|
34
|
-
|
35
|
-
`Error.constructor`
|
36
|
-
|
37
|
-
#### Source
|
38
|
-
|
39
|
-
src/exceptions/ServiceCanceledException.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/ServiceCanceledException.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/ServiceCanceledException.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/ServiceCanceledException.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/ServiceCanceledException.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
|