@seal-protocol/backendjs 0.0.98 → 0.0.99
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.
- package/lib/codegen/api/seal-client.d.ts +15 -17
- package/lib/codegen/api/seal-client.js +15 -17
- package/lib/codegen/model/seal-order-reservation.d.ts +6 -0
- package/lib/codegen/model/seal-rfq-quote.d.ts +6 -0
- package/lib/codegen/model/seal-rfq-request.d.ts +0 -6
- package/lib/codegen/model/seal-seal-contract-params.d.ts +12 -0
- package/lib/codegen/model/seal-submit-quote-response.d.ts +1 -1
- package/lib/codegen/model/seal-submit-rfq-request.d.ts +0 -6
- package/lib/codegen/model/types-rfq-quote-order-by-property.d.ts +0 -1
- package/lib/codegen/model/types-rfq-quote-order-by-property.js +0 -1
- package/lib/codegen/model/types-rfq-requests-order-by-property.d.ts +1 -2
- package/lib/codegen/model/types-rfq-requests-order-by-property.js +0 -1
- package/package.json +1 -1
|
@@ -218,6 +218,7 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
218
218
|
* @param {string} [quoteHash]
|
|
219
219
|
* @param {string} [requestId]
|
|
220
220
|
* @param {string} [offerer]
|
|
221
|
+
* @param {string} [id]
|
|
221
222
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
222
223
|
* @param {boolean} [orderByDescending]
|
|
223
224
|
* @param {string} [paginationKey]
|
|
@@ -226,7 +227,7 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
226
227
|
* @param {*} [options] Override http request option.
|
|
227
228
|
* @throws {RequiredError}
|
|
228
229
|
*/
|
|
229
|
-
getRfqQuotes: (chainId: string, quoteHash?: string, requestId?: string, offerer?: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
230
|
+
getRfqQuotes: (chainId: string, quoteHash?: string, requestId?: string, offerer?: string, id?: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
230
231
|
/**
|
|
231
232
|
*
|
|
232
233
|
* @param {string} [id]
|
|
@@ -236,7 +237,6 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
236
237
|
* @param {string} [tokenOut]
|
|
237
238
|
* @param {number} [creationTimeAfter]
|
|
238
239
|
* @param {number} [requestDeadlineAfter]
|
|
239
|
-
* @param {number} [buyInDeadlineAfter]
|
|
240
240
|
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
241
241
|
* @param {boolean} [orderByDescending]
|
|
242
242
|
* @param {string} [paginationKey]
|
|
@@ -245,7 +245,7 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
245
245
|
* @param {*} [options] Override http request option.
|
|
246
246
|
* @throws {RequiredError}
|
|
247
247
|
*/
|
|
248
|
-
getRfqRequests: (id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number,
|
|
248
|
+
getRfqRequests: (id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number, orderByProperty?: GetRfqRequestsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
249
249
|
/**
|
|
250
250
|
*
|
|
251
251
|
* @param {string} [chainId]
|
|
@@ -493,6 +493,7 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
493
493
|
* @param {string} [quoteHash]
|
|
494
494
|
* @param {string} [requestId]
|
|
495
495
|
* @param {string} [offerer]
|
|
496
|
+
* @param {string} [id]
|
|
496
497
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
497
498
|
* @param {boolean} [orderByDescending]
|
|
498
499
|
* @param {string} [paginationKey]
|
|
@@ -501,7 +502,7 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
501
502
|
* @param {*} [options] Override http request option.
|
|
502
503
|
* @throws {RequiredError}
|
|
503
504
|
*/
|
|
504
|
-
getRfqQuotes(chainId: string, quoteHash?: string, requestId?: string, offerer?: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqQuotesResponse>>;
|
|
505
|
+
getRfqQuotes(chainId: string, quoteHash?: string, requestId?: string, offerer?: string, id?: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqQuotesResponse>>;
|
|
505
506
|
/**
|
|
506
507
|
*
|
|
507
508
|
* @param {string} [id]
|
|
@@ -511,7 +512,6 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
511
512
|
* @param {string} [tokenOut]
|
|
512
513
|
* @param {number} [creationTimeAfter]
|
|
513
514
|
* @param {number} [requestDeadlineAfter]
|
|
514
|
-
* @param {number} [buyInDeadlineAfter]
|
|
515
515
|
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
516
516
|
* @param {boolean} [orderByDescending]
|
|
517
517
|
* @param {string} [paginationKey]
|
|
@@ -520,7 +520,7 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
520
520
|
* @param {*} [options] Override http request option.
|
|
521
521
|
* @throws {RequiredError}
|
|
522
522
|
*/
|
|
523
|
-
getRfqRequests(id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number,
|
|
523
|
+
getRfqRequests(id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number, orderByProperty?: GetRfqRequestsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqRequestsResponse>>;
|
|
524
524
|
/**
|
|
525
525
|
*
|
|
526
526
|
* @param {string} [chainId]
|
|
@@ -1355,7 +1355,13 @@ export interface SealClientGetRfqQuotesRequest {
|
|
|
1355
1355
|
readonly offerer?: string;
|
|
1356
1356
|
/**
|
|
1357
1357
|
*
|
|
1358
|
-
* @type {
|
|
1358
|
+
* @type {string}
|
|
1359
|
+
* @memberof SealClientGetRfqQuotes
|
|
1360
|
+
*/
|
|
1361
|
+
readonly id?: string;
|
|
1362
|
+
/**
|
|
1363
|
+
*
|
|
1364
|
+
* @type {'RfqQuoteOrderByProperty_UNSPECIFIED' | 'RfqQuoteOrderByProperty_ID' | 'RfqQuoteOrderByProperty_SETTLEMENT_TIME' | 'RfqQuoteOrderByProperty_DEADLINE'}
|
|
1359
1365
|
* @memberof SealClientGetRfqQuotes
|
|
1360
1366
|
*/
|
|
1361
1367
|
readonly orderByProperty?: GetRfqQuotesOrderByPropertyEnum;
|
|
@@ -1434,13 +1440,7 @@ export interface SealClientGetRfqRequestsRequest {
|
|
|
1434
1440
|
readonly requestDeadlineAfter?: number;
|
|
1435
1441
|
/**
|
|
1436
1442
|
*
|
|
1437
|
-
* @type {
|
|
1438
|
-
* @memberof SealClientGetRfqRequests
|
|
1439
|
-
*/
|
|
1440
|
-
readonly buyInDeadlineAfter?: number;
|
|
1441
|
-
/**
|
|
1442
|
-
*
|
|
1443
|
-
* @type {'RfqRequestsOrderByProperty_UNSPECIFIED' | 'RfqRequestsOrderByProperty_ID' | 'RfqRequestsOrderByProperty_CREATION_TIME' | 'RfqRequestsOrderByProperty_REQUEST_DEADLINE' | 'RfqRequestsOrderByProperty_BUY_IN_DEADLINE'}
|
|
1443
|
+
* @type {'RfqRequestsOrderByProperty_UNSPECIFIED' | 'RfqRequestsOrderByProperty_ID' | 'RfqRequestsOrderByProperty_CREATION_TIME' | 'RfqRequestsOrderByProperty_REQUEST_DEADLINE'}
|
|
1444
1444
|
* @memberof SealClientGetRfqRequests
|
|
1445
1445
|
*/
|
|
1446
1446
|
readonly orderByProperty?: GetRfqRequestsOrderByPropertyEnum;
|
|
@@ -1923,7 +1923,6 @@ export declare enum GetPairsOrderByPropertyEnum {
|
|
|
1923
1923
|
export declare enum GetRfqQuotesOrderByPropertyEnum {
|
|
1924
1924
|
RfqQuoteOrderByPropertyUnspecified = "RfqQuoteOrderByProperty_UNSPECIFIED",
|
|
1925
1925
|
RfqQuoteOrderByPropertyId = "RfqQuoteOrderByProperty_ID",
|
|
1926
|
-
RfqQuoteOrderByPropertySubmissionTime = "RfqQuoteOrderByProperty_SUBMISSION_TIME",
|
|
1927
1926
|
RfqQuoteOrderByPropertySettlementTime = "RfqQuoteOrderByProperty_SETTLEMENT_TIME",
|
|
1928
1927
|
RfqQuoteOrderByPropertyDeadline = "RfqQuoteOrderByProperty_DEADLINE"
|
|
1929
1928
|
}
|
|
@@ -1935,8 +1934,7 @@ export declare enum GetRfqRequestsOrderByPropertyEnum {
|
|
|
1935
1934
|
RfqRequestsOrderByPropertyUnspecified = "RfqRequestsOrderByProperty_UNSPECIFIED",
|
|
1936
1935
|
RfqRequestsOrderByPropertyId = "RfqRequestsOrderByProperty_ID",
|
|
1937
1936
|
RfqRequestsOrderByPropertyCreationTime = "RfqRequestsOrderByProperty_CREATION_TIME",
|
|
1938
|
-
RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE"
|
|
1939
|
-
RfqRequestsOrderByPropertyBuyInDeadline = "RfqRequestsOrderByProperty_BUY_IN_DEADLINE"
|
|
1937
|
+
RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE"
|
|
1940
1938
|
}
|
|
1941
1939
|
/**
|
|
1942
1940
|
* @export
|
|
@@ -722,6 +722,7 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
722
722
|
* @param {string} [quoteHash]
|
|
723
723
|
* @param {string} [requestId]
|
|
724
724
|
* @param {string} [offerer]
|
|
725
|
+
* @param {string} [id]
|
|
725
726
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
726
727
|
* @param {boolean} [orderByDescending]
|
|
727
728
|
* @param {string} [paginationKey]
|
|
@@ -730,7 +731,7 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
730
731
|
* @param {*} [options] Override http request option.
|
|
731
732
|
* @throws {RequiredError}
|
|
732
733
|
*/
|
|
733
|
-
getRfqQuotes: async (chainId, quoteHash, requestId, offerer, orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, options = {}) => {
|
|
734
|
+
getRfqQuotes: async (chainId, quoteHash, requestId, offerer, id, orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, options = {}) => {
|
|
734
735
|
// verify required parameter 'chainId' is not null or undefined
|
|
735
736
|
(0, common_1.assertParamExists)('getRfqQuotes', 'chainId', chainId);
|
|
736
737
|
const localVarPath = `/seal/rfq/quotes`;
|
|
@@ -755,6 +756,9 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
755
756
|
if (offerer !== undefined) {
|
|
756
757
|
localVarQueryParameter['offerer'] = offerer;
|
|
757
758
|
}
|
|
759
|
+
if (id !== undefined) {
|
|
760
|
+
localVarQueryParameter['id'] = id;
|
|
761
|
+
}
|
|
758
762
|
if (orderByProperty !== undefined) {
|
|
759
763
|
localVarQueryParameter['orderBy.property'] = orderByProperty;
|
|
760
764
|
}
|
|
@@ -787,7 +791,6 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
787
791
|
* @param {string} [tokenOut]
|
|
788
792
|
* @param {number} [creationTimeAfter]
|
|
789
793
|
* @param {number} [requestDeadlineAfter]
|
|
790
|
-
* @param {number} [buyInDeadlineAfter]
|
|
791
794
|
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
792
795
|
* @param {boolean} [orderByDescending]
|
|
793
796
|
* @param {string} [paginationKey]
|
|
@@ -796,7 +799,7 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
796
799
|
* @param {*} [options] Override http request option.
|
|
797
800
|
* @throws {RequiredError}
|
|
798
801
|
*/
|
|
799
|
-
getRfqRequests: async (id, chainId, requester, tokenIn, tokenOut, creationTimeAfter, requestDeadlineAfter,
|
|
802
|
+
getRfqRequests: async (id, chainId, requester, tokenIn, tokenOut, creationTimeAfter, requestDeadlineAfter, orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, options = {}) => {
|
|
800
803
|
const localVarPath = `/seal/rfq/requests`;
|
|
801
804
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
802
805
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -828,9 +831,6 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
828
831
|
if (requestDeadlineAfter !== undefined) {
|
|
829
832
|
localVarQueryParameter['requestDeadlineAfter'] = requestDeadlineAfter;
|
|
830
833
|
}
|
|
831
|
-
if (buyInDeadlineAfter !== undefined) {
|
|
832
|
-
localVarQueryParameter['buyInDeadlineAfter'] = buyInDeadlineAfter;
|
|
833
|
-
}
|
|
834
834
|
if (orderByProperty !== undefined) {
|
|
835
835
|
localVarQueryParameter['orderBy.property'] = orderByProperty;
|
|
836
836
|
}
|
|
@@ -1391,6 +1391,7 @@ const SealClientFp = function (configuration) {
|
|
|
1391
1391
|
* @param {string} [quoteHash]
|
|
1392
1392
|
* @param {string} [requestId]
|
|
1393
1393
|
* @param {string} [offerer]
|
|
1394
|
+
* @param {string} [id]
|
|
1394
1395
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
1395
1396
|
* @param {boolean} [orderByDescending]
|
|
1396
1397
|
* @param {string} [paginationKey]
|
|
@@ -1399,8 +1400,8 @@ const SealClientFp = function (configuration) {
|
|
|
1399
1400
|
* @param {*} [options] Override http request option.
|
|
1400
1401
|
* @throws {RequiredError}
|
|
1401
1402
|
*/
|
|
1402
|
-
async getRfqQuotes(chainId, quoteHash, requestId, offerer, orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, options) {
|
|
1403
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getRfqQuotes(chainId, quoteHash, requestId, offerer, orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, options);
|
|
1403
|
+
async getRfqQuotes(chainId, quoteHash, requestId, offerer, id, orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, options) {
|
|
1404
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRfqQuotes(chainId, quoteHash, requestId, offerer, id, orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, options);
|
|
1404
1405
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1405
1406
|
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.getRfqQuotes']?.[localVarOperationServerIndex]?.url;
|
|
1406
1407
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1414,7 +1415,6 @@ const SealClientFp = function (configuration) {
|
|
|
1414
1415
|
* @param {string} [tokenOut]
|
|
1415
1416
|
* @param {number} [creationTimeAfter]
|
|
1416
1417
|
* @param {number} [requestDeadlineAfter]
|
|
1417
|
-
* @param {number} [buyInDeadlineAfter]
|
|
1418
1418
|
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
1419
1419
|
* @param {boolean} [orderByDescending]
|
|
1420
1420
|
* @param {string} [paginationKey]
|
|
@@ -1423,8 +1423,8 @@ const SealClientFp = function (configuration) {
|
|
|
1423
1423
|
* @param {*} [options] Override http request option.
|
|
1424
1424
|
* @throws {RequiredError}
|
|
1425
1425
|
*/
|
|
1426
|
-
async getRfqRequests(id, chainId, requester, tokenIn, tokenOut, creationTimeAfter, requestDeadlineAfter,
|
|
1427
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getRfqRequests(id, chainId, requester, tokenIn, tokenOut, creationTimeAfter, requestDeadlineAfter,
|
|
1426
|
+
async getRfqRequests(id, chainId, requester, tokenIn, tokenOut, creationTimeAfter, requestDeadlineAfter, orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, options) {
|
|
1427
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRfqRequests(id, chainId, requester, tokenIn, tokenOut, creationTimeAfter, requestDeadlineAfter, orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, options);
|
|
1428
1428
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1429
1429
|
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.getRfqRequests']?.[localVarOperationServerIndex]?.url;
|
|
1430
1430
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1689,7 +1689,7 @@ const SealClientFactory = function (configuration, basePath, axios) {
|
|
|
1689
1689
|
* @throws {RequiredError}
|
|
1690
1690
|
*/
|
|
1691
1691
|
getRfqQuotes(requestParameters, options) {
|
|
1692
|
-
return localVarFp.getRfqQuotes(requestParameters.chainId, requestParameters.quoteHash, requestParameters.requestId, requestParameters.offerer, requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(axios, basePath));
|
|
1692
|
+
return localVarFp.getRfqQuotes(requestParameters.chainId, requestParameters.quoteHash, requestParameters.requestId, requestParameters.offerer, requestParameters.id, requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(axios, basePath));
|
|
1693
1693
|
},
|
|
1694
1694
|
/**
|
|
1695
1695
|
*
|
|
@@ -1698,7 +1698,7 @@ const SealClientFactory = function (configuration, basePath, axios) {
|
|
|
1698
1698
|
* @throws {RequiredError}
|
|
1699
1699
|
*/
|
|
1700
1700
|
getRfqRequests(requestParameters = {}, options) {
|
|
1701
|
-
return localVarFp.getRfqRequests(requestParameters.id, requestParameters.chainId, requestParameters.requester, requestParameters.tokenIn, requestParameters.tokenOut, requestParameters.creationTimeAfter, requestParameters.requestDeadlineAfter, requestParameters.
|
|
1701
|
+
return localVarFp.getRfqRequests(requestParameters.id, requestParameters.chainId, requestParameters.requester, requestParameters.tokenIn, requestParameters.tokenOut, requestParameters.creationTimeAfter, requestParameters.requestDeadlineAfter, requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(axios, basePath));
|
|
1702
1702
|
},
|
|
1703
1703
|
/**
|
|
1704
1704
|
*
|
|
@@ -1937,7 +1937,7 @@ class SealClient extends base_1.BaseAPI {
|
|
|
1937
1937
|
* @memberof SealClient
|
|
1938
1938
|
*/
|
|
1939
1939
|
getRfqQuotes(requestParameters, options) {
|
|
1940
|
-
return (0, exports.SealClientFp)(this.configuration).getRfqQuotes(requestParameters.chainId, requestParameters.quoteHash, requestParameters.requestId, requestParameters.offerer, requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(this.axios, this.basePath));
|
|
1940
|
+
return (0, exports.SealClientFp)(this.configuration).getRfqQuotes(requestParameters.chainId, requestParameters.quoteHash, requestParameters.requestId, requestParameters.offerer, requestParameters.id, requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(this.axios, this.basePath));
|
|
1941
1941
|
}
|
|
1942
1942
|
/**
|
|
1943
1943
|
*
|
|
@@ -1947,7 +1947,7 @@ class SealClient extends base_1.BaseAPI {
|
|
|
1947
1947
|
* @memberof SealClient
|
|
1948
1948
|
*/
|
|
1949
1949
|
getRfqRequests(requestParameters = {}, options) {
|
|
1950
|
-
return (0, exports.SealClientFp)(this.configuration).getRfqRequests(requestParameters.id, requestParameters.chainId, requestParameters.requester, requestParameters.tokenIn, requestParameters.tokenOut, requestParameters.creationTimeAfter, requestParameters.requestDeadlineAfter, requestParameters.
|
|
1950
|
+
return (0, exports.SealClientFp)(this.configuration).getRfqRequests(requestParameters.id, requestParameters.chainId, requestParameters.requester, requestParameters.tokenIn, requestParameters.tokenOut, requestParameters.creationTimeAfter, requestParameters.requestDeadlineAfter, requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(this.axios, this.basePath));
|
|
1951
1951
|
}
|
|
1952
1952
|
/**
|
|
1953
1953
|
*
|
|
@@ -2117,7 +2117,6 @@ var GetRfqQuotesOrderByPropertyEnum;
|
|
|
2117
2117
|
(function (GetRfqQuotesOrderByPropertyEnum) {
|
|
2118
2118
|
GetRfqQuotesOrderByPropertyEnum["RfqQuoteOrderByPropertyUnspecified"] = "RfqQuoteOrderByProperty_UNSPECIFIED";
|
|
2119
2119
|
GetRfqQuotesOrderByPropertyEnum["RfqQuoteOrderByPropertyId"] = "RfqQuoteOrderByProperty_ID";
|
|
2120
|
-
GetRfqQuotesOrderByPropertyEnum["RfqQuoteOrderByPropertySubmissionTime"] = "RfqQuoteOrderByProperty_SUBMISSION_TIME";
|
|
2121
2120
|
GetRfqQuotesOrderByPropertyEnum["RfqQuoteOrderByPropertySettlementTime"] = "RfqQuoteOrderByProperty_SETTLEMENT_TIME";
|
|
2122
2121
|
GetRfqQuotesOrderByPropertyEnum["RfqQuoteOrderByPropertyDeadline"] = "RfqQuoteOrderByProperty_DEADLINE";
|
|
2123
2122
|
})(GetRfqQuotesOrderByPropertyEnum || (exports.GetRfqQuotesOrderByPropertyEnum = GetRfqQuotesOrderByPropertyEnum = {}));
|
|
@@ -2131,7 +2130,6 @@ var GetRfqRequestsOrderByPropertyEnum;
|
|
|
2131
2130
|
GetRfqRequestsOrderByPropertyEnum["RfqRequestsOrderByPropertyId"] = "RfqRequestsOrderByProperty_ID";
|
|
2132
2131
|
GetRfqRequestsOrderByPropertyEnum["RfqRequestsOrderByPropertyCreationTime"] = "RfqRequestsOrderByProperty_CREATION_TIME";
|
|
2133
2132
|
GetRfqRequestsOrderByPropertyEnum["RfqRequestsOrderByPropertyRequestDeadline"] = "RfqRequestsOrderByProperty_REQUEST_DEADLINE";
|
|
2134
|
-
GetRfqRequestsOrderByPropertyEnum["RfqRequestsOrderByPropertyBuyInDeadline"] = "RfqRequestsOrderByProperty_BUY_IN_DEADLINE";
|
|
2135
2133
|
})(GetRfqRequestsOrderByPropertyEnum || (exports.GetRfqRequestsOrderByPropertyEnum = GetRfqRequestsOrderByPropertyEnum = {}));
|
|
2136
2134
|
/**
|
|
2137
2135
|
* @export
|
|
@@ -21,6 +21,18 @@ export interface SealSealContractParams {
|
|
|
21
21
|
* @memberof SealSealContractParams
|
|
22
22
|
*/
|
|
23
23
|
'makerFee'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SealSealContractParams
|
|
28
|
+
*/
|
|
29
|
+
'takerFee'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SealSealContractParams
|
|
34
|
+
*/
|
|
35
|
+
'reserverFee'?: string;
|
|
24
36
|
/**
|
|
25
37
|
*
|
|
26
38
|
* @type {string}
|
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
export declare enum TypesRfqQuoteOrderByProperty {
|
|
18
18
|
RfqQuoteOrderByPropertyUnspecified = "RfqQuoteOrderByProperty_UNSPECIFIED",
|
|
19
19
|
RfqQuoteOrderByPropertyId = "RfqQuoteOrderByProperty_ID",
|
|
20
|
-
RfqQuoteOrderByPropertySubmissionTime = "RfqQuoteOrderByProperty_SUBMISSION_TIME",
|
|
21
20
|
RfqQuoteOrderByPropertySettlementTime = "RfqQuoteOrderByProperty_SETTLEMENT_TIME",
|
|
22
21
|
RfqQuoteOrderByPropertyDeadline = "RfqQuoteOrderByProperty_DEADLINE"
|
|
23
22
|
}
|
|
@@ -23,7 +23,6 @@ var TypesRfqQuoteOrderByProperty;
|
|
|
23
23
|
(function (TypesRfqQuoteOrderByProperty) {
|
|
24
24
|
TypesRfqQuoteOrderByProperty["RfqQuoteOrderByPropertyUnspecified"] = "RfqQuoteOrderByProperty_UNSPECIFIED";
|
|
25
25
|
TypesRfqQuoteOrderByProperty["RfqQuoteOrderByPropertyId"] = "RfqQuoteOrderByProperty_ID";
|
|
26
|
-
TypesRfqQuoteOrderByProperty["RfqQuoteOrderByPropertySubmissionTime"] = "RfqQuoteOrderByProperty_SUBMISSION_TIME";
|
|
27
26
|
TypesRfqQuoteOrderByProperty["RfqQuoteOrderByPropertySettlementTime"] = "RfqQuoteOrderByProperty_SETTLEMENT_TIME";
|
|
28
27
|
TypesRfqQuoteOrderByProperty["RfqQuoteOrderByPropertyDeadline"] = "RfqQuoteOrderByProperty_DEADLINE";
|
|
29
28
|
})(TypesRfqQuoteOrderByProperty || (exports.TypesRfqQuoteOrderByProperty = TypesRfqQuoteOrderByProperty = {}));
|
|
@@ -18,6 +18,5 @@ export declare enum TypesRfqRequestsOrderByProperty {
|
|
|
18
18
|
RfqRequestsOrderByPropertyUnspecified = "RfqRequestsOrderByProperty_UNSPECIFIED",
|
|
19
19
|
RfqRequestsOrderByPropertyId = "RfqRequestsOrderByProperty_ID",
|
|
20
20
|
RfqRequestsOrderByPropertyCreationTime = "RfqRequestsOrderByProperty_CREATION_TIME",
|
|
21
|
-
RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE"
|
|
22
|
-
RfqRequestsOrderByPropertyBuyInDeadline = "RfqRequestsOrderByProperty_BUY_IN_DEADLINE"
|
|
21
|
+
RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE"
|
|
23
22
|
}
|
|
@@ -25,5 +25,4 @@ var TypesRfqRequestsOrderByProperty;
|
|
|
25
25
|
TypesRfqRequestsOrderByProperty["RfqRequestsOrderByPropertyId"] = "RfqRequestsOrderByProperty_ID";
|
|
26
26
|
TypesRfqRequestsOrderByProperty["RfqRequestsOrderByPropertyCreationTime"] = "RfqRequestsOrderByProperty_CREATION_TIME";
|
|
27
27
|
TypesRfqRequestsOrderByProperty["RfqRequestsOrderByPropertyRequestDeadline"] = "RfqRequestsOrderByProperty_REQUEST_DEADLINE";
|
|
28
|
-
TypesRfqRequestsOrderByProperty["RfqRequestsOrderByPropertyBuyInDeadline"] = "RfqRequestsOrderByProperty_BUY_IN_DEADLINE";
|
|
29
28
|
})(TypesRfqRequestsOrderByProperty || (exports.TypesRfqRequestsOrderByProperty = TypesRfqRequestsOrderByProperty = {}));
|
package/package.json
CHANGED