Skip to content

Commit

Permalink
refactor: Remove experimental tags for Minting API request documentat…
Browse files Browse the repository at this point in the history
…ion (#1582)
  • Loading branch information
allan-almeida-imtbl authored Mar 8, 2024
1 parent d748440 commit 23464e8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 33 deletions.
3 changes: 0 additions & 3 deletions packages/blockchain-data/sdk/src/blockchain-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ export class BlockchainData {

/**
* Create a mint request to mint a set of NFTs for a given collection
* @experimental
* @param request - the request object containing the parameters to be provided in the API request
* @returns a promise that resolves with the remaining rate limits
* @throws {@link index.APIError}
Expand All @@ -241,7 +240,6 @@ export class BlockchainData {

/**
* List all mint requests for a given contract address
* @experimental
* @param request - the request object containing the parameters to be provided in the API request
* @returns a promise that resolves with a list of mint requests
* @throws {@link index.APIError}
Expand All @@ -259,7 +257,6 @@ export class BlockchainData {

/**
* Retrieve the status of a single mint request identified by its reference ID
* @experimental
* @param request - the request object containing the parameters to be provided in the API request
* @returns a promise that resolves with a single mint request
* @throws {@link index.APIError}
Expand Down
12 changes: 6 additions & 6 deletions packages/internal/generated-clients/src/mr-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1816,8 +1816,8 @@
},
"/v1/chains/{chain_name}/collections/{contract_address}/nfts/mint-requests": {
"post": {
"description": "[Experimental] Create a mint request to mint a set of NFTs for a given collection",
"summary": "[Experimental] Mint NFTs",
"description": "Create a mint request to mint a set of NFTs for a given collection",
"summary": "Mint NFTs",
"security": [
{
"ImmutableApiKey": [
Expand Down Expand Up @@ -1907,8 +1907,8 @@
}
},
"get": {
"description": "[Experimental] Retrieve the status of all mints for a given contract address",
"summary": "[Experimental] List mint requests",
"description": "Retrieve the status of all mints for a given contract address",
"summary": "List mint requests",
"security": [
{
"ImmutableApiKey": [
Expand Down Expand Up @@ -1999,8 +1999,8 @@
},
"/v1/chains/{chain_name}/collections/{contract_address}/nfts/mint-requests/{reference_id}": {
"get": {
"description": "[Experimental] Retrieve the status of a mint request identified by its reference_id",
"summary": "[Experimental] Get mint request by reference ID",
"description": "Retrieve the status of a mint request identified by its reference_id",
"summary": "Get mint request by reference ID",
"security": [
{
"ImmutableApiKey": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ import { MintRequestStatus } from '../models';
export const NftsApiAxiosParamCreator = function (configuration?: Configuration) {
return {
/**
* [Experimental] Create a mint request to mint a set of NFTs for a given collection
* @summary [Experimental] Mint NFTs
* Create a mint request to mint a set of NFTs for a given collection
* @summary Mint NFTs
* @param {string} contractAddress The address of contract
* @param {string} chainName The name of chain
* @param {CreateMintRequestRequest} createMintRequestRequest the request body
Expand Down Expand Up @@ -101,8 +101,8 @@ export const NftsApiAxiosParamCreator = function (configuration?: Configuration)
};
},
/**
* [Experimental] Retrieve the status of a mint request identified by its reference_id
* @summary [Experimental] Get mint request by reference ID
* Retrieve the status of a mint request identified by its reference_id
* @summary Get mint request by reference ID
* @param {string} contractAddress The address of contract
* @param {string} chainName The name of chain
* @param {string} referenceId The ID of the mint request
Expand Down Expand Up @@ -239,8 +239,8 @@ export const NftsApiAxiosParamCreator = function (configuration?: Configuration)
};
},
/**
* [Experimental] Retrieve the status of all mints for a given contract address
* @summary [Experimental] List mint requests
* Retrieve the status of all mints for a given contract address
* @summary List mint requests
* @param {string} contractAddress The address of contract
* @param {string} chainName The name of chain
* @param {string} [pageCursor] Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
Expand Down Expand Up @@ -418,8 +418,8 @@ export const NftsApiFp = function(configuration?: Configuration) {
const localVarAxiosParamCreator = NftsApiAxiosParamCreator(configuration)
return {
/**
* [Experimental] Create a mint request to mint a set of NFTs for a given collection
* @summary [Experimental] Mint NFTs
* Create a mint request to mint a set of NFTs for a given collection
* @summary Mint NFTs
* @param {string} contractAddress The address of contract
* @param {string} chainName The name of chain
* @param {CreateMintRequestRequest} createMintRequestRequest the request body
Expand All @@ -431,8 +431,8 @@ export const NftsApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
* [Experimental] Retrieve the status of a mint request identified by its reference_id
* @summary [Experimental] Get mint request by reference ID
* Retrieve the status of a mint request identified by its reference_id
* @summary Get mint request by reference ID
* @param {string} contractAddress The address of contract
* @param {string} chainName The name of chain
* @param {string} referenceId The ID of the mint request
Expand Down Expand Up @@ -471,8 +471,8 @@ export const NftsApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
* [Experimental] Retrieve the status of all mints for a given contract address
* @summary [Experimental] List mint requests
* Retrieve the status of all mints for a given contract address
* @summary List mint requests
* @param {string} contractAddress The address of contract
* @param {string} chainName The name of chain
* @param {string} [pageCursor] Encoded page cursor to retrieve previous or next page. Use the value returned in the response.
Expand Down Expand Up @@ -527,8 +527,8 @@ export const NftsApiFactory = function (configuration?: Configuration, basePath?
const localVarFp = NftsApiFp(configuration)
return {
/**
* [Experimental] Create a mint request to mint a set of NFTs for a given collection
* @summary [Experimental] Mint NFTs
* Create a mint request to mint a set of NFTs for a given collection
* @summary Mint NFTs
* @param {NftsApiCreateMintRequestRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand All @@ -537,8 +537,8 @@ export const NftsApiFactory = function (configuration?: Configuration, basePath?
return localVarFp.createMintRequest(requestParameters.contractAddress, requestParameters.chainName, requestParameters.createMintRequestRequest, options).then((request) => request(axios, basePath));
},
/**
* [Experimental] Retrieve the status of a mint request identified by its reference_id
* @summary [Experimental] Get mint request by reference ID
* Retrieve the status of a mint request identified by its reference_id
* @summary Get mint request by reference ID
* @param {NftsApiGetMintRequestRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand Down Expand Up @@ -567,8 +567,8 @@ export const NftsApiFactory = function (configuration?: Configuration, basePath?
return localVarFp.listAllNFTs(requestParameters.chainName, requestParameters.fromUpdatedAt, requestParameters.pageCursor, requestParameters.pageSize, options).then((request) => request(axios, basePath));
},
/**
* [Experimental] Retrieve the status of all mints for a given contract address
* @summary [Experimental] List mint requests
* Retrieve the status of all mints for a given contract address
* @summary List mint requests
* @param {NftsApiListMintRequestsRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand Down Expand Up @@ -859,8 +859,8 @@ export interface NftsApiListNFTsByAccountAddressRequest {
*/
export class NftsApi extends BaseAPI {
/**
* [Experimental] Create a mint request to mint a set of NFTs for a given collection
* @summary [Experimental] Mint NFTs
* Create a mint request to mint a set of NFTs for a given collection
* @summary Mint NFTs
* @param {NftsApiCreateMintRequestRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand All @@ -871,8 +871,8 @@ export class NftsApi extends BaseAPI {
}

/**
* [Experimental] Retrieve the status of a mint request identified by its reference_id
* @summary [Experimental] Get mint request by reference ID
* Retrieve the status of a mint request identified by its reference_id
* @summary Get mint request by reference ID
* @param {NftsApiGetMintRequestRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand Down Expand Up @@ -907,8 +907,8 @@ export class NftsApi extends BaseAPI {
}

/**
* [Experimental] Retrieve the status of all mints for a given contract address
* @summary [Experimental] List mint requests
* Retrieve the status of all mints for a given contract address
* @summary List mint requests
* @param {NftsApiListMintRequestsRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
Expand Down

0 comments on commit 23464e8

Please sign in to comment.