New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@fractalwagmi/fractal-auth-api

Package Overview
Dependencies
Maintainers
9
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@fractalwagmi/fractal-auth-api - npm Package Compare versions

Comparing version 0.0.11 to 0.0.12

19

auth-api.ts

@@ -92,6 +92,2 @@ /* eslint-disable */

export interface FractalAuthApprovalTransactionInfoRequest {
code?: string;
}
export interface FractalAuthApprovalTransactionInfoResponse {

@@ -205,8 +201,8 @@ unsigned: string;

* @name GetInfo
* @request POST:/auth/v2/transaction/info
* @request GET:/auth/v2/transaction/info
*/
export namespace GetInfo {
export type RequestParams = {};
export type RequestQuery = {};
export type RequestBody = FractalAuthApprovalTransactionInfoRequest;
export type RequestQuery = { code?: string };
export type RequestBody = never;
export type RequestHeaders = {};

@@ -562,10 +558,9 @@ export type ResponseBody = FractalAuthApprovalTransactionInfoResponse;

* @name GetInfo
* @request POST:/auth/v2/transaction/info
* @request GET:/auth/v2/transaction/info
*/
getInfo: (body: FractalAuthApprovalTransactionInfoRequest, params: RequestParams = {}) =>
getInfo: (query?: { code?: string }, params: RequestParams = {}) =>
this.request<FractalAuthApprovalTransactionInfoResponse, GoogleRpcStatus>({
path: `/auth/v2/transaction/info`,
method: "POST",
body: body,
type: ContentType.Json,
method: "GET",
query: query,
format: "json",

@@ -572,0 +567,0 @@ ...params,

@@ -63,5 +63,2 @@ export interface FractalAuthApprovalApprovalResultRequest {

export declare type FractalAuthApprovalSignTransactionResponse = object;
export interface FractalAuthApprovalTransactionInfoRequest {
code?: string;
}
export interface FractalAuthApprovalTransactionInfoResponse {

@@ -176,8 +173,10 @@ unsigned: string;

* @name GetInfo
* @request POST:/auth/v2/transaction/info
* @request GET:/auth/v2/transaction/info
*/
namespace GetInfo {
type RequestParams = {};
type RequestQuery = {};
type RequestBody = FractalAuthApprovalTransactionInfoRequest;
type RequestQuery = {
code?: string;
};
type RequestBody = never;
type RequestHeaders = {};

@@ -335,5 +334,7 @@ type ResponseBody = FractalAuthApprovalTransactionInfoResponse;

* @name GetInfo
* @request POST:/auth/v2/transaction/info
* @request GET:/auth/v2/transaction/info
*/
getInfo: (body: FractalAuthApprovalTransactionInfoRequest, params?: RequestParams) => Promise<HttpResponse<FractalAuthApprovalTransactionInfoResponse, GoogleRpcStatus>>;
getInfo: (query?: {
code?: string | undefined;
} | undefined, params?: RequestParams) => Promise<HttpResponse<FractalAuthApprovalTransactionInfoResponse, GoogleRpcStatus>>;
/**

@@ -340,0 +341,0 @@ * No description

@@ -215,5 +215,5 @@ "use strict";

* @name GetInfo
* @request POST:/auth/v2/transaction/info
* @request GET:/auth/v2/transaction/info
*/
getInfo: (body, params = {}) => this.request(Object.assign({ path: `/auth/v2/transaction/info`, method: "POST", body: body, type: ContentType.Json, format: "json" }, params)),
getInfo: (query, params = {}) => this.request(Object.assign({ path: `/auth/v2/transaction/info`, method: "GET", query: query, format: "json" }, params)),
/**

@@ -220,0 +220,0 @@ * No description

{
"name": "@fractalwagmi/fractal-auth-api",
"version": "0.0.11",
"version": "0.0.12",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/auth-api.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc