/** * Cardano Wallet Backend API *

* * OpenAPI spec version: 2021.3.4 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { Body } from '../models'; /** * ExperimentalApi - axios parameter creator * @export */ export declare const ExperimentalApiAxiosParamCreator: (configuration?: Configuration) => { /** *

status: experimental

**⚠️ WARNING ⚠️** This endpoint is experimental and for internal use in the Catalyst project. This functionality will be refined in the forthcoming future and the interface is likely to change in **NON-BACKWARD COMPATIBLE WAYS**. Note: Only `Soft` indexes are supported by this endpoint. * @summary Sign Metadata * @param {Body} body * @param {string} walletId * @param {string} role * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} */ signMetadata: (body: Body, walletId: string, role: string, index: string, options?: any) => Promise; }; /** * ExperimentalApi - functional programming interface * @export */ export declare const ExperimentalApiFp: (configuration?: Configuration) => { /** *

status: experimental

**⚠️ WARNING ⚠️** This endpoint is experimental and for internal use in the Catalyst project. This functionality will be refined in the forthcoming future and the interface is likely to change in **NON-BACKWARD COMPATIBLE WAYS**. Note: Only `Soft` indexes are supported by this endpoint. * @summary Sign Metadata * @param {Body} body * @param {string} walletId * @param {string} role * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} */ signMetadata(body: Body, walletId: string, role: string, index: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * ExperimentalApi - factory interface * @export */ export declare const ExperimentalApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** *

status: experimental

**⚠️ WARNING ⚠️** This endpoint is experimental and for internal use in the Catalyst project. This functionality will be refined in the forthcoming future and the interface is likely to change in **NON-BACKWARD COMPATIBLE WAYS**. Note: Only `Soft` indexes are supported by this endpoint. * @summary Sign Metadata * @param {Body} body * @param {string} walletId * @param {string} role * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} */ signMetadata(body: Body, walletId: string, role: string, index: string, options?: any): AxiosPromise; }; /** * ExperimentalApi - object-oriented interface * @export * @class ExperimentalApi * @extends {BaseAPI} */ export declare class ExperimentalApi extends BaseAPI { /** *

status: experimental

**⚠️ WARNING ⚠️** This endpoint is experimental and for internal use in the Catalyst project. This functionality will be refined in the forthcoming future and the interface is likely to change in **NON-BACKWARD COMPATIBLE WAYS**. Note: Only `Soft` indexes are supported by this endpoint. * @summary Sign Metadata * @param {Body} body * @param {string} walletId * @param {string} role * @param {string} index * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ExperimentalApi */ signMetadata(body: Body, walletId: string, role: string, index: string, options?: any): Promise>; }