fix: Remove ability to use GET for RPC API requests by default (#4042)
* fix: Remove ability to use GET for RPC API requests by default * tsc
This commit is contained in:
@@ -6,12 +6,14 @@ export enum AuthenticationType {
|
||||
APP = "app",
|
||||
}
|
||||
|
||||
export type AuthenticatedState = {
|
||||
user: User;
|
||||
token: string;
|
||||
authType: AuthenticationType;
|
||||
};
|
||||
|
||||
export type ContextWithState = Context & {
|
||||
state: {
|
||||
user: User;
|
||||
token: string;
|
||||
authType: AuthenticationType;
|
||||
};
|
||||
state: AuthenticatedState;
|
||||
};
|
||||
|
||||
type BaseEvent = {
|
||||
|
||||
Reference in New Issue
Block a user