@forge/manifest 8.3.0-next.3 → 8.3.0-next.4
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/CHANGELOG.md +7 -0
- package/out/schema/manifest-schema.json +42 -0
- package/out/schema/manifest.d.ts +1792 -0
- package/out/scopes/shipyard-scopes.json +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -397,6 +397,48 @@
|
|
|
397
397
|
"title": "function",
|
|
398
398
|
"type": "string"
|
|
399
399
|
},
|
|
400
|
+
"security": {
|
|
401
|
+
"description": "Security options for the webtrigger module.",
|
|
402
|
+
"type": "object",
|
|
403
|
+
"additionalProperties": false,
|
|
404
|
+
"properties": {
|
|
405
|
+
"egress": {
|
|
406
|
+
"type": "object",
|
|
407
|
+
"additionalProperties": false,
|
|
408
|
+
"properties": {
|
|
409
|
+
"allowDataEgress": {
|
|
410
|
+
"description": "If set to false, webtriggers will sanitise responses for forms of egress.",
|
|
411
|
+
"type": "boolean"
|
|
412
|
+
},
|
|
413
|
+
"allowedResponses": {
|
|
414
|
+
"description": "An array of statically defined responses that are not sanitised by no-egress webtriggers.",
|
|
415
|
+
"type": "array",
|
|
416
|
+
"maxItems": 20,
|
|
417
|
+
"items": {
|
|
418
|
+
"type": "object",
|
|
419
|
+
"additionalProperties": false,
|
|
420
|
+
"properties": {
|
|
421
|
+
"statusCode": {
|
|
422
|
+
"type": "integer"
|
|
423
|
+
},
|
|
424
|
+
"body": {
|
|
425
|
+
"type": "string",
|
|
426
|
+
"maxLength": 1024
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"required": [
|
|
430
|
+
"statusCode",
|
|
431
|
+
"body"
|
|
432
|
+
]
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
},
|
|
436
|
+
"required": [
|
|
437
|
+
"allowDataEgress"
|
|
438
|
+
]
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
},
|
|
400
442
|
"key": {
|
|
401
443
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
402
444
|
}
|