@seal-protocol/backendjs 0.0.103 → 0.0.105
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 +180 -47
- package/lib/codegen/api/seal-client.js +183 -63
- package/lib/codegen/model/index.d.ts +6 -2
- package/lib/codegen/model/index.js +6 -2
- package/lib/codegen/model/{seal-submit-quote-request.d.ts → seal-create-rfq-quote-request.d.ts} +13 -13
- package/lib/codegen/model/{seal-submit-rfq-quote-response.d.ts → seal-create-rfq-quote-response.d.ts} +3 -3
- package/lib/codegen/model/{seal-submit-rfq-response.d.ts → seal-get-rfq-commitment-response.d.ts} +11 -4
- package/lib/codegen/model/seal-rfq-commitment.d.ts +163 -0
- package/lib/codegen/model/seal-rfq-contract-params.d.ts +0 -6
- package/lib/codegen/model/seal-rfq-quote.d.ts +49 -8
- package/lib/codegen/model/types-rfq-commitment-order-by-property.d.ts +22 -0
- package/lib/codegen/model/types-rfq-commitment-order-by-property.js +28 -0
- package/lib/codegen/model/types-rfq-commitment-order-by.d.ts +31 -0
- package/package.json +1 -1
- package/lib/codegen/model/seal-submit-quote-response.d.ts +0 -24
- package/lib/codegen/model/seal-submit-rfq-quote-request.d.ts +0 -84
- package/lib/codegen/model/seal-submit-rfq-request.d.ts +0 -54
- package/lib/codegen/model/seal-submit-rfq-response.js +0 -15
- /package/lib/codegen/model/{seal-submit-quote-request.js → seal-create-rfq-quote-request.js} +0 -0
- /package/lib/codegen/model/{seal-submit-quote-response.js → seal-create-rfq-quote-response.js} +0 -0
- /package/lib/codegen/model/{seal-submit-rfq-quote-request.js → seal-get-rfq-commitment-response.js} +0 -0
- /package/lib/codegen/model/{seal-submit-rfq-quote-response.js → seal-rfq-commitment.js} +0 -0
- /package/lib/codegen/model/{seal-submit-rfq-request.js → types-rfq-commitment-order-by.js} +0 -0
|
@@ -18,6 +18,8 @@ import type { SealCreateExecutionMessageRequest } from '../model';
|
|
|
18
18
|
import type { SealCreateExecutionMessageResponse } from '../model';
|
|
19
19
|
import type { SealCreateOrderRequest } from '../model';
|
|
20
20
|
import type { SealCreateOrderResponse } from '../model';
|
|
21
|
+
import type { SealCreateRfqQuoteRequest } from '../model';
|
|
22
|
+
import type { SealCreateRfqQuoteResponse } from '../model';
|
|
21
23
|
import type { SealCreateRfqRequestRequest } from '../model';
|
|
22
24
|
import type { SealCreateRfqRequestResponse } from '../model';
|
|
23
25
|
import type { SealCreateTokenPermitApprovalRequest } from '../model';
|
|
@@ -31,6 +33,7 @@ import type { SealGetOrderReservationsResponse } from '../model';
|
|
|
31
33
|
import type { SealGetOrdersResponse } from '../model';
|
|
32
34
|
import type { SealGetPairPriceResponse } from '../model';
|
|
33
35
|
import type { SealGetPairsResponse } from '../model';
|
|
36
|
+
import type { SealGetRfqCommitmentResponse } from '../model';
|
|
34
37
|
import type { SealGetRfqNonceResponse } from '../model';
|
|
35
38
|
import type { SealGetRfqQuotesResponse } from '../model';
|
|
36
39
|
import type { SealGetRfqRequestsResponse } from '../model';
|
|
@@ -39,8 +42,6 @@ import type { SealGetSyncStateResponse } from '../model';
|
|
|
39
42
|
import type { SealGetTokenPermitApprovalsResponse } from '../model';
|
|
40
43
|
import type { SealGetTokensResponse } from '../model';
|
|
41
44
|
import type { SealIssueGreenlightResponse } from '../model';
|
|
42
|
-
import type { SealSubmitRfqQuoteRequest } from '../model';
|
|
43
|
-
import type { SealSubmitRfqQuoteResponse } from '../model';
|
|
44
45
|
/**
|
|
45
46
|
* SealClient - axios parameter creator
|
|
46
47
|
* @export
|
|
@@ -84,6 +85,13 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
84
85
|
* @throws {RequiredError}
|
|
85
86
|
*/
|
|
86
87
|
createOrder: (body: SealCreateOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @param {SealCreateRfqQuoteRequest} body
|
|
91
|
+
* @param {*} [options] Override http request option.
|
|
92
|
+
* @throws {RequiredError}
|
|
93
|
+
*/
|
|
94
|
+
createRfqQuote: (body: SealCreateRfqQuoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
87
95
|
/**
|
|
88
96
|
*
|
|
89
97
|
* @param {SealCreateRfqRequestRequest} body
|
|
@@ -211,6 +219,23 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
211
219
|
* @throws {RequiredError}
|
|
212
220
|
*/
|
|
213
221
|
getPairs: (paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, orderByProperty?: GetPairsOrderByPropertyEnum, orderByDescending?: boolean, chainId?: string, tokenIn?: string, tokenOut?: string, reservableOnly?: boolean, excludeEmpty?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @param {GetRfqCommitmentsOrderByPropertyEnum} [orderByProperty]
|
|
225
|
+
* @param {boolean} [orderByDescending]
|
|
226
|
+
* @param {string} [paginationKey]
|
|
227
|
+
* @param {number} [paginationLimit]
|
|
228
|
+
* @param {boolean} [paginationCountTotal]
|
|
229
|
+
* @param {string} [chainId]
|
|
230
|
+
* @param {string} [maker]
|
|
231
|
+
* @param {string} [taker]
|
|
232
|
+
* @param {string} [tokenIn]
|
|
233
|
+
* @param {string} [tokenOut]
|
|
234
|
+
* @param {string} [commitmentId]
|
|
235
|
+
* @param {*} [options] Override http request option.
|
|
236
|
+
* @throws {RequiredError}
|
|
237
|
+
*/
|
|
238
|
+
getRfqCommitments: (orderByProperty?: GetRfqCommitmentsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, chainId?: string, maker?: string, taker?: string, tokenIn?: string, tokenOut?: string, commitmentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
214
239
|
/**
|
|
215
240
|
*
|
|
216
241
|
* @param {string} owner
|
|
@@ -254,7 +279,7 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
254
279
|
* @param {number} [requestDeadlineAfter]
|
|
255
280
|
* @param {string} [depositToken]
|
|
256
281
|
* @param {string} [minDepositLessThan]
|
|
257
|
-
* @param {string} [minDepositPerStableLessThan] TODO requires price
|
|
282
|
+
* @param {string} [minDepositPerStableLessThan] TODO requires price.
|
|
258
283
|
* @param {string} [excludedOfferer] TODO requires join
|
|
259
284
|
* @param {*} [options] Override http request option.
|
|
260
285
|
* @throws {RequiredError}
|
|
@@ -309,13 +334,6 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
309
334
|
* @throws {RequiredError}
|
|
310
335
|
*/
|
|
311
336
|
issueGreenlight: (chainId?: string, executor?: string, request?: string, requestHash?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
312
|
-
/**
|
|
313
|
-
*
|
|
314
|
-
* @param {SealSubmitRfqQuoteRequest} body
|
|
315
|
-
* @param {*} [options] Override http request option.
|
|
316
|
-
* @throws {RequiredError}
|
|
317
|
-
*/
|
|
318
|
-
submitRfqQuote: (body: SealSubmitRfqQuoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
319
337
|
/**
|
|
320
338
|
*
|
|
321
339
|
* @param {*} [options] Override http request option.
|
|
@@ -366,6 +384,13 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
366
384
|
* @throws {RequiredError}
|
|
367
385
|
*/
|
|
368
386
|
createOrder(body: SealCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealCreateOrderResponse>>;
|
|
387
|
+
/**
|
|
388
|
+
*
|
|
389
|
+
* @param {SealCreateRfqQuoteRequest} body
|
|
390
|
+
* @param {*} [options] Override http request option.
|
|
391
|
+
* @throws {RequiredError}
|
|
392
|
+
*/
|
|
393
|
+
createRfqQuote(body: SealCreateRfqQuoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealCreateRfqQuoteResponse>>;
|
|
369
394
|
/**
|
|
370
395
|
*
|
|
371
396
|
* @param {SealCreateRfqRequestRequest} body
|
|
@@ -493,6 +518,23 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
493
518
|
* @throws {RequiredError}
|
|
494
519
|
*/
|
|
495
520
|
getPairs(paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, orderByProperty?: GetPairsOrderByPropertyEnum, orderByDescending?: boolean, chainId?: string, tokenIn?: string, tokenOut?: string, reservableOnly?: boolean, excludeEmpty?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetPairsResponse>>;
|
|
521
|
+
/**
|
|
522
|
+
*
|
|
523
|
+
* @param {GetRfqCommitmentsOrderByPropertyEnum} [orderByProperty]
|
|
524
|
+
* @param {boolean} [orderByDescending]
|
|
525
|
+
* @param {string} [paginationKey]
|
|
526
|
+
* @param {number} [paginationLimit]
|
|
527
|
+
* @param {boolean} [paginationCountTotal]
|
|
528
|
+
* @param {string} [chainId]
|
|
529
|
+
* @param {string} [maker]
|
|
530
|
+
* @param {string} [taker]
|
|
531
|
+
* @param {string} [tokenIn]
|
|
532
|
+
* @param {string} [tokenOut]
|
|
533
|
+
* @param {string} [commitmentId]
|
|
534
|
+
* @param {*} [options] Override http request option.
|
|
535
|
+
* @throws {RequiredError}
|
|
536
|
+
*/
|
|
537
|
+
getRfqCommitments(orderByProperty?: GetRfqCommitmentsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, chainId?: string, maker?: string, taker?: string, tokenIn?: string, tokenOut?: string, commitmentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqCommitmentResponse>>;
|
|
496
538
|
/**
|
|
497
539
|
*
|
|
498
540
|
* @param {string} owner
|
|
@@ -536,7 +578,7 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
536
578
|
* @param {number} [requestDeadlineAfter]
|
|
537
579
|
* @param {string} [depositToken]
|
|
538
580
|
* @param {string} [minDepositLessThan]
|
|
539
|
-
* @param {string} [minDepositPerStableLessThan] TODO requires price
|
|
581
|
+
* @param {string} [minDepositPerStableLessThan] TODO requires price.
|
|
540
582
|
* @param {string} [excludedOfferer] TODO requires join
|
|
541
583
|
* @param {*} [options] Override http request option.
|
|
542
584
|
* @throws {RequiredError}
|
|
@@ -591,13 +633,6 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
591
633
|
* @throws {RequiredError}
|
|
592
634
|
*/
|
|
593
635
|
issueGreenlight(chainId?: string, executor?: string, request?: string, requestHash?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealIssueGreenlightResponse>>;
|
|
594
|
-
/**
|
|
595
|
-
*
|
|
596
|
-
* @param {SealSubmitRfqQuoteRequest} body
|
|
597
|
-
* @param {*} [options] Override http request option.
|
|
598
|
-
* @throws {RequiredError}
|
|
599
|
-
*/
|
|
600
|
-
submitRfqQuote(body: SealSubmitRfqQuoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealSubmitRfqQuoteResponse>>;
|
|
601
636
|
/**
|
|
602
637
|
*
|
|
603
638
|
* @param {*} [options] Override http request option.
|
|
@@ -644,6 +679,13 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
644
679
|
* @throws {RequiredError}
|
|
645
680
|
*/
|
|
646
681
|
createOrder(requestParameters: SealClientCreateOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealCreateOrderResponse>;
|
|
682
|
+
/**
|
|
683
|
+
*
|
|
684
|
+
* @param {SealClientCreateRfqQuoteRequest} requestParameters Request parameters.
|
|
685
|
+
* @param {*} [options] Override http request option.
|
|
686
|
+
* @throws {RequiredError}
|
|
687
|
+
*/
|
|
688
|
+
createRfqQuote(requestParameters: SealClientCreateRfqQuoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealCreateRfqQuoteResponse>;
|
|
647
689
|
/**
|
|
648
690
|
*
|
|
649
691
|
* @param {SealClientCreateRfqRequestRequest} requestParameters Request parameters.
|
|
@@ -714,6 +756,13 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
714
756
|
* @throws {RequiredError}
|
|
715
757
|
*/
|
|
716
758
|
getPairs(requestParameters?: SealClientGetPairsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetPairsResponse>;
|
|
759
|
+
/**
|
|
760
|
+
*
|
|
761
|
+
* @param {SealClientGetRfqCommitmentsRequest} requestParameters Request parameters.
|
|
762
|
+
* @param {*} [options] Override http request option.
|
|
763
|
+
* @throws {RequiredError}
|
|
764
|
+
*/
|
|
765
|
+
getRfqCommitments(requestParameters?: SealClientGetRfqCommitmentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetRfqCommitmentResponse>;
|
|
717
766
|
/**
|
|
718
767
|
*
|
|
719
768
|
* @param {SealClientGetRfqNonceRequest} requestParameters Request parameters.
|
|
@@ -769,13 +818,6 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
769
818
|
* @throws {RequiredError}
|
|
770
819
|
*/
|
|
771
820
|
issueGreenlight(requestParameters?: SealClientIssueGreenlightRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealIssueGreenlightResponse>;
|
|
772
|
-
/**
|
|
773
|
-
*
|
|
774
|
-
* @param {SealClientSubmitRfqQuoteRequest} requestParameters Request parameters.
|
|
775
|
-
* @param {*} [options] Override http request option.
|
|
776
|
-
* @throws {RequiredError}
|
|
777
|
-
*/
|
|
778
|
-
submitRfqQuote(requestParameters: SealClientSubmitRfqQuoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealSubmitRfqQuoteResponse>;
|
|
779
821
|
/**
|
|
780
822
|
*
|
|
781
823
|
* @param {*} [options] Override http request option.
|
|
@@ -859,6 +901,19 @@ export interface SealClientCreateOrderRequest {
|
|
|
859
901
|
*/
|
|
860
902
|
readonly body: SealCreateOrderRequest;
|
|
861
903
|
}
|
|
904
|
+
/**
|
|
905
|
+
* Request parameters for createRfqQuote operation in SealClient.
|
|
906
|
+
* @export
|
|
907
|
+
* @interface SealClientCreateRfqQuoteRequest
|
|
908
|
+
*/
|
|
909
|
+
export interface SealClientCreateRfqQuoteRequest {
|
|
910
|
+
/**
|
|
911
|
+
*
|
|
912
|
+
* @type {SealCreateRfqQuoteRequest}
|
|
913
|
+
* @memberof SealClientCreateRfqQuote
|
|
914
|
+
*/
|
|
915
|
+
readonly body: SealCreateRfqQuoteRequest;
|
|
916
|
+
}
|
|
862
917
|
/**
|
|
863
918
|
* Request parameters for createRfqRequest operation in SealClient.
|
|
864
919
|
* @export
|
|
@@ -1331,6 +1386,79 @@ export interface SealClientGetPairsRequest {
|
|
|
1331
1386
|
*/
|
|
1332
1387
|
readonly excludeEmpty?: boolean;
|
|
1333
1388
|
}
|
|
1389
|
+
/**
|
|
1390
|
+
* Request parameters for getRfqCommitments operation in SealClient.
|
|
1391
|
+
* @export
|
|
1392
|
+
* @interface SealClientGetRfqCommitmentsRequest
|
|
1393
|
+
*/
|
|
1394
|
+
export interface SealClientGetRfqCommitmentsRequest {
|
|
1395
|
+
/**
|
|
1396
|
+
*
|
|
1397
|
+
* @type {'RfqCommitmentOrderByProperty_UNSPECIFIED' | 'RfqCommitmentOrderByProperty_ID' | 'RfqCommitmentOrderByProperty_SETTLEMENT_TIME' | 'RfqCommitmentOrderByProperty_BUY_IN_DEADLINE'}
|
|
1398
|
+
* @memberof SealClientGetRfqCommitments
|
|
1399
|
+
*/
|
|
1400
|
+
readonly orderByProperty?: GetRfqCommitmentsOrderByPropertyEnum;
|
|
1401
|
+
/**
|
|
1402
|
+
*
|
|
1403
|
+
* @type {boolean}
|
|
1404
|
+
* @memberof SealClientGetRfqCommitments
|
|
1405
|
+
*/
|
|
1406
|
+
readonly orderByDescending?: boolean;
|
|
1407
|
+
/**
|
|
1408
|
+
*
|
|
1409
|
+
* @type {string}
|
|
1410
|
+
* @memberof SealClientGetRfqCommitments
|
|
1411
|
+
*/
|
|
1412
|
+
readonly paginationKey?: string;
|
|
1413
|
+
/**
|
|
1414
|
+
*
|
|
1415
|
+
* @type {number}
|
|
1416
|
+
* @memberof SealClientGetRfqCommitments
|
|
1417
|
+
*/
|
|
1418
|
+
readonly paginationLimit?: number;
|
|
1419
|
+
/**
|
|
1420
|
+
*
|
|
1421
|
+
* @type {boolean}
|
|
1422
|
+
* @memberof SealClientGetRfqCommitments
|
|
1423
|
+
*/
|
|
1424
|
+
readonly paginationCountTotal?: boolean;
|
|
1425
|
+
/**
|
|
1426
|
+
*
|
|
1427
|
+
* @type {string}
|
|
1428
|
+
* @memberof SealClientGetRfqCommitments
|
|
1429
|
+
*/
|
|
1430
|
+
readonly chainId?: string;
|
|
1431
|
+
/**
|
|
1432
|
+
*
|
|
1433
|
+
* @type {string}
|
|
1434
|
+
* @memberof SealClientGetRfqCommitments
|
|
1435
|
+
*/
|
|
1436
|
+
readonly maker?: string;
|
|
1437
|
+
/**
|
|
1438
|
+
*
|
|
1439
|
+
* @type {string}
|
|
1440
|
+
* @memberof SealClientGetRfqCommitments
|
|
1441
|
+
*/
|
|
1442
|
+
readonly taker?: string;
|
|
1443
|
+
/**
|
|
1444
|
+
*
|
|
1445
|
+
* @type {string}
|
|
1446
|
+
* @memberof SealClientGetRfqCommitments
|
|
1447
|
+
*/
|
|
1448
|
+
readonly tokenIn?: string;
|
|
1449
|
+
/**
|
|
1450
|
+
*
|
|
1451
|
+
* @type {string}
|
|
1452
|
+
* @memberof SealClientGetRfqCommitments
|
|
1453
|
+
*/
|
|
1454
|
+
readonly tokenOut?: string;
|
|
1455
|
+
/**
|
|
1456
|
+
*
|
|
1457
|
+
* @type {string}
|
|
1458
|
+
* @memberof SealClientGetRfqCommitments
|
|
1459
|
+
*/
|
|
1460
|
+
readonly commitmentId?: string;
|
|
1461
|
+
}
|
|
1334
1462
|
/**
|
|
1335
1463
|
* Request parameters for getRfqNonce operation in SealClient.
|
|
1336
1464
|
* @export
|
|
@@ -1526,7 +1654,7 @@ export interface SealClientGetRfqRequestsRequest {
|
|
|
1526
1654
|
*/
|
|
1527
1655
|
readonly minDepositLessThan?: string;
|
|
1528
1656
|
/**
|
|
1529
|
-
* TODO requires price
|
|
1657
|
+
* TODO requires price.
|
|
1530
1658
|
* @type {string}
|
|
1531
1659
|
* @memberof SealClientGetRfqRequests
|
|
1532
1660
|
*/
|
|
@@ -1680,19 +1808,6 @@ export interface SealClientIssueGreenlightRequest {
|
|
|
1680
1808
|
*/
|
|
1681
1809
|
readonly requestHash?: string;
|
|
1682
1810
|
}
|
|
1683
|
-
/**
|
|
1684
|
-
* Request parameters for submitRfqQuote operation in SealClient.
|
|
1685
|
-
* @export
|
|
1686
|
-
* @interface SealClientSubmitRfqQuoteRequest
|
|
1687
|
-
*/
|
|
1688
|
-
export interface SealClientSubmitRfqQuoteRequest {
|
|
1689
|
-
/**
|
|
1690
|
-
*
|
|
1691
|
-
* @type {SealSubmitRfqQuoteRequest}
|
|
1692
|
-
* @memberof SealClientSubmitRfqQuote
|
|
1693
|
-
*/
|
|
1694
|
-
readonly body: SealSubmitRfqQuoteRequest;
|
|
1695
|
-
}
|
|
1696
1811
|
/**
|
|
1697
1812
|
* SealClient - object-oriented interface
|
|
1698
1813
|
* @export
|
|
@@ -1739,6 +1854,14 @@ export declare class SealClient extends BaseAPI {
|
|
|
1739
1854
|
* @memberof SealClient
|
|
1740
1855
|
*/
|
|
1741
1856
|
createOrder(requestParameters: SealClientCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealCreateOrderResponse, any, {}>>;
|
|
1857
|
+
/**
|
|
1858
|
+
*
|
|
1859
|
+
* @param {SealClientCreateRfqQuoteRequest} requestParameters Request parameters.
|
|
1860
|
+
* @param {*} [options] Override http request option.
|
|
1861
|
+
* @throws {RequiredError}
|
|
1862
|
+
* @memberof SealClient
|
|
1863
|
+
*/
|
|
1864
|
+
createRfqQuote(requestParameters: SealClientCreateRfqQuoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealCreateRfqQuoteResponse, any, {}>>;
|
|
1742
1865
|
/**
|
|
1743
1866
|
*
|
|
1744
1867
|
* @param {SealClientCreateRfqRequestRequest} requestParameters Request parameters.
|
|
@@ -1819,6 +1942,14 @@ export declare class SealClient extends BaseAPI {
|
|
|
1819
1942
|
* @memberof SealClient
|
|
1820
1943
|
*/
|
|
1821
1944
|
getPairs(requestParameters?: SealClientGetPairsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetPairsResponse, any, {}>>;
|
|
1945
|
+
/**
|
|
1946
|
+
*
|
|
1947
|
+
* @param {SealClientGetRfqCommitmentsRequest} requestParameters Request parameters.
|
|
1948
|
+
* @param {*} [options] Override http request option.
|
|
1949
|
+
* @throws {RequiredError}
|
|
1950
|
+
* @memberof SealClient
|
|
1951
|
+
*/
|
|
1952
|
+
getRfqCommitments(requestParameters?: SealClientGetRfqCommitmentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetRfqCommitmentResponse, any, {}>>;
|
|
1822
1953
|
/**
|
|
1823
1954
|
*
|
|
1824
1955
|
* @param {SealClientGetRfqNonceRequest} requestParameters Request parameters.
|
|
@@ -1882,14 +2013,6 @@ export declare class SealClient extends BaseAPI {
|
|
|
1882
2013
|
* @memberof SealClient
|
|
1883
2014
|
*/
|
|
1884
2015
|
issueGreenlight(requestParameters?: SealClientIssueGreenlightRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealIssueGreenlightResponse, any, {}>>;
|
|
1885
|
-
/**
|
|
1886
|
-
*
|
|
1887
|
-
* @param {SealClientSubmitRfqQuoteRequest} requestParameters Request parameters.
|
|
1888
|
-
* @param {*} [options] Override http request option.
|
|
1889
|
-
* @throws {RequiredError}
|
|
1890
|
-
* @memberof SealClient
|
|
1891
|
-
*/
|
|
1892
|
-
submitRfqQuote(requestParameters: SealClientSubmitRfqQuoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealSubmitRfqQuoteResponse, any, {}>>;
|
|
1893
2016
|
/**
|
|
1894
2017
|
*
|
|
1895
2018
|
* @param {*} [options] Override http request option.
|
|
@@ -1972,6 +2095,16 @@ export declare enum GetOrdersOrderByPropertyEnum {
|
|
|
1972
2095
|
export declare enum GetPairsOrderByPropertyEnum {
|
|
1973
2096
|
PairsOrderByPropertyUnspecified = "PairsOrderByProperty_UNSPECIFIED"
|
|
1974
2097
|
}
|
|
2098
|
+
/**
|
|
2099
|
+
* @export
|
|
2100
|
+
* @enum {string}
|
|
2101
|
+
*/
|
|
2102
|
+
export declare enum GetRfqCommitmentsOrderByPropertyEnum {
|
|
2103
|
+
RfqCommitmentOrderByPropertyUnspecified = "RfqCommitmentOrderByProperty_UNSPECIFIED",
|
|
2104
|
+
RfqCommitmentOrderByPropertyId = "RfqCommitmentOrderByProperty_ID",
|
|
2105
|
+
RfqCommitmentOrderByPropertySettlementTime = "RfqCommitmentOrderByProperty_SETTLEMENT_TIME",
|
|
2106
|
+
RfqCommitmentOrderByPropertyBuyInDeadline = "RfqCommitmentOrderByProperty_BUY_IN_DEADLINE"
|
|
2107
|
+
}
|
|
1975
2108
|
/**
|
|
1976
2109
|
* @export
|
|
1977
2110
|
* @enum {string}
|