@seal-protocol/backendjs 0.0.99 → 0.0.105
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/codegen/api/seal-client.d.ts +328 -139
- package/lib/codegen/api/seal-client.js +327 -172
- package/lib/codegen/model/index.d.ts +8 -4
- package/lib/codegen/model/index.js +8 -4
- package/lib/codegen/model/{seal-submit-quote-request.d.ts → seal-create-rfq-quote-request.d.ts} +13 -13
- package/lib/codegen/model/{seal-submit-rfq-response.d.ts → seal-create-rfq-quote-response.d.ts} +3 -3
- package/lib/codegen/model/{seal-submit-rfq-request.d.ts → seal-create-rfq-request-request.d.ts} +8 -8
- package/lib/codegen/model/{seal-submit-quote-response.d.ts → seal-create-rfq-request-response.d.ts} +3 -3
- package/lib/codegen/model/seal-get-rfq-commitment-response.d.ts +31 -0
- package/lib/codegen/model/seal-get-rfq-commitment-response.js +15 -0
- package/lib/codegen/model/seal-rfq-commitment.d.ts +163 -0
- package/lib/codegen/model/seal-rfq-commitment.js +15 -0
- package/lib/codegen/model/seal-rfq-contract-params.d.ts +0 -6
- package/lib/codegen/model/seal-rfq-quote.d.ts +51 -4
- package/lib/codegen/model/seal-rfq-request.d.ts +12 -0
- package/lib/codegen/model/types-rfq-commitment-order-by-property.d.ts +22 -0
- package/lib/codegen/model/types-rfq-commitment-order-by-property.js +28 -0
- package/lib/codegen/model/types-rfq-commitment-order-by.d.ts +31 -0
- package/lib/codegen/model/types-rfq-commitment-order-by.js +15 -0
- package/package.json +1 -1
- /package/lib/codegen/model/{seal-submit-quote-request.js → seal-create-rfq-quote-request.js} +0 -0
- /package/lib/codegen/model/{seal-submit-quote-response.js → seal-create-rfq-quote-response.js} +0 -0
- /package/lib/codegen/model/{seal-submit-rfq-request.js → seal-create-rfq-request-request.js} +0 -0
- /package/lib/codegen/model/{seal-submit-rfq-response.js → seal-create-rfq-request-response.js} +0 -0
|
@@ -18,6 +18,10 @@ import type { SealCreateExecutionMessageRequest } from '../model';
|
|
|
18
18
|
import type { SealCreateExecutionMessageResponse } from '../model';
|
|
19
19
|
import type { SealCreateOrderRequest } from '../model';
|
|
20
20
|
import type { SealCreateOrderResponse } from '../model';
|
|
21
|
+
import type { SealCreateRfqQuoteRequest } from '../model';
|
|
22
|
+
import type { SealCreateRfqQuoteResponse } from '../model';
|
|
23
|
+
import type { SealCreateRfqRequestRequest } from '../model';
|
|
24
|
+
import type { SealCreateRfqRequestResponse } from '../model';
|
|
21
25
|
import type { SealCreateTokenPermitApprovalRequest } from '../model';
|
|
22
26
|
import type { SealDeleteTokenPermitApprovalRequest } from '../model';
|
|
23
27
|
import type { SealGetChainsResponse } from '../model';
|
|
@@ -29,6 +33,7 @@ import type { SealGetOrderReservationsResponse } from '../model';
|
|
|
29
33
|
import type { SealGetOrdersResponse } from '../model';
|
|
30
34
|
import type { SealGetPairPriceResponse } from '../model';
|
|
31
35
|
import type { SealGetPairsResponse } from '../model';
|
|
36
|
+
import type { SealGetRfqCommitmentResponse } from '../model';
|
|
32
37
|
import type { SealGetRfqNonceResponse } from '../model';
|
|
33
38
|
import type { SealGetRfqQuotesResponse } from '../model';
|
|
34
39
|
import type { SealGetRfqRequestsResponse } from '../model';
|
|
@@ -37,10 +42,6 @@ import type { SealGetSyncStateResponse } from '../model';
|
|
|
37
42
|
import type { SealGetTokenPermitApprovalsResponse } from '../model';
|
|
38
43
|
import type { SealGetTokensResponse } from '../model';
|
|
39
44
|
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';
|
|
44
45
|
/**
|
|
45
46
|
* SealClient - axios parameter creator
|
|
46
47
|
* @export
|
|
@@ -84,6 +85,20 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
84
85
|
* @throws {RequiredError}
|
|
85
86
|
*/
|
|
86
87
|
createOrder: (body: SealCreateOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @param {SealCreateRfqQuoteRequest} body
|
|
91
|
+
* @param {*} [options] Override http request option.
|
|
92
|
+
* @throws {RequiredError}
|
|
93
|
+
*/
|
|
94
|
+
createRfqQuote: (body: SealCreateRfqQuoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
95
|
+
/**
|
|
96
|
+
*
|
|
97
|
+
* @param {SealCreateRfqRequestRequest} body
|
|
98
|
+
* @param {*} [options] Override http request option.
|
|
99
|
+
* @throws {RequiredError}
|
|
100
|
+
*/
|
|
101
|
+
createRfqRequest: (body: SealCreateRfqRequestRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
87
102
|
/**
|
|
88
103
|
*
|
|
89
104
|
* @param {SealCreateTokenPermitApprovalRequest} body
|
|
@@ -204,6 +219,23 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
204
219
|
* @throws {RequiredError}
|
|
205
220
|
*/
|
|
206
221
|
getPairs: (paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, orderByProperty?: GetPairsOrderByPropertyEnum, orderByDescending?: boolean, chainId?: string, tokenIn?: string, tokenOut?: string, reservableOnly?: boolean, excludeEmpty?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @param {GetRfqCommitmentsOrderByPropertyEnum} [orderByProperty]
|
|
225
|
+
* @param {boolean} [orderByDescending]
|
|
226
|
+
* @param {string} [paginationKey]
|
|
227
|
+
* @param {number} [paginationLimit]
|
|
228
|
+
* @param {boolean} [paginationCountTotal]
|
|
229
|
+
* @param {string} [chainId]
|
|
230
|
+
* @param {string} [maker]
|
|
231
|
+
* @param {string} [taker]
|
|
232
|
+
* @param {string} [tokenIn]
|
|
233
|
+
* @param {string} [tokenOut]
|
|
234
|
+
* @param {string} [commitmentId]
|
|
235
|
+
* @param {*} [options] Override http request option.
|
|
236
|
+
* @throws {RequiredError}
|
|
237
|
+
*/
|
|
238
|
+
getRfqCommitments: (orderByProperty?: GetRfqCommitmentsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, chainId?: string, maker?: string, taker?: string, tokenIn?: string, tokenOut?: string, commitmentId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
207
239
|
/**
|
|
208
240
|
*
|
|
209
241
|
* @param {string} owner
|
|
@@ -215,21 +247,29 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
215
247
|
/**
|
|
216
248
|
*
|
|
217
249
|
* @param {string} chainId
|
|
218
|
-
* @param {string} [quoteHash]
|
|
219
|
-
* @param {string} [requestId]
|
|
220
|
-
* @param {string} [offerer]
|
|
221
|
-
* @param {string} [id]
|
|
222
250
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
223
251
|
* @param {boolean} [orderByDescending]
|
|
224
252
|
* @param {string} [paginationKey]
|
|
225
253
|
* @param {number} [paginationLimit]
|
|
226
254
|
* @param {boolean} [paginationCountTotal]
|
|
255
|
+
* @param {string} [quoteHash]
|
|
256
|
+
* @param {string} [requestId]
|
|
257
|
+
* @param {string} [offerer]
|
|
258
|
+
* @param {string} [id]
|
|
259
|
+
* @param {boolean} [onChain] TODO requires indexer
|
|
260
|
+
* @param {number} [settlementTimeAfter]
|
|
261
|
+
* @param {number} [deadlineAfter]
|
|
227
262
|
* @param {*} [options] Override http request option.
|
|
228
263
|
* @throws {RequiredError}
|
|
229
264
|
*/
|
|
230
|
-
getRfqQuotes: (chainId: string,
|
|
265
|
+
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
266
|
/**
|
|
232
267
|
*
|
|
268
|
+
* @param {string} [paginationKey]
|
|
269
|
+
* @param {number} [paginationLimit]
|
|
270
|
+
* @param {boolean} [paginationCountTotal]
|
|
271
|
+
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
272
|
+
* @param {boolean} [orderByDescending]
|
|
233
273
|
* @param {string} [id]
|
|
234
274
|
* @param {string} [chainId]
|
|
235
275
|
* @param {string} [requester]
|
|
@@ -237,15 +277,14 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
237
277
|
* @param {string} [tokenOut]
|
|
238
278
|
* @param {number} [creationTimeAfter]
|
|
239
279
|
* @param {number} [requestDeadlineAfter]
|
|
240
|
-
* @param {
|
|
241
|
-
* @param {
|
|
242
|
-
* @param {string} [
|
|
243
|
-
* @param {
|
|
244
|
-
* @param {boolean} [paginationCountTotal]
|
|
280
|
+
* @param {string} [depositToken]
|
|
281
|
+
* @param {string} [minDepositLessThan]
|
|
282
|
+
* @param {string} [minDepositPerStableLessThan] TODO requires price.
|
|
283
|
+
* @param {string} [excludedOfferer] TODO requires join
|
|
245
284
|
* @param {*} [options] Override http request option.
|
|
246
285
|
* @throws {RequiredError}
|
|
247
286
|
*/
|
|
248
|
-
getRfqRequests: (id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number,
|
|
287
|
+
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
288
|
/**
|
|
250
289
|
*
|
|
251
290
|
* @param {string} [chainId]
|
|
@@ -295,20 +334,6 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
295
334
|
* @throws {RequiredError}
|
|
296
335
|
*/
|
|
297
336
|
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>;
|
|
312
337
|
/**
|
|
313
338
|
*
|
|
314
339
|
* @param {*} [options] Override http request option.
|
|
@@ -359,6 +384,20 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
359
384
|
* @throws {RequiredError}
|
|
360
385
|
*/
|
|
361
386
|
createOrder(body: SealCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealCreateOrderResponse>>;
|
|
387
|
+
/**
|
|
388
|
+
*
|
|
389
|
+
* @param {SealCreateRfqQuoteRequest} body
|
|
390
|
+
* @param {*} [options] Override http request option.
|
|
391
|
+
* @throws {RequiredError}
|
|
392
|
+
*/
|
|
393
|
+
createRfqQuote(body: SealCreateRfqQuoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealCreateRfqQuoteResponse>>;
|
|
394
|
+
/**
|
|
395
|
+
*
|
|
396
|
+
* @param {SealCreateRfqRequestRequest} body
|
|
397
|
+
* @param {*} [options] Override http request option.
|
|
398
|
+
* @throws {RequiredError}
|
|
399
|
+
*/
|
|
400
|
+
createRfqRequest(body: SealCreateRfqRequestRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealCreateRfqRequestResponse>>;
|
|
362
401
|
/**
|
|
363
402
|
*
|
|
364
403
|
* @param {SealCreateTokenPermitApprovalRequest} body
|
|
@@ -479,6 +518,23 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
479
518
|
* @throws {RequiredError}
|
|
480
519
|
*/
|
|
481
520
|
getPairs(paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, orderByProperty?: GetPairsOrderByPropertyEnum, orderByDescending?: boolean, chainId?: string, tokenIn?: string, tokenOut?: string, reservableOnly?: boolean, excludeEmpty?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetPairsResponse>>;
|
|
521
|
+
/**
|
|
522
|
+
*
|
|
523
|
+
* @param {GetRfqCommitmentsOrderByPropertyEnum} [orderByProperty]
|
|
524
|
+
* @param {boolean} [orderByDescending]
|
|
525
|
+
* @param {string} [paginationKey]
|
|
526
|
+
* @param {number} [paginationLimit]
|
|
527
|
+
* @param {boolean} [paginationCountTotal]
|
|
528
|
+
* @param {string} [chainId]
|
|
529
|
+
* @param {string} [maker]
|
|
530
|
+
* @param {string} [taker]
|
|
531
|
+
* @param {string} [tokenIn]
|
|
532
|
+
* @param {string} [tokenOut]
|
|
533
|
+
* @param {string} [commitmentId]
|
|
534
|
+
* @param {*} [options] Override http request option.
|
|
535
|
+
* @throws {RequiredError}
|
|
536
|
+
*/
|
|
537
|
+
getRfqCommitments(orderByProperty?: GetRfqCommitmentsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, chainId?: string, maker?: string, taker?: string, tokenIn?: string, tokenOut?: string, commitmentId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetRfqCommitmentResponse>>;
|
|
482
538
|
/**
|
|
483
539
|
*
|
|
484
540
|
* @param {string} owner
|
|
@@ -490,21 +546,29 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
490
546
|
/**
|
|
491
547
|
*
|
|
492
548
|
* @param {string} chainId
|
|
493
|
-
* @param {string} [quoteHash]
|
|
494
|
-
* @param {string} [requestId]
|
|
495
|
-
* @param {string} [offerer]
|
|
496
|
-
* @param {string} [id]
|
|
497
549
|
* @param {GetRfqQuotesOrderByPropertyEnum} [orderByProperty]
|
|
498
550
|
* @param {boolean} [orderByDescending]
|
|
499
551
|
* @param {string} [paginationKey]
|
|
500
552
|
* @param {number} [paginationLimit]
|
|
501
553
|
* @param {boolean} [paginationCountTotal]
|
|
554
|
+
* @param {string} [quoteHash]
|
|
555
|
+
* @param {string} [requestId]
|
|
556
|
+
* @param {string} [offerer]
|
|
557
|
+
* @param {string} [id]
|
|
558
|
+
* @param {boolean} [onChain] TODO requires indexer
|
|
559
|
+
* @param {number} [settlementTimeAfter]
|
|
560
|
+
* @param {number} [deadlineAfter]
|
|
502
561
|
* @param {*} [options] Override http request option.
|
|
503
562
|
* @throws {RequiredError}
|
|
504
563
|
*/
|
|
505
|
-
getRfqQuotes(chainId: string,
|
|
564
|
+
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
565
|
/**
|
|
507
566
|
*
|
|
567
|
+
* @param {string} [paginationKey]
|
|
568
|
+
* @param {number} [paginationLimit]
|
|
569
|
+
* @param {boolean} [paginationCountTotal]
|
|
570
|
+
* @param {GetRfqRequestsOrderByPropertyEnum} [orderByProperty]
|
|
571
|
+
* @param {boolean} [orderByDescending]
|
|
508
572
|
* @param {string} [id]
|
|
509
573
|
* @param {string} [chainId]
|
|
510
574
|
* @param {string} [requester]
|
|
@@ -512,15 +576,14 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
512
576
|
* @param {string} [tokenOut]
|
|
513
577
|
* @param {number} [creationTimeAfter]
|
|
514
578
|
* @param {number} [requestDeadlineAfter]
|
|
515
|
-
* @param {
|
|
516
|
-
* @param {
|
|
517
|
-
* @param {string} [
|
|
518
|
-
* @param {
|
|
519
|
-
* @param {boolean} [paginationCountTotal]
|
|
579
|
+
* @param {string} [depositToken]
|
|
580
|
+
* @param {string} [minDepositLessThan]
|
|
581
|
+
* @param {string} [minDepositPerStableLessThan] TODO requires price.
|
|
582
|
+
* @param {string} [excludedOfferer] TODO requires join
|
|
520
583
|
* @param {*} [options] Override http request option.
|
|
521
584
|
* @throws {RequiredError}
|
|
522
585
|
*/
|
|
523
|
-
getRfqRequests(id?: string, chainId?: string, requester?: string, tokenIn?: string, tokenOut?: string, creationTimeAfter?: number, requestDeadlineAfter?: number,
|
|
586
|
+
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
587
|
/**
|
|
525
588
|
*
|
|
526
589
|
* @param {string} [chainId]
|
|
@@ -570,20 +633,6 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
570
633
|
* @throws {RequiredError}
|
|
571
634
|
*/
|
|
572
635
|
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>>;
|
|
587
636
|
/**
|
|
588
637
|
*
|
|
589
638
|
* @param {*} [options] Override http request option.
|
|
@@ -630,6 +679,20 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
630
679
|
* @throws {RequiredError}
|
|
631
680
|
*/
|
|
632
681
|
createOrder(requestParameters: SealClientCreateOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealCreateOrderResponse>;
|
|
682
|
+
/**
|
|
683
|
+
*
|
|
684
|
+
* @param {SealClientCreateRfqQuoteRequest} requestParameters Request parameters.
|
|
685
|
+
* @param {*} [options] Override http request option.
|
|
686
|
+
* @throws {RequiredError}
|
|
687
|
+
*/
|
|
688
|
+
createRfqQuote(requestParameters: SealClientCreateRfqQuoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealCreateRfqQuoteResponse>;
|
|
689
|
+
/**
|
|
690
|
+
*
|
|
691
|
+
* @param {SealClientCreateRfqRequestRequest} requestParameters Request parameters.
|
|
692
|
+
* @param {*} [options] Override http request option.
|
|
693
|
+
* @throws {RequiredError}
|
|
694
|
+
*/
|
|
695
|
+
createRfqRequest(requestParameters: SealClientCreateRfqRequestRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealCreateRfqRequestResponse>;
|
|
633
696
|
/**
|
|
634
697
|
*
|
|
635
698
|
* @param {SealClientCreateTokenPermitApprovalRequest} requestParameters Request parameters.
|
|
@@ -693,6 +756,13 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
693
756
|
* @throws {RequiredError}
|
|
694
757
|
*/
|
|
695
758
|
getPairs(requestParameters?: SealClientGetPairsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetPairsResponse>;
|
|
759
|
+
/**
|
|
760
|
+
*
|
|
761
|
+
* @param {SealClientGetRfqCommitmentsRequest} requestParameters Request parameters.
|
|
762
|
+
* @param {*} [options] Override http request option.
|
|
763
|
+
* @throws {RequiredError}
|
|
764
|
+
*/
|
|
765
|
+
getRfqCommitments(requestParameters?: SealClientGetRfqCommitmentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetRfqCommitmentResponse>;
|
|
696
766
|
/**
|
|
697
767
|
*
|
|
698
768
|
* @param {SealClientGetRfqNonceRequest} requestParameters Request parameters.
|
|
@@ -748,20 +818,6 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
748
818
|
* @throws {RequiredError}
|
|
749
819
|
*/
|
|
750
820
|
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>;
|
|
765
821
|
/**
|
|
766
822
|
*
|
|
767
823
|
* @param {*} [options] Override http request option.
|
|
@@ -845,6 +901,32 @@ export interface SealClientCreateOrderRequest {
|
|
|
845
901
|
*/
|
|
846
902
|
readonly body: SealCreateOrderRequest;
|
|
847
903
|
}
|
|
904
|
+
/**
|
|
905
|
+
* Request parameters for createRfqQuote operation in SealClient.
|
|
906
|
+
* @export
|
|
907
|
+
* @interface SealClientCreateRfqQuoteRequest
|
|
908
|
+
*/
|
|
909
|
+
export interface SealClientCreateRfqQuoteRequest {
|
|
910
|
+
/**
|
|
911
|
+
*
|
|
912
|
+
* @type {SealCreateRfqQuoteRequest}
|
|
913
|
+
* @memberof SealClientCreateRfqQuote
|
|
914
|
+
*/
|
|
915
|
+
readonly body: SealCreateRfqQuoteRequest;
|
|
916
|
+
}
|
|
917
|
+
/**
|
|
918
|
+
* Request parameters for createRfqRequest operation in SealClient.
|
|
919
|
+
* @export
|
|
920
|
+
* @interface SealClientCreateRfqRequestRequest
|
|
921
|
+
*/
|
|
922
|
+
export interface SealClientCreateRfqRequestRequest {
|
|
923
|
+
/**
|
|
924
|
+
*
|
|
925
|
+
* @type {SealCreateRfqRequestRequest}
|
|
926
|
+
* @memberof SealClientCreateRfqRequest
|
|
927
|
+
*/
|
|
928
|
+
readonly body: SealCreateRfqRequestRequest;
|
|
929
|
+
}
|
|
848
930
|
/**
|
|
849
931
|
* Request parameters for createTokenPermitApproval operation in SealClient.
|
|
850
932
|
* @export
|
|
@@ -1304,6 +1386,79 @@ export interface SealClientGetPairsRequest {
|
|
|
1304
1386
|
*/
|
|
1305
1387
|
readonly excludeEmpty?: boolean;
|
|
1306
1388
|
}
|
|
1389
|
+
/**
|
|
1390
|
+
* Request parameters for getRfqCommitments operation in SealClient.
|
|
1391
|
+
* @export
|
|
1392
|
+
* @interface SealClientGetRfqCommitmentsRequest
|
|
1393
|
+
*/
|
|
1394
|
+
export interface SealClientGetRfqCommitmentsRequest {
|
|
1395
|
+
/**
|
|
1396
|
+
*
|
|
1397
|
+
* @type {'RfqCommitmentOrderByProperty_UNSPECIFIED' | 'RfqCommitmentOrderByProperty_ID' | 'RfqCommitmentOrderByProperty_SETTLEMENT_TIME' | 'RfqCommitmentOrderByProperty_BUY_IN_DEADLINE'}
|
|
1398
|
+
* @memberof SealClientGetRfqCommitments
|
|
1399
|
+
*/
|
|
1400
|
+
readonly orderByProperty?: GetRfqCommitmentsOrderByPropertyEnum;
|
|
1401
|
+
/**
|
|
1402
|
+
*
|
|
1403
|
+
* @type {boolean}
|
|
1404
|
+
* @memberof SealClientGetRfqCommitments
|
|
1405
|
+
*/
|
|
1406
|
+
readonly orderByDescending?: boolean;
|
|
1407
|
+
/**
|
|
1408
|
+
*
|
|
1409
|
+
* @type {string}
|
|
1410
|
+
* @memberof SealClientGetRfqCommitments
|
|
1411
|
+
*/
|
|
1412
|
+
readonly paginationKey?: string;
|
|
1413
|
+
/**
|
|
1414
|
+
*
|
|
1415
|
+
* @type {number}
|
|
1416
|
+
* @memberof SealClientGetRfqCommitments
|
|
1417
|
+
*/
|
|
1418
|
+
readonly paginationLimit?: number;
|
|
1419
|
+
/**
|
|
1420
|
+
*
|
|
1421
|
+
* @type {boolean}
|
|
1422
|
+
* @memberof SealClientGetRfqCommitments
|
|
1423
|
+
*/
|
|
1424
|
+
readonly paginationCountTotal?: boolean;
|
|
1425
|
+
/**
|
|
1426
|
+
*
|
|
1427
|
+
* @type {string}
|
|
1428
|
+
* @memberof SealClientGetRfqCommitments
|
|
1429
|
+
*/
|
|
1430
|
+
readonly chainId?: string;
|
|
1431
|
+
/**
|
|
1432
|
+
*
|
|
1433
|
+
* @type {string}
|
|
1434
|
+
* @memberof SealClientGetRfqCommitments
|
|
1435
|
+
*/
|
|
1436
|
+
readonly maker?: string;
|
|
1437
|
+
/**
|
|
1438
|
+
*
|
|
1439
|
+
* @type {string}
|
|
1440
|
+
* @memberof SealClientGetRfqCommitments
|
|
1441
|
+
*/
|
|
1442
|
+
readonly taker?: string;
|
|
1443
|
+
/**
|
|
1444
|
+
*
|
|
1445
|
+
* @type {string}
|
|
1446
|
+
* @memberof SealClientGetRfqCommitments
|
|
1447
|
+
*/
|
|
1448
|
+
readonly tokenIn?: string;
|
|
1449
|
+
/**
|
|
1450
|
+
*
|
|
1451
|
+
* @type {string}
|
|
1452
|
+
* @memberof SealClientGetRfqCommitments
|
|
1453
|
+
*/
|
|
1454
|
+
readonly tokenOut?: string;
|
|
1455
|
+
/**
|
|
1456
|
+
*
|
|
1457
|
+
* @type {string}
|
|
1458
|
+
* @memberof SealClientGetRfqCommitments
|
|
1459
|
+
*/
|
|
1460
|
+
readonly commitmentId?: string;
|
|
1461
|
+
}
|
|
1307
1462
|
/**
|
|
1308
1463
|
* Request parameters for getRfqNonce operation in SealClient.
|
|
1309
1464
|
* @export
|
|
@@ -1337,58 +1492,76 @@ export interface SealClientGetRfqQuotesRequest {
|
|
|
1337
1492
|
readonly chainId: string;
|
|
1338
1493
|
/**
|
|
1339
1494
|
*
|
|
1340
|
-
* @type {
|
|
1495
|
+
* @type {'RfqQuoteOrderByProperty_UNSPECIFIED' | 'RfqQuoteOrderByProperty_ID' | 'RfqQuoteOrderByProperty_SETTLEMENT_TIME' | 'RfqQuoteOrderByProperty_DEADLINE'}
|
|
1341
1496
|
* @memberof SealClientGetRfqQuotes
|
|
1342
1497
|
*/
|
|
1343
|
-
readonly
|
|
1498
|
+
readonly orderByProperty?: GetRfqQuotesOrderByPropertyEnum;
|
|
1344
1499
|
/**
|
|
1345
1500
|
*
|
|
1346
|
-
* @type {
|
|
1501
|
+
* @type {boolean}
|
|
1347
1502
|
* @memberof SealClientGetRfqQuotes
|
|
1348
1503
|
*/
|
|
1349
|
-
readonly
|
|
1504
|
+
readonly orderByDescending?: boolean;
|
|
1350
1505
|
/**
|
|
1351
1506
|
*
|
|
1352
1507
|
* @type {string}
|
|
1353
1508
|
* @memberof SealClientGetRfqQuotes
|
|
1354
1509
|
*/
|
|
1355
|
-
readonly
|
|
1510
|
+
readonly paginationKey?: string;
|
|
1511
|
+
/**
|
|
1512
|
+
*
|
|
1513
|
+
* @type {number}
|
|
1514
|
+
* @memberof SealClientGetRfqQuotes
|
|
1515
|
+
*/
|
|
1516
|
+
readonly paginationLimit?: number;
|
|
1517
|
+
/**
|
|
1518
|
+
*
|
|
1519
|
+
* @type {boolean}
|
|
1520
|
+
* @memberof SealClientGetRfqQuotes
|
|
1521
|
+
*/
|
|
1522
|
+
readonly paginationCountTotal?: boolean;
|
|
1356
1523
|
/**
|
|
1357
1524
|
*
|
|
1358
1525
|
* @type {string}
|
|
1359
1526
|
* @memberof SealClientGetRfqQuotes
|
|
1360
1527
|
*/
|
|
1361
|
-
readonly
|
|
1528
|
+
readonly quoteHash?: string;
|
|
1362
1529
|
/**
|
|
1363
1530
|
*
|
|
1364
|
-
* @type {
|
|
1531
|
+
* @type {string}
|
|
1365
1532
|
* @memberof SealClientGetRfqQuotes
|
|
1366
1533
|
*/
|
|
1367
|
-
readonly
|
|
1534
|
+
readonly requestId?: string;
|
|
1368
1535
|
/**
|
|
1369
1536
|
*
|
|
1370
|
-
* @type {
|
|
1537
|
+
* @type {string}
|
|
1371
1538
|
* @memberof SealClientGetRfqQuotes
|
|
1372
1539
|
*/
|
|
1373
|
-
readonly
|
|
1540
|
+
readonly offerer?: string;
|
|
1374
1541
|
/**
|
|
1375
1542
|
*
|
|
1376
1543
|
* @type {string}
|
|
1377
1544
|
* @memberof SealClientGetRfqQuotes
|
|
1378
1545
|
*/
|
|
1379
|
-
readonly
|
|
1546
|
+
readonly id?: string;
|
|
1547
|
+
/**
|
|
1548
|
+
* TODO requires indexer
|
|
1549
|
+
* @type {boolean}
|
|
1550
|
+
* @memberof SealClientGetRfqQuotes
|
|
1551
|
+
*/
|
|
1552
|
+
readonly onChain?: boolean;
|
|
1380
1553
|
/**
|
|
1381
1554
|
*
|
|
1382
1555
|
* @type {number}
|
|
1383
1556
|
* @memberof SealClientGetRfqQuotes
|
|
1384
1557
|
*/
|
|
1385
|
-
readonly
|
|
1558
|
+
readonly settlementTimeAfter?: number;
|
|
1386
1559
|
/**
|
|
1387
1560
|
*
|
|
1388
|
-
* @type {
|
|
1561
|
+
* @type {number}
|
|
1389
1562
|
* @memberof SealClientGetRfqQuotes
|
|
1390
1563
|
*/
|
|
1391
|
-
readonly
|
|
1564
|
+
readonly deadlineAfter?: number;
|
|
1392
1565
|
}
|
|
1393
1566
|
/**
|
|
1394
1567
|
* Request parameters for getRfqRequests operation in SealClient.
|
|
@@ -1396,6 +1569,36 @@ export interface SealClientGetRfqQuotesRequest {
|
|
|
1396
1569
|
* @interface SealClientGetRfqRequestsRequest
|
|
1397
1570
|
*/
|
|
1398
1571
|
export interface SealClientGetRfqRequestsRequest {
|
|
1572
|
+
/**
|
|
1573
|
+
*
|
|
1574
|
+
* @type {string}
|
|
1575
|
+
* @memberof SealClientGetRfqRequests
|
|
1576
|
+
*/
|
|
1577
|
+
readonly paginationKey?: string;
|
|
1578
|
+
/**
|
|
1579
|
+
*
|
|
1580
|
+
* @type {number}
|
|
1581
|
+
* @memberof SealClientGetRfqRequests
|
|
1582
|
+
*/
|
|
1583
|
+
readonly paginationLimit?: number;
|
|
1584
|
+
/**
|
|
1585
|
+
*
|
|
1586
|
+
* @type {boolean}
|
|
1587
|
+
* @memberof SealClientGetRfqRequests
|
|
1588
|
+
*/
|
|
1589
|
+
readonly paginationCountTotal?: boolean;
|
|
1590
|
+
/**
|
|
1591
|
+
*
|
|
1592
|
+
* @type {'RfqRequestsOrderByProperty_UNSPECIFIED' | 'RfqRequestsOrderByProperty_ID' | 'RfqRequestsOrderByProperty_CREATION_TIME' | 'RfqRequestsOrderByProperty_REQUEST_DEADLINE'}
|
|
1593
|
+
* @memberof SealClientGetRfqRequests
|
|
1594
|
+
*/
|
|
1595
|
+
readonly orderByProperty?: GetRfqRequestsOrderByPropertyEnum;
|
|
1596
|
+
/**
|
|
1597
|
+
*
|
|
1598
|
+
* @type {boolean}
|
|
1599
|
+
* @memberof SealClientGetRfqRequests
|
|
1600
|
+
*/
|
|
1601
|
+
readonly orderByDescending?: boolean;
|
|
1399
1602
|
/**
|
|
1400
1603
|
*
|
|
1401
1604
|
* @type {string}
|
|
@@ -1440,34 +1643,28 @@ export interface SealClientGetRfqRequestsRequest {
|
|
|
1440
1643
|
readonly requestDeadlineAfter?: number;
|
|
1441
1644
|
/**
|
|
1442
1645
|
*
|
|
1443
|
-
* @type {
|
|
1444
|
-
* @memberof SealClientGetRfqRequests
|
|
1445
|
-
*/
|
|
1446
|
-
readonly orderByProperty?: GetRfqRequestsOrderByPropertyEnum;
|
|
1447
|
-
/**
|
|
1448
|
-
*
|
|
1449
|
-
* @type {boolean}
|
|
1646
|
+
* @type {string}
|
|
1450
1647
|
* @memberof SealClientGetRfqRequests
|
|
1451
1648
|
*/
|
|
1452
|
-
readonly
|
|
1649
|
+
readonly depositToken?: string;
|
|
1453
1650
|
/**
|
|
1454
1651
|
*
|
|
1455
1652
|
* @type {string}
|
|
1456
1653
|
* @memberof SealClientGetRfqRequests
|
|
1457
1654
|
*/
|
|
1458
|
-
readonly
|
|
1655
|
+
readonly minDepositLessThan?: string;
|
|
1459
1656
|
/**
|
|
1460
|
-
*
|
|
1461
|
-
* @type {
|
|
1657
|
+
* TODO requires price.
|
|
1658
|
+
* @type {string}
|
|
1462
1659
|
* @memberof SealClientGetRfqRequests
|
|
1463
1660
|
*/
|
|
1464
|
-
readonly
|
|
1661
|
+
readonly minDepositPerStableLessThan?: string;
|
|
1465
1662
|
/**
|
|
1466
|
-
*
|
|
1467
|
-
* @type {
|
|
1663
|
+
* TODO requires join
|
|
1664
|
+
* @type {string}
|
|
1468
1665
|
* @memberof SealClientGetRfqRequests
|
|
1469
1666
|
*/
|
|
1470
|
-
readonly
|
|
1667
|
+
readonly excludedOfferer?: string;
|
|
1471
1668
|
}
|
|
1472
1669
|
/**
|
|
1473
1670
|
* Request parameters for getSealContractParams operation in SealClient.
|
|
@@ -1611,32 +1808,6 @@ export interface SealClientIssueGreenlightRequest {
|
|
|
1611
1808
|
*/
|
|
1612
1809
|
readonly requestHash?: string;
|
|
1613
1810
|
}
|
|
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
|
-
}
|
|
1640
1811
|
/**
|
|
1641
1812
|
* SealClient - object-oriented interface
|
|
1642
1813
|
* @export
|
|
@@ -1683,6 +1854,22 @@ export declare class SealClient extends BaseAPI {
|
|
|
1683
1854
|
* @memberof SealClient
|
|
1684
1855
|
*/
|
|
1685
1856
|
createOrder(requestParameters: SealClientCreateOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealCreateOrderResponse, any, {}>>;
|
|
1857
|
+
/**
|
|
1858
|
+
*
|
|
1859
|
+
* @param {SealClientCreateRfqQuoteRequest} requestParameters Request parameters.
|
|
1860
|
+
* @param {*} [options] Override http request option.
|
|
1861
|
+
* @throws {RequiredError}
|
|
1862
|
+
* @memberof SealClient
|
|
1863
|
+
*/
|
|
1864
|
+
createRfqQuote(requestParameters: SealClientCreateRfqQuoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealCreateRfqQuoteResponse, any, {}>>;
|
|
1865
|
+
/**
|
|
1866
|
+
*
|
|
1867
|
+
* @param {SealClientCreateRfqRequestRequest} requestParameters Request parameters.
|
|
1868
|
+
* @param {*} [options] Override http request option.
|
|
1869
|
+
* @throws {RequiredError}
|
|
1870
|
+
* @memberof SealClient
|
|
1871
|
+
*/
|
|
1872
|
+
createRfqRequest(requestParameters: SealClientCreateRfqRequestRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealCreateRfqRequestResponse, any, {}>>;
|
|
1686
1873
|
/**
|
|
1687
1874
|
*
|
|
1688
1875
|
* @param {SealClientCreateTokenPermitApprovalRequest} requestParameters Request parameters.
|
|
@@ -1755,6 +1942,14 @@ export declare class SealClient extends BaseAPI {
|
|
|
1755
1942
|
* @memberof SealClient
|
|
1756
1943
|
*/
|
|
1757
1944
|
getPairs(requestParameters?: SealClientGetPairsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetPairsResponse, any, {}>>;
|
|
1945
|
+
/**
|
|
1946
|
+
*
|
|
1947
|
+
* @param {SealClientGetRfqCommitmentsRequest} requestParameters Request parameters.
|
|
1948
|
+
* @param {*} [options] Override http request option.
|
|
1949
|
+
* @throws {RequiredError}
|
|
1950
|
+
* @memberof SealClient
|
|
1951
|
+
*/
|
|
1952
|
+
getRfqCommitments(requestParameters?: SealClientGetRfqCommitmentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetRfqCommitmentResponse, any, {}>>;
|
|
1758
1953
|
/**
|
|
1759
1954
|
*
|
|
1760
1955
|
* @param {SealClientGetRfqNonceRequest} requestParameters Request parameters.
|
|
@@ -1818,22 +2013,6 @@ export declare class SealClient extends BaseAPI {
|
|
|
1818
2013
|
* @memberof SealClient
|
|
1819
2014
|
*/
|
|
1820
2015
|
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, {}>>;
|
|
1837
2016
|
/**
|
|
1838
2017
|
*
|
|
1839
2018
|
* @param {*} [options] Override http request option.
|
|
@@ -1916,6 +2095,16 @@ export declare enum GetOrdersOrderByPropertyEnum {
|
|
|
1916
2095
|
export declare enum GetPairsOrderByPropertyEnum {
|
|
1917
2096
|
PairsOrderByPropertyUnspecified = "PairsOrderByProperty_UNSPECIFIED"
|
|
1918
2097
|
}
|
|
2098
|
+
/**
|
|
2099
|
+
* @export
|
|
2100
|
+
* @enum {string}
|
|
2101
|
+
*/
|
|
2102
|
+
export declare enum GetRfqCommitmentsOrderByPropertyEnum {
|
|
2103
|
+
RfqCommitmentOrderByPropertyUnspecified = "RfqCommitmentOrderByProperty_UNSPECIFIED",
|
|
2104
|
+
RfqCommitmentOrderByPropertyId = "RfqCommitmentOrderByProperty_ID",
|
|
2105
|
+
RfqCommitmentOrderByPropertySettlementTime = "RfqCommitmentOrderByProperty_SETTLEMENT_TIME",
|
|
2106
|
+
RfqCommitmentOrderByPropertyBuyInDeadline = "RfqCommitmentOrderByProperty_BUY_IN_DEADLINE"
|
|
2107
|
+
}
|
|
1919
2108
|
/**
|
|
1920
2109
|
* @export
|
|
1921
2110
|
* @enum {string}
|