@snyk/error-catalog-nodejs-public 5.0.0 → 5.0.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.
Files changed (35) hide show
  1. package/package.json +1 -1
  2. package/src/catalogs/Fix-error-catalog.d.ts +10 -0
  3. package/src/catalogs/Fix-error-catalog.js +20 -0
  4. package/src/catalogs/Fix-error-catalog.js.map +1 -1
  5. package/src/catalogs/IsolatedBuilds-error-catalog.d.ts +3 -0
  6. package/src/catalogs/IsolatedBuilds-error-catalog.js +6 -0
  7. package/src/catalogs/IsolatedBuilds-error-catalog.js.map +1 -1
  8. package/src/catalogs/OpenAPI-error-catalog.d.ts +8 -0
  9. package/src/catalogs/OpenAPI-error-catalog.js +16 -0
  10. package/src/catalogs/OpenAPI-error-catalog.js.map +1 -1
  11. package/src/catalogs/OpenSourceEcosystems-error-catalog.d.ts +52 -0
  12. package/src/catalogs/OpenSourceEcosystems-error-catalog.js +104 -0
  13. package/src/catalogs/OpenSourceEcosystems-error-catalog.js.map +1 -1
  14. package/src/catalogs/OpenSourceProjectIssues-error-catalog.d.ts +5 -0
  15. package/src/catalogs/OpenSourceProjectIssues-error-catalog.js +10 -0
  16. package/src/catalogs/OpenSourceProjectIssues-error-catalog.js.map +1 -1
  17. package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.d.ts +5 -0
  18. package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js +10 -0
  19. package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js.map +1 -1
  20. package/src/catalogs/OpenSourceUnmanaged-error-catalog.d.ts +2 -0
  21. package/src/catalogs/OpenSourceUnmanaged-error-catalog.js +4 -0
  22. package/src/catalogs/OpenSourceUnmanaged-error-catalog.js.map +1 -1
  23. package/src/catalogs/PurlVulnerabilityFetching-error-catalog.d.ts +20 -0
  24. package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js +40 -0
  25. package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js.map +1 -1
  26. package/src/catalogs/SbomExport-error-catalog.d.ts +9 -0
  27. package/src/catalogs/SbomExport-error-catalog.js +18 -0
  28. package/src/catalogs/SbomExport-error-catalog.js.map +1 -1
  29. package/src/catalogs/Snyk-error-catalog.d.ts +6 -0
  30. package/src/catalogs/Snyk-error-catalog.js +12 -0
  31. package/src/catalogs/Snyk-error-catalog.js.map +1 -1
  32. package/src/problem-error.js +1 -1
  33. package/src/problem-error.js.map +1 -1
  34. package/src/types.d.ts +3 -1
  35. package/src/types.js.map +1 -1
@@ -21,6 +21,7 @@ import { ProblemError } from '../problem-error';
21
21
  * @summary Unable to parse manifest file
22
22
  * @category OpenSourceEcosystems
23
23
  * @param {string} details the specific details that causes this error
24
+ * @param {string} classification the error classification determining if the error is user-actionable or not
24
25
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
25
26
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
26
27
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -35,6 +36,7 @@ export declare class UnparseableManifestError extends ProblemError {
35
36
  * @summary Unable to parse lock file
36
37
  * @category OpenSourceEcosystems
37
38
  * @param {string} details the specific details that causes this error
39
+ * @param {string} classification the error classification determining if the error is user-actionable or not
38
40
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
39
41
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
40
42
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -52,6 +54,7 @@ export declare class UnparseableLockFileError extends ProblemError {
52
54
  * @summary Unknown dependency version
53
55
  * @category OpenSourceEcosystems
54
56
  * @param {string} details the specific details that causes this error
57
+ * @param {string} classification the error classification determining if the error is user-actionable or not
55
58
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
56
59
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
57
60
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -66,6 +69,7 @@ export declare class UnknownDependencyVersionError extends ProblemError {
66
69
  * @summary Missing required request header
67
70
  * @category OpenSourceEcosystems
68
71
  * @param {string} details the specific details that causes this error
72
+ * @param {string} classification the error classification determining if the error is user-actionable or not
69
73
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
70
74
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
71
75
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -80,6 +84,7 @@ export declare class MissingHeaderError extends ProblemError {
80
84
  * @summary Payload missing required elements
81
85
  * @category OpenSourceEcosystems
82
86
  * @param {string} details the specific details that causes this error
87
+ * @param {string} classification the error classification determining if the error is user-actionable or not
83
88
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
84
89
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
85
90
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -94,6 +99,7 @@ export declare class MissingPayloadError extends ProblemError {
94
99
  * @summary Files cannot be processed
95
100
  * @category OpenSourceEcosystems
96
101
  * @param {string} details the specific details that causes this error
102
+ * @param {string} classification the error classification determining if the error is user-actionable or not
97
103
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
98
104
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
99
105
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -108,6 +114,7 @@ export declare class UnprocessableFileError extends ProblemError {
108
114
  * @summary Cannot get file from source
109
115
  * @category OpenSourceEcosystems
110
116
  * @param {string} details the specific details that causes this error
117
+ * @param {string} classification the error classification determining if the error is user-actionable or not
111
118
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
112
119
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
113
120
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -122,6 +129,7 @@ export declare class CannotGetFileFromSourceError extends ProblemError {
122
129
  * @summary Missing environment variable
123
130
  * @category OpenSourceEcosystems
124
131
  * @param {string} details the specific details that causes this error
132
+ * @param {string} classification the error classification determining if the error is user-actionable or not
125
133
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
126
134
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
127
135
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -139,6 +147,7 @@ export declare class MissingEnvironmentVariableError extends ProblemError {
139
147
  * @summary Unsupported manifest file type for remediation
140
148
  * @category OpenSourceEcosystems
141
149
  * @param {string} details the specific details that causes this error
150
+ * @param {string} classification the error classification determining if the error is user-actionable or not
142
151
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
143
152
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
144
153
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -153,6 +162,7 @@ export declare class UnsupportedManifestFileError extends ProblemError {
153
162
  * @summary Target framework not supported
154
163
  * @category OpenSourceEcosystems
155
164
  * @param {string} details the specific details that causes this error
165
+ * @param {string} classification the error classification determining if the error is user-actionable or not
156
166
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
157
167
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
158
168
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -185,6 +195,7 @@ export declare class UnsupportedTargetFrameworkError extends ProblemError {
185
195
  * @summary Your C# code is missing a static Main function
186
196
  * @category OpenSourceEcosystems
187
197
  * @param {string} details the specific details that causes this error
198
+ * @param {string} classification the error classification determining if the error is user-actionable or not
188
199
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
189
200
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
190
201
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -212,6 +223,7 @@ export declare class MissingStaticMainFunctionError extends ProblemError {
212
223
  * @summary The dotnet CLI is unable to generate a self-contained binary
213
224
  * @category OpenSourceEcosystems
214
225
  * @param {string} details the specific details that causes this error
226
+ * @param {string} classification the error classification determining if the error is user-actionable or not
215
227
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
216
228
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
217
229
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -229,6 +241,7 @@ export declare class PublishFailedError extends ProblemError {
229
241
  * @summary Failed to access private module
230
242
  * @category OpenSourceEcosystems
231
243
  * @param {string} details the specific details that causes this error
244
+ * @param {string} classification the error classification determining if the error is user-actionable or not
232
245
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
233
246
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
234
247
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -246,6 +259,7 @@ export declare class PrivateModuleError extends ProblemError {
246
259
  * @summary Go mod file not found
247
260
  * @category OpenSourceEcosystems
248
261
  * @param {string} details the specific details that causes this error
262
+ * @param {string} classification the error classification determining if the error is user-actionable or not
249
263
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
250
264
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
251
265
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -268,6 +282,7 @@ export declare class GoModFileMissingError extends ProblemError {
268
282
  * @summary OAuth re-authorization required
269
283
  * @category OpenSourceEcosystems
270
284
  * @param {string} details the specific details that causes this error
285
+ * @param {string} classification the error classification determining if the error is user-actionable or not
271
286
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
272
287
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
273
288
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -293,6 +308,7 @@ export declare class SsoReAuthRequiredError extends ProblemError {
293
308
  * @summary Your project repository is missing required files
294
309
  * @category OpenSourceEcosystems
295
310
  * @param {string} details the specific details that causes this error
311
+ * @param {string} classification the error classification determining if the error is user-actionable or not
296
312
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
297
313
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
298
314
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -320,6 +336,7 @@ export declare class IncompleteProjectError extends ProblemError {
320
336
  * @summary Your project repository has inconsistent vendoring information
321
337
  * @category OpenSourceEcosystems
322
338
  * @param {string} details the specific details that causes this error
339
+ * @param {string} classification the error classification determining if the error is user-actionable or not
323
340
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
324
341
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
325
342
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -336,6 +353,7 @@ export declare class InconsistentVendoringError extends ProblemError {
336
353
  * @summary Unsupported external file generation
337
354
  * @category OpenSourceEcosystems
338
355
  * @param {string} details the specific details that causes this error
356
+ * @param {string} classification the error classification determining if the error is user-actionable or not
339
357
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
340
358
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
341
359
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -350,6 +368,7 @@ export declare class UnsupportedExternalFileGenerationSCMError extends ProblemEr
350
368
  * @summary Missing property
351
369
  * @category OpenSourceEcosystems
352
370
  * @param {string} details the specific details that causes this error
371
+ * @param {string} classification the error classification determining if the error is user-actionable or not
353
372
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
354
373
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
355
374
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -364,6 +383,7 @@ export declare class MissingRequirementFromPomError extends ProblemError {
364
383
  * @summary Unable to resolve value for property
365
384
  * @category OpenSourceEcosystems
366
385
  * @param {string} details the specific details that causes this error
386
+ * @param {string} classification the error classification determining if the error is user-actionable or not
367
387
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
368
388
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
369
389
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -378,6 +398,7 @@ export declare class UnableToResolveValueForPropertyError extends ProblemError {
378
398
  * @summary Unable to resolve version for property
379
399
  * @category OpenSourceEcosystems
380
400
  * @param {string} details the specific details that causes this error
401
+ * @param {string} classification the error classification determining if the error is user-actionable or not
381
402
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
382
403
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
383
404
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -392,6 +413,7 @@ export declare class UnableToResolveVersionForPropertyError extends ProblemError
392
413
  * @summary Cyclic property detected in POM file
393
414
  * @category OpenSourceEcosystems
394
415
  * @param {string} details the specific details that causes this error
416
+ * @param {string} classification the error classification determining if the error is user-actionable or not
395
417
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
396
418
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
397
419
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -406,6 +428,7 @@ export declare class CyclicPropertyDetectedInPomFileError extends ProblemError {
406
428
  * @summary Error parsing the XML file
407
429
  * @category OpenSourceEcosystems
408
430
  * @param {string} details the specific details that causes this error
431
+ * @param {string} classification the error classification determining if the error is user-actionable or not
409
432
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
410
433
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
411
434
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -420,6 +443,7 @@ export declare class UnableToParseXMLError extends ProblemError {
420
443
  * @summary Invalid coordinates provided
421
444
  * @category OpenSourceEcosystems
422
445
  * @param {string} details the specific details that causes this error
446
+ * @param {string} classification the error classification determining if the error is user-actionable or not
423
447
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
424
448
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
425
449
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -434,6 +458,7 @@ export declare class InvalidCoordinatesError extends ProblemError {
434
458
  * @summary Skipping group
435
459
  * @category OpenSourceEcosystems
436
460
  * @param {string} details the specific details that causes this error
461
+ * @param {string} classification the error classification determining if the error is user-actionable or not
437
462
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
438
463
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
439
464
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -448,6 +473,7 @@ export declare class SkippedGroupError extends ProblemError {
448
473
  * @summary Pom file not found
449
474
  * @category OpenSourceEcosystems
450
475
  * @param {string} details the specific details that causes this error
476
+ * @param {string} classification the error classification determining if the error is user-actionable or not
451
477
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
452
478
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
453
479
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -462,6 +488,7 @@ export declare class PomFileNotFoundError extends ProblemError {
462
488
  * @summary Missing project from POM
463
489
  * @category OpenSourceEcosystems
464
490
  * @param {string} details the specific details that causes this error
491
+ * @param {string} classification the error classification determining if the error is user-actionable or not
465
492
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
466
493
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
467
494
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -476,6 +503,7 @@ export declare class MissingProjectFromPomError extends ProblemError {
476
503
  * @summary Cannot resolve the target POM from the input XML
477
504
  * @category OpenSourceEcosystems
478
505
  * @param {string} details the specific details that causes this error
506
+ * @param {string} classification the error classification determining if the error is user-actionable or not
479
507
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
480
508
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
481
509
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -490,6 +518,7 @@ export declare class CannotResolveTargetPomFromXmlError extends ProblemError {
490
518
  * @summary Cannot resolve the target POM from the repository
491
519
  * @category OpenSourceEcosystems
492
520
  * @param {string} details the specific details that causes this error
521
+ * @param {string} classification the error classification determining if the error is user-actionable or not
493
522
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
494
523
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
495
524
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -504,6 +533,7 @@ export declare class CannotResolveTargetPomFromRepoError extends ProblemError {
504
533
  * @summary Cannot get the build file repository
505
534
  * @category OpenSourceEcosystems
506
535
  * @param {string} details the specific details that causes this error
536
+ * @param {string} classification the error classification determining if the error is user-actionable or not
507
537
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
508
538
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
509
539
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -518,6 +548,7 @@ export declare class CannotGetBuildFileFromRepoError extends ProblemError {
518
548
  * @summary Unable to create hosted git info
519
549
  * @category OpenSourceEcosystems
520
550
  * @param {string} details the specific details that causes this error
551
+ * @param {string} classification the error classification determining if the error is user-actionable or not
521
552
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
522
553
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
523
554
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -532,6 +563,7 @@ export declare class CannotCreateGitHostError extends ProblemError {
532
563
  * @summary No released version for versions range
533
564
  * @category OpenSourceEcosystems
534
565
  * @param {string} details the specific details that causes this error
566
+ * @param {string} classification the error classification determining if the error is user-actionable or not
535
567
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
536
568
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
537
569
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -546,6 +578,7 @@ export declare class NoReleasedVersionForVersionsRangeError extends ProblemError
546
578
  * @summary Source is not supported
547
579
  * @category OpenSourceEcosystems
548
580
  * @param {string} details the specific details that causes this error
581
+ * @param {string} classification the error classification determining if the error is user-actionable or not
549
582
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
550
583
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
551
584
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -560,6 +593,7 @@ export declare class SourceNotSupportedError extends ProblemError {
560
593
  * @summary Timeout when processing the dependency tree
561
594
  * @category OpenSourceEcosystems
562
595
  * @param {string} details the specific details that causes this error
596
+ * @param {string} classification the error classification determining if the error is user-actionable or not
563
597
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
564
598
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
565
599
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -574,6 +608,7 @@ export declare class TimeoutWhenProcessingTheDepTreeError extends ProblemError {
574
608
  * @summary No repository found for A NPM package
575
609
  * @category OpenSourceEcosystems
576
610
  * @param {string} details the specific details that causes this error
611
+ * @param {string} classification the error classification determining if the error is user-actionable or not
577
612
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
578
613
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
579
614
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -588,6 +623,7 @@ export declare class NoRepoFoundForTheNPMPackageError extends ProblemError {
588
623
  * @summary Could not parse NPM registry URL
589
624
  * @category OpenSourceEcosystems
590
625
  * @param {string} details the specific details that causes this error
626
+ * @param {string} classification the error classification determining if the error is user-actionable or not
591
627
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
592
628
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
593
629
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -602,6 +638,7 @@ export declare class CouldNotParseNPMRegistryURLError extends ProblemError {
602
638
  * @summary Could not find a broker resolved URL
603
639
  * @category OpenSourceEcosystems
604
640
  * @param {string} details the specific details that causes this error
641
+ * @param {string} classification the error classification determining if the error is user-actionable or not
605
642
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
606
643
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
607
644
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -616,6 +653,7 @@ export declare class CouldNotFindBrokerURLError extends ProblemError {
616
653
  * @summary Unable to replace broker URL
617
654
  * @category OpenSourceEcosystems
618
655
  * @param {string} details the specific details that causes this error
656
+ * @param {string} classification the error classification determining if the error is user-actionable or not
619
657
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
620
658
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
621
659
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -630,6 +668,7 @@ export declare class UnableToReplaceBrokerURLError extends ProblemError {
630
668
  * @summary Bad NPM version
631
669
  * @category OpenSourceEcosystems
632
670
  * @param {string} details the specific details that causes this error
671
+ * @param {string} classification the error classification determining if the error is user-actionable or not
633
672
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
634
673
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
635
674
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -644,6 +683,7 @@ export declare class BadNPMVersionError extends ProblemError {
644
683
  * @summary Unknown blob encoding on Github
645
684
  * @category OpenSourceEcosystems
646
685
  * @param {string} details the specific details that causes this error
686
+ * @param {string} classification the error classification determining if the error is user-actionable or not
647
687
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
648
688
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
649
689
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -658,6 +698,7 @@ export declare class UnknownBlobEncodingOnGithubError extends ProblemError {
658
698
  * @summary No result from forked process
659
699
  * @category OpenSourceEcosystems
660
700
  * @param {string} details the specific details that causes this error
701
+ * @param {string} classification the error classification determining if the error is user-actionable or not
661
702
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
662
703
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
663
704
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -672,6 +713,7 @@ export declare class NoResultsFromForkerProcessesError extends ProblemError {
672
713
  * @summary Child Process Execution Error
673
714
  * @category OpenSourceEcosystems
674
715
  * @param {string} details the specific details that causes this error
716
+ * @param {string} classification the error classification determining if the error is user-actionable or not
675
717
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
676
718
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
677
719
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -686,6 +728,7 @@ export declare class ChildProcessExecutionError extends ProblemError {
686
728
  * @summary No valid package upgrades
687
729
  * @category OpenSourceEcosystems
688
730
  * @param {string} details the specific details that causes this error
731
+ * @param {string} classification the error classification determining if the error is user-actionable or not
689
732
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
690
733
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
691
734
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -700,6 +743,7 @@ export declare class NoValidPackageUpgradesError extends ProblemError {
700
743
  * @summary No dependency updates
701
744
  * @category OpenSourceEcosystems
702
745
  * @param {string} details the specific details that causes this error
746
+ * @param {string} classification the error classification determining if the error is user-actionable or not
703
747
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
704
748
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
705
749
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -714,6 +758,7 @@ export declare class NoDependencyUpdatesError extends ProblemError {
714
758
  * @summary Could not parse JSON file
715
759
  * @category OpenSourceEcosystems
716
760
  * @param {string} details the specific details that causes this error
761
+ * @param {string} classification the error classification determining if the error is user-actionable or not
717
762
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
718
763
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
719
764
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -728,6 +773,7 @@ export declare class CouldNotParseJSONFileError extends ProblemError {
728
773
  * @summary Could not Base64 encode
729
774
  * @category OpenSourceEcosystems
730
775
  * @param {string} details the specific details that causes this error
776
+ * @param {string} classification the error classification determining if the error is user-actionable or not
731
777
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
732
778
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
733
779
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -742,6 +788,7 @@ export declare class Base64EncodeError extends ProblemError {
742
788
  * @summary Could not Base64 decode
743
789
  * @category OpenSourceEcosystems
744
790
  * @param {string} details the specific details that causes this error
791
+ * @param {string} classification the error classification determining if the error is user-actionable or not
745
792
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
746
793
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
747
794
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -756,6 +803,7 @@ export declare class Base64DecodeError extends ProblemError {
756
803
  * @summary Missing supported file
757
804
  * @category OpenSourceEcosystems
758
805
  * @param {string} details the specific details that causes this error
806
+ * @param {string} classification the error classification determining if the error is user-actionable or not
759
807
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
760
808
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
761
809
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -770,6 +818,7 @@ export declare class MissingSupportedFileError extends ProblemError {
770
818
  * @summary Invalid configuration
771
819
  * @category OpenSourceEcosystems
772
820
  * @param {string} details the specific details that causes this error
821
+ * @param {string} classification the error classification determining if the error is user-actionable or not
773
822
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
774
823
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
775
824
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -787,6 +836,7 @@ export declare class InvalidConfigurationError extends ProblemError {
787
836
  * @summary Unsupported manifest file type for remediation
788
837
  * @category OpenSourceEcosystems
789
838
  * @param {string} details the specific details that causes this error
839
+ * @param {string} classification the error classification determining if the error is user-actionable or not
790
840
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
791
841
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
792
842
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -801,6 +851,7 @@ export declare class UnsupportedRequirementsFileError extends ProblemError {
801
851
  * @summary Received more manifests than expected
802
852
  * @category OpenSourceEcosystems
803
853
  * @param {string} details the specific details that causes this error
854
+ * @param {string} classification the error classification determining if the error is user-actionable or not
804
855
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
805
856
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
806
857
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -815,6 +866,7 @@ export declare class TooManyManifestFilesError extends ProblemError {
815
866
  * @summary Failed to apply dependency updates
816
867
  * @category OpenSourceEcosystems
817
868
  * @param {string} details the specific details that causes this error
869
+ * @param {string} classification the error classification determining if the error is user-actionable or not
818
870
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
819
871
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
820
872
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata