@snyk/error-catalog-nodejs-public 5.59.0 → 5.59.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -142,12 +142,12 @@ export declare class UnsupportedProjectError extends ProblemError {
|
|
|
142
142
|
/**
|
|
143
143
|
* @class
|
|
144
144
|
* @name RuleExtensionAlreadyExistsForGroupError
|
|
145
|
-
* @description A
|
|
145
|
+
* @description A SAST Rule extension with the same type and attributes already exists
|
|
146
146
|
* for the given Group.
|
|
147
147
|
*
|
|
148
|
-
* Either modify the existing
|
|
149
|
-
*
|
|
150
|
-
* @summary
|
|
148
|
+
* Either modify the existing SAST Rule extension or create a new
|
|
149
|
+
* SAST Rule extension with a different type or attributes.
|
|
150
|
+
* @summary SAST Rule extension already exists for the Group
|
|
151
151
|
* @category Code
|
|
152
152
|
* @param {string} details the specific details that causes this error
|
|
153
153
|
* @param {string} description the general description for this error
|
|
@@ -162,7 +162,7 @@ export declare class RuleExtensionAlreadyExistsForGroupError extends ProblemErro
|
|
|
162
162
|
/**
|
|
163
163
|
* @class
|
|
164
164
|
* @name OrgRelationshipsMustBeUniqueError
|
|
165
|
-
* @description Each Org relationship to a Snyk
|
|
165
|
+
* @description Each Org relationship to a Snyk SAST Rule extension must be unique.
|
|
166
166
|
*
|
|
167
167
|
* Make sure each Org in relationships has a different ID.
|
|
168
168
|
* @summary Organization relationships must be unique
|
|
@@ -180,7 +180,7 @@ export declare class OrgRelationshipsMustBeUniqueError extends ProblemError {
|
|
|
180
180
|
/**
|
|
181
181
|
* @class
|
|
182
182
|
* @name GroupRelationshipMustBeForAdminGroupError
|
|
183
|
-
* @description You cannot associate a Snyk
|
|
183
|
+
* @description You cannot associate a Snyk SAST Rule extension to any other Group.
|
|
184
184
|
*
|
|
185
185
|
* Make sure the Group ID under relationships matches the Group ID in the request path.
|
|
186
186
|
* @summary Group relationship must match the Group in the requested URL
|
|
@@ -198,9 +198,9 @@ export declare class GroupRelationshipMustBeForAdminGroupError extends ProblemEr
|
|
|
198
198
|
/**
|
|
199
199
|
* @class
|
|
200
200
|
* @name OrgOutsideAdminGroupError
|
|
201
|
-
* @description You cannot
|
|
201
|
+
* @description You cannot use the SAST Rule extensions feature with an Org outside of the administrating Group.
|
|
202
202
|
*
|
|
203
|
-
* Make sure each Org
|
|
203
|
+
* Make sure each Org in the request is within the requested Group.
|
|
204
204
|
* @summary Organization outside of the administrating Group
|
|
205
205
|
* @category Code
|
|
206
206
|
* @param {string} details the specific details that causes this error
|
|
@@ -216,10 +216,10 @@ export declare class OrgOutsideAdminGroupError extends ProblemError {
|
|
|
216
216
|
/**
|
|
217
217
|
* @class
|
|
218
218
|
* @name RuleExtensionsLimitReachedError
|
|
219
|
-
* @description You have hit the maximum number of published Snyk
|
|
219
|
+
* @description You have hit the maximum number of published Snyk SAST Rule extensions allowed for a Group.
|
|
220
220
|
*
|
|
221
|
-
* To create a new
|
|
222
|
-
* @summary
|
|
221
|
+
* To create a new SAST Rule extension you will have to remove an existing one.
|
|
222
|
+
* @summary SAST Rule extension limit reached
|
|
223
223
|
* @category Code
|
|
224
224
|
* @param {string} details the specific details that causes this error
|
|
225
225
|
* @param {string} description the general description for this error
|
|
@@ -247,12 +247,12 @@ exports.UnsupportedProjectError = UnsupportedProjectError;
|
|
|
247
247
|
/**
|
|
248
248
|
* @class
|
|
249
249
|
* @name RuleExtensionAlreadyExistsForGroupError
|
|
250
|
-
* @description A
|
|
250
|
+
* @description A SAST Rule extension with the same type and attributes already exists
|
|
251
251
|
* for the given Group.
|
|
252
252
|
*
|
|
253
|
-
* Either modify the existing
|
|
254
|
-
*
|
|
255
|
-
* @summary
|
|
253
|
+
* Either modify the existing SAST Rule extension or create a new
|
|
254
|
+
* SAST Rule extension with a different type or attributes.
|
|
255
|
+
* @summary SAST Rule extension already exists for the Group
|
|
256
256
|
* @category Code
|
|
257
257
|
* @param {string} details the specific details that causes this error
|
|
258
258
|
* @param {string} description the general description for this error
|
|
@@ -264,14 +264,14 @@ exports.UnsupportedProjectError = UnsupportedProjectError;
|
|
|
264
264
|
class RuleExtensionAlreadyExistsForGroupError extends problem_error_1.ProblemError {
|
|
265
265
|
constructor(details, additionalData, cause, instance, logs) {
|
|
266
266
|
super({
|
|
267
|
-
title: '
|
|
267
|
+
title: 'SAST Rule extension already exists for the Group',
|
|
268
268
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-code-0007',
|
|
269
269
|
status: 409,
|
|
270
|
-
description: `A
|
|
270
|
+
description: `A SAST Rule extension with the same type and attributes already exists
|
|
271
271
|
for the given Group.
|
|
272
272
|
|
|
273
|
-
Either modify the existing
|
|
274
|
-
|
|
273
|
+
Either modify the existing SAST Rule extension or create a new
|
|
274
|
+
SAST Rule extension with a different type or attributes.`,
|
|
275
275
|
errorCode: 'SNYK-CODE-0007',
|
|
276
276
|
level: 'error',
|
|
277
277
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -284,7 +284,7 @@ exports.RuleExtensionAlreadyExistsForGroupError = RuleExtensionAlreadyExistsForG
|
|
|
284
284
|
/**
|
|
285
285
|
* @class
|
|
286
286
|
* @name OrgRelationshipsMustBeUniqueError
|
|
287
|
-
* @description Each Org relationship to a Snyk
|
|
287
|
+
* @description Each Org relationship to a Snyk SAST Rule extension must be unique.
|
|
288
288
|
*
|
|
289
289
|
* Make sure each Org in relationships has a different ID.
|
|
290
290
|
* @summary Organization relationships must be unique
|
|
@@ -302,7 +302,7 @@ class OrgRelationshipsMustBeUniqueError extends problem_error_1.ProblemError {
|
|
|
302
302
|
title: 'Organization relationships must be unique',
|
|
303
303
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-code-0008',
|
|
304
304
|
status: 400,
|
|
305
|
-
description: `Each Org relationship to a Snyk
|
|
305
|
+
description: `Each Org relationship to a Snyk SAST Rule extension must be unique.
|
|
306
306
|
|
|
307
307
|
Make sure each Org in relationships has a different ID.`,
|
|
308
308
|
errorCode: 'SNYK-CODE-0008',
|
|
@@ -317,7 +317,7 @@ exports.OrgRelationshipsMustBeUniqueError = OrgRelationshipsMustBeUniqueError;
|
|
|
317
317
|
/**
|
|
318
318
|
* @class
|
|
319
319
|
* @name GroupRelationshipMustBeForAdminGroupError
|
|
320
|
-
* @description You cannot associate a Snyk
|
|
320
|
+
* @description You cannot associate a Snyk SAST Rule extension to any other Group.
|
|
321
321
|
*
|
|
322
322
|
* Make sure the Group ID under relationships matches the Group ID in the request path.
|
|
323
323
|
* @summary Group relationship must match the Group in the requested URL
|
|
@@ -335,7 +335,7 @@ class GroupRelationshipMustBeForAdminGroupError extends problem_error_1.ProblemE
|
|
|
335
335
|
title: 'Group relationship must match the Group in the requested URL',
|
|
336
336
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-code-0009',
|
|
337
337
|
status: 400,
|
|
338
|
-
description: `You cannot associate a Snyk
|
|
338
|
+
description: `You cannot associate a Snyk SAST Rule extension to any other Group.
|
|
339
339
|
|
|
340
340
|
Make sure the Group ID under relationships matches the Group ID in the request path.`,
|
|
341
341
|
errorCode: 'SNYK-CODE-0009',
|
|
@@ -350,9 +350,9 @@ exports.GroupRelationshipMustBeForAdminGroupError = GroupRelationshipMustBeForAd
|
|
|
350
350
|
/**
|
|
351
351
|
* @class
|
|
352
352
|
* @name OrgOutsideAdminGroupError
|
|
353
|
-
* @description You cannot
|
|
353
|
+
* @description You cannot use the SAST Rule extensions feature with an Org outside of the administrating Group.
|
|
354
354
|
*
|
|
355
|
-
* Make sure each Org
|
|
355
|
+
* Make sure each Org in the request is within the requested Group.
|
|
356
356
|
* @summary Organization outside of the administrating Group
|
|
357
357
|
* @category Code
|
|
358
358
|
* @param {string} details the specific details that causes this error
|
|
@@ -368,9 +368,9 @@ class OrgOutsideAdminGroupError extends problem_error_1.ProblemError {
|
|
|
368
368
|
title: 'Organization outside of the administrating Group',
|
|
369
369
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-code-0010',
|
|
370
370
|
status: 400,
|
|
371
|
-
description: `You cannot
|
|
371
|
+
description: `You cannot use the SAST Rule extensions feature with an Org outside of the administrating Group.
|
|
372
372
|
|
|
373
|
-
Make sure each Org
|
|
373
|
+
Make sure each Org in the request is within the requested Group.`,
|
|
374
374
|
errorCode: 'SNYK-CODE-0010',
|
|
375
375
|
level: 'error',
|
|
376
376
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -383,10 +383,10 @@ exports.OrgOutsideAdminGroupError = OrgOutsideAdminGroupError;
|
|
|
383
383
|
/**
|
|
384
384
|
* @class
|
|
385
385
|
* @name RuleExtensionsLimitReachedError
|
|
386
|
-
* @description You have hit the maximum number of published Snyk
|
|
386
|
+
* @description You have hit the maximum number of published Snyk SAST Rule extensions allowed for a Group.
|
|
387
387
|
*
|
|
388
|
-
* To create a new
|
|
389
|
-
* @summary
|
|
388
|
+
* To create a new SAST Rule extension you will have to remove an existing one.
|
|
389
|
+
* @summary SAST Rule extension limit reached
|
|
390
390
|
* @category Code
|
|
391
391
|
* @param {string} details the specific details that causes this error
|
|
392
392
|
* @param {string} description the general description for this error
|
|
@@ -398,12 +398,12 @@ exports.OrgOutsideAdminGroupError = OrgOutsideAdminGroupError;
|
|
|
398
398
|
class RuleExtensionsLimitReachedError extends problem_error_1.ProblemError {
|
|
399
399
|
constructor(details, additionalData, cause, instance, logs) {
|
|
400
400
|
super({
|
|
401
|
-
title: '
|
|
401
|
+
title: 'SAST Rule extension limit reached',
|
|
402
402
|
type: 'https://docs.snyk.io/scan-with-snyk/error-catalog#snyk-code-0011',
|
|
403
403
|
status: 400,
|
|
404
|
-
description: `You have hit the maximum number of published Snyk
|
|
404
|
+
description: `You have hit the maximum number of published Snyk SAST Rule extensions allowed for a Group.
|
|
405
405
|
|
|
406
|
-
To create a new
|
|
406
|
+
To create a new SAST Rule extension you will have to remove an existing one.`,
|
|
407
407
|
errorCode: 'SNYK-CODE-0011',
|
|
408
408
|
level: 'error',
|
|
409
409
|
classification: types_1.Classification.ACTIONABLE,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Code-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/Code-error-catalog.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"Code-error-catalog.js","sourceRoot":"","sources":["../../../../../packages/error-catalog-nodejs-public/src/catalogs/Code-error-catalog.ts"],"names":[],"mappings":"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"}
|