@seal-protocol/backendjs 0.0.80 → 0.0.98

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.
Files changed (38) hide show
  1. package/lib/codegen/api/seal-client.d.ts +407 -0
  2. package/lib/codegen/api/seal-client.js +433 -1
  3. package/lib/codegen/model/index.d.ts +15 -0
  4. package/lib/codegen/model/index.js +15 -0
  5. package/lib/codegen/model/seal-chain-config.d.ts +7 -0
  6. package/lib/codegen/model/seal-chain-health.d.ts +12 -0
  7. package/lib/codegen/model/seal-get-health-check-response.d.ts +1 -1
  8. package/lib/codegen/model/seal-get-rfq-nonce-response.d.ts +24 -0
  9. package/lib/codegen/model/seal-get-rfq-nonce-response.js +15 -0
  10. package/lib/codegen/model/seal-get-rfq-quotes-response.d.ts +31 -0
  11. package/lib/codegen/model/seal-get-rfq-quotes-response.js +15 -0
  12. package/lib/codegen/model/seal-get-rfq-requests-response.d.ts +31 -0
  13. package/lib/codegen/model/seal-get-rfq-requests-response.js +15 -0
  14. package/lib/codegen/model/seal-rfq-contract-config.d.ts +32 -0
  15. package/lib/codegen/model/seal-rfq-contract-config.js +15 -0
  16. package/lib/codegen/model/seal-rfq-contract-params.d.ts +54 -0
  17. package/lib/codegen/model/seal-rfq-contract-params.js +15 -0
  18. package/lib/codegen/model/seal-rfq-quote.d.ts +98 -0
  19. package/lib/codegen/model/seal-rfq-quote.js +15 -0
  20. package/lib/codegen/model/seal-rfq-request.d.ts +73 -0
  21. package/lib/codegen/model/seal-rfq-request.js +15 -0
  22. package/lib/codegen/model/seal-submit-quote-request.d.ts +84 -0
  23. package/lib/codegen/model/seal-submit-quote-request.js +15 -0
  24. package/lib/codegen/model/seal-submit-quote-response.d.ts +24 -0
  25. package/lib/codegen/model/seal-submit-quote-response.js +15 -0
  26. package/lib/codegen/model/seal-submit-rfq-request.d.ts +60 -0
  27. package/lib/codegen/model/seal-submit-rfq-request.js +15 -0
  28. package/lib/codegen/model/seal-submit-rfq-response.d.ts +24 -0
  29. package/lib/codegen/model/seal-submit-rfq-response.js +15 -0
  30. package/lib/codegen/model/types-rfq-quote-order-by-property.d.ts +23 -0
  31. package/lib/codegen/model/types-rfq-quote-order-by-property.js +29 -0
  32. package/lib/codegen/model/types-rfq-quote-order-by.d.ts +31 -0
  33. package/lib/codegen/model/types-rfq-quote-order-by.js +15 -0
  34. package/lib/codegen/model/types-rfq-requests-order-by-property.d.ts +23 -0
  35. package/lib/codegen/model/types-rfq-requests-order-by-property.js +29 -0
  36. package/lib/codegen/model/types-rfq-requests-order-by.d.ts +31 -0
  37. package/lib/codegen/model/types-rfq-requests-order-by.js +15 -0
  38. package/package.json +1 -1
@@ -29,11 +29,18 @@ import type { SealGetOrderReservationsResponse } from '../model';
29
29
  import type { SealGetOrdersResponse } from '../model';
30
30
  import type { SealGetPairPriceResponse } from '../model';
31
31
  import type { SealGetPairsResponse } from '../model';
32
+ import type { SealGetRfqNonceResponse } from '../model';
33
+ import type { SealGetRfqQuotesResponse } from '../model';
34
+ import type { SealGetRfqRequestsResponse } from '../model';
32
35
  import type { SealGetSealContractParamsResponse } from '../model';
33
36
  import type { SealGetSyncStateResponse } from '../model';
34
37
  import type { SealGetTokenPermitApprovalsResponse } from '../model';
35
38
  import type { SealGetTokensResponse } from '../model';
36
39
  import type { SealIssueGreenlightResponse } from '../model';
40
+ import type { SealSubmitQuoteRequest } from '../model';
41
+ import type { SealSubmitQuoteResponse } from '../model';
42
+ import type { SealSubmitRfqRequest } from '../model';
43
+ import type { SealSubmitRfqResponse } from '../model';
37
44
  /**
38
45
  * SealClient - axios parameter creator
39
46
  * @export
@@ -197,6 +204,48 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
197
204
  * @throws {RequiredError}
198
205
  */
199
206
  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>;
207
+ /**
208
+ *
209
+ * @param {string} owner
210
+ * @param {string} chainId
211
+ * @param {*} [options] Override http request option.
212
+ * @throws {RequiredError}
213
+ */
214
+ getRfqNonce: (owner: string, chainId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
215
+ /**
216
+ *
217
+ * @param {string} chainId
218
+ * @param {string} [quoteHash]
219
+ * @param {string} [requestId]
220
+ * @param {string} [offerer]
221
+ * @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
222
+ * @param {boolean} [orderByDescending]
223
+ * @param {string} [paginationKey]
224
+ * @param {number} [paginationLimit]
225
+ * @param {boolean} [paginationCountTotal]
226
+ * @param {*} [options] Override http request option.
227
+ * @throws {RequiredError}
228
+ */
229
+ getRfqQuotes: (chainId: string, quoteHash?: string, requestId?: string, offerer?: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
230
+ /**
231
+ *
232
+ * @param {string} [id]
233
+ * @param {string} [chainId]
234
+ * @param {string} [requester]
235
+ * @param {string} [tokenIn]
236
+ * @param {string} [tokenOut]
237
+ * @param {number} [creationTimeAfter]
238
+ * @param {number} [requestDeadlineAfter]
239
+ * @param {number} [buyInDeadlineAfter]
240
+ * @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
241
+ * @param {boolean} [orderByDescending]
242
+ * @param {string} [paginationKey]
243
+ * @param {number} [paginationLimit]
244
+ * @param {boolean} [paginationCountTotal]
245
+ * @param {*} [options] Override http request option.
246
+ * @throws {RequiredError}
247
+ */
248
+ getRfqRequests: (id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number, buyInDeadlineAfter?: number, orderByProperty?: GetRfqRequestsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
200
249
  /**
201
250
  *
202
251
  * @param {string} [chainId]
@@ -246,6 +295,20 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
246
295
  * @throws {RequiredError}
247
296
  */
248
297
  issueGreenlight: (chainId?: string, executor?: string, request?: string, requestHash?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
298
+ /**
299
+ *
300
+ * @param {SealSubmitQuoteRequest} body
301
+ * @param {*} [options] Override http request option.
302
+ * @throws {RequiredError}
303
+ */
304
+ submitQuote: (body: SealSubmitQuoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
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>;
249
312
  /**
250
313
  *
251
314
  * @param {*} [options] Override http request option.
@@ -416,6 +479,48 @@ export declare const SealClientFp: (configuration?: Configuration) => {
416
479
  * @throws {RequiredError}
417
480
  */
418
481
  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>>;
482
+ /**
483
+ *
484
+ * @param {string} owner
485
+ * @param {string} chainId
486
+ * @param {*} [options] Override http request option.
487
+ * @throws {RequiredError}
488
+ */
489
+ getRfqNonce(owner: string, chainId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqNonceResponse>>;
490
+ /**
491
+ *
492
+ * @param {string} chainId
493
+ * @param {string} [quoteHash]
494
+ * @param {string} [requestId]
495
+ * @param {string} [offerer]
496
+ * @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
497
+ * @param {boolean} [orderByDescending]
498
+ * @param {string} [paginationKey]
499
+ * @param {number} [paginationLimit]
500
+ * @param {boolean} [paginationCountTotal]
501
+ * @param {*} [options] Override http request option.
502
+ * @throws {RequiredError}
503
+ */
504
+ getRfqQuotes(chainId: string, quoteHash?: string, requestId?: string, offerer?: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqQuotesResponse>>;
505
+ /**
506
+ *
507
+ * @param {string} [id]
508
+ * @param {string} [chainId]
509
+ * @param {string} [requester]
510
+ * @param {string} [tokenIn]
511
+ * @param {string} [tokenOut]
512
+ * @param {number} [creationTimeAfter]
513
+ * @param {number} [requestDeadlineAfter]
514
+ * @param {number} [buyInDeadlineAfter]
515
+ * @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
516
+ * @param {boolean} [orderByDescending]
517
+ * @param {string} [paginationKey]
518
+ * @param {number} [paginationLimit]
519
+ * @param {boolean} [paginationCountTotal]
520
+ * @param {*} [options] Override http request option.
521
+ * @throws {RequiredError}
522
+ */
523
+ getRfqRequests(id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number, buyInDeadlineAfter?: number, orderByProperty?: GetRfqRequestsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqRequestsResponse>>;
419
524
  /**
420
525
  *
421
526
  * @param {string} [chainId]
@@ -465,6 +570,20 @@ export declare const SealClientFp: (configuration?: Configuration) => {
465
570
  * @throws {RequiredError}
466
571
  */
467
572
  issueGreenlight(chainId?: string, executor?: string, request?: string, requestHash?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealIssueGreenlightResponse>>;
573
+ /**
574
+ *
575
+ * @param {SealSubmitQuoteRequest} body
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
583
+ * @param {*} [options] Override http request option.
584
+ * @throws {RequiredError}
585
+ */
586
+ submitRfq(body: SealSubmitRfqRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealSubmitRfqResponse>>;
468
587
  /**
469
588
  *
470
589
  * @param {*} [options] Override http request option.
@@ -574,6 +693,27 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
574
693
  * @throws {RequiredError}
575
694
  */
576
695
  getPairs(requestParameters?: SealClientGetPairsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetPairsResponse>;
696
+ /**
697
+ *
698
+ * @param {SealClientGetRfqNonceRequest} requestParameters Request parameters.
699
+ * @param {*} [options] Override http request option.
700
+ * @throws {RequiredError}
701
+ */
702
+ getRfqNonce(requestParameters: SealClientGetRfqNonceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetRfqNonceResponse>;
703
+ /**
704
+ *
705
+ * @param {SealClientGetRfqQuotesRequest} requestParameters Request parameters.
706
+ * @param {*} [options] Override http request option.
707
+ * @throws {RequiredError}
708
+ */
709
+ getRfqQuotes(requestParameters: SealClientGetRfqQuotesRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetRfqQuotesResponse>;
710
+ /**
711
+ *
712
+ * @param {SealClientGetRfqRequestsRequest} requestParameters Request parameters.
713
+ * @param {*} [options] Override http request option.
714
+ * @throws {RequiredError}
715
+ */
716
+ getRfqRequests(requestParameters?: SealClientGetRfqRequestsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetRfqRequestsResponse>;
577
717
  /**
578
718
  *
579
719
  * @param {SealClientGetSealContractParamsRequest} requestParameters Request parameters.
@@ -608,6 +748,20 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
608
748
  * @throws {RequiredError}
609
749
  */
610
750
  issueGreenlight(requestParameters?: SealClientIssueGreenlightRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealIssueGreenlightResponse>;
751
+ /**
752
+ *
753
+ * @param {SealClientSubmitQuoteRequest} requestParameters Request parameters.
754
+ * @param {*} [options] Override http request option.
755
+ * @throws {RequiredError}
756
+ */
757
+ submitQuote(requestParameters: SealClientSubmitQuoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealSubmitQuoteResponse>;
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>;
611
765
  /**
612
766
  *
613
767
  * @param {*} [options] Override http request option.
@@ -1150,6 +1304,171 @@ export interface SealClientGetPairsRequest {
1150
1304
  */
1151
1305
  readonly excludeEmpty?: boolean;
1152
1306
  }
1307
+ /**
1308
+ * Request parameters for getRfqNonce operation in SealClient.
1309
+ * @export
1310
+ * @interface SealClientGetRfqNonceRequest
1311
+ */
1312
+ export interface SealClientGetRfqNonceRequest {
1313
+ /**
1314
+ *
1315
+ * @type {string}
1316
+ * @memberof SealClientGetRfqNonce
1317
+ */
1318
+ readonly owner: string;
1319
+ /**
1320
+ *
1321
+ * @type {string}
1322
+ * @memberof SealClientGetRfqNonce
1323
+ */
1324
+ readonly chainId: string;
1325
+ }
1326
+ /**
1327
+ * Request parameters for getRfqQuotes operation in SealClient.
1328
+ * @export
1329
+ * @interface SealClientGetRfqQuotesRequest
1330
+ */
1331
+ export interface SealClientGetRfqQuotesRequest {
1332
+ /**
1333
+ *
1334
+ * @type {string}
1335
+ * @memberof SealClientGetRfqQuotes
1336
+ */
1337
+ readonly chainId: string;
1338
+ /**
1339
+ *
1340
+ * @type {string}
1341
+ * @memberof SealClientGetRfqQuotes
1342
+ */
1343
+ readonly quoteHash?: string;
1344
+ /**
1345
+ *
1346
+ * @type {string}
1347
+ * @memberof SealClientGetRfqQuotes
1348
+ */
1349
+ readonly requestId?: string;
1350
+ /**
1351
+ *
1352
+ * @type {string}
1353
+ * @memberof SealClientGetRfqQuotes
1354
+ */
1355
+ readonly offerer?: string;
1356
+ /**
1357
+ *
1358
+ * @type {'RfqQuoteOrderByProperty_UNSPECIFIED' | 'RfqQuoteOrderByProperty_ID' | 'RfqQuoteOrderByProperty_SUBMISSION_TIME' | 'RfqQuoteOrderByProperty_SETTLEMENT_TIME' | 'RfqQuoteOrderByProperty_DEADLINE'}
1359
+ * @memberof SealClientGetRfqQuotes
1360
+ */
1361
+ readonly orderByProperty?: GetRfqQuotesOrderByPropertyEnum;
1362
+ /**
1363
+ *
1364
+ * @type {boolean}
1365
+ * @memberof SealClientGetRfqQuotes
1366
+ */
1367
+ readonly orderByDescending?: boolean;
1368
+ /**
1369
+ *
1370
+ * @type {string}
1371
+ * @memberof SealClientGetRfqQuotes
1372
+ */
1373
+ readonly paginationKey?: string;
1374
+ /**
1375
+ *
1376
+ * @type {number}
1377
+ * @memberof SealClientGetRfqQuotes
1378
+ */
1379
+ readonly paginationLimit?: number;
1380
+ /**
1381
+ *
1382
+ * @type {boolean}
1383
+ * @memberof SealClientGetRfqQuotes
1384
+ */
1385
+ readonly paginationCountTotal?: boolean;
1386
+ }
1387
+ /**
1388
+ * Request parameters for getRfqRequests operation in SealClient.
1389
+ * @export
1390
+ * @interface SealClientGetRfqRequestsRequest
1391
+ */
1392
+ export interface SealClientGetRfqRequestsRequest {
1393
+ /**
1394
+ *
1395
+ * @type {string}
1396
+ * @memberof SealClientGetRfqRequests
1397
+ */
1398
+ readonly id?: string;
1399
+ /**
1400
+ *
1401
+ * @type {string}
1402
+ * @memberof SealClientGetRfqRequests
1403
+ */
1404
+ readonly chainId?: string;
1405
+ /**
1406
+ *
1407
+ * @type {string}
1408
+ * @memberof SealClientGetRfqRequests
1409
+ */
1410
+ readonly requester?: string;
1411
+ /**
1412
+ *
1413
+ * @type {string}
1414
+ * @memberof SealClientGetRfqRequests
1415
+ */
1416
+ readonly tokenIn?: string;
1417
+ /**
1418
+ *
1419
+ * @type {string}
1420
+ * @memberof SealClientGetRfqRequests
1421
+ */
1422
+ readonly tokenOut?: string;
1423
+ /**
1424
+ *
1425
+ * @type {number}
1426
+ * @memberof SealClientGetRfqRequests
1427
+ */
1428
+ readonly creationTimeAfter?: number;
1429
+ /**
1430
+ *
1431
+ * @type {number}
1432
+ * @memberof SealClientGetRfqRequests
1433
+ */
1434
+ readonly requestDeadlineAfter?: number;
1435
+ /**
1436
+ *
1437
+ * @type {number}
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}
1450
+ * @memberof SealClientGetRfqRequests
1451
+ */
1452
+ readonly orderByDescending?: boolean;
1453
+ /**
1454
+ *
1455
+ * @type {string}
1456
+ * @memberof SealClientGetRfqRequests
1457
+ */
1458
+ readonly paginationKey?: string;
1459
+ /**
1460
+ *
1461
+ * @type {number}
1462
+ * @memberof SealClientGetRfqRequests
1463
+ */
1464
+ readonly paginationLimit?: number;
1465
+ /**
1466
+ *
1467
+ * @type {boolean}
1468
+ * @memberof SealClientGetRfqRequests
1469
+ */
1470
+ readonly paginationCountTotal?: boolean;
1471
+ }
1153
1472
  /**
1154
1473
  * Request parameters for getSealContractParams operation in SealClient.
1155
1474
  * @export
@@ -1292,6 +1611,32 @@ export interface SealClientIssueGreenlightRequest {
1292
1611
  */
1293
1612
  readonly requestHash?: string;
1294
1613
  }
1614
+ /**
1615
+ * Request parameters for submitQuote operation in SealClient.
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.
1629
+ * @export
1630
+ * @interface SealClientSubmitRfqRequest
1631
+ */
1632
+ export interface SealClientSubmitRfqRequest {
1633
+ /**
1634
+ *
1635
+ * @type {SealSubmitRfqRequest}
1636
+ * @memberof SealClientSubmitRfq
1637
+ */
1638
+ readonly body: SealSubmitRfqRequest;
1639
+ }
1295
1640
  /**
1296
1641
  * SealClient - object-oriented interface
1297
1642
  * @export
@@ -1410,6 +1755,30 @@ export declare class SealClient extends BaseAPI {
1410
1755
  * @memberof SealClient
1411
1756
  */
1412
1757
  getPairs(requestParameters?: SealClientGetPairsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetPairsResponse, any, {}>>;
1758
+ /**
1759
+ *
1760
+ * @param {SealClientGetRfqNonceRequest} requestParameters Request parameters.
1761
+ * @param {*} [options] Override http request option.
1762
+ * @throws {RequiredError}
1763
+ * @memberof SealClient
1764
+ */
1765
+ getRfqNonce(requestParameters: SealClientGetRfqNonceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetRfqNonceResponse, any, {}>>;
1766
+ /**
1767
+ *
1768
+ * @param {SealClientGetRfqQuotesRequest} requestParameters Request parameters.
1769
+ * @param {*} [options] Override http request option.
1770
+ * @throws {RequiredError}
1771
+ * @memberof SealClient
1772
+ */
1773
+ getRfqQuotes(requestParameters: SealClientGetRfqQuotesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetRfqQuotesResponse, any, {}>>;
1774
+ /**
1775
+ *
1776
+ * @param {SealClientGetRfqRequestsRequest} requestParameters Request parameters.
1777
+ * @param {*} [options] Override http request option.
1778
+ * @throws {RequiredError}
1779
+ * @memberof SealClient
1780
+ */
1781
+ getRfqRequests(requestParameters?: SealClientGetRfqRequestsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetRfqRequestsResponse, any, {}>>;
1413
1782
  /**
1414
1783
  *
1415
1784
  * @param {SealClientGetSealContractParamsRequest} requestParameters Request parameters.
@@ -1449,6 +1818,22 @@ export declare class SealClient extends BaseAPI {
1449
1818
  * @memberof SealClient
1450
1819
  */
1451
1820
  issueGreenlight(requestParameters?: SealClientIssueGreenlightRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealIssueGreenlightResponse, any, {}>>;
1821
+ /**
1822
+ *
1823
+ * @param {SealClientSubmitQuoteRequest} requestParameters Request parameters.
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.
1832
+ * @param {*} [options] Override http request option.
1833
+ * @throws {RequiredError}
1834
+ * @memberof SealClient
1835
+ */
1836
+ submitRfq(requestParameters: SealClientSubmitRfqRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealSubmitRfqResponse, any, {}>>;
1452
1837
  /**
1453
1838
  *
1454
1839
  * @param {*} [options] Override http request option.
@@ -1531,6 +1916,28 @@ export declare enum GetOrdersOrderByPropertyEnum {
1531
1916
  export declare enum GetPairsOrderByPropertyEnum {
1532
1917
  PairsOrderByPropertyUnspecified = "PairsOrderByProperty_UNSPECIFIED"
1533
1918
  }
1919
+ /**
1920
+ * @export
1921
+ * @enum {string}
1922
+ */
1923
+ export declare enum GetRfqQuotesOrderByPropertyEnum {
1924
+ RfqQuoteOrderByPropertyUnspecified = "RfqQuoteOrderByProperty_UNSPECIFIED",
1925
+ RfqQuoteOrderByPropertyId = "RfqQuoteOrderByProperty_ID",
1926
+ RfqQuoteOrderByPropertySubmissionTime = "RfqQuoteOrderByProperty_SUBMISSION_TIME",
1927
+ RfqQuoteOrderByPropertySettlementTime = "RfqQuoteOrderByProperty_SETTLEMENT_TIME",
1928
+ RfqQuoteOrderByPropertyDeadline = "RfqQuoteOrderByProperty_DEADLINE"
1929
+ }
1930
+ /**
1931
+ * @export
1932
+ * @enum {string}
1933
+ */
1934
+ export declare enum GetRfqRequestsOrderByPropertyEnum {
1935
+ RfqRequestsOrderByPropertyUnspecified = "RfqRequestsOrderByProperty_UNSPECIFIED",
1936
+ RfqRequestsOrderByPropertyId = "RfqRequestsOrderByProperty_ID",
1937
+ RfqRequestsOrderByPropertyCreationTime = "RfqRequestsOrderByProperty_CREATION_TIME",
1938
+ RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE",
1939
+ RfqRequestsOrderByPropertyBuyInDeadline = "RfqRequestsOrderByProperty_BUY_IN_DEADLINE"
1940
+ }
1534
1941
  /**
1535
1942
  * @export
1536
1943
  * @enum {string}