@snyk/error-catalog-nodejs-public 3.16.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/README.md +7 -0
- package/package.json +15 -0
- package/src/catalogs/Fix-error-catalog.d.ts +100 -0
- package/src/catalogs/Fix-error-catalog.js +180 -0
- package/src/catalogs/Fix-error-catalog.js.map +1 -0
- package/src/catalogs/IsolatedBuilds-error-catalog.d.ts +32 -0
- package/src/catalogs/IsolatedBuilds-error-catalog.js +60 -0
- package/src/catalogs/IsolatedBuilds-error-catalog.js.map +1 -0
- package/src/catalogs/OpenAPI-error-catalog.d.ts +119 -0
- package/src/catalogs/OpenAPI-error-catalog.js +215 -0
- package/src/catalogs/OpenAPI-error-catalog.js.map +1 -0
- package/src/catalogs/OpenSourceEcosystems-error-catalog.d.ts +771 -0
- package/src/catalogs/OpenSourceEcosystems-error-catalog.js +1371 -0
- package/src/catalogs/OpenSourceEcosystems-error-catalog.js.map +1 -0
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.d.ts +71 -0
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.js +130 -0
- package/src/catalogs/OpenSourceProjectIssues-error-catalog.js.map +1 -0
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.d.ts +71 -0
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js +130 -0
- package/src/catalogs/OpenSourceProjectSnapshots-error-catalog.js.map +1 -0
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.d.ts +36 -0
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.js +67 -0
- package/src/catalogs/OpenSourceUnmanaged-error-catalog.js.map +1 -0
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.d.ts +290 -0
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js +520 -0
- package/src/catalogs/PurlVulnerabilityFetching-error-catalog.js.map +1 -0
- package/src/catalogs/SbomExport-error-catalog.d.ts +130 -0
- package/src/catalogs/SbomExport-error-catalog.js +235 -0
- package/src/catalogs/SbomExport-error-catalog.js.map +1 -0
- package/src/catalogs/Snyk-error-catalog.d.ts +94 -0
- package/src/catalogs/Snyk-error-catalog.js +170 -0
- package/src/catalogs/Snyk-error-catalog.js.map +1 -0
- package/src/catalogs/error-catalog.d.ts +10 -0
- package/src/catalogs/error-catalog.js +14 -0
- package/src/catalogs/error-catalog.js.map +1 -0
- package/src/catalogs/error-codes.d.ts +138 -0
- package/src/catalogs/error-codes.js +140 -0
- package/src/catalogs/error-codes.js.map +1 -0
- package/src/composite-error.d.ts +13 -0
- package/src/composite-error.js +27 -0
- package/src/composite-error.js.map +1 -0
- package/src/index.d.ts +3 -0
- package/src/index.js +7 -0
- package/src/index.js.map +1 -0
- package/src/problem-error.d.ts +20 -0
- package/src/problem-error.js +78 -0
- package/src/problem-error.js.map +1 -0
- package/src/types.d.ts +66 -0
- package/src/types.js +35 -0
- package/src/types.js.map +1 -0
- package/src/util/index.d.ts +1 -0
- package/src/util/index.js +5 -0
- package/src/util/index.js.map +1 -0
- package/src/util/json-api.d.ts +7 -0
- package/src/util/json-api.js +70 -0
- package/src/util/json-api.js.map +1 -0
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UnsupportedMediaTypeError = exports.UnauthorizedError = exports.RequestEntityTooLargeError = exports.MethodNotAllowedError = exports.NotFoundError = exports.NotAcceptableError = exports.ForbiddenError = exports.BadRequestError = void 0;
|
|
4
|
+
const problem_error_1 = require("../problem-error");
|
|
5
|
+
/**
|
|
6
|
+
* @class
|
|
7
|
+
* @name BadRequestError
|
|
8
|
+
* @description The server cannot process the request due to invalid or corrupt data. Review the request, then try again.
|
|
9
|
+
*
|
|
10
|
+
* See more:
|
|
11
|
+
* - [https://docs.snyk.io/snyk-api-info/getting-started-using-snyk-rest-api ](https://docs.snyk.io/snyk-api-info/getting-started-using-snyk-rest-api )
|
|
12
|
+
* @summary Bad request
|
|
13
|
+
* @category OpenAPI
|
|
14
|
+
* @param {string} details the specific details that causes this error
|
|
15
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
16
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
17
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
18
|
+
*/
|
|
19
|
+
class BadRequestError extends problem_error_1.ProblemError {
|
|
20
|
+
constructor(details, additionalData, cause, instance) {
|
|
21
|
+
super({
|
|
22
|
+
title: 'Bad request',
|
|
23
|
+
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0001',
|
|
24
|
+
status: 400,
|
|
25
|
+
errorCode: 'SNYK-OPENAPI-0001',
|
|
26
|
+
level: 'warn',
|
|
27
|
+
instance,
|
|
28
|
+
}, details, Object.assign({ links: [
|
|
29
|
+
'https://docs.snyk.io/snyk-api-info/getting-started-using-snyk-rest-api ',
|
|
30
|
+
] }, additionalData), cause);
|
|
31
|
+
this.name = this.constructor.name;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.BadRequestError = BadRequestError;
|
|
35
|
+
/**
|
|
36
|
+
* @class
|
|
37
|
+
* @name ForbiddenError
|
|
38
|
+
* @description Access to the requested resource is forbidden.
|
|
39
|
+
* @summary Forbidden
|
|
40
|
+
* @category OpenAPI
|
|
41
|
+
* @param {string} details the specific details that causes this error
|
|
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
|
+
class ForbiddenError extends problem_error_1.ProblemError {
|
|
47
|
+
constructor(details, additionalData, cause, instance) {
|
|
48
|
+
super({
|
|
49
|
+
title: 'Forbidden',
|
|
50
|
+
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0002',
|
|
51
|
+
status: 403,
|
|
52
|
+
errorCode: 'SNYK-OPENAPI-0002',
|
|
53
|
+
level: 'warn',
|
|
54
|
+
instance,
|
|
55
|
+
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
56
|
+
this.name = this.constructor.name;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.ForbiddenError = ForbiddenError;
|
|
60
|
+
/**
|
|
61
|
+
* @class
|
|
62
|
+
* @name NotAcceptableError
|
|
63
|
+
* @description The server cannot provide a response that matches the provided accept headers. Review the request, then try again.
|
|
64
|
+
* @summary Not acceptable
|
|
65
|
+
* @category OpenAPI
|
|
66
|
+
* @param {string} details the specific details that causes this error
|
|
67
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
68
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
69
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
70
|
+
*/
|
|
71
|
+
class NotAcceptableError extends problem_error_1.ProblemError {
|
|
72
|
+
constructor(details, additionalData, cause, instance) {
|
|
73
|
+
super({
|
|
74
|
+
title: 'Not acceptable',
|
|
75
|
+
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0003',
|
|
76
|
+
status: 406,
|
|
77
|
+
errorCode: 'SNYK-OPENAPI-0003',
|
|
78
|
+
level: 'warn',
|
|
79
|
+
instance,
|
|
80
|
+
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
81
|
+
this.name = this.constructor.name;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
exports.NotAcceptableError = NotAcceptableError;
|
|
85
|
+
/**
|
|
86
|
+
* @class
|
|
87
|
+
* @name NotFoundError
|
|
88
|
+
* @description The server cannot find the requested resource.
|
|
89
|
+
* @summary Not found
|
|
90
|
+
* @category OpenAPI
|
|
91
|
+
* @param {string} details the specific details that causes this error
|
|
92
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
93
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
94
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
95
|
+
*/
|
|
96
|
+
class NotFoundError extends problem_error_1.ProblemError {
|
|
97
|
+
constructor(details, additionalData, cause, instance) {
|
|
98
|
+
super({
|
|
99
|
+
title: 'Not found',
|
|
100
|
+
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0004',
|
|
101
|
+
status: 404,
|
|
102
|
+
errorCode: 'SNYK-OPENAPI-0004',
|
|
103
|
+
level: 'warn',
|
|
104
|
+
instance,
|
|
105
|
+
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
106
|
+
this.name = this.constructor.name;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
exports.NotFoundError = NotFoundError;
|
|
110
|
+
/**
|
|
111
|
+
* @class
|
|
112
|
+
* @name MethodNotAllowedError
|
|
113
|
+
* @description The target endpoint does not support your request method. Review the request, then try again.
|
|
114
|
+
* @summary Method not allowed
|
|
115
|
+
* @category OpenAPI
|
|
116
|
+
* @param {string} details the specific details that causes this error
|
|
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 MethodNotAllowedError extends problem_error_1.ProblemError {
|
|
122
|
+
constructor(details, additionalData, cause, instance) {
|
|
123
|
+
super({
|
|
124
|
+
title: 'Method not allowed',
|
|
125
|
+
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0005',
|
|
126
|
+
status: 405,
|
|
127
|
+
errorCode: 'SNYK-OPENAPI-0005',
|
|
128
|
+
level: 'warn',
|
|
129
|
+
instance,
|
|
130
|
+
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
131
|
+
this.name = this.constructor.name;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
exports.MethodNotAllowedError = MethodNotAllowedError;
|
|
135
|
+
/**
|
|
136
|
+
* @class
|
|
137
|
+
* @name RequestEntityTooLargeError
|
|
138
|
+
* @description The request entity exceeds server limitations.
|
|
139
|
+
* @summary Request entity too large
|
|
140
|
+
* @category OpenAPI
|
|
141
|
+
* @param {string} details the specific details that causes this error
|
|
142
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
143
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
144
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
145
|
+
*/
|
|
146
|
+
class RequestEntityTooLargeError extends problem_error_1.ProblemError {
|
|
147
|
+
constructor(details, additionalData, cause, instance) {
|
|
148
|
+
super({
|
|
149
|
+
title: 'Request entity too large',
|
|
150
|
+
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0006',
|
|
151
|
+
status: 413,
|
|
152
|
+
errorCode: 'SNYK-OPENAPI-0006',
|
|
153
|
+
level: 'warn',
|
|
154
|
+
instance,
|
|
155
|
+
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
156
|
+
this.name = this.constructor.name;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
exports.RequestEntityTooLargeError = RequestEntityTooLargeError;
|
|
160
|
+
/**
|
|
161
|
+
* @class
|
|
162
|
+
* @name UnauthorizedError
|
|
163
|
+
* @description The request lacks authentication credentials for the requested resource.
|
|
164
|
+
*
|
|
165
|
+
* See more:
|
|
166
|
+
* - [https://docs.snyk.io/snyk-api-info/authentication-for-api ](https://docs.snyk.io/snyk-api-info/authentication-for-api )
|
|
167
|
+
* @summary Unauthorized
|
|
168
|
+
* @category OpenAPI
|
|
169
|
+
* @param {string} details the specific details that causes this error
|
|
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
|
+
class UnauthorizedError extends problem_error_1.ProblemError {
|
|
175
|
+
constructor(details, additionalData, cause, instance) {
|
|
176
|
+
super({
|
|
177
|
+
title: 'Unauthorized',
|
|
178
|
+
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0007',
|
|
179
|
+
status: 401,
|
|
180
|
+
errorCode: 'SNYK-OPENAPI-0007',
|
|
181
|
+
level: 'warn',
|
|
182
|
+
instance,
|
|
183
|
+
}, details, Object.assign({ links: [
|
|
184
|
+
'https://docs.snyk.io/snyk-api-info/authentication-for-api ',
|
|
185
|
+
] }, additionalData), cause);
|
|
186
|
+
this.name = this.constructor.name;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
exports.UnauthorizedError = UnauthorizedError;
|
|
190
|
+
/**
|
|
191
|
+
* @class
|
|
192
|
+
* @name UnsupportedMediaTypeError
|
|
193
|
+
* @description The media format of the request is not supported.
|
|
194
|
+
* @summary Unsupported media type
|
|
195
|
+
* @category OpenAPI
|
|
196
|
+
* @param {string} details the specific details that causes this error
|
|
197
|
+
* @param {Record<string, any>} [additionalData] a collection of relevant data specific to this error
|
|
198
|
+
* @param {Error} [cause] the `Error` type that caused this error to be thrown
|
|
199
|
+
* @param {string} [instance] the instance to use for this error. Overrides 'instance' metadata
|
|
200
|
+
*/
|
|
201
|
+
class UnsupportedMediaTypeError extends problem_error_1.ProblemError {
|
|
202
|
+
constructor(details, additionalData, cause, instance) {
|
|
203
|
+
super({
|
|
204
|
+
title: 'Unsupported media type',
|
|
205
|
+
type: 'https://docs.snyk.io/more-info/error-catalog#snyk-openapi-0008',
|
|
206
|
+
status: 415,
|
|
207
|
+
errorCode: 'SNYK-OPENAPI-0008',
|
|
208
|
+
level: 'warn',
|
|
209
|
+
instance,
|
|
210
|
+
}, details, Object.assign({ links: [] }, additionalData), cause);
|
|
211
|
+
this.name = this.constructor.name;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
exports.UnsupportedMediaTypeError = UnsupportedMediaTypeError;
|
|
215
|
+
//# sourceMappingURL=OpenAPI-error-catalog.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OpenAPI-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/OpenAPI-error-catalog.ts"],"names":[],"mappings":"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"}
|