@fractalwagmi/fractal-sdk-public-api
Advanced tools
Comparing version 0.0.22 to 0.0.23
@@ -74,18 +74,2 @@ export interface FractalSdkAdminGetTransactionStatusResponse { | ||
} | ||
export interface FractalSdkExperimentalSolanaMintUpgradeRequest { | ||
burnMintsAddresses?: string[]; | ||
expectedOwner?: string; | ||
burnRefundTransferWallet?: string; | ||
newToken?: FractalSdkExperimentalSolanaMintUpgradeRequestToken; | ||
} | ||
export interface FractalSdkExperimentalSolanaMintUpgradeRequestToken { | ||
metadataUri?: string; | ||
collectionAddress?: string; | ||
creators?: FractalSdkExperimentalSolanaMintCreator[]; | ||
/** @format int64 */ | ||
sellerFeeBasisPoints?: number; | ||
} | ||
export interface FractalSdkExperimentalSolanaMintUpgradeResponse { | ||
signUrl: string; | ||
} | ||
export interface FractalSdkMarketplaceGetCollectionsResponse { | ||
@@ -351,5 +335,6 @@ collections: FractalSdkMarketplaceGetCollectionsResponseCollection[]; | ||
/** | ||
* No description | ||
* @description Mints an NFT. Requires project API token and additional setup. Please contact our dev team if you'd like to use this feature. | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint | ||
* @summary mint | ||
* @request POST:/sdk/experimental/solana/mint | ||
@@ -365,16 +350,2 @@ * @secure | ||
} | ||
/** | ||
* No description | ||
* @tags SolanaMintExperimentalService | ||
* @name Upgrade | ||
* @request POST:/sdk/experimental/solana/upgrade | ||
* @secure | ||
*/ | ||
namespace Upgrade { | ||
type RequestParams = {}; | ||
type RequestQuery = {}; | ||
type RequestBody = FractalSdkExperimentalSolanaMintUpgradeRequest; | ||
type RequestHeaders = {}; | ||
type ResponseBody = FractalSdkExperimentalSolanaMintUpgradeResponse; | ||
} | ||
} | ||
@@ -557,16 +528,2 @@ export declare namespace Transaction { | ||
/** | ||
* No description | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint2 | ||
* @request POST:/sdk/v1/mint | ||
* @secure | ||
*/ | ||
namespace Mint2 { | ||
type RequestParams = {}; | ||
type RequestQuery = {}; | ||
type RequestBody = FractalSdkExperimentalSolanaMintMintRequest; | ||
type RequestHeaders = {}; | ||
type ResponseBody = FractalSdkExperimentalSolanaMintMintResponse; | ||
} | ||
/** | ||
* @description Returns details about a given score. Requires project API token. | ||
@@ -741,5 +698,6 @@ * @tags TournamentService | ||
/** | ||
* No description | ||
* @description Returns collections for a given token. | ||
* @tags MarketplaceService | ||
* @name GetCollections | ||
* @summary GetCollections | ||
* @request GET:/sdk/v2/marketplace/collections | ||
@@ -885,6 +843,7 @@ * @secure | ||
/** | ||
* No description | ||
* @description Mints an NFT. Requires project API token and additional setup. Please contact our dev team if you'd like to use this feature. | ||
* | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint | ||
* @summary mint | ||
* @request POST:/sdk/experimental/solana/mint | ||
@@ -894,11 +853,2 @@ * @secure | ||
mint: (body: FractalSdkExperimentalSolanaMintMintRequest, params?: RequestParams) => Promise<HttpResponse<FractalSdkExperimentalSolanaMintMintResponse, GoogleRpcStatus>>; | ||
/** | ||
* No description | ||
* | ||
* @tags SolanaMintExperimentalService | ||
* @name Upgrade | ||
* @request POST:/sdk/experimental/solana/upgrade | ||
* @secure | ||
*/ | ||
upgrade: (body: FractalSdkExperimentalSolanaMintUpgradeRequest, params?: RequestParams) => Promise<HttpResponse<FractalSdkExperimentalSolanaMintUpgradeResponse, GoogleRpcStatus>>; | ||
}; | ||
@@ -1025,11 +975,2 @@ transaction: { | ||
/** | ||
* No description | ||
* | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint2 | ||
* @request POST:/sdk/v1/mint | ||
* @secure | ||
*/ | ||
mint2: (body: FractalSdkExperimentalSolanaMintMintRequest, params?: RequestParams) => Promise<HttpResponse<FractalSdkExperimentalSolanaMintMintResponse, GoogleRpcStatus>>; | ||
/** | ||
* @description Returns details about a given score. Requires project API token. | ||
@@ -1145,6 +1086,7 @@ * | ||
/** | ||
* No description | ||
* @description Returns collections for a given token. | ||
* | ||
* @tags MarketplaceService | ||
* @name GetCollections | ||
* @summary GetCollections | ||
* @request GET:/sdk/v2/marketplace/collections | ||
@@ -1151,0 +1093,0 @@ * @secure |
@@ -246,19 +246,11 @@ "use strict"; | ||
/** | ||
* No description | ||
* @description Mints an NFT. Requires project API token and additional setup. Please contact our dev team if you'd like to use this feature. | ||
* | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint | ||
* @summary mint | ||
* @request POST:/sdk/experimental/solana/mint | ||
* @secure | ||
*/ | ||
mint: (body, params = {}) => this.request(Object.assign({ path: `/sdk/experimental/solana/mint`, method: "POST", body: body, secure: true, format: "json" }, params)), | ||
/** | ||
* No description | ||
* | ||
* @tags SolanaMintExperimentalService | ||
* @name Upgrade | ||
* @request POST:/sdk/experimental/solana/upgrade | ||
* @secure | ||
*/ | ||
upgrade: (body, params = {}) => this.request(Object.assign({ path: `/sdk/experimental/solana/upgrade`, method: "POST", body: body, secure: true, type: ContentType.Json, format: "json" }, params)), | ||
mint: (body, params = {}) => this.request(Object.assign({ path: `/sdk/experimental/solana/mint`, method: "POST", body: body, secure: true, type: ContentType.Json, format: "json" }, params)), | ||
}; | ||
@@ -366,11 +358,2 @@ this.transaction = { | ||
/** | ||
* No description | ||
* | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint2 | ||
* @request POST:/sdk/v1/mint | ||
* @secure | ||
*/ | ||
mint2: (body, params = {}) => this.request(Object.assign({ path: `/sdk/v1/mint`, method: "POST", body: body, secure: true, format: "json" }, params)), | ||
/** | ||
* @description Returns details about a given score. Requires project API token. | ||
@@ -468,6 +451,7 @@ * | ||
/** | ||
* No description | ||
* @description Returns collections for a given token. | ||
* | ||
* @tags MarketplaceService | ||
* @name GetCollections | ||
* @summary GetCollections | ||
* @request GET:/sdk/v2/marketplace/collections | ||
@@ -474,0 +458,0 @@ * @secure |
@@ -106,22 +106,2 @@ /* eslint-disable */ | ||
export interface FractalSdkExperimentalSolanaMintUpgradeRequest { | ||
burnMintsAddresses?: string[]; | ||
expectedOwner?: string; | ||
burnRefundTransferWallet?: string; | ||
newToken?: FractalSdkExperimentalSolanaMintUpgradeRequestToken; | ||
} | ||
export interface FractalSdkExperimentalSolanaMintUpgradeRequestToken { | ||
metadataUri?: string; | ||
collectionAddress?: string; | ||
creators?: FractalSdkExperimentalSolanaMintCreator[]; | ||
/** @format int64 */ | ||
sellerFeeBasisPoints?: number; | ||
} | ||
export interface FractalSdkExperimentalSolanaMintUpgradeResponse { | ||
signUrl: string; | ||
} | ||
export interface FractalSdkMarketplaceGetCollectionsResponse { | ||
@@ -419,5 +399,6 @@ collections: FractalSdkMarketplaceGetCollectionsResponseCollection[]; | ||
/** | ||
* No description | ||
* @description Mints an NFT. Requires project API token and additional setup. Please contact our dev team if you'd like to use this feature. | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint | ||
* @summary mint | ||
* @request POST:/sdk/experimental/solana/mint | ||
@@ -433,16 +414,2 @@ * @secure | ||
} | ||
/** | ||
* No description | ||
* @tags SolanaMintExperimentalService | ||
* @name Upgrade | ||
* @request POST:/sdk/experimental/solana/upgrade | ||
* @secure | ||
*/ | ||
export namespace Upgrade { | ||
export type RequestParams = {}; | ||
export type RequestQuery = {}; | ||
export type RequestBody = FractalSdkExperimentalSolanaMintUpgradeRequest; | ||
export type RequestHeaders = {}; | ||
export type ResponseBody = FractalSdkExperimentalSolanaMintUpgradeResponse; | ||
} | ||
} | ||
@@ -606,16 +573,2 @@ | ||
/** | ||
* No description | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint2 | ||
* @request POST:/sdk/v1/mint | ||
* @secure | ||
*/ | ||
export namespace Mint2 { | ||
export type RequestParams = {}; | ||
export type RequestQuery = {}; | ||
export type RequestBody = FractalSdkExperimentalSolanaMintMintRequest; | ||
export type RequestHeaders = {}; | ||
export type ResponseBody = FractalSdkExperimentalSolanaMintMintResponse; | ||
} | ||
/** | ||
* @description Returns details about a given score. Requires project API token. | ||
@@ -773,5 +726,6 @@ * @tags TournamentService | ||
/** | ||
* No description | ||
* @description Returns collections for a given token. | ||
* @tags MarketplaceService | ||
* @name GetCollections | ||
* @summary GetCollections | ||
* @request GET:/sdk/v2/marketplace/collections | ||
@@ -1114,6 +1068,7 @@ * @secure | ||
/** | ||
* No description | ||
* @description Mints an NFT. Requires project API token and additional setup. Please contact our dev team if you'd like to use this feature. | ||
* | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint | ||
* @summary mint | ||
* @request POST:/sdk/experimental/solana/mint | ||
@@ -1128,20 +1083,2 @@ * @secure | ||
secure: true, | ||
format: "json", | ||
...params, | ||
}), | ||
/** | ||
* No description | ||
* | ||
* @tags SolanaMintExperimentalService | ||
* @name Upgrade | ||
* @request POST:/sdk/experimental/solana/upgrade | ||
* @secure | ||
*/ | ||
upgrade: (body: FractalSdkExperimentalSolanaMintUpgradeRequest, params: RequestParams = {}) => | ||
this.request<FractalSdkExperimentalSolanaMintUpgradeResponse, GoogleRpcStatus>({ | ||
path: `/sdk/experimental/solana/upgrade`, | ||
method: "POST", | ||
body: body, | ||
secure: true, | ||
type: ContentType.Json, | ||
@@ -1347,20 +1284,2 @@ format: "json", | ||
/** | ||
* No description | ||
* | ||
* @tags SolanaMintExperimentalService | ||
* @name Mint2 | ||
* @request POST:/sdk/v1/mint | ||
* @secure | ||
*/ | ||
mint2: (body: FractalSdkExperimentalSolanaMintMintRequest, params: RequestParams = {}) => | ||
this.request<FractalSdkExperimentalSolanaMintMintResponse, GoogleRpcStatus>({ | ||
path: `/sdk/v1/mint`, | ||
method: "POST", | ||
body: body, | ||
secure: true, | ||
format: "json", | ||
...params, | ||
}), | ||
/** | ||
* @description Returns details about a given score. Requires project API token. | ||
@@ -1563,6 +1482,7 @@ * | ||
/** | ||
* No description | ||
* @description Returns collections for a given token. | ||
* | ||
* @tags MarketplaceService | ||
* @name GetCollections | ||
* @summary GetCollections | ||
* @request GET:/sdk/v2/marketplace/collections | ||
@@ -1569,0 +1489,0 @@ * @secure |
{ | ||
"name": "@fractalwagmi/fractal-sdk-public-api", | ||
"version": "0.0.22", | ||
"version": "0.0.23", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/fractal-sdk-api.js", |
115760
2981