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

@jup-ag/api

Package Overview
Dependencies
Maintainers
6
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jup-ag/api - npm Package Compare versions

Comparing version 6.0.13 to 6.0.14

8

dist/index.d.ts

@@ -865,3 +865,3 @@ /**

slippageBps?: number;
slippage?: QuoteGetSlippageEnum;
autoSlippage?: QuoteGetAutoSlippageEnum;
swapMode?: QuoteGetSwapModeEnum;

@@ -956,6 +956,6 @@ dexes?: Array<string>;

*/
declare const QuoteGetSlippageEnum: {
declare const QuoteGetAutoSlippageEnum: {
readonly Auto: "auto";
};
type QuoteGetSlippageEnum = typeof QuoteGetSlippageEnum[keyof typeof QuoteGetSlippageEnum];
type QuoteGetAutoSlippageEnum = typeof QuoteGetAutoSlippageEnum[keyof typeof QuoteGetAutoSlippageEnum];
/**

@@ -972,2 +972,2 @@ * @export

export { AccountMeta, AccountMetaFromJSON, AccountMetaFromJSONTyped, AccountMetaToJSON, ApiResponse, BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, Configuration, ConfigurationParameters, Consume, DefaultApi, DefaultConfig, ErrorContext, FetchAPI, FetchError, FetchParams, HTTPBody, HTTPHeaders, HTTPMethod, HTTPQuery, HTTPRequestInit, IndexedRouteMapGetRequest, IndexedRouteMapResponse, IndexedRouteMapResponseFromJSON, IndexedRouteMapResponseFromJSONTyped, IndexedRouteMapResponseToJSON, InitOverrideFunction, Instruction, InstructionFromJSON, InstructionFromJSONTyped, InstructionToJSON, JSONApiResponse, Json, Middleware, ModelPropertyNaming, PlatformFee, PlatformFeeFromJSON, PlatformFeeFromJSONTyped, PlatformFeeToJSON, QuoteGetRequest, QuoteGetSlippageEnum, QuoteGetSwapModeEnum, QuoteResponse, QuoteResponseFromJSON, QuoteResponseFromJSONTyped, QuoteResponseToJSON, RequestContext, RequestOpts, RequiredError, ResponseContext, ResponseError, ResponseTransformer, RoutePlanStep, RoutePlanStepFromJSON, RoutePlanStepFromJSONTyped, RoutePlanStepToJSON, SwapInfo, SwapInfoFromJSON, SwapInfoFromJSONTyped, SwapInfoToJSON, SwapInstructionsPostRequest, SwapInstructionsResponse, SwapInstructionsResponseFromJSON, SwapInstructionsResponseFromJSONTyped, SwapInstructionsResponseToJSON, SwapMode, SwapModeFromJSON, SwapModeFromJSONTyped, SwapModeToJSON, SwapPostRequest, SwapRequest, SwapRequestComputeUnitPriceMicroLamports, SwapRequestComputeUnitPriceMicroLamportsFromJSON, SwapRequestComputeUnitPriceMicroLamportsFromJSONTyped, SwapRequestComputeUnitPriceMicroLamportsToJSON, SwapRequestFromJSON, SwapRequestFromJSONTyped, SwapRequestPrioritizationFeeLamports, SwapRequestPrioritizationFeeLamportsFromJSON, SwapRequestPrioritizationFeeLamportsFromJSONTyped, SwapRequestPrioritizationFeeLamportsToJSON, SwapRequestToJSON, SwapResponse, SwapResponseFromJSON, SwapResponseFromJSONTyped, SwapResponseToJSON, TextApiResponse, VoidApiResponse, canConsumeForm, createJupiterApiClient, exists, instanceOfAccountMeta, instanceOfIndexedRouteMapResponse, instanceOfInstruction, instanceOfPlatformFee, instanceOfQuoteResponse, instanceOfRoutePlanStep, instanceOfSwapInfo, instanceOfSwapInstructionsResponse, instanceOfSwapRequest, instanceOfSwapRequestComputeUnitPriceMicroLamports, instanceOfSwapRequestPrioritizationFeeLamports, instanceOfSwapResponse, mapValues, querystring };
export { AccountMeta, AccountMetaFromJSON, AccountMetaFromJSONTyped, AccountMetaToJSON, ApiResponse, BASE_PATH, BaseAPI, BlobApiResponse, COLLECTION_FORMATS, Configuration, ConfigurationParameters, Consume, DefaultApi, DefaultConfig, ErrorContext, FetchAPI, FetchError, FetchParams, HTTPBody, HTTPHeaders, HTTPMethod, HTTPQuery, HTTPRequestInit, IndexedRouteMapGetRequest, IndexedRouteMapResponse, IndexedRouteMapResponseFromJSON, IndexedRouteMapResponseFromJSONTyped, IndexedRouteMapResponseToJSON, InitOverrideFunction, Instruction, InstructionFromJSON, InstructionFromJSONTyped, InstructionToJSON, JSONApiResponse, Json, Middleware, ModelPropertyNaming, PlatformFee, PlatformFeeFromJSON, PlatformFeeFromJSONTyped, PlatformFeeToJSON, QuoteGetAutoSlippageEnum, QuoteGetRequest, QuoteGetSwapModeEnum, QuoteResponse, QuoteResponseFromJSON, QuoteResponseFromJSONTyped, QuoteResponseToJSON, RequestContext, RequestOpts, RequiredError, ResponseContext, ResponseError, ResponseTransformer, RoutePlanStep, RoutePlanStepFromJSON, RoutePlanStepFromJSONTyped, RoutePlanStepToJSON, SwapInfo, SwapInfoFromJSON, SwapInfoFromJSONTyped, SwapInfoToJSON, SwapInstructionsPostRequest, SwapInstructionsResponse, SwapInstructionsResponseFromJSON, SwapInstructionsResponseFromJSONTyped, SwapInstructionsResponseToJSON, SwapMode, SwapModeFromJSON, SwapModeFromJSONTyped, SwapModeToJSON, SwapPostRequest, SwapRequest, SwapRequestComputeUnitPriceMicroLamports, SwapRequestComputeUnitPriceMicroLamportsFromJSON, SwapRequestComputeUnitPriceMicroLamportsFromJSONTyped, SwapRequestComputeUnitPriceMicroLamportsToJSON, SwapRequestFromJSON, SwapRequestFromJSONTyped, SwapRequestPrioritizationFeeLamports, SwapRequestPrioritizationFeeLamportsFromJSON, SwapRequestPrioritizationFeeLamportsFromJSONTyped, SwapRequestPrioritizationFeeLamportsToJSON, SwapRequestToJSON, SwapResponse, SwapResponseFromJSON, SwapResponseFromJSONTyped, SwapResponseToJSON, TextApiResponse, VoidApiResponse, canConsumeForm, createJupiterApiClient, exists, instanceOfAccountMeta, instanceOfIndexedRouteMapResponse, instanceOfInstruction, instanceOfPlatformFee, instanceOfQuoteResponse, instanceOfRoutePlanStep, instanceOfSwapInfo, instanceOfSwapInstructionsResponse, instanceOfSwapRequest, instanceOfSwapRequestComputeUnitPriceMicroLamports, instanceOfSwapRequestPrioritizationFeeLamports, instanceOfSwapResponse, mapValues, querystring };

@@ -81,3 +81,3 @@ "use strict";

PlatformFeeToJSON: () => PlatformFeeToJSON,
QuoteGetSlippageEnum: () => QuoteGetSlippageEnum,
QuoteGetAutoSlippageEnum: () => QuoteGetAutoSlippageEnum,
QuoteGetSwapModeEnum: () => QuoteGetSwapModeEnum,

@@ -971,4 +971,4 @@ QuoteResponseFromJSON: () => QuoteResponseFromJSON,

}
if (requestParameters.slippage !== void 0) {
queryParameters["slippage"] = requestParameters.slippage;
if (requestParameters.autoSlippage !== void 0) {
queryParameters["autoSlippage"] = requestParameters.autoSlippage;
}

@@ -1111,3 +1111,3 @@ if (requestParameters.swapMode !== void 0) {

};
var QuoteGetSlippageEnum = {
var QuoteGetAutoSlippageEnum = {
Auto: "auto"

@@ -1147,3 +1147,3 @@ };

PlatformFeeToJSON,
QuoteGetSlippageEnum,
QuoteGetAutoSlippageEnum,
QuoteGetSwapModeEnum,

@@ -1150,0 +1150,0 @@ QuoteResponseFromJSON,

{
"name": "@jup-ag/api",
"version": "6.0.13",
"version": "6.0.14",
"description": "## Generate typescript types from swagger schema",

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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