@fractalwagmi/fractal-auth-api
Advanced tools
Comparing version 0.0.13 to 0.0.14
@@ -204,3 +204,3 @@ /* eslint-disable */ | ||
export type RequestParams = {}; | ||
export type RequestQuery = { code?: string }; | ||
export type RequestQuery = { code: string }; | ||
export type RequestBody = never; | ||
@@ -559,3 +559,3 @@ export type RequestHeaders = {}; | ||
*/ | ||
getInfo: (query?: { code?: string }, params: RequestParams = {}) => | ||
getInfo: (query: { code: string }, params: RequestParams = {}) => | ||
this.request<FractalAuthApprovalTransactionInfoResponse, GoogleRpcStatus>({ | ||
@@ -562,0 +562,0 @@ path: `/auth/v2/transaction/info`, |
@@ -177,3 +177,3 @@ export interface FractalAuthApprovalApprovalResultRequest { | ||
type RequestQuery = { | ||
code?: string; | ||
code: string; | ||
}; | ||
@@ -335,5 +335,5 @@ type RequestBody = never; | ||
*/ | ||
getInfo: (query?: { | ||
code?: string | undefined; | ||
} | undefined, params?: RequestParams) => Promise<HttpResponse<FractalAuthApprovalTransactionInfoResponse, GoogleRpcStatus>>; | ||
getInfo: (query: { | ||
code: string; | ||
}, params?: RequestParams) => Promise<HttpResponse<FractalAuthApprovalTransactionInfoResponse, GoogleRpcStatus>>; | ||
/** | ||
@@ -340,0 +340,0 @@ * No description |
{ | ||
"name": "@fractalwagmi/fractal-auth-api", | ||
"version": "0.0.13", | ||
"version": "0.0.14", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/auth-api.js", |
41580