@snyk/error-catalog-nodejs-public 5.8.0 → 5.9.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.
- package/package.json +1 -1
- package/src/catalogs/Code-error-catalog.d.ts +22 -2
- package/src/catalogs/Code-error-catalog.js +39 -5
- package/src/catalogs/Code-error-catalog.js.map +1 -1
- package/src/catalogs/Fix-error-catalog.d.ts +11 -11
- package/src/catalogs/Fix-error-catalog.js +22 -22
- package/src/catalogs/Fix-error-catalog.js.map +1 -1
- package/src/catalogs/IsolatedBuilds-error-catalog.d.ts +3 -3
- package/src/catalogs/IsolatedBuilds-error-catalog.js +6 -6
- package/src/catalogs/IsolatedBuilds-error-catalog.js.map +1 -1
- package/src/catalogs/OpenAPI-error-catalog.d.ts +8 -8
- package/src/catalogs/OpenAPI-error-catalog.js +16 -16
- package/src/catalogs/OpenAPI-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceEcosystems-error-catalog.d.ts +54 -54
- package/src/catalogs/OpenSourceEcosystems-error-catalog.js +108 -108
- package/src/catalogs/OpenSourceEcosystems-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.d.ts +5 -5
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.js +10 -10
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.d.ts +5 -5
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js +10 -10
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.d.ts +2 -2
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.js +4 -4
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.js.map +1 -1
- package/src/catalogs/PRChecks-error-catalog.d.ts +11 -11
- package/src/catalogs/PRChecks-error-catalog.js +22 -22
- package/src/catalogs/PRChecks-error-catalog.js.map +1 -1
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.d.ts +19 -19
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js +38 -38
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js.map +1 -1
- package/src/catalogs/SbomExport-error-catalog.d.ts +9 -9
- package/src/catalogs/SbomExport-error-catalog.js +18 -18
- package/src/catalogs/SbomExport-error-catalog.js.map +1 -1
- package/src/catalogs/Snyk-error-catalog.d.ts +6 -6
- package/src/catalogs/Snyk-error-catalog.js +12 -12
- package/src/catalogs/Snyk-error-catalog.js.map +1 -1
- package/src/catalogs/error-codes.d.ts +1 -0
- package/src/catalogs/error-codes.js +1 -0
- package/src/catalogs/error-codes.js.map +1 -1
|
@@ -34,7 +34,7 @@ const problem_error_1 = require("../problem-error");
|
|
|
34
34
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
35
35
|
*/
|
|
36
36
|
class BadRequestError extends problem_error_1.ProblemError {
|
|
37
|
-
constructor(details, additionalData, cause, instance) {
|
|
37
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
38
38
|
super({
|
|
39
39
|
title: 'Bad request',
|
|
40
40
|
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0001',
|
|
@@ -45,7 +45,7 @@ class BadRequestError extends problem_error_1.ProblemError {
|
|
|
45
45
|
instance,
|
|
46
46
|
}, details, Object.assign({ links: [
|
|
47
47
|
'https://docs.snyk.io/snyk-api-info/getting-started-using-snyk-rest-api ',
|
|
48
|
-
] }, additionalData), cause);
|
|
48
|
+
] }, additionalData), cause, logs);
|
|
49
49
|
this.name = this.constructor.name;
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -63,7 +63,7 @@ exports.BadRequestError = BadRequestError;
|
|
|
63
63
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
64
64
|
*/
|
|
65
65
|
class ForbiddenError extends problem_error_1.ProblemError {
|
|
66
|
-
constructor(details, additionalData, cause, instance) {
|
|
66
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
67
67
|
super({
|
|
68
68
|
title: 'Forbidden',
|
|
69
69
|
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0002',
|
|
@@ -72,7 +72,7 @@ class ForbiddenError extends problem_error_1.ProblemError {
|
|
|
72
72
|
level: 'warn',
|
|
73
73
|
classification: types_1.Classification.ACTIONABLE,
|
|
74
74
|
instance,
|
|
75
|
-
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
75
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
76
76
|
this.name = this.constructor.name;
|
|
77
77
|
}
|
|
78
78
|
}
|
|
@@ -90,7 +90,7 @@ exports.ForbiddenError = ForbiddenError;
|
|
|
90
90
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
91
91
|
*/
|
|
92
92
|
class NotAcceptableError extends problem_error_1.ProblemError {
|
|
93
|
-
constructor(details, additionalData, cause, instance) {
|
|
93
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
94
94
|
super({
|
|
95
95
|
title: 'Not acceptable',
|
|
96
96
|
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0003',
|
|
@@ -99,7 +99,7 @@ class NotAcceptableError extends problem_error_1.ProblemError {
|
|
|
99
99
|
level: 'warn',
|
|
100
100
|
classification: types_1.Classification.ACTIONABLE,
|
|
101
101
|
instance,
|
|
102
|
-
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
102
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
103
103
|
this.name = this.constructor.name;
|
|
104
104
|
}
|
|
105
105
|
}
|
|
@@ -117,7 +117,7 @@ exports.NotAcceptableError = NotAcceptableError;
|
|
|
117
117
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
118
118
|
*/
|
|
119
119
|
class NotFoundError extends problem_error_1.ProblemError {
|
|
120
|
-
constructor(details, additionalData, cause, instance) {
|
|
120
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
121
121
|
super({
|
|
122
122
|
title: 'Not found',
|
|
123
123
|
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0004',
|
|
@@ -126,7 +126,7 @@ class NotFoundError extends problem_error_1.ProblemError {
|
|
|
126
126
|
level: 'warn',
|
|
127
127
|
classification: types_1.Classification.ACTIONABLE,
|
|
128
128
|
instance,
|
|
129
|
-
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
129
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
130
130
|
this.name = this.constructor.name;
|
|
131
131
|
}
|
|
132
132
|
}
|
|
@@ -144,7 +144,7 @@ exports.NotFoundError = NotFoundError;
|
|
|
144
144
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
145
145
|
*/
|
|
146
146
|
class MethodNotAllowedError extends problem_error_1.ProblemError {
|
|
147
|
-
constructor(details, additionalData, cause, instance) {
|
|
147
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
148
148
|
super({
|
|
149
149
|
title: 'Method not allowed',
|
|
150
150
|
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0005',
|
|
@@ -153,7 +153,7 @@ class MethodNotAllowedError extends problem_error_1.ProblemError {
|
|
|
153
153
|
level: 'warn',
|
|
154
154
|
classification: types_1.Classification.ACTIONABLE,
|
|
155
155
|
instance,
|
|
156
|
-
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
156
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
157
157
|
this.name = this.constructor.name;
|
|
158
158
|
}
|
|
159
159
|
}
|
|
@@ -171,7 +171,7 @@ exports.MethodNotAllowedError = MethodNotAllowedError;
|
|
|
171
171
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
172
172
|
*/
|
|
173
173
|
class RequestEntityTooLargeError extends problem_error_1.ProblemError {
|
|
174
|
-
constructor(details, additionalData, cause, instance) {
|
|
174
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
175
175
|
super({
|
|
176
176
|
title: 'Request entity too large',
|
|
177
177
|
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0006',
|
|
@@ -180,7 +180,7 @@ class RequestEntityTooLargeError extends problem_error_1.ProblemError {
|
|
|
180
180
|
level: 'warn',
|
|
181
181
|
classification: types_1.Classification.ACTIONABLE,
|
|
182
182
|
instance,
|
|
183
|
-
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
183
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
184
184
|
this.name = this.constructor.name;
|
|
185
185
|
}
|
|
186
186
|
}
|
|
@@ -201,7 +201,7 @@ exports.RequestEntityTooLargeError = RequestEntityTooLargeError;
|
|
|
201
201
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
202
202
|
*/
|
|
203
203
|
class UnauthorizedError extends problem_error_1.ProblemError {
|
|
204
|
-
constructor(details, additionalData, cause, instance) {
|
|
204
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
205
205
|
super({
|
|
206
206
|
title: 'Unauthorized',
|
|
207
207
|
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0007',
|
|
@@ -212,7 +212,7 @@ class UnauthorizedError extends problem_error_1.ProblemError {
|
|
|
212
212
|
instance,
|
|
213
213
|
}, details, Object.assign({ links: [
|
|
214
214
|
'https://docs.snyk.io/snyk-api-info/authentication-for-api',
|
|
215
|
-
] }, additionalData), cause);
|
|
215
|
+
] }, additionalData), cause, logs);
|
|
216
216
|
this.name = this.constructor.name;
|
|
217
217
|
}
|
|
218
218
|
}
|
|
@@ -230,7 +230,7 @@ exports.UnauthorizedError = UnauthorizedError;
|
|
|
230
230
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
231
231
|
*/
|
|
232
232
|
class UnsupportedMediaTypeError extends problem_error_1.ProblemError {
|
|
233
|
-
constructor(details, additionalData, cause, instance) {
|
|
233
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
234
234
|
super({
|
|
235
235
|
title: 'Unsupported media type',
|
|
236
236
|
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0008',
|
|
@@ -239,7 +239,7 @@ class UnsupportedMediaTypeError extends problem_error_1.ProblemError {
|
|
|
239
239
|
level: 'warn',
|
|
240
240
|
classification: types_1.Classification.ACTIONABLE,
|
|
241
241
|
instance,
|
|
242
|
-
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
242
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
243
243
|
this.name = this.constructor.name;
|
|
244
244
|
}
|
|
245
245
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OpenAPI-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/OpenAPI-error-catalog.ts"],"names":[],"mappings":";;;AAAA,oCAA0C;AAC1C,oDAAgD;AAEhD;;;;;;;;;;;;;;GAcG;AACH,MAAa,eAAgB,SAAQ,4BAAY;IAC/C,YACI,OAAe,EACf,cAAoC,EACpC,KAAa,EACb,QAAiB;
|
|
1
|
+
{"version":3,"file":"OpenAPI-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/OpenAPI-error-catalog.ts"],"names":[],"mappings":"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"}
|
|
@@ -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,7 @@ 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
233
|
}
|
|
234
234
|
/**
|
|
235
235
|
* @class
|
|
@@ -247,7 +247,7 @@ export declare class PublishFailedError extends ProblemError {
|
|
|
247
247
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
248
248
|
*/
|
|
249
249
|
export declare class PrivateModuleError extends ProblemError {
|
|
250
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
250
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
251
251
|
}
|
|
252
252
|
/**
|
|
253
253
|
* @class
|
|
@@ -265,7 +265,7 @@ export declare class PrivateModuleError extends ProblemError {
|
|
|
265
265
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
266
266
|
*/
|
|
267
267
|
export declare class GoModFileMissingError extends ProblemError {
|
|
268
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
268
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
271
|
* @class
|
|
@@ -288,7 +288,7 @@ export declare class GoModFileMissingError extends ProblemError {
|
|
|
288
288
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
289
289
|
*/
|
|
290
290
|
export declare class SsoReAuthRequiredError extends ProblemError {
|
|
291
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
291
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
292
292
|
}
|
|
293
293
|
/**
|
|
294
294
|
* @class
|
|
@@ -314,7 +314,7 @@ export declare class SsoReAuthRequiredError extends ProblemError {
|
|
|
314
314
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
315
315
|
*/
|
|
316
316
|
export declare class IncompleteProjectError extends ProblemError {
|
|
317
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
317
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
318
318
|
}
|
|
319
319
|
/**
|
|
320
320
|
* @class
|
|
@@ -342,7 +342,7 @@ export declare class IncompleteProjectError extends ProblemError {
|
|
|
342
342
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
343
343
|
*/
|
|
344
344
|
export declare class InconsistentVendoringError extends ProblemError {
|
|
345
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
345
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
346
346
|
}
|
|
347
347
|
/**
|
|
348
348
|
* @class
|
|
@@ -359,7 +359,7 @@ export declare class InconsistentVendoringError extends ProblemError {
|
|
|
359
359
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
360
360
|
*/
|
|
361
361
|
export declare class UnsupportedExternalFileGenerationSCMError extends ProblemError {
|
|
362
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
362
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
363
363
|
}
|
|
364
364
|
/**
|
|
365
365
|
* @class
|
|
@@ -382,7 +382,7 @@ export declare class UnsupportedExternalFileGenerationSCMError extends ProblemEr
|
|
|
382
382
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
383
383
|
*/
|
|
384
384
|
export declare class UnableToAccessPrivateDepsError extends ProblemError {
|
|
385
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
385
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
386
386
|
}
|
|
387
387
|
/**
|
|
388
388
|
* @class
|
|
@@ -397,7 +397,7 @@ export declare class UnableToAccessPrivateDepsError extends ProblemError {
|
|
|
397
397
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
398
398
|
*/
|
|
399
399
|
export declare class MissingRequirementFromPomError extends ProblemError {
|
|
400
|
-
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[]);
|
|
401
401
|
}
|
|
402
402
|
/**
|
|
403
403
|
* @class
|
|
@@ -412,7 +412,7 @@ export declare class MissingRequirementFromPomError extends ProblemError {
|
|
|
412
412
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
413
413
|
*/
|
|
414
414
|
export declare class UnableToResolveValueForPropertyError extends ProblemError {
|
|
415
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
415
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
416
416
|
}
|
|
417
417
|
/**
|
|
418
418
|
* @class
|
|
@@ -427,7 +427,7 @@ export declare class UnableToResolveValueForPropertyError extends ProblemError {
|
|
|
427
427
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
428
428
|
*/
|
|
429
429
|
export declare class UnableToResolveVersionForPropertyError extends ProblemError {
|
|
430
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
430
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
431
431
|
}
|
|
432
432
|
/**
|
|
433
433
|
* @class
|
|
@@ -442,7 +442,7 @@ export declare class UnableToResolveVersionForPropertyError extends ProblemError
|
|
|
442
442
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
443
443
|
*/
|
|
444
444
|
export declare class CyclicPropertyDetectedInPomFileError extends ProblemError {
|
|
445
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
445
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
446
446
|
}
|
|
447
447
|
/**
|
|
448
448
|
* @class
|
|
@@ -457,7 +457,7 @@ export declare class CyclicPropertyDetectedInPomFileError extends ProblemError {
|
|
|
457
457
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
458
458
|
*/
|
|
459
459
|
export declare class UnableToParseXMLError extends ProblemError {
|
|
460
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
460
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
461
461
|
}
|
|
462
462
|
/**
|
|
463
463
|
* @class
|
|
@@ -472,7 +472,7 @@ export declare class UnableToParseXMLError extends ProblemError {
|
|
|
472
472
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
473
473
|
*/
|
|
474
474
|
export declare class InvalidCoordinatesError extends ProblemError {
|
|
475
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
475
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
476
476
|
}
|
|
477
477
|
/**
|
|
478
478
|
* @class
|
|
@@ -487,7 +487,7 @@ export declare class InvalidCoordinatesError extends ProblemError {
|
|
|
487
487
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
488
488
|
*/
|
|
489
489
|
export declare class SkippedGroupError extends ProblemError {
|
|
490
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
490
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
491
491
|
}
|
|
492
492
|
/**
|
|
493
493
|
* @class
|
|
@@ -502,7 +502,7 @@ export declare class SkippedGroupError extends ProblemError {
|
|
|
502
502
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
503
503
|
*/
|
|
504
504
|
export declare class PomFileNotFoundError extends ProblemError {
|
|
505
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
505
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
506
506
|
}
|
|
507
507
|
/**
|
|
508
508
|
* @class
|
|
@@ -517,7 +517,7 @@ export declare class PomFileNotFoundError extends ProblemError {
|
|
|
517
517
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
518
518
|
*/
|
|
519
519
|
export declare class MissingProjectFromPomError extends ProblemError {
|
|
520
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
520
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
521
521
|
}
|
|
522
522
|
/**
|
|
523
523
|
* @class
|
|
@@ -532,7 +532,7 @@ export declare class MissingProjectFromPomError extends ProblemError {
|
|
|
532
532
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
533
533
|
*/
|
|
534
534
|
export declare class CannotResolveTargetPomFromXmlError extends ProblemError {
|
|
535
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
535
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
536
536
|
}
|
|
537
537
|
/**
|
|
538
538
|
* @class
|
|
@@ -547,7 +547,7 @@ export declare class CannotResolveTargetPomFromXmlError extends ProblemError {
|
|
|
547
547
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
548
548
|
*/
|
|
549
549
|
export declare class CannotResolveTargetPomFromRepoError extends ProblemError {
|
|
550
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
550
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
551
551
|
}
|
|
552
552
|
/**
|
|
553
553
|
* @class
|
|
@@ -562,7 +562,7 @@ export declare class CannotResolveTargetPomFromRepoError extends ProblemError {
|
|
|
562
562
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
563
563
|
*/
|
|
564
564
|
export declare class CannotGetBuildFileFromRepoError extends ProblemError {
|
|
565
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
565
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
566
566
|
}
|
|
567
567
|
/**
|
|
568
568
|
* @class
|
|
@@ -577,7 +577,7 @@ export declare class CannotGetBuildFileFromRepoError extends ProblemError {
|
|
|
577
577
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
578
578
|
*/
|
|
579
579
|
export declare class CannotCreateGitHostError extends ProblemError {
|
|
580
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
580
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
581
581
|
}
|
|
582
582
|
/**
|
|
583
583
|
* @class
|
|
@@ -592,7 +592,7 @@ export declare class CannotCreateGitHostError extends ProblemError {
|
|
|
592
592
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
593
593
|
*/
|
|
594
594
|
export declare class NoReleasedVersionForVersionsRangeError extends ProblemError {
|
|
595
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
595
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
596
596
|
}
|
|
597
597
|
/**
|
|
598
598
|
* @class
|
|
@@ -607,7 +607,7 @@ export declare class NoReleasedVersionForVersionsRangeError extends ProblemError
|
|
|
607
607
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
608
608
|
*/
|
|
609
609
|
export declare class SourceNotSupportedError extends ProblemError {
|
|
610
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
610
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
611
611
|
}
|
|
612
612
|
/**
|
|
613
613
|
* @class
|
|
@@ -622,7 +622,7 @@ export declare class SourceNotSupportedError extends ProblemError {
|
|
|
622
622
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
623
623
|
*/
|
|
624
624
|
export declare class TimeoutWhenProcessingTheDepTreeError extends ProblemError {
|
|
625
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
625
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
626
626
|
}
|
|
627
627
|
/**
|
|
628
628
|
* @class
|
|
@@ -637,7 +637,7 @@ export declare class TimeoutWhenProcessingTheDepTreeError extends ProblemError {
|
|
|
637
637
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
638
638
|
*/
|
|
639
639
|
export declare class NoRepoFoundForTheNPMPackageError extends ProblemError {
|
|
640
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
640
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
641
641
|
}
|
|
642
642
|
/**
|
|
643
643
|
* @class
|
|
@@ -652,7 +652,7 @@ export declare class NoRepoFoundForTheNPMPackageError extends ProblemError {
|
|
|
652
652
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
653
653
|
*/
|
|
654
654
|
export declare class CouldNotParseNPMRegistryURLError extends ProblemError {
|
|
655
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
655
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
656
656
|
}
|
|
657
657
|
/**
|
|
658
658
|
* @class
|
|
@@ -667,7 +667,7 @@ export declare class CouldNotParseNPMRegistryURLError extends ProblemError {
|
|
|
667
667
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
668
668
|
*/
|
|
669
669
|
export declare class CouldNotFindBrokerURLError extends ProblemError {
|
|
670
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
670
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
671
671
|
}
|
|
672
672
|
/**
|
|
673
673
|
* @class
|
|
@@ -682,7 +682,7 @@ export declare class CouldNotFindBrokerURLError extends ProblemError {
|
|
|
682
682
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
683
683
|
*/
|
|
684
684
|
export declare class UnableToReplaceBrokerURLError extends ProblemError {
|
|
685
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
685
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
686
686
|
}
|
|
687
687
|
/**
|
|
688
688
|
* @class
|
|
@@ -697,7 +697,7 @@ export declare class UnableToReplaceBrokerURLError extends ProblemError {
|
|
|
697
697
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
698
698
|
*/
|
|
699
699
|
export declare class BadNPMVersionError extends ProblemError {
|
|
700
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
700
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
701
701
|
}
|
|
702
702
|
/**
|
|
703
703
|
* @class
|
|
@@ -712,7 +712,7 @@ export declare class BadNPMVersionError extends ProblemError {
|
|
|
712
712
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
713
713
|
*/
|
|
714
714
|
export declare class UnknownBlobEncodingOnGithubError extends ProblemError {
|
|
715
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
715
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
716
716
|
}
|
|
717
717
|
/**
|
|
718
718
|
* @class
|
|
@@ -727,7 +727,7 @@ export declare class UnknownBlobEncodingOnGithubError extends ProblemError {
|
|
|
727
727
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
728
728
|
*/
|
|
729
729
|
export declare class NoResultsFromForkerProcessesError extends ProblemError {
|
|
730
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
730
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
731
731
|
}
|
|
732
732
|
/**
|
|
733
733
|
* @class
|
|
@@ -742,7 +742,7 @@ export declare class NoResultsFromForkerProcessesError extends ProblemError {
|
|
|
742
742
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
743
743
|
*/
|
|
744
744
|
export declare class ChildProcessExecutionError extends ProblemError {
|
|
745
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
745
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
746
746
|
}
|
|
747
747
|
/**
|
|
748
748
|
* @class
|
|
@@ -757,7 +757,7 @@ export declare class ChildProcessExecutionError extends ProblemError {
|
|
|
757
757
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
758
758
|
*/
|
|
759
759
|
export declare class NoValidPackageUpgradesError extends ProblemError {
|
|
760
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
760
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
761
761
|
}
|
|
762
762
|
/**
|
|
763
763
|
* @class
|
|
@@ -772,7 +772,7 @@ export declare class NoValidPackageUpgradesError extends ProblemError {
|
|
|
772
772
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
773
773
|
*/
|
|
774
774
|
export declare class NoDependencyUpdatesError extends ProblemError {
|
|
775
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
775
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
776
776
|
}
|
|
777
777
|
/**
|
|
778
778
|
* @class
|
|
@@ -787,7 +787,7 @@ export declare class NoDependencyUpdatesError extends ProblemError {
|
|
|
787
787
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
788
788
|
*/
|
|
789
789
|
export declare class CouldNotParseJSONFileError extends ProblemError {
|
|
790
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
790
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
791
791
|
}
|
|
792
792
|
/**
|
|
793
793
|
* @class
|
|
@@ -802,7 +802,7 @@ export declare class CouldNotParseJSONFileError extends ProblemError {
|
|
|
802
802
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
803
803
|
*/
|
|
804
804
|
export declare class Base64EncodeError extends ProblemError {
|
|
805
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
805
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
806
806
|
}
|
|
807
807
|
/**
|
|
808
808
|
* @class
|
|
@@ -817,7 +817,7 @@ export declare class Base64EncodeError extends ProblemError {
|
|
|
817
817
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
818
818
|
*/
|
|
819
819
|
export declare class Base64DecodeError extends ProblemError {
|
|
820
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
820
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
821
821
|
}
|
|
822
822
|
/**
|
|
823
823
|
* @class
|
|
@@ -832,7 +832,7 @@ export declare class Base64DecodeError extends ProblemError {
|
|
|
832
832
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
833
833
|
*/
|
|
834
834
|
export declare class MissingSupportedFileError extends ProblemError {
|
|
835
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
835
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
836
836
|
}
|
|
837
837
|
/**
|
|
838
838
|
* @class
|
|
@@ -847,7 +847,7 @@ export declare class MissingSupportedFileError extends ProblemError {
|
|
|
847
847
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
848
848
|
*/
|
|
849
849
|
export declare class InvalidConfigurationError extends ProblemError {
|
|
850
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
850
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
851
851
|
}
|
|
852
852
|
/**
|
|
853
853
|
* @class
|
|
@@ -865,7 +865,7 @@ export declare class InvalidConfigurationError extends ProblemError {
|
|
|
865
865
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
866
866
|
*/
|
|
867
867
|
export declare class UnsupportedRequirementsFileError extends ProblemError {
|
|
868
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
868
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
869
869
|
}
|
|
870
870
|
/**
|
|
871
871
|
* @class
|
|
@@ -880,7 +880,7 @@ export declare class UnsupportedRequirementsFileError extends ProblemError {
|
|
|
880
880
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
881
881
|
*/
|
|
882
882
|
export declare class TooManyManifestFilesError extends ProblemError {
|
|
883
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
883
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
884
884
|
}
|
|
885
885
|
/**
|
|
886
886
|
* @class
|
|
@@ -895,7 +895,7 @@ export declare class TooManyManifestFilesError extends ProblemError {
|
|
|
895
895
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
896
896
|
*/
|
|
897
897
|
export declare class FailedToApplyDependencyUpdatesError extends ProblemError {
|
|
898
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
898
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
899
899
|
}
|
|
900
900
|
/**
|
|
901
901
|
* @class
|
|
@@ -912,5 +912,5 @@ export declare class FailedToApplyDependencyUpdatesError extends ProblemError {
|
|
|
912
912
|
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
913
913
|
*/
|
|
914
914
|
export declare class NoMatchingPythonDistributionError extends ProblemError {
|
|
915
|
-
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string);
|
|
915
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
916
916
|
}
|