@snyk/error-catalog-nodejs-public 5.0.1 → 5.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/package.json +1 -1
  2. package/src/catalogs/Fix-error-catalog.d.ts +10 -10
  3. package/src/catalogs/Fix-error-catalog.js +21 -20
  4. package/src/catalogs/Fix-error-catalog.js.map +1 -1
  5. package/src/catalogs/IsolatedBuilds-error-catalog.d.ts +3 -3
  6. package/src/catalogs/IsolatedBuilds-error-catalog.js +7 -6
  7. package/src/catalogs/IsolatedBuilds-error-catalog.js.map +1 -1
  8. package/src/catalogs/OpenAPI-error-catalog.d.ts +8 -8
  9. package/src/catalogs/OpenAPI-error-catalog.js +17 -16
  10. package/src/catalogs/OpenAPI-error-catalog.js.map +1 -1
  11. package/src/catalogs/OpenSourceEcosystems-error-catalog.d.ts +67 -52
  12. package/src/catalogs/OpenSourceEcosystems-error-catalog.js +133 -105
  13. package/src/catalogs/OpenSourceEcosystems-error-catalog.js.map +1 -1
  14. package/src/catalogs/OpenSourceProjectIssues-error-catalog.d.ts +5 -5
  15. package/src/catalogs/OpenSourceProjectIssues-error-catalog.js +11 -10
  16. package/src/catalogs/OpenSourceProjectIssues-error-catalog.js.map +1 -1
  17. package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.d.ts +5 -5
  18. package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js +11 -10
  19. package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js.map +1 -1
  20. package/src/catalogs/OpenSourceUnmanaged-error-catalog.d.ts +2 -2
  21. package/src/catalogs/OpenSourceUnmanaged-error-catalog.js +5 -4
  22. package/src/catalogs/OpenSourceUnmanaged-error-catalog.js.map +1 -1
  23. package/src/catalogs/PurlVulnerabilityFetching-error-catalog.d.ts +20 -20
  24. package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js +41 -40
  25. package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js.map +1 -1
  26. package/src/catalogs/SbomExport-error-catalog.d.ts +9 -9
  27. package/src/catalogs/SbomExport-error-catalog.js +19 -18
  28. package/src/catalogs/SbomExport-error-catalog.js.map +1 -1
  29. package/src/catalogs/Snyk-error-catalog.d.ts +6 -6
  30. package/src/catalogs/Snyk-error-catalog.js +13 -12
  31. package/src/catalogs/Snyk-error-catalog.js.map +1 -1
  32. package/src/catalogs/error-codes.d.ts +1 -0
  33. package/src/catalogs/error-codes.js +1 -0
  34. package/src/catalogs/error-codes.js.map +1 -1
  35. package/src/problem-error.js +1 -0
  36. package/src/problem-error.js.map +1 -1
  37. package/src/types.d.ts +7 -1
  38. package/src/types.js +7 -1
  39. package/src/types.js.map +1 -1
@@ -21,7 +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
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
25
25
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
26
26
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
27
27
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -36,7 +36,7 @@ export declare class UnparseableManifestError extends ProblemError {
36
36
  * @summary Unable to parse lock file
37
37
  * @category OpenSourceEcosystems
38
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
39
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
40
40
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
41
41
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
42
42
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -54,7 +54,7 @@ export declare class UnparseableLockFileError extends ProblemError {
54
54
  * @summary Unknown dependency version
55
55
  * @category OpenSourceEcosystems
56
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
57
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
58
58
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
59
59
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
60
60
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -69,7 +69,7 @@ export declare class UnknownDependencyVersionError extends ProblemError {
69
69
  * @summary Missing required request header
70
70
  * @category OpenSourceEcosystems
71
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
72
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
73
73
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
74
74
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
75
75
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -84,7 +84,7 @@ export declare class MissingHeaderError extends ProblemError {
84
84
  * @summary Payload missing required elements
85
85
  * @category OpenSourceEcosystems
86
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
87
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
88
88
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
89
89
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
90
90
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -99,7 +99,7 @@ export declare class MissingPayloadError extends ProblemError {
99
99
  * @summary Files cannot be processed
100
100
  * @category OpenSourceEcosystems
101
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
102
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
103
103
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
104
104
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
105
105
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -114,7 +114,7 @@ export declare class UnprocessableFileError extends ProblemError {
114
114
  * @summary Cannot get file from source
115
115
  * @category OpenSourceEcosystems
116
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
117
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
118
118
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
119
119
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
120
120
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -129,7 +129,7 @@ export declare class CannotGetFileFromSourceError extends ProblemError {
129
129
  * @summary Missing environment variable
130
130
  * @category OpenSourceEcosystems
131
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
132
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
133
133
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
134
134
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
135
135
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -147,7 +147,7 @@ export declare class MissingEnvironmentVariableError extends ProblemError {
147
147
  * @summary Unsupported manifest file type for remediation
148
148
  * @category OpenSourceEcosystems
149
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
150
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
151
151
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
152
152
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
153
153
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -162,7 +162,7 @@ export declare class UnsupportedManifestFileError extends ProblemError {
162
162
  * @summary Target framework not supported
163
163
  * @category OpenSourceEcosystems
164
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
165
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
166
166
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
167
167
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
168
168
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -195,7 +195,7 @@ export declare class UnsupportedTargetFrameworkError extends ProblemError {
195
195
  * @summary Your C# code is missing a static Main function
196
196
  * @category OpenSourceEcosystems
197
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
198
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
199
199
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
200
200
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
201
201
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -223,7 +223,7 @@ export declare class MissingStaticMainFunctionError extends ProblemError {
223
223
  * @summary The dotnet CLI is unable to generate a self-contained binary
224
224
  * @category OpenSourceEcosystems
225
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
226
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
227
227
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
228
228
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
229
229
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -241,7 +241,7 @@ export declare class PublishFailedError extends ProblemError {
241
241
  * @summary Failed to access private module
242
242
  * @category OpenSourceEcosystems
243
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
244
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
245
245
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
246
246
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
247
247
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -259,7 +259,7 @@ export declare class PrivateModuleError extends ProblemError {
259
259
  * @summary Go mod file not found
260
260
  * @category OpenSourceEcosystems
261
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
262
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
263
263
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
264
264
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
265
265
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -282,7 +282,7 @@ export declare class GoModFileMissingError extends ProblemError {
282
282
  * @summary OAuth re-authorization required
283
283
  * @category OpenSourceEcosystems
284
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
285
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
286
286
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
287
287
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
288
288
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -308,7 +308,7 @@ export declare class SsoReAuthRequiredError extends ProblemError {
308
308
  * @summary Your project repository is missing required files
309
309
  * @category OpenSourceEcosystems
310
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
311
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
312
312
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
313
313
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
314
314
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -336,7 +336,7 @@ export declare class IncompleteProjectError extends ProblemError {
336
336
  * @summary Your project repository has inconsistent vendoring information
337
337
  * @category OpenSourceEcosystems
338
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
339
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
340
340
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
341
341
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
342
342
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -353,7 +353,7 @@ export declare class InconsistentVendoringError extends ProblemError {
353
353
  * @summary Unsupported external file generation
354
354
  * @category OpenSourceEcosystems
355
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
356
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
357
357
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
358
358
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
359
359
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -368,7 +368,7 @@ export declare class UnsupportedExternalFileGenerationSCMError extends ProblemEr
368
368
  * @summary Missing property
369
369
  * @category OpenSourceEcosystems
370
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
371
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
372
372
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
373
373
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
374
374
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -383,7 +383,7 @@ export declare class MissingRequirementFromPomError extends ProblemError {
383
383
  * @summary Unable to resolve value for property
384
384
  * @category OpenSourceEcosystems
385
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
386
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
387
387
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
388
388
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
389
389
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -398,7 +398,7 @@ export declare class UnableToResolveValueForPropertyError extends ProblemError {
398
398
  * @summary Unable to resolve version for property
399
399
  * @category OpenSourceEcosystems
400
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
401
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
402
402
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
403
403
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
404
404
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -413,7 +413,7 @@ export declare class UnableToResolveVersionForPropertyError extends ProblemError
413
413
  * @summary Cyclic property detected in POM file
414
414
  * @category OpenSourceEcosystems
415
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
416
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
417
417
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
418
418
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
419
419
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -428,7 +428,7 @@ export declare class CyclicPropertyDetectedInPomFileError extends ProblemError {
428
428
  * @summary Error parsing the XML file
429
429
  * @category OpenSourceEcosystems
430
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
431
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
432
432
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
433
433
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
434
434
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -443,7 +443,7 @@ export declare class UnableToParseXMLError extends ProblemError {
443
443
  * @summary Invalid coordinates provided
444
444
  * @category OpenSourceEcosystems
445
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
446
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
447
447
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
448
448
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
449
449
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -458,7 +458,7 @@ export declare class InvalidCoordinatesError extends ProblemError {
458
458
  * @summary Skipping group
459
459
  * @category OpenSourceEcosystems
460
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
461
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
462
462
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
463
463
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
464
464
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -473,7 +473,7 @@ export declare class SkippedGroupError extends ProblemError {
473
473
  * @summary Pom file not found
474
474
  * @category OpenSourceEcosystems
475
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
476
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
477
477
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
478
478
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
479
479
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -488,7 +488,7 @@ export declare class PomFileNotFoundError extends ProblemError {
488
488
  * @summary Missing project from POM
489
489
  * @category OpenSourceEcosystems
490
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
491
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
492
492
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
493
493
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
494
494
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -503,7 +503,7 @@ export declare class MissingProjectFromPomError extends ProblemError {
503
503
  * @summary Cannot resolve the target POM from the input XML
504
504
  * @category OpenSourceEcosystems
505
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
506
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
507
507
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
508
508
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
509
509
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -518,7 +518,7 @@ export declare class CannotResolveTargetPomFromXmlError extends ProblemError {
518
518
  * @summary Cannot resolve the target POM from the repository
519
519
  * @category OpenSourceEcosystems
520
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
521
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
522
522
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
523
523
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
524
524
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -533,7 +533,7 @@ export declare class CannotResolveTargetPomFromRepoError extends ProblemError {
533
533
  * @summary Cannot get the build file repository
534
534
  * @category OpenSourceEcosystems
535
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
536
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
537
537
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
538
538
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
539
539
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -548,7 +548,7 @@ export declare class CannotGetBuildFileFromRepoError extends ProblemError {
548
548
  * @summary Unable to create hosted git info
549
549
  * @category OpenSourceEcosystems
550
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
551
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
552
552
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
553
553
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
554
554
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -563,7 +563,7 @@ export declare class CannotCreateGitHostError extends ProblemError {
563
563
  * @summary No released version for versions range
564
564
  * @category OpenSourceEcosystems
565
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
566
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
567
567
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
568
568
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
569
569
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -578,7 +578,7 @@ export declare class NoReleasedVersionForVersionsRangeError extends ProblemError
578
578
  * @summary Source is not supported
579
579
  * @category OpenSourceEcosystems
580
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
581
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
582
582
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
583
583
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
584
584
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -593,7 +593,7 @@ export declare class SourceNotSupportedError extends ProblemError {
593
593
  * @summary Timeout when processing the dependency tree
594
594
  * @category OpenSourceEcosystems
595
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
596
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
597
597
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
598
598
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
599
599
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -608,7 +608,7 @@ export declare class TimeoutWhenProcessingTheDepTreeError extends ProblemError {
608
608
  * @summary No repository found for A NPM package
609
609
  * @category OpenSourceEcosystems
610
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
611
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
612
612
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
613
613
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
614
614
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -623,7 +623,7 @@ export declare class NoRepoFoundForTheNPMPackageError extends ProblemError {
623
623
  * @summary Could not parse NPM registry URL
624
624
  * @category OpenSourceEcosystems
625
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
626
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
627
627
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
628
628
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
629
629
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -638,7 +638,7 @@ export declare class CouldNotParseNPMRegistryURLError extends ProblemError {
638
638
  * @summary Could not find a broker resolved URL
639
639
  * @category OpenSourceEcosystems
640
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
641
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
642
642
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
643
643
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
644
644
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -653,7 +653,7 @@ export declare class CouldNotFindBrokerURLError extends ProblemError {
653
653
  * @summary Unable to replace broker URL
654
654
  * @category OpenSourceEcosystems
655
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
656
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
657
657
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
658
658
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
659
659
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -668,7 +668,7 @@ export declare class UnableToReplaceBrokerURLError extends ProblemError {
668
668
  * @summary Bad NPM version
669
669
  * @category OpenSourceEcosystems
670
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
671
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
672
672
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
673
673
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
674
674
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -683,7 +683,7 @@ export declare class BadNPMVersionError extends ProblemError {
683
683
  * @summary Unknown blob encoding on Github
684
684
  * @category OpenSourceEcosystems
685
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
686
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
687
687
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
688
688
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
689
689
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -698,7 +698,7 @@ export declare class UnknownBlobEncodingOnGithubError extends ProblemError {
698
698
  * @summary No result from forked process
699
699
  * @category OpenSourceEcosystems
700
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
701
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
702
702
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
703
703
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
704
704
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -713,7 +713,7 @@ export declare class NoResultsFromForkerProcessesError extends ProblemError {
713
713
  * @summary Child Process Execution Error
714
714
  * @category OpenSourceEcosystems
715
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
716
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
717
717
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
718
718
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
719
719
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -728,7 +728,7 @@ export declare class ChildProcessExecutionError extends ProblemError {
728
728
  * @summary No valid package upgrades
729
729
  * @category OpenSourceEcosystems
730
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
731
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
732
732
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
733
733
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
734
734
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -743,7 +743,7 @@ export declare class NoValidPackageUpgradesError extends ProblemError {
743
743
  * @summary No dependency updates
744
744
  * @category OpenSourceEcosystems
745
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
746
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
747
747
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
748
748
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
749
749
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -758,7 +758,7 @@ export declare class NoDependencyUpdatesError extends ProblemError {
758
758
  * @summary Could not parse JSON file
759
759
  * @category OpenSourceEcosystems
760
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
761
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
762
762
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
763
763
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
764
764
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -773,7 +773,7 @@ export declare class CouldNotParseJSONFileError extends ProblemError {
773
773
  * @summary Could not Base64 encode
774
774
  * @category OpenSourceEcosystems
775
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
776
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
777
777
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
778
778
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
779
779
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -788,7 +788,7 @@ export declare class Base64EncodeError extends ProblemError {
788
788
  * @summary Could not Base64 decode
789
789
  * @category OpenSourceEcosystems
790
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
791
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
792
792
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
793
793
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
794
794
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -803,7 +803,7 @@ export declare class Base64DecodeError extends ProblemError {
803
803
  * @summary Missing supported file
804
804
  * @category OpenSourceEcosystems
805
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
806
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
807
807
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
808
808
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
809
809
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -818,7 +818,7 @@ export declare class MissingSupportedFileError extends ProblemError {
818
818
  * @summary Invalid configuration
819
819
  * @category OpenSourceEcosystems
820
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
821
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
822
822
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
823
823
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
824
824
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -836,7 +836,7 @@ export declare class InvalidConfigurationError extends ProblemError {
836
836
  * @summary Unsupported manifest file type for remediation
837
837
  * @category OpenSourceEcosystems
838
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
839
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
840
840
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
841
841
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
842
842
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -851,7 +851,7 @@ export declare class UnsupportedRequirementsFileError extends ProblemError {
851
851
  * @summary Received more manifests than expected
852
852
  * @category OpenSourceEcosystems
853
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
854
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
855
855
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
856
856
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
857
857
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -866,7 +866,7 @@ export declare class TooManyManifestFilesError extends ProblemError {
866
866
  * @summary Failed to apply dependency updates
867
867
  * @category OpenSourceEcosystems
868
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
869
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
870
870
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
871
871
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
872
872
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -874,3 +874,18 @@ export declare class TooManyManifestFilesError extends ProblemError {
874
874
  export declare class FailedToApplyDependencyUpdatesError extends ProblemError {
875
875
  constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
876
876
  }
877
+ /**
878
+ * @class
879
+ * @name NoMatchingDistributionError
880
+ * @description One or more of the packages require a different Python version.
881
+ * @summary No matching distribution found for one or more of the packages
882
+ * @category OpenSourceEcosystems
883
+ * @param {string} details the specific details that causes this error
884
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
885
+ * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
886
+ * @param {Error} [cause] the `Error` type that caused this error to be thrown
887
+ * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
888
+ */
889
+ export declare class NoMatchingDistributionError extends ProblemError {
890
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
891
+ }