@seal-protocol/backendjs 0.0.130 → 0.0.132
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 +221 -107
- package/lib/codegen/api/seal-client.js +217 -117
- package/lib/codegen/model/index.d.ts +8 -5
- package/lib/codegen/model/index.js +8 -5
- package/lib/codegen/model/{seal-domain-info.d.ts → seal-get-order-stats-for-owner-response.d.ts} +6 -18
- package/lib/codegen/model/seal-get-rfq-activities-response.d.ts +31 -0
- package/lib/codegen/model/seal-order.d.ts +30 -0
- package/lib/codegen/model/seal-rfq-activities-order-by-property.d.ts +22 -0
- package/lib/codegen/model/seal-rfq-activities-order-by-property.js +28 -0
- package/lib/codegen/model/seal-rfq-activities-order-by.d.ts +31 -0
- package/lib/codegen/model/seal-rfq-activity.d.ts +75 -0
- package/lib/codegen/model/{seal-approval-type.d.ts → seal-rfq-activity.js} +4 -11
- package/lib/codegen/model/{seal-orders-order-by-property.d.ts → types-orders-order-by-property.d.ts} +1 -1
- package/lib/codegen/model/types-orders-order-by-property.js +37 -0
- package/lib/codegen/model/{seal-orders-order-by.d.ts → types-orders-order-by.d.ts} +7 -7
- package/lib/codegen/model/types-orders-order-by.js +15 -0
- package/lib/codegen/model/types-rfq-activity-type.d.ts +25 -0
- package/lib/codegen/model/types-rfq-activity-type.js +31 -0
- package/lib/utils/calculate-liquidity.d.ts +21 -1
- package/lib/utils/calculate-liquidity.js +54 -11
- package/lib/utils/calculate-required-permit.d.ts +36 -0
- package/lib/utils/calculate-required-permit.js +111 -0
- package/lib/utils/index.d.ts +3 -1
- package/lib/utils/index.js +20 -1
- package/package.json +1 -1
- package/lib/codegen/model/seal-approval-type.js +0 -28
- package/lib/codegen/model/seal-calculate-required-permit-response.d.ts +0 -74
- package/lib/codegen/model/seal-orders-order-by-property.js +0 -37
- /package/lib/codegen/model/{seal-calculate-required-permit-response.js → seal-get-order-stats-for-owner-response.js} +0 -0
- /package/lib/codegen/model/{seal-domain-info.js → seal-get-rfq-activities-response.js} +0 -0
- /package/lib/codegen/model/{seal-orders-order-by.js → seal-rfq-activities-order-by.js} +0 -0
|
@@ -16,7 +16,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
16
16
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.GetTokensOrderByPropertyEnum = exports.GetTokenPermitApprovalsOrderByPropertyEnum = exports.GetRfqRequestsOrderByPropertyEnum = exports.GetRfqQuotesOrderByPropertyEnum = exports.GetRfqCommitmentsOrderByPropertyEnum = exports.GetPairsOrderByPropertyEnum = exports.GetOrdersOrderByPropertyEnum = exports.GetOrderReservationsOrderByPropertyEnum = exports.GetOrderActivitiesTypeEnum = exports.GetOrderActivitiesOrderByPropertyEnum = exports.GetChainsOrderByPropertyEnum = exports.SealClient = exports.SealClientFactory = exports.SealClientFp = exports.SealClientAxiosParamCreator = void 0;
|
|
19
|
+
exports.GetTokensOrderByPropertyEnum = exports.GetTokenPermitApprovalsOrderByPropertyEnum = exports.GetRfqRequestsOrderByPropertyEnum = exports.GetRfqQuotesOrderByPropertyEnum = exports.GetRfqCommitmentsOrderByPropertyEnum = exports.GetRfqActivitiesTypeEnum = exports.GetRfqActivitiesOrderByPropertyEnum = exports.GetPairsOrderByPropertyEnum = exports.GetOrdersOrderByPropertyEnum = exports.GetOrderReservationsOrderByPropertyEnum = exports.GetOrderActivitiesTypeEnum = exports.GetOrderActivitiesOrderByPropertyEnum = exports.GetChainsOrderByPropertyEnum = exports.SealClient = exports.SealClientFactory = exports.SealClientFp = exports.SealClientAxiosParamCreator = void 0;
|
|
20
20
|
const axios_1 = __importDefault(require("axios"));
|
|
21
21
|
// Some imports not used depending on template conditions
|
|
22
22
|
// @ts-ignore
|
|
@@ -58,64 +58,6 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
58
58
|
options: localVarRequestOptions,
|
|
59
59
|
};
|
|
60
60
|
},
|
|
61
|
-
/**
|
|
62
|
-
*
|
|
63
|
-
* @param {string} chainId
|
|
64
|
-
* @param {string} owner hex representation of owner address
|
|
65
|
-
* @param {string} spender hex representation of spender address
|
|
66
|
-
* @param {string} token hex representation of token address
|
|
67
|
-
* @param {string} orderAmount
|
|
68
|
-
* @param {number} [orderExpiration] unix seconds
|
|
69
|
-
* @param {*} [options] Override http request option.
|
|
70
|
-
* @throws {RequiredError}
|
|
71
|
-
*/
|
|
72
|
-
calculateRequiredPermit: async (chainId, owner, spender, token, orderAmount, orderExpiration, options = {}) => {
|
|
73
|
-
// verify required parameter 'chainId' is not null or undefined
|
|
74
|
-
(0, common_1.assertParamExists)('calculateRequiredPermit', 'chainId', chainId);
|
|
75
|
-
// verify required parameter 'owner' is not null or undefined
|
|
76
|
-
(0, common_1.assertParamExists)('calculateRequiredPermit', 'owner', owner);
|
|
77
|
-
// verify required parameter 'spender' is not null or undefined
|
|
78
|
-
(0, common_1.assertParamExists)('calculateRequiredPermit', 'spender', spender);
|
|
79
|
-
// verify required parameter 'token' is not null or undefined
|
|
80
|
-
(0, common_1.assertParamExists)('calculateRequiredPermit', 'token', token);
|
|
81
|
-
// verify required parameter 'orderAmount' is not null or undefined
|
|
82
|
-
(0, common_1.assertParamExists)('calculateRequiredPermit', 'orderAmount', orderAmount);
|
|
83
|
-
const localVarPath = `/seal/calculate_required_permit`;
|
|
84
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
85
|
-
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
86
|
-
let baseOptions;
|
|
87
|
-
if (configuration) {
|
|
88
|
-
baseOptions = configuration.baseOptions;
|
|
89
|
-
}
|
|
90
|
-
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
91
|
-
const localVarHeaderParameter = {};
|
|
92
|
-
const localVarQueryParameter = {};
|
|
93
|
-
if (chainId !== undefined) {
|
|
94
|
-
localVarQueryParameter['chainId'] = chainId;
|
|
95
|
-
}
|
|
96
|
-
if (owner !== undefined) {
|
|
97
|
-
localVarQueryParameter['owner'] = owner;
|
|
98
|
-
}
|
|
99
|
-
if (spender !== undefined) {
|
|
100
|
-
localVarQueryParameter['spender'] = spender;
|
|
101
|
-
}
|
|
102
|
-
if (token !== undefined) {
|
|
103
|
-
localVarQueryParameter['token'] = token;
|
|
104
|
-
}
|
|
105
|
-
if (orderAmount !== undefined) {
|
|
106
|
-
localVarQueryParameter['orderAmount'] = orderAmount;
|
|
107
|
-
}
|
|
108
|
-
if (orderExpiration !== undefined) {
|
|
109
|
-
localVarQueryParameter['orderExpiration'] = orderExpiration;
|
|
110
|
-
}
|
|
111
|
-
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
112
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
113
|
-
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
114
|
-
return {
|
|
115
|
-
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
116
|
-
options: localVarRequestOptions,
|
|
117
|
-
};
|
|
118
|
-
},
|
|
119
61
|
/**
|
|
120
62
|
*
|
|
121
63
|
* @param {SealCancelOrderRequest} body
|
|
@@ -418,9 +360,9 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
418
360
|
},
|
|
419
361
|
/**
|
|
420
362
|
*
|
|
421
|
-
* @param {string} chainId uint256
|
|
422
363
|
* @param {GetOrderActivitiesOrderByPropertyEnum} [orderByProperty]
|
|
423
364
|
* @param {boolean} [orderByDescending]
|
|
365
|
+
* @param {string} [chainId] uint256
|
|
424
366
|
* @param {string} [orderId]
|
|
425
367
|
* @param {string} [reservationIdHash]
|
|
426
368
|
* @param {string} [user] either the order owner or the actor
|
|
@@ -431,9 +373,7 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
431
373
|
* @param {*} [options] Override http request option.
|
|
432
374
|
* @throws {RequiredError}
|
|
433
375
|
*/
|
|
434
|
-
getOrderActivities: async (
|
|
435
|
-
// verify required parameter 'chainId' is not null or undefined
|
|
436
|
-
(0, common_1.assertParamExists)('getOrderActivities', 'chainId', chainId);
|
|
376
|
+
getOrderActivities: async (orderByProperty, orderByDescending, chainId, orderId, reservationIdHash, user, type, paginationKey, paginationLimit, paginationCountTotal, options = {}) => {
|
|
437
377
|
const localVarPath = `/seal/order_activities`;
|
|
438
378
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
439
379
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -592,6 +532,42 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
592
532
|
options: localVarRequestOptions,
|
|
593
533
|
};
|
|
594
534
|
},
|
|
535
|
+
/**
|
|
536
|
+
*
|
|
537
|
+
* @param {string} [chainId] uint256
|
|
538
|
+
* @param {string} [tokenIn] Token In The token to exchange from.
|
|
539
|
+
* @param {string} [owner]
|
|
540
|
+
* @param {*} [options] Override http request option.
|
|
541
|
+
* @throws {RequiredError}
|
|
542
|
+
*/
|
|
543
|
+
getOrderStatsForOwner: async (chainId, tokenIn, owner, options = {}) => {
|
|
544
|
+
const localVarPath = `/seal/order_stats_for_owner`;
|
|
545
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
546
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
547
|
+
let baseOptions;
|
|
548
|
+
if (configuration) {
|
|
549
|
+
baseOptions = configuration.baseOptions;
|
|
550
|
+
}
|
|
551
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
552
|
+
const localVarHeaderParameter = {};
|
|
553
|
+
const localVarQueryParameter = {};
|
|
554
|
+
if (chainId !== undefined) {
|
|
555
|
+
localVarQueryParameter['chainId'] = chainId;
|
|
556
|
+
}
|
|
557
|
+
if (tokenIn !== undefined) {
|
|
558
|
+
localVarQueryParameter['tokenIn'] = tokenIn;
|
|
559
|
+
}
|
|
560
|
+
if (owner !== undefined) {
|
|
561
|
+
localVarQueryParameter['owner'] = owner;
|
|
562
|
+
}
|
|
563
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
564
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
565
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
566
|
+
return {
|
|
567
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
568
|
+
options: localVarRequestOptions,
|
|
569
|
+
};
|
|
570
|
+
},
|
|
595
571
|
/**
|
|
596
572
|
*
|
|
597
573
|
* @param {GetOrdersOrderByPropertyEnum} [orderByProperty]
|
|
@@ -840,6 +816,70 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
840
816
|
options: localVarRequestOptions,
|
|
841
817
|
};
|
|
842
818
|
},
|
|
819
|
+
/**
|
|
820
|
+
*
|
|
821
|
+
* @param {GetRfqActivitiesOrderByPropertyEnum} [orderByProperty]
|
|
822
|
+
* @param {boolean} [orderByDescending]
|
|
823
|
+
* @param {string} [chainId] uint256
|
|
824
|
+
* @param {string} [requestId]
|
|
825
|
+
* @param {string} [commitmentId]
|
|
826
|
+
* @param {string} [user] either the order owner or the actor
|
|
827
|
+
* @param {GetRfqActivitiesTypeEnum} [type]
|
|
828
|
+
* @param {string} [paginationKey]
|
|
829
|
+
* @param {number} [paginationLimit]
|
|
830
|
+
* @param {boolean} [paginationCountTotal]
|
|
831
|
+
* @param {*} [options] Override http request option.
|
|
832
|
+
* @throws {RequiredError}
|
|
833
|
+
*/
|
|
834
|
+
getRfqActivities: async (orderByProperty, orderByDescending, chainId, requestId, commitmentId, user, type, paginationKey, paginationLimit, paginationCountTotal, options = {}) => {
|
|
835
|
+
const localVarPath = `/seal/rfq_activities`;
|
|
836
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
837
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
838
|
+
let baseOptions;
|
|
839
|
+
if (configuration) {
|
|
840
|
+
baseOptions = configuration.baseOptions;
|
|
841
|
+
}
|
|
842
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
843
|
+
const localVarHeaderParameter = {};
|
|
844
|
+
const localVarQueryParameter = {};
|
|
845
|
+
if (orderByProperty !== undefined) {
|
|
846
|
+
localVarQueryParameter['orderBy.property'] = orderByProperty;
|
|
847
|
+
}
|
|
848
|
+
if (orderByDescending !== undefined) {
|
|
849
|
+
localVarQueryParameter['orderBy.descending'] = orderByDescending;
|
|
850
|
+
}
|
|
851
|
+
if (chainId !== undefined) {
|
|
852
|
+
localVarQueryParameter['chainId'] = chainId;
|
|
853
|
+
}
|
|
854
|
+
if (requestId !== undefined) {
|
|
855
|
+
localVarQueryParameter['requestId'] = requestId;
|
|
856
|
+
}
|
|
857
|
+
if (commitmentId !== undefined) {
|
|
858
|
+
localVarQueryParameter['commitmentId'] = commitmentId;
|
|
859
|
+
}
|
|
860
|
+
if (user !== undefined) {
|
|
861
|
+
localVarQueryParameter['user'] = user;
|
|
862
|
+
}
|
|
863
|
+
if (type !== undefined) {
|
|
864
|
+
localVarQueryParameter['type'] = type;
|
|
865
|
+
}
|
|
866
|
+
if (paginationKey !== undefined) {
|
|
867
|
+
localVarQueryParameter['pagination.key'] = paginationKey;
|
|
868
|
+
}
|
|
869
|
+
if (paginationLimit !== undefined) {
|
|
870
|
+
localVarQueryParameter['pagination.limit'] = paginationLimit;
|
|
871
|
+
}
|
|
872
|
+
if (paginationCountTotal !== undefined) {
|
|
873
|
+
localVarQueryParameter['pagination.countTotal'] = paginationCountTotal;
|
|
874
|
+
}
|
|
875
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
876
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
877
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
878
|
+
return {
|
|
879
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
880
|
+
options: localVarRequestOptions,
|
|
881
|
+
};
|
|
882
|
+
},
|
|
843
883
|
/**
|
|
844
884
|
*
|
|
845
885
|
* @param {GetRfqCommitmentsOrderByPropertyEnum} [orderByProperty]
|
|
@@ -988,12 +1028,12 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
988
1028
|
},
|
|
989
1029
|
/**
|
|
990
1030
|
*
|
|
991
|
-
* @param {string} chainId
|
|
992
1031
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
993
1032
|
* @param {boolean} [orderByDescending]
|
|
994
1033
|
* @param {string} [paginationKey]
|
|
995
1034
|
* @param {number} [paginationLimit]
|
|
996
1035
|
* @param {boolean} [paginationCountTotal]
|
|
1036
|
+
* @param {string} [chainId]
|
|
997
1037
|
* @param {string} [quoteHash]
|
|
998
1038
|
* @param {string} [requestId]
|
|
999
1039
|
* @param {string} [offerer]
|
|
@@ -1005,9 +1045,7 @@ const SealClientAxiosParamCreator = function (configuration) {
|
|
|
1005
1045
|
* @param {*} [options] Override http request option.
|
|
1006
1046
|
* @throws {RequiredError}
|
|
1007
1047
|
*/
|
|
1008
|
-
getRfqQuotes: async (
|
|
1009
|
-
// verify required parameter 'chainId' is not null or undefined
|
|
1010
|
-
(0, common_1.assertParamExists)('getRfqQuotes', 'chainId', chainId);
|
|
1048
|
+
getRfqQuotes: async (orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, chainId, quoteHash, requestId, offerer, id, onChainValue, settlementTimeAfter, deadlineAfter, rejectedValue, options = {}) => {
|
|
1011
1049
|
const localVarPath = `/seal/rfq/quotes`;
|
|
1012
1050
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1013
1051
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -1547,23 +1585,6 @@ const SealClientFp = function (configuration) {
|
|
|
1547
1585
|
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.addRfqRequestViewer']?.[localVarOperationServerIndex]?.url;
|
|
1548
1586
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1549
1587
|
},
|
|
1550
|
-
/**
|
|
1551
|
-
*
|
|
1552
|
-
* @param {string} chainId
|
|
1553
|
-
* @param {string} owner hex representation of owner address
|
|
1554
|
-
* @param {string} spender hex representation of spender address
|
|
1555
|
-
* @param {string} token hex representation of token address
|
|
1556
|
-
* @param {string} orderAmount
|
|
1557
|
-
* @param {number} [orderExpiration] unix seconds
|
|
1558
|
-
* @param {*} [options] Override http request option.
|
|
1559
|
-
* @throws {RequiredError}
|
|
1560
|
-
*/
|
|
1561
|
-
async calculateRequiredPermit(chainId, owner, spender, token, orderAmount, orderExpiration, options) {
|
|
1562
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.calculateRequiredPermit(chainId, owner, spender, token, orderAmount, orderExpiration, options);
|
|
1563
|
-
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1564
|
-
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.calculateRequiredPermit']?.[localVarOperationServerIndex]?.url;
|
|
1565
|
-
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1566
|
-
},
|
|
1567
1588
|
/**
|
|
1568
1589
|
*
|
|
1569
1590
|
* @param {SealCancelOrderRequest} body
|
|
@@ -1689,9 +1710,9 @@ const SealClientFp = function (configuration) {
|
|
|
1689
1710
|
},
|
|
1690
1711
|
/**
|
|
1691
1712
|
*
|
|
1692
|
-
* @param {string} chainId uint256
|
|
1693
1713
|
* @param {GetOrderActivitiesOrderByPropertyEnum} [orderByProperty]
|
|
1694
1714
|
* @param {boolean} [orderByDescending]
|
|
1715
|
+
* @param {string} [chainId] uint256
|
|
1695
1716
|
* @param {string} [orderId]
|
|
1696
1717
|
* @param {string} [reservationIdHash]
|
|
1697
1718
|
* @param {string} [user] either the order owner or the actor
|
|
@@ -1702,8 +1723,8 @@ const SealClientFp = function (configuration) {
|
|
|
1702
1723
|
* @param {*} [options] Override http request option.
|
|
1703
1724
|
* @throws {RequiredError}
|
|
1704
1725
|
*/
|
|
1705
|
-
async getOrderActivities(
|
|
1706
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getOrderActivities(
|
|
1726
|
+
async getOrderActivities(orderByProperty, orderByDescending, chainId, orderId, reservationIdHash, user, type, paginationKey, paginationLimit, paginationCountTotal, options) {
|
|
1727
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getOrderActivities(orderByProperty, orderByDescending, chainId, orderId, reservationIdHash, user, type, paginationKey, paginationLimit, paginationCountTotal, options);
|
|
1707
1728
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1708
1729
|
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.getOrderActivities']?.[localVarOperationServerIndex]?.url;
|
|
1709
1730
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -1744,6 +1765,20 @@ const SealClientFp = function (configuration) {
|
|
|
1744
1765
|
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.getOrderReservations']?.[localVarOperationServerIndex]?.url;
|
|
1745
1766
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1746
1767
|
},
|
|
1768
|
+
/**
|
|
1769
|
+
*
|
|
1770
|
+
* @param {string} [chainId] uint256
|
|
1771
|
+
* @param {string} [tokenIn] Token In The token to exchange from.
|
|
1772
|
+
* @param {string} [owner]
|
|
1773
|
+
* @param {*} [options] Override http request option.
|
|
1774
|
+
* @throws {RequiredError}
|
|
1775
|
+
*/
|
|
1776
|
+
async getOrderStatsForOwner(chainId, tokenIn, owner, options) {
|
|
1777
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getOrderStatsForOwner(chainId, tokenIn, owner, options);
|
|
1778
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1779
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.getOrderStatsForOwner']?.[localVarOperationServerIndex]?.url;
|
|
1780
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1781
|
+
},
|
|
1747
1782
|
/**
|
|
1748
1783
|
*
|
|
1749
1784
|
* @param {GetOrdersOrderByPropertyEnum} [orderByProperty]
|
|
@@ -1826,6 +1861,27 @@ const SealClientFp = function (configuration) {
|
|
|
1826
1861
|
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.getPermit2Contracts']?.[localVarOperationServerIndex]?.url;
|
|
1827
1862
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1828
1863
|
},
|
|
1864
|
+
/**
|
|
1865
|
+
*
|
|
1866
|
+
* @param {GetRfqActivitiesOrderByPropertyEnum} [orderByProperty]
|
|
1867
|
+
* @param {boolean} [orderByDescending]
|
|
1868
|
+
* @param {string} [chainId] uint256
|
|
1869
|
+
* @param {string} [requestId]
|
|
1870
|
+
* @param {string} [commitmentId]
|
|
1871
|
+
* @param {string} [user] either the order owner or the actor
|
|
1872
|
+
* @param {GetRfqActivitiesTypeEnum} [type]
|
|
1873
|
+
* @param {string} [paginationKey]
|
|
1874
|
+
* @param {number} [paginationLimit]
|
|
1875
|
+
* @param {boolean} [paginationCountTotal]
|
|
1876
|
+
* @param {*} [options] Override http request option.
|
|
1877
|
+
* @throws {RequiredError}
|
|
1878
|
+
*/
|
|
1879
|
+
async getRfqActivities(orderByProperty, orderByDescending, chainId, requestId, commitmentId, user, type, paginationKey, paginationLimit, paginationCountTotal, options) {
|
|
1880
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRfqActivities(orderByProperty, orderByDescending, chainId, requestId, commitmentId, user, type, paginationKey, paginationLimit, paginationCountTotal, options);
|
|
1881
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1882
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.getRfqActivities']?.[localVarOperationServerIndex]?.url;
|
|
1883
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
1884
|
+
},
|
|
1829
1885
|
/**
|
|
1830
1886
|
*
|
|
1831
1887
|
* @param {GetRfqCommitmentsOrderByPropertyEnum} [orderByProperty]
|
|
@@ -1878,12 +1934,12 @@ const SealClientFp = function (configuration) {
|
|
|
1878
1934
|
},
|
|
1879
1935
|
/**
|
|
1880
1936
|
*
|
|
1881
|
-
* @param {string} chainId
|
|
1882
1937
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
1883
1938
|
* @param {boolean} [orderByDescending]
|
|
1884
1939
|
* @param {string} [paginationKey]
|
|
1885
1940
|
* @param {number} [paginationLimit]
|
|
1886
1941
|
* @param {boolean} [paginationCountTotal]
|
|
1942
|
+
* @param {string} [chainId]
|
|
1887
1943
|
* @param {string} [quoteHash]
|
|
1888
1944
|
* @param {string} [requestId]
|
|
1889
1945
|
* @param {string} [offerer]
|
|
@@ -1895,8 +1951,8 @@ const SealClientFp = function (configuration) {
|
|
|
1895
1951
|
* @param {*} [options] Override http request option.
|
|
1896
1952
|
* @throws {RequiredError}
|
|
1897
1953
|
*/
|
|
1898
|
-
async getRfqQuotes(
|
|
1899
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getRfqQuotes(
|
|
1954
|
+
async getRfqQuotes(orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, chainId, quoteHash, requestId, offerer, id, onChainValue, settlementTimeAfter, deadlineAfter, rejectedValue, options) {
|
|
1955
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRfqQuotes(orderByProperty, orderByDescending, paginationKey, paginationLimit, paginationCountTotal, chainId, quoteHash, requestId, offerer, id, onChainValue, settlementTimeAfter, deadlineAfter, rejectedValue, options);
|
|
1900
1956
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1901
1957
|
const localVarOperationServerBasePath = base_1.operationServerMap['SealClient.getRfqQuotes']?.[localVarOperationServerIndex]?.url;
|
|
1902
1958
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -2087,15 +2143,6 @@ const SealClientFactory = function (configuration, basePath, axios) {
|
|
|
2087
2143
|
addRfqRequestViewer(requestParameters, options) {
|
|
2088
2144
|
return localVarFp.addRfqRequestViewer(requestParameters.body, options).then((request) => request(axios, basePath));
|
|
2089
2145
|
},
|
|
2090
|
-
/**
|
|
2091
|
-
*
|
|
2092
|
-
* @param {SealClientCalculateRequiredPermitRequest} requestParameters Request parameters.
|
|
2093
|
-
* @param {*} [options] Override http request option.
|
|
2094
|
-
* @throws {RequiredError}
|
|
2095
|
-
*/
|
|
2096
|
-
calculateRequiredPermit(requestParameters, options) {
|
|
2097
|
-
return localVarFp.calculateRequiredPermit(requestParameters.chainId, requestParameters.owner, requestParameters.spender, requestParameters.token, requestParameters.orderAmount, requestParameters.orderExpiration, options).then((request) => request(axios, basePath));
|
|
2098
|
-
},
|
|
2099
2146
|
/**
|
|
2100
2147
|
*
|
|
2101
2148
|
* @param {SealClientCancelOrderRequest} requestParameters Request parameters.
|
|
@@ -2191,8 +2238,8 @@ const SealClientFactory = function (configuration, basePath, axios) {
|
|
|
2191
2238
|
* @param {*} [options] Override http request option.
|
|
2192
2239
|
* @throws {RequiredError}
|
|
2193
2240
|
*/
|
|
2194
|
-
getOrderActivities(requestParameters, options) {
|
|
2195
|
-
return localVarFp.getOrderActivities(requestParameters.
|
|
2241
|
+
getOrderActivities(requestParameters = {}, options) {
|
|
2242
|
+
return localVarFp.getOrderActivities(requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.chainId, requestParameters.orderId, requestParameters.reservationIdHash, requestParameters.user, requestParameters.type, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(axios, basePath));
|
|
2196
2243
|
},
|
|
2197
2244
|
/**
|
|
2198
2245
|
*
|
|
@@ -2212,6 +2259,15 @@ const SealClientFactory = function (configuration, basePath, axios) {
|
|
|
2212
2259
|
getOrderReservations(requestParameters = {}, options) {
|
|
2213
2260
|
return localVarFp.getOrderReservations(requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, requestParameters.chainId, requestParameters.reserver, requestParameters.liveValue, requestParameters.expiredValue, requestParameters.orderOnChainId, requestParameters.orderOnChainIdHash, options).then((request) => request(axios, basePath));
|
|
2214
2261
|
},
|
|
2262
|
+
/**
|
|
2263
|
+
*
|
|
2264
|
+
* @param {SealClientGetOrderStatsForOwnerRequest} requestParameters Request parameters.
|
|
2265
|
+
* @param {*} [options] Override http request option.
|
|
2266
|
+
* @throws {RequiredError}
|
|
2267
|
+
*/
|
|
2268
|
+
getOrderStatsForOwner(requestParameters = {}, options) {
|
|
2269
|
+
return localVarFp.getOrderStatsForOwner(requestParameters.chainId, requestParameters.tokenIn, requestParameters.owner, options).then((request) => request(axios, basePath));
|
|
2270
|
+
},
|
|
2215
2271
|
/**
|
|
2216
2272
|
*
|
|
2217
2273
|
* @param {SealClientGetOrdersRequest} requestParameters Request parameters.
|
|
@@ -2247,6 +2303,15 @@ const SealClientFactory = function (configuration, basePath, axios) {
|
|
|
2247
2303
|
getPermit2Contracts(options) {
|
|
2248
2304
|
return localVarFp.getPermit2Contracts(options).then((request) => request(axios, basePath));
|
|
2249
2305
|
},
|
|
2306
|
+
/**
|
|
2307
|
+
*
|
|
2308
|
+
* @param {SealClientGetRfqActivitiesRequest} requestParameters Request parameters.
|
|
2309
|
+
* @param {*} [options] Override http request option.
|
|
2310
|
+
* @throws {RequiredError}
|
|
2311
|
+
*/
|
|
2312
|
+
getRfqActivities(requestParameters = {}, options) {
|
|
2313
|
+
return localVarFp.getRfqActivities(requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.chainId, requestParameters.requestId, requestParameters.commitmentId, requestParameters.user, requestParameters.type, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(axios, basePath));
|
|
2314
|
+
},
|
|
2250
2315
|
/**
|
|
2251
2316
|
*
|
|
2252
2317
|
* @param {SealClientGetRfqCommitmentsRequest} requestParameters Request parameters.
|
|
@@ -2280,8 +2345,8 @@ const SealClientFactory = function (configuration, basePath, axios) {
|
|
|
2280
2345
|
* @param {*} [options] Override http request option.
|
|
2281
2346
|
* @throws {RequiredError}
|
|
2282
2347
|
*/
|
|
2283
|
-
getRfqQuotes(requestParameters, options) {
|
|
2284
|
-
return localVarFp.getRfqQuotes(requestParameters.
|
|
2348
|
+
getRfqQuotes(requestParameters = {}, options) {
|
|
2349
|
+
return localVarFp.getRfqQuotes(requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, requestParameters.chainId, requestParameters.quoteHash, requestParameters.requestId, requestParameters.offerer, requestParameters.id, requestParameters.onChainValue, requestParameters.settlementTimeAfter, requestParameters.deadlineAfter, requestParameters.rejectedValue, options).then((request) => request(axios, basePath));
|
|
2285
2350
|
},
|
|
2286
2351
|
/**
|
|
2287
2352
|
*
|
|
@@ -2400,16 +2465,6 @@ class SealClient extends base_1.BaseAPI {
|
|
|
2400
2465
|
addRfqRequestViewer(requestParameters, options) {
|
|
2401
2466
|
return (0, exports.SealClientFp)(this.configuration).addRfqRequestViewer(requestParameters.body, options).then((request) => request(this.axios, this.basePath));
|
|
2402
2467
|
}
|
|
2403
|
-
/**
|
|
2404
|
-
*
|
|
2405
|
-
* @param {SealClientCalculateRequiredPermitRequest} requestParameters Request parameters.
|
|
2406
|
-
* @param {*} [options] Override http request option.
|
|
2407
|
-
* @throws {RequiredError}
|
|
2408
|
-
* @memberof SealClient
|
|
2409
|
-
*/
|
|
2410
|
-
calculateRequiredPermit(requestParameters, options) {
|
|
2411
|
-
return (0, exports.SealClientFp)(this.configuration).calculateRequiredPermit(requestParameters.chainId, requestParameters.owner, requestParameters.spender, requestParameters.token, requestParameters.orderAmount, requestParameters.orderExpiration, options).then((request) => request(this.axios, this.basePath));
|
|
2412
|
-
}
|
|
2413
2468
|
/**
|
|
2414
2469
|
*
|
|
2415
2470
|
* @param {SealClientCancelOrderRequest} requestParameters Request parameters.
|
|
@@ -2516,8 +2571,8 @@ class SealClient extends base_1.BaseAPI {
|
|
|
2516
2571
|
* @throws {RequiredError}
|
|
2517
2572
|
* @memberof SealClient
|
|
2518
2573
|
*/
|
|
2519
|
-
getOrderActivities(requestParameters, options) {
|
|
2520
|
-
return (0, exports.SealClientFp)(this.configuration).getOrderActivities(requestParameters.
|
|
2574
|
+
getOrderActivities(requestParameters = {}, options) {
|
|
2575
|
+
return (0, exports.SealClientFp)(this.configuration).getOrderActivities(requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.chainId, requestParameters.orderId, requestParameters.reservationIdHash, requestParameters.user, requestParameters.type, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(this.axios, this.basePath));
|
|
2521
2576
|
}
|
|
2522
2577
|
/**
|
|
2523
2578
|
*
|
|
@@ -2539,6 +2594,16 @@ class SealClient extends base_1.BaseAPI {
|
|
|
2539
2594
|
getOrderReservations(requestParameters = {}, options) {
|
|
2540
2595
|
return (0, exports.SealClientFp)(this.configuration).getOrderReservations(requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, requestParameters.chainId, requestParameters.reserver, requestParameters.liveValue, requestParameters.expiredValue, requestParameters.orderOnChainId, requestParameters.orderOnChainIdHash, options).then((request) => request(this.axios, this.basePath));
|
|
2541
2596
|
}
|
|
2597
|
+
/**
|
|
2598
|
+
*
|
|
2599
|
+
* @param {SealClientGetOrderStatsForOwnerRequest} requestParameters Request parameters.
|
|
2600
|
+
* @param {*} [options] Override http request option.
|
|
2601
|
+
* @throws {RequiredError}
|
|
2602
|
+
* @memberof SealClient
|
|
2603
|
+
*/
|
|
2604
|
+
getOrderStatsForOwner(requestParameters = {}, options) {
|
|
2605
|
+
return (0, exports.SealClientFp)(this.configuration).getOrderStatsForOwner(requestParameters.chainId, requestParameters.tokenIn, requestParameters.owner, options).then((request) => request(this.axios, this.basePath));
|
|
2606
|
+
}
|
|
2542
2607
|
/**
|
|
2543
2608
|
*
|
|
2544
2609
|
* @param {SealClientGetOrdersRequest} requestParameters Request parameters.
|
|
@@ -2578,6 +2643,16 @@ class SealClient extends base_1.BaseAPI {
|
|
|
2578
2643
|
getPermit2Contracts(options) {
|
|
2579
2644
|
return (0, exports.SealClientFp)(this.configuration).getPermit2Contracts(options).then((request) => request(this.axios, this.basePath));
|
|
2580
2645
|
}
|
|
2646
|
+
/**
|
|
2647
|
+
*
|
|
2648
|
+
* @param {SealClientGetRfqActivitiesRequest} requestParameters Request parameters.
|
|
2649
|
+
* @param {*} [options] Override http request option.
|
|
2650
|
+
* @throws {RequiredError}
|
|
2651
|
+
* @memberof SealClient
|
|
2652
|
+
*/
|
|
2653
|
+
getRfqActivities(requestParameters = {}, options) {
|
|
2654
|
+
return (0, exports.SealClientFp)(this.configuration).getRfqActivities(requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.chainId, requestParameters.requestId, requestParameters.commitmentId, requestParameters.user, requestParameters.type, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, options).then((request) => request(this.axios, this.basePath));
|
|
2655
|
+
}
|
|
2581
2656
|
/**
|
|
2582
2657
|
*
|
|
2583
2658
|
* @param {SealClientGetRfqCommitmentsRequest} requestParameters Request parameters.
|
|
@@ -2615,8 +2690,8 @@ class SealClient extends base_1.BaseAPI {
|
|
|
2615
2690
|
* @throws {RequiredError}
|
|
2616
2691
|
* @memberof SealClient
|
|
2617
2692
|
*/
|
|
2618
|
-
getRfqQuotes(requestParameters, options) {
|
|
2619
|
-
return (0, exports.SealClientFp)(this.configuration).getRfqQuotes(requestParameters.
|
|
2693
|
+
getRfqQuotes(requestParameters = {}, options) {
|
|
2694
|
+
return (0, exports.SealClientFp)(this.configuration).getRfqQuotes(requestParameters.orderByProperty, requestParameters.orderByDescending, requestParameters.paginationKey, requestParameters.paginationLimit, requestParameters.paginationCountTotal, requestParameters.chainId, requestParameters.quoteHash, requestParameters.requestId, requestParameters.offerer, requestParameters.id, requestParameters.onChainValue, requestParameters.settlementTimeAfter, requestParameters.deadlineAfter, requestParameters.rejectedValue, options).then((request) => request(this.axios, this.basePath));
|
|
2620
2695
|
}
|
|
2621
2696
|
/**
|
|
2622
2697
|
*
|
|
@@ -2808,6 +2883,31 @@ var GetPairsOrderByPropertyEnum;
|
|
|
2808
2883
|
(function (GetPairsOrderByPropertyEnum) {
|
|
2809
2884
|
GetPairsOrderByPropertyEnum["PairsOrderByPropertyUnspecified"] = "PairsOrderByProperty_UNSPECIFIED";
|
|
2810
2885
|
})(GetPairsOrderByPropertyEnum || (exports.GetPairsOrderByPropertyEnum = GetPairsOrderByPropertyEnum = {}));
|
|
2886
|
+
/**
|
|
2887
|
+
* @export
|
|
2888
|
+
* @enum {string}
|
|
2889
|
+
*/
|
|
2890
|
+
var GetRfqActivitiesOrderByPropertyEnum;
|
|
2891
|
+
(function (GetRfqActivitiesOrderByPropertyEnum) {
|
|
2892
|
+
GetRfqActivitiesOrderByPropertyEnum["RfqActivitiesOrderByPropertyUnspecified"] = "RfqActivitiesOrderByProperty_UNSPECIFIED";
|
|
2893
|
+
GetRfqActivitiesOrderByPropertyEnum["RfqActivitiesOrderByPropertyActivityId"] = "RfqActivitiesOrderByProperty_ACTIVITY_ID";
|
|
2894
|
+
GetRfqActivitiesOrderByPropertyEnum["RfqActivitiesOrderByPropertyChainId"] = "RfqActivitiesOrderByProperty_CHAIN_ID";
|
|
2895
|
+
GetRfqActivitiesOrderByPropertyEnum["RfqActivitiesOrderByPropertyActivityTime"] = "RfqActivitiesOrderByProperty_ACTIVITY_TIME";
|
|
2896
|
+
})(GetRfqActivitiesOrderByPropertyEnum || (exports.GetRfqActivitiesOrderByPropertyEnum = GetRfqActivitiesOrderByPropertyEnum = {}));
|
|
2897
|
+
/**
|
|
2898
|
+
* @export
|
|
2899
|
+
* @enum {string}
|
|
2900
|
+
*/
|
|
2901
|
+
var GetRfqActivitiesTypeEnum;
|
|
2902
|
+
(function (GetRfqActivitiesTypeEnum) {
|
|
2903
|
+
GetRfqActivitiesTypeEnum["RfqActivityTypeUnspecified"] = "RFQ_ACTIVITY_TYPE_UNSPECIFIED";
|
|
2904
|
+
GetRfqActivitiesTypeEnum["RfqActivityTypeRequestSubmitted"] = "RFQ_ACTIVITY_TYPE_REQUEST_SUBMITTED";
|
|
2905
|
+
GetRfqActivitiesTypeEnum["RfqActivityTypeCommitmentSettled"] = "RFQ_ACTIVITY_TYPE_COMMITMENT_SETTLED";
|
|
2906
|
+
GetRfqActivitiesTypeEnum["RfqActivityTypeQuoteAccepted"] = "RFQ_ACTIVITY_TYPE_QUOTE_ACCEPTED";
|
|
2907
|
+
GetRfqActivitiesTypeEnum["RfqActivityTypeCommitmentDefaulted"] = "RFQ_ACTIVITY_TYPE_COMMITMENT_DEFAULTED";
|
|
2908
|
+
GetRfqActivitiesTypeEnum["RfqActivityTypeQuoteSubmitted"] = "RFQ_ACTIVITY_TYPE_QUOTE_SUBMITTED";
|
|
2909
|
+
GetRfqActivitiesTypeEnum["RfqActivityDefaultedCommitmentClosed"] = "RFQ_ACTIVITY_DEFAULTED_COMMITMENT_CLOSED";
|
|
2910
|
+
})(GetRfqActivitiesTypeEnum || (exports.GetRfqActivitiesTypeEnum = GetRfqActivitiesTypeEnum = {}));
|
|
2811
2911
|
/**
|
|
2812
2912
|
* @export
|
|
2813
2913
|
* @enum {string}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
export * from './protobuf-any';
|
|
2
2
|
export * from './rpc-status';
|
|
3
3
|
export * from './seal-add-rfq-request-viewer-request';
|
|
4
|
-
export * from './seal-approval-type';
|
|
5
|
-
export * from './seal-calculate-required-permit-response';
|
|
6
4
|
export * from './seal-cancel-order-request';
|
|
7
5
|
export * from './seal-chain';
|
|
8
6
|
export * from './seal-chain-health';
|
|
@@ -21,7 +19,6 @@ export * from './seal-create-rfq-request-response';
|
|
|
21
19
|
export * from './seal-create-token-permit-approval-request';
|
|
22
20
|
export * from './seal-database-config';
|
|
23
21
|
export * from './seal-delete-token-permit-approval-request';
|
|
24
|
-
export * from './seal-domain-info';
|
|
25
22
|
export * from './seal-domain-separator-config';
|
|
26
23
|
export * from './seal-extend-rfq-request-deadline-request';
|
|
27
24
|
export * from './seal-get-chains-response';
|
|
@@ -30,10 +27,12 @@ export * from './seal-get-health-check-response';
|
|
|
30
27
|
export * from './seal-get-order-activities-response';
|
|
31
28
|
export * from './seal-get-order-nonce-response';
|
|
32
29
|
export * from './seal-get-order-reservations-response';
|
|
30
|
+
export * from './seal-get-order-stats-for-owner-response';
|
|
33
31
|
export * from './seal-get-orders-response';
|
|
34
32
|
export * from './seal-get-pair-price-response';
|
|
35
33
|
export * from './seal-get-pairs-response';
|
|
36
34
|
export * from './seal-get-permit2-contracts-response';
|
|
35
|
+
export * from './seal-get-rfq-activities-response';
|
|
37
36
|
export * from './seal-get-rfq-commitment-response';
|
|
38
37
|
export * from './seal-get-rfq-contracts-response';
|
|
39
38
|
export * from './seal-get-rfq-nonce-response';
|
|
@@ -55,8 +54,6 @@ export * from './seal-order-reservation';
|
|
|
55
54
|
export * from './seal-order-reservations-order-by';
|
|
56
55
|
export * from './seal-order-reservations-order-by-property';
|
|
57
56
|
export * from './seal-order-settlement-request';
|
|
58
|
-
export * from './seal-orders-order-by';
|
|
59
|
-
export * from './seal-orders-order-by-property';
|
|
60
57
|
export * from './seal-pair';
|
|
61
58
|
export * from './seal-pairs-order-by';
|
|
62
59
|
export * from './seal-pairs-order-by-property';
|
|
@@ -65,6 +62,9 @@ export * from './seal-reject-rfq-quote-request';
|
|
|
65
62
|
export * from './seal-remove-rfq-request-viewer-request';
|
|
66
63
|
export * from './seal-reservation-request';
|
|
67
64
|
export * from './seal-reservation-settlement-request';
|
|
65
|
+
export * from './seal-rfq-activities-order-by';
|
|
66
|
+
export * from './seal-rfq-activities-order-by-property';
|
|
67
|
+
export * from './seal-rfq-activity';
|
|
68
68
|
export * from './seal-rfq-commitment';
|
|
69
69
|
export * from './seal-rfq-contract';
|
|
70
70
|
export * from './seal-rfq-quote';
|
|
@@ -78,7 +78,10 @@ export * from './seal-tokens-order-by-property';
|
|
|
78
78
|
export * from './seal-transfer-permission';
|
|
79
79
|
export * from './types-bool';
|
|
80
80
|
export * from './types-order-activity-type';
|
|
81
|
+
export * from './types-orders-order-by';
|
|
82
|
+
export * from './types-orders-order-by-property';
|
|
81
83
|
export * from './types-pagination';
|
|
84
|
+
export * from './types-rfq-activity-type';
|
|
82
85
|
export * from './types-rfq-commitment-order-by';
|
|
83
86
|
export * from './types-rfq-commitment-order-by-property';
|
|
84
87
|
export * from './types-rfq-quote-order-by';
|
|
@@ -17,8 +17,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./protobuf-any"), exports);
|
|
18
18
|
__exportStar(require("./rpc-status"), exports);
|
|
19
19
|
__exportStar(require("./seal-add-rfq-request-viewer-request"), exports);
|
|
20
|
-
__exportStar(require("./seal-approval-type"), exports);
|
|
21
|
-
__exportStar(require("./seal-calculate-required-permit-response"), exports);
|
|
22
20
|
__exportStar(require("./seal-cancel-order-request"), exports);
|
|
23
21
|
__exportStar(require("./seal-chain"), exports);
|
|
24
22
|
__exportStar(require("./seal-chain-health"), exports);
|
|
@@ -37,7 +35,6 @@ __exportStar(require("./seal-create-rfq-request-response"), exports);
|
|
|
37
35
|
__exportStar(require("./seal-create-token-permit-approval-request"), exports);
|
|
38
36
|
__exportStar(require("./seal-database-config"), exports);
|
|
39
37
|
__exportStar(require("./seal-delete-token-permit-approval-request"), exports);
|
|
40
|
-
__exportStar(require("./seal-domain-info"), exports);
|
|
41
38
|
__exportStar(require("./seal-domain-separator-config"), exports);
|
|
42
39
|
__exportStar(require("./seal-extend-rfq-request-deadline-request"), exports);
|
|
43
40
|
__exportStar(require("./seal-get-chains-response"), exports);
|
|
@@ -46,10 +43,12 @@ __exportStar(require("./seal-get-health-check-response"), exports);
|
|
|
46
43
|
__exportStar(require("./seal-get-order-activities-response"), exports);
|
|
47
44
|
__exportStar(require("./seal-get-order-nonce-response"), exports);
|
|
48
45
|
__exportStar(require("./seal-get-order-reservations-response"), exports);
|
|
46
|
+
__exportStar(require("./seal-get-order-stats-for-owner-response"), exports);
|
|
49
47
|
__exportStar(require("./seal-get-orders-response"), exports);
|
|
50
48
|
__exportStar(require("./seal-get-pair-price-response"), exports);
|
|
51
49
|
__exportStar(require("./seal-get-pairs-response"), exports);
|
|
52
50
|
__exportStar(require("./seal-get-permit2-contracts-response"), exports);
|
|
51
|
+
__exportStar(require("./seal-get-rfq-activities-response"), exports);
|
|
53
52
|
__exportStar(require("./seal-get-rfq-commitment-response"), exports);
|
|
54
53
|
__exportStar(require("./seal-get-rfq-contracts-response"), exports);
|
|
55
54
|
__exportStar(require("./seal-get-rfq-nonce-response"), exports);
|
|
@@ -71,8 +70,6 @@ __exportStar(require("./seal-order-reservation"), exports);
|
|
|
71
70
|
__exportStar(require("./seal-order-reservations-order-by"), exports);
|
|
72
71
|
__exportStar(require("./seal-order-reservations-order-by-property"), exports);
|
|
73
72
|
__exportStar(require("./seal-order-settlement-request"), exports);
|
|
74
|
-
__exportStar(require("./seal-orders-order-by"), exports);
|
|
75
|
-
__exportStar(require("./seal-orders-order-by-property"), exports);
|
|
76
73
|
__exportStar(require("./seal-pair"), exports);
|
|
77
74
|
__exportStar(require("./seal-pairs-order-by"), exports);
|
|
78
75
|
__exportStar(require("./seal-pairs-order-by-property"), exports);
|
|
@@ -81,6 +78,9 @@ __exportStar(require("./seal-reject-rfq-quote-request"), exports);
|
|
|
81
78
|
__exportStar(require("./seal-remove-rfq-request-viewer-request"), exports);
|
|
82
79
|
__exportStar(require("./seal-reservation-request"), exports);
|
|
83
80
|
__exportStar(require("./seal-reservation-settlement-request"), exports);
|
|
81
|
+
__exportStar(require("./seal-rfq-activities-order-by"), exports);
|
|
82
|
+
__exportStar(require("./seal-rfq-activities-order-by-property"), exports);
|
|
83
|
+
__exportStar(require("./seal-rfq-activity"), exports);
|
|
84
84
|
__exportStar(require("./seal-rfq-commitment"), exports);
|
|
85
85
|
__exportStar(require("./seal-rfq-contract"), exports);
|
|
86
86
|
__exportStar(require("./seal-rfq-quote"), exports);
|
|
@@ -94,7 +94,10 @@ __exportStar(require("./seal-tokens-order-by-property"), exports);
|
|
|
94
94
|
__exportStar(require("./seal-transfer-permission"), exports);
|
|
95
95
|
__exportStar(require("./types-bool"), exports);
|
|
96
96
|
__exportStar(require("./types-order-activity-type"), exports);
|
|
97
|
+
__exportStar(require("./types-orders-order-by"), exports);
|
|
98
|
+
__exportStar(require("./types-orders-order-by-property"), exports);
|
|
97
99
|
__exportStar(require("./types-pagination"), exports);
|
|
100
|
+
__exportStar(require("./types-rfq-activity-type"), exports);
|
|
98
101
|
__exportStar(require("./types-rfq-commitment-order-by"), exports);
|
|
99
102
|
__exportStar(require("./types-rfq-commitment-order-by-property"), exports);
|
|
100
103
|
__exportStar(require("./types-rfq-quote-order-by"), exports);
|