Merge pull request #27121 from Bonial-International-GmbH/pjungermann/events/validate-raw-body
fix(events,github): fixes signature validation by using raw req body
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
||||
|
||||
```ts
|
||||
/// <reference types="node" />
|
||||
|
||||
import { AuthService } from '@backstage/backend-plugin-api';
|
||||
import { DiscoveryService } from '@backstage/backend-plugin-api';
|
||||
import { LifecycleService } from '@backstage/backend-plugin-api';
|
||||
@@ -114,10 +116,14 @@ export interface HttpPostIngressOptions {
|
||||
validator?: RequestValidator;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
// @public
|
||||
export interface RequestDetails {
|
||||
body: unknown;
|
||||
headers: Record<string, string | string[] | undefined>;
|
||||
raw: {
|
||||
body: Buffer;
|
||||
encoding: BufferEncoding;
|
||||
};
|
||||
}
|
||||
|
||||
// @public
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* View on an incoming request that has to be validated.
|
||||
*
|
||||
* @public
|
||||
*/
|
||||
export interface RequestDetails {
|
||||
@@ -26,4 +28,18 @@ export interface RequestDetails {
|
||||
* Key-value pairs of header names and values. Header names are lower-cased.
|
||||
*/
|
||||
headers: Record<string, string | string[] | undefined>;
|
||||
/**
|
||||
* Raw request details.
|
||||
*/
|
||||
raw: {
|
||||
/**
|
||||
* Raw request body (buffer).
|
||||
*/
|
||||
body: Buffer;
|
||||
/**
|
||||
* Encoding of the raw request body.
|
||||
* Can be used to decode the raw request body like `raw.body.toString(raw.encoding)`.
|
||||
*/
|
||||
encoding: BufferEncoding;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user