@seal-protocol/backendjs 0.0.27 → 0.0.29
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/api/seal-client.d.ts +211 -3
- package/lib/api/seal-client.js +237 -1
- package/lib/model/index.d.ts +9 -0
- package/lib/model/index.js +9 -0
- package/lib/model/seal-chain-sync-state.d.ts +61 -0
- package/lib/model/seal-chain-sync-state.js +15 -0
- package/lib/model/seal-create-order-intent-response.d.ts +2 -3
- package/lib/model/seal-get-order-reservations-response.d.ts +31 -0
- package/lib/model/seal-get-order-reservations-response.js +15 -0
- package/lib/model/seal-get-pair-price-response.d.ts +42 -0
- package/lib/model/seal-get-pair-price-response.js +15 -0
- package/lib/model/seal-get-sync-state-response.d.ts +25 -0
- package/lib/model/seal-get-sync-state-response.js +15 -0
- package/lib/model/seal-order-intent.d.ts +31 -0
- package/lib/model/seal-order-intent.js +15 -0
- package/lib/model/seal-order-reservation.d.ts +115 -0
- package/lib/model/seal-order-reservation.js +15 -0
- package/lib/model/seal-order-reservations-order-by-property.d.ts +27 -0
- package/lib/model/seal-order-reservations-order-by-property.js +33 -0
- package/lib/model/seal-order-reservations-order-by.d.ts +31 -0
- package/lib/model/seal-order-reservations-order-by.js +15 -0
- package/lib/model/seal-order.d.ts +7 -0
- package/lib/model/seal-sync-state.d.ts +55 -0
- package/lib/model/seal-sync-state.js +15 -0
- package/package.json +1 -1
package/lib/api/seal-client.d.ts
CHANGED
|
@@ -14,12 +14,16 @@ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import type { SealCancelOrderRequest } from '../model';
|
|
16
16
|
import type { SealCreateOrderIntentRequest } from '../model';
|
|
17
|
+
import type { SealCreateOrderIntentResponse } from '../model';
|
|
17
18
|
import type { SealGetChainsResponse } from '../model';
|
|
18
19
|
import type { SealGetConfigResponse } from '../model';
|
|
19
20
|
import type { SealGetHealthCheckResponse } from '../model';
|
|
20
21
|
import type { SealGetOrderNonceResponse } from '../model';
|
|
22
|
+
import type { SealGetOrderReservationsResponse } from '../model';
|
|
21
23
|
import type { SealGetOrdersResponse } from '../model';
|
|
24
|
+
import type { SealGetPairPriceResponse } from '../model';
|
|
22
25
|
import type { SealGetPairsResponse } from '../model';
|
|
26
|
+
import type { SealGetSyncStateResponse } from '../model';
|
|
23
27
|
import type { SealGetTokensResponse } from '../model';
|
|
24
28
|
/**
|
|
25
29
|
* SealClient - axios parameter creator
|
|
@@ -65,6 +69,22 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
65
69
|
* @throws {RequiredError}
|
|
66
70
|
*/
|
|
67
71
|
getOrderNonce: (chainId: string, owner: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @param {string} [chainId] uint256
|
|
75
|
+
* @param {boolean} [liveValue]
|
|
76
|
+
* @param {boolean} [expiredValue]
|
|
77
|
+
* @param {string} [reserver]
|
|
78
|
+
* @param {string} [orderIdHash]
|
|
79
|
+
* @param {GetOrderReservationsOrderByPropertyEnum} [orderByProperty]
|
|
80
|
+
* @param {boolean} [orderByDescending]
|
|
81
|
+
* @param {string} [paginationKey]
|
|
82
|
+
* @param {number} [paginationLimit]
|
|
83
|
+
* @param {boolean} [paginationCountTotal]
|
|
84
|
+
* @param {*} [options] Override http request option.
|
|
85
|
+
* @throws {RequiredError}
|
|
86
|
+
*/
|
|
87
|
+
getOrderReservations: (chainId?: string, liveValue?: boolean, expiredValue?: boolean, reserver?: string, orderIdHash?: string, orderByProperty?: GetOrderReservationsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
68
88
|
/**
|
|
69
89
|
*
|
|
70
90
|
* @param {string} [chainId] uint256
|
|
@@ -92,6 +112,14 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
92
112
|
* @throws {RequiredError}
|
|
93
113
|
*/
|
|
94
114
|
getOrders: (chainId?: string, tokenIn?: string, tokenOut?: string, owner?: string, fromPriceDecimal?: string, toPriceDecimal?: string, orderByProperty?: GetOrdersOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, reservationAllowedValue?: boolean, liveValue?: boolean, cancelledValue?: boolean, depositToken?: string, minReservationPeriodSeconds?: number, minRemainingAmount?: string, minPriceMargin?: string, maxPriceMargin?: string, maxReservationDepositPerStable?: string, minRemainingAmountStableTerms?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @param {string} [tokenInCoingeckoId]
|
|
118
|
+
* @param {string} [tokenOutCoingeckoId]
|
|
119
|
+
* @param {*} [options] Override http request option.
|
|
120
|
+
* @throws {RequiredError}
|
|
121
|
+
*/
|
|
122
|
+
getPairPrice: (tokenInCoingeckoId?: string, tokenOutCoingeckoId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
95
123
|
/**
|
|
96
124
|
*
|
|
97
125
|
* @param {string} [paginationKey]
|
|
@@ -126,6 +154,12 @@ export declare const SealClientAxiosParamCreator: (configuration?: Configuration
|
|
|
126
154
|
* @throws {RequiredError}
|
|
127
155
|
*/
|
|
128
156
|
healthCheck: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
157
|
+
/**
|
|
158
|
+
*
|
|
159
|
+
* @param {*} [options] Override http request option.
|
|
160
|
+
* @throws {RequiredError}
|
|
161
|
+
*/
|
|
162
|
+
syncState: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
129
163
|
};
|
|
130
164
|
/**
|
|
131
165
|
* SealClient - functional programming interface
|
|
@@ -151,7 +185,7 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
151
185
|
* @param {*} [options] Override http request option.
|
|
152
186
|
* @throws {RequiredError}
|
|
153
187
|
*/
|
|
154
|
-
createOrderIntent(body: SealCreateOrderIntentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
188
|
+
createOrderIntent(body: SealCreateOrderIntentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealCreateOrderIntentResponse>>;
|
|
155
189
|
/**
|
|
156
190
|
*
|
|
157
191
|
* @param {string} [paginationKey]
|
|
@@ -171,6 +205,22 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
171
205
|
* @throws {RequiredError}
|
|
172
206
|
*/
|
|
173
207
|
getOrderNonce(chainId: string, owner: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetOrderNonceResponse>>;
|
|
208
|
+
/**
|
|
209
|
+
*
|
|
210
|
+
* @param {string} [chainId] uint256
|
|
211
|
+
* @param {boolean} [liveValue]
|
|
212
|
+
* @param {boolean} [expiredValue]
|
|
213
|
+
* @param {string} [reserver]
|
|
214
|
+
* @param {string} [orderIdHash]
|
|
215
|
+
* @param {GetOrderReservationsOrderByPropertyEnum} [orderByProperty]
|
|
216
|
+
* @param {boolean} [orderByDescending]
|
|
217
|
+
* @param {string} [paginationKey]
|
|
218
|
+
* @param {number} [paginationLimit]
|
|
219
|
+
* @param {boolean} [paginationCountTotal]
|
|
220
|
+
* @param {*} [options] Override http request option.
|
|
221
|
+
* @throws {RequiredError}
|
|
222
|
+
*/
|
|
223
|
+
getOrderReservations(chainId?: string, liveValue?: boolean, expiredValue?: boolean, reserver?: string, orderIdHash?: string, orderByProperty?: GetOrderReservationsOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetOrderReservationsResponse>>;
|
|
174
224
|
/**
|
|
175
225
|
*
|
|
176
226
|
* @param {string} [chainId] uint256
|
|
@@ -198,6 +248,14 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
198
248
|
* @throws {RequiredError}
|
|
199
249
|
*/
|
|
200
250
|
getOrders(chainId?: string, tokenIn?: string, tokenOut?: string, owner?: string, fromPriceDecimal?: string, toPriceDecimal?: string, orderByProperty?: GetOrdersOrderByPropertyEnum, orderByDescending?: boolean, paginationKey?: string, paginationLimit?: number, paginationCountTotal?: boolean, reservationAllowedValue?: boolean, liveValue?: boolean, cancelledValue?: boolean, depositToken?: string, minReservationPeriodSeconds?: number, minRemainingAmount?: string, minPriceMargin?: string, maxPriceMargin?: string, maxReservationDepositPerStable?: string, minRemainingAmountStableTerms?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetOrdersResponse>>;
|
|
251
|
+
/**
|
|
252
|
+
*
|
|
253
|
+
* @param {string} [tokenInCoingeckoId]
|
|
254
|
+
* @param {string} [tokenOutCoingeckoId]
|
|
255
|
+
* @param {*} [options] Override http request option.
|
|
256
|
+
* @throws {RequiredError}
|
|
257
|
+
*/
|
|
258
|
+
getPairPrice(tokenInCoingeckoId?: string, tokenOutCoingeckoId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetPairPriceResponse>>;
|
|
201
259
|
/**
|
|
202
260
|
*
|
|
203
261
|
* @param {string} [paginationKey]
|
|
@@ -232,6 +290,12 @@ export declare const SealClientFp: (configuration?: Configuration) => {
|
|
|
232
290
|
* @throws {RequiredError}
|
|
233
291
|
*/
|
|
234
292
|
healthCheck(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetHealthCheckResponse>>;
|
|
293
|
+
/**
|
|
294
|
+
*
|
|
295
|
+
* @param {*} [options] Override http request option.
|
|
296
|
+
* @throws {RequiredError}
|
|
297
|
+
*/
|
|
298
|
+
syncState(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SealGetSyncStateResponse>>;
|
|
235
299
|
};
|
|
236
300
|
/**
|
|
237
301
|
* SealClient - factory interface
|
|
@@ -257,7 +321,7 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
257
321
|
* @param {*} [options] Override http request option.
|
|
258
322
|
* @throws {RequiredError}
|
|
259
323
|
*/
|
|
260
|
-
createOrderIntent(requestParameters: SealClientCreateOrderIntentRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
324
|
+
createOrderIntent(requestParameters: SealClientCreateOrderIntentRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealCreateOrderIntentResponse>;
|
|
261
325
|
/**
|
|
262
326
|
*
|
|
263
327
|
* @param {SealClientGetChainsRequest} requestParameters Request parameters.
|
|
@@ -272,6 +336,13 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
272
336
|
* @throws {RequiredError}
|
|
273
337
|
*/
|
|
274
338
|
getOrderNonce(requestParameters: SealClientGetOrderNonceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetOrderNonceResponse>;
|
|
339
|
+
/**
|
|
340
|
+
*
|
|
341
|
+
* @param {SealClientGetOrderReservationsRequest} requestParameters Request parameters.
|
|
342
|
+
* @param {*} [options] Override http request option.
|
|
343
|
+
* @throws {RequiredError}
|
|
344
|
+
*/
|
|
345
|
+
getOrderReservations(requestParameters?: SealClientGetOrderReservationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetOrderReservationsResponse>;
|
|
275
346
|
/**
|
|
276
347
|
*
|
|
277
348
|
* @param {SealClientGetOrdersRequest} requestParameters Request parameters.
|
|
@@ -279,6 +350,13 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
279
350
|
* @throws {RequiredError}
|
|
280
351
|
*/
|
|
281
352
|
getOrders(requestParameters?: SealClientGetOrdersRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetOrdersResponse>;
|
|
353
|
+
/**
|
|
354
|
+
*
|
|
355
|
+
* @param {SealClientGetPairPriceRequest} requestParameters Request parameters.
|
|
356
|
+
* @param {*} [options] Override http request option.
|
|
357
|
+
* @throws {RequiredError}
|
|
358
|
+
*/
|
|
359
|
+
getPairPrice(requestParameters?: SealClientGetPairPriceRequest, options?: RawAxiosRequestConfig): AxiosPromise<SealGetPairPriceResponse>;
|
|
282
360
|
/**
|
|
283
361
|
*
|
|
284
362
|
* @param {SealClientGetPairsRequest} requestParameters Request parameters.
|
|
@@ -299,6 +377,12 @@ export declare const SealClientFactory: (configuration?: Configuration, basePath
|
|
|
299
377
|
* @throws {RequiredError}
|
|
300
378
|
*/
|
|
301
379
|
healthCheck(options?: RawAxiosRequestConfig): AxiosPromise<SealGetHealthCheckResponse>;
|
|
380
|
+
/**
|
|
381
|
+
*
|
|
382
|
+
* @param {*} [options] Override http request option.
|
|
383
|
+
* @throws {RequiredError}
|
|
384
|
+
*/
|
|
385
|
+
syncState(options?: RawAxiosRequestConfig): AxiosPromise<SealGetSyncStateResponse>;
|
|
302
386
|
};
|
|
303
387
|
/**
|
|
304
388
|
* Request parameters for cancelOrder operation in SealClient.
|
|
@@ -382,6 +466,73 @@ export interface SealClientGetOrderNonceRequest {
|
|
|
382
466
|
*/
|
|
383
467
|
readonly owner: string;
|
|
384
468
|
}
|
|
469
|
+
/**
|
|
470
|
+
* Request parameters for getOrderReservations operation in SealClient.
|
|
471
|
+
* @export
|
|
472
|
+
* @interface SealClientGetOrderReservationsRequest
|
|
473
|
+
*/
|
|
474
|
+
export interface SealClientGetOrderReservationsRequest {
|
|
475
|
+
/**
|
|
476
|
+
* uint256
|
|
477
|
+
* @type {string}
|
|
478
|
+
* @memberof SealClientGetOrderReservations
|
|
479
|
+
*/
|
|
480
|
+
readonly chainId?: string;
|
|
481
|
+
/**
|
|
482
|
+
*
|
|
483
|
+
* @type {boolean}
|
|
484
|
+
* @memberof SealClientGetOrderReservations
|
|
485
|
+
*/
|
|
486
|
+
readonly liveValue?: boolean;
|
|
487
|
+
/**
|
|
488
|
+
*
|
|
489
|
+
* @type {boolean}
|
|
490
|
+
* @memberof SealClientGetOrderReservations
|
|
491
|
+
*/
|
|
492
|
+
readonly expiredValue?: boolean;
|
|
493
|
+
/**
|
|
494
|
+
*
|
|
495
|
+
* @type {string}
|
|
496
|
+
* @memberof SealClientGetOrderReservations
|
|
497
|
+
*/
|
|
498
|
+
readonly reserver?: string;
|
|
499
|
+
/**
|
|
500
|
+
*
|
|
501
|
+
* @type {string}
|
|
502
|
+
* @memberof SealClientGetOrderReservations
|
|
503
|
+
*/
|
|
504
|
+
readonly orderIdHash?: string;
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* @type {'OrderReservationsOrderByProperty_UNSPECIFIED' | 'OrderReservationsOrderByProperty_ORDER_ID_HASH' | 'OrderReservationsOrderByProperty_RESERVATION_ID' | 'OrderReservationsOrderByProperty_TOTAL_AMOUNT' | 'OrderReservationsOrderByProperty_REMAINING_AMOUNT' | 'OrderReservationsOrderByProperty_TOTAL_DEPOSIT_AMOUNT' | 'OrderReservationsOrderByProperty_REMAINING_DEPOSIT_AMOUNT' | 'OrderReservationsOrderByProperty_CHAIN_ID' | 'OrderReservationsOrderByProperty_CREATED_AT_BLOCK_NUMBER'}
|
|
508
|
+
* @memberof SealClientGetOrderReservations
|
|
509
|
+
*/
|
|
510
|
+
readonly orderByProperty?: GetOrderReservationsOrderByPropertyEnum;
|
|
511
|
+
/**
|
|
512
|
+
*
|
|
513
|
+
* @type {boolean}
|
|
514
|
+
* @memberof SealClientGetOrderReservations
|
|
515
|
+
*/
|
|
516
|
+
readonly orderByDescending?: boolean;
|
|
517
|
+
/**
|
|
518
|
+
*
|
|
519
|
+
* @type {string}
|
|
520
|
+
* @memberof SealClientGetOrderReservations
|
|
521
|
+
*/
|
|
522
|
+
readonly paginationKey?: string;
|
|
523
|
+
/**
|
|
524
|
+
*
|
|
525
|
+
* @type {number}
|
|
526
|
+
* @memberof SealClientGetOrderReservations
|
|
527
|
+
*/
|
|
528
|
+
readonly paginationLimit?: number;
|
|
529
|
+
/**
|
|
530
|
+
*
|
|
531
|
+
* @type {boolean}
|
|
532
|
+
* @memberof SealClientGetOrderReservations
|
|
533
|
+
*/
|
|
534
|
+
readonly paginationCountTotal?: boolean;
|
|
535
|
+
}
|
|
385
536
|
/**
|
|
386
537
|
* Request parameters for getOrders operation in SealClient.
|
|
387
538
|
* @export
|
|
@@ -515,6 +666,25 @@ export interface SealClientGetOrdersRequest {
|
|
|
515
666
|
*/
|
|
516
667
|
readonly minRemainingAmountStableTerms?: string;
|
|
517
668
|
}
|
|
669
|
+
/**
|
|
670
|
+
* Request parameters for getPairPrice operation in SealClient.
|
|
671
|
+
* @export
|
|
672
|
+
* @interface SealClientGetPairPriceRequest
|
|
673
|
+
*/
|
|
674
|
+
export interface SealClientGetPairPriceRequest {
|
|
675
|
+
/**
|
|
676
|
+
*
|
|
677
|
+
* @type {string}
|
|
678
|
+
* @memberof SealClientGetPairPrice
|
|
679
|
+
*/
|
|
680
|
+
readonly tokenInCoingeckoId?: string;
|
|
681
|
+
/**
|
|
682
|
+
*
|
|
683
|
+
* @type {string}
|
|
684
|
+
* @memberof SealClientGetPairPrice
|
|
685
|
+
*/
|
|
686
|
+
readonly tokenOutCoingeckoId?: string;
|
|
687
|
+
}
|
|
518
688
|
/**
|
|
519
689
|
* Request parameters for getPairs operation in SealClient.
|
|
520
690
|
* @export
|
|
@@ -654,7 +824,7 @@ export declare class SealClient extends BaseAPI {
|
|
|
654
824
|
* @throws {RequiredError}
|
|
655
825
|
* @memberof SealClient
|
|
656
826
|
*/
|
|
657
|
-
createOrderIntent(requestParameters: SealClientCreateOrderIntentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
827
|
+
createOrderIntent(requestParameters: SealClientCreateOrderIntentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealCreateOrderIntentResponse, any>>;
|
|
658
828
|
/**
|
|
659
829
|
*
|
|
660
830
|
* @param {SealClientGetChainsRequest} requestParameters Request parameters.
|
|
@@ -671,6 +841,14 @@ export declare class SealClient extends BaseAPI {
|
|
|
671
841
|
* @memberof SealClient
|
|
672
842
|
*/
|
|
673
843
|
getOrderNonce(requestParameters: SealClientGetOrderNonceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetOrderNonceResponse, any>>;
|
|
844
|
+
/**
|
|
845
|
+
*
|
|
846
|
+
* @param {SealClientGetOrderReservationsRequest} requestParameters Request parameters.
|
|
847
|
+
* @param {*} [options] Override http request option.
|
|
848
|
+
* @throws {RequiredError}
|
|
849
|
+
* @memberof SealClient
|
|
850
|
+
*/
|
|
851
|
+
getOrderReservations(requestParameters?: SealClientGetOrderReservationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetOrderReservationsResponse, any>>;
|
|
674
852
|
/**
|
|
675
853
|
*
|
|
676
854
|
* @param {SealClientGetOrdersRequest} requestParameters Request parameters.
|
|
@@ -679,6 +857,14 @@ export declare class SealClient extends BaseAPI {
|
|
|
679
857
|
* @memberof SealClient
|
|
680
858
|
*/
|
|
681
859
|
getOrders(requestParameters?: SealClientGetOrdersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetOrdersResponse, any>>;
|
|
860
|
+
/**
|
|
861
|
+
*
|
|
862
|
+
* @param {SealClientGetPairPriceRequest} requestParameters Request parameters.
|
|
863
|
+
* @param {*} [options] Override http request option.
|
|
864
|
+
* @throws {RequiredError}
|
|
865
|
+
* @memberof SealClient
|
|
866
|
+
*/
|
|
867
|
+
getPairPrice(requestParameters?: SealClientGetPairPriceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetPairPriceResponse, any>>;
|
|
682
868
|
/**
|
|
683
869
|
*
|
|
684
870
|
* @param {SealClientGetPairsRequest} requestParameters Request parameters.
|
|
@@ -702,6 +888,13 @@ export declare class SealClient extends BaseAPI {
|
|
|
702
888
|
* @memberof SealClient
|
|
703
889
|
*/
|
|
704
890
|
healthCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetHealthCheckResponse, any>>;
|
|
891
|
+
/**
|
|
892
|
+
*
|
|
893
|
+
* @param {*} [options] Override http request option.
|
|
894
|
+
* @throws {RequiredError}
|
|
895
|
+
* @memberof SealClient
|
|
896
|
+
*/
|
|
897
|
+
syncState(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SealGetSyncStateResponse, any>>;
|
|
705
898
|
}
|
|
706
899
|
/**
|
|
707
900
|
* @export
|
|
@@ -710,6 +903,21 @@ export declare class SealClient extends BaseAPI {
|
|
|
710
903
|
export declare enum GetChainsOrderByPropertyEnum {
|
|
711
904
|
ChainsOrderByPropertyUnspecified = "ChainsOrderByProperty_UNSPECIFIED"
|
|
712
905
|
}
|
|
906
|
+
/**
|
|
907
|
+
* @export
|
|
908
|
+
* @enum {string}
|
|
909
|
+
*/
|
|
910
|
+
export declare enum GetOrderReservationsOrderByPropertyEnum {
|
|
911
|
+
OrderReservationsOrderByPropertyUnspecified = "OrderReservationsOrderByProperty_UNSPECIFIED",
|
|
912
|
+
OrderReservationsOrderByPropertyOrderIdHash = "OrderReservationsOrderByProperty_ORDER_ID_HASH",
|
|
913
|
+
OrderReservationsOrderByPropertyReservationId = "OrderReservationsOrderByProperty_RESERVATION_ID",
|
|
914
|
+
OrderReservationsOrderByPropertyTotalAmount = "OrderReservationsOrderByProperty_TOTAL_AMOUNT",
|
|
915
|
+
OrderReservationsOrderByPropertyRemainingAmount = "OrderReservationsOrderByProperty_REMAINING_AMOUNT",
|
|
916
|
+
OrderReservationsOrderByPropertyTotalDepositAmount = "OrderReservationsOrderByProperty_TOTAL_DEPOSIT_AMOUNT",
|
|
917
|
+
OrderReservationsOrderByPropertyRemainingDepositAmount = "OrderReservationsOrderByProperty_REMAINING_DEPOSIT_AMOUNT",
|
|
918
|
+
OrderReservationsOrderByPropertyChainId = "OrderReservationsOrderByProperty_CHAIN_ID",
|
|
919
|
+
OrderReservationsOrderByPropertyCreatedAtBlockNumber = "OrderReservationsOrderByProperty_CREATED_AT_BLOCK_NUMBER"
|
|
920
|
+
}
|
|
713
921
|
/**
|
|
714
922
|
* @export
|
|
715
923
|
* @enum {string}
|