@twin.org/core 0.0.1-next.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/LICENSE +201 -0
- package/README.md +29 -0
- package/dist/cjs/index.cjs +4221 -0
- package/dist/esm/index.mjs +4184 -0
- package/dist/types/encoding/base32.d.ts +18 -0
- package/dist/types/encoding/base64.d.ts +24 -0
- package/dist/types/encoding/base64Url.d.ts +18 -0
- package/dist/types/errors/alreadyExistsError.d.ts +18 -0
- package/dist/types/errors/baseError.d.ts +103 -0
- package/dist/types/errors/conflictError.d.ts +19 -0
- package/dist/types/errors/generalError.d.ts +20 -0
- package/dist/types/errors/guardError.d.ts +19 -0
- package/dist/types/errors/notFoundError.d.ts +18 -0
- package/dist/types/errors/notImplementedError.d.ts +16 -0
- package/dist/types/errors/notSupportedError.d.ts +17 -0
- package/dist/types/errors/unauthorizedError.d.ts +17 -0
- package/dist/types/errors/unprocessableError.d.ts +20 -0
- package/dist/types/errors/validationError.d.ts +18 -0
- package/dist/types/factories/componentFactory.d.ts +6 -0
- package/dist/types/factories/factory.d.ts +67 -0
- package/dist/types/helpers/arrayHelper.d.ts +12 -0
- package/dist/types/helpers/errorHelper.d.ts +24 -0
- package/dist/types/helpers/filenameHelper.d.ts +11 -0
- package/dist/types/helpers/hexHelper.d.ts +30 -0
- package/dist/types/helpers/jsonHelper.d.ts +29 -0
- package/dist/types/helpers/objectHelper.d.ts +74 -0
- package/dist/types/helpers/randomHelper.d.ts +11 -0
- package/dist/types/helpers/stringHelper.d.ts +90 -0
- package/dist/types/index.d.ts +46 -0
- package/dist/types/models/IComponent.d.ts +29 -0
- package/dist/types/models/IError.d.ts +31 -0
- package/dist/types/models/IKeyValue.d.ts +13 -0
- package/dist/types/models/ILabelledValue.d.ts +13 -0
- package/dist/types/models/ILocale.d.ts +13 -0
- package/dist/types/models/ILocaleDictionary.d.ts +6 -0
- package/dist/types/models/ILocalesIndex.d.ts +10 -0
- package/dist/types/models/IPatchOperation.d.ts +21 -0
- package/dist/types/models/IUrlParts.d.ts +29 -0
- package/dist/types/models/IValidationFailure.d.ts +23 -0
- package/dist/types/models/compressionType.d.ts +17 -0
- package/dist/types/types/bitString.d.ts +41 -0
- package/dist/types/types/url.d.ts +56 -0
- package/dist/types/types/urn.d.ts +93 -0
- package/dist/types/utils/asyncCache.d.ts +33 -0
- package/dist/types/utils/coerce.d.ts +61 -0
- package/dist/types/utils/compression.d.ts +20 -0
- package/dist/types/utils/converter.d.ts +85 -0
- package/dist/types/utils/guards.d.ts +190 -0
- package/dist/types/utils/i18n.d.ts +81 -0
- package/dist/types/utils/is.d.ts +205 -0
- package/dist/types/utils/validation.d.ts +245 -0
- package/docs/changelog.md +5 -0
- package/docs/examples.md +1 -0
- package/docs/reference/classes/AlreadyExistsError.md +375 -0
- package/docs/reference/classes/ArrayHelper.md +37 -0
- package/docs/reference/classes/AsyncCache.md +117 -0
- package/docs/reference/classes/Base32.md +57 -0
- package/docs/reference/classes/Base64.md +74 -0
- package/docs/reference/classes/Base64Url.md +54 -0
- package/docs/reference/classes/BaseError.md +344 -0
- package/docs/reference/classes/BitString.md +123 -0
- package/docs/reference/classes/Coerce.md +209 -0
- package/docs/reference/classes/Compression.md +61 -0
- package/docs/reference/classes/ConflictError.md +379 -0
- package/docs/reference/classes/Converter.md +285 -0
- package/docs/reference/classes/ErrorHelper.md +73 -0
- package/docs/reference/classes/Factory.md +221 -0
- package/docs/reference/classes/FilenameHelper.md +33 -0
- package/docs/reference/classes/GeneralError.md +375 -0
- package/docs/reference/classes/GuardError.md +379 -0
- package/docs/reference/classes/Guards.md +711 -0
- package/docs/reference/classes/HexHelper.md +97 -0
- package/docs/reference/classes/I18n.md +237 -0
- package/docs/reference/classes/Is.md +693 -0
- package/docs/reference/classes/JsonHelper.md +92 -0
- package/docs/reference/classes/NotFoundError.md +375 -0
- package/docs/reference/classes/NotImplementedError.md +367 -0
- package/docs/reference/classes/NotSupportedError.md +371 -0
- package/docs/reference/classes/ObjectHelper.md +287 -0
- package/docs/reference/classes/RandomHelper.md +33 -0
- package/docs/reference/classes/StringHelper.md +270 -0
- package/docs/reference/classes/UnauthorizedError.md +371 -0
- package/docs/reference/classes/UnprocessableError.md +375 -0
- package/docs/reference/classes/Url.md +167 -0
- package/docs/reference/classes/Urn.md +295 -0
- package/docs/reference/classes/Validation.md +821 -0
- package/docs/reference/classes/ValidationError.md +371 -0
- package/docs/reference/index.md +60 -0
- package/docs/reference/interfaces/IComponent.md +79 -0
- package/docs/reference/interfaces/IError.md +55 -0
- package/docs/reference/interfaces/IKeyValue.md +23 -0
- package/docs/reference/interfaces/ILabelledValue.md +23 -0
- package/docs/reference/interfaces/ILocale.md +19 -0
- package/docs/reference/interfaces/ILocaleDictionary.md +7 -0
- package/docs/reference/interfaces/ILocalesIndex.md +11 -0
- package/docs/reference/interfaces/IPatchOperation.md +35 -0
- package/docs/reference/interfaces/IUrlParts.md +51 -0
- package/docs/reference/interfaces/IValidationFailure.md +39 -0
- package/docs/reference/type-aliases/CompressionType.md +5 -0
- package/docs/reference/variables/ComponentFactory.md +5 -0
- package/docs/reference/variables/CompressionType.md +19 -0
- package/locales/en.json +98 -0
- package/package.json +65 -0
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
# Class: ValidationError
|
|
2
|
+
|
|
3
|
+
Class to handle errors which are triggered by entity validation.
|
|
4
|
+
|
|
5
|
+
## Extends
|
|
6
|
+
|
|
7
|
+
- [`BaseError`](BaseError.md)
|
|
8
|
+
|
|
9
|
+
## Constructors
|
|
10
|
+
|
|
11
|
+
### new ValidationError()
|
|
12
|
+
|
|
13
|
+
> **new ValidationError**(`source`, `validationObject`, `validationFailures`): [`ValidationError`](ValidationError.md)
|
|
14
|
+
|
|
15
|
+
Create a new instance of ValidationError.
|
|
16
|
+
|
|
17
|
+
#### Parameters
|
|
18
|
+
|
|
19
|
+
• **source**: `string`
|
|
20
|
+
|
|
21
|
+
The source of the error.
|
|
22
|
+
|
|
23
|
+
• **validationObject**: `string`
|
|
24
|
+
|
|
25
|
+
The object that failed validation.
|
|
26
|
+
|
|
27
|
+
• **validationFailures**: [`IValidationFailure`](../interfaces/IValidationFailure.md)[]
|
|
28
|
+
|
|
29
|
+
The validation failures.
|
|
30
|
+
|
|
31
|
+
#### Returns
|
|
32
|
+
|
|
33
|
+
[`ValidationError`](ValidationError.md)
|
|
34
|
+
|
|
35
|
+
#### Overrides
|
|
36
|
+
|
|
37
|
+
[`BaseError`](BaseError.md).[`constructor`](BaseError.md#constructors)
|
|
38
|
+
|
|
39
|
+
## Properties
|
|
40
|
+
|
|
41
|
+
### source?
|
|
42
|
+
|
|
43
|
+
> `optional` **source**: `string`
|
|
44
|
+
|
|
45
|
+
The source of the error.
|
|
46
|
+
|
|
47
|
+
#### Inherited from
|
|
48
|
+
|
|
49
|
+
[`BaseError`](BaseError.md).[`source`](BaseError.md#source)
|
|
50
|
+
|
|
51
|
+
***
|
|
52
|
+
|
|
53
|
+
### properties?
|
|
54
|
+
|
|
55
|
+
> `optional` **properties**: `object`
|
|
56
|
+
|
|
57
|
+
Any additional information for the error.
|
|
58
|
+
|
|
59
|
+
#### Index Signature
|
|
60
|
+
|
|
61
|
+
\[`id`: `string`\]: `unknown`
|
|
62
|
+
|
|
63
|
+
#### Inherited from
|
|
64
|
+
|
|
65
|
+
[`BaseError`](BaseError.md).[`properties`](BaseError.md#properties)
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
### inner?
|
|
70
|
+
|
|
71
|
+
> `optional` **inner**: [`IError`](../interfaces/IError.md)
|
|
72
|
+
|
|
73
|
+
The inner error if there was one.
|
|
74
|
+
|
|
75
|
+
#### Inherited from
|
|
76
|
+
|
|
77
|
+
[`BaseError`](BaseError.md).[`inner`](BaseError.md#inner)
|
|
78
|
+
|
|
79
|
+
***
|
|
80
|
+
|
|
81
|
+
### CLASS\_NAME
|
|
82
|
+
|
|
83
|
+
> `readonly` `static` **CLASS\_NAME**: `string`
|
|
84
|
+
|
|
85
|
+
Runtime name for the class.s
|
|
86
|
+
|
|
87
|
+
## Methods
|
|
88
|
+
|
|
89
|
+
### fromError()
|
|
90
|
+
|
|
91
|
+
> `static` **fromError**(`err`): [`BaseError`](BaseError.md)
|
|
92
|
+
|
|
93
|
+
Construct an error from an existing one.
|
|
94
|
+
|
|
95
|
+
#### Parameters
|
|
96
|
+
|
|
97
|
+
• **err**: `unknown`
|
|
98
|
+
|
|
99
|
+
The existing error.
|
|
100
|
+
|
|
101
|
+
#### Returns
|
|
102
|
+
|
|
103
|
+
[`BaseError`](BaseError.md)
|
|
104
|
+
|
|
105
|
+
The new instance.
|
|
106
|
+
|
|
107
|
+
#### Inherited from
|
|
108
|
+
|
|
109
|
+
[`BaseError`](BaseError.md).[`fromError`](BaseError.md#fromerror)
|
|
110
|
+
|
|
111
|
+
***
|
|
112
|
+
|
|
113
|
+
### flatten()
|
|
114
|
+
|
|
115
|
+
> `static` **flatten**(`err`): [`IError`](../interfaces/IError.md)[]
|
|
116
|
+
|
|
117
|
+
Flatten an error tree.
|
|
118
|
+
|
|
119
|
+
#### Parameters
|
|
120
|
+
|
|
121
|
+
• **err**: `unknown`
|
|
122
|
+
|
|
123
|
+
The starting error.
|
|
124
|
+
|
|
125
|
+
#### Returns
|
|
126
|
+
|
|
127
|
+
[`IError`](../interfaces/IError.md)[]
|
|
128
|
+
|
|
129
|
+
The list of all internal errors.
|
|
130
|
+
|
|
131
|
+
#### Inherited from
|
|
132
|
+
|
|
133
|
+
[`BaseError`](BaseError.md).[`flatten`](BaseError.md#flatten)
|
|
134
|
+
|
|
135
|
+
***
|
|
136
|
+
|
|
137
|
+
### expand()
|
|
138
|
+
|
|
139
|
+
> `static` **expand**(`errors`): `undefined` \| [`IError`](../interfaces/IError.md)
|
|
140
|
+
|
|
141
|
+
Expand an error tree.
|
|
142
|
+
|
|
143
|
+
#### Parameters
|
|
144
|
+
|
|
145
|
+
• **errors**: `undefined` \| [`IError`](../interfaces/IError.md)[]
|
|
146
|
+
|
|
147
|
+
The list of errors to expand.
|
|
148
|
+
|
|
149
|
+
#### Returns
|
|
150
|
+
|
|
151
|
+
`undefined` \| [`IError`](../interfaces/IError.md)
|
|
152
|
+
|
|
153
|
+
The first level error.
|
|
154
|
+
|
|
155
|
+
#### Inherited from
|
|
156
|
+
|
|
157
|
+
[`BaseError`](BaseError.md).[`expand`](BaseError.md#expand)
|
|
158
|
+
|
|
159
|
+
***
|
|
160
|
+
|
|
161
|
+
### isErrorName()
|
|
162
|
+
|
|
163
|
+
> `static` **isErrorName**(`error`, `name`): `error is BaseError`
|
|
164
|
+
|
|
165
|
+
Test to see if the error has the specified error name.
|
|
166
|
+
|
|
167
|
+
#### Parameters
|
|
168
|
+
|
|
169
|
+
• **error**: `unknown`
|
|
170
|
+
|
|
171
|
+
The error to test.
|
|
172
|
+
|
|
173
|
+
• **name**: `string` \| `RegExp`
|
|
174
|
+
|
|
175
|
+
The name to check for.
|
|
176
|
+
|
|
177
|
+
#### Returns
|
|
178
|
+
|
|
179
|
+
`error is BaseError`
|
|
180
|
+
|
|
181
|
+
True if the error has the name.
|
|
182
|
+
|
|
183
|
+
#### Inherited from
|
|
184
|
+
|
|
185
|
+
[`BaseError`](BaseError.md).[`isErrorName`](BaseError.md#iserrorname)
|
|
186
|
+
|
|
187
|
+
***
|
|
188
|
+
|
|
189
|
+
### isErrorMessage()
|
|
190
|
+
|
|
191
|
+
> `static` **isErrorMessage**(`error`, `message`): `error is BaseError`
|
|
192
|
+
|
|
193
|
+
Test to see if the error has the specified error message.
|
|
194
|
+
|
|
195
|
+
#### Parameters
|
|
196
|
+
|
|
197
|
+
• **error**: `unknown`
|
|
198
|
+
|
|
199
|
+
The error to test.
|
|
200
|
+
|
|
201
|
+
• **message**: `string` \| `RegExp`
|
|
202
|
+
|
|
203
|
+
The message to check for.
|
|
204
|
+
|
|
205
|
+
#### Returns
|
|
206
|
+
|
|
207
|
+
`error is BaseError`
|
|
208
|
+
|
|
209
|
+
True if the error has the name.
|
|
210
|
+
|
|
211
|
+
#### Inherited from
|
|
212
|
+
|
|
213
|
+
[`BaseError`](BaseError.md).[`isErrorMessage`](BaseError.md#iserrormessage)
|
|
214
|
+
|
|
215
|
+
***
|
|
216
|
+
|
|
217
|
+
### isErrorCode()
|
|
218
|
+
|
|
219
|
+
> `static` **isErrorCode**(`error`, `code`): `boolean`
|
|
220
|
+
|
|
221
|
+
Test to see if the error has the specified error code.
|
|
222
|
+
|
|
223
|
+
#### Parameters
|
|
224
|
+
|
|
225
|
+
• **error**: `unknown`
|
|
226
|
+
|
|
227
|
+
The error to test.
|
|
228
|
+
|
|
229
|
+
• **code**: `string` \| `RegExp`
|
|
230
|
+
|
|
231
|
+
The code to check for.
|
|
232
|
+
|
|
233
|
+
#### Returns
|
|
234
|
+
|
|
235
|
+
`boolean`
|
|
236
|
+
|
|
237
|
+
True if the error has the code.
|
|
238
|
+
|
|
239
|
+
#### Inherited from
|
|
240
|
+
|
|
241
|
+
[`BaseError`](BaseError.md).[`isErrorCode`](BaseError.md#iserrorcode)
|
|
242
|
+
|
|
243
|
+
***
|
|
244
|
+
|
|
245
|
+
### someErrorName()
|
|
246
|
+
|
|
247
|
+
> `static` **someErrorName**(`error`, `name`): `error is BaseError`
|
|
248
|
+
|
|
249
|
+
Test to see if any of the errors or children have the given error name.
|
|
250
|
+
|
|
251
|
+
#### Parameters
|
|
252
|
+
|
|
253
|
+
• **error**: `unknown`
|
|
254
|
+
|
|
255
|
+
The error to test.
|
|
256
|
+
|
|
257
|
+
• **name**: `string` \| `RegExp`
|
|
258
|
+
|
|
259
|
+
The name to check for.
|
|
260
|
+
|
|
261
|
+
#### Returns
|
|
262
|
+
|
|
263
|
+
`error is BaseError`
|
|
264
|
+
|
|
265
|
+
True if the error has the name.
|
|
266
|
+
|
|
267
|
+
#### Inherited from
|
|
268
|
+
|
|
269
|
+
[`BaseError`](BaseError.md).[`someErrorName`](BaseError.md#someerrorname)
|
|
270
|
+
|
|
271
|
+
***
|
|
272
|
+
|
|
273
|
+
### someErrorMessage()
|
|
274
|
+
|
|
275
|
+
> `static` **someErrorMessage**(`error`, `message`): `error is BaseError`
|
|
276
|
+
|
|
277
|
+
Test to see if any of the errors or children have the given error message.
|
|
278
|
+
|
|
279
|
+
#### Parameters
|
|
280
|
+
|
|
281
|
+
• **error**: `unknown`
|
|
282
|
+
|
|
283
|
+
The error to test.
|
|
284
|
+
|
|
285
|
+
• **message**: `string` \| `RegExp`
|
|
286
|
+
|
|
287
|
+
The message to check for.
|
|
288
|
+
|
|
289
|
+
#### Returns
|
|
290
|
+
|
|
291
|
+
`error is BaseError`
|
|
292
|
+
|
|
293
|
+
True if the error has the name.
|
|
294
|
+
|
|
295
|
+
#### Inherited from
|
|
296
|
+
|
|
297
|
+
[`BaseError`](BaseError.md).[`someErrorMessage`](BaseError.md#someerrormessage)
|
|
298
|
+
|
|
299
|
+
***
|
|
300
|
+
|
|
301
|
+
### someErrorClass()
|
|
302
|
+
|
|
303
|
+
> `static` **someErrorClass**(`error`, `cls`): `error is BaseError`
|
|
304
|
+
|
|
305
|
+
Test to see if any of the errors or children are from a specific class.
|
|
306
|
+
|
|
307
|
+
#### Parameters
|
|
308
|
+
|
|
309
|
+
• **error**: `unknown`
|
|
310
|
+
|
|
311
|
+
The error to test.
|
|
312
|
+
|
|
313
|
+
• **cls**: `string`
|
|
314
|
+
|
|
315
|
+
The class to check for.
|
|
316
|
+
|
|
317
|
+
#### Returns
|
|
318
|
+
|
|
319
|
+
`error is BaseError`
|
|
320
|
+
|
|
321
|
+
True if the error has the specific class.
|
|
322
|
+
|
|
323
|
+
#### Inherited from
|
|
324
|
+
|
|
325
|
+
[`BaseError`](BaseError.md).[`someErrorClass`](BaseError.md#someerrorclass)
|
|
326
|
+
|
|
327
|
+
***
|
|
328
|
+
|
|
329
|
+
### someErrorCode()
|
|
330
|
+
|
|
331
|
+
> `static` **someErrorCode**(`error`, `code`): `error is BaseError`
|
|
332
|
+
|
|
333
|
+
Test to see if any of the errors or children have the given error code.
|
|
334
|
+
|
|
335
|
+
#### Parameters
|
|
336
|
+
|
|
337
|
+
• **error**: `unknown`
|
|
338
|
+
|
|
339
|
+
The error to test.
|
|
340
|
+
|
|
341
|
+
• **code**: `string` \| `RegExp`
|
|
342
|
+
|
|
343
|
+
The code to check for.
|
|
344
|
+
|
|
345
|
+
#### Returns
|
|
346
|
+
|
|
347
|
+
`error is BaseError`
|
|
348
|
+
|
|
349
|
+
True if the error has the name.
|
|
350
|
+
|
|
351
|
+
#### Inherited from
|
|
352
|
+
|
|
353
|
+
[`BaseError`](BaseError.md).[`someErrorCode`](BaseError.md#someerrorcode)
|
|
354
|
+
|
|
355
|
+
***
|
|
356
|
+
|
|
357
|
+
### toJsonObject()
|
|
358
|
+
|
|
359
|
+
> **toJsonObject**(): [`IError`](../interfaces/IError.md)
|
|
360
|
+
|
|
361
|
+
Serialize the error to the error model.
|
|
362
|
+
|
|
363
|
+
#### Returns
|
|
364
|
+
|
|
365
|
+
[`IError`](../interfaces/IError.md)
|
|
366
|
+
|
|
367
|
+
The error model.
|
|
368
|
+
|
|
369
|
+
#### Inherited from
|
|
370
|
+
|
|
371
|
+
[`BaseError`](BaseError.md).[`toJsonObject`](BaseError.md#tojsonobject)
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# @twin.org/core
|
|
2
|
+
|
|
3
|
+
## Classes
|
|
4
|
+
|
|
5
|
+
- [Base32](classes/Base32.md)
|
|
6
|
+
- [Base64](classes/Base64.md)
|
|
7
|
+
- [Base64Url](classes/Base64Url.md)
|
|
8
|
+
- [AlreadyExistsError](classes/AlreadyExistsError.md)
|
|
9
|
+
- [BaseError](classes/BaseError.md)
|
|
10
|
+
- [ConflictError](classes/ConflictError.md)
|
|
11
|
+
- [GeneralError](classes/GeneralError.md)
|
|
12
|
+
- [GuardError](classes/GuardError.md)
|
|
13
|
+
- [NotFoundError](classes/NotFoundError.md)
|
|
14
|
+
- [NotImplementedError](classes/NotImplementedError.md)
|
|
15
|
+
- [NotSupportedError](classes/NotSupportedError.md)
|
|
16
|
+
- [UnauthorizedError](classes/UnauthorizedError.md)
|
|
17
|
+
- [UnprocessableError](classes/UnprocessableError.md)
|
|
18
|
+
- [ValidationError](classes/ValidationError.md)
|
|
19
|
+
- [Factory](classes/Factory.md)
|
|
20
|
+
- [ArrayHelper](classes/ArrayHelper.md)
|
|
21
|
+
- [ErrorHelper](classes/ErrorHelper.md)
|
|
22
|
+
- [FilenameHelper](classes/FilenameHelper.md)
|
|
23
|
+
- [HexHelper](classes/HexHelper.md)
|
|
24
|
+
- [JsonHelper](classes/JsonHelper.md)
|
|
25
|
+
- [ObjectHelper](classes/ObjectHelper.md)
|
|
26
|
+
- [RandomHelper](classes/RandomHelper.md)
|
|
27
|
+
- [StringHelper](classes/StringHelper.md)
|
|
28
|
+
- [BitString](classes/BitString.md)
|
|
29
|
+
- [Url](classes/Url.md)
|
|
30
|
+
- [Urn](classes/Urn.md)
|
|
31
|
+
- [AsyncCache](classes/AsyncCache.md)
|
|
32
|
+
- [Coerce](classes/Coerce.md)
|
|
33
|
+
- [Compression](classes/Compression.md)
|
|
34
|
+
- [Converter](classes/Converter.md)
|
|
35
|
+
- [Guards](classes/Guards.md)
|
|
36
|
+
- [I18n](classes/I18n.md)
|
|
37
|
+
- [Is](classes/Is.md)
|
|
38
|
+
- [Validation](classes/Validation.md)
|
|
39
|
+
|
|
40
|
+
## Interfaces
|
|
41
|
+
|
|
42
|
+
- [IComponent](interfaces/IComponent.md)
|
|
43
|
+
- [IError](interfaces/IError.md)
|
|
44
|
+
- [IKeyValue](interfaces/IKeyValue.md)
|
|
45
|
+
- [ILabelledValue](interfaces/ILabelledValue.md)
|
|
46
|
+
- [ILocale](interfaces/ILocale.md)
|
|
47
|
+
- [ILocaleDictionary](interfaces/ILocaleDictionary.md)
|
|
48
|
+
- [ILocalesIndex](interfaces/ILocalesIndex.md)
|
|
49
|
+
- [IPatchOperation](interfaces/IPatchOperation.md)
|
|
50
|
+
- [IUrlParts](interfaces/IUrlParts.md)
|
|
51
|
+
- [IValidationFailure](interfaces/IValidationFailure.md)
|
|
52
|
+
|
|
53
|
+
## Type Aliases
|
|
54
|
+
|
|
55
|
+
- [CompressionType](type-aliases/CompressionType.md)
|
|
56
|
+
|
|
57
|
+
## Variables
|
|
58
|
+
|
|
59
|
+
- [ComponentFactory](variables/ComponentFactory.md)
|
|
60
|
+
- [CompressionType](variables/CompressionType.md)
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Interface: IComponent
|
|
2
|
+
|
|
3
|
+
Interface describing a component which can be bootstrapped, started and stopped.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### CLASS\_NAME
|
|
8
|
+
|
|
9
|
+
> `readonly` **CLASS\_NAME**: `string`
|
|
10
|
+
|
|
11
|
+
The name of the component.
|
|
12
|
+
|
|
13
|
+
## Methods
|
|
14
|
+
|
|
15
|
+
### bootstrap()?
|
|
16
|
+
|
|
17
|
+
> `optional` **bootstrap**(`nodeLoggingConnectorType`?): `Promise`\<`boolean`\>
|
|
18
|
+
|
|
19
|
+
Bootstrap the component by creating and initializing any resources it needs.
|
|
20
|
+
|
|
21
|
+
#### Parameters
|
|
22
|
+
|
|
23
|
+
• **nodeLoggingConnectorType?**: `string`
|
|
24
|
+
|
|
25
|
+
The node logging connector type, defaults to "node-logging".
|
|
26
|
+
|
|
27
|
+
#### Returns
|
|
28
|
+
|
|
29
|
+
`Promise`\<`boolean`\>
|
|
30
|
+
|
|
31
|
+
True if the bootstrapping process was successful.
|
|
32
|
+
|
|
33
|
+
***
|
|
34
|
+
|
|
35
|
+
### start()?
|
|
36
|
+
|
|
37
|
+
> `optional` **start**(`nodeIdentity`, `nodeLoggingConnectorType`?): `Promise`\<`void`\>
|
|
38
|
+
|
|
39
|
+
The component needs to be started when the node is initialized.
|
|
40
|
+
|
|
41
|
+
#### Parameters
|
|
42
|
+
|
|
43
|
+
• **nodeIdentity**: `string`
|
|
44
|
+
|
|
45
|
+
The identity of the node starting the component.
|
|
46
|
+
|
|
47
|
+
• **nodeLoggingConnectorType?**: `string`
|
|
48
|
+
|
|
49
|
+
The node logging connector type, defaults to "node-logging".
|
|
50
|
+
|
|
51
|
+
#### Returns
|
|
52
|
+
|
|
53
|
+
`Promise`\<`void`\>
|
|
54
|
+
|
|
55
|
+
Nothing.
|
|
56
|
+
|
|
57
|
+
***
|
|
58
|
+
|
|
59
|
+
### stop()?
|
|
60
|
+
|
|
61
|
+
> `optional` **stop**(`nodeIdentity`, `nodeLoggingConnectorType`?): `Promise`\<`void`\>
|
|
62
|
+
|
|
63
|
+
The component needs to be stopped when the node is closed.
|
|
64
|
+
|
|
65
|
+
#### Parameters
|
|
66
|
+
|
|
67
|
+
• **nodeIdentity**: `string`
|
|
68
|
+
|
|
69
|
+
The identity of the node stopping the component.
|
|
70
|
+
|
|
71
|
+
• **nodeLoggingConnectorType?**: `string`
|
|
72
|
+
|
|
73
|
+
The node logging connector type, defaults to "node-logging".
|
|
74
|
+
|
|
75
|
+
#### Returns
|
|
76
|
+
|
|
77
|
+
`Promise`\<`void`\>
|
|
78
|
+
|
|
79
|
+
Nothing.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Interface: IError
|
|
2
|
+
|
|
3
|
+
Model to describe serialized error.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### name
|
|
8
|
+
|
|
9
|
+
> **name**: `string`
|
|
10
|
+
|
|
11
|
+
The name for the error.
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### message
|
|
16
|
+
|
|
17
|
+
> **message**: `string`
|
|
18
|
+
|
|
19
|
+
The message for the error.
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### source?
|
|
24
|
+
|
|
25
|
+
> `optional` **source**: `string`
|
|
26
|
+
|
|
27
|
+
The source of the error.
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### properties?
|
|
32
|
+
|
|
33
|
+
> `optional` **properties**: `object`
|
|
34
|
+
|
|
35
|
+
Any additional information for the error.
|
|
36
|
+
|
|
37
|
+
#### Index Signature
|
|
38
|
+
|
|
39
|
+
\[`id`: `string`\]: `unknown`
|
|
40
|
+
|
|
41
|
+
***
|
|
42
|
+
|
|
43
|
+
### stack?
|
|
44
|
+
|
|
45
|
+
> `optional` **stack**: `string`
|
|
46
|
+
|
|
47
|
+
The stack trace for the error.
|
|
48
|
+
|
|
49
|
+
***
|
|
50
|
+
|
|
51
|
+
### inner?
|
|
52
|
+
|
|
53
|
+
> `optional` **inner**: [`IError`](IError.md)
|
|
54
|
+
|
|
55
|
+
The inner error if there was one.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Interface: IKeyValue\<T\>
|
|
2
|
+
|
|
3
|
+
Interface describing a key/value pair.
|
|
4
|
+
|
|
5
|
+
## Type Parameters
|
|
6
|
+
|
|
7
|
+
• **T**
|
|
8
|
+
|
|
9
|
+
## Properties
|
|
10
|
+
|
|
11
|
+
### key
|
|
12
|
+
|
|
13
|
+
> **key**: `string`
|
|
14
|
+
|
|
15
|
+
The key for the item.
|
|
16
|
+
|
|
17
|
+
***
|
|
18
|
+
|
|
19
|
+
### value
|
|
20
|
+
|
|
21
|
+
> **value**: `T`
|
|
22
|
+
|
|
23
|
+
The value for the item.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Interface: ILabelledValue\<T\>
|
|
2
|
+
|
|
3
|
+
Interface describing a label/value pair.
|
|
4
|
+
|
|
5
|
+
## Type Parameters
|
|
6
|
+
|
|
7
|
+
• **T**
|
|
8
|
+
|
|
9
|
+
## Properties
|
|
10
|
+
|
|
11
|
+
### label
|
|
12
|
+
|
|
13
|
+
> **label**: `string`
|
|
14
|
+
|
|
15
|
+
The label for the item.
|
|
16
|
+
|
|
17
|
+
***
|
|
18
|
+
|
|
19
|
+
### value
|
|
20
|
+
|
|
21
|
+
> **value**: `T`
|
|
22
|
+
|
|
23
|
+
The value for the item.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Interface: IPatchOperation
|
|
2
|
+
|
|
3
|
+
Interface describing a patch operation to add a property.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### op
|
|
8
|
+
|
|
9
|
+
> **op**: `"replace"` \| `"add"` \| `"remove"` \| `"copy"` \| `"move"` \| `"test"`
|
|
10
|
+
|
|
11
|
+
The operation that was performed on the item.
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### path
|
|
16
|
+
|
|
17
|
+
> **path**: `string`
|
|
18
|
+
|
|
19
|
+
The path to the object that was changed.
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### from?
|
|
24
|
+
|
|
25
|
+
> `optional` **from**: `string`
|
|
26
|
+
|
|
27
|
+
The path the value was copied or moved from.
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### value?
|
|
32
|
+
|
|
33
|
+
> `optional` **value**: `unknown`
|
|
34
|
+
|
|
35
|
+
The value to add.
|