1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

merge main

This commit is contained in:
Bogdan Fazakas 2023-05-19 15:00:08 +03:00
commit a227004d19
2 changed files with 12 additions and 6 deletions

View File

@ -54,6 +54,12 @@ export interface MetadataAlgorithm {
*/ */
consumerParameters?: ConsumerParameter[] consumerParameters?: ConsumerParameter[]
} }
/**
* Array of objects describing the consumer parameters
* @type {ConsumerParameter[]}
*/
consumerParameters?: ConsumerParameter[]
} }
export interface Metadata { export interface Metadata {

View File

@ -104,15 +104,15 @@ export interface Service {
*/ */
compute?: ServiceComputeOptions compute?: ServiceComputeOptions
/**
* Stores service specific additional information, this is customizable by publisher
* @type {any}
*/
additionalInformation?: any
/** /**
* Array of objects describing the consumer parameters * Array of objects describing the consumer parameters
* @type {ConsumerParameter[]} * @type {ConsumerParameter[]}
*/ */
consumerParameters?: ConsumerParameter[] consumerParameters?: ConsumerParameter[]
/**
* Stores service specific additional information, this is customizable by publisher
* @type {any}
*/
additionalInformation?: any
} }