diff --git a/docs/classes/AIQueryApi.html b/docs/classes/AIQueryApi.html index 6c9f374..05fcfb0 100644 --- a/docs/classes/AIQueryApi.html +++ b/docs/classes/AIQueryApi.html @@ -2,7 +2,7 @@ This API implements the Nevermined AI Query Protocol

See

https://docs.nevermined.io/docs/protocol/query-protocol.

Remarks

This API is oriented for AI Builders providing AI Agents and AI Subscribers interacting with them.

-

Hierarchy

Constructors

Hierarchy

  • NVMBackendApi
    • AIQueryApi

Constructors

Methods

_emitStepEvents _emitTaskLog _subscribe @@ -30,13 +30,13 @@

Remarks

This API is oriented for AI Builders providing AI Agents and subscribe subscribeTasksLogs updateStep -

Constructors

Methods

  • Parameters

    Returns Promise<void>

  • Parameters

    • _callback: ((err?) => any)
        • (err?): any
        • Parameters

          • Optional err: any

          Returns any

    • opts: SubscriptionOptions

    Returns Promise<void>

  • Parameters

    • _callback: ((err?) => any)
        • (err?): any
        • Parameters

          • Optional err: any

          Returns any

    • opts: SubscriptionOptions

    Returns Promise<void>

  • Parameters

    • _callback: ((err?) => any)
        • (err?): any
        • Parameters

          • Optional err: any

          Returns any

    • tasks: string[]
    • history: boolean = true

    Returns Promise<void>

  • It creates the step/s required to complete an AI Task

    +

Constructors

Methods

\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/AIQueryOptions.html b/docs/classes/AIQueryOptions.html index f63cc0c..c946426 100644 --- a/docs/classes/AIQueryOptions.html +++ b/docs/classes/AIQueryOptions.html @@ -1,8 +1,8 @@ AIQueryOptions | @nevermined-io/payments

Options required for interacting with an external AI Agent/Service.

-

Constructors

Constructors

Properties

accessToken?: string

The access token to interact with the AI Agent/Service. Only subscribers of the Payment Plan associated with the AI Agent/Service can obtain the access toke.

-
neverminedProxyUri?: string

The Nevermined Proxy that needs to be used to interact with the AI Agent/Service.

-
\ No newline at end of file +
neverminedProxyUri?: string

The Nevermined Proxy that needs to be used to interact with the AI Agent/Service.

+
\ No newline at end of file diff --git a/docs/classes/Payments.html b/docs/classes/Payments.html index 620949f..d886d6a 100644 --- a/docs/classes/Payments.html +++ b/docs/classes/Payments.html @@ -1,6 +1,6 @@ Payments | @nevermined-io/payments

Main class that interacts with the Nevermined payments API. To get an instance of this class use the getInstance method.

-

Constructors

Constructors

Properties

accountAddress? appId? environment @@ -38,25 +38,25 @@

Constructors

Properties

accountAddress?: string
appId?: string
environment: EnvironmentInfo
isBrowserInstance: boolean = true
nvmApiKey?: string
query: AIQueryApi
returnUrl: string
version?: string

Accessors

  • get isLoggedIn(): boolean
  • Property to check if a user logged in.

    +

Properties

accountAddress?: string
appId?: string
environment: EnvironmentInfo
isBrowserInstance: boolean = true
nvmApiKey?: string
query: AIQueryApi
returnUrl: string
version?: string

Accessors

  • get isLoggedIn(): boolean
  • Property to check if a user logged in.

    Returns boolean

    True if the user is logged in.

    Example

    payments.isLoggedIn
     
    -

Methods

  • Burn credits for a given Payment Plan DID.

    +

Methods

  • Burn credits for a given Payment Plan DID.

    Parameters

    • planDID: string

      The DID (Decentralized Identifier) of the asset.

    • creditsAmount: string

      The amount of NFT (Non-Fungible Token) credits to burn.

    Returns Promise<any>

    A Promise that resolves to the JSON response from the server.

    Remarks

    This method is only can be called by the owner of the Payment Plan.

    Throws

    Error if the server response is not successful.

    -
  • Redirects the user to the subscription checkout page for the specified DID.

    +
  • Redirects the user to the subscription checkout page for the specified DID.

    Parameters

    • did: string

      The DID (Decentralized Identifier) of the item to be subscribed to.

    Returns void

    Remarks

    This method is only for browser instances.

    -
  • Initiate the connect flow. The user's browser will be redirected to +

  • Initiate the connect flow. The user's browser will be redirected to the Nevermined App login page.

    Returns void

    Remarks

    This is a browser only function.

    Example

    payments.connect()
     
    -
  • It creates a new AI Agent on Nevermined. +

  • It creates a new AI Agent on Nevermined. The agent must be associated to a Payment Plan. Users that are subscribers of a payment plan can access the agent. Depending on the Payment Plan and the configuration of the agent, the usage of the agent/service will consume credits. When the plan expires (because the time is over or the credits are consumed), the user needs to renew the plan to continue using the agent.

    @@ -69,7 +69,7 @@

    See

    Example

    const agentDID = await paymentsBuilder.createService({
    planDID,
    name: 'E2E Payments Agent',
    description: 'description',
    serviceType: 'agent',
    serviceChargeType: 'fixed',
    authType: 'bearer',
    token: 'changeme',
    amountOfCredits: 1,
    endpoints: agentEndpoints,
    openEndpoints: ['https://example.com/api/v1/rest/docs-json']
    })
    -
  • It allows to an AI Builder to create a Payment Plan on Nevermined based on Credits. +

  • It allows to an AI Builder to create a Payment Plan on Nevermined based on Credits. A Nevermined Credits Plan limits the access by the access/usage of the Plan. With them, AI Builders control the number of requests that can be made to an agent or service. Every time a user accesses any resouce associated to the Payment Plan, the usage consumes from a capped amount of credits. @@ -79,7 +79,7 @@

    Example

    const<
     

    See

    https://docs.nevermined.app/docs/tutorials/builders/create-plan

    Example

     const { did } = await payments.createCreditsPlan({
    name: "My AI Payments Plan",
    description: "AI stuff",
    price: 10000000n,
    tokenAddress: "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d",
    amountOfCredits: 30,
    tags: ["test"]
    })
    -
  • It creates a new asset with file associated to it. +

  • It creates a new asset with file associated to it. The file asset must be associated to a Payment Plan. Users that are subscribers of a payment plan can download the files attached to it. Depending on the Payment Plan and the configuration of the file asset, the download will consume credits. When the plan expires (because the time is over or the credits are consumed), the user needs to renew the plan to continue downloading the files.

    @@ -89,7 +89,7 @@

    See

    -
  • It creates a new AI Agent or Service on Nevermined. +

  • It creates a new AI Agent or Service on Nevermined. The agent/service must be associated to a Payment Plan. Users that are subscribers of a payment plan can access the agent/service. Depending on the Payment Plan and the configuration of the agent/service, the usage of the agent/service will consume credits. When the plan expires (because the time is over or the credits are consumed), the user needs to renew the plan to continue using the agent/service.

    @@ -102,7 +102,7 @@

    See

    Example

    const agentEndpoints: Endpoint[] = [
    { 'POST': `https://example.com/api/v1/agents/(.*)/tasks` },
    { 'GET': `https://example.com/api/v1/agents/(.*)/tasks/(.*)` }
    ]
    const agentDID = await paymentsBuilder.createService({
    planDID,
    name: 'E2E Payments Agent',
    description: 'description',
    serviceType: 'agent',
    serviceChargeType: 'fixed',
    authType: 'bearer',
    token: 'changeme',
    amountOfCredits: 1,
    endpoints: agentEndpoints,
    openEndpoints: ['https://example.com/api/v1/rest/docs-json']
    })
    -
  • It allows to an AI Builder to create a Payment Plan on Nevermined based on Time. +

  • It allows to an AI Builder to create a Payment Plan on Nevermined based on Time. A Nevermined Time Plan limits the access by the a specific amount of time. With them, AI Builders can specify the duration of the Payment Plan (1 month, 1 year, etc.). When the time period is over, the plan automatically expires and the user needs to renew it.

    @@ -111,32 +111,32 @@

    Example

    const<
     

    See

    https://docs.nevermined.app/docs/tutorials/builders/create-plan

    Example

     const { did } = await payments.createTimePlan({
    name: "My 1 Month Plan",
    description: "test",
    price: 10000000n,
    tokenAddress: "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d",
    duration: 30,
    tags: ["test"]
    })
    -
  • Downloads files for a given DID asset.

    +
  • Downloads files for a given DID asset.

    Parameters

    • fileDid: string

    Returns Promise<string>

    A promise that resolves to the JSON response from the server.

    -
  • Get the Metadata (aka Decentralized Document or DDO) for a given asset identifier (DID).

    +
  • Redirects the user to the file details for the specified DID (Decentralized Identifier).

    +
  • Redirects the user to the file details for the specified DID (Decentralized Identifier).

    Parameters

    • did: string

      The DID of the file.

    Returns void

    Remarks

    This method is only for browser instances.

    -
  • Get array of files DIDs associated with a payment plan.

    +
  • Get array of files DIDs associated with a payment plan.

    Parameters

    • planDID: string

      The DID of the Payment Plan.

    Returns Promise<any>

    A promise that resolves to array of files DIDs.

    -
  • Get array of services/agent DIDs associated with a payment plan.

    +
  • Get array of services/agent DIDs associated with a payment plan.

    Parameters

    • planDID: string

      The DID of the Payment Plan.

    Returns Promise<any>

    A promise that resolves to the array of services/agents DIDs.

    -
  • Get the balance of an account for a Payment Plan.

    +
  • Get the balance of an account for a Payment Plan.

    Parameters

    • planDID: string

      The Payment Plan DID of the service to be published.

    • Optional accountAddress: string

      The address of the account to get the balance.

    Returns Promise<{
        balance: bigint;
        isOwner: boolean;
        isSubscriptor: boolean;
        subscriptionType: string;
    }>

    A promise that resolves to the balance result.

    -
  • Redirects the user to the subscription details for a given DID.

    +
  • Redirects the user to the subscription details for a given DID.

    Parameters

    • planDID: string

      The DID (Decentralized Identifier) of the plan.

    Returns void

    Remarks

    This method is only for browser instances.

    -
  • Get the required configuration for accessing a remote service agent. +

  • Get the required configuration for accessing a remote service agent. This configuration includes:

    • The JWT access token
    • @@ -146,10 +146,10 @@

      Example

       const

    Returns Promise<{
        accessToken: string;
        neverminedProxyUri: string;
    }>

    A promise that resolves to the service token.

    Example

    const accessConfig = await payments.getServiceAccessConfig(agentDID)
    console.log(`Agent JWT Token: ${accessConfig.accessToken}`)
    console.log(`Agent Proxy URL: ${accessConfig.neverminedProxyUri}`)
    -
  • Redirects the user to the service details for a given DID.

    +
  • Redirects the user to the service details for a given DID.

    Parameters

    • did: string

      The DID (Decentralized Identifier) of the service.

    Returns void

    Remarks

    This method is only for browser instances.

    -
  • Method to initialize the class once the user has been logged in. +

  • Method to initialize the class once the user has been logged in. This method should be called has soon as the user has been redirected back to the app (returnUrl).

    Returns void

    Remarks

    This is a browser only function.

    @@ -159,33 +159,33 @@

    Example: Using react

    You may want to use useEffect on th returnUrl

    useEffect(() => {
    payments.init()
    })
    -
  • Initializes the AI Query Protocol API.

    -

    Returns void

  • Initializes the AI Query Protocol API.

    +

    Returns void

  • Logout the user by removing the nvm api key.

    Returns void

    Remarks

    This is a browser only function.

    Example

    payments.logout()
     
    -
  • Mint credits for a given Payment Plan DID and transfer them to a receiver.

    +
  • Mint credits for a given Payment Plan DID and transfer them to a receiver.

    Parameters

    • planDID: string

      The DID (Decentralized Identifier) of the asset.

    • creditsAmount: string

      The amount of NFT (Non-Fungible Token) credits to mint.

    • receiver: string

      The address of the receiver where the credits will be transferred.

    Returns Promise<any>

    A Promise that resolves to the JSON response from the server.

    Remarks

    This method is only can be called by the owner of the Payment Plan.

    Throws

    Error if the server response is not successful.

    -
  • Orders a Payment Plan. The user needs to have enough balance in the token selected by the owner of the Payment Plan.

    +
  • Orders a Payment Plan. The user needs to have enough balance in the token selected by the owner of the Payment Plan.

    Parameters

    • planDID: string

      The Payment Plan DID of the service to be published.

    • Optional agreementId: string

      The unique identifier of the purchase transaction (aka agreement ID). When this parameter is given, it assumes there is a previous payment step and will request the payment plan.

    Returns Promise<{
        agreementId: string;
        success: boolean;
    }>

    A promise that resolves to the agreement ID and a boolean indicating if the operation was successful.

    Remarks

    The payment is done using Crypto. Payments using Fiat can be done via the Nevermined App.

    -
  • It parses the NVM API Key to get the account address.

    -

    Returns void

  • The options get's an instance of the payments class to be used in the browser.

    +
  • It parses the NVM API Key to get the account address.

    +

    Returns void

  • The options get's an instance of the payments class to be used in the browser.

    Parameters

    Returns Payments

    An instance of Payments

    Remarks

    This is a browser only function.

    Example

    const payments = Payments.getBrowserInstance({
    returnUrl: 'https://mysite.example',
    environment: 'testing',
    appId: 'my-app-id',
    version: '1.0.0'
    })
    -
  • The options get's an instance of the payments class.

    Parameters

    Returns Payments

    An instance of Payments

    Example

    const payments = Payments.getInstance({
    nvmApiKey: 'kjdfaofakdoasdkoas',
    environment: 'testing'
    })
    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/classes/PaymentsError.html b/docs/classes/PaymentsError.html index 83e1db3..170a162 100644 --- a/docs/classes/PaymentsError.html +++ b/docs/classes/PaymentsError.html @@ -1,11 +1,11 @@ -PaymentsError | @nevermined-io/payments

Hierarchy

  • Error
    • PaymentsError

Constructors

constructor +PaymentsError | @nevermined-io/payments

Hierarchy

  • Error
    • PaymentsError

Constructors

Properties

message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Constructors

Properties

message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

\ No newline at end of file diff --git a/docs/enums/AgentExecutionStatus.html b/docs/enums/AgentExecutionStatus.html index 601acf4..a081264 100644 --- a/docs/enums/AgentExecutionStatus.html +++ b/docs/enums/AgentExecutionStatus.html @@ -1,12 +1,12 @@ AgentExecutionStatus | @nevermined-io/payments

Enumeration AgentExecutionStatus

The execution status of a task or a step

-

Enumeration Members

Enumeration Members

Completed: "Completed"

The execution is completed

-
Failed: "Failed"

The execution is failed

-
In_Progress: "In_Progress"

The execution is in progress

-
Not_Ready: "Not_Ready"

The step or task is not ready to be executed

-
Pending: "Pending"

The execution is pending

-
\ No newline at end of file +
Failed: "Failed"

The execution is failed

+
In_Progress: "In_Progress"

The execution is in progress

+
Not_Ready: "Not_Ready"

The step or task is not ready to be executed

+
Pending: "Pending"

The execution is pending

+
\ No newline at end of file diff --git a/docs/functions/generateStepId.html b/docs/functions/generateStepId.html index 060440a..f7f05bd 100644 --- a/docs/functions/generateStepId.html +++ b/docs/functions/generateStepId.html @@ -1,3 +1,3 @@ generateStepId | @nevermined-io/payments
  • It generates a random step id

    Returns string

    the step id

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/getAIHubOpenApiUrl.html b/docs/functions/getAIHubOpenApiUrl.html index 407b30c..fc27e1f 100644 --- a/docs/functions/getAIHubOpenApiUrl.html +++ b/docs/functions/getAIHubOpenApiUrl.html @@ -1,3 +1,3 @@ getAIHubOpenApiUrl | @nevermined-io/payments
  • Giving a server host it returns the URL to the OpenAPI documentation of the AI Hub

    Parameters

    Returns string

\ No newline at end of file +

Returns string

\ No newline at end of file diff --git a/docs/functions/getQueryProtocolEndpoints.html b/docs/functions/getQueryProtocolEndpoints.html index 0cc5137..64a92cc 100644 --- a/docs/functions/getQueryProtocolEndpoints.html +++ b/docs/functions/getQueryProtocolEndpoints.html @@ -1,4 +1,4 @@ getQueryProtocolEndpoints | @nevermined-io/payments

Function getQueryProtocolEndpoints

  • It returns the list of endpoints that are used by agents/services implementing the Nevermined Query Protocol

    Parameters

    • serverHost: string

      The host of the server where the agents/services are running

    Returns Endpoint[]

    the list of endpoints

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/getServiceHostFromEndpoints.html b/docs/functions/getServiceHostFromEndpoints.html index 0589aa3..12f9663 100644 --- a/docs/functions/getServiceHostFromEndpoints.html +++ b/docs/functions/getServiceHostFromEndpoints.html @@ -1 +1 @@ -getServiceHostFromEndpoints | @nevermined-io/payments

Function getServiceHostFromEndpoints

\ No newline at end of file +getServiceHostFromEndpoints | @nevermined-io/payments

Function getServiceHostFromEndpoints

\ No newline at end of file diff --git a/docs/functions/isEthereumAddress.html b/docs/functions/isEthereumAddress.html index c4a39c1..6dc2cb1 100644 --- a/docs/functions/isEthereumAddress.html +++ b/docs/functions/isEthereumAddress.html @@ -1,4 +1,4 @@ isEthereumAddress | @nevermined-io/payments
  • Validates if a string is a valid Ethereum address

    Parameters

    • address: undefined | string

      the address to check

    Returns boolean

    true if it's a valid Ethereum address

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/isStepIdValid.html b/docs/functions/isStepIdValid.html index 96f2e8d..77df5cd 100644 --- a/docs/functions/isStepIdValid.html +++ b/docs/functions/isStepIdValid.html @@ -1,4 +1,4 @@ isStepIdValid | @nevermined-io/payments
  • It checks the step id has the right format

    Parameters

    • stepId: string

      the step id to validate

    Returns boolean

    true if it's a valid step id

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/functions/jsonReplacer.html b/docs/functions/jsonReplacer.html index c3bb440..2fe4de8 100644 --- a/docs/functions/jsonReplacer.html +++ b/docs/functions/jsonReplacer.html @@ -1 +1 @@ -jsonReplacer | @nevermined-io/payments
  • Parameters

    • _key: any
    • value: {
          toString: (() => any);
      }
      • toString: (() => any)
          • (): any
          • Returns any

    Returns string | {
        toString: (() => any);
    }

\ No newline at end of file +jsonReplacer | @nevermined-io/payments
  • Parameters

    • _key: any
    • value: {
          toString: (() => any);
      }
      • toString: (() => any)
          • (): any
          • Returns any

    Returns string | {
        toString: (() => any);
    }

\ No newline at end of file diff --git a/docs/functions/sleep.html b/docs/functions/sleep.html index 1c41428..afd6677 100644 --- a/docs/functions/sleep.html +++ b/docs/functions/sleep.html @@ -1 +1 @@ -sleep | @nevermined-io/payments
\ No newline at end of file +sleep | @nevermined-io/payments
\ No newline at end of file diff --git a/docs/interfaces/Artifact.html b/docs/interfaces/Artifact.html index e7e62c0..266b8e2 100644 --- a/docs/interfaces/Artifact.html +++ b/docs/interfaces/Artifact.html @@ -1,11 +1,11 @@ -Artifact | @nevermined-io/payments
interface Artifact {
    artifact_id: string;
    url: string;
}

Properties

artifact_id +Artifact | @nevermined-io/payments
interface Artifact {
    artifact_id: string;
    url: string;
}

Properties

Properties

artifact_id: string

The unique identifier of the artifact

-
url: string

Reference to the artifact in a local or remote storage. +

url: string

Reference to the artifact in a local or remote storage. If it's in the local storage, the URL should be a relative path to the agent workspace. Examples:

  • file://path/to/file
  • http://example.com/path/to/file
-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/interfaces/BackendApiOptions.html b/docs/interfaces/BackendApiOptions.html index 9f71968..414768c 100644 --- a/docs/interfaces/BackendApiOptions.html +++ b/docs/interfaces/BackendApiOptions.html @@ -1,4 +1,4 @@ -BackendApiOptions | @nevermined-io/payments

Interface BackendApiOptions

interface BackendApiOptions {
    apiKey?: string;
    backendHost: string;
    headers?: {
        [key: string]: string;
    };
    proxyHost?: string;
    webSocketHost?: string;
    webSocketOptions?: BackendWebSocketOptions;
}

Properties

apiKey? +BackendApiOptions | @nevermined-io/payments

Interface BackendApiOptions

interface BackendApiOptions {
    apiKey?: string;
    backendHost: string;
    headers?: {
        [key: string]: string;
    };
    proxyHost?: string;
    webSocketHost?: string;
    webSocketOptions?: BackendWebSocketOptions;
}

Properties

Properties

apiKey?: string

The Nevermined API Key. This key identify your user and is required to interact with the Nevermined API. You can get your API key by logging in to the Nevermined App.

backendHost: string

The host of the backend server

-
headers?: {
    [key: string]: string;
}

Additional headers to send with the requests

-

Type declaration

  • [key: string]: string
proxyHost?: string

The host of the Nevermined Proxy

-
webSocketHost?: string

The host of the websocket server

-
webSocketOptions?: BackendWebSocketOptions

Configuration of the websocket connection

-
\ No newline at end of file +
backendHost: string

The host of the backend server

+
headers?: {
    [key: string]: string;
}

Additional headers to send with the requests

+

Type declaration

  • [key: string]: string
proxyHost?: string

The host of the Nevermined Proxy

+
webSocketHost?: string

The host of the websocket server

+
webSocketOptions?: BackendWebSocketOptions

Configuration of the websocket connection

+
\ No newline at end of file diff --git a/docs/interfaces/BackendWebSocketOptions.html b/docs/interfaces/BackendWebSocketOptions.html index 984d3b6..fcc4a88 100644 --- a/docs/interfaces/BackendWebSocketOptions.html +++ b/docs/interfaces/BackendWebSocketOptions.html @@ -1,11 +1,11 @@ -BackendWebSocketOptions | @nevermined-io/payments

Interface BackendWebSocketOptions

interface BackendWebSocketOptions {
    auth: {
        token: string;
    };
    bearerToken?: string;
    path?: string;
    transportOptions?: {
        [key: string]: any;
    };
    transports: string[];
}

Properties

auth +BackendWebSocketOptions | @nevermined-io/payments

Interface BackendWebSocketOptions

interface BackendWebSocketOptions {
    auth: {
        token: string;
    };
    bearerToken?: string;
    path?: string;
    transportOptions?: {
        [key: string]: any;
    };
    transports: string[];
}

Properties

auth: {
    token: string;
}

Authentication parameters

-

Type declaration

  • token: string
bearerToken?: string

The bearer token to use in the websocket connection

-
path?: string

The path to connect to the websocket server

-
transportOptions?: {
    [key: string]: any;
}

Additional options to pass to the websocket transport

-

Type declaration

  • [key: string]: any
transports: string[]

The websocket transports to use

-
\ No newline at end of file +

Type declaration

  • token: string
bearerToken?: string

The bearer token to use in the websocket connection

+
path?: string

The path to connect to the websocket server

+
transportOptions?: {
    [key: string]: any;
}

Additional options to pass to the websocket transport

+

Type declaration

  • [key: string]: any
transports: string[]

The websocket transports to use

+
\ No newline at end of file diff --git a/docs/interfaces/CreateTaskDto.html b/docs/interfaces/CreateTaskDto.html index 469dde5..afb16ae 100644 --- a/docs/interfaces/CreateTaskDto.html +++ b/docs/interfaces/CreateTaskDto.html @@ -1,9 +1,9 @@ -CreateTaskDto | @nevermined-io/payments
interface CreateTaskDto {
    additional_params?: {
        [name: string]: string;
    }[];
    artifacts?: Artifact[];
    name?: string;
    query: string;
}

Properties

additional_params? +CreateTaskDto | @nevermined-io/payments
interface CreateTaskDto {
    additional_params?: {
        [name: string]: string;
    }[];
    artifacts?: Artifact[];
    name?: string;
    query: string;
}

Properties

additional_params?: {
    [name: string]: string;
}[]

Additional parameters required for the task

-

Type declaration

  • [name: string]: string
artifacts?: Artifact[]

Additional artifacts required for the task

-
name?: string

The name of the task

-
query: string

The query parameter for the task

-
\ No newline at end of file +

Type declaration

  • [name: string]: string
artifacts?: Artifact[]

Additional artifacts required for the task

+
name?: string

The name of the task

+
query: string

The query parameter for the task

+
\ No newline at end of file diff --git a/docs/interfaces/Endpoint.html b/docs/interfaces/Endpoint.html index 0c2e879..0c10726 100644 --- a/docs/interfaces/Endpoint.html +++ b/docs/interfaces/Endpoint.html @@ -1 +1 @@ -Endpoint | @nevermined-io/payments
interface Endpoint {
    [verb: string]: string;
}

Indexable

[verb: string]: string
\ No newline at end of file +Endpoint | @nevermined-io/payments
interface Endpoint {
    [verb: string]: string;
}

Indexable

[verb: string]: string
\ No newline at end of file diff --git a/docs/interfaces/EnvironmentInfo.html b/docs/interfaces/EnvironmentInfo.html index fee28b6..aa5b293 100644 --- a/docs/interfaces/EnvironmentInfo.html +++ b/docs/interfaces/EnvironmentInfo.html @@ -1,5 +1,5 @@ -EnvironmentInfo | @nevermined-io/payments
interface EnvironmentInfo {
    backend: string;
    frontend: string;
    proxy: string;
    websocketBackend: string;
}

Properties

backend +EnvironmentInfo | @nevermined-io/payments
interface EnvironmentInfo {
    backend: string;
    frontend: string;
    proxy: string;
    websocketBackend: string;
}

Properties

backend: string
frontend: string
proxy: string
websocketBackend: string
\ No newline at end of file +

Properties

backend: string
frontend: string
proxy: string
websocketBackend: string
\ No newline at end of file diff --git a/docs/interfaces/ExecutionInput.html b/docs/interfaces/ExecutionInput.html index 100b799..9ba0aca 100644 --- a/docs/interfaces/ExecutionInput.html +++ b/docs/interfaces/ExecutionInput.html @@ -1,8 +1,8 @@ ExecutionInput | @nevermined-io/payments

This task can be a question, a prompt, etc. It can include additional parameters and artifacts.

-
interface ExecutionInput {
    input_artifacts?: Artifact[];
    input_params?: {
        [name: string]: string;
    }[];
    input_query: string;
}

Hierarchy (view full)

Properties

interface ExecutionInput {
    input_artifacts?: Artifact[];
    input_params?: {
        [name: string]: string;
    }[];
    input_query: string;
}

Hierarchy (view full)

Properties

input_artifacts?: Artifact[]

List of artifact ids that are associated with the task

-
input_params?: {
    [name: string]: string;
}[]

Additional parameters required for the task

-

Type declaration

  • [name: string]: string
input_query: string

The input for the task. It can be a prompt, a question, etc

-
\ No newline at end of file +
input_params?: {
    [name: string]: string;
}[]

Additional parameters required for the task

+

Type declaration

  • [name: string]: string
input_query: string

The input for the task. It can be a prompt, a question, etc

+
\ No newline at end of file diff --git a/docs/interfaces/ExecutionOptions.html b/docs/interfaces/ExecutionOptions.html index ec59f4b..38aa148 100644 --- a/docs/interfaces/ExecutionOptions.html +++ b/docs/interfaces/ExecutionOptions.html @@ -1,5 +1,5 @@ ExecutionOptions | @nevermined-io/payments

Interface ExecutionOptions

This task can be a question, a prompt, etc. It can include additional parameters and artifacts.

-
interface ExecutionOptions {
    cost?: number;
    created_at?: Date;
    input_artifacts?: Artifact[];
    input_params?: {
        [name: string]: string;
    }[];
    input_query: string;
    output: any;
    output_additional?: {
        [name: string]: any;
    }[];
    output_artifacts?: any[];
    retries?: number;
    updated_at?: Date;
}

Hierarchy (view full)

Properties

interface ExecutionOptions {
    cost?: number;
    created_at?: Date;
    input_artifacts?: Artifact[];
    input_params?: {
        [name: string]: string;
    }[];
    input_query: string;
    output: any;
    output_additional?: {
        [name: string]: any;
    }[];
    output_artifacts?: any[];
    retries?: number;
    updated_at?: Date;
}

Hierarchy (view full)

Properties

cost?: number

The cost in credits resulting from the execution of the task or the step

-
created_at?: Date

When the execution was created

-
input_artifacts?: Artifact[]

List of artifact ids that are associated with the task

-
input_params?: {
    [name: string]: string;
}[]

Additional parameters required for the task

-

Type declaration

  • [name: string]: string
input_query: string

The input for the task. It can be a prompt, a question, etc

-
output: any

The main output generated by a task or step

-
output_additional?: {
    [name: string]: any;
}[]

Additional output generated

-

Type declaration

  • [name: string]: any
output_artifacts?: any[]

List of artifact generated by the task or step

-
retries?: number

The number of retries for the task or step

-
updated_at?: Date

When the execution was last updated

-
\ No newline at end of file +
created_at?: Date

When the execution was created

+
input_artifacts?: Artifact[]

List of artifact ids that are associated with the task

+
input_params?: {
    [name: string]: string;
}[]

Additional parameters required for the task

+

Type declaration

  • [name: string]: string
input_query: string

The input for the task. It can be a prompt, a question, etc

+
output: any

The main output generated by a task or step

+
output_additional?: {
    [name: string]: any;
}[]

Additional output generated

+

Type declaration

  • [name: string]: any
output_artifacts?: any[]

List of artifact generated by the task or step

+
retries?: number

The number of retries for the task or step

+
updated_at?: Date

When the execution was last updated

+
\ No newline at end of file diff --git a/docs/interfaces/ExecutionOutput.html b/docs/interfaces/ExecutionOutput.html index 606ec52..ed53e0a 100644 --- a/docs/interfaces/ExecutionOutput.html +++ b/docs/interfaces/ExecutionOutput.html @@ -1,8 +1,8 @@ ExecutionOutput | @nevermined-io/payments

Output of the task or step execution

-
interface ExecutionOutput {
    output: any;
    output_additional?: {
        [name: string]: any;
    }[];
    output_artifacts?: any[];
}

Hierarchy (view full)

Properties

interface ExecutionOutput {
    output: any;
    output_additional?: {
        [name: string]: any;
    }[];
    output_artifacts?: any[];
}

Hierarchy (view full)

Properties

output: any

The main output generated by a task or step

-
output_additional?: {
    [name: string]: any;
}[]

Additional output generated

-

Type declaration

  • [name: string]: any
output_artifacts?: any[]

List of artifact generated by the task or step

-
\ No newline at end of file +
output_additional?: {
    [name: string]: any;
}[]

Additional output generated

+

Type declaration

  • [name: string]: any
output_artifacts?: any[]

List of artifact generated by the task or step

+
\ No newline at end of file diff --git a/docs/interfaces/PaymentOptions.html b/docs/interfaces/PaymentOptions.html index ae9b5e9..d01474f 100644 --- a/docs/interfaces/PaymentOptions.html +++ b/docs/interfaces/PaymentOptions.html @@ -1,16 +1,16 @@ PaymentOptions | @nevermined-io/payments

Options to initialize the Payments class.

-
interface PaymentOptions {
    appId?: string;
    environment: EnvironmentName;
    nvmApiKey?: string;
    returnUrl?: string;
    version?: string;
}

Properties

interface PaymentOptions {
    appId?: string;
    environment: EnvironmentName;
    nvmApiKey?: string;
    returnUrl?: string;
    version?: string;
}

Properties

appId?: string

The app id. This attribute is optional and helps to associate assets registered into Nevermined with a common identifier.

-
environment: EnvironmentName

The Nevermined environment to connect to. +

environment: EnvironmentName

The Nevermined environment to connect to. If you are developing an agent it's recommended to use the "testing" environment. When deploying to production use the "arbitrum" environment.

-
nvmApiKey?: string

The Nevermined API Key. This key identify your user and is required to interact with the Nevermined API. +

nvmApiKey?: string

The Nevermined API Key. This key identify your user and is required to interact with the Nevermined API. You can get your API key by logging in to the Nevermined App.

returnUrl?: string

The URL to return to the app after a successful login.

-
version?: string

The version of the API to use.

-
\ No newline at end of file +
returnUrl?: string

The URL to return to the app after a successful login.

+
version?: string

The version of the API to use.

+
\ No newline at end of file diff --git a/docs/interfaces/SearchSteps.html b/docs/interfaces/SearchSteps.html index bf8c042..0b6b191 100644 --- a/docs/interfaces/SearchSteps.html +++ b/docs/interfaces/SearchSteps.html @@ -1,8 +1,8 @@ -SearchSteps | @nevermined-io/payments
interface SearchSteps {
    did?: string;
    name?: string;
    offset?: number;
    page?: number;
    step_id?: string;
    step_status?: AgentExecutionStatus;
    task_id?: string;
}

Properties

did? +SearchSteps | @nevermined-io/payments
interface SearchSteps {
    did?: string;
    name?: string;
    offset?: number;
    page?: number;
    step_id?: string;
    step_status?: AgentExecutionStatus;
    task_id?: string;
}

Properties

did?: string
name?: string
offset?: number
page?: number
step_id?: string
step_status?: AgentExecutionStatus
task_id?: string
\ No newline at end of file +

Properties

did?: string
name?: string
offset?: number
page?: number
step_id?: string
step_status?: AgentExecutionStatus
task_id?: string
\ No newline at end of file diff --git a/docs/interfaces/SearchTasks.html b/docs/interfaces/SearchTasks.html index dc8fc89..69d5e6a 100644 --- a/docs/interfaces/SearchTasks.html +++ b/docs/interfaces/SearchTasks.html @@ -1,7 +1,7 @@ -SearchTasks | @nevermined-io/payments
interface SearchTasks {
    did?: string;
    name?: string;
    offset?: number;
    page?: number;
    task_id?: string;
    task_status?: AgentExecutionStatus;
}

Properties

did? +SearchTasks | @nevermined-io/payments
interface SearchTasks {
    did?: string;
    name?: string;
    offset?: number;
    page?: number;
    task_id?: string;
    task_status?: AgentExecutionStatus;
}

Properties

did?: string
name?: string
offset?: number
page?: number
task_id?: string
task_status?: AgentExecutionStatus
\ No newline at end of file +

Properties

did?: string
name?: string
offset?: number
page?: number
task_id?: string
task_status?: AgentExecutionStatus
\ No newline at end of file diff --git a/docs/interfaces/Step.html b/docs/interfaces/Step.html index 8392bbd..5e2afda 100644 --- a/docs/interfaces/Step.html +++ b/docs/interfaces/Step.html @@ -1,5 +1,5 @@ Step | @nevermined-io/payments

This task can be a question, a prompt, etc. It can include additional parameters and artifacts.

-
interface Step {
    cost?: number;
    created_at?: Date;
    input_artifacts?: Artifact[];
    input_params?: {
        [name: string]: string;
    }[];
    input_query: string;
    is_last?: boolean;
    name?: string;
    output: any;
    output_additional?: {
        [name: string]: any;
    }[];
    output_artifacts?: any[];
    predecessor?: string;
    retries?: number;
    step_id: string;
    step_status: AgentExecutionStatus;
    task_id: string;
    updated_at?: Date;
}

Hierarchy (view full)

Properties

interface Step {
    cost?: number;
    created_at?: Date;
    input_artifacts?: Artifact[];
    input_params?: {
        [name: string]: string;
    }[];
    input_query: string;
    is_last?: boolean;
    name?: string;
    output: any;
    output_additional?: {
        [name: string]: any;
    }[];
    output_artifacts?: any[];
    predecessor?: string;
    retries?: number;
    step_id: string;
    step_status: AgentExecutionStatus;
    task_id: string;
    updated_at?: Date;
}

Hierarchy (view full)

Properties

cost?: number

The cost in credits resulting from the execution of the task or the step

-
created_at?: Date

When the execution was created

-
input_artifacts?: Artifact[]

List of artifact ids that are associated with the task

-
input_params?: {
    [name: string]: string;
}[]

Additional parameters required for the task

-

Type declaration

  • [name: string]: string
input_query: string

The input for the task. It can be a prompt, a question, etc

-
is_last?: boolean

Whether this is the last step in the task.

-
name?: string

The name of the step

-
output: any

The main output generated by a task or step

-
output_additional?: {
    [name: string]: any;
}[]

Additional output generated

-

Type declaration

  • [name: string]: any
output_artifacts?: any[]

List of artifact generated by the task or step

-
predecessor?: string

The step preceeding the current step if any

-
retries?: number

The number of retries for the task or step

-
step_id: string

The unique identifier of the step

-

The status of the execution

-
task_id: string

The task that the step belongs to

-
updated_at?: Date

When the execution was last updated

-
\ No newline at end of file +
created_at?: Date

When the execution was created

+
input_artifacts?: Artifact[]

List of artifact ids that are associated with the task

+
input_params?: {
    [name: string]: string;
}[]

Additional parameters required for the task

+

Type declaration

  • [name: string]: string
input_query: string

The input for the task. It can be a prompt, a question, etc

+
is_last?: boolean

Whether this is the last step in the task.

+
name?: string

The name of the step

+
output: any

The main output generated by a task or step

+
output_additional?: {
    [name: string]: any;
}[]

Additional output generated

+

Type declaration

  • [name: string]: any
output_artifacts?: any[]

List of artifact generated by the task or step

+
predecessor?: string

The step preceeding the current step if any

+
retries?: number

The number of retries for the task or step

+
step_id: string

The unique identifier of the step

+

The status of the execution

+
task_id: string

The task that the step belongs to

+
updated_at?: Date

When the execution was last updated

+
\ No newline at end of file diff --git a/docs/interfaces/Task.html b/docs/interfaces/Task.html index 749d942..ef817ee 100644 --- a/docs/interfaces/Task.html +++ b/docs/interfaces/Task.html @@ -1,5 +1,5 @@ Task | @nevermined-io/payments

A task defines something that the agent should execute.

-
interface Task {
    cost?: number;
    created_at?: Date;
    input_artifacts?: Artifact[];
    input_params?: {
        [name: string]: string;
    }[];
    input_query: string;
    name?: string;
    output: any;
    output_additional?: {
        [name: string]: any;
    }[];
    output_artifacts?: any[];
    retries?: number;
    steps: Step[];
    task_id: string;
    task_status: AgentExecutionStatus;
    updated_at?: Date;
}

Hierarchy (view full)

Properties

interface Task {
    cost?: number;
    created_at?: Date;
    input_artifacts?: Artifact[];
    input_params?: {
        [name: string]: string;
    }[];
    input_query: string;
    name?: string;
    output: any;
    output_additional?: {
        [name: string]: any;
    }[];
    output_artifacts?: any[];
    retries?: number;
    steps: Step[];
    task_id: string;
    task_status: AgentExecutionStatus;
    updated_at?: Date;
}

Hierarchy (view full)

Properties

cost?: number

The cost in credits resulting from the execution of the task or the step

-
created_at?: Date

When the execution was created

-
input_artifacts?: Artifact[]

List of artifact ids that are associated with the task

-
input_params?: {
    [name: string]: string;
}[]

Additional parameters required for the task

-

Type declaration

  • [name: string]: string
input_query: string

The input for the task. It can be a prompt, a question, etc

-
name?: string

The name of the task

-
output: any

The main output generated by a task or step

-
output_additional?: {
    [name: string]: any;
}[]

Additional output generated

-

Type declaration

  • [name: string]: any
output_artifacts?: any[]

List of artifact generated by the task or step

-
retries?: number

The number of retries for the task or step

-
steps: Step[]

The steps executed by the agent to complete the task

-
task_id: string

The unique identifier of the task

-

The status of the execution

-
updated_at?: Date

When the execution was last updated

-
\ No newline at end of file +
created_at?: Date

When the execution was created

+
input_artifacts?: Artifact[]

List of artifact ids that are associated with the task

+
input_params?: {
    [name: string]: string;
}[]

Additional parameters required for the task

+

Type declaration

  • [name: string]: string
input_query: string

The input for the task. It can be a prompt, a question, etc

+
name?: string

The name of the task

+
output: any

The main output generated by a task or step

+
output_additional?: {
    [name: string]: any;
}[]

Additional output generated

+

Type declaration

  • [name: string]: any
output_artifacts?: any[]

List of artifact generated by the task or step

+
retries?: number

The number of retries for the task or step

+
steps: Step[]

The steps executed by the agent to complete the task

+
task_id: string

The unique identifier of the task

+

The status of the execution

+
updated_at?: Date

When the execution was last updated

+
\ No newline at end of file diff --git a/docs/interfaces/TaskLogMessage.html b/docs/interfaces/TaskLogMessage.html index 119c913..466e85d 100644 --- a/docs/interfaces/TaskLogMessage.html +++ b/docs/interfaces/TaskLogMessage.html @@ -1,11 +1,11 @@ -TaskLogMessage | @nevermined-io/payments
interface TaskLogMessage {
    level: "error" | "info" | "warning" | "debug";
    message: string;
    step_id?: string;
    task_id: string;
    task_status?: AgentExecutionStatus;
}

Properties

level +TaskLogMessage | @nevermined-io/payments
interface TaskLogMessage {
    level: "error" | "info" | "warning" | "debug";
    message: string;
    step_id?: string;
    task_id: string;
    task_status?: AgentExecutionStatus;
}

Properties

level: "error" | "info" | "warning" | "debug"

Log level

-
message: string

The log message

-
step_id?: string

The step id associated with the log message if any

-
task_id: string

Identifier of the task associated with the log

-
task_status?: AgentExecutionStatus

The status of the task

-
\ No newline at end of file +
message: string

The log message

+
step_id?: string

The step id associated with the log message if any

+
task_id: string

Identifier of the task associated with the log

+
task_status?: AgentExecutionStatus

The status of the task

+
\ No newline at end of file diff --git a/docs/types/EnvironmentName.html b/docs/types/EnvironmentName.html index 33cb109..19d90ab 100644 --- a/docs/types/EnvironmentName.html +++ b/docs/types/EnvironmentName.html @@ -1 +1 @@ -EnvironmentName | @nevermined-io/payments

Type alias EnvironmentName

EnvironmentName: "local" | "staging" | "testing" | "arbitrum" | "peaq" | "custom"
\ No newline at end of file +EnvironmentName | @nevermined-io/payments

Type alias EnvironmentName

EnvironmentName: "local" | "staging" | "testing" | "arbitrum" | "peaq" | "custom"
\ No newline at end of file diff --git a/docs/types/TaskCallback.html b/docs/types/TaskCallback.html index d031c0b..8ab130f 100644 --- a/docs/types/TaskCallback.html +++ b/docs/types/TaskCallback.html @@ -1 +1 @@ -TaskCallback | @nevermined-io/payments
TaskCallback: ((data) => void)

Type declaration

    • (data): void
    • Parameters

      • data: any

      Returns void

\ No newline at end of file +TaskCallback | @nevermined-io/payments
TaskCallback: ((data) => void)

Type declaration

    • (data): void
    • Parameters

      • data: any

      Returns void

\ No newline at end of file diff --git a/docs/variables/CREATE_STEPS_ENDPOINT.html b/docs/variables/CREATE_STEPS_ENDPOINT.html index 73347d2..28d020a 100644 --- a/docs/variables/CREATE_STEPS_ENDPOINT.html +++ b/docs/variables/CREATE_STEPS_ENDPOINT.html @@ -1 +1 @@ -CREATE_STEPS_ENDPOINT | @nevermined-io/payments

Variable CREATE_STEPS_ENDPOINTConst

CREATE_STEPS_ENDPOINT: "/api/v1/agents/{did}/tasks/{taskId}/steps" = '/api/v1/agents/{did}/tasks/{taskId}/steps'
\ No newline at end of file +CREATE_STEPS_ENDPOINT | @nevermined-io/payments

Variable CREATE_STEPS_ENDPOINTConst

CREATE_STEPS_ENDPOINT: "/api/v1/agents/{did}/tasks/{taskId}/steps" = '/api/v1/agents/{did}/tasks/{taskId}/steps'
\ No newline at end of file diff --git a/docs/variables/Environments.html b/docs/variables/Environments.html index d79dabc..ed55ea4 100644 --- a/docs/variables/Environments.html +++ b/docs/variables/Environments.html @@ -1,2 +1,2 @@ Environments | @nevermined-io/payments

Variable EnvironmentsConst

Environments: Record<EnvironmentName, EnvironmentInfo> = ...

Represents the different environments and their corresponding URLs.

-
\ No newline at end of file +
\ No newline at end of file diff --git a/docs/variables/FIRST_STEP_NAME.html b/docs/variables/FIRST_STEP_NAME.html index 69e4e30..5222715 100644 --- a/docs/variables/FIRST_STEP_NAME.html +++ b/docs/variables/FIRST_STEP_NAME.html @@ -1 +1 @@ -FIRST_STEP_NAME | @nevermined-io/payments

Variable FIRST_STEP_NAMEConst

FIRST_STEP_NAME: "init" = 'init'
\ No newline at end of file +FIRST_STEP_NAME | @nevermined-io/payments

Variable FIRST_STEP_NAMEConst

FIRST_STEP_NAME: "init" = 'init'
\ No newline at end of file diff --git a/docs/variables/GET_AGENTS_ENDPOINT.html b/docs/variables/GET_AGENTS_ENDPOINT.html index e840b22..29817f0 100644 --- a/docs/variables/GET_AGENTS_ENDPOINT.html +++ b/docs/variables/GET_AGENTS_ENDPOINT.html @@ -1 +1 @@ -GET_AGENTS_ENDPOINT | @nevermined-io/payments

Variable GET_AGENTS_ENDPOINTConst

GET_AGENTS_ENDPOINT: "/api/v1/agents" = '/api/v1/agents'
\ No newline at end of file +GET_AGENTS_ENDPOINT | @nevermined-io/payments

Variable GET_AGENTS_ENDPOINTConst

GET_AGENTS_ENDPOINT: "/api/v1/agents" = '/api/v1/agents'
\ No newline at end of file diff --git a/docs/variables/GET_BUILDER_STEPS_ENDPOINT.html b/docs/variables/GET_BUILDER_STEPS_ENDPOINT.html index dfad759..cc0893e 100644 --- a/docs/variables/GET_BUILDER_STEPS_ENDPOINT.html +++ b/docs/variables/GET_BUILDER_STEPS_ENDPOINT.html @@ -1 +1 @@ -GET_BUILDER_STEPS_ENDPOINT | @nevermined-io/payments

Variable GET_BUILDER_STEPS_ENDPOINTConst

GET_BUILDER_STEPS_ENDPOINT: "/api/v1/agents/steps" = '/api/v1/agents/steps'
\ No newline at end of file +GET_BUILDER_STEPS_ENDPOINT | @nevermined-io/payments

Variable GET_BUILDER_STEPS_ENDPOINTConst

GET_BUILDER_STEPS_ENDPOINT: "/api/v1/agents/steps" = '/api/v1/agents/steps'
\ No newline at end of file diff --git a/docs/variables/GET_TASK_ENDPOINT.html b/docs/variables/GET_TASK_ENDPOINT.html index 10f5b2c..e741d80 100644 --- a/docs/variables/GET_TASK_ENDPOINT.html +++ b/docs/variables/GET_TASK_ENDPOINT.html @@ -1 +1 @@ -GET_TASK_ENDPOINT | @nevermined-io/payments

Variable GET_TASK_ENDPOINTConst

GET_TASK_ENDPOINT: "/api/v1/agents/{did}/tasks/{taskId}" = '/api/v1/agents/{did}/tasks/{taskId}'
\ No newline at end of file +GET_TASK_ENDPOINT | @nevermined-io/payments

Variable GET_TASK_ENDPOINTConst

GET_TASK_ENDPOINT: "/api/v1/agents/{did}/tasks/{taskId}" = '/api/v1/agents/{did}/tasks/{taskId}'
\ No newline at end of file diff --git a/docs/variables/GET_TASK_STEPS_ENDPOINT.html b/docs/variables/GET_TASK_STEPS_ENDPOINT.html index bca8f91..b1b0bd4 100644 --- a/docs/variables/GET_TASK_STEPS_ENDPOINT.html +++ b/docs/variables/GET_TASK_STEPS_ENDPOINT.html @@ -1 +1 @@ -GET_TASK_STEPS_ENDPOINT | @nevermined-io/payments

Variable GET_TASK_STEPS_ENDPOINTConst

GET_TASK_STEPS_ENDPOINT: "/api/v1/agents/{did}/tasks/{taskId}/steps" = '/api/v1/agents/{did}/tasks/{taskId}/steps'
\ No newline at end of file +GET_TASK_STEPS_ENDPOINT | @nevermined-io/payments

Variable GET_TASK_STEPS_ENDPOINTConst

GET_TASK_STEPS_ENDPOINT: "/api/v1/agents/{did}/tasks/{taskId}/steps" = '/api/v1/agents/{did}/tasks/{taskId}/steps'
\ No newline at end of file diff --git a/docs/variables/SEARCH_STEPS_ENDPOINT.html b/docs/variables/SEARCH_STEPS_ENDPOINT.html index d120f32..9f23c31 100644 --- a/docs/variables/SEARCH_STEPS_ENDPOINT.html +++ b/docs/variables/SEARCH_STEPS_ENDPOINT.html @@ -1 +1 @@ -SEARCH_STEPS_ENDPOINT | @nevermined-io/payments

Variable SEARCH_STEPS_ENDPOINTConst

SEARCH_STEPS_ENDPOINT: "/api/v1/agents/search/steps" = '/api/v1/agents/search/steps'
\ No newline at end of file +SEARCH_STEPS_ENDPOINT | @nevermined-io/payments

Variable SEARCH_STEPS_ENDPOINTConst

SEARCH_STEPS_ENDPOINT: "/api/v1/agents/search/steps" = '/api/v1/agents/search/steps'
\ No newline at end of file diff --git a/docs/variables/SEARCH_TASKS_ENDPOINT.html b/docs/variables/SEARCH_TASKS_ENDPOINT.html index 5f0eac8..4e6c07c 100644 --- a/docs/variables/SEARCH_TASKS_ENDPOINT.html +++ b/docs/variables/SEARCH_TASKS_ENDPOINT.html @@ -1 +1 @@ -SEARCH_TASKS_ENDPOINT | @nevermined-io/payments

Variable SEARCH_TASKS_ENDPOINTConst

SEARCH_TASKS_ENDPOINT: "/api/v1/agents/search/tasks" = '/api/v1/agents/search/tasks'
\ No newline at end of file +SEARCH_TASKS_ENDPOINT | @nevermined-io/payments

Variable SEARCH_TASKS_ENDPOINTConst

SEARCH_TASKS_ENDPOINT: "/api/v1/agents/search/tasks" = '/api/v1/agents/search/tasks'
\ No newline at end of file diff --git a/docs/variables/TASK_ENDPOINT.html b/docs/variables/TASK_ENDPOINT.html index 43f28e9..ab09b2d 100644 --- a/docs/variables/TASK_ENDPOINT.html +++ b/docs/variables/TASK_ENDPOINT.html @@ -1 +1 @@ -TASK_ENDPOINT | @nevermined-io/payments

Variable TASK_ENDPOINTConst

TASK_ENDPOINT: "/api/v1/agents/{did}/tasks" = '/api/v1/agents/{did}/tasks'
\ No newline at end of file +TASK_ENDPOINT | @nevermined-io/payments

Variable TASK_ENDPOINTConst

TASK_ENDPOINT: "/api/v1/agents/{did}/tasks" = '/api/v1/agents/{did}/tasks'
\ No newline at end of file diff --git a/docs/variables/UPDATE_STEP_ENDPOINT.html b/docs/variables/UPDATE_STEP_ENDPOINT.html index 609fa82..83ebb29 100644 --- a/docs/variables/UPDATE_STEP_ENDPOINT.html +++ b/docs/variables/UPDATE_STEP_ENDPOINT.html @@ -1 +1 @@ -UPDATE_STEP_ENDPOINT | @nevermined-io/payments

Variable UPDATE_STEP_ENDPOINTConst

UPDATE_STEP_ENDPOINT: "/api/v1/agents/{did}/tasks/{taskId}/step/{stepId}" = '/api/v1/agents/{did}/tasks/{taskId}/step/{stepId}'
\ No newline at end of file +UPDATE_STEP_ENDPOINT | @nevermined-io/payments

Variable UPDATE_STEP_ENDPOINTConst

UPDATE_STEP_ENDPOINT: "/api/v1/agents/{did}/tasks/{taskId}/step/{stepId}" = '/api/v1/agents/{did}/tasks/{taskId}/step/{stepId}'
\ No newline at end of file diff --git a/docs/variables/ZeroAddress.html b/docs/variables/ZeroAddress.html index 3f4a490..b05ca38 100644 --- a/docs/variables/ZeroAddress.html +++ b/docs/variables/ZeroAddress.html @@ -1 +1 @@ -ZeroAddress | @nevermined-io/payments

Variable ZeroAddressConst

ZeroAddress: "0x0000000000000000000000000000000000000000" = '0x0000000000000000000000000000000000000000'
\ No newline at end of file +ZeroAddress | @nevermined-io/payments

Variable ZeroAddressConst

ZeroAddress: "0x0000000000000000000000000000000000000000" = '0x0000000000000000000000000000000000000000'
\ No newline at end of file