@snyk/error-catalog-nodejs-public 5.72.0 → 5.73.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/UploadRevision-error-catalog.d.ts +192 -0
- package/src/catalogs/UploadRevision-error-catalog.js +340 -0
- package/src/catalogs/UploadRevision-error-catalog.js.map +1 -0
- package/src/catalogs/error-catalog.d.ts +1 -0
- package/src/catalogs/error-catalog.js +2 -1
- package/src/catalogs/error-catalog.js.map +1 -1
- package/src/catalogs/error-codes.d.ts +13 -0
- package/src/catalogs/error-codes.js +13 -0
- package/src/catalogs/error-codes.js.map +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* © 2026 Snyk Limited
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the 'License');
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* https://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an 'AS IS' BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { ProblemError } from '../problem-error';
|
|
17
|
+
/**
|
|
18
|
+
* @class
|
|
19
|
+
* @name UploadRevisionNotFoundError
|
|
20
|
+
* @description The upload revision was not found. The upload revision may have expired or does not exist. Provide a valid upload revision identifier.
|
|
21
|
+
* @summary Upload revision not found
|
|
22
|
+
* @category UploadRevision
|
|
23
|
+
* @param {string} details the specific details that causes this error
|
|
24
|
+
* @param {string} description the general description for this error
|
|
25
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
26
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
27
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
28
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
29
|
+
*/
|
|
30
|
+
export declare class UploadRevisionNotFoundError extends ProblemError {
|
|
31
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @class
|
|
35
|
+
* @name UploadRevisionSealedError
|
|
36
|
+
* @description The upload revision cannot be modified after it has been sealed. Create a new upload revision and retry the operation.
|
|
37
|
+
* @summary Upload revision is sealed
|
|
38
|
+
* @category UploadRevision
|
|
39
|
+
* @param {string} details the specific details that causes this error
|
|
40
|
+
* @param {string} description the general description for this error
|
|
41
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
42
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
43
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
44
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
45
|
+
*/
|
|
46
|
+
export declare class UploadRevisionSealedError extends ProblemError {
|
|
47
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* @class
|
|
51
|
+
* @name FileTooLargeError
|
|
52
|
+
* @description One of the uploaded files exceeds the maximum allowed size. Reduce the file size and try again, or contact support for assistance.
|
|
53
|
+
* @summary File too large
|
|
54
|
+
* @category UploadRevision
|
|
55
|
+
* @param {string} details the specific details that causes this error
|
|
56
|
+
* @param {string} description the general description for this error
|
|
57
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
58
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
59
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
60
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
61
|
+
*/
|
|
62
|
+
export declare class FileTooLargeError extends ProblemError {
|
|
63
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* @class
|
|
67
|
+
* @name TotalFilesSizeLimitExceededError
|
|
68
|
+
* @description The total size of all files uploaded in a single request exceeds the maximum allowed limit. Reduce the total size of files in the request.
|
|
69
|
+
* @summary Total files size limit exceeded
|
|
70
|
+
* @category UploadRevision
|
|
71
|
+
* @param {string} details the specific details that causes this error
|
|
72
|
+
* @param {string} description the general description for this error
|
|
73
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
74
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
75
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
76
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
77
|
+
*/
|
|
78
|
+
export declare class TotalFilesSizeLimitExceededError extends ProblemError {
|
|
79
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* @class
|
|
83
|
+
* @name FileCountLimitExceededError
|
|
84
|
+
* @description The request includes more files than the maximum allowed file count. Reduce the number of files in the request.
|
|
85
|
+
* @summary File count limit exceeded
|
|
86
|
+
* @category UploadRevision
|
|
87
|
+
* @param {string} details the specific details that causes this error
|
|
88
|
+
* @param {string} description the general description for this error
|
|
89
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
90
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
91
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
92
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
93
|
+
*/
|
|
94
|
+
export declare class FileCountLimitExceededError extends ProblemError {
|
|
95
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* @class
|
|
99
|
+
* @name FilePathTooLongError
|
|
100
|
+
* @description One or more file paths exceed the maximum allowed length. Reduce the length of the file paths.
|
|
101
|
+
* @summary File path too long
|
|
102
|
+
* @category UploadRevision
|
|
103
|
+
* @param {string} details the specific details that causes this error
|
|
104
|
+
* @param {string} description the general description for this error
|
|
105
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
106
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
107
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
108
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
109
|
+
*/
|
|
110
|
+
export declare class FilePathTooLongError extends ProblemError {
|
|
111
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* @class
|
|
115
|
+
* @name PopulateRequestLimitExceededError
|
|
116
|
+
* @description The number of populate requests for this upload revision exceeds the maximum allowed limit. Create a new upload revision and upload a revision using fewer requests.
|
|
117
|
+
* @summary Populate request limit exceeded
|
|
118
|
+
* @category UploadRevision
|
|
119
|
+
* @param {string} details the specific details that causes this error
|
|
120
|
+
* @param {string} description the general description for this error
|
|
121
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
122
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
123
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
124
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
125
|
+
*/
|
|
126
|
+
export declare class PopulateRequestLimitExceededError extends ProblemError {
|
|
127
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
128
|
+
}
|
|
129
|
+
/**
|
|
130
|
+
* @class
|
|
131
|
+
* @name TotalUploadRevisionFileCountLimitExceededError
|
|
132
|
+
* @description The number of files exceeds the limit for a single upload revision. Consider splitting the files across multiple upload revisions.
|
|
133
|
+
* @summary Upload revision file count limit exceeded
|
|
134
|
+
* @category UploadRevision
|
|
135
|
+
* @param {string} details the specific details that causes this error
|
|
136
|
+
* @param {string} description the general description for this error
|
|
137
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
138
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
139
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
140
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
141
|
+
*/
|
|
142
|
+
export declare class TotalUploadRevisionFileCountLimitExceededError extends ProblemError {
|
|
143
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* @class
|
|
147
|
+
* @name TotalUploadRevisionSizeLimitExceededError
|
|
148
|
+
* @description The total size of all files uploaded across the entire upload revision exceeds the maximum allowed limit. Consider splitting the files across multiple upload revisions.
|
|
149
|
+
* @summary Upload revision size limit exceeded
|
|
150
|
+
* @category UploadRevision
|
|
151
|
+
* @param {string} details the specific details that causes this error
|
|
152
|
+
* @param {string} description the general description for this error
|
|
153
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
154
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
155
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
156
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
157
|
+
*/
|
|
158
|
+
export declare class TotalUploadRevisionSizeLimitExceededError extends ProblemError {
|
|
159
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* @class
|
|
163
|
+
* @name UploadRevisionIdMismatchError
|
|
164
|
+
* @description The upload revision identifier in the request body does not match the upload revision identifier in the request path. Ensure both identifiers match and retry the request.
|
|
165
|
+
* @summary Upload revision identifier mismatch
|
|
166
|
+
* @category UploadRevision
|
|
167
|
+
* @param {string} details the specific details that causes this error
|
|
168
|
+
* @param {string} description the general description for this error
|
|
169
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
170
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
171
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
172
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
173
|
+
*/
|
|
174
|
+
export declare class UploadRevisionIdMismatchError extends ProblemError {
|
|
175
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* @class
|
|
179
|
+
* @name MultipartFieldNameMissingError
|
|
180
|
+
* @description The multipart request has a missing or empty name parameter in the Content-Disposition header. Ensure each part includes a valid field name.
|
|
181
|
+
* @summary Missing field name in multipart request
|
|
182
|
+
* @category UploadRevision
|
|
183
|
+
* @param {string} details the specific details that causes this error
|
|
184
|
+
* @param {string} description the general description for this error
|
|
185
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
186
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
187
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
188
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
189
|
+
*/
|
|
190
|
+
export declare class MultipartFieldNameMissingError extends ProblemError {
|
|
191
|
+
constructor(details: string, additionalData?: Record<string, any>, cause?: Error, instance?: string, logs?: string[]);
|
|
192
|
+
}
|
|
@@ -0,0 +1,340 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* © 2026 Snyk Limited
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the 'License');
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* https://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an 'AS IS' BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
"use strict";
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.MultipartFieldNameMissingError = exports.UploadRevisionIdMismatchError = exports.TotalUploadRevisionSizeLimitExceededError = exports.TotalUploadRevisionFileCountLimitExceededError = exports.PopulateRequestLimitExceededError = exports.FilePathTooLongError = exports.FileCountLimitExceededError = exports.TotalFilesSizeLimitExceededError = exports.FileTooLargeError = exports.UploadRevisionSealedError = exports.UploadRevisionNotFoundError = void 0;
|
|
19
|
+
const types_1 = require("../types");
|
|
20
|
+
const problem_error_1 = require("../problem-error");
|
|
21
|
+
/**
|
|
22
|
+
* @class
|
|
23
|
+
* @name UploadRevisionNotFoundError
|
|
24
|
+
* @description The upload revision was not found. The upload revision may have expired or does not exist. Provide a valid upload revision identifier.
|
|
25
|
+
* @summary Upload revision not found
|
|
26
|
+
* @category UploadRevision
|
|
27
|
+
* @param {string} details the specific details that causes this error
|
|
28
|
+
* @param {string} description the general description for this error
|
|
29
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
30
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
31
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
32
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
33
|
+
*/
|
|
34
|
+
class UploadRevisionNotFoundError extends problem_error_1.ProblemError {
|
|
35
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
36
|
+
super({
|
|
37
|
+
title: 'Upload revision not found',
|
|
38
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0001',
|
|
39
|
+
status: 404,
|
|
40
|
+
description: `The upload revision was not found. The upload revision may have expired or does not exist. Provide a valid upload revision identifier.`,
|
|
41
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0001',
|
|
42
|
+
level: 'error',
|
|
43
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
44
|
+
instance,
|
|
45
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
46
|
+
this.name = this.constructor.name;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
exports.UploadRevisionNotFoundError = UploadRevisionNotFoundError;
|
|
50
|
+
/**
|
|
51
|
+
* @class
|
|
52
|
+
* @name UploadRevisionSealedError
|
|
53
|
+
* @description The upload revision cannot be modified after it has been sealed. Create a new upload revision and retry the operation.
|
|
54
|
+
* @summary Upload revision is sealed
|
|
55
|
+
* @category UploadRevision
|
|
56
|
+
* @param {string} details the specific details that causes this error
|
|
57
|
+
* @param {string} description the general description for this error
|
|
58
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
59
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
60
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
61
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
62
|
+
*/
|
|
63
|
+
class UploadRevisionSealedError extends problem_error_1.ProblemError {
|
|
64
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
65
|
+
super({
|
|
66
|
+
title: 'Upload revision is sealed',
|
|
67
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0002',
|
|
68
|
+
status: 400,
|
|
69
|
+
description: `The upload revision cannot be modified after it has been sealed. Create a new upload revision and retry the operation.`,
|
|
70
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0002',
|
|
71
|
+
level: 'error',
|
|
72
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
73
|
+
instance,
|
|
74
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
75
|
+
this.name = this.constructor.name;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
exports.UploadRevisionSealedError = UploadRevisionSealedError;
|
|
79
|
+
/**
|
|
80
|
+
* @class
|
|
81
|
+
* @name FileTooLargeError
|
|
82
|
+
* @description One of the uploaded files exceeds the maximum allowed size. Reduce the file size and try again, or contact support for assistance.
|
|
83
|
+
* @summary File too large
|
|
84
|
+
* @category UploadRevision
|
|
85
|
+
* @param {string} details the specific details that causes this error
|
|
86
|
+
* @param {string} description the general description for this error
|
|
87
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
88
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
89
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
90
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
91
|
+
*/
|
|
92
|
+
class FileTooLargeError extends problem_error_1.ProblemError {
|
|
93
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
94
|
+
super({
|
|
95
|
+
title: 'File too large',
|
|
96
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0003',
|
|
97
|
+
status: 400,
|
|
98
|
+
description: `One of the uploaded files exceeds the maximum allowed size. Reduce the file size and try again, or contact support for assistance.`,
|
|
99
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0003',
|
|
100
|
+
level: 'error',
|
|
101
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
102
|
+
instance,
|
|
103
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
104
|
+
this.name = this.constructor.name;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
exports.FileTooLargeError = FileTooLargeError;
|
|
108
|
+
/**
|
|
109
|
+
* @class
|
|
110
|
+
* @name TotalFilesSizeLimitExceededError
|
|
111
|
+
* @description The total size of all files uploaded in a single request exceeds the maximum allowed limit. Reduce the total size of files in the request.
|
|
112
|
+
* @summary Total files size limit exceeded
|
|
113
|
+
* @category UploadRevision
|
|
114
|
+
* @param {string} details the specific details that causes this error
|
|
115
|
+
* @param {string} description the general description for this error
|
|
116
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
117
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
118
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
119
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
120
|
+
*/
|
|
121
|
+
class TotalFilesSizeLimitExceededError extends problem_error_1.ProblemError {
|
|
122
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
123
|
+
super({
|
|
124
|
+
title: 'Total files size limit exceeded',
|
|
125
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0004',
|
|
126
|
+
status: 400,
|
|
127
|
+
description: `The total size of all files uploaded in a single request exceeds the maximum allowed limit. Reduce the total size of files in the request.`,
|
|
128
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0004',
|
|
129
|
+
level: 'error',
|
|
130
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
131
|
+
instance,
|
|
132
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
133
|
+
this.name = this.constructor.name;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
exports.TotalFilesSizeLimitExceededError = TotalFilesSizeLimitExceededError;
|
|
137
|
+
/**
|
|
138
|
+
* @class
|
|
139
|
+
* @name FileCountLimitExceededError
|
|
140
|
+
* @description The request includes more files than the maximum allowed file count. Reduce the number of files in the request.
|
|
141
|
+
* @summary File count limit exceeded
|
|
142
|
+
* @category UploadRevision
|
|
143
|
+
* @param {string} details the specific details that causes this error
|
|
144
|
+
* @param {string} description the general description for this error
|
|
145
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
146
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
147
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
148
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
149
|
+
*/
|
|
150
|
+
class FileCountLimitExceededError extends problem_error_1.ProblemError {
|
|
151
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
152
|
+
super({
|
|
153
|
+
title: 'File count limit exceeded',
|
|
154
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0005',
|
|
155
|
+
status: 400,
|
|
156
|
+
description: `The request includes more files than the maximum allowed file count. Reduce the number of files in the request.`,
|
|
157
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0005',
|
|
158
|
+
level: 'error',
|
|
159
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
160
|
+
instance,
|
|
161
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
162
|
+
this.name = this.constructor.name;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
exports.FileCountLimitExceededError = FileCountLimitExceededError;
|
|
166
|
+
/**
|
|
167
|
+
* @class
|
|
168
|
+
* @name FilePathTooLongError
|
|
169
|
+
* @description One or more file paths exceed the maximum allowed length. Reduce the length of the file paths.
|
|
170
|
+
* @summary File path too long
|
|
171
|
+
* @category UploadRevision
|
|
172
|
+
* @param {string} details the specific details that causes this error
|
|
173
|
+
* @param {string} description the general description for this error
|
|
174
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
175
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
176
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
177
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
178
|
+
*/
|
|
179
|
+
class FilePathTooLongError extends problem_error_1.ProblemError {
|
|
180
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
181
|
+
super({
|
|
182
|
+
title: 'File path too long',
|
|
183
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0006',
|
|
184
|
+
status: 400,
|
|
185
|
+
description: `One or more file paths exceed the maximum allowed length. Reduce the length of the file paths.`,
|
|
186
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0006',
|
|
187
|
+
level: 'error',
|
|
188
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
189
|
+
instance,
|
|
190
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
191
|
+
this.name = this.constructor.name;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
exports.FilePathTooLongError = FilePathTooLongError;
|
|
195
|
+
/**
|
|
196
|
+
* @class
|
|
197
|
+
* @name PopulateRequestLimitExceededError
|
|
198
|
+
* @description The number of populate requests for this upload revision exceeds the maximum allowed limit. Create a new upload revision and upload a revision using fewer requests.
|
|
199
|
+
* @summary Populate request limit exceeded
|
|
200
|
+
* @category UploadRevision
|
|
201
|
+
* @param {string} details the specific details that causes this error
|
|
202
|
+
* @param {string} description the general description for this error
|
|
203
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
204
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
205
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
206
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
207
|
+
*/
|
|
208
|
+
class PopulateRequestLimitExceededError extends problem_error_1.ProblemError {
|
|
209
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
210
|
+
super({
|
|
211
|
+
title: 'Populate request limit exceeded',
|
|
212
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0007',
|
|
213
|
+
status: 400,
|
|
214
|
+
description: `The number of populate requests for this upload revision exceeds the maximum allowed limit. Create a new upload revision and upload a revision using fewer requests.`,
|
|
215
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0007',
|
|
216
|
+
level: 'error',
|
|
217
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
218
|
+
instance,
|
|
219
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
220
|
+
this.name = this.constructor.name;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
exports.PopulateRequestLimitExceededError = PopulateRequestLimitExceededError;
|
|
224
|
+
/**
|
|
225
|
+
* @class
|
|
226
|
+
* @name TotalUploadRevisionFileCountLimitExceededError
|
|
227
|
+
* @description The number of files exceeds the limit for a single upload revision. Consider splitting the files across multiple upload revisions.
|
|
228
|
+
* @summary Upload revision file count limit exceeded
|
|
229
|
+
* @category UploadRevision
|
|
230
|
+
* @param {string} details the specific details that causes this error
|
|
231
|
+
* @param {string} description the general description for this error
|
|
232
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
233
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
234
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
235
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
236
|
+
*/
|
|
237
|
+
class TotalUploadRevisionFileCountLimitExceededError extends problem_error_1.ProblemError {
|
|
238
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
239
|
+
super({
|
|
240
|
+
title: 'Upload revision file count limit exceeded',
|
|
241
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0008',
|
|
242
|
+
status: 400,
|
|
243
|
+
description: `The number of files exceeds the limit for a single upload revision. Consider splitting the files across multiple upload revisions.`,
|
|
244
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0008',
|
|
245
|
+
level: 'error',
|
|
246
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
247
|
+
instance,
|
|
248
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
249
|
+
this.name = this.constructor.name;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
exports.TotalUploadRevisionFileCountLimitExceededError = TotalUploadRevisionFileCountLimitExceededError;
|
|
253
|
+
/**
|
|
254
|
+
* @class
|
|
255
|
+
* @name TotalUploadRevisionSizeLimitExceededError
|
|
256
|
+
* @description The total size of all files uploaded across the entire upload revision exceeds the maximum allowed limit. Consider splitting the files across multiple upload revisions.
|
|
257
|
+
* @summary Upload revision size limit exceeded
|
|
258
|
+
* @category UploadRevision
|
|
259
|
+
* @param {string} details the specific details that causes this error
|
|
260
|
+
* @param {string} description the general description for this error
|
|
261
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
262
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
263
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
264
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
265
|
+
*/
|
|
266
|
+
class TotalUploadRevisionSizeLimitExceededError extends problem_error_1.ProblemError {
|
|
267
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
268
|
+
super({
|
|
269
|
+
title: 'Upload revision size limit exceeded',
|
|
270
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0009',
|
|
271
|
+
status: 400,
|
|
272
|
+
description: `The total size of all files uploaded across the entire upload revision exceeds the maximum allowed limit. Consider splitting the files across multiple upload revisions.`,
|
|
273
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0009',
|
|
274
|
+
level: 'error',
|
|
275
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
276
|
+
instance,
|
|
277
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
278
|
+
this.name = this.constructor.name;
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
exports.TotalUploadRevisionSizeLimitExceededError = TotalUploadRevisionSizeLimitExceededError;
|
|
282
|
+
/**
|
|
283
|
+
* @class
|
|
284
|
+
* @name UploadRevisionIdMismatchError
|
|
285
|
+
* @description The upload revision identifier in the request body does not match the upload revision identifier in the request path. Ensure both identifiers match and retry the request.
|
|
286
|
+
* @summary Upload revision identifier mismatch
|
|
287
|
+
* @category UploadRevision
|
|
288
|
+
* @param {string} details the specific details that causes this error
|
|
289
|
+
* @param {string} description the general description for this error
|
|
290
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
291
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
292
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
293
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
294
|
+
*/
|
|
295
|
+
class UploadRevisionIdMismatchError extends problem_error_1.ProblemError {
|
|
296
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
297
|
+
super({
|
|
298
|
+
title: 'Upload revision identifier mismatch',
|
|
299
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0010',
|
|
300
|
+
status: 400,
|
|
301
|
+
description: `The upload revision identifier in the request body does not match the upload revision identifier in the request path. Ensure both identifiers match and retry the request.`,
|
|
302
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0010',
|
|
303
|
+
level: 'error',
|
|
304
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
305
|
+
instance,
|
|
306
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
307
|
+
this.name = this.constructor.name;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
exports.UploadRevisionIdMismatchError = UploadRevisionIdMismatchError;
|
|
311
|
+
/**
|
|
312
|
+
* @class
|
|
313
|
+
* @name MultipartFieldNameMissingError
|
|
314
|
+
* @description The multipart request has a missing or empty name parameter in the Content-Disposition header. Ensure each part includes a valid field name.
|
|
315
|
+
* @summary Missing field name in multipart request
|
|
316
|
+
* @category UploadRevision
|
|
317
|
+
* @param {string} details the specific details that causes this error
|
|
318
|
+
* @param {string} description the general description for this error
|
|
319
|
+
* @param {Classification} classification the error classification determining if the error is user-actionable or not
|
|
320
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
321
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
322
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
323
|
+
*/
|
|
324
|
+
class MultipartFieldNameMissingError extends problem_error_1.ProblemError {
|
|
325
|
+
constructor(details, additionalData, cause, instance, logs) {
|
|
326
|
+
super({
|
|
327
|
+
title: 'Missing field name in multipart request',
|
|
328
|
+
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-upload-revision-0011',
|
|
329
|
+
status: 400,
|
|
330
|
+
description: `The multipart request has a missing or empty name parameter in the Content-Disposition header. Ensure each part includes a valid field name.`,
|
|
331
|
+
errorCode: 'SNYK-UPLOAD-REVISION-0011',
|
|
332
|
+
level: 'error',
|
|
333
|
+
classification: types_1.Classification.ACTIONABLE,
|
|
334
|
+
instance,
|
|
335
|
+
}, details, Object.assign({ links: [] }, additionalData), cause, logs);
|
|
336
|
+
this.name = this.constructor.name;
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
exports.MultipartFieldNameMissingError = MultipartFieldNameMissingError;
|
|
340
|
+
//# sourceMappingURL=UploadRevision-error-catalog.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UploadRevision-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/UploadRevision-error-catalog.ts"],"names":[],"mappings":"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"}
|
|
@@ -32,4 +32,5 @@ export * as CustomBaseImages from './CustomBaseImages-error-catalog';
|
|
|
32
32
|
export * as Integration from './Integration-error-catalog';
|
|
33
33
|
export * as Target from './Target-error-catalog';
|
|
34
34
|
export * as SCM from './SCM-error-catalog';
|
|
35
|
+
export * as UploadRevision from './UploadRevision-error-catalog';
|
|
35
36
|
export * as AiBom from './AiBom-error-catalog';
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
*/
|
|
16
16
|
"use strict";
|
|
17
17
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
-
exports.AiBom = exports.SCM = exports.Target = exports.Integration = exports.CustomBaseImages = exports.CLI = exports.PRChecks = exports.Code = exports.Fix = exports.SbomExport = exports.SbomTest = exports.OpenSourceUnmanaged = exports.OpenAPI = exports.IsolatedBuilds = exports.PurlVulnerabilityFetching = exports.Policies = exports.OpenSourceProjectIssues = exports.OpenSourceProjectSnapshots = exports.OpenSourceEcosystems = exports.Snyk = void 0;
|
|
18
|
+
exports.AiBom = exports.UploadRevision = exports.SCM = exports.Target = exports.Integration = exports.CustomBaseImages = exports.CLI = exports.PRChecks = exports.Code = exports.Fix = exports.SbomExport = exports.SbomTest = exports.OpenSourceUnmanaged = exports.OpenAPI = exports.IsolatedBuilds = exports.PurlVulnerabilityFetching = exports.Policies = exports.OpenSourceProjectIssues = exports.OpenSourceProjectSnapshots = exports.OpenSourceEcosystems = exports.Snyk = void 0;
|
|
19
19
|
exports.Snyk = require("./Snyk-error-catalog");
|
|
20
20
|
exports.OpenSourceEcosystems = require("./OpenSourceEcosystems-error-catalog");
|
|
21
21
|
exports.OpenSourceProjectSnapshots = require("./OpenSourceProjectSnapshots-error-catalog");
|
|
@@ -35,5 +35,6 @@ exports.CustomBaseImages = require("./CustomBaseImages-error-catalog");
|
|
|
35
35
|
exports.Integration = require("./Integration-error-catalog");
|
|
36
36
|
exports.Target = require("./Target-error-catalog");
|
|
37
37
|
exports.SCM = require("./SCM-error-catalog");
|
|
38
|
+
exports.UploadRevision = require("./UploadRevision-error-catalog");
|
|
38
39
|
exports.AiBom = require("./AiBom-error-catalog");
|
|
39
40
|
//# sourceMappingURL=error-catalog.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/error-catalog.ts"],"names":[],"mappings":";;;AAAA,+CAA6C;AAC7C,+EAA6E;AAC7E,2FAAyF;AACzF,qFAAmF;AACnF,uDAAqD;AACrD,yFAAuF;AACvF,mEAAiE;AACjE,qDAAmD;AACnD,6EAA2E;AAC3E,uDAAqD;AACrD,2DAAyD;AACzD,6CAA2C;AAC3C,+CAA6C;AAC7C,uDAAqD;AACrD,6CAA2C;AAC3C,uEAAqE;AACrE,6DAA2D;AAC3D,mDAAiD;AACjD,6CAA2C;AAC3C,iDAA+C"}
|
|
1
|
+
{"version":3,"file":"error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/error-catalog.ts"],"names":[],"mappings":";;;AAAA,+CAA6C;AAC7C,+EAA6E;AAC7E,2FAAyF;AACzF,qFAAmF;AACnF,uDAAqD;AACrD,yFAAuF;AACvF,mEAAiE;AACjE,qDAAmD;AACnD,6EAA2E;AAC3E,uDAAqD;AACrD,2DAAyD;AACzD,6CAA2C;AAC3C,+CAA6C;AAC7C,uDAAqD;AACrD,6CAA2C;AAC3C,uEAAqE;AACrE,6DAA2D;AAC3D,mDAAiD;AACjD,6CAA2C;AAC3C,mEAAiE;AACjE,iDAA+C"}
|
|
@@ -332,5 +332,18 @@ declare const _default: {
|
|
|
332
332
|
Forbidden: string;
|
|
333
333
|
NoSupportedFiles: string;
|
|
334
334
|
};
|
|
335
|
+
UploadRevision: {
|
|
336
|
+
UploadRevisionNotFound: string;
|
|
337
|
+
UploadRevisionSealed: string;
|
|
338
|
+
FileTooLarge: string;
|
|
339
|
+
TotalFilesSizeLimitExceeded: string;
|
|
340
|
+
FileCountLimitExceeded: string;
|
|
341
|
+
FilePathTooLong: string;
|
|
342
|
+
PopulateRequestLimitExceeded: string;
|
|
343
|
+
TotalUploadRevisionFileCountLimitExceeded: string;
|
|
344
|
+
TotalUploadRevisionSizeLimitExceeded: string;
|
|
345
|
+
UploadRevisionIdMismatch: string;
|
|
346
|
+
MultipartFieldNameMissing: string;
|
|
347
|
+
};
|
|
335
348
|
};
|
|
336
349
|
export default _default;
|
|
@@ -334,5 +334,18 @@ exports.default = {
|
|
|
334
334
|
Forbidden: 'SNYK-AIBOM-0002',
|
|
335
335
|
NoSupportedFiles: 'SNYK-AIBOM-0003',
|
|
336
336
|
},
|
|
337
|
+
UploadRevision: {
|
|
338
|
+
UploadRevisionNotFound: 'SNYK-UPLOAD-REVISION-0001',
|
|
339
|
+
UploadRevisionSealed: 'SNYK-UPLOAD-REVISION-0002',
|
|
340
|
+
FileTooLarge: 'SNYK-UPLOAD-REVISION-0003',
|
|
341
|
+
TotalFilesSizeLimitExceeded: 'SNYK-UPLOAD-REVISION-0004',
|
|
342
|
+
FileCountLimitExceeded: 'SNYK-UPLOAD-REVISION-0005',
|
|
343
|
+
FilePathTooLong: 'SNYK-UPLOAD-REVISION-0006',
|
|
344
|
+
PopulateRequestLimitExceeded: 'SNYK-UPLOAD-REVISION-0007',
|
|
345
|
+
TotalUploadRevisionFileCountLimitExceeded: 'SNYK-UPLOAD-REVISION-0008',
|
|
346
|
+
TotalUploadRevisionSizeLimitExceeded: 'SNYK-UPLOAD-REVISION-0009',
|
|
347
|
+
UploadRevisionIdMismatch: 'SNYK-UPLOAD-REVISION-0010',
|
|
348
|
+
MultipartFieldNameMissing: 'SNYK-UPLOAD-REVISION-0011',
|
|
349
|
+
},
|
|
337
350
|
};
|
|
338
351
|
//# sourceMappingURL=error-codes.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"error-codes.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/error-codes.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"error-codes.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/error-codes.ts"],"names":[],"mappings":"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"}
|