We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be7d53d commit 1ae3e03Copy full SHA for 1ae3e03
src/templates/core/ApiRequestOptions.hbs
@@ -1,8 +1,10 @@
1
{{>header}}
2
+import { TweedBaseContext } from "@paytweed/context";
3
4
export type ApiRequestOptions = {
5
readonly method: 'GET' | 'PUT' | 'POST' | 'DELETE' | 'OPTIONS' | 'HEAD' | 'PATCH';
6
readonly url: string;
7
+ readonly context: TweedContext
8
readonly path?: Record<string, any>;
9
readonly cookies?: Record<string, any>;
10
readonly headers?: Record<string, any>;
0 commit comments