@seal-protocol/backendjs 0.0.105 → 0.0.108

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -256,13 +256,13 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
256
256
  * @param {string} [requestId]
257
257
  * @param {string} [offerer]
258
258
  * @param {string} [id]
259
- * @param {boolean} [onChain] TODO requires indexer
259
+ * @param {string} [onChain]
260
260
  * @param {number} [settlementTimeAfter]
261
261
  * @param {number} [deadlineAfter]
262
262
  * @param {*} [options] Override http request option.
263
263
  * @throws {RequiredError}
264
264
  */
265
- getRfqQuotes: (chainId: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, quoteHash?: string, requestId?: string, offerer?: string, id?: string, onChain?: boolean, settlementTimeAfter?: number, deadlineAfter?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
265
+ getRfqQuotes: (chainId: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, quoteHash?: string, requestId?: string, offerer?: string, id?: string, onChain?: string, settlementTimeAfter?: number, deadlineAfter?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
266
266
  /**
267
267
  *
268
268
  * @param {string} [paginationKey]
@@ -555,13 +555,13 @@ export declare const SealClientFp: (configuration?: Configuration) => {
555
555
  * @param {string} [requestId]
556
556
  * @param {string} [offerer]
557
557
  * @param {string} [id]
558
- * @param {boolean} [onChain] TODO requires indexer
558
+ * @param {string} [onChain]
559
559
  * @param {number} [settlementTimeAfter]
560
560
  * @param {number} [deadlineAfter]
561
561
  * @param {*} [options] Override http request option.
562
562
  * @throws {RequiredError}
563
563
  */
564
- getRfqQuotes(chainId: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, quoteHash?: string, requestId?: string, offerer?: string, id?: string, onChain?: boolean, settlementTimeAfter?: number, deadlineAfter?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqQuotesResponse>>;
564
+ getRfqQuotes(chainId: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, quoteHash?: string, requestId?: string, offerer?: string, id?: string, onChain?: string, settlementTimeAfter?: number, deadlineAfter?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqQuotesResponse>>;
565
565
  /**
566
566
  *
567
567
  * @param {string} [paginationKey]
@@ -1545,11 +1545,11 @@ export interface SealClientGetRfqQuotesRequest {
1545
1545
  */
1546
1546
  readonly id?: string;
1547
1547
  /**
1548
- * TODO requires indexer
1549
- * @type {boolean}
1548
+ *
1549
+ * @type {string}
1550
1550
  * @memberof SealClientGetRfqQuotes
1551
1551
  */
1552
- readonly onChain?: boolean;
1552
+ readonly onChain?: string;
1553
1553
  /**
1554
1554
  *
1555
1555
  * @type {number}
@@ -854,7 +854,7 @@ const SealClientAxiosParamCreator = function (configuration) {
854
854
  * @param {string} [requestId]
855
855
  * @param {string} [offerer]
856
856
  * @param {string} [id]
857
- * @param {boolean} [onChain] TODO requires indexer
857
+ * @param {string} [onChain]
858
858
  * @param {number} [settlementTimeAfter]
859
859
  * @param {number} [deadlineAfter]
860
860
  * @param {*} [options] Override http request option.
@@ -1539,7 +1539,7 @@ const SealClientFp = function (configuration) {
1539
1539
  * @param {string} [requestId]
1540
1540
  * @param {string} [offerer]
1541
1541
  * @param {string} [id]
1542
- * @param {boolean} [onChain] TODO requires indexer
1542
+ * @param {string} [onChain]
1543
1543
  * @param {number} [settlementTimeAfter]
1544
1544
  * @param {number} [deadlineAfter]
1545
1545
  * @param {*} [options] Override http request option.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seal-protocol/backendjs",
3
- "version": "0.0.105",
3
+ "version": "0.0.108",
4
4
  "description": "Javascript SDK for Seal Backend",
5
5
  "author": "amin <amin@refractedlabs.com>",
6
6
  "homepage": "https://github.com/seal-protocol/backend/tree/main/ts-client#readme",