@snyk/error-catalog-nodejs-public 5.32.2 → 5.34.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.
- package/package.json +1 -1
- package/src/catalogs/CLI-error-catalog.d.ts +3 -0
- package/src/catalogs/CLI-error-catalog.js +8 -0
- package/src/catalogs/CLI-error-catalog.js.map +1 -1
- package/src/catalogs/Code-error-catalog.d.ts +98 -0
- package/src/catalogs/Code-error-catalog.js +190 -1
- package/src/catalogs/Code-error-catalog.js.map +1 -1
- package/src/catalogs/CustomBaseImages-error-catalog.d.ts +19 -0
- package/src/catalogs/CustomBaseImages-error-catalog.js +43 -0
- package/src/catalogs/CustomBaseImages-error-catalog.js.map +1 -1
- package/src/catalogs/Fix-error-catalog.d.ts +22 -0
- package/src/catalogs/Fix-error-catalog.js +44 -0
- package/src/catalogs/Fix-error-catalog.js.map +1 -1
- package/src/catalogs/Integration-error-catalog.d.ts +1 -0
- package/src/catalogs/Integration-error-catalog.js +2 -0
- package/src/catalogs/Integration-error-catalog.js.map +1 -1
- package/src/catalogs/IsolatedBuilds-error-catalog.d.ts +4 -0
- package/src/catalogs/IsolatedBuilds-error-catalog.js +13 -0
- package/src/catalogs/IsolatedBuilds-error-catalog.js.map +1 -1
- package/src/catalogs/OpenAPI-error-catalog.d.ts +8 -0
- package/src/catalogs/OpenAPI-error-catalog.js +16 -0
- package/src/catalogs/OpenAPI-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceEcosystems-error-catalog.d.ts +77 -0
- package/src/catalogs/OpenSourceEcosystems-error-catalog.js +352 -0
- package/src/catalogs/OpenSourceEcosystems-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.d.ts +5 -0
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.js +10 -0
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.d.ts +5 -0
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js +10 -0
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js.map +1 -1
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.d.ts +2 -0
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.js +4 -0
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.js.map +1 -1
- package/src/catalogs/PRChecks-error-catalog.d.ts +11 -0
- package/src/catalogs/PRChecks-error-catalog.js +61 -0
- package/src/catalogs/PRChecks-error-catalog.js.map +1 -1
- package/src/catalogs/Policies-error-catalog.d.ts +1 -0
- package/src/catalogs/Policies-error-catalog.js +3 -0
- package/src/catalogs/Policies-error-catalog.js.map +1 -1
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.d.ts +20 -0
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js +40 -0
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js.map +1 -1
- package/src/catalogs/SCM-error-catalog.d.ts +6 -0
- package/src/catalogs/SCM-error-catalog.js +16 -0
- package/src/catalogs/SCM-error-catalog.js.map +1 -1
- package/src/catalogs/SbomExport-error-catalog.d.ts +9 -0
- package/src/catalogs/SbomExport-error-catalog.js +18 -0
- package/src/catalogs/SbomExport-error-catalog.js.map +1 -1
- package/src/catalogs/SbomTest-error-catalog.d.ts +10 -0
- package/src/catalogs/SbomTest-error-catalog.js +29 -0
- package/src/catalogs/SbomTest-error-catalog.js.map +1 -1
- package/src/catalogs/Snyk-error-catalog.d.ts +8 -0
- package/src/catalogs/Snyk-error-catalog.js +23 -1
- package/src/catalogs/Snyk-error-catalog.js.map +1 -1
- package/src/catalogs/Target-error-catalog.d.ts +2 -0
- package/src/catalogs/Target-error-catalog.js +4 -0
- package/src/catalogs/Target-error-catalog.js.map +1 -1
- package/src/catalogs/error-codes.d.ts +5 -0
- package/src/catalogs/error-codes.js +5 -0
- package/src/catalogs/error-codes.js.map +1 -1
- package/src/problem-error.js +1 -1
- package/src/problem-error.js.map +1 -1
- package/src/types.d.ts +2 -1
- package/src/types.js.map +1 -1
|
@@ -29,6 +29,7 @@ import { ProblemError } from '../problem-error';
|
|
|
29
29
|
* @summary Versioning schema does not support tag
|
|
30
30
|
* @category CustomBaseImages
|
|
31
31
|
* @param {string} details the specific details that causes this error
|
|
32
|
+
* @param {string} description the general description for this error
|
|
32
33
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
33
34
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
34
35
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -44,6 +45,7 @@ export declare class VersioningSchemaDoesNotSupportTagError extends ProblemError
|
|
|
44
45
|
* @summary Missing required parameter
|
|
45
46
|
* @category CustomBaseImages
|
|
46
47
|
* @param {string} details the specific details that causes this error
|
|
48
|
+
* @param {string} description the general description for this error
|
|
47
49
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
48
50
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
49
51
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -59,6 +61,7 @@ export declare class RequiredParameterNotProvidedError extends ProblemError {
|
|
|
59
61
|
* @summary Project does not exist
|
|
60
62
|
* @category CustomBaseImages
|
|
61
63
|
* @param {string} details the specific details that causes this error
|
|
64
|
+
* @param {string} description the general description for this error
|
|
62
65
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
63
66
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
64
67
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -77,6 +80,7 @@ export declare class ProjectDoesNotExistError extends ProblemError {
|
|
|
77
80
|
* @summary Project is not a container image
|
|
78
81
|
* @category CustomBaseImages
|
|
79
82
|
* @param {string} details the specific details that causes this error
|
|
83
|
+
* @param {string} description the general description for this error
|
|
80
84
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
81
85
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
82
86
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -92,6 +96,7 @@ export declare class ProjectIsNotContainerImageError extends ProblemError {
|
|
|
92
96
|
* @summary Unable to retrieve group
|
|
93
97
|
* @category CustomBaseImages
|
|
94
98
|
* @param {string} details the specific details that causes this error
|
|
99
|
+
* @param {string} description the general description for this error
|
|
95
100
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
96
101
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
97
102
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -107,6 +112,7 @@ export declare class ProjectDoesNotBelongToGroupError extends ProblemError {
|
|
|
107
112
|
* @summary The values in the request do not match
|
|
108
113
|
* @category CustomBaseImages
|
|
109
114
|
* @param {string} details the specific details that causes this error
|
|
115
|
+
* @param {string} description the general description for this error
|
|
110
116
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
111
117
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
112
118
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -122,6 +128,7 @@ export declare class RequestIdsDoNotMatchError extends ProblemError {
|
|
|
122
128
|
* @summary The request body cannot be updated
|
|
123
129
|
* @category CustomBaseImages
|
|
124
130
|
* @param {string} details the specific details that causes this error
|
|
131
|
+
* @param {string} description the general description for this error
|
|
125
132
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
126
133
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
127
134
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -137,6 +144,7 @@ export declare class RequestBodyAttributesMissingError extends ProblemError {
|
|
|
137
144
|
* @summary Invalid pagination cursor
|
|
138
145
|
* @category CustomBaseImages
|
|
139
146
|
* @param {string} details the specific details that causes this error
|
|
147
|
+
* @param {string} description the general description for this error
|
|
140
148
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
141
149
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
142
150
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -152,6 +160,7 @@ export declare class InvalidPaginationCursorError extends ProblemError {
|
|
|
152
160
|
* @summary Unable to sort by version
|
|
153
161
|
* @category CustomBaseImages
|
|
154
162
|
* @param {string} details the specific details that causes this error
|
|
163
|
+
* @param {string} description the general description for this error
|
|
155
164
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
156
165
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
157
166
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -167,6 +176,7 @@ export declare class UnableToSortByVersionError extends ProblemError {
|
|
|
167
176
|
* @summary Unable to update versioning schema
|
|
168
177
|
* @category CustomBaseImages
|
|
169
178
|
* @param {string} details the specific details that causes this error
|
|
179
|
+
* @param {string} description the general description for this error
|
|
170
180
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
171
181
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
172
182
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -182,6 +192,7 @@ export declare class UpdateVersioningSchemaFailError extends ProblemError {
|
|
|
182
192
|
* @summary Project is already linked to a custom base image
|
|
183
193
|
* @category CustomBaseImages
|
|
184
194
|
* @param {string} details the specific details that causes this error
|
|
195
|
+
* @param {string} description the general description for this error
|
|
185
196
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
186
197
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
187
198
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -197,6 +208,7 @@ export declare class ProjectAlreadyLinkedError extends ProblemError {
|
|
|
197
208
|
* @summary No versioning schema for repository
|
|
198
209
|
* @category CustomBaseImages
|
|
199
210
|
* @param {string} details the specific details that causes this error
|
|
211
|
+
* @param {string} description the general description for this error
|
|
200
212
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
201
213
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
202
214
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -212,6 +224,7 @@ export declare class VersioningSchemaMissingError extends ProblemError {
|
|
|
212
224
|
* @summary Unable to apply versioning schema
|
|
213
225
|
* @category CustomBaseImages
|
|
214
226
|
* @param {string} details the specific details that causes this error
|
|
227
|
+
* @param {string} description the general description for this error
|
|
215
228
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
216
229
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
217
230
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -227,6 +240,7 @@ export declare class VersioningSchemaInapplicableError extends ProblemError {
|
|
|
227
240
|
* @summary Unable to find custom base image
|
|
228
241
|
* @category CustomBaseImages
|
|
229
242
|
* @param {string} details the specific details that causes this error
|
|
243
|
+
* @param {string} description the general description for this error
|
|
230
244
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
231
245
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
232
246
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -245,6 +259,7 @@ export declare class ImageNotFoundError extends ProblemError {
|
|
|
245
259
|
* @summary Custom base image does not exist
|
|
246
260
|
* @category CustomBaseImages
|
|
247
261
|
* @param {string} details the specific details that causes this error
|
|
262
|
+
* @param {string} description the general description for this error
|
|
248
263
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
249
264
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
250
265
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -263,6 +278,7 @@ export declare class ImageDoesNotExistError extends ProblemError {
|
|
|
263
278
|
* @summary Unable to update custom base image
|
|
264
279
|
* @category CustomBaseImages
|
|
265
280
|
* @param {string} details the specific details that causes this error
|
|
281
|
+
* @param {string} description the general description for this error
|
|
266
282
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
267
283
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
268
284
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -281,6 +297,7 @@ export declare class ImageUpdateFailedError extends ProblemError {
|
|
|
281
297
|
* @summary Unable to retrieve project properties
|
|
282
298
|
* @category CustomBaseImages
|
|
283
299
|
* @param {string} details the specific details that causes this error
|
|
300
|
+
* @param {string} description the general description for this error
|
|
284
301
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
285
302
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
286
303
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -299,6 +316,7 @@ export declare class PropertiesRetrievalFailedError extends ProblemError {
|
|
|
299
316
|
* @summary Unable to retrieve image collection
|
|
300
317
|
* @category CustomBaseImages
|
|
301
318
|
* @param {string} details the specific details that causes this error
|
|
319
|
+
* @param {string} description the general description for this error
|
|
302
320
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
303
321
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
304
322
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -314,6 +332,7 @@ export declare class ImageCollectionRetrievalFailedError extends ProblemError {
|
|
|
314
332
|
* @summary Unable to create versioning schema
|
|
315
333
|
* @category CustomBaseImages
|
|
316
334
|
* @param {string} details the specific details that causes this error
|
|
335
|
+
* @param {string} description the general description for this error
|
|
317
336
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
318
337
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
319
338
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -33,6 +33,7 @@ const problem_error_1 = require("../problem-error");
|
|
|
33
33
|
* @summary Versioning schema does not support tag
|
|
34
34
|
* @category CustomBaseImages
|
|
35
35
|
* @param {string} details the specific details that causes this error
|
|
36
|
+
* @param {string} description the general description for this error
|
|
36
37
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
37
38
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
38
39
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -44,6 +45,12 @@ class VersioningSchemaDoesNotSupportTagError extends problem_error_1.ProblemErro
|
|
|
44
45
|
title: 'Versioning schema does not support tag',
|
|
45
46
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0001',
|
|
46
47
|
status: 400,
|
|
48
|
+
description: `The versioning schema used does not support the given tag. Update the versioning schema to include the tag.
|
|
49
|
+
|
|
50
|
+
Once the tag of the custom base image is correct, the versioning schema must be modified.
|
|
51
|
+
You can use a different versioning schema that supports all tags in the repository or you can update the relevant properties of the versioning schema.
|
|
52
|
+
|
|
53
|
+
For example, if the repository currently uses Semver, and a new tag "1.2.5.7" needs to be added, then you can use a Custom versioning schema.`,
|
|
47
54
|
errorCode: 'SNYK-CBI-0001',
|
|
48
55
|
level: 'warn',
|
|
49
56
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -62,6 +69,7 @@ exports.VersioningSchemaDoesNotSupportTagError = VersioningSchemaDoesNotSupportT
|
|
|
62
69
|
* @summary Missing required parameter
|
|
63
70
|
* @category CustomBaseImages
|
|
64
71
|
* @param {string} details the specific details that causes this error
|
|
72
|
+
* @param {string} description the general description for this error
|
|
65
73
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
66
74
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
67
75
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -73,6 +81,7 @@ class RequiredParameterNotProvidedError extends problem_error_1.ProblemError {
|
|
|
73
81
|
title: 'Missing required parameter',
|
|
74
82
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0002',
|
|
75
83
|
status: 400,
|
|
84
|
+
description: `Provide an ORG ID or GROUP ID.`,
|
|
76
85
|
errorCode: 'SNYK-CBI-0002',
|
|
77
86
|
level: 'warn',
|
|
78
87
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -89,6 +98,7 @@ exports.RequiredParameterNotProvidedError = RequiredParameterNotProvidedError;
|
|
|
89
98
|
* @summary Project does not exist
|
|
90
99
|
* @category CustomBaseImages
|
|
91
100
|
* @param {string} details the specific details that causes this error
|
|
101
|
+
* @param {string} description the general description for this error
|
|
92
102
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
93
103
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
94
104
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -100,6 +110,7 @@ class ProjectDoesNotExistError extends problem_error_1.ProblemError {
|
|
|
100
110
|
title: 'Project does not exist',
|
|
101
111
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0003',
|
|
102
112
|
status: 404,
|
|
113
|
+
description: `The project could not be found. Check that the project exists, that you have access to the project, and also check that the ID you have provided is the project ID and not a CBI ID.`,
|
|
103
114
|
errorCode: 'SNYK-CBI-0003',
|
|
104
115
|
level: 'warn',
|
|
105
116
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -119,6 +130,7 @@ exports.ProjectDoesNotExistError = ProjectDoesNotExistError;
|
|
|
119
130
|
* @summary Project is not a container image
|
|
120
131
|
* @category CustomBaseImages
|
|
121
132
|
* @param {string} details the specific details that causes this error
|
|
133
|
+
* @param {string} description the general description for this error
|
|
122
134
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
123
135
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
124
136
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -130,6 +142,7 @@ class ProjectIsNotContainerImageError extends problem_error_1.ProblemError {
|
|
|
130
142
|
title: 'Project is not a container image',
|
|
131
143
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0004',
|
|
132
144
|
status: 400,
|
|
145
|
+
description: `The project is not a container image.`,
|
|
133
146
|
errorCode: 'SNYK-CBI-0004',
|
|
134
147
|
level: 'warn',
|
|
135
148
|
classification: types_1.Classification.UNSUPPORTED,
|
|
@@ -148,6 +161,7 @@ exports.ProjectIsNotContainerImageError = ProjectIsNotContainerImageError;
|
|
|
148
161
|
* @summary Unable to retrieve group
|
|
149
162
|
* @category CustomBaseImages
|
|
150
163
|
* @param {string} details the specific details that causes this error
|
|
164
|
+
* @param {string} description the general description for this error
|
|
151
165
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
152
166
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
153
167
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -159,6 +173,7 @@ class ProjectDoesNotBelongToGroupError extends problem_error_1.ProblemError {
|
|
|
159
173
|
title: 'Unable to retrieve group',
|
|
160
174
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0005',
|
|
161
175
|
status: 400,
|
|
176
|
+
description: `The project's org does not belong to a group. In order to use a Custom Base Image, recreate the project and add it to a group or add a group to the org. Note that the group feature is not available to free users.`,
|
|
162
177
|
errorCode: 'SNYK-CBI-0005',
|
|
163
178
|
level: 'warn',
|
|
164
179
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -175,6 +190,7 @@ exports.ProjectDoesNotBelongToGroupError = ProjectDoesNotBelongToGroupError;
|
|
|
175
190
|
* @summary The values in the request do not match
|
|
176
191
|
* @category CustomBaseImages
|
|
177
192
|
* @param {string} details the specific details that causes this error
|
|
193
|
+
* @param {string} description the general description for this error
|
|
178
194
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
179
195
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
180
196
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -186,6 +202,7 @@ class RequestIdsDoNotMatchError extends problem_error_1.ProblemError {
|
|
|
186
202
|
title: 'The values in the request do not match',
|
|
187
203
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0006',
|
|
188
204
|
status: 400,
|
|
205
|
+
description: `The request body ID and the request path ID do not match. Ensure that the values are the same and try again.`,
|
|
189
206
|
errorCode: 'SNYK-CBI-0006',
|
|
190
207
|
level: 'warn',
|
|
191
208
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -202,6 +219,7 @@ exports.RequestIdsDoNotMatchError = RequestIdsDoNotMatchError;
|
|
|
202
219
|
* @summary The request body cannot be updated
|
|
203
220
|
* @category CustomBaseImages
|
|
204
221
|
* @param {string} details the specific details that causes this error
|
|
222
|
+
* @param {string} description the general description for this error
|
|
205
223
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
206
224
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
207
225
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -213,6 +231,7 @@ class RequestBodyAttributesMissingError extends problem_error_1.ProblemError {
|
|
|
213
231
|
title: 'The request body cannot be updated',
|
|
214
232
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0007',
|
|
215
233
|
status: 400,
|
|
234
|
+
description: `The request body does not contain any attributes that can be updated. Provide the necessary attributes and try again.`,
|
|
216
235
|
errorCode: 'SNYK-CBI-0007',
|
|
217
236
|
level: 'warn',
|
|
218
237
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -229,6 +248,7 @@ exports.RequestBodyAttributesMissingError = RequestBodyAttributesMissingError;
|
|
|
229
248
|
* @summary Invalid pagination cursor
|
|
230
249
|
* @category CustomBaseImages
|
|
231
250
|
* @param {string} details the specific details that causes this error
|
|
251
|
+
* @param {string} description the general description for this error
|
|
232
252
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
233
253
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
234
254
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -240,6 +260,7 @@ class InvalidPaginationCursorError extends problem_error_1.ProblemError {
|
|
|
240
260
|
title: 'Invalid pagination cursor',
|
|
241
261
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0008',
|
|
242
262
|
status: 400,
|
|
263
|
+
description: `The provided pagination cursor is invalid.`,
|
|
243
264
|
errorCode: 'SNYK-CBI-0008',
|
|
244
265
|
level: 'warn',
|
|
245
266
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -256,6 +277,7 @@ exports.InvalidPaginationCursorError = InvalidPaginationCursorError;
|
|
|
256
277
|
* @summary Unable to sort by version
|
|
257
278
|
* @category CustomBaseImages
|
|
258
279
|
* @param {string} details the specific details that causes this error
|
|
280
|
+
* @param {string} description the general description for this error
|
|
259
281
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
260
282
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
261
283
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -267,6 +289,7 @@ class UnableToSortByVersionError extends problem_error_1.ProblemError {
|
|
|
267
289
|
title: 'Unable to sort by version',
|
|
268
290
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0009',
|
|
269
291
|
status: 400,
|
|
292
|
+
description: `Snyk was unable to filter by version. Provide a repository filter and try again.`,
|
|
270
293
|
errorCode: 'SNYK-CBI-0009',
|
|
271
294
|
level: 'warn',
|
|
272
295
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -283,6 +306,7 @@ exports.UnableToSortByVersionError = UnableToSortByVersionError;
|
|
|
283
306
|
* @summary Unable to update versioning schema
|
|
284
307
|
* @category CustomBaseImages
|
|
285
308
|
* @param {string} details the specific details that causes this error
|
|
309
|
+
* @param {string} description the general description for this error
|
|
286
310
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
287
311
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
288
312
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -294,6 +318,7 @@ class UpdateVersioningSchemaFailError extends problem_error_1.ProblemError {
|
|
|
294
318
|
title: 'Unable to update versioning schema',
|
|
295
319
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0010',
|
|
296
320
|
status: 400,
|
|
321
|
+
description: `The versioning schema could not be applied to all images in the repository. Therefore, no resources have been updated. Update the provided versioning schema so that all tags in the repository fit the new schema.`,
|
|
297
322
|
errorCode: 'SNYK-CBI-0010',
|
|
298
323
|
level: 'warn',
|
|
299
324
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -310,6 +335,7 @@ exports.UpdateVersioningSchemaFailError = UpdateVersioningSchemaFailError;
|
|
|
310
335
|
* @summary Project is already linked to a custom base image
|
|
311
336
|
* @category CustomBaseImages
|
|
312
337
|
* @param {string} details the specific details that causes this error
|
|
338
|
+
* @param {string} description the general description for this error
|
|
313
339
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
314
340
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
315
341
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -321,6 +347,7 @@ class ProjectAlreadyLinkedError extends problem_error_1.ProblemError {
|
|
|
321
347
|
title: 'Project is already linked to a custom base image',
|
|
322
348
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0011',
|
|
323
349
|
status: 400,
|
|
350
|
+
description: `The project ID provided is already linked to another Custom Base Image.`,
|
|
324
351
|
errorCode: 'SNYK-CBI-0011',
|
|
325
352
|
level: 'warn',
|
|
326
353
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -337,6 +364,7 @@ exports.ProjectAlreadyLinkedError = ProjectAlreadyLinkedError;
|
|
|
337
364
|
* @summary No versioning schema for repository
|
|
338
365
|
* @category CustomBaseImages
|
|
339
366
|
* @param {string} details the specific details that causes this error
|
|
367
|
+
* @param {string} description the general description for this error
|
|
340
368
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
341
369
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
342
370
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -348,6 +376,7 @@ class VersioningSchemaMissingError extends problem_error_1.ProblemError {
|
|
|
348
376
|
title: 'No versioning schema for repository',
|
|
349
377
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0012',
|
|
350
378
|
status: 400,
|
|
379
|
+
description: `No versioning schema exists for the repository. This image is the first in its repository. Provide a versioning schema that fits the format of current and future images in this repository.`,
|
|
351
380
|
errorCode: 'SNYK-CBI-0012',
|
|
352
381
|
level: 'warn',
|
|
353
382
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -364,6 +393,7 @@ exports.VersioningSchemaMissingError = VersioningSchemaMissingError;
|
|
|
364
393
|
* @summary Unable to apply versioning schema
|
|
365
394
|
* @category CustomBaseImages
|
|
366
395
|
* @param {string} details the specific details that causes this error
|
|
396
|
+
* @param {string} description the general description for this error
|
|
367
397
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
368
398
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
369
399
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -375,6 +405,7 @@ class VersioningSchemaInapplicableError extends problem_error_1.ProblemError {
|
|
|
375
405
|
title: 'Unable to apply versioning schema',
|
|
376
406
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0013',
|
|
377
407
|
status: 400,
|
|
408
|
+
description: `A versioning schema already exists for repository. Remove the "versioning_schema" property or, if you want to update the versioning schema, use the PATCH endpoint.`,
|
|
378
409
|
errorCode: 'SNYK-CBI-0013',
|
|
379
410
|
level: 'warn',
|
|
380
411
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -391,6 +422,7 @@ exports.VersioningSchemaInapplicableError = VersioningSchemaInapplicableError;
|
|
|
391
422
|
* @summary Unable to find custom base image
|
|
392
423
|
* @category CustomBaseImages
|
|
393
424
|
* @param {string} details the specific details that causes this error
|
|
425
|
+
* @param {string} description the general description for this error
|
|
394
426
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
395
427
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
396
428
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -402,6 +434,7 @@ class ImageNotFoundError extends problem_error_1.ProblemError {
|
|
|
402
434
|
title: 'Unable to find custom base image',
|
|
403
435
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0014',
|
|
404
436
|
status: 404,
|
|
437
|
+
description: `Unable to find the requested custom base image. Try again, and if the error persists, contact Snyk support.`,
|
|
405
438
|
errorCode: 'SNYK-CBI-0014',
|
|
406
439
|
level: 'warn',
|
|
407
440
|
classification: types_1.Classification.UNEXPECTED,
|
|
@@ -421,6 +454,7 @@ exports.ImageNotFoundError = ImageNotFoundError;
|
|
|
421
454
|
* @summary Custom base image does not exist
|
|
422
455
|
* @category CustomBaseImages
|
|
423
456
|
* @param {string} details the specific details that causes this error
|
|
457
|
+
* @param {string} description the general description for this error
|
|
424
458
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
425
459
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
426
460
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -432,6 +466,7 @@ class ImageDoesNotExistError extends problem_error_1.ProblemError {
|
|
|
432
466
|
title: 'Custom base image does not exist',
|
|
433
467
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0015',
|
|
434
468
|
status: 404,
|
|
469
|
+
description: `The requested custom base image does not exist.`,
|
|
435
470
|
errorCode: 'SNYK-CBI-0015',
|
|
436
471
|
level: 'warn',
|
|
437
472
|
classification: types_1.Classification.UNEXPECTED,
|
|
@@ -453,6 +488,7 @@ exports.ImageDoesNotExistError = ImageDoesNotExistError;
|
|
|
453
488
|
* @summary Unable to update custom base image
|
|
454
489
|
* @category CustomBaseImages
|
|
455
490
|
* @param {string} details the specific details that causes this error
|
|
491
|
+
* @param {string} description the general description for this error
|
|
456
492
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
457
493
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
458
494
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -464,6 +500,7 @@ class ImageUpdateFailedError extends problem_error_1.ProblemError {
|
|
|
464
500
|
title: 'Unable to update custom base image',
|
|
465
501
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0016',
|
|
466
502
|
status: 500,
|
|
503
|
+
description: `An internal error occurred while trying to update a custom base image. Try again, and if the error persists, contact Snyk support.`,
|
|
467
504
|
errorCode: 'SNYK-CBI-0016',
|
|
468
505
|
level: 'error',
|
|
469
506
|
classification: types_1.Classification.UNEXPECTED,
|
|
@@ -485,6 +522,7 @@ exports.ImageUpdateFailedError = ImageUpdateFailedError;
|
|
|
485
522
|
* @summary Unable to retrieve project properties
|
|
486
523
|
* @category CustomBaseImages
|
|
487
524
|
* @param {string} details the specific details that causes this error
|
|
525
|
+
* @param {string} description the general description for this error
|
|
488
526
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
489
527
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
490
528
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -496,6 +534,7 @@ class PropertiesRetrievalFailedError extends problem_error_1.ProblemError {
|
|
|
496
534
|
title: 'Unable to retrieve project properties',
|
|
497
535
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0017',
|
|
498
536
|
status: 500,
|
|
537
|
+
description: `An internal error occurred while trying to retrieve project properties. Try again, and if the error persists, contact Snyk support.`,
|
|
499
538
|
errorCode: 'SNYK-CBI-0017',
|
|
500
539
|
level: 'error',
|
|
501
540
|
classification: types_1.Classification.UNEXPECTED,
|
|
@@ -517,6 +556,7 @@ exports.PropertiesRetrievalFailedError = PropertiesRetrievalFailedError;
|
|
|
517
556
|
* @summary Unable to retrieve image collection
|
|
518
557
|
* @category CustomBaseImages
|
|
519
558
|
* @param {string} details the specific details that causes this error
|
|
559
|
+
* @param {string} description the general description for this error
|
|
520
560
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
521
561
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
522
562
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -528,6 +568,7 @@ class ImageCollectionRetrievalFailedError extends problem_error_1.ProblemError {
|
|
|
528
568
|
title: 'Unable to retrieve image collection',
|
|
529
569
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0018',
|
|
530
570
|
status: 500,
|
|
571
|
+
description: `An internal error occurred while trying to retrieve the image collection. Try again, and if the error persists, contact Snyk support.`,
|
|
531
572
|
errorCode: 'SNYK-CBI-0018',
|
|
532
573
|
level: 'error',
|
|
533
574
|
classification: types_1.Classification.UNEXPECTED,
|
|
@@ -546,6 +587,7 @@ exports.ImageCollectionRetrievalFailedError = ImageCollectionRetrievalFailedErro
|
|
|
546
587
|
* @summary Unable to create versioning schema
|
|
547
588
|
* @category CustomBaseImages
|
|
548
589
|
* @param {string} details the specific details that causes this error
|
|
590
|
+
* @param {string} description the general description for this error
|
|
549
591
|
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
550
592
|
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
551
593
|
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
@@ -557,6 +599,7 @@ class CreateVersioningSchemaFailError extends problem_error_1.ProblemError {
|
|
|
557
599
|
title: 'Unable to create versioning schema',
|
|
558
600
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-cbi-0019',
|
|
559
601
|
status: 400,
|
|
602
|
+
description: `The provided versioning schema is invalid and image could therefor not be created. Provide a properly formatted versioning schema and try again.`,
|
|
560
603
|
errorCode: 'SNYK-CBI-0019',
|
|
561
604
|
level: 'warn',
|
|
562
605
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CustomBaseImages-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/CustomBaseImages-error-catalog.ts"],"names":[],"mappings":";;;AAAA,oCAA0C;AAC1C,oDAAgD;AAEhD
|
|
1
|
+
{"version":3,"file":"CustomBaseImages-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/CustomBaseImages-error-catalog.ts"],"names":[],"mappings":"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"}
|