@snyk/error-catalog-nodejs-public 5.9.0 → 5.9.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 (40) hide show
  1. package/package.json +1 -1
  2. package/src/catalogs/Code-error-catalog.d.ts +3 -3
  3. package/src/catalogs/Code-error-catalog.js +6 -6
  4. package/src/catalogs/Code-error-catalog.js.map +1 -1
  5. package/src/catalogs/Fix-error-catalog.d.ts +11 -11
  6. package/src/catalogs/Fix-error-catalog.js +22 -22
  7. package/src/catalogs/Fix-error-catalog.js.map +1 -1
  8. package/src/catalogs/IsolatedBuilds-error-catalog.d.ts +3 -3
  9. package/src/catalogs/IsolatedBuilds-error-catalog.js +6 -6
  10. package/src/catalogs/IsolatedBuilds-error-catalog.js.map +1 -1
  11. package/src/catalogs/OpenAPI-error-catalog.d.ts +8 -8
  12. package/src/catalogs/OpenAPI-error-catalog.js +16 -16
  13. package/src/catalogs/OpenAPI-error-catalog.js.map +1 -1
  14. package/src/catalogs/OpenSourceEcosystems-error-catalog.d.ts +109 -54
  15. package/src/catalogs/OpenSourceEcosystems-error-catalog.js +179 -110
  16. package/src/catalogs/OpenSourceEcosystems-error-catalog.js.map +1 -1
  17. package/src/catalogs/OpenSourceProjectIssues-error-catalog.d.ts +5 -5
  18. package/src/catalogs/OpenSourceProjectIssues-error-catalog.js +10 -10
  19. package/src/catalogs/OpenSourceProjectIssues-error-catalog.js.map +1 -1
  20. package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.d.ts +5 -5
  21. package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js +10 -10
  22. package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js.map +1 -1
  23. package/src/catalogs/OpenSourceUnmanaged-error-catalog.d.ts +2 -2
  24. package/src/catalogs/OpenSourceUnmanaged-error-catalog.js +4 -4
  25. package/src/catalogs/OpenSourceUnmanaged-error-catalog.js.map +1 -1
  26. package/src/catalogs/PRChecks-error-catalog.d.ts +11 -11
  27. package/src/catalogs/PRChecks-error-catalog.js +22 -22
  28. package/src/catalogs/PRChecks-error-catalog.js.map +1 -1
  29. package/src/catalogs/PurlVulnerabilityFetching-error-catalog.d.ts +19 -19
  30. package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js +38 -38
  31. package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js.map +1 -1
  32. package/src/catalogs/SbomExport-error-catalog.d.ts +9 -9
  33. package/src/catalogs/SbomExport-error-catalog.js +18 -18
  34. package/src/catalogs/SbomExport-error-catalog.js.map +1 -1
  35. package/src/catalogs/Snyk-error-catalog.d.ts +6 -6
  36. package/src/catalogs/Snyk-error-catalog.js +12 -12
  37. package/src/catalogs/Snyk-error-catalog.js.map +1 -1
  38. package/src/catalogs/error-codes.d.ts +1 -0
  39. package/src/catalogs/error-codes.js +1 -0
  40. package/src/catalogs/error-codes.js.map +1 -1
@@ -27,7 +27,7 @@ import { ProblemError } from '../problem-error';
27
27
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
28
28
  */
29
29
  export declare class UnparseableManifestError extends ProblemError {
30
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
30
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
31
31
  }
32
32
  /**
33
33
  * @class
@@ -42,7 +42,7 @@ export declare class UnparseableManifestError extends ProblemError {
42
42
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
43
43
  */
44
44
  export declare class UnparseableLockFileError extends ProblemError {
45
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
45
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
46
46
  }
47
47
  /**
48
48
  * @class
@@ -60,7 +60,7 @@ export declare class UnparseableLockFileError extends ProblemError {
60
60
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
61
61
  */
62
62
  export declare class UnknownDependencyVersionError extends ProblemError {
63
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
63
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
64
64
  }
65
65
  /**
66
66
  * @class
@@ -75,7 +75,7 @@ export declare class UnknownDependencyVersionError extends ProblemError {
75
75
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
76
76
  */
77
77
  export declare class MissingHeaderError extends ProblemError {
78
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
78
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
79
79
  }
80
80
  /**
81
81
  * @class
@@ -90,7 +90,7 @@ export declare class MissingHeaderError extends ProblemError {
90
90
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
91
91
  */
92
92
  export declare class MissingPayloadError extends ProblemError {
93
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
93
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
94
94
  }
95
95
  /**
96
96
  * @class
@@ -105,7 +105,7 @@ export declare class MissingPayloadError extends ProblemError {
105
105
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
106
106
  */
107
107
  export declare class UnprocessableFileError extends ProblemError {
108
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
108
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
109
109
  }
110
110
  /**
111
111
  * @class
@@ -120,7 +120,7 @@ export declare class UnprocessableFileError extends ProblemError {
120
120
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
121
121
  */
122
122
  export declare class CannotGetFileFromSourceError extends ProblemError {
123
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
123
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
124
124
  }
125
125
  /**
126
126
  * @class
@@ -135,7 +135,7 @@ export declare class CannotGetFileFromSourceError extends ProblemError {
135
135
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
136
136
  */
137
137
  export declare class MissingEnvironmentVariableError extends ProblemError {
138
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
138
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
139
139
  }
140
140
  /**
141
141
  * @class
@@ -153,7 +153,7 @@ export declare class MissingEnvironmentVariableError extends ProblemError {
153
153
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
154
154
  */
155
155
  export declare class UnsupportedManifestFileError extends ProblemError {
156
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
156
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
157
157
  }
158
158
  /**
159
159
  * @class
@@ -168,7 +168,7 @@ export declare class UnsupportedManifestFileError extends ProblemError {
168
168
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
169
169
  */
170
170
  export declare class UnsupportedTargetFrameworkError extends ProblemError {
171
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
171
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
172
172
  }
173
173
  /**
174
174
  * @class
@@ -201,7 +201,7 @@ export declare class UnsupportedTargetFrameworkError extends ProblemError {
201
201
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
202
202
  */
203
203
  export declare class MissingStaticMainFunctionError extends ProblemError {
204
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
204
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
205
205
  }
206
206
  /**
207
207
  * @class
@@ -229,7 +229,62 @@ export declare class MissingStaticMainFunctionError extends ProblemError {
229
229
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
230
230
  */
231
231
  export declare class PublishFailedError extends ProblemError {
232
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
232
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
233
+ }
234
+ /**
235
+ * @class
236
+ * @name MissingMSBuildConditionError
237
+ * @description The `dotnet` tool was unable to locate the `.targets`, `.csproj` or `.props` file responsible for one or more MSBuild conditions in your project file.
238
+ *
239
+ * The tool encountered an error like
240
+ * ```
241
+ * /path/to/file/project.csproj(33,13): error MSB4100: Expected "$(SomeCondition)" to evaluate to a boolean instead of "", in condition "!$(SomeCondition)".
242
+ * ```
243
+ *
244
+ * This means the condition definition is missing in the project file that is currently being restored and in any project linked to it from there.
245
+ *
246
+ * Snyk can scan only the project files accessible in the current repository or the private dependencies available to Snyk.
247
+ *
248
+ * For example, if your code has the following structure:
249
+ *
250
+ * ```title=project.targets
251
+ * <Project>
252
+ * <PropertyGroup>
253
+ * <SomeCondition Condition="'$(SomeCondition)' == ''">false</SomeCondition>
254
+ * </PropertyGroup>
255
+ * </Project>
256
+ * ```
257
+ *
258
+ * And
259
+ *
260
+ * ```title=project.csproj
261
+ * <Project Sdk='Microsoft.NET.Sdk'>
262
+ * <Import Project='..\external-libraries\some-library\project.targets' />
263
+ * <PropertyGroup>
264
+ * <TargetFrameworks>net8.0</TargetFrameworks>
265
+ * </PropertyGroup>
266
+ * <ItemGroup Condition='!$(SomeCondition)'>
267
+ * <PackageReference Include='Newtonsoft.Json' Version='13.0.3' />
268
+ * </ItemGroup>
269
+ * </Project>
270
+ * ```
271
+ *
272
+ * And `external-libraries` is not a part of your repository currently being scanned, Snyk is not able to find it.
273
+ *
274
+ * This error occurs when your code depends on external libraries that are added to or generated from your source code using external tools unknown to Snyk or as part of a build step in your build or a deployment pipeline.
275
+ *
276
+ * See more:
277
+ * - [https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-conditional-constructs](https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-conditional-constructs)
278
+ * @summary Missing MSBuild Condition Construct in project file
279
+ * @category OpenSourceEcosystems
280
+ * @param {string} details the specific details that causes this error
281
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
282
+ * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
283
+ * @param {Error} [cause] the `Error` type that caused this error to be thrown
284
+ * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
285
+ */
286
+ export declare class MissingMSBuildConditionError extends ProblemError {
287
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
233
288
  }
234
289
  /**
235
290
  * @class
@@ -247,7 +302,7 @@ export declare class PublishFailedError extends ProblemError {
247
302
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
248
303
  */
249
304
  export declare class PrivateModuleError extends ProblemError {
250
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
305
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
251
306
  }
252
307
  /**
253
308
  * @class
@@ -265,7 +320,7 @@ export declare class PrivateModuleError extends ProblemError {
265
320
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
266
321
  */
267
322
  export declare class GoModFileMissingError extends ProblemError {
268
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
323
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
269
324
  }
270
325
  /**
271
326
  * @class
@@ -288,7 +343,7 @@ export declare class GoModFileMissingError extends ProblemError {
288
343
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
289
344
  */
290
345
  export declare class SsoReAuthRequiredError extends ProblemError {
291
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
346
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
292
347
  }
293
348
  /**
294
349
  * @class
@@ -314,7 +369,7 @@ export declare class SsoReAuthRequiredError extends ProblemError {
314
369
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
315
370
  */
316
371
  export declare class IncompleteProjectError extends ProblemError {
317
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
372
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
318
373
  }
319
374
  /**
320
375
  * @class
@@ -342,7 +397,7 @@ export declare class IncompleteProjectError extends ProblemError {
342
397
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
343
398
  */
344
399
  export declare class InconsistentVendoringError extends ProblemError {
345
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
400
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
346
401
  }
347
402
  /**
348
403
  * @class
@@ -359,7 +414,7 @@ export declare class InconsistentVendoringError extends ProblemError {
359
414
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
360
415
  */
361
416
  export declare class UnsupportedExternalFileGenerationSCMError extends ProblemError {
362
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
417
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
363
418
  }
364
419
  /**
365
420
  * @class
@@ -382,7 +437,7 @@ export declare class UnsupportedExternalFileGenerationSCMError extends ProblemEr
382
437
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
383
438
  */
384
439
  export declare class UnableToAccessPrivateDepsError extends ProblemError {
385
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
440
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
386
441
  }
387
442
  /**
388
443
  * @class
@@ -397,7 +452,7 @@ export declare class UnableToAccessPrivateDepsError extends ProblemError {
397
452
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
398
453
  */
399
454
  export declare class MissingRequirementFromPomError extends ProblemError {
400
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
455
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
401
456
  }
402
457
  /**
403
458
  * @class
@@ -412,7 +467,7 @@ export declare class MissingRequirementFromPomError extends ProblemError {
412
467
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
413
468
  */
414
469
  export declare class UnableToResolveValueForPropertyError extends ProblemError {
415
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
470
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
416
471
  }
417
472
  /**
418
473
  * @class
@@ -427,7 +482,7 @@ export declare class UnableToResolveValueForPropertyError extends ProblemError {
427
482
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
428
483
  */
429
484
  export declare class UnableToResolveVersionForPropertyError extends ProblemError {
430
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
485
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
431
486
  }
432
487
  /**
433
488
  * @class
@@ -442,7 +497,7 @@ export declare class UnableToResolveVersionForPropertyError extends ProblemError
442
497
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
443
498
  */
444
499
  export declare class CyclicPropertyDetectedInPomFileError extends ProblemError {
445
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
500
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
446
501
  }
447
502
  /**
448
503
  * @class
@@ -457,7 +512,7 @@ export declare class CyclicPropertyDetectedInPomFileError extends ProblemError {
457
512
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
458
513
  */
459
514
  export declare class UnableToParseXMLError extends ProblemError {
460
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
515
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
461
516
  }
462
517
  /**
463
518
  * @class
@@ -472,7 +527,7 @@ export declare class UnableToParseXMLError extends ProblemError {
472
527
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
473
528
  */
474
529
  export declare class InvalidCoordinatesError extends ProblemError {
475
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
530
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
476
531
  }
477
532
  /**
478
533
  * @class
@@ -487,7 +542,7 @@ export declare class InvalidCoordinatesError extends ProblemError {
487
542
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
488
543
  */
489
544
  export declare class SkippedGroupError extends ProblemError {
490
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
545
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
491
546
  }
492
547
  /**
493
548
  * @class
@@ -502,7 +557,7 @@ export declare class SkippedGroupError extends ProblemError {
502
557
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
503
558
  */
504
559
  export declare class PomFileNotFoundError extends ProblemError {
505
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
560
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
506
561
  }
507
562
  /**
508
563
  * @class
@@ -517,7 +572,7 @@ export declare class PomFileNotFoundError extends ProblemError {
517
572
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
518
573
  */
519
574
  export declare class MissingProjectFromPomError extends ProblemError {
520
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
575
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
521
576
  }
522
577
  /**
523
578
  * @class
@@ -532,7 +587,7 @@ export declare class MissingProjectFromPomError extends ProblemError {
532
587
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
533
588
  */
534
589
  export declare class CannotResolveTargetPomFromXmlError extends ProblemError {
535
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
590
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
536
591
  }
537
592
  /**
538
593
  * @class
@@ -547,7 +602,7 @@ export declare class CannotResolveTargetPomFromXmlError extends ProblemError {
547
602
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
548
603
  */
549
604
  export declare class CannotResolveTargetPomFromRepoError extends ProblemError {
550
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
605
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
551
606
  }
552
607
  /**
553
608
  * @class
@@ -562,7 +617,7 @@ export declare class CannotResolveTargetPomFromRepoError extends ProblemError {
562
617
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
563
618
  */
564
619
  export declare class CannotGetBuildFileFromRepoError extends ProblemError {
565
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
620
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
566
621
  }
567
622
  /**
568
623
  * @class
@@ -577,7 +632,7 @@ export declare class CannotGetBuildFileFromRepoError extends ProblemError {
577
632
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
578
633
  */
579
634
  export declare class CannotCreateGitHostError extends ProblemError {
580
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
635
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
581
636
  }
582
637
  /**
583
638
  * @class
@@ -592,7 +647,7 @@ export declare class CannotCreateGitHostError extends ProblemError {
592
647
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
593
648
  */
594
649
  export declare class NoReleasedVersionForVersionsRangeError extends ProblemError {
595
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
650
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
596
651
  }
597
652
  /**
598
653
  * @class
@@ -607,7 +662,7 @@ export declare class NoReleasedVersionForVersionsRangeError extends ProblemError
607
662
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
608
663
  */
609
664
  export declare class SourceNotSupportedError extends ProblemError {
610
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
665
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
611
666
  }
612
667
  /**
613
668
  * @class
@@ -622,7 +677,7 @@ export declare class SourceNotSupportedError extends ProblemError {
622
677
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
623
678
  */
624
679
  export declare class TimeoutWhenProcessingTheDepTreeError extends ProblemError {
625
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
680
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
626
681
  }
627
682
  /**
628
683
  * @class
@@ -637,7 +692,7 @@ export declare class TimeoutWhenProcessingTheDepTreeError extends ProblemError {
637
692
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
638
693
  */
639
694
  export declare class NoRepoFoundForTheNPMPackageError extends ProblemError {
640
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
695
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
641
696
  }
642
697
  /**
643
698
  * @class
@@ -652,7 +707,7 @@ export declare class NoRepoFoundForTheNPMPackageError extends ProblemError {
652
707
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
653
708
  */
654
709
  export declare class CouldNotParseNPMRegistryURLError extends ProblemError {
655
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
710
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
656
711
  }
657
712
  /**
658
713
  * @class
@@ -667,7 +722,7 @@ export declare class CouldNotParseNPMRegistryURLError extends ProblemError {
667
722
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
668
723
  */
669
724
  export declare class CouldNotFindBrokerURLError extends ProblemError {
670
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
725
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
671
726
  }
672
727
  /**
673
728
  * @class
@@ -682,7 +737,7 @@ export declare class CouldNotFindBrokerURLError extends ProblemError {
682
737
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
683
738
  */
684
739
  export declare class UnableToReplaceBrokerURLError extends ProblemError {
685
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
740
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
686
741
  }
687
742
  /**
688
743
  * @class
@@ -697,7 +752,7 @@ export declare class UnableToReplaceBrokerURLError extends ProblemError {
697
752
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
698
753
  */
699
754
  export declare class BadNPMVersionError extends ProblemError {
700
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
755
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
701
756
  }
702
757
  /**
703
758
  * @class
@@ -712,7 +767,7 @@ export declare class BadNPMVersionError extends ProblemError {
712
767
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
713
768
  */
714
769
  export declare class UnknownBlobEncodingOnGithubError extends ProblemError {
715
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
770
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
716
771
  }
717
772
  /**
718
773
  * @class
@@ -727,7 +782,7 @@ export declare class UnknownBlobEncodingOnGithubError extends ProblemError {
727
782
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
728
783
  */
729
784
  export declare class NoResultsFromForkerProcessesError extends ProblemError {
730
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
785
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
731
786
  }
732
787
  /**
733
788
  * @class
@@ -742,7 +797,7 @@ export declare class NoResultsFromForkerProcessesError extends ProblemError {
742
797
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
743
798
  */
744
799
  export declare class ChildProcessExecutionError extends ProblemError {
745
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
800
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
746
801
  }
747
802
  /**
748
803
  * @class
@@ -757,7 +812,7 @@ export declare class ChildProcessExecutionError extends ProblemError {
757
812
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
758
813
  */
759
814
  export declare class NoValidPackageUpgradesError extends ProblemError {
760
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
815
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
761
816
  }
762
817
  /**
763
818
  * @class
@@ -772,7 +827,7 @@ export declare class NoValidPackageUpgradesError extends ProblemError {
772
827
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
773
828
  */
774
829
  export declare class NoDependencyUpdatesError extends ProblemError {
775
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
830
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
776
831
  }
777
832
  /**
778
833
  * @class
@@ -787,7 +842,7 @@ export declare class NoDependencyUpdatesError extends ProblemError {
787
842
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
788
843
  */
789
844
  export declare class CouldNotParseJSONFileError extends ProblemError {
790
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
845
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
791
846
  }
792
847
  /**
793
848
  * @class
@@ -802,7 +857,7 @@ export declare class CouldNotParseJSONFileError extends ProblemError {
802
857
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
803
858
  */
804
859
  export declare class Base64EncodeError extends ProblemError {
805
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
860
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
806
861
  }
807
862
  /**
808
863
  * @class
@@ -817,7 +872,7 @@ export declare class Base64EncodeError extends ProblemError {
817
872
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
818
873
  */
819
874
  export declare class Base64DecodeError extends ProblemError {
820
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
875
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
821
876
  }
822
877
  /**
823
878
  * @class
@@ -832,7 +887,7 @@ export declare class Base64DecodeError extends ProblemError {
832
887
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
833
888
  */
834
889
  export declare class MissingSupportedFileError extends ProblemError {
835
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
890
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
836
891
  }
837
892
  /**
838
893
  * @class
@@ -847,7 +902,7 @@ export declare class MissingSupportedFileError extends ProblemError {
847
902
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
848
903
  */
849
904
  export declare class InvalidConfigurationError extends ProblemError {
850
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
905
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
851
906
  }
852
907
  /**
853
908
  * @class
@@ -865,7 +920,7 @@ export declare class InvalidConfigurationError extends ProblemError {
865
920
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
866
921
  */
867
922
  export declare class UnsupportedRequirementsFileError extends ProblemError {
868
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
923
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
869
924
  }
870
925
  /**
871
926
  * @class
@@ -880,7 +935,7 @@ export declare class UnsupportedRequirementsFileError extends ProblemError {
880
935
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
881
936
  */
882
937
  export declare class TooManyManifestFilesError extends ProblemError {
883
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
938
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
884
939
  }
885
940
  /**
886
941
  * @class
@@ -895,7 +950,7 @@ export declare class TooManyManifestFilesError extends ProblemError {
895
950
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
896
951
  */
897
952
  export declare class FailedToApplyDependencyUpdatesError extends ProblemError {
898
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
953
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
899
954
  }
900
955
  /**
901
956
  * @class
@@ -912,5 +967,5 @@ export declare class FailedToApplyDependencyUpdatesError extends ProblemError {
912
967
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
913
968
  */
914
969
  export declare class NoMatchingPythonDistributionError extends ProblemError {
915
- constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
970
+ constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
916
971
  }