@seal-protocol/backendjs 0.0.99 → 0.0.103
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 +167 -111
- package/lib/codegen/api/seal-client.js +159 -124
- package/lib/codegen/model/index.d.ts +4 -4
- package/lib/codegen/model/index.js +4 -4
- package/lib/codegen/model/seal-create-rfq-request-request.d.ts +54 -0
- package/lib/codegen/model/seal-create-rfq-request-request.js +15 -0
- package/lib/codegen/model/seal-create-rfq-request-response.d.ts +24 -0
- package/lib/codegen/model/seal-create-rfq-request-response.js +15 -0
- package/lib/codegen/model/seal-rfq-quote.d.ts +13 -7
- package/lib/codegen/model/seal-rfq-request.d.ts +12 -0
- package/lib/codegen/model/seal-submit-rfq-quote-request.d.ts +84 -0
- package/lib/codegen/model/seal-submit-rfq-quote-request.js +15 -0
- package/lib/codegen/model/seal-submit-rfq-quote-response.d.ts +24 -0
- package/lib/codegen/model/seal-submit-rfq-quote-response.js +15 -0
- package/package.json +1 -1
|
@@ -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 { SealCreateRfqRequestRequest } from '../model';
|
|
22
|
+
import type { SealCreateRfqRequestResponse } from '../model';
|
|
21
23
|
import type { SealCreateTokenPermitApprovalRequest } from '../model';
|
|
22
24
|
import type { SealDeleteTokenPermitApprovalRequest } from '../model';
|
|
23
25
|
import type { SealGetChainsResponse } from '../model';
|
|
@@ -37,10 +39,8 @@ import type { SealGetSyncStateResponse } from '../model';
|
|
|
37
39
|
import type { SealGetTokenPermitApprovalsResponse } from '../model';
|
|
38
40
|
import type { SealGetTokensResponse } from '../model';
|
|
39
41
|
import type { SealIssueGreenlightResponse } from '../model';
|
|
40
|
-
import type {
|
|
41
|
-
import type {
|
|
42
|
-
import type { SealSubmitRfqRequest } from '../model';
|
|
43
|
-
import type { SealSubmitRfqResponse } from '../model';
|
|
42
|
+
import type { SealSubmitRfqQuoteRequest } from '../model';
|
|
43
|
+
import type { SealSubmitRfqQuoteResponse } from '../model';
|
|
44
44
|
/**
|
|
45
45
|
* SealClient - axios parameter creator
|
|
46
46
|
* @export
|
|
@@ -84,6 +84,13 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
84
84
|
* @throws {RequiredError}
|
|
85
85
|
*/
|
|
86
86
|
createOrder: (body: SealCreateOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @param {SealCreateRfqRequestRequest} body
|
|
90
|
+
* @param {*} [options] Override http request option.
|
|
91
|
+
* @throws {RequiredError}
|
|
92
|
+
*/
|
|
93
|
+
createRfqRequest: (body: SealCreateRfqRequestRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
87
94
|
/**
|
|
88
95
|
*
|
|
89
96
|
* @param {SealCreateTokenPermitApprovalRequest} body
|
|
@@ -215,21 +222,29 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
215
222
|
/**
|
|
216
223
|
*
|
|
217
224
|
* @param {string} chainId
|
|
218
|
-
* @param {string} [quoteHash]
|
|
219
|
-
* @param {string} [requestId]
|
|
220
|
-
* @param {string} [offerer]
|
|
221
|
-
* @param {string} [id]
|
|
222
225
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
223
226
|
* @param {boolean} [orderByDescending]
|
|
224
227
|
* @param {string} [paginationKey]
|
|
225
228
|
* @param {number} [paginationLimit]
|
|
226
229
|
* @param {boolean} [paginationCountTotal]
|
|
230
|
+
* @param {string} [quoteHash]
|
|
231
|
+
* @param {string} [requestId]
|
|
232
|
+
* @param {string} [offerer]
|
|
233
|
+
* @param {string} [id]
|
|
234
|
+
* @param {boolean} [onChain] TODO requires indexer
|
|
235
|
+
* @param {number} [settlementTimeAfter]
|
|
236
|
+
* @param {number} [deadlineAfter]
|
|
227
237
|
* @param {*} [options] Override http request option.
|
|
228
238
|
* @throws {RequiredError}
|
|
229
239
|
*/
|
|
230
|
-
getRfqQuotes: (chainId: string,
|
|
240
|
+
getRfqQuotes: (chainId: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, quoteHash?: string, requestId?: string, offerer?: string, id?: string, onChain?: boolean, settlementTimeAfter?: number, deadlineAfter?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
231
241
|
/**
|
|
232
242
|
*
|
|
243
|
+
* @param {string} [paginationKey]
|
|
244
|
+
* @param {number} [paginationLimit]
|
|
245
|
+
* @param {boolean} [paginationCountTotal]
|
|
246
|
+
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
247
|
+
* @param {boolean} [orderByDescending]
|
|
233
248
|
* @param {string} [id]
|
|
234
249
|
* @param {string} [chainId]
|
|
235
250
|
* @param {string} [requester]
|
|
@@ -237,15 +252,14 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
237
252
|
* @param {string} [tokenOut]
|
|
238
253
|
* @param {number} [creationTimeAfter]
|
|
239
254
|
* @param {number} [requestDeadlineAfter]
|
|
240
|
-
* @param {
|
|
241
|
-
* @param {
|
|
242
|
-
* @param {string} [
|
|
243
|
-
* @param {
|
|
244
|
-
* @param {boolean} [paginationCountTotal]
|
|
255
|
+
* @param {string} [depositToken]
|
|
256
|
+
* @param {string} [minDepositLessThan]
|
|
257
|
+
* @param {string} [minDepositPerStableLessThan] TODO requires price
|
|
258
|
+
* @param {string} [excludedOfferer] TODO requires join
|
|
245
259
|
* @param {*} [options] Override http request option.
|
|
246
260
|
* @throws {RequiredError}
|
|
247
261
|
*/
|
|
248
|
-
getRfqRequests: (id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number,
|
|
262
|
+
getRfqRequests: (paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, orderByProperty?: GetRfqRequestsOrderByPropertyEnum, orderByDescending?: boolean, id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number, depositToken?: string, minDepositLessThan?: string, minDepositPerStableLessThan?: string, excludedOfferer?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
249
263
|
/**
|
|
250
264
|
*
|
|
251
265
|
* @param {string} [chainId]
|
|
@@ -297,18 +311,11 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
297
311
|
issueGreenlight: (chainId?: string, executor?: string, request?: string, requestHash?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
298
312
|
/**
|
|
299
313
|
*
|
|
300
|
-
* @param {
|
|
314
|
+
* @param {SealSubmitRfqQuoteRequest} body
|
|
301
315
|
* @param {*} [options] Override http request option.
|
|
302
316
|
* @throws {RequiredError}
|
|
303
317
|
*/
|
|
304
|
-
|
|
305
|
-
/**
|
|
306
|
-
*
|
|
307
|
-
* @param {SealSubmitRfqRequest} body
|
|
308
|
-
* @param {*} [options] Override http request option.
|
|
309
|
-
* @throws {RequiredError}
|
|
310
|
-
*/
|
|
311
|
-
submitRfq: (body: SealSubmitRfqRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
318
|
+
submitRfqQuote: (body: SealSubmitRfqQuoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
312
319
|
/**
|
|
313
320
|
*
|
|
314
321
|
* @param {*} [options] Override http request option.
|
|
@@ -359,6 +366,13 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
359
366
|
* @throws {RequiredError}
|
|
360
367
|
*/
|
|
361
368
|
createOrder(body: SealCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealCreateOrderResponse>>;
|
|
369
|
+
/**
|
|
370
|
+
*
|
|
371
|
+
* @param {SealCreateRfqRequestRequest} body
|
|
372
|
+
* @param {*} [options] Override http request option.
|
|
373
|
+
* @throws {RequiredError}
|
|
374
|
+
*/
|
|
375
|
+
createRfqRequest(body: SealCreateRfqRequestRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealCreateRfqRequestResponse>>;
|
|
362
376
|
/**
|
|
363
377
|
*
|
|
364
378
|
* @param {SealCreateTokenPermitApprovalRequest} body
|
|
@@ -490,21 +504,29 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
490
504
|
/**
|
|
491
505
|
*
|
|
492
506
|
* @param {string} chainId
|
|
493
|
-
* @param {string} [quoteHash]
|
|
494
|
-
* @param {string} [requestId]
|
|
495
|
-
* @param {string} [offerer]
|
|
496
|
-
* @param {string} [id]
|
|
497
507
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
498
508
|
* @param {boolean} [orderByDescending]
|
|
499
509
|
* @param {string} [paginationKey]
|
|
500
510
|
* @param {number} [paginationLimit]
|
|
501
511
|
* @param {boolean} [paginationCountTotal]
|
|
512
|
+
* @param {string} [quoteHash]
|
|
513
|
+
* @param {string} [requestId]
|
|
514
|
+
* @param {string} [offerer]
|
|
515
|
+
* @param {string} [id]
|
|
516
|
+
* @param {boolean} [onChain] TODO requires indexer
|
|
517
|
+
* @param {number} [settlementTimeAfter]
|
|
518
|
+
* @param {number} [deadlineAfter]
|
|
502
519
|
* @param {*} [options] Override http request option.
|
|
503
520
|
* @throws {RequiredError}
|
|
504
521
|
*/
|
|
505
|
-
getRfqQuotes(chainId: string,
|
|
522
|
+
getRfqQuotes(chainId: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, quoteHash?: string, requestId?: string, offerer?: string, id?: string, onChain?: boolean, settlementTimeAfter?: number, deadlineAfter?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqQuotesResponse>>;
|
|
506
523
|
/**
|
|
507
524
|
*
|
|
525
|
+
* @param {string} [paginationKey]
|
|
526
|
+
* @param {number} [paginationLimit]
|
|
527
|
+
* @param {boolean} [paginationCountTotal]
|
|
528
|
+
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
529
|
+
* @param {boolean} [orderByDescending]
|
|
508
530
|
* @param {string} [id]
|
|
509
531
|
* @param {string} [chainId]
|
|
510
532
|
* @param {string} [requester]
|
|
@@ -512,15 +534,14 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
512
534
|
* @param {string} [tokenOut]
|
|
513
535
|
* @param {number} [creationTimeAfter]
|
|
514
536
|
* @param {number} [requestDeadlineAfter]
|
|
515
|
-
* @param {
|
|
516
|
-
* @param {
|
|
517
|
-
* @param {string} [
|
|
518
|
-
* @param {
|
|
519
|
-
* @param {boolean} [paginationCountTotal]
|
|
537
|
+
* @param {string} [depositToken]
|
|
538
|
+
* @param {string} [minDepositLessThan]
|
|
539
|
+
* @param {string} [minDepositPerStableLessThan] TODO requires price
|
|
540
|
+
* @param {string} [excludedOfferer] TODO requires join
|
|
520
541
|
* @param {*} [options] Override http request option.
|
|
521
542
|
* @throws {RequiredError}
|
|
522
543
|
*/
|
|
523
|
-
getRfqRequests(id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number,
|
|
544
|
+
getRfqRequests(paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, orderByProperty?: GetRfqRequestsOrderByPropertyEnum, orderByDescending?: boolean, id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number, depositToken?: string, minDepositLessThan?: string, minDepositPerStableLessThan?: string, excludedOfferer?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqRequestsResponse>>;
|
|
524
545
|
/**
|
|
525
546
|
*
|
|
526
547
|
* @param {string} [chainId]
|
|
@@ -572,18 +593,11 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
572
593
|
issueGreenlight(chainId?: string, executor?: string, request?: string, requestHash?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealIssueGreenlightResponse>>;
|
|
573
594
|
/**
|
|
574
595
|
*
|
|
575
|
-
* @param {
|
|
596
|
+
* @param {SealSubmitRfqQuoteRequest} body
|
|
576
597
|
* @param {*} [options] Override http request option.
|
|
577
598
|
* @throws {RequiredError}
|
|
578
599
|
*/
|
|
579
|
-
|
|
580
|
-
/**
|
|
581
|
-
*
|
|
582
|
-
* @param {SealSubmitRfqRequest} body
|
|
583
|
-
* @param {*} [options] Override http request option.
|
|
584
|
-
* @throws {RequiredError}
|
|
585
|
-
*/
|
|
586
|
-
submitRfq(body: SealSubmitRfqRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealSubmitRfqResponse>>;
|
|
600
|
+
submitRfqQuote(body: SealSubmitRfqQuoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealSubmitRfqQuoteResponse>>;
|
|
587
601
|
/**
|
|
588
602
|
*
|
|
589
603
|
* @param {*} [options] Override http request option.
|
|
@@ -630,6 +644,13 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
630
644
|
* @throws {RequiredError}
|
|
631
645
|
*/
|
|
632
646
|
createOrder(requestParameters: SealClientCreateOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealCreateOrderResponse>;
|
|
647
|
+
/**
|
|
648
|
+
*
|
|
649
|
+
* @param {SealClientCreateRfqRequestRequest} requestParameters Request parameters.
|
|
650
|
+
* @param {*} [options] Override http request option.
|
|
651
|
+
* @throws {RequiredError}
|
|
652
|
+
*/
|
|
653
|
+
createRfqRequest(requestParameters: SealClientCreateRfqRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealCreateRfqRequestResponse>;
|
|
633
654
|
/**
|
|
634
655
|
*
|
|
635
656
|
* @param {SealClientCreateTokenPermitApprovalRequest} requestParameters Request parameters.
|
|
@@ -750,18 +771,11 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
750
771
|
issueGreenlight(requestParameters?: SealClientIssueGreenlightRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealIssueGreenlightResponse>;
|
|
751
772
|
/**
|
|
752
773
|
*
|
|
753
|
-
* @param {
|
|
774
|
+
* @param {SealClientSubmitRfqQuoteRequest} requestParameters Request parameters.
|
|
754
775
|
* @param {*} [options] Override http request option.
|
|
755
776
|
* @throws {RequiredError}
|
|
756
777
|
*/
|
|
757
|
-
|
|
758
|
-
/**
|
|
759
|
-
*
|
|
760
|
-
* @param {SealClientSubmitRfqRequest} requestParameters Request parameters.
|
|
761
|
-
* @param {*} [options] Override http request option.
|
|
762
|
-
* @throws {RequiredError}
|
|
763
|
-
*/
|
|
764
|
-
submitRfq(requestParameters: SealClientSubmitRfqRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealSubmitRfqResponse>;
|
|
778
|
+
submitRfqQuote(requestParameters: SealClientSubmitRfqQuoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealSubmitRfqQuoteResponse>;
|
|
765
779
|
/**
|
|
766
780
|
*
|
|
767
781
|
* @param {*} [options] Override http request option.
|
|
@@ -845,6 +859,19 @@ export interface SealClientCreateOrderRequest {
|
|
|
845
859
|
*/
|
|
846
860
|
readonly body: SealCreateOrderRequest;
|
|
847
861
|
}
|
|
862
|
+
/**
|
|
863
|
+
* Request parameters for createRfqRequest operation in SealClient.
|
|
864
|
+
* @export
|
|
865
|
+
* @interface SealClientCreateRfqRequestRequest
|
|
866
|
+
*/
|
|
867
|
+
export interface SealClientCreateRfqRequestRequest {
|
|
868
|
+
/**
|
|
869
|
+
*
|
|
870
|
+
* @type {SealCreateRfqRequestRequest}
|
|
871
|
+
* @memberof SealClientCreateRfqRequest
|
|
872
|
+
*/
|
|
873
|
+
readonly body: SealCreateRfqRequestRequest;
|
|
874
|
+
}
|
|
848
875
|
/**
|
|
849
876
|
* Request parameters for createTokenPermitApproval operation in SealClient.
|
|
850
877
|
* @export
|
|
@@ -1337,58 +1364,76 @@ export interface SealClientGetRfqQuotesRequest {
|
|
|
1337
1364
|
readonly chainId: string;
|
|
1338
1365
|
/**
|
|
1339
1366
|
*
|
|
1340
|
-
* @type {
|
|
1367
|
+
* @type {'RfqQuoteOrderByProperty_UNSPECIFIED' | 'RfqQuoteOrderByProperty_ID' | 'RfqQuoteOrderByProperty_SETTLEMENT_TIME' | 'RfqQuoteOrderByProperty_DEADLINE'}
|
|
1341
1368
|
* @memberof SealClientGetRfqQuotes
|
|
1342
1369
|
*/
|
|
1343
|
-
readonly
|
|
1370
|
+
readonly orderByProperty?: GetRfqQuotesOrderByPropertyEnum;
|
|
1344
1371
|
/**
|
|
1345
1372
|
*
|
|
1346
|
-
* @type {
|
|
1373
|
+
* @type {boolean}
|
|
1347
1374
|
* @memberof SealClientGetRfqQuotes
|
|
1348
1375
|
*/
|
|
1349
|
-
readonly
|
|
1376
|
+
readonly orderByDescending?: boolean;
|
|
1350
1377
|
/**
|
|
1351
1378
|
*
|
|
1352
1379
|
* @type {string}
|
|
1353
1380
|
* @memberof SealClientGetRfqQuotes
|
|
1354
1381
|
*/
|
|
1355
|
-
readonly
|
|
1382
|
+
readonly paginationKey?: string;
|
|
1383
|
+
/**
|
|
1384
|
+
*
|
|
1385
|
+
* @type {number}
|
|
1386
|
+
* @memberof SealClientGetRfqQuotes
|
|
1387
|
+
*/
|
|
1388
|
+
readonly paginationLimit?: number;
|
|
1389
|
+
/**
|
|
1390
|
+
*
|
|
1391
|
+
* @type {boolean}
|
|
1392
|
+
* @memberof SealClientGetRfqQuotes
|
|
1393
|
+
*/
|
|
1394
|
+
readonly paginationCountTotal?: boolean;
|
|
1356
1395
|
/**
|
|
1357
1396
|
*
|
|
1358
1397
|
* @type {string}
|
|
1359
1398
|
* @memberof SealClientGetRfqQuotes
|
|
1360
1399
|
*/
|
|
1361
|
-
readonly
|
|
1400
|
+
readonly quoteHash?: string;
|
|
1362
1401
|
/**
|
|
1363
1402
|
*
|
|
1364
|
-
* @type {
|
|
1403
|
+
* @type {string}
|
|
1365
1404
|
* @memberof SealClientGetRfqQuotes
|
|
1366
1405
|
*/
|
|
1367
|
-
readonly
|
|
1406
|
+
readonly requestId?: string;
|
|
1368
1407
|
/**
|
|
1369
1408
|
*
|
|
1370
|
-
* @type {
|
|
1409
|
+
* @type {string}
|
|
1371
1410
|
* @memberof SealClientGetRfqQuotes
|
|
1372
1411
|
*/
|
|
1373
|
-
readonly
|
|
1412
|
+
readonly offerer?: string;
|
|
1374
1413
|
/**
|
|
1375
1414
|
*
|
|
1376
1415
|
* @type {string}
|
|
1377
1416
|
* @memberof SealClientGetRfqQuotes
|
|
1378
1417
|
*/
|
|
1379
|
-
readonly
|
|
1418
|
+
readonly id?: string;
|
|
1419
|
+
/**
|
|
1420
|
+
* TODO requires indexer
|
|
1421
|
+
* @type {boolean}
|
|
1422
|
+
* @memberof SealClientGetRfqQuotes
|
|
1423
|
+
*/
|
|
1424
|
+
readonly onChain?: boolean;
|
|
1380
1425
|
/**
|
|
1381
1426
|
*
|
|
1382
1427
|
* @type {number}
|
|
1383
1428
|
* @memberof SealClientGetRfqQuotes
|
|
1384
1429
|
*/
|
|
1385
|
-
readonly
|
|
1430
|
+
readonly settlementTimeAfter?: number;
|
|
1386
1431
|
/**
|
|
1387
1432
|
*
|
|
1388
|
-
* @type {
|
|
1433
|
+
* @type {number}
|
|
1389
1434
|
* @memberof SealClientGetRfqQuotes
|
|
1390
1435
|
*/
|
|
1391
|
-
readonly
|
|
1436
|
+
readonly deadlineAfter?: number;
|
|
1392
1437
|
}
|
|
1393
1438
|
/**
|
|
1394
1439
|
* Request parameters for getRfqRequests operation in SealClient.
|
|
@@ -1396,6 +1441,36 @@ export interface SealClientGetRfqQuotesRequest {
|
|
|
1396
1441
|
* @interface SealClientGetRfqRequestsRequest
|
|
1397
1442
|
*/
|
|
1398
1443
|
export interface SealClientGetRfqRequestsRequest {
|
|
1444
|
+
/**
|
|
1445
|
+
*
|
|
1446
|
+
* @type {string}
|
|
1447
|
+
* @memberof SealClientGetRfqRequests
|
|
1448
|
+
*/
|
|
1449
|
+
readonly paginationKey?: string;
|
|
1450
|
+
/**
|
|
1451
|
+
*
|
|
1452
|
+
* @type {number}
|
|
1453
|
+
* @memberof SealClientGetRfqRequests
|
|
1454
|
+
*/
|
|
1455
|
+
readonly paginationLimit?: number;
|
|
1456
|
+
/**
|
|
1457
|
+
*
|
|
1458
|
+
* @type {boolean}
|
|
1459
|
+
* @memberof SealClientGetRfqRequests
|
|
1460
|
+
*/
|
|
1461
|
+
readonly paginationCountTotal?: boolean;
|
|
1462
|
+
/**
|
|
1463
|
+
*
|
|
1464
|
+
* @type {'RfqRequestsOrderByProperty_UNSPECIFIED' | 'RfqRequestsOrderByProperty_ID' | 'RfqRequestsOrderByProperty_CREATION_TIME' | 'RfqRequestsOrderByProperty_REQUEST_DEADLINE'}
|
|
1465
|
+
* @memberof SealClientGetRfqRequests
|
|
1466
|
+
*/
|
|
1467
|
+
readonly orderByProperty?: GetRfqRequestsOrderByPropertyEnum;
|
|
1468
|
+
/**
|
|
1469
|
+
*
|
|
1470
|
+
* @type {boolean}
|
|
1471
|
+
* @memberof SealClientGetRfqRequests
|
|
1472
|
+
*/
|
|
1473
|
+
readonly orderByDescending?: boolean;
|
|
1399
1474
|
/**
|
|
1400
1475
|
*
|
|
1401
1476
|
* @type {string}
|
|
@@ -1440,34 +1515,28 @@ export interface SealClientGetRfqRequestsRequest {
|
|
|
1440
1515
|
readonly requestDeadlineAfter?: number;
|
|
1441
1516
|
/**
|
|
1442
1517
|
*
|
|
1443
|
-
* @type {
|
|
1444
|
-
* @memberof SealClientGetRfqRequests
|
|
1445
|
-
*/
|
|
1446
|
-
readonly orderByProperty?: GetRfqRequestsOrderByPropertyEnum;
|
|
1447
|
-
/**
|
|
1448
|
-
*
|
|
1449
|
-
* @type {boolean}
|
|
1518
|
+
* @type {string}
|
|
1450
1519
|
* @memberof SealClientGetRfqRequests
|
|
1451
1520
|
*/
|
|
1452
|
-
readonly
|
|
1521
|
+
readonly depositToken?: string;
|
|
1453
1522
|
/**
|
|
1454
1523
|
*
|
|
1455
1524
|
* @type {string}
|
|
1456
1525
|
* @memberof SealClientGetRfqRequests
|
|
1457
1526
|
*/
|
|
1458
|
-
readonly
|
|
1527
|
+
readonly minDepositLessThan?: string;
|
|
1459
1528
|
/**
|
|
1460
|
-
*
|
|
1461
|
-
* @type {
|
|
1529
|
+
* TODO requires price
|
|
1530
|
+
* @type {string}
|
|
1462
1531
|
* @memberof SealClientGetRfqRequests
|
|
1463
1532
|
*/
|
|
1464
|
-
readonly
|
|
1533
|
+
readonly minDepositPerStableLessThan?: string;
|
|
1465
1534
|
/**
|
|
1466
|
-
*
|
|
1467
|
-
* @type {
|
|
1535
|
+
* TODO requires join
|
|
1536
|
+
* @type {string}
|
|
1468
1537
|
* @memberof SealClientGetRfqRequests
|
|
1469
1538
|
*/
|
|
1470
|
-
readonly
|
|
1539
|
+
readonly excludedOfferer?: string;
|
|
1471
1540
|
}
|
|
1472
1541
|
/**
|
|
1473
1542
|
* Request parameters for getSealContractParams operation in SealClient.
|
|
@@ -1612,30 +1681,17 @@ export interface SealClientIssueGreenlightRequest {
|
|
|
1612
1681
|
readonly requestHash?: string;
|
|
1613
1682
|
}
|
|
1614
1683
|
/**
|
|
1615
|
-
* Request parameters for
|
|
1616
|
-
* @export
|
|
1617
|
-
* @interface SealClientSubmitQuoteRequest
|
|
1618
|
-
*/
|
|
1619
|
-
export interface SealClientSubmitQuoteRequest {
|
|
1620
|
-
/**
|
|
1621
|
-
*
|
|
1622
|
-
* @type {SealSubmitQuoteRequest}
|
|
1623
|
-
* @memberof SealClientSubmitQuote
|
|
1624
|
-
*/
|
|
1625
|
-
readonly body: SealSubmitQuoteRequest;
|
|
1626
|
-
}
|
|
1627
|
-
/**
|
|
1628
|
-
* Request parameters for submitRfq operation in SealClient.
|
|
1684
|
+
* Request parameters for submitRfqQuote operation in SealClient.
|
|
1629
1685
|
* @export
|
|
1630
|
-
* @interface
|
|
1686
|
+
* @interface SealClientSubmitRfqQuoteRequest
|
|
1631
1687
|
*/
|
|
1632
|
-
export interface
|
|
1688
|
+
export interface SealClientSubmitRfqQuoteRequest {
|
|
1633
1689
|
/**
|
|
1634
1690
|
*
|
|
1635
|
-
* @type {
|
|
1636
|
-
* @memberof
|
|
1691
|
+
* @type {SealSubmitRfqQuoteRequest}
|
|
1692
|
+
* @memberof SealClientSubmitRfqQuote
|
|
1637
1693
|
*/
|
|
1638
|
-
readonly body:
|
|
1694
|
+
readonly body: SealSubmitRfqQuoteRequest;
|
|
1639
1695
|
}
|
|
1640
1696
|
/**
|
|
1641
1697
|
* SealClient - object-oriented interface
|
|
@@ -1683,6 +1739,14 @@ export declare class SealClient extends BaseAPI {
|
|
|
1683
1739
|
* @memberof SealClient
|
|
1684
1740
|
*/
|
|
1685
1741
|
createOrder(requestParameters: SealClientCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealCreateOrderResponse, any, {}>>;
|
|
1742
|
+
/**
|
|
1743
|
+
*
|
|
1744
|
+
* @param {SealClientCreateRfqRequestRequest} requestParameters Request parameters.
|
|
1745
|
+
* @param {*} [options] Override http request option.
|
|
1746
|
+
* @throws {RequiredError}
|
|
1747
|
+
* @memberof SealClient
|
|
1748
|
+
*/
|
|
1749
|
+
createRfqRequest(requestParameters: SealClientCreateRfqRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealCreateRfqRequestResponse, any, {}>>;
|
|
1686
1750
|
/**
|
|
1687
1751
|
*
|
|
1688
1752
|
* @param {SealClientCreateTokenPermitApprovalRequest} requestParameters Request parameters.
|
|
@@ -1820,20 +1884,12 @@ export declare class SealClient extends BaseAPI {
|
|
|
1820
1884
|
issueGreenlight(requestParameters?: SealClientIssueGreenlightRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealIssueGreenlightResponse, any, {}>>;
|
|
1821
1885
|
/**
|
|
1822
1886
|
*
|
|
1823
|
-
* @param {
|
|
1824
|
-
* @param {*} [options] Override http request option.
|
|
1825
|
-
* @throws {RequiredError}
|
|
1826
|
-
* @memberof SealClient
|
|
1827
|
-
*/
|
|
1828
|
-
submitQuote(requestParameters: SealClientSubmitQuoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealSubmitQuoteResponse, any, {}>>;
|
|
1829
|
-
/**
|
|
1830
|
-
*
|
|
1831
|
-
* @param {SealClientSubmitRfqRequest} requestParameters Request parameters.
|
|
1887
|
+
* @param {SealClientSubmitRfqQuoteRequest} requestParameters Request parameters.
|
|
1832
1888
|
* @param {*} [options] Override http request option.
|
|
1833
1889
|
* @throws {RequiredError}
|
|
1834
1890
|
* @memberof SealClient
|
|
1835
1891
|
*/
|
|
1836
|
-
|
|
1892
|
+
submitRfqQuote(requestParameters: SealClientSubmitRfqQuoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealSubmitRfqQuoteResponse, any, {}>>;
|
|
1837
1893
|
/**
|
|
1838
1894
|
*
|
|
1839
1895
|
* @param {*} [options] Override http request option.
|