@@ -19,12 +19,12 @@ import { Configuration } from '../configuration';
1919// @ts -ignore
2020import { BASE_PATH , COLLECTION_FORMATS , RequestArgs , BaseAPI , RequiredError } from '../base' ;
2121// @ts -ignore
22- import { GetTransactionsByTagResponse } from '../models' ;
23- // @ts -ignore
2422import { InlineResponse200 } from '../models' ;
2523// @ts -ignore
2624import { InlineResponse2001 } from '../models' ;
2725// @ts -ignore
26+ import { ListTransactionsByTagResponse } from '../models' ;
27+ // @ts -ignore
2828import { TransactionProcessGetResponse } from '../models' ;
2929// @ts -ignore
3030import { TransactionProcessRequest } from '../models' ;
@@ -80,11 +80,11 @@ export const TransactionApiAxiosParamCreator = function (configuration?: Configu
8080 /**
8181 *
8282 * @summary Get transactions by tag
83- * @param {number } tagId Tag id
83+ * @param {string } tagId Tag id
8484 * @param {* } [options] Override http request option.
8585 * @throws {RequiredError }
8686 */
87- apiV2TagTagIdTransactionsGet : async ( tagId : number , options : any = { } ) : Promise < RequestArgs > => {
87+ apiV2TagTagIdTransactionsGet : async ( tagId : string , options : any = { } ) : Promise < RequestArgs > => {
8888 // verify required parameter 'tagId' is not null or undefined
8989 if ( tagId === null || tagId === undefined ) {
9090 throw new RequiredError ( 'tagId' , 'Required parameter tagId was null or undefined when calling apiV2TagTagIdTransactionsGet.' ) ;
@@ -346,11 +346,11 @@ export const TransactionApiFp = function(configuration?: Configuration) {
346346 /**
347347 *
348348 * @summary Get transactions by tag
349- * @param {number } tagId Tag id
349+ * @param {string } tagId Tag id
350350 * @param {* } [options] Override http request option.
351351 * @throws {RequiredError }
352352 */
353- async apiV2TagTagIdTransactionsGet ( tagId : number , options ?: any ) : Promise < ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < Array < GetTransactionsByTagResponse > > > {
353+ async apiV2TagTagIdTransactionsGet ( tagId : string , options ?: any ) : Promise < ( axios ?: AxiosInstance , basePath ?: string ) => AxiosPromise < ListTransactionsByTagResponse > > {
354354 const localVarAxiosArgs = await TransactionApiAxiosParamCreator ( configuration ) . apiV2TagTagIdTransactionsGet ( tagId , options ) ;
355355 return ( axios : AxiosInstance = globalAxios , basePath : string = BASE_PATH ) => {
356356 const axiosRequestArgs = { ...localVarAxiosArgs . options , url : ( configuration ?. basePath || basePath ) + localVarAxiosArgs . url } ;
@@ -438,11 +438,11 @@ export const TransactionApiFactory = function (configuration?: Configuration, ba
438438 /**
439439 *
440440 * @summary Get transactions by tag
441- * @param {number } tagId Tag id
441+ * @param {string } tagId Tag id
442442 * @param {* } [options] Override http request option.
443443 * @throws {RequiredError }
444444 */
445- apiV2TagTagIdTransactionsGet ( tagId : number , options ?: any ) : AxiosPromise < Array < GetTransactionsByTagResponse > > {
445+ apiV2TagTagIdTransactionsGet ( tagId : string , options ?: any ) : AxiosPromise < ListTransactionsByTagResponse > {
446446 return TransactionApiFp ( configuration ) . apiV2TagTagIdTransactionsGet ( tagId , options ) . then ( ( request ) => request ( axios , basePath ) ) ;
447447 } ,
448448 /**
@@ -513,12 +513,12 @@ export class TransactionApi extends BaseAPI {
513513 /**
514514 *
515515 * @summary Get transactions by tag
516- * @param {number } tagId Tag id
516+ * @param {string } tagId Tag id
517517 * @param {* } [options] Override http request option.
518518 * @throws {RequiredError }
519519 * @memberof TransactionApi
520520 */
521- public apiV2TagTagIdTransactionsGet ( tagId : number , options ?: any ) {
521+ public apiV2TagTagIdTransactionsGet ( tagId : string , options ?: any ) {
522522 return TransactionApiFp ( this . configuration ) . apiV2TagTagIdTransactionsGet ( tagId , options ) . then ( ( request ) => request ( this . axios , this . basePath ) ) ;
523523 }
524524
0 commit comments