@seal-protocol/backendjs 0.0.97 → 0.0.99

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 (30) hide show
  1. package/lib/codegen/api/seal-client.d.ts +224 -13
  2. package/lib/codegen/api/seal-client.js +251 -12
  3. package/lib/codegen/model/index.d.ts +9 -0
  4. package/lib/codegen/model/index.js +9 -0
  5. package/lib/codegen/model/seal-chain-config.d.ts +7 -0
  6. package/lib/codegen/model/seal-get-rfq-nonce-response.d.ts +24 -0
  7. package/lib/codegen/model/seal-get-rfq-nonce-response.js +15 -0
  8. package/lib/codegen/model/seal-get-rfq-quotes-response.d.ts +31 -0
  9. package/lib/codegen/model/seal-get-rfq-quotes-response.js +15 -0
  10. package/lib/codegen/model/seal-order-reservation.d.ts +6 -0
  11. package/lib/codegen/model/seal-rfq-contract-config.d.ts +32 -0
  12. package/lib/codegen/model/seal-rfq-contract-config.js +15 -0
  13. package/lib/codegen/model/seal-rfq-contract-params.d.ts +54 -0
  14. package/lib/codegen/model/seal-rfq-contract-params.js +15 -0
  15. package/lib/codegen/model/seal-rfq-quote.d.ts +104 -0
  16. package/lib/codegen/model/seal-rfq-quote.js +15 -0
  17. package/lib/codegen/model/seal-rfq-request.d.ts +0 -6
  18. package/lib/codegen/model/seal-seal-contract-params.d.ts +12 -0
  19. package/lib/codegen/model/seal-submit-quote-request.d.ts +84 -0
  20. package/lib/codegen/model/seal-submit-quote-request.js +15 -0
  21. package/lib/codegen/model/seal-submit-quote-response.d.ts +24 -0
  22. package/lib/codegen/model/seal-submit-quote-response.js +15 -0
  23. package/lib/codegen/model/seal-submit-rfq-request.d.ts +0 -6
  24. package/lib/codegen/model/types-rfq-quote-order-by-property.d.ts +22 -0
  25. package/lib/codegen/model/types-rfq-quote-order-by-property.js +28 -0
  26. package/lib/codegen/model/types-rfq-quote-order-by.d.ts +31 -0
  27. package/lib/codegen/model/types-rfq-quote-order-by.js +15 -0
  28. package/lib/codegen/model/types-rfq-requests-order-by-property.d.ts +1 -2
  29. package/lib/codegen/model/types-rfq-requests-order-by-property.js +0 -1
  30. package/package.json +1 -1
@@ -29,12 +29,16 @@ 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';
32
34
  import type { SealGetRfqRequestsResponse } from '../model';
33
35
  import type { SealGetSealContractParamsResponse } from '../model';
34
36
  import type { SealGetSyncStateResponse } from '../model';
35
37
  import type { SealGetTokenPermitApprovalsResponse } from '../model';
36
38
  import type { SealGetTokensResponse } from '../model';
37
39
  import type { SealIssueGreenlightResponse } from '../model';
40
+ import type { SealSubmitQuoteRequest } from '../model';
41
+ import type { SealSubmitQuoteResponse } from '../model';
38
42
  import type { SealSubmitRfqRequest } from '../model';
39
43
  import type { SealSubmitRfqResponse } from '../model';
40
44
  /**
@@ -200,6 +204,30 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
200
204
  * @throws {RequiredError}
201
205
  */
202
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 {string} [id]
222
+ * @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
223
+ * @param {boolean} [orderByDescending]
224
+ * @param {string} [paginationKey]
225
+ * @param {number} [paginationLimit]
226
+ * @param {boolean} [paginationCountTotal]
227
+ * @param {*} [options] Override http request option.
228
+ * @throws {RequiredError}
229
+ */
230
+ getRfqQuotes: (chainId: string, quoteHash?: string, requestId?: string, offerer?: string, id?: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
203
231
  /**
204
232
  *
205
233
  * @param {string} [id]
@@ -209,7 +237,6 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
209
237
  * @param {string} [tokenOut]
210
238
  * @param {number} [creationTimeAfter]
211
239
  * @param {number} [requestDeadlineAfter]
212
- * @param {number} [buyInDeadlineAfter]
213
240
  * @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
214
241
  * @param {boolean} [orderByDescending]
215
242
  * @param {string} [paginationKey]
@@ -218,7 +245,7 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
218
245
  * @param {*} [options] Override http request option.
219
246
  * @throws {RequiredError}
220
247
  */
221
- 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>;
248
+ getRfqRequests: (id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number, orderByProperty?: GetRfqRequestsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
222
249
  /**
223
250
  *
224
251
  * @param {string} [chainId]
@@ -268,6 +295,13 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
268
295
  * @throws {RequiredError}
269
296
  */
270
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>;
271
305
  /**
272
306
  *
273
307
  * @param {SealSubmitRfqRequest} body
@@ -445,6 +479,30 @@ export declare const SealClientFp: (configuration?: Configuration) => {
445
479
  * @throws {RequiredError}
446
480
  */
447
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 {string} [id]
497
+ * @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
498
+ * @param {boolean} [orderByDescending]
499
+ * @param {string} [paginationKey]
500
+ * @param {number} [paginationLimit]
501
+ * @param {boolean} [paginationCountTotal]
502
+ * @param {*} [options] Override http request option.
503
+ * @throws {RequiredError}
504
+ */
505
+ getRfqQuotes(chainId: string, quoteHash?: string, requestId?: string, offerer?: string, id?: string, orderByProperty?: GetRfqQuotesOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqQuotesResponse>>;
448
506
  /**
449
507
  *
450
508
  * @param {string} [id]
@@ -454,7 +512,6 @@ export declare const SealClientFp: (configuration?: Configuration) => {
454
512
  * @param {string} [tokenOut]
455
513
  * @param {number} [creationTimeAfter]
456
514
  * @param {number} [requestDeadlineAfter]
457
- * @param {number} [buyInDeadlineAfter]
458
515
  * @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
459
516
  * @param {boolean} [orderByDescending]
460
517
  * @param {string} [paginationKey]
@@ -463,7 +520,7 @@ export declare const SealClientFp: (configuration?: Configuration) => {
463
520
  * @param {*} [options] Override http request option.
464
521
  * @throws {RequiredError}
465
522
  */
466
- 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>>;
523
+ getRfqRequests(id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number, orderByProperty?: GetRfqRequestsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqRequestsResponse>>;
467
524
  /**
468
525
  *
469
526
  * @param {string} [chainId]
@@ -513,6 +570,13 @@ export declare const SealClientFp: (configuration?: Configuration) => {
513
570
  * @throws {RequiredError}
514
571
  */
515
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>>;
516
580
  /**
517
581
  *
518
582
  * @param {SealSubmitRfqRequest} body
@@ -629,6 +693,20 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
629
693
  * @throws {RequiredError}
630
694
  */
631
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>;
632
710
  /**
633
711
  *
634
712
  * @param {SealClientGetRfqRequestsRequest} requestParameters Request parameters.
@@ -670,6 +748,13 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
670
748
  * @throws {RequiredError}
671
749
  */
672
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>;
673
758
  /**
674
759
  *
675
760
  * @param {SealClientSubmitRfqRequest} requestParameters Request parameters.
@@ -1219,6 +1304,92 @@ export interface SealClientGetPairsRequest {
1219
1304
  */
1220
1305
  readonly excludeEmpty?: boolean;
1221
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 {string}
1359
+ * @memberof SealClientGetRfqQuotes
1360
+ */
1361
+ readonly id?: string;
1362
+ /**
1363
+ *
1364
+ * @type {'RfqQuoteOrderByProperty_UNSPECIFIED' | 'RfqQuoteOrderByProperty_ID' | 'RfqQuoteOrderByProperty_SETTLEMENT_TIME' | 'RfqQuoteOrderByProperty_DEADLINE'}
1365
+ * @memberof SealClientGetRfqQuotes
1366
+ */
1367
+ readonly orderByProperty?: GetRfqQuotesOrderByPropertyEnum;
1368
+ /**
1369
+ *
1370
+ * @type {boolean}
1371
+ * @memberof SealClientGetRfqQuotes
1372
+ */
1373
+ readonly orderByDescending?: boolean;
1374
+ /**
1375
+ *
1376
+ * @type {string}
1377
+ * @memberof SealClientGetRfqQuotes
1378
+ */
1379
+ readonly paginationKey?: string;
1380
+ /**
1381
+ *
1382
+ * @type {number}
1383
+ * @memberof SealClientGetRfqQuotes
1384
+ */
1385
+ readonly paginationLimit?: number;
1386
+ /**
1387
+ *
1388
+ * @type {boolean}
1389
+ * @memberof SealClientGetRfqQuotes
1390
+ */
1391
+ readonly paginationCountTotal?: boolean;
1392
+ }
1222
1393
  /**
1223
1394
  * Request parameters for getRfqRequests operation in SealClient.
1224
1395
  * @export
@@ -1269,13 +1440,7 @@ export interface SealClientGetRfqRequestsRequest {
1269
1440
  readonly requestDeadlineAfter?: number;
1270
1441
  /**
1271
1442
  *
1272
- * @type {number}
1273
- * @memberof SealClientGetRfqRequests
1274
- */
1275
- readonly buyInDeadlineAfter?: number;
1276
- /**
1277
- *
1278
- * @type {'RfqRequestsOrderByProperty_UNSPECIFIED' | 'RfqRequestsOrderByProperty_ID' | 'RfqRequestsOrderByProperty_CREATION_TIME' | 'RfqRequestsOrderByProperty_REQUEST_DEADLINE' | 'RfqRequestsOrderByProperty_BUY_IN_DEADLINE'}
1443
+ * @type {'RfqRequestsOrderByProperty_UNSPECIFIED' | 'RfqRequestsOrderByProperty_ID' | 'RfqRequestsOrderByProperty_CREATION_TIME' | 'RfqRequestsOrderByProperty_REQUEST_DEADLINE'}
1279
1444
  * @memberof SealClientGetRfqRequests
1280
1445
  */
1281
1446
  readonly orderByProperty?: GetRfqRequestsOrderByPropertyEnum;
@@ -1446,6 +1611,19 @@ export interface SealClientIssueGreenlightRequest {
1446
1611
  */
1447
1612
  readonly requestHash?: string;
1448
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
+ }
1449
1627
  /**
1450
1628
  * Request parameters for submitRfq operation in SealClient.
1451
1629
  * @export
@@ -1577,6 +1755,22 @@ export declare class SealClient extends BaseAPI {
1577
1755
  * @memberof SealClient
1578
1756
  */
1579
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, {}>>;
1580
1774
  /**
1581
1775
  *
1582
1776
  * @param {SealClientGetRfqRequestsRequest} requestParameters Request parameters.
@@ -1624,6 +1818,14 @@ export declare class SealClient extends BaseAPI {
1624
1818
  * @memberof SealClient
1625
1819
  */
1626
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, {}>>;
1627
1829
  /**
1628
1830
  *
1629
1831
  * @param {SealClientSubmitRfqRequest} requestParameters Request parameters.
@@ -1714,6 +1916,16 @@ export declare enum GetOrdersOrderByPropertyEnum {
1714
1916
  export declare enum GetPairsOrderByPropertyEnum {
1715
1917
  PairsOrderByPropertyUnspecified = "PairsOrderByProperty_UNSPECIFIED"
1716
1918
  }
1919
+ /**
1920
+ * @export
1921
+ * @enum {string}
1922
+ */
1923
+ export declare enum GetRfqQuotesOrderByPropertyEnum {
1924
+ RfqQuoteOrderByPropertyUnspecified = "RfqQuoteOrderByProperty_UNSPECIFIED",
1925
+ RfqQuoteOrderByPropertyId = "RfqQuoteOrderByProperty_ID",
1926
+ RfqQuoteOrderByPropertySettlementTime = "RfqQuoteOrderByProperty_SETTLEMENT_TIME",
1927
+ RfqQuoteOrderByPropertyDeadline = "RfqQuoteOrderByProperty_DEADLINE"
1928
+ }
1717
1929
  /**
1718
1930
  * @export
1719
1931
  * @enum {string}
@@ -1722,8 +1934,7 @@ export declare enum GetRfqRequestsOrderByPropertyEnum {
1722
1934
  RfqRequestsOrderByPropertyUnspecified = "RfqRequestsOrderByProperty_UNSPECIFIED",
1723
1935
  RfqRequestsOrderByPropertyId = "RfqRequestsOrderByProperty_ID",
1724
1936
  RfqRequestsOrderByPropertyCreationTime = "RfqRequestsOrderByProperty_CREATION_TIME",
1725
- RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE",
1726
- RfqRequestsOrderByPropertyBuyInDeadline = "RfqRequestsOrderByProperty_BUY_IN_DEADLINE"
1937
+ RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE"
1727
1938
  }
1728
1939
  /**
1729
1940
  * @export