@galeh/chuka 1.1.0 → 1.1.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.
Files changed (69) hide show
  1. package/.github/workflows/webpack.yml +34 -0
  2. package/README.md +2 -2
  3. package/config/api-extractor.decorators.json +427 -0
  4. package/config/api-extractor.index.json +427 -0
  5. package/config/api-extractor.middlewares.json +427 -0
  6. package/config/api-extractor.validators.json +427 -0
  7. package/package.json +49 -40
  8. package/sample/01-cats-app/package-lock.json +283 -0
  9. package/sample/01-cats-app/package.json +19 -0
  10. package/sample/01-cats-app/src/cats/cat-model.ts +9 -0
  11. package/sample/01-cats-app/src/cats/cats-controller.ts +44 -0
  12. package/sample/01-cats-app/src/cats/cats-service-interface.ts +7 -0
  13. package/sample/01-cats-app/src/cats/cats-service.ts +27 -0
  14. package/sample/01-cats-app/src/cats/create-logger.ts +8 -0
  15. package/sample/01-cats-app/src/main.ts +30 -0
  16. package/sample/01-cats-app/tsconfig.json +112 -0
  17. package/sample/02-socket/package-lock.json +442 -0
  18. package/sample/02-socket/package.json +20 -0
  19. package/sample/02-socket/src/controllers/http-controller.ts +14 -0
  20. package/sample/02-socket/src/controllers/socket-controller.ts +18 -0
  21. package/sample/02-socket/src/main.ts +46 -0
  22. package/sample/02-socket/src/middleware/create-session.ts +9 -0
  23. package/sample/02-socket/tsconfig.json +112 -0
  24. package/sample/03-authentication/db/create.sql +6 -0
  25. package/sample/03-authentication/package-lock.json +1832 -0
  26. package/sample/03-authentication/package.json +23 -0
  27. package/sample/03-authentication/src/config.ts +21 -0
  28. package/sample/03-authentication/src/controllers/auth-controller.ts +54 -0
  29. package/sample/03-authentication/src/enums/injection-tokens.ts +5 -0
  30. package/sample/03-authentication/src/enums/result-codes.ts +4 -0
  31. package/sample/03-authentication/src/exceptions/error.ts +7 -0
  32. package/sample/03-authentication/src/exceptions/password-not-found-exception.ts +9 -0
  33. package/sample/03-authentication/src/exceptions/unauthorized-exception.ts +9 -0
  34. package/sample/03-authentication/src/exceptions/user-already-exist.ts +9 -0
  35. package/sample/03-authentication/src/exceptions/user-not-found.ts +9 -0
  36. package/sample/03-authentication/src/exceptions/wrong-login-info-exception.ts +8 -0
  37. package/sample/03-authentication/src/main.ts +42 -0
  38. package/sample/03-authentication/src/middlewares/auth-handler.ts +17 -0
  39. package/sample/03-authentication/src/middlewares/global-error-handler.ts +21 -0
  40. package/sample/03-authentication/src/models/user-model.ts +6 -0
  41. package/sample/03-authentication/src/services/auth-service.ts +50 -0
  42. package/sample/03-authentication/src/services/interfaces/auth-service-interface.ts +7 -0
  43. package/sample/03-authentication/src/services/interfaces/user-service-interface.ts +7 -0
  44. package/sample/03-authentication/src/services/user-service.ts +75 -0
  45. package/sample/03-authentication/src/types/connection.ts +3 -0
  46. package/sample/03-authentication/src/types/token.ts +3 -0
  47. package/sample/03-authentication/src/utils/crypto.ts +26 -0
  48. package/sample/03-authentication/tsconfig.json +112 -0
  49. package/scripts/build.bash +17 -0
  50. package/scripts/create-package-json.js +15 -0
  51. package/src/app.ts +197 -0
  52. package/src/controller.ts +204 -0
  53. package/src/decorators/index.ts +1 -0
  54. package/src/index.ts +3 -0
  55. package/src/middlewares/index.ts +1 -0
  56. package/src/validators/body-validator.ts +9 -0
  57. package/src/validators/index.ts +2 -0
  58. package/src/validators/query-validator.ts +9 -0
  59. package/src/validators/validators.ts +216 -0
  60. package/tsconfig.json +112 -0
  61. package/webpack.config.js +46 -0
  62. package/decorators.d.ts +0 -8
  63. package/decorators.js +0 -107
  64. package/index.d.ts +0 -202
  65. package/index.js +0 -167
  66. package/middlewares.d.ts +0 -20
  67. package/middlewares.js +0 -107
  68. package/validators.d.ts +0 -60
  69. package/validators.js +0 -105
@@ -0,0 +1,34 @@
1
+ # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
+ # For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
+
4
+ name: Node.js Package
5
+
6
+ on:
7
+ push:
8
+ branches: [ "master" ]
9
+ pull_request:
10
+ branches: [ "master" ]
11
+
12
+ jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 20
20
+ - run: npm ci
21
+
22
+ publish-npm:
23
+ needs: build
24
+ runs-on: ubuntu-latest
25
+ steps:
26
+ - uses: actions/checkout@v4
27
+ - uses: actions/setup-node@v4
28
+ with:
29
+ node-version: 20
30
+ registry-url: https://registry.npmjs.org/
31
+ - run: npm ci
32
+ - run: npm publish
33
+ env:
34
+ NODE_AUTH_TOKEN: ${{secrets.NPMTOKEN}}
package/README.md CHANGED
@@ -44,11 +44,11 @@ app.listen(8080, () => {
44
44
 
45
45
  @injectable()
46
46
  export class CatsController extends Controller {
47
- intercepted = this.middleware(
47
+ intercepted = this.use(
48
48
  createLogger()
49
49
  );
50
50
 
51
- postCat = this.intercepted.middleware(
51
+ postCat = this.intercepted.use(
52
52
  bodyValidator<CatModel>({
53
53
  name: and(isDefined(), isString()),
54
54
  country: isNumber(),
@@ -0,0 +1,427 @@
1
+ /**
2
+ * Config file for API Extractor. For more info, please visit: https://api-extractor.com
3
+ */
4
+ {
5
+ "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
6
+
7
+ /**
8
+ * Optionally specifies another JSON config file that this file extends from. This provides a way for
9
+ * standard settings to be shared across multiple projects.
10
+ *
11
+ * If the path starts with "./" or "../", the path is resolved relative to the folder of the file that contains
12
+ * the "extends" field. Otherwise, the first path segment is interpreted as an NPM package name, and will be
13
+ * resolved using NodeJS require().
14
+ *
15
+ * SUPPORTED TOKENS: none
16
+ * DEFAULT VALUE: ""
17
+ */
18
+ // "extends": "./shared/api-extractor-base.json"
19
+ // "extends": "my-package/include/api-extractor-base.json"
20
+
21
+ /**
22
+ * Determines the "<projectFolder>" token that can be used with other config file settings. The project folder
23
+ * typically contains the tsconfig.json and package.json config files, but the path is user-defined.
24
+ *
25
+ * The path is resolved relative to the folder of the config file that contains the setting.
26
+ *
27
+ * The default value for "projectFolder" is the token "<lookup>", which means the folder is determined by traversing
28
+ * parent folders, starting from the folder containing api-extractor.json, and stopping at the first folder
29
+ * that contains a tsconfig.json file. If a tsconfig.json file cannot be found in this way, then an error
30
+ * will be reported.
31
+ *
32
+ * SUPPORTED TOKENS: <lookup>
33
+ * DEFAULT VALUE: "<lookup>"
34
+ */
35
+ // "projectFolder": "..",
36
+
37
+ /**
38
+ * (REQUIRED) Specifies the .d.ts file to be used as the starting point for analysis. API Extractor
39
+ * analyzes the symbols exported by this module.
40
+ *
41
+ * The file extension must be ".d.ts" and not ".ts".
42
+ *
43
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
44
+ * prepend a folder token such as "<projectFolder>".
45
+ *
46
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
47
+ */
48
+ "mainEntryPointFilePath": "<projectFolder>/dist-ts/decorators/index.d.ts",
49
+
50
+ /**
51
+ * A list of NPM package names whose exports should be treated as part of this package.
52
+ *
53
+ * For example, suppose that Webpack is used to generate a distributed bundle for the project "library1",
54
+ * and another NPM package "library2" is embedded in this bundle. Some types from library2 may become part
55
+ * of the exported API for library1, but by default API Extractor would generate a .d.ts rollup that explicitly
56
+ * imports library2. To avoid this, we can specify:
57
+ *
58
+ * "bundledPackages": [ "library2" ],
59
+ *
60
+ * This would direct API Extractor to embed those types directly in the .d.ts rollup, as if they had been
61
+ * local files for library1.
62
+ */
63
+ "bundledPackages": [],
64
+
65
+ /**
66
+ * Specifies what type of newlines API Extractor should use when writing output files. By default, the output files
67
+ * will be written with Windows-style newlines. To use POSIX-style newlines, specify "lf" instead.
68
+ * To use the OS's default newline kind, specify "os".
69
+ *
70
+ * DEFAULT VALUE: "crlf"
71
+ */
72
+ // "newlineKind": "crlf",
73
+
74
+ /**
75
+ * Set to true when invoking API Extractor's test harness. When `testMode` is true, the `toolVersion` field in the
76
+ * .api.json file is assigned an empty string to prevent spurious diffs in output files tracked for tests.
77
+ *
78
+ * DEFAULT VALUE: "false"
79
+ */
80
+ // "testMode": false,
81
+
82
+ /**
83
+ * Specifies how API Extractor sorts members of an enum when generating the .api.json file. By default, the output
84
+ * files will be sorted alphabetically, which is "by-name". To keep the ordering in the source code, specify
85
+ * "preserve".
86
+ *
87
+ * DEFAULT VALUE: "by-name"
88
+ */
89
+ // "enumMemberOrder": "by-name",
90
+
91
+ /**
92
+ * Determines how the TypeScript compiler engine will be invoked by API Extractor.
93
+ */
94
+ "compiler": {
95
+ /**
96
+ * Specifies the path to the tsconfig.json file to be used by API Extractor when analyzing the project.
97
+ *
98
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
99
+ * prepend a folder token such as "<projectFolder>".
100
+ *
101
+ * Note: This setting will be ignored if "overrideTsconfig" is used.
102
+ *
103
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
104
+ * DEFAULT VALUE: "<projectFolder>/tsconfig.json"
105
+ */
106
+ // "tsconfigFilePath": "<projectFolder>/tsconfig.json",
107
+ /**
108
+ * Provides a compiler configuration that will be used instead of reading the tsconfig.json file from disk.
109
+ * The object must conform to the TypeScript tsconfig schema:
110
+ *
111
+ * http://json.schemastore.org/tsconfig
112
+ *
113
+ * If omitted, then the tsconfig.json file will be read from the "projectFolder".
114
+ *
115
+ * DEFAULT VALUE: no overrideTsconfig section
116
+ */
117
+ // "overrideTsconfig": {
118
+ // . . .
119
+ // }
120
+ /**
121
+ * This option causes the compiler to be invoked with the --skipLibCheck option. This option is not recommended
122
+ * and may cause API Extractor to produce incomplete or incorrect declarations, but it may be required when
123
+ * dependencies contain declarations that are incompatible with the TypeScript engine that API Extractor uses
124
+ * for its analysis. Where possible, the underlying issue should be fixed rather than relying on skipLibCheck.
125
+ *
126
+ * DEFAULT VALUE: false
127
+ */
128
+ // "skipLibCheck": true,
129
+ },
130
+
131
+ /**
132
+ * Configures how the API report file (*.api.md) will be generated.
133
+ */
134
+ "apiReport": {
135
+ /**
136
+ * (REQUIRED) Whether to generate an API report.
137
+ */
138
+ "enabled": false
139
+
140
+ /**
141
+ * The filename for the API report files. It will be combined with "reportFolder" or "reportTempFolder" to produce
142
+ * a full file path.
143
+ *
144
+ * The file extension should be ".api.md", and the string should not contain a path separator such as "\" or "/".
145
+ *
146
+ * SUPPORTED TOKENS: <packageName>, <unscopedPackageName>
147
+ * DEFAULT VALUE: "<unscopedPackageName>.api.md"
148
+ */
149
+ // "reportFileName": "<unscopedPackageName>.api.md",
150
+
151
+ /**
152
+ * Specifies the folder where the API report file is written. The file name portion is determined by
153
+ * the "reportFileName" setting.
154
+ *
155
+ * The API report file is normally tracked by Git. Changes to it can be used to trigger a branch policy,
156
+ * e.g. for an API review.
157
+ *
158
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
159
+ * prepend a folder token such as "<projectFolder>".
160
+ *
161
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
162
+ * DEFAULT VALUE: "<projectFolder>/temp/"
163
+ */
164
+ // "reportFolder": "<projectFolder>/temp/",
165
+
166
+ /**
167
+ * Specifies the folder where the temporary report file is written. The file name portion is determined by
168
+ * the "reportFileName" setting.
169
+ *
170
+ * After the temporary file is written to disk, it is compared with the file in the "reportFolder".
171
+ * If they are different, a production build will fail.
172
+ *
173
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
174
+ * prepend a folder token such as "<projectFolder>".
175
+ *
176
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
177
+ * DEFAULT VALUE: "<projectFolder>/temp/"
178
+ */
179
+ // "reportTempFolder": "<projectFolder>/temp/",
180
+
181
+ /**
182
+ * Whether "forgotten exports" should be included in the API report file. Forgotten exports are declarations
183
+ * flagged with `ae-forgotten-export` warnings. See https://api-extractor.com/pages/messages/ae-forgotten-export/ to
184
+ * learn more.
185
+ *
186
+ * DEFAULT VALUE: "false"
187
+ */
188
+ // "includeForgottenExports": false
189
+ },
190
+
191
+ /**
192
+ * Configures how the doc model file (*.api.json) will be generated.
193
+ */
194
+ "docModel": {
195
+ /**
196
+ * (REQUIRED) Whether to generate a doc model file.
197
+ */
198
+ "enabled": true
199
+
200
+ /**
201
+ * The output path for the doc model file. The file extension should be ".api.json".
202
+ *
203
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
204
+ * prepend a folder token such as "<projectFolder>".
205
+ *
206
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
207
+ * DEFAULT VALUE: "<projectFolder>/temp/<unscopedPackageName>.api.json"
208
+ */
209
+ // "apiJsonFilePath": "<projectFolder>/temp/<unscopedPackageName>.api.json",
210
+
211
+ /**
212
+ * Whether "forgotten exports" should be included in the doc model file. Forgotten exports are declarations
213
+ * flagged with `ae-forgotten-export` warnings. See https://api-extractor.com/pages/messages/ae-forgotten-export/ to
214
+ * learn more.
215
+ *
216
+ * DEFAULT VALUE: "false"
217
+ */
218
+ // "includeForgottenExports": false,
219
+
220
+ /**
221
+ * The base URL where the project's source code can be viewed on a website such as GitHub or
222
+ * Azure DevOps. This URL path corresponds to the `<projectFolder>` path on disk.
223
+ *
224
+ * This URL is concatenated with the file paths serialized to the doc model to produce URL file paths to individual API items.
225
+ * For example, if the `projectFolderUrl` is "https://github.com/microsoft/rushstack/tree/main/apps/api-extractor" and an API
226
+ * item's file path is "api/ExtractorConfig.ts", the full URL file path would be
227
+ * "https://github.com/microsoft/rushstack/tree/main/apps/api-extractor/api/ExtractorConfig.js".
228
+ *
229
+ * Can be omitted if you don't need source code links in your API documentation reference.
230
+ *
231
+ * SUPPORTED TOKENS: none
232
+ * DEFAULT VALUE: ""
233
+ */
234
+ // "projectFolderUrl": "http://github.com/path/to/your/projectFolder"
235
+ },
236
+
237
+ /**
238
+ * Configures how the .d.ts rollup file will be generated.
239
+ */
240
+ "dtsRollup": {
241
+ /**
242
+ * (REQUIRED) Whether to generate the .d.ts rollup file.
243
+ */
244
+ "enabled": true,
245
+
246
+ /**
247
+ * Specifies the output path for a .d.ts rollup file to be generated without any trimming.
248
+ * This file will include all declarations that are exported by the main entry point.
249
+ *
250
+ * If the path is an empty string, then this file will not be written.
251
+ *
252
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
253
+ * prepend a folder token such as "<projectFolder>".
254
+ *
255
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
256
+ * DEFAULT VALUE: "<projectFolder>/dist/<unscopedPackageName>.d.ts"
257
+ */
258
+ "untrimmedFilePath": "<projectFolder>/dist/chuka/decorators.d.ts"
259
+
260
+ /**
261
+ * Specifies the output path for a .d.ts rollup file to be generated with trimming for an "alpha" release.
262
+ * This file will include only declarations that are marked as "@public", "@beta", or "@alpha".
263
+ *
264
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
265
+ * prepend a folder token such as "<projectFolder>".
266
+ *
267
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
268
+ * DEFAULT VALUE: ""
269
+ */
270
+ // "alphaTrimmedFilePath": "<projectFolder>/dist/<unscopedPackageName>-alpha.d.ts",
271
+
272
+ /**
273
+ * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "beta" release.
274
+ * This file will include only declarations that are marked as "@public" or "@beta".
275
+ *
276
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
277
+ * prepend a folder token such as "<projectFolder>".
278
+ *
279
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
280
+ * DEFAULT VALUE: ""
281
+ */
282
+ // "betaTrimmedFilePath": "<projectFolder>/dist/<unscopedPackageName>-beta.d.ts",
283
+
284
+ /**
285
+ * Specifies the output path for a .d.ts rollup file to be generated with trimming for a "public" release.
286
+ * This file will include only declarations that are marked as "@public".
287
+ *
288
+ * If the path is an empty string, then this file will not be written.
289
+ *
290
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
291
+ * prepend a folder token such as "<projectFolder>".
292
+ *
293
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
294
+ * DEFAULT VALUE: ""
295
+ */
296
+ // "publicTrimmedFilePath": "<projectFolder>/dist/<unscopedPackageName>-public.d.ts",
297
+
298
+ /**
299
+ * When a declaration is trimmed, by default it will be replaced by a code comment such as
300
+ * "Excluded from this release type: exampleMember". Set "omitTrimmingComments" to true to remove the
301
+ * declaration completely.
302
+ *
303
+ * DEFAULT VALUE: false
304
+ */
305
+ // "omitTrimmingComments": true
306
+ },
307
+
308
+ /**
309
+ * Configures how the tsdoc-metadata.json file will be generated.
310
+ */
311
+ "tsdocMetadata": {
312
+ /**
313
+ * Whether to generate the tsdoc-metadata.json file.
314
+ *
315
+ * DEFAULT VALUE: true
316
+ */
317
+ "enabled": false,
318
+ /**
319
+ * Specifies where the TSDoc metadata file should be written.
320
+ *
321
+ * The path is resolved relative to the folder of the config file that contains the setting; to change this,
322
+ * prepend a folder token such as "<projectFolder>".
323
+ *
324
+ * The default value is "<lookup>", which causes the path to be automatically inferred from the "tsdocMetadata",
325
+ * "typings" or "main" fields of the project's package.json. If none of these fields are set, the lookup
326
+ * falls back to "tsdoc-metadata.json" in the package folder.
327
+ *
328
+ * SUPPORTED TOKENS: <projectFolder>, <packageName>, <unscopedPackageName>
329
+ * DEFAULT VALUE: "<lookup>"
330
+ */
331
+ // "tsdocMetadataFilePath": "<projectFolder>/dist/tsdoc-metadata.json"
332
+ },
333
+
334
+ /**
335
+ * Configures how API Extractor reports error and warning messages produced during analysis.
336
+ *
337
+ * There are three sources of messages: compiler messages, API Extractor messages, and TSDoc messages.
338
+ */
339
+ "messages": {
340
+ /**
341
+ * Configures handling of diagnostic messages reported by the TypeScript compiler engine while analyzing
342
+ * the input .d.ts files.
343
+ *
344
+ * TypeScript message identifiers start with "TS" followed by an integer. For example: "TS2551"
345
+ *
346
+ * DEFAULT VALUE: A single "default" entry with logLevel=warning.
347
+ */
348
+ "compilerMessageReporting": {
349
+ /**
350
+ * Configures the default routing for messages that don't match an explicit rule in this table.
351
+ */
352
+ "default": {
353
+ /**
354
+ * Specifies whether the message should be written to the the tool's output log. Note that
355
+ * the "addToApiReportFile" property may supersede this option.
356
+ *
357
+ * Possible values: "error", "warning", "none"
358
+ *
359
+ * Errors cause the build to fail and return a nonzero exit code. Warnings cause a production build fail
360
+ * and return a nonzero exit code. For a non-production build (e.g. when "api-extractor run" includes
361
+ * the "--local" option), the warning is displayed but the build will not fail.
362
+ *
363
+ * DEFAULT VALUE: "warning"
364
+ */
365
+ "logLevel": "warning"
366
+
367
+ /**
368
+ * When addToApiReportFile is true: If API Extractor is configured to write an API report file (.api.md),
369
+ * then the message will be written inside that file; otherwise, the message is instead logged according to
370
+ * the "logLevel" option.
371
+ *
372
+ * DEFAULT VALUE: false
373
+ */
374
+ // "addToApiReportFile": false
375
+ }
376
+
377
+ // "TS2551": {
378
+ // "logLevel": "warning",
379
+ // "addToApiReportFile": true
380
+ // },
381
+ //
382
+ // . . .
383
+ },
384
+
385
+ /**
386
+ * Configures handling of messages reported by API Extractor during its analysis.
387
+ *
388
+ * API Extractor message identifiers start with "ae-". For example: "ae-extra-release-tag"
389
+ *
390
+ * DEFAULT VALUE: See api-extractor-defaults.json for the complete table of extractorMessageReporting mappings
391
+ */
392
+ "extractorMessageReporting": {
393
+ "default": {
394
+ "logLevel": "warning"
395
+ // "addToApiReportFile": false
396
+ }
397
+
398
+ // "ae-extra-release-tag": {
399
+ // "logLevel": "warning",
400
+ // "addToApiReportFile": true
401
+ // },
402
+ //
403
+ // . . .
404
+ },
405
+
406
+ /**
407
+ * Configures handling of messages reported by the TSDoc parser when analyzing code comments.
408
+ *
409
+ * TSDoc message identifiers start with "tsdoc-". For example: "tsdoc-link-tag-unescaped-text"
410
+ *
411
+ * DEFAULT VALUE: A single "default" entry with logLevel=warning.
412
+ */
413
+ "tsdocMessageReporting": {
414
+ "default": {
415
+ "logLevel": "warning"
416
+ // "addToApiReportFile": false
417
+ }
418
+
419
+ // "tsdoc-link-tag-unescaped-text": {
420
+ // "logLevel": "warning",
421
+ // "addToApiReportFile": true
422
+ // },
423
+ //
424
+ // . . .
425
+ }
426
+ }
427
+ }