@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 Your Organisation is not authorized to perform this action
22
22
  * @category PurlVulnerabilityFetching
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 OrganizationNotWhitelistedError extends ProblemError {
36
36
  * @summary Authorization request failure
37
37
  * @category PurlVulnerabilityFetching
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 AuthorizationRequestFailureError extends ProblemError {
54
54
  * @summary Invalid purl
55
55
  * @category PurlVulnerabilityFetching
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
@@ -72,7 +72,7 @@ export declare class InvalidPurlError extends ProblemError {
72
72
  * @summary Namespace not specified
73
73
  * @category PurlVulnerabilityFetching
74
74
  * @param {string} details the specific details that causes this error
75
- * @param {string} classification the error classification determining if the error is user-actionable or not
75
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
76
76
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
77
77
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
78
78
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -87,7 +87,7 @@ export declare class NamespaceNotProvidedError extends ProblemError {
87
87
  * @summary Unsupported ecosystem
88
88
  * @category PurlVulnerabilityFetching
89
89
  * @param {string} details the specific details that causes this error
90
- * @param {string} classification the error classification determining if the error is user-actionable or not
90
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
91
91
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
92
92
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
93
93
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -102,7 +102,7 @@ export declare class UnsupportedEcosystemError extends ProblemError {
102
102
  * @summary Purl components required
103
103
  * @category PurlVulnerabilityFetching
104
104
  * @param {string} details the specific details that causes this error
105
- * @param {string} classification the error classification determining if the error is user-actionable or not
105
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
106
106
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
107
107
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
108
108
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -117,7 +117,7 @@ export declare class MissingComponentError extends ProblemError {
117
117
  * @summary Unsupported purl components
118
118
  * @category PurlVulnerabilityFetching
119
119
  * @param {string} details the specific details that causes this error
120
- * @param {string} classification the error classification determining if the error is user-actionable or not
120
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
121
121
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
122
122
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
123
123
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -132,7 +132,7 @@ export declare class ComponentNotSupportedError extends ProblemError {
132
132
  * @summary Go version format not supported
133
133
  * @category PurlVulnerabilityFetching
134
134
  * @param {string} details the specific details that causes this error
135
- * @param {string} classification the error classification determining if the error is user-actionable or not
135
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
136
136
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
137
137
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
138
138
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -147,7 +147,7 @@ export declare class UnsupportedGoVersionFormatError extends ProblemError {
147
147
  * @summary Requested package not found
148
148
  * @category PurlVulnerabilityFetching
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 PackageNotFoundError extends ProblemError {
162
162
  * @summary Vulnerability service not available
163
163
  * @category PurlVulnerabilityFetching
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
@@ -177,7 +177,7 @@ export declare class VulnerabilityServiceUnavailableError extends ProblemError {
177
177
  * @summary This issue is unexpected and the service should recover quickly if not please contact support
178
178
  * @category PurlVulnerabilityFetching
179
179
  * @param {string} details the specific details that causes this error
180
- * @param {string} classification the error classification determining if the error is user-actionable or not
180
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
181
181
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
182
182
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
183
183
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -192,7 +192,7 @@ export declare class VulnDBInvalidResponseError extends ProblemError {
192
192
  * @summary This issue is unexpected and the service should recover quickly if not please contact support
193
193
  * @category PurlVulnerabilityFetching
194
194
  * @param {string} details the specific details that causes this error
195
- * @param {string} classification the error classification determining if the error is user-actionable or not
195
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
196
196
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
197
197
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
198
198
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -207,7 +207,7 @@ export declare class VulndbNextError extends ProblemError {
207
207
  * @summary Request not processed due to unexpected error
208
208
  * @category PurlVulnerabilityFetching
209
209
  * @param {string} details the specific details that causes this error
210
- * @param {string} classification the error classification determining if the error is user-actionable or not
210
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
211
211
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
212
212
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
213
213
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -222,7 +222,7 @@ export declare class InternalServerError extends ProblemError {
222
222
  * @summary Invalid pagination parameters
223
223
  * @category PurlVulnerabilityFetching
224
224
  * @param {string} details the specific details that causes this error
225
- * @param {string} classification the error classification determining if the error is user-actionable or not
225
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
226
226
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
227
227
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
228
228
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -237,7 +237,7 @@ export declare class InvalidPaginationParametersError extends ProblemError {
237
237
  * @summary purls exceed limit
238
238
  * @category PurlVulnerabilityFetching
239
239
  * @param {string} details the specific details that causes this error
240
- * @param {string} classification the error classification determining if the error is user-actionable or not
240
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
241
241
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
242
242
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
243
243
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -252,7 +252,7 @@ export declare class TooManyPurlsError extends ProblemError {
252
252
  * @summary Number of issues exceeds limit
253
253
  * @category PurlVulnerabilityFetching
254
254
  * @param {string} details the specific details that causes this error
255
- * @param {string} classification the error classification determining if the error is user-actionable or not
255
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
256
256
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
257
257
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
258
258
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -270,7 +270,7 @@ export declare class TooManyIssuesError extends ProblemError {
270
270
  * @summary Expected distro to be present
271
271
  * @category PurlVulnerabilityFetching
272
272
  * @param {string} details the specific details that causes this error
273
- * @param {string} classification the error classification determining if the error is user-actionable or not
273
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
274
274
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
275
275
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
276
276
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -285,7 +285,7 @@ export declare class UndefinedContainerDistroError extends ProblemError {
285
285
  * @summary Unsupported Debian distro
286
286
  * @category PurlVulnerabilityFetching
287
287
  * @param {string} details the specific details that causes this error
288
- * @param {string} classification the error classification determining if the error is user-actionable or not
288
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
289
289
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
290
290
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
291
291
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -300,7 +300,7 @@ export declare class UnsupportedDebianDistroError extends ProblemError {
300
300
  * @summary Expected namespace to be present
301
301
  * @category PurlVulnerabilityFetching
302
302
  * @param {string} details the specific details that causes this error
303
- * @param {string} classification the error classification determining if the error is user-actionable or not
303
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
304
304
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
305
305
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
306
306
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -315,7 +315,7 @@ export declare class UndefinedContainerVendorError extends ProblemError {
315
315
  * @summary Unsupported vendor
316
316
  * @category PurlVulnerabilityFetching
317
317
  * @param {string} details the specific details that causes this error
318
- * @param {string} classification the error classification determining if the error is user-actionable or not
318
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
319
319
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
320
320
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
321
321
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -16,6 +16,7 @@
16
16
  "use strict";
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  exports.UnsupportedContainerVendorError = exports.UndefinedContainerVendorError = exports.UnsupportedDebianDistroError = exports.UndefinedContainerDistroError = exports.TooManyIssuesError = exports.TooManyPurlsError = exports.InvalidPaginationParametersError = exports.InternalServerError = exports.VulndbNextError = exports.VulnDBInvalidResponseError = exports.VulnerabilityServiceUnavailableError = exports.PackageNotFoundError = exports.UnsupportedGoVersionFormatError = exports.ComponentNotSupportedError = exports.MissingComponentError = exports.UnsupportedEcosystemError = exports.NamespaceNotProvidedError = exports.InvalidPurlError = exports.AuthorizationRequestFailureError = exports.OrganizationNotWhitelistedError = void 0;
19
+ const types_1 = require("../types");
19
20
  const problem_error_1 = require("../problem-error");
20
21
  /**
21
22
  * @class
@@ -24,7 +25,7 @@ const problem_error_1 = require("../problem-error");
24
25
  * @summary Your Organisation is not authorized to perform this action
25
26
  * @category PurlVulnerabilityFetching
26
27
  * @param {string} details the specific details that causes this error
27
- * @param {string} classification the error classification determining if the error is user-actionable or not
28
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
28
29
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
29
30
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
30
31
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -37,7 +38,7 @@ class OrganizationNotWhitelistedError extends problem_error_1.ProblemError {
37
38
  status: 403,
38
39
  errorCode: 'SNYK-OSSI-1040',
39
40
  level: 'warn',
40
- classification: 'ACTIONABLE',
41
+ classification: types_1.Classification.ACTIONABLE,
41
42
  instance,
42
43
  }, details, Object.assign({ links: [] }, additionalData), cause);
43
44
  this.name = this.constructor.name;
@@ -51,7 +52,7 @@ exports.OrganizationNotWhitelistedError = OrganizationNotWhitelistedError;
51
52
  * @summary Authorization request failure
52
53
  * @category PurlVulnerabilityFetching
53
54
  * @param {string} details the specific details that causes this error
54
- * @param {string} classification the error classification determining if the error is user-actionable or not
55
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
55
56
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
56
57
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
57
58
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -64,7 +65,7 @@ class AuthorizationRequestFailureError extends problem_error_1.ProblemError {
64
65
  status: 500,
65
66
  errorCode: 'SNYK-OSSI-1050',
66
67
  level: 'fatal',
67
- classification: 'UNEXPECTED',
68
+ classification: types_1.Classification.UNEXPECTED,
68
69
  instance,
69
70
  }, details, Object.assign({ links: [] }, additionalData), cause);
70
71
  this.name = this.constructor.name;
@@ -81,7 +82,7 @@ exports.AuthorizationRequestFailureError = AuthorizationRequestFailureError;
81
82
  * @summary Invalid purl
82
83
  * @category PurlVulnerabilityFetching
83
84
  * @param {string} details the specific details that causes this error
84
- * @param {string} classification the error classification determining if the error is user-actionable or not
85
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
85
86
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
86
87
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
87
88
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -94,7 +95,7 @@ class InvalidPurlError extends problem_error_1.ProblemError {
94
95
  status: 400,
95
96
  errorCode: 'SNYK-OSSI-2010',
96
97
  level: 'warn',
97
- classification: 'ACTIONABLE',
98
+ classification: types_1.Classification.ACTIONABLE,
98
99
  instance,
99
100
  }, details, Object.assign({ links: [
100
101
  'https://github.com/package-url/purl-spec/blob/master/PURL-SPECIFICATION.rst',
@@ -113,7 +114,7 @@ exports.InvalidPurlError = InvalidPurlError;
113
114
  * @summary Namespace not specified
114
115
  * @category PurlVulnerabilityFetching
115
116
  * @param {string} details the specific details that causes this error
116
- * @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
117
118
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
118
119
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
119
120
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -126,7 +127,7 @@ class NamespaceNotProvidedError extends problem_error_1.ProblemError {
126
127
  status: 400,
127
128
  errorCode: 'SNYK-OSSI-2011',
128
129
  level: 'warn',
129
- classification: 'ACTIONABLE',
130
+ classification: types_1.Classification.ACTIONABLE,
130
131
  instance,
131
132
  }, details, Object.assign({ links: [
132
133
  'https://github.com/package-url/purl-spec/blob/master/PURL-SPECIFICATION.rst',
@@ -142,7 +143,7 @@ exports.NamespaceNotProvidedError = NamespaceNotProvidedError;
142
143
  * @summary Unsupported ecosystem
143
144
  * @category PurlVulnerabilityFetching
144
145
  * @param {string} details the specific details that causes this error
145
- * @param {string} classification the error classification determining if the error is user-actionable or not
146
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
146
147
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
147
148
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
148
149
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -155,7 +156,7 @@ class UnsupportedEcosystemError extends problem_error_1.ProblemError {
155
156
  status: 400,
156
157
  errorCode: 'SNYK-OSSI-2020',
157
158
  level: 'warn',
158
- classification: 'ACTIONABLE',
159
+ classification: types_1.Classification.ACTIONABLE,
159
160
  instance,
160
161
  }, details, Object.assign({ links: [] }, additionalData), cause);
161
162
  this.name = this.constructor.name;
@@ -169,7 +170,7 @@ exports.UnsupportedEcosystemError = UnsupportedEcosystemError;
169
170
  * @summary Purl components required
170
171
  * @category PurlVulnerabilityFetching
171
172
  * @param {string} details the specific details that causes this error
172
- * @param {string} classification the error classification determining if the error is user-actionable or not
173
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
173
174
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
174
175
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
175
176
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -182,7 +183,7 @@ class MissingComponentError extends problem_error_1.ProblemError {
182
183
  status: 400,
183
184
  errorCode: 'SNYK-OSSI-2021',
184
185
  level: 'warn',
185
- classification: 'ACTIONABLE',
186
+ classification: types_1.Classification.ACTIONABLE,
186
187
  instance,
187
188
  }, details, Object.assign({ links: [] }, additionalData), cause);
188
189
  this.name = this.constructor.name;
@@ -196,7 +197,7 @@ exports.MissingComponentError = MissingComponentError;
196
197
  * @summary Unsupported purl components
197
198
  * @category PurlVulnerabilityFetching
198
199
  * @param {string} details the specific details that causes this error
199
- * @param {string} classification the error classification determining if the error is user-actionable or not
200
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
200
201
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
201
202
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
202
203
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -209,7 +210,7 @@ class ComponentNotSupportedError extends problem_error_1.ProblemError {
209
210
  status: 400,
210
211
  errorCode: 'SNYK-OSSI-2022',
211
212
  level: 'warn',
212
- classification: 'ACTIONABLE',
213
+ classification: types_1.Classification.ACTIONABLE,
213
214
  instance,
214
215
  }, details, Object.assign({ links: [] }, additionalData), cause);
215
216
  this.name = this.constructor.name;
@@ -223,7 +224,7 @@ exports.ComponentNotSupportedError = ComponentNotSupportedError;
223
224
  * @summary Go version format not supported
224
225
  * @category PurlVulnerabilityFetching
225
226
  * @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
227
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
227
228
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
228
229
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
229
230
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -236,7 +237,7 @@ class UnsupportedGoVersionFormatError extends problem_error_1.ProblemError {
236
237
  status: 400,
237
238
  errorCode: 'SNYK-OSSI-2023',
238
239
  level: 'warn',
239
- classification: 'UNSUPPORTED',
240
+ classification: types_1.Classification.UNSUPPORTED,
240
241
  instance,
241
242
  }, details, Object.assign({ links: [] }, additionalData), cause);
242
243
  this.name = this.constructor.name;
@@ -250,7 +251,7 @@ exports.UnsupportedGoVersionFormatError = UnsupportedGoVersionFormatError;
250
251
  * @summary Requested package not found
251
252
  * @category PurlVulnerabilityFetching
252
253
  * @param {string} details the specific details that causes this error
253
- * @param {string} classification the error classification determining if the error is user-actionable or not
254
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
254
255
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
255
256
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
256
257
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -263,7 +264,7 @@ class PackageNotFoundError extends problem_error_1.ProblemError {
263
264
  status: 404,
264
265
  errorCode: 'SNYK-OSSI-2030',
265
266
  level: 'warn',
266
- classification: 'ACTIONABLE',
267
+ classification: types_1.Classification.ACTIONABLE,
267
268
  instance,
268
269
  }, details, Object.assign({ links: [] }, additionalData), cause);
269
270
  this.name = this.constructor.name;
@@ -277,7 +278,7 @@ exports.PackageNotFoundError = PackageNotFoundError;
277
278
  * @summary Vulnerability service not available
278
279
  * @category PurlVulnerabilityFetching
279
280
  * @param {string} details the specific details that causes this error
280
- * @param {string} classification the error classification determining if the error is user-actionable or not
281
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
281
282
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
282
283
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
283
284
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -290,7 +291,7 @@ class VulnerabilityServiceUnavailableError extends problem_error_1.ProblemError
290
291
  status: 503,
291
292
  errorCode: 'SNYK-OSSI-2031',
292
293
  level: 'error',
293
- classification: 'UNEXPECTED',
294
+ classification: types_1.Classification.UNEXPECTED,
294
295
  instance,
295
296
  }, details, Object.assign({ links: [] }, additionalData), cause);
296
297
  this.name = this.constructor.name;
@@ -304,7 +305,7 @@ exports.VulnerabilityServiceUnavailableError = VulnerabilityServiceUnavailableEr
304
305
  * @summary This issue is unexpected and the service should recover quickly if not please contact support
305
306
  * @category PurlVulnerabilityFetching
306
307
  * @param {string} details the specific details that causes this error
307
- * @param {string} classification the error classification determining if the error is user-actionable or not
308
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
308
309
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
309
310
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
310
311
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -317,7 +318,7 @@ class VulnDBInvalidResponseError extends problem_error_1.ProblemError {
317
318
  status: 500,
318
319
  errorCode: 'SNYK-OSSI-2032',
319
320
  level: 'warn',
320
- classification: 'UNEXPECTED',
321
+ classification: types_1.Classification.UNEXPECTED,
321
322
  instance,
322
323
  }, details, Object.assign({ links: [] }, additionalData), cause);
323
324
  this.name = this.constructor.name;
@@ -331,7 +332,7 @@ exports.VulnDBInvalidResponseError = VulnDBInvalidResponseError;
331
332
  * @summary This issue is unexpected and the service should recover quickly if not please contact support
332
333
  * @category PurlVulnerabilityFetching
333
334
  * @param {string} details the specific details that causes this error
334
- * @param {string} classification the error classification determining if the error is user-actionable or not
335
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
335
336
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
336
337
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
337
338
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -344,7 +345,7 @@ class VulndbNextError extends problem_error_1.ProblemError {
344
345
  status: 500,
345
346
  errorCode: 'SNYK-OSSI-2033',
346
347
  level: 'error',
347
- classification: 'UNEXPECTED',
348
+ classification: types_1.Classification.UNEXPECTED,
348
349
  instance,
349
350
  }, details, Object.assign({ links: [] }, additionalData), cause);
350
351
  this.name = this.constructor.name;
@@ -358,7 +359,7 @@ exports.VulndbNextError = VulndbNextError;
358
359
  * @summary Request not processed due to unexpected error
359
360
  * @category PurlVulnerabilityFetching
360
361
  * @param {string} details the specific details that causes this error
361
- * @param {string} classification the error classification determining if the error is user-actionable or not
362
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
362
363
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
363
364
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
364
365
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -371,7 +372,7 @@ class InternalServerError extends problem_error_1.ProblemError {
371
372
  status: 500,
372
373
  errorCode: 'SNYK-OSSI-2040',
373
374
  level: 'error',
374
- classification: 'UNEXPECTED',
375
+ classification: types_1.Classification.UNEXPECTED,
375
376
  instance,
376
377
  }, details, Object.assign({ links: [] }, additionalData), cause);
377
378
  this.name = this.constructor.name;
@@ -385,7 +386,7 @@ exports.InternalServerError = InternalServerError;
385
386
  * @summary Invalid pagination parameters
386
387
  * @category PurlVulnerabilityFetching
387
388
  * @param {string} details the specific details that causes this error
388
- * @param {string} classification the error classification determining if the error is user-actionable or not
389
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
389
390
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
390
391
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
391
392
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -398,7 +399,7 @@ class InvalidPaginationParametersError extends problem_error_1.ProblemError {
398
399
  status: 400,
399
400
  errorCode: 'SNYK-OSSI-2041',
400
401
  level: 'warn',
401
- classification: 'ACTIONABLE',
402
+ classification: types_1.Classification.ACTIONABLE,
402
403
  instance,
403
404
  }, details, Object.assign({ links: [] }, additionalData), cause);
404
405
  this.name = this.constructor.name;
@@ -412,7 +413,7 @@ exports.InvalidPaginationParametersError = InvalidPaginationParametersError;
412
413
  * @summary purls exceed limit
413
414
  * @category PurlVulnerabilityFetching
414
415
  * @param {string} details the specific details that causes this error
415
- * @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
416
417
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
417
418
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
418
419
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -425,7 +426,7 @@ class TooManyPurlsError extends problem_error_1.ProblemError {
425
426
  status: 400,
426
427
  errorCode: 'SNYK-OSSI-2042',
427
428
  level: 'warn',
428
- classification: 'UNSUPPORTED',
429
+ classification: types_1.Classification.UNSUPPORTED,
429
430
  instance,
430
431
  }, details, Object.assign({ links: [] }, additionalData), cause);
431
432
  this.name = this.constructor.name;
@@ -439,7 +440,7 @@ exports.TooManyPurlsError = TooManyPurlsError;
439
440
  * @summary Number of issues exceeds limit
440
441
  * @category PurlVulnerabilityFetching
441
442
  * @param {string} details the specific details that causes this error
442
- * @param {string} classification the error classification determining if the error is user-actionable or not
443
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
443
444
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
444
445
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
445
446
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -452,7 +453,7 @@ class TooManyIssuesError extends problem_error_1.ProblemError {
452
453
  status: 400,
453
454
  errorCode: 'SNYK-OSSI-2043',
454
455
  level: 'warn',
455
- classification: 'UNSUPPORTED',
456
+ classification: types_1.Classification.UNSUPPORTED,
456
457
  instance,
457
458
  }, details, Object.assign({ links: [] }, additionalData), cause);
458
459
  this.name = this.constructor.name;
@@ -469,7 +470,7 @@ exports.TooManyIssuesError = TooManyIssuesError;
469
470
  * @summary Expected distro to be present
470
471
  * @category PurlVulnerabilityFetching
471
472
  * @param {string} details the specific details that causes this error
472
- * @param {string} classification the error classification determining if the error is user-actionable or not
473
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
473
474
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
474
475
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
475
476
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -482,7 +483,7 @@ class UndefinedContainerDistroError extends problem_error_1.ProblemError {
482
483
  status: 400,
483
484
  errorCode: 'SNYK-OSSI-2044',
484
485
  level: 'warn',
485
- classification: 'UNSUPPORTED',
486
+ classification: types_1.Classification.UNSUPPORTED,
486
487
  instance,
487
488
  }, details, Object.assign({ links: [
488
489
  'https://docs.snyk.io/scan-containers/how-snyk-container-works/supported-operating-system-distributions#debian',
@@ -498,7 +499,7 @@ exports.UndefinedContainerDistroError = UndefinedContainerDistroError;
498
499
  * @summary Unsupported Debian distro
499
500
  * @category PurlVulnerabilityFetching
500
501
  * @param {string} details the specific details that causes this error
501
- * @param {string} classification the error classification determining if the error is user-actionable or not
502
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
502
503
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
503
504
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
504
505
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -511,7 +512,7 @@ class UnsupportedDebianDistroError extends problem_error_1.ProblemError {
511
512
  status: 400,
512
513
  errorCode: 'SNYK-OSSI-2045',
513
514
  level: 'warn',
514
- classification: 'UNSUPPORTED',
515
+ classification: types_1.Classification.UNSUPPORTED,
515
516
  instance,
516
517
  }, details, Object.assign({ links: [] }, additionalData), cause);
517
518
  this.name = this.constructor.name;
@@ -525,7 +526,7 @@ exports.UnsupportedDebianDistroError = UnsupportedDebianDistroError;
525
526
  * @summary Expected namespace to be present
526
527
  * @category PurlVulnerabilityFetching
527
528
  * @param {string} details the specific details that causes this error
528
- * @param {string} classification the error classification determining if the error is user-actionable or not
529
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
529
530
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
530
531
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
531
532
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -538,7 +539,7 @@ class UndefinedContainerVendorError extends problem_error_1.ProblemError {
538
539
  status: 400,
539
540
  errorCode: 'SNYK-OSSI-2046',
540
541
  level: 'warn',
541
- classification: 'ACTIONABLE',
542
+ classification: types_1.Classification.ACTIONABLE,
542
543
  instance,
543
544
  }, details, Object.assign({ links: [] }, additionalData), cause);
544
545
  this.name = this.constructor.name;
@@ -552,7 +553,7 @@ exports.UndefinedContainerVendorError = UndefinedContainerVendorError;
552
553
  * @summary Unsupported vendor
553
554
  * @category PurlVulnerabilityFetching
554
555
  * @param {string} details the specific details that causes this error
555
- * @param {string} classification the error classification determining if the error is user-actionable or not
556
+ * @param {Classification} classification the error classification determining if the error is user-actionable or not
556
557
  * @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
557
558
  * @param {Error} [cause] the `Error` type that caused this error to be thrown
558
559
  * @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
@@ -565,7 +566,7 @@ class UnsupportedContainerVendorError extends problem_error_1.ProblemError {
565
566
  status: 400,
566
567
  errorCode: 'SNYK-OSSI-2047',
567
568
  level: 'warn',
568
- classification: 'UNSUPPORTED',
569
+ classification: types_1.Classification.UNSUPPORTED,
569
570
  instance,
570
571
  }, details, Object.assign({ links: [] }, additionalData), cause);
571
572
  this.name = this.constructor.name;
@@ -1 +1 @@
1
- {"version":3,"file":"PurlVulnerabilityFetching-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/PurlVulnerabilityFetching-error-catalog.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"PurlVulnerabilityFetching-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/PurlVulnerabilityFetching-error-catalog.ts"],"names":[],"mappings":"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"}