@ez4/gateway 0.35.0 → 0.35.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.
|
@@ -122,6 +122,10 @@ export type HttpIncoming<T extends HttpRequest | HttpAuthRequest> = T & {
|
|
|
122
122
|
* Request path.
|
|
123
123
|
*/
|
|
124
124
|
readonly path: string;
|
|
125
|
+
/**
|
|
126
|
+
* Raw body data (when provided in the request).
|
|
127
|
+
*/
|
|
128
|
+
readonly data?: string;
|
|
125
129
|
};
|
|
126
130
|
/**
|
|
127
131
|
* Request listener.
|