lib: remove specversion from the attributes in receiver.accept() (#207)
* lib: remove specversion from the required attributes in receiver.accept() The `HTTPReceiver` class' `accept()` method should not have a typescript type designation of `{ specversion: string }` for the `body` parameter because the event could (and often is) in binary form, which means that the `specversion` property won't be there. This commit changes the method signature to: `accept(headers: {}, body: {}) : CloudEvent` Signed-off-by: Lance Ball <lball@redhat.com>
This commit is contained in:
parent
da365e09eb
commit
957aa6f074
|
@ -1,6 +1,7 @@
|
|||
import BinaryReceiver = require("./receiver_binary.js");
|
||||
import StructuredReceiver = require("./receiver_structured.js");
|
||||
import ValidationError = require("./validation/validation_error.js");
|
||||
import { CloudEvent } from "../../cloudevent.js";
|
||||
const { BINARY, STRUCTURED, SPEC_V03, SPEC_V1, HEADER_CONTENT_TYPE, MIME_CE, BINARY_HEADERS_1, DEFAULT_SPEC_VERSION_HEADER } = require("./constants");
|
||||
|
||||
/** @typedef {import("../../cloudevent")} CloudEvent */
|
||||
|
@ -44,7 +45,7 @@ export class HTTPReceiver {
|
|||
* @param {Object|JSON} body The body of the HTTP request
|
||||
* @return {CloudEvent} A new {CloudEvent} instance
|
||||
*/
|
||||
accept(headers: {}, body: { specversion?: string, [k:string]: any }) {
|
||||
accept(headers: {}, body: {}) : CloudEvent {
|
||||
const mode: string = getMode(headers);
|
||||
const version = getVersion(mode, headers, body);
|
||||
switch (version) {
|
||||
|
|
Loading…
Reference in New Issue