@breautek/storm 5.0.1-beta.3 → 5.0.2
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/CHANGELOG.md +18 -2
- package/docs/assets/highlight.css +85 -0
- package/docs/assets/main.js +58 -0
- package/docs/assets/search.js +1 -0
- package/docs/assets/style.css +1367 -0
- package/docs/classes/Application.html +1235 -0
- package/docs/classes/BackendAuthenticationMiddleware.html +191 -0
- package/docs/classes/CORSMiddleware.html +257 -0
- package/docs/classes/ConfigLoader.html +166 -0
- package/docs/classes/Database.html +340 -0
- package/docs/classes/DatabaseCastObject.html +203 -0
- package/docs/classes/DatabaseConnection.html +550 -0
- package/docs/classes/DatabaseQueryError.html +372 -0
- package/docs/classes/DeadLockError.html +372 -0
- package/docs/classes/DiskSpaceError.html +362 -0
- package/docs/classes/DropTemporaryTableQuery.html +285 -0
- package/docs/classes/DumpStream.html +161 -0
- package/docs/classes/DuplicateEntryError.html +366 -0
- package/docs/classes/EntityNotFoundError.html +362 -0
- package/docs/classes/ExpiredTokenError.html +362 -0
- package/docs/classes/Handler.html +395 -0
- package/docs/classes/InternalError.html +362 -0
- package/docs/classes/InvalidCredentialsError.html +362 -0
- package/docs/classes/InvalidValueError.html +373 -0
- package/docs/classes/LineString.html +212 -0
- package/docs/classes/LockWaitTimeoutError.html +372 -0
- package/docs/classes/ManagedDatabaseConnection.html +410 -0
- package/docs/classes/Middleware.html +202 -0
- package/docs/classes/MissingConfigError.html +362 -0
- package/docs/classes/MissingParameterError.html +362 -0
- package/docs/classes/MySQLConnection.html +546 -0
- package/docs/classes/MySQLDatabase.html +353 -0
- package/docs/classes/NotImplementedError.html +362 -0
- package/docs/classes/Point.html +214 -0
- package/docs/classes/Polygon.html +212 -0
- package/docs/classes/Query.html +312 -0
- package/docs/classes/RawError.html +374 -0
- package/docs/classes/RawQuery.html +305 -0
- package/docs/classes/Request.html +375 -0
- package/docs/classes/Response.html +329 -0
- package/docs/classes/ResponseData.html +255 -0
- package/docs/classes/ServiceProvider.html +385 -0
- package/docs/classes/ServiceResponse.html +213 -0
- package/docs/classes/SetSessionVariableQuery.html +285 -0
- package/docs/classes/StormError.html +377 -0
- package/docs/classes/TemporaryTableQuery.html +290 -0
- package/docs/classes/Token.html +181 -0
- package/docs/classes/TokenManager.html +233 -0
- package/docs/classes/Transaction.html +267 -0
- package/docs/classes/UnauthorizedAccessError.html +362 -0
- package/docs/enums/ErrorCode.html +210 -0
- package/docs/enums/ExitCode.html +161 -0
- package/docs/enums/HTTPMethod.html +175 -0
- package/docs/enums/IsolationLevel.html +175 -0
- package/docs/enums/JWTError.html +161 -0
- package/docs/enums/StatusCode.html +483 -0
- package/docs/functions/formidable-1.html +143 -0
- package/docs/functions/getInstance.html +138 -0
- package/docs/index.html +224 -0
- package/docs/interfaces/IAdditionalErrorDetails.html +140 -0
- package/docs/interfaces/IAuthTokenData.html +172 -0
- package/docs/interfaces/IConfig.html +225 -0
- package/docs/interfaces/IDatabaseConfig.html +198 -0
- package/docs/interfaces/IDatabaseConnection.html +332 -0
- package/docs/interfaces/IErrorResponse.html +186 -0
- package/docs/interfaces/IFormData.html +165 -0
- package/docs/interfaces/IHandler.html +171 -0
- package/docs/interfaces/IInsertQueryResult.html +172 -0
- package/docs/interfaces/IJWTVerifyOptions.html +158 -0
- package/docs/interfaces/IParameterMap.html +140 -0
- package/docs/interfaces/IQueryable.html +233 -0
- package/docs/interfaces/IRequestResponse.html +172 -0
- package/docs/interfaces/IServiceHeaders.html +140 -0
- package/docs/interfaces/ISetSessionVariableQueryInput.html +165 -0
- package/docs/interfaces/ITemporaryTableQueryInput.html +165 -0
- package/docs/interfaces/IUpdateQueryResult.html +165 -0
- package/docs/interfaces/formidable.EmitData.html +180 -0
- package/docs/interfaces/formidable.EventData.html +201 -0
- package/docs/interfaces/formidable.Fields.html +141 -0
- package/docs/interfaces/formidable.File.html +239 -0
- package/docs/interfaces/formidable.FileJSON.html +238 -0
- package/docs/interfaces/formidable.Files.html +141 -0
- package/docs/interfaces/formidable.Options.html +308 -0
- package/docs/interfaces/formidable.Part.html +691 -0
- package/docs/modules/formidable.html +159 -0
- package/docs/types/IDeleteQueryResult.html +134 -0
- package/docs/types/IHandlerError.html +139 -0
- package/docs/types/IHandlerResponse.html +145 -0
- package/docs/types/TCoordinate.html +134 -0
- package/docs/types/formidable.BufferEncoding.html +135 -0
- package/docs/types/formidable.DefaultOptions.html +135 -0
- package/docs/types/formidable.EnabledPlugins.html +135 -0
- package/docs/types/formidable.EventNames.html +135 -0
- package/docs/types/formidable.MappedParsers.html +135 -0
- package/docs/types/formidable.Plugin.html +135 -0
- package/docs/types/formidable.PluginFunction.html +150 -0
- package/docs/types/formidable.Plugins.html +135 -0
- package/lib/StatusCode.d.ts +1 -1
- package/lib/StatusCode.js +1 -1
- package/lib/Transaction.d.ts +4 -0
- package/lib/Transaction.js +4 -0
- package/lib/Transaction.js.map +1 -1
- package/package.json +14 -14
- package/src/StatusCode.ts +1 -1
- package/src/Transaction.ts +4 -0
- package/docs/README.md +0 -188
- package/docs/classes/Application.md +0 -1648
- package/docs/classes/BackendAuthenticationMiddleware.md +0 -49
- package/docs/classes/CORSMiddleware.md +0 -143
- package/docs/classes/ConfigLoader.md +0 -29
- package/docs/classes/Database.md +0 -259
- package/docs/classes/DatabaseCastObject.md +0 -79
- package/docs/classes/DatabaseConnection.md +0 -556
- package/docs/classes/DatabaseQueryError.md +0 -351
- package/docs/classes/DeadLockError.md +0 -349
- package/docs/classes/DiskSpaceError.md +0 -341
- package/docs/classes/DropTemporaryTableQuery.md +0 -207
- package/docs/classes/DumpStream.md +0 -23
- package/docs/classes/DuplicateEntryError.md +0 -343
- package/docs/classes/EntityNotFoundError.md +0 -341
- package/docs/classes/ExpiredTokenError.md +0 -341
- package/docs/classes/Handler.md +0 -302
- package/docs/classes/InternalError.md +0 -341
- package/docs/classes/InvalidCredentialsError.md +0 -341
- package/docs/classes/InvalidValueError.md +0 -349
- package/docs/classes/LineString.md +0 -101
- package/docs/classes/LockWaitTimeoutError.md +0 -349
- package/docs/classes/ManagedDatabaseConnection.md +0 -403
- package/docs/classes/Middleware.md +0 -72
- package/docs/classes/MissingConfigError.md +0 -341
- package/docs/classes/MissingParameterError.md +0 -341
- package/docs/classes/MySQLConnection.md +0 -569
- package/docs/classes/MySQLDatabase.md +0 -314
- package/docs/classes/NotImplementedError.md +0 -341
- package/docs/classes/Point.md +0 -102
- package/docs/classes/Polygon.md +0 -101
- package/docs/classes/Query.md +0 -227
- package/docs/classes/RawError.md +0 -351
- package/docs/classes/RawQuery.md +0 -224
- package/docs/classes/Request.md +0 -321
- package/docs/classes/Response.md +0 -242
- package/docs/classes/ResponseData.md +0 -144
- package/docs/classes/ServiceProvider.md +0 -296
- package/docs/classes/ServiceResponse.md +0 -89
- package/docs/classes/SetSessionVariableQuery.md +0 -207
- package/docs/classes/StormError.md +0 -343
- package/docs/classes/TemporaryTableQuery.md +0 -213
- package/docs/classes/Token.md +0 -43
- package/docs/classes/TokenManager.md +0 -105
- package/docs/classes/Transaction.md +0 -161
- package/docs/classes/UnauthorizedAccessError.md +0 -341
- package/docs/enums/ErrorCode.md +0 -107
- package/docs/enums/ExitCode.md +0 -30
- package/docs/enums/HTTPMethod.md +0 -52
- package/docs/enums/IsolationLevel.md +0 -52
- package/docs/enums/JWTError.md +0 -30
- package/docs/enums/StatusCode.md +0 -536
- package/docs/interfaces/IAdditionalErrorDetails.md +0 -7
- package/docs/interfaces/IAuthTokenData.md +0 -41
- package/docs/interfaces/IConfig.md +0 -112
- package/docs/interfaces/IDatabaseConfig.md +0 -80
- package/docs/interfaces/IDatabaseConnection.md +0 -262
- package/docs/interfaces/IErrorResponse.md +0 -63
- package/docs/interfaces/IFormData.md +0 -30
- package/docs/interfaces/IHandler.md +0 -31
- package/docs/interfaces/IInsertQueryResult.md +0 -41
- package/docs/interfaces/IJWTVerifyOptions.md +0 -19
- package/docs/interfaces/IParameterMap.md +0 -7
- package/docs/interfaces/IQueryable.md +0 -119
- package/docs/interfaces/IRequestResponse.md +0 -37
- package/docs/interfaces/IServiceHeaders.md +0 -7
- package/docs/interfaces/ISetSessionVariableQueryInput.md +0 -30
- package/docs/interfaces/ITemporaryTableQueryInput.md +0 -30
- package/docs/interfaces/IUpdateQueryResult.md +0 -30
- package/docs/interfaces/formidable.EmitData.md +0 -54
- package/docs/interfaces/formidable.EventData.md +0 -87
- package/docs/interfaces/formidable.Fields.md +0 -9
- package/docs/interfaces/formidable.File.md +0 -131
- package/docs/interfaces/formidable.FileJSON.md +0 -151
- package/docs/interfaces/formidable.Files.md +0 -9
- package/docs/interfaces/formidable.Options.md +0 -225
- package/docs/interfaces/formidable.Part.md +0 -793
- package/docs/modules/formidable.md +0 -122
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
[@breautek/storm](../README.md) / Transaction
|
|
2
|
-
|
|
3
|
-
# Class: Transaction
|
|
4
|
-
|
|
5
|
-
A class encapsulating an entire transaction from beginning to commitment.
|
|
6
|
-
|
|
7
|
-
This encapsulates a routine to conduct for the transaction.
|
|
8
|
-
Should the transaction fail due to a deadlock, the transaction will automatically
|
|
9
|
-
be tried.
|
|
10
|
-
|
|
11
|
-
## Implements
|
|
12
|
-
|
|
13
|
-
- [`IQueryable`](../interfaces/IQueryable.md)<`void`\>
|
|
14
|
-
|
|
15
|
-
## Table of contents
|
|
16
|
-
|
|
17
|
-
### Constructors
|
|
18
|
-
|
|
19
|
-
- [constructor](Transaction.md#constructor)
|
|
20
|
-
|
|
21
|
-
### Methods
|
|
22
|
-
|
|
23
|
-
- [execute](Transaction.md#execute)
|
|
24
|
-
- [getParametersForQuery](Transaction.md#getparametersforquery)
|
|
25
|
-
- [getQuery](Transaction.md#getquery)
|
|
26
|
-
- [onPostProcess](Transaction.md#onpostprocess)
|
|
27
|
-
- [onPreQuery](Transaction.md#onprequery)
|
|
28
|
-
|
|
29
|
-
## Constructors
|
|
30
|
-
|
|
31
|
-
### constructor
|
|
32
|
-
|
|
33
|
-
• **new Transaction**(`app`, `executor`, `retryLimit?`, `isolationLevel?`)
|
|
34
|
-
|
|
35
|
-
#### Parameters
|
|
36
|
-
|
|
37
|
-
| Name | Type | Default value |
|
|
38
|
-
| :------ | :------ | :------ |
|
|
39
|
-
| `app` | [`Application`](Application.md)<[`IConfig`](../interfaces/IConfig.md), [`IAuthTokenData`](../interfaces/IAuthTokenData.md), `any`, `any`\> | `undefined` |
|
|
40
|
-
| `executor` | `ITransactionExecutor` | `undefined` |
|
|
41
|
-
| `retryLimit` | `number` | `Infinity` |
|
|
42
|
-
| `isolationLevel` | [`IsolationLevel`](../enums/IsolationLevel.md) | `IsolationLevel.REPEATABLE_READ` |
|
|
43
|
-
|
|
44
|
-
#### Defined in
|
|
45
|
-
|
|
46
|
-
[src/Transaction.ts:43](https://github.com/breautek/storm/blob/d45307d/src/Transaction.ts#L43)
|
|
47
|
-
|
|
48
|
-
## Methods
|
|
49
|
-
|
|
50
|
-
### execute
|
|
51
|
-
|
|
52
|
-
▸ **execute**(`connection`): `Promise`<`void`\>
|
|
53
|
-
|
|
54
|
-
#### Parameters
|
|
55
|
-
|
|
56
|
-
| Name | Type |
|
|
57
|
-
| :------ | :------ |
|
|
58
|
-
| `connection` | [`IDatabaseConnection`](../interfaces/IDatabaseConnection.md) |
|
|
59
|
-
|
|
60
|
-
#### Returns
|
|
61
|
-
|
|
62
|
-
`Promise`<`void`\>
|
|
63
|
-
|
|
64
|
-
#### Implementation of
|
|
65
|
-
|
|
66
|
-
[IQueryable](../interfaces/IQueryable.md).[execute](../interfaces/IQueryable.md#execute)
|
|
67
|
-
|
|
68
|
-
#### Defined in
|
|
69
|
-
|
|
70
|
-
[src/Transaction.ts:70](https://github.com/breautek/storm/blob/d45307d/src/Transaction.ts#L70)
|
|
71
|
-
|
|
72
|
-
___
|
|
73
|
-
|
|
74
|
-
### getParametersForQuery
|
|
75
|
-
|
|
76
|
-
▸ **getParametersForQuery**(): `Record`<`string`, `any`\>
|
|
77
|
-
|
|
78
|
-
#### Returns
|
|
79
|
-
|
|
80
|
-
`Record`<`string`, `any`\>
|
|
81
|
-
|
|
82
|
-
#### Implementation of
|
|
83
|
-
|
|
84
|
-
[IQueryable](../interfaces/IQueryable.md).[getParametersForQuery](../interfaces/IQueryable.md#getparametersforquery)
|
|
85
|
-
|
|
86
|
-
#### Defined in
|
|
87
|
-
|
|
88
|
-
[src/Transaction.ts:63](https://github.com/breautek/storm/blob/d45307d/src/Transaction.ts#L63)
|
|
89
|
-
|
|
90
|
-
___
|
|
91
|
-
|
|
92
|
-
### getQuery
|
|
93
|
-
|
|
94
|
-
▸ **getQuery**(`connection`): `string`
|
|
95
|
-
|
|
96
|
-
#### Parameters
|
|
97
|
-
|
|
98
|
-
| Name | Type |
|
|
99
|
-
| :------ | :------ |
|
|
100
|
-
| `connection` | [`IDatabaseConnection`](../interfaces/IDatabaseConnection.md) |
|
|
101
|
-
|
|
102
|
-
#### Returns
|
|
103
|
-
|
|
104
|
-
`string`
|
|
105
|
-
|
|
106
|
-
#### Implementation of
|
|
107
|
-
|
|
108
|
-
[IQueryable](../interfaces/IQueryable.md).[getQuery](../interfaces/IQueryable.md#getquery)
|
|
109
|
-
|
|
110
|
-
#### Defined in
|
|
111
|
-
|
|
112
|
-
[src/Transaction.ts:60](https://github.com/breautek/storm/blob/d45307d/src/Transaction.ts#L60)
|
|
113
|
-
|
|
114
|
-
___
|
|
115
|
-
|
|
116
|
-
### onPostProcess
|
|
117
|
-
|
|
118
|
-
▸ **onPostProcess**(`connection`, `results`): `Promise`<`void`\>
|
|
119
|
-
|
|
120
|
-
#### Parameters
|
|
121
|
-
|
|
122
|
-
| Name | Type |
|
|
123
|
-
| :------ | :------ |
|
|
124
|
-
| `connection` | [`IDatabaseConnection`](../interfaces/IDatabaseConnection.md) |
|
|
125
|
-
| `results` | `any` |
|
|
126
|
-
|
|
127
|
-
#### Returns
|
|
128
|
-
|
|
129
|
-
`Promise`<`void`\>
|
|
130
|
-
|
|
131
|
-
#### Implementation of
|
|
132
|
-
|
|
133
|
-
[IQueryable](../interfaces/IQueryable.md).[onPostProcess](../interfaces/IQueryable.md#onpostprocess)
|
|
134
|
-
|
|
135
|
-
#### Defined in
|
|
136
|
-
|
|
137
|
-
[src/Transaction.ts:66](https://github.com/breautek/storm/blob/d45307d/src/Transaction.ts#L66)
|
|
138
|
-
|
|
139
|
-
___
|
|
140
|
-
|
|
141
|
-
### onPreQuery
|
|
142
|
-
|
|
143
|
-
▸ **onPreQuery**(`connection`): `Promise`<`void`\>
|
|
144
|
-
|
|
145
|
-
#### Parameters
|
|
146
|
-
|
|
147
|
-
| Name | Type |
|
|
148
|
-
| :------ | :------ |
|
|
149
|
-
| `connection` | [`IDatabaseConnection`](../interfaces/IDatabaseConnection.md) |
|
|
150
|
-
|
|
151
|
-
#### Returns
|
|
152
|
-
|
|
153
|
-
`Promise`<`void`\>
|
|
154
|
-
|
|
155
|
-
#### Implementation of
|
|
156
|
-
|
|
157
|
-
[IQueryable](../interfaces/IQueryable.md).[onPreQuery](../interfaces/IQueryable.md#onprequery)
|
|
158
|
-
|
|
159
|
-
#### Defined in
|
|
160
|
-
|
|
161
|
-
[src/Transaction.ts:58](https://github.com/breautek/storm/blob/d45307d/src/Transaction.ts#L58)
|
|
@@ -1,341 +0,0 @@
|
|
|
1
|
-
[@breautek/storm](../README.md) / UnauthorizedAccessError
|
|
2
|
-
|
|
3
|
-
# Class: UnauthorizedAccessError
|
|
4
|
-
|
|
5
|
-
## Hierarchy
|
|
6
|
-
|
|
7
|
-
- [`StormError`](StormError.md)
|
|
8
|
-
|
|
9
|
-
↳ **`UnauthorizedAccessError`**
|
|
10
|
-
|
|
11
|
-
## Table of contents
|
|
12
|
-
|
|
13
|
-
### Constructors
|
|
14
|
-
|
|
15
|
-
- [constructor](UnauthorizedAccessError.md#constructor)
|
|
16
|
-
|
|
17
|
-
### Properties
|
|
18
|
-
|
|
19
|
-
- [message](UnauthorizedAccessError.md#message)
|
|
20
|
-
- [name](UnauthorizedAccessError.md#name)
|
|
21
|
-
- [stack](UnauthorizedAccessError.md#stack)
|
|
22
|
-
- [prepareStackTrace](UnauthorizedAccessError.md#preparestacktrace)
|
|
23
|
-
- [stackTraceLimit](UnauthorizedAccessError.md#stacktracelimit)
|
|
24
|
-
|
|
25
|
-
### Methods
|
|
26
|
-
|
|
27
|
-
- [getCode](UnauthorizedAccessError.md#getcode)
|
|
28
|
-
- [getErrorResponse](UnauthorizedAccessError.md#geterrorresponse)
|
|
29
|
-
- [getExitCode](UnauthorizedAccessError.md#getexitcode)
|
|
30
|
-
- [getHTTPCode](UnauthorizedAccessError.md#gethttpcode)
|
|
31
|
-
- [getLocaleCode](UnauthorizedAccessError.md#getlocalecode)
|
|
32
|
-
- [getLocaleParameters](UnauthorizedAccessError.md#getlocaleparameters)
|
|
33
|
-
- [getMessage](UnauthorizedAccessError.md#getmessage)
|
|
34
|
-
- [getPrivateDetails](UnauthorizedAccessError.md#getprivatedetails)
|
|
35
|
-
- [getPublicDetails](UnauthorizedAccessError.md#getpublicdetails)
|
|
36
|
-
- [captureStackTrace](UnauthorizedAccessError.md#capturestacktrace)
|
|
37
|
-
|
|
38
|
-
## Constructors
|
|
39
|
-
|
|
40
|
-
### constructor
|
|
41
|
-
|
|
42
|
-
• **new UnauthorizedAccessError**(`userToken`)
|
|
43
|
-
|
|
44
|
-
#### Parameters
|
|
45
|
-
|
|
46
|
-
| Name | Type |
|
|
47
|
-
| :------ | :------ |
|
|
48
|
-
| `userToken` | `string` |
|
|
49
|
-
|
|
50
|
-
#### Overrides
|
|
51
|
-
|
|
52
|
-
[StormError](StormError.md).[constructor](StormError.md#constructor)
|
|
53
|
-
|
|
54
|
-
#### Defined in
|
|
55
|
-
|
|
56
|
-
[src/UnauthorizedAccessError.ts:22](https://github.com/breautek/storm/blob/d45307d/src/UnauthorizedAccessError.ts#L22)
|
|
57
|
-
|
|
58
|
-
## Properties
|
|
59
|
-
|
|
60
|
-
### message
|
|
61
|
-
|
|
62
|
-
• **message**: `string`
|
|
63
|
-
|
|
64
|
-
#### Inherited from
|
|
65
|
-
|
|
66
|
-
[StormError](StormError.md).[message](StormError.md#message)
|
|
67
|
-
|
|
68
|
-
#### Defined in
|
|
69
|
-
|
|
70
|
-
node_modules/typescript/lib/lib.es5.d.ts:1054
|
|
71
|
-
|
|
72
|
-
___
|
|
73
|
-
|
|
74
|
-
### name
|
|
75
|
-
|
|
76
|
-
• **name**: `string`
|
|
77
|
-
|
|
78
|
-
#### Inherited from
|
|
79
|
-
|
|
80
|
-
[StormError](StormError.md).[name](StormError.md#name)
|
|
81
|
-
|
|
82
|
-
#### Defined in
|
|
83
|
-
|
|
84
|
-
node_modules/typescript/lib/lib.es5.d.ts:1053
|
|
85
|
-
|
|
86
|
-
___
|
|
87
|
-
|
|
88
|
-
### stack
|
|
89
|
-
|
|
90
|
-
• `Optional` **stack**: `string`
|
|
91
|
-
|
|
92
|
-
#### Inherited from
|
|
93
|
-
|
|
94
|
-
[StormError](StormError.md).[stack](StormError.md#stack)
|
|
95
|
-
|
|
96
|
-
#### Defined in
|
|
97
|
-
|
|
98
|
-
node_modules/typescript/lib/lib.es5.d.ts:1055
|
|
99
|
-
|
|
100
|
-
___
|
|
101
|
-
|
|
102
|
-
### prepareStackTrace
|
|
103
|
-
|
|
104
|
-
▪ `Static` `Optional` **prepareStackTrace**: (`err`: `Error`, `stackTraces`: `CallSite`[]) => `any`
|
|
105
|
-
|
|
106
|
-
#### Type declaration
|
|
107
|
-
|
|
108
|
-
▸ (`err`, `stackTraces`): `any`
|
|
109
|
-
|
|
110
|
-
Optional override for formatting stack traces
|
|
111
|
-
|
|
112
|
-
**`See`**
|
|
113
|
-
|
|
114
|
-
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
|
|
115
|
-
|
|
116
|
-
##### Parameters
|
|
117
|
-
|
|
118
|
-
| Name | Type |
|
|
119
|
-
| :------ | :------ |
|
|
120
|
-
| `err` | `Error` |
|
|
121
|
-
| `stackTraces` | `CallSite`[] |
|
|
122
|
-
|
|
123
|
-
##### Returns
|
|
124
|
-
|
|
125
|
-
`any`
|
|
126
|
-
|
|
127
|
-
#### Inherited from
|
|
128
|
-
|
|
129
|
-
[StormError](StormError.md).[prepareStackTrace](StormError.md#preparestacktrace)
|
|
130
|
-
|
|
131
|
-
#### Defined in
|
|
132
|
-
|
|
133
|
-
node_modules/@types/node/globals.d.ts:11
|
|
134
|
-
|
|
135
|
-
___
|
|
136
|
-
|
|
137
|
-
### stackTraceLimit
|
|
138
|
-
|
|
139
|
-
▪ `Static` **stackTraceLimit**: `number`
|
|
140
|
-
|
|
141
|
-
#### Inherited from
|
|
142
|
-
|
|
143
|
-
[StormError](StormError.md).[stackTraceLimit](StormError.md#stacktracelimit)
|
|
144
|
-
|
|
145
|
-
#### Defined in
|
|
146
|
-
|
|
147
|
-
node_modules/@types/node/globals.d.ts:13
|
|
148
|
-
|
|
149
|
-
## Methods
|
|
150
|
-
|
|
151
|
-
### getCode
|
|
152
|
-
|
|
153
|
-
▸ **getCode**(): [`ErrorCode`](../enums/ErrorCode.md)
|
|
154
|
-
|
|
155
|
-
#### Returns
|
|
156
|
-
|
|
157
|
-
[`ErrorCode`](../enums/ErrorCode.md)
|
|
158
|
-
|
|
159
|
-
#### Overrides
|
|
160
|
-
|
|
161
|
-
[StormError](StormError.md).[getCode](StormError.md#getcode)
|
|
162
|
-
|
|
163
|
-
#### Defined in
|
|
164
|
-
|
|
165
|
-
[src/UnauthorizedAccessError.ts:30](https://github.com/breautek/storm/blob/d45307d/src/UnauthorizedAccessError.ts#L30)
|
|
166
|
-
|
|
167
|
-
___
|
|
168
|
-
|
|
169
|
-
### getErrorResponse
|
|
170
|
-
|
|
171
|
-
▸ **getErrorResponse**(): [`IErrorResponse`](../interfaces/IErrorResponse.md)
|
|
172
|
-
|
|
173
|
-
#### Returns
|
|
174
|
-
|
|
175
|
-
[`IErrorResponse`](../interfaces/IErrorResponse.md)
|
|
176
|
-
|
|
177
|
-
#### Inherited from
|
|
178
|
-
|
|
179
|
-
[StormError](StormError.md).[getErrorResponse](StormError.md#geterrorresponse)
|
|
180
|
-
|
|
181
|
-
#### Defined in
|
|
182
|
-
|
|
183
|
-
[src/StormError.ts:76](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L76)
|
|
184
|
-
|
|
185
|
-
___
|
|
186
|
-
|
|
187
|
-
### getExitCode
|
|
188
|
-
|
|
189
|
-
▸ **getExitCode**(): [`ExitCode`](../enums/ExitCode.md)
|
|
190
|
-
|
|
191
|
-
#### Returns
|
|
192
|
-
|
|
193
|
-
[`ExitCode`](../enums/ExitCode.md)
|
|
194
|
-
|
|
195
|
-
#### Inherited from
|
|
196
|
-
|
|
197
|
-
[StormError](StormError.md).[getExitCode](StormError.md#getexitcode)
|
|
198
|
-
|
|
199
|
-
#### Defined in
|
|
200
|
-
|
|
201
|
-
[src/StormError.ts:97](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L97)
|
|
202
|
-
|
|
203
|
-
___
|
|
204
|
-
|
|
205
|
-
### getHTTPCode
|
|
206
|
-
|
|
207
|
-
▸ **getHTTPCode**(): [`StatusCode`](../enums/StatusCode.md)
|
|
208
|
-
|
|
209
|
-
#### Returns
|
|
210
|
-
|
|
211
|
-
[`StatusCode`](../enums/StatusCode.md)
|
|
212
|
-
|
|
213
|
-
#### Overrides
|
|
214
|
-
|
|
215
|
-
[StormError](StormError.md).[getHTTPCode](StormError.md#gethttpcode)
|
|
216
|
-
|
|
217
|
-
#### Defined in
|
|
218
|
-
|
|
219
|
-
[src/UnauthorizedAccessError.ts:34](https://github.com/breautek/storm/blob/d45307d/src/UnauthorizedAccessError.ts#L34)
|
|
220
|
-
|
|
221
|
-
___
|
|
222
|
-
|
|
223
|
-
### getLocaleCode
|
|
224
|
-
|
|
225
|
-
▸ **getLocaleCode**(): `string`
|
|
226
|
-
|
|
227
|
-
#### Returns
|
|
228
|
-
|
|
229
|
-
`string`
|
|
230
|
-
|
|
231
|
-
#### Overrides
|
|
232
|
-
|
|
233
|
-
[StormError](StormError.md).[getLocaleCode](StormError.md#getlocalecode)
|
|
234
|
-
|
|
235
|
-
#### Defined in
|
|
236
|
-
|
|
237
|
-
[src/UnauthorizedAccessError.ts:38](https://github.com/breautek/storm/blob/d45307d/src/UnauthorizedAccessError.ts#L38)
|
|
238
|
-
|
|
239
|
-
___
|
|
240
|
-
|
|
241
|
-
### getLocaleParameters
|
|
242
|
-
|
|
243
|
-
▸ **getLocaleParameters**(): `Record`<`string`, `string`\>
|
|
244
|
-
|
|
245
|
-
#### Returns
|
|
246
|
-
|
|
247
|
-
`Record`<`string`, `string`\>
|
|
248
|
-
|
|
249
|
-
#### Inherited from
|
|
250
|
-
|
|
251
|
-
[StormError](StormError.md).[getLocaleParameters](StormError.md#getlocaleparameters)
|
|
252
|
-
|
|
253
|
-
#### Defined in
|
|
254
|
-
|
|
255
|
-
[src/StormError.ts:93](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L93)
|
|
256
|
-
|
|
257
|
-
___
|
|
258
|
-
|
|
259
|
-
### getMessage
|
|
260
|
-
|
|
261
|
-
▸ **getMessage**(): `string`
|
|
262
|
-
|
|
263
|
-
#### Returns
|
|
264
|
-
|
|
265
|
-
`string`
|
|
266
|
-
|
|
267
|
-
#### Overrides
|
|
268
|
-
|
|
269
|
-
[StormError](StormError.md).[getMessage](StormError.md#getmessage)
|
|
270
|
-
|
|
271
|
-
#### Defined in
|
|
272
|
-
|
|
273
|
-
[src/UnauthorizedAccessError.ts:26](https://github.com/breautek/storm/blob/d45307d/src/UnauthorizedAccessError.ts#L26)
|
|
274
|
-
|
|
275
|
-
___
|
|
276
|
-
|
|
277
|
-
### getPrivateDetails
|
|
278
|
-
|
|
279
|
-
▸ **getPrivateDetails**(): `any`
|
|
280
|
-
|
|
281
|
-
Private details are only logged to the server log.
|
|
282
|
-
They are kept secret from the client.
|
|
283
|
-
|
|
284
|
-
#### Returns
|
|
285
|
-
|
|
286
|
-
`any`
|
|
287
|
-
|
|
288
|
-
#### Inherited from
|
|
289
|
-
|
|
290
|
-
[StormError](StormError.md).[getPrivateDetails](StormError.md#getprivatedetails)
|
|
291
|
-
|
|
292
|
-
#### Defined in
|
|
293
|
-
|
|
294
|
-
[src/StormError.ts:68](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L68)
|
|
295
|
-
|
|
296
|
-
___
|
|
297
|
-
|
|
298
|
-
### getPublicDetails
|
|
299
|
-
|
|
300
|
-
▸ **getPublicDetails**(): [`IAdditionalErrorDetails`](../interfaces/IAdditionalErrorDetails.md)
|
|
301
|
-
|
|
302
|
-
Sends details to the client.
|
|
303
|
-
|
|
304
|
-
#### Returns
|
|
305
|
-
|
|
306
|
-
[`IAdditionalErrorDetails`](../interfaces/IAdditionalErrorDetails.md)
|
|
307
|
-
|
|
308
|
-
#### Inherited from
|
|
309
|
-
|
|
310
|
-
[StormError](StormError.md).[getPublicDetails](StormError.md#getpublicdetails)
|
|
311
|
-
|
|
312
|
-
#### Defined in
|
|
313
|
-
|
|
314
|
-
[src/StormError.ts:60](https://github.com/breautek/storm/blob/d45307d/src/StormError.ts#L60)
|
|
315
|
-
|
|
316
|
-
___
|
|
317
|
-
|
|
318
|
-
### captureStackTrace
|
|
319
|
-
|
|
320
|
-
▸ `Static` **captureStackTrace**(`targetObject`, `constructorOpt?`): `void`
|
|
321
|
-
|
|
322
|
-
Create .stack property on a target object
|
|
323
|
-
|
|
324
|
-
#### Parameters
|
|
325
|
-
|
|
326
|
-
| Name | Type |
|
|
327
|
-
| :------ | :------ |
|
|
328
|
-
| `targetObject` | `object` |
|
|
329
|
-
| `constructorOpt?` | `Function` |
|
|
330
|
-
|
|
331
|
-
#### Returns
|
|
332
|
-
|
|
333
|
-
`void`
|
|
334
|
-
|
|
335
|
-
#### Inherited from
|
|
336
|
-
|
|
337
|
-
[StormError](StormError.md).[captureStackTrace](StormError.md#capturestacktrace)
|
|
338
|
-
|
|
339
|
-
#### Defined in
|
|
340
|
-
|
|
341
|
-
node_modules/@types/node/globals.d.ts:4
|
package/docs/enums/ErrorCode.md
DELETED
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
[@breautek/storm](../README.md) / ErrorCode
|
|
2
|
-
|
|
3
|
-
# Enumeration: ErrorCode
|
|
4
|
-
|
|
5
|
-
## Table of contents
|
|
6
|
-
|
|
7
|
-
### Enumeration Members
|
|
8
|
-
|
|
9
|
-
- [DUPLICATE\_ENTRY](ErrorCode.md#duplicate_entry)
|
|
10
|
-
- [EXPIRED\_TOKEN](ErrorCode.md#expired_token)
|
|
11
|
-
- [INSUFFICIENT\_DISK\_SPACE](ErrorCode.md#insufficient_disk_space)
|
|
12
|
-
- [INTERNAL](ErrorCode.md#internal)
|
|
13
|
-
- [INVALID\_CONFIG](ErrorCode.md#invalid_config)
|
|
14
|
-
- [INVALID\_CREDENTIALS](ErrorCode.md#invalid_credentials)
|
|
15
|
-
- [INVALID\_VALUE](ErrorCode.md#invalid_value)
|
|
16
|
-
- [MISSING\_PARAMETER](ErrorCode.md#missing_parameter)
|
|
17
|
-
- [UNAUTHORIZED\_ACCESS](ErrorCode.md#unauthorized_access)
|
|
18
|
-
|
|
19
|
-
## Enumeration Members
|
|
20
|
-
|
|
21
|
-
### DUPLICATE\_ENTRY
|
|
22
|
-
|
|
23
|
-
• **DUPLICATE\_ENTRY** = ``5``
|
|
24
|
-
|
|
25
|
-
#### Defined in
|
|
26
|
-
|
|
27
|
-
[src/ErrorCode.ts:23](https://github.com/breautek/storm/blob/d45307d/src/ErrorCode.ts#L23)
|
|
28
|
-
|
|
29
|
-
___
|
|
30
|
-
|
|
31
|
-
### EXPIRED\_TOKEN
|
|
32
|
-
|
|
33
|
-
• **EXPIRED\_TOKEN** = ``2``
|
|
34
|
-
|
|
35
|
-
#### Defined in
|
|
36
|
-
|
|
37
|
-
[src/ErrorCode.ts:20](https://github.com/breautek/storm/blob/d45307d/src/ErrorCode.ts#L20)
|
|
38
|
-
|
|
39
|
-
___
|
|
40
|
-
|
|
41
|
-
### INSUFFICIENT\_DISK\_SPACE
|
|
42
|
-
|
|
43
|
-
• **INSUFFICIENT\_DISK\_SPACE** = ``7``
|
|
44
|
-
|
|
45
|
-
#### Defined in
|
|
46
|
-
|
|
47
|
-
[src/ErrorCode.ts:25](https://github.com/breautek/storm/blob/d45307d/src/ErrorCode.ts#L25)
|
|
48
|
-
|
|
49
|
-
___
|
|
50
|
-
|
|
51
|
-
### INTERNAL
|
|
52
|
-
|
|
53
|
-
• **INTERNAL** = ``0``
|
|
54
|
-
|
|
55
|
-
#### Defined in
|
|
56
|
-
|
|
57
|
-
[src/ErrorCode.ts:18](https://github.com/breautek/storm/blob/d45307d/src/ErrorCode.ts#L18)
|
|
58
|
-
|
|
59
|
-
___
|
|
60
|
-
|
|
61
|
-
### INVALID\_CONFIG
|
|
62
|
-
|
|
63
|
-
• **INVALID\_CONFIG** = ``8``
|
|
64
|
-
|
|
65
|
-
#### Defined in
|
|
66
|
-
|
|
67
|
-
[src/ErrorCode.ts:26](https://github.com/breautek/storm/blob/d45307d/src/ErrorCode.ts#L26)
|
|
68
|
-
|
|
69
|
-
___
|
|
70
|
-
|
|
71
|
-
### INVALID\_CREDENTIALS
|
|
72
|
-
|
|
73
|
-
• **INVALID\_CREDENTIALS** = ``3``
|
|
74
|
-
|
|
75
|
-
#### Defined in
|
|
76
|
-
|
|
77
|
-
[src/ErrorCode.ts:21](https://github.com/breautek/storm/blob/d45307d/src/ErrorCode.ts#L21)
|
|
78
|
-
|
|
79
|
-
___
|
|
80
|
-
|
|
81
|
-
### INVALID\_VALUE
|
|
82
|
-
|
|
83
|
-
• **INVALID\_VALUE** = ``4``
|
|
84
|
-
|
|
85
|
-
#### Defined in
|
|
86
|
-
|
|
87
|
-
[src/ErrorCode.ts:22](https://github.com/breautek/storm/blob/d45307d/src/ErrorCode.ts#L22)
|
|
88
|
-
|
|
89
|
-
___
|
|
90
|
-
|
|
91
|
-
### MISSING\_PARAMETER
|
|
92
|
-
|
|
93
|
-
• **MISSING\_PARAMETER** = ``1``
|
|
94
|
-
|
|
95
|
-
#### Defined in
|
|
96
|
-
|
|
97
|
-
[src/ErrorCode.ts:19](https://github.com/breautek/storm/blob/d45307d/src/ErrorCode.ts#L19)
|
|
98
|
-
|
|
99
|
-
___
|
|
100
|
-
|
|
101
|
-
### UNAUTHORIZED\_ACCESS
|
|
102
|
-
|
|
103
|
-
• **UNAUTHORIZED\_ACCESS** = ``6``
|
|
104
|
-
|
|
105
|
-
#### Defined in
|
|
106
|
-
|
|
107
|
-
[src/ErrorCode.ts:24](https://github.com/breautek/storm/blob/d45307d/src/ErrorCode.ts#L24)
|
package/docs/enums/ExitCode.md
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
[@breautek/storm](../README.md) / ExitCode
|
|
2
|
-
|
|
3
|
-
# Enumeration: ExitCode
|
|
4
|
-
|
|
5
|
-
## Table of contents
|
|
6
|
-
|
|
7
|
-
### Enumeration Members
|
|
8
|
-
|
|
9
|
-
- [INVALID\_CONFIG](ExitCode.md#invalid_config)
|
|
10
|
-
- [MISSING\_CONFIG](ExitCode.md#missing_config)
|
|
11
|
-
|
|
12
|
-
## Enumeration Members
|
|
13
|
-
|
|
14
|
-
### INVALID\_CONFIG
|
|
15
|
-
|
|
16
|
-
• **INVALID\_CONFIG** = ``2``
|
|
17
|
-
|
|
18
|
-
#### Defined in
|
|
19
|
-
|
|
20
|
-
[src/ExitCode.ts:19](https://github.com/breautek/storm/blob/d45307d/src/ExitCode.ts#L19)
|
|
21
|
-
|
|
22
|
-
___
|
|
23
|
-
|
|
24
|
-
### MISSING\_CONFIG
|
|
25
|
-
|
|
26
|
-
• **MISSING\_CONFIG** = ``1``
|
|
27
|
-
|
|
28
|
-
#### Defined in
|
|
29
|
-
|
|
30
|
-
[src/ExitCode.ts:18](https://github.com/breautek/storm/blob/d45307d/src/ExitCode.ts#L18)
|
package/docs/enums/HTTPMethod.md
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
[@breautek/storm](../README.md) / HTTPMethod
|
|
2
|
-
|
|
3
|
-
# Enumeration: HTTPMethod
|
|
4
|
-
|
|
5
|
-
## Table of contents
|
|
6
|
-
|
|
7
|
-
### Enumeration Members
|
|
8
|
-
|
|
9
|
-
- [DELETE](HTTPMethod.md#delete)
|
|
10
|
-
- [GET](HTTPMethod.md#get)
|
|
11
|
-
- [POST](HTTPMethod.md#post)
|
|
12
|
-
- [PUT](HTTPMethod.md#put)
|
|
13
|
-
|
|
14
|
-
## Enumeration Members
|
|
15
|
-
|
|
16
|
-
### DELETE
|
|
17
|
-
|
|
18
|
-
• **DELETE** = ``"DELETE"``
|
|
19
|
-
|
|
20
|
-
#### Defined in
|
|
21
|
-
|
|
22
|
-
[src/HTTPMethod.ts:21](https://github.com/breautek/storm/blob/d45307d/src/HTTPMethod.ts#L21)
|
|
23
|
-
|
|
24
|
-
___
|
|
25
|
-
|
|
26
|
-
### GET
|
|
27
|
-
|
|
28
|
-
• **GET** = ``"GET"``
|
|
29
|
-
|
|
30
|
-
#### Defined in
|
|
31
|
-
|
|
32
|
-
[src/HTTPMethod.ts:18](https://github.com/breautek/storm/blob/d45307d/src/HTTPMethod.ts#L18)
|
|
33
|
-
|
|
34
|
-
___
|
|
35
|
-
|
|
36
|
-
### POST
|
|
37
|
-
|
|
38
|
-
• **POST** = ``"POST"``
|
|
39
|
-
|
|
40
|
-
#### Defined in
|
|
41
|
-
|
|
42
|
-
[src/HTTPMethod.ts:19](https://github.com/breautek/storm/blob/d45307d/src/HTTPMethod.ts#L19)
|
|
43
|
-
|
|
44
|
-
___
|
|
45
|
-
|
|
46
|
-
### PUT
|
|
47
|
-
|
|
48
|
-
• **PUT** = ``"PUT"``
|
|
49
|
-
|
|
50
|
-
#### Defined in
|
|
51
|
-
|
|
52
|
-
[src/HTTPMethod.ts:20](https://github.com/breautek/storm/blob/d45307d/src/HTTPMethod.ts#L20)
|