@seal-protocol/backendjs 0.0.98 → 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 +172 -118
- package/lib/codegen/api/seal-client.js +161 -128
- 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-order-reservation.d.ts +6 -0
- package/lib/codegen/model/seal-rfq-quote.d.ts +19 -7
- package/lib/codegen/model/seal-rfq-request.d.ts +10 -4
- package/lib/codegen/model/seal-seal-contract-params.d.ts +12 -0
- package/lib/codegen/model/seal-submit-quote-response.d.ts +1 -1
- package/lib/codegen/model/seal-submit-rfq-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/lib/codegen/model/seal-submit-rfq-request.d.ts +0 -6
- package/lib/codegen/model/types-rfq-quote-order-by-property.d.ts +0 -1
- package/lib/codegen/model/types-rfq-quote-order-by-property.js +0 -1
- package/lib/codegen/model/types-rfq-requests-order-by-property.d.ts +1 -2
- package/lib/codegen/model/types-rfq-requests-order-by-property.js +0 -1
- package/package.json +1 -1
|
@@ -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,20 +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
225
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
222
226
|
* @param {boolean} [orderByDescending]
|
|
223
227
|
* @param {string} [paginationKey]
|
|
224
228
|
* @param {number} [paginationLimit]
|
|
225
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]
|
|
226
237
|
* @param {*} [options] Override http request option.
|
|
227
238
|
* @throws {RequiredError}
|
|
228
239
|
*/
|
|
229
|
-
getRfqQuotes: (chainId: string, quoteHash?: string, requestId?: string, offerer?: 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>;
|
|
230
241
|
/**
|
|
231
242
|
*
|
|
243
|
+
* @param {string} [paginationKey]
|
|
244
|
+
* @param {number} [paginationLimit]
|
|
245
|
+
* @param {boolean} [paginationCountTotal]
|
|
246
|
+
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
247
|
+
* @param {boolean} [orderByDescending]
|
|
232
248
|
* @param {string} [id]
|
|
233
249
|
* @param {string} [chainId]
|
|
234
250
|
* @param {string} [requester]
|
|
@@ -236,16 +252,14 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
236
252
|
* @param {string} [tokenOut]
|
|
237
253
|
* @param {number} [creationTimeAfter]
|
|
238
254
|
* @param {number} [requestDeadlineAfter]
|
|
239
|
-
* @param {
|
|
240
|
-
* @param {
|
|
241
|
-
* @param {
|
|
242
|
-
* @param {string} [
|
|
243
|
-
* @param {number} [paginationLimit]
|
|
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,20 +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
507
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
497
508
|
* @param {boolean} [orderByDescending]
|
|
498
509
|
* @param {string} [paginationKey]
|
|
499
510
|
* @param {number} [paginationLimit]
|
|
500
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]
|
|
501
519
|
* @param {*} [options] Override http request option.
|
|
502
520
|
* @throws {RequiredError}
|
|
503
521
|
*/
|
|
504
|
-
getRfqQuotes(chainId: string, quoteHash?: string, requestId?: string, offerer?: 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>>;
|
|
505
523
|
/**
|
|
506
524
|
*
|
|
525
|
+
* @param {string} [paginationKey]
|
|
526
|
+
* @param {number} [paginationLimit]
|
|
527
|
+
* @param {boolean} [paginationCountTotal]
|
|
528
|
+
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
529
|
+
* @param {boolean} [orderByDescending]
|
|
507
530
|
* @param {string} [id]
|
|
508
531
|
* @param {string} [chainId]
|
|
509
532
|
* @param {string} [requester]
|
|
@@ -511,16 +534,14 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
511
534
|
* @param {string} [tokenOut]
|
|
512
535
|
* @param {number} [creationTimeAfter]
|
|
513
536
|
* @param {number} [requestDeadlineAfter]
|
|
514
|
-
* @param {
|
|
515
|
-
* @param {
|
|
516
|
-
* @param {
|
|
517
|
-
* @param {string} [
|
|
518
|
-
* @param {number} [paginationLimit]
|
|
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 {
|
|
576
|
-
* @param {*} [options] Override http request option.
|
|
577
|
-
* @throws {RequiredError}
|
|
578
|
-
*/
|
|
579
|
-
submitQuote(body: SealSubmitQuoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealSubmitQuoteResponse>>;
|
|
580
|
-
/**
|
|
581
|
-
*
|
|
582
|
-
* @param {SealSubmitRfqRequest} body
|
|
596
|
+
* @param {SealSubmitRfqQuoteRequest} body
|
|
583
597
|
* @param {*} [options] Override http request option.
|
|
584
598
|
* @throws {RequiredError}
|
|
585
599
|
*/
|
|
586
|
-
|
|
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,52 +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;
|
|
1356
1383
|
/**
|
|
1357
1384
|
*
|
|
1358
|
-
* @type {
|
|
1385
|
+
* @type {number}
|
|
1359
1386
|
* @memberof SealClientGetRfqQuotes
|
|
1360
1387
|
*/
|
|
1361
|
-
readonly
|
|
1388
|
+
readonly paginationLimit?: number;
|
|
1362
1389
|
/**
|
|
1363
1390
|
*
|
|
1364
1391
|
* @type {boolean}
|
|
1365
1392
|
* @memberof SealClientGetRfqQuotes
|
|
1366
1393
|
*/
|
|
1367
|
-
readonly
|
|
1394
|
+
readonly paginationCountTotal?: boolean;
|
|
1368
1395
|
/**
|
|
1369
1396
|
*
|
|
1370
1397
|
* @type {string}
|
|
1371
1398
|
* @memberof SealClientGetRfqQuotes
|
|
1372
1399
|
*/
|
|
1373
|
-
readonly
|
|
1400
|
+
readonly quoteHash?: string;
|
|
1374
1401
|
/**
|
|
1375
1402
|
*
|
|
1376
|
-
* @type {
|
|
1403
|
+
* @type {string}
|
|
1377
1404
|
* @memberof SealClientGetRfqQuotes
|
|
1378
1405
|
*/
|
|
1379
|
-
readonly
|
|
1406
|
+
readonly requestId?: string;
|
|
1380
1407
|
/**
|
|
1381
1408
|
*
|
|
1409
|
+
* @type {string}
|
|
1410
|
+
* @memberof SealClientGetRfqQuotes
|
|
1411
|
+
*/
|
|
1412
|
+
readonly offerer?: string;
|
|
1413
|
+
/**
|
|
1414
|
+
*
|
|
1415
|
+
* @type {string}
|
|
1416
|
+
* @memberof SealClientGetRfqQuotes
|
|
1417
|
+
*/
|
|
1418
|
+
readonly id?: string;
|
|
1419
|
+
/**
|
|
1420
|
+
* TODO requires indexer
|
|
1382
1421
|
* @type {boolean}
|
|
1383
1422
|
* @memberof SealClientGetRfqQuotes
|
|
1384
1423
|
*/
|
|
1385
|
-
readonly
|
|
1424
|
+
readonly onChain?: boolean;
|
|
1425
|
+
/**
|
|
1426
|
+
*
|
|
1427
|
+
* @type {number}
|
|
1428
|
+
* @memberof SealClientGetRfqQuotes
|
|
1429
|
+
*/
|
|
1430
|
+
readonly settlementTimeAfter?: number;
|
|
1431
|
+
/**
|
|
1432
|
+
*
|
|
1433
|
+
* @type {number}
|
|
1434
|
+
* @memberof SealClientGetRfqQuotes
|
|
1435
|
+
*/
|
|
1436
|
+
readonly deadlineAfter?: number;
|
|
1386
1437
|
}
|
|
1387
1438
|
/**
|
|
1388
1439
|
* Request parameters for getRfqRequests operation in SealClient.
|
|
@@ -1390,6 +1441,36 @@ export interface SealClientGetRfqQuotesRequest {
|
|
|
1390
1441
|
* @interface SealClientGetRfqRequestsRequest
|
|
1391
1442
|
*/
|
|
1392
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;
|
|
1393
1474
|
/**
|
|
1394
1475
|
*
|
|
1395
1476
|
* @type {string}
|
|
@@ -1434,40 +1515,28 @@ export interface SealClientGetRfqRequestsRequest {
|
|
|
1434
1515
|
readonly requestDeadlineAfter?: number;
|
|
1435
1516
|
/**
|
|
1436
1517
|
*
|
|
1437
|
-
* @type {
|
|
1438
|
-
* @memberof SealClientGetRfqRequests
|
|
1439
|
-
*/
|
|
1440
|
-
readonly buyInDeadlineAfter?: number;
|
|
1441
|
-
/**
|
|
1442
|
-
*
|
|
1443
|
-
* @type {'RfqRequestsOrderByProperty_UNSPECIFIED' | 'RfqRequestsOrderByProperty_ID' | 'RfqRequestsOrderByProperty_CREATION_TIME' | 'RfqRequestsOrderByProperty_REQUEST_DEADLINE' | 'RfqRequestsOrderByProperty_BUY_IN_DEADLINE'}
|
|
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.
|
|
@@ -1923,7 +1979,6 @@ export declare enum GetPairsOrderByPropertyEnum {
|
|
|
1923
1979
|
export declare enum GetRfqQuotesOrderByPropertyEnum {
|
|
1924
1980
|
RfqQuoteOrderByPropertyUnspecified = "RfqQuoteOrderByProperty_UNSPECIFIED",
|
|
1925
1981
|
RfqQuoteOrderByPropertyId = "RfqQuoteOrderByProperty_ID",
|
|
1926
|
-
RfqQuoteOrderByPropertySubmissionTime = "RfqQuoteOrderByProperty_SUBMISSION_TIME",
|
|
1927
1982
|
RfqQuoteOrderByPropertySettlementTime = "RfqQuoteOrderByProperty_SETTLEMENT_TIME",
|
|
1928
1983
|
RfqQuoteOrderByPropertyDeadline = "RfqQuoteOrderByProperty_DEADLINE"
|
|
1929
1984
|
}
|
|
@@ -1935,8 +1990,7 @@ export declare enum GetRfqRequestsOrderByPropertyEnum {
|
|
|
1935
1990
|
RfqRequestsOrderByPropertyUnspecified = "RfqRequestsOrderByProperty_UNSPECIFIED",
|
|
1936
1991
|
RfqRequestsOrderByPropertyId = "RfqRequestsOrderByProperty_ID",
|
|
1937
1992
|
RfqRequestsOrderByPropertyCreationTime = "RfqRequestsOrderByProperty_CREATION_TIME",
|
|
1938
|
-
RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE"
|
|
1939
|
-
RfqRequestsOrderByPropertyBuyInDeadline = "RfqRequestsOrderByProperty_BUY_IN_DEADLINE"
|
|
1993
|
+
RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE"
|
|
1940
1994
|
}
|
|
1941
1995
|
/**
|
|
1942
1996
|
* @export
|