@seal-protocol/backendjs 0.0.16 → 0.0.17
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/model/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from './seal-get-order-nonce-response';
|
|
|
10
10
|
export * from './seal-get-orders-response';
|
|
11
11
|
export * from './seal-logger-config';
|
|
12
12
|
export * from './seal-order';
|
|
13
|
+
export * from './seal-order-config';
|
|
13
14
|
export * from './seal-orders-order-by';
|
|
14
15
|
export * from './seal-orders-order-by-property';
|
|
15
16
|
export * from './seal-pagination';
|
package/lib/model/index.js
CHANGED
|
@@ -26,6 +26,7 @@ __exportStar(require("./seal-get-order-nonce-response"), exports);
|
|
|
26
26
|
__exportStar(require("./seal-get-orders-response"), exports);
|
|
27
27
|
__exportStar(require("./seal-logger-config"), exports);
|
|
28
28
|
__exportStar(require("./seal-order"), exports);
|
|
29
|
+
__exportStar(require("./seal-order-config"), exports);
|
|
29
30
|
__exportStar(require("./seal-orders-order-by"), exports);
|
|
30
31
|
__exportStar(require("./seal-orders-order-by-property"), exports);
|
|
31
32
|
__exportStar(require("./seal-pagination"), exports);
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { SealDatabaseConfig } from './seal-database-config';
|
|
13
13
|
import type { SealLoggerConfig } from './seal-logger-config';
|
|
14
|
+
import type { SealOrderConfig } from './seal-order-config';
|
|
14
15
|
import type { SealSignatureVerificationConfig } from './seal-signature-verification-config';
|
|
15
16
|
/**
|
|
16
17
|
*
|
|
@@ -36,4 +37,10 @@ export interface SealConfig {
|
|
|
36
37
|
* @memberof SealConfig
|
|
37
38
|
*/
|
|
38
39
|
'signatureVerification'?: SealSignatureVerificationConfig;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {SealOrderConfig}
|
|
43
|
+
* @memberof SealConfig
|
|
44
|
+
*/
|
|
45
|
+
'order'?: SealOrderConfig;
|
|
39
46
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* seal/seal.proto
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: version not set
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SealOrderConfig
|
|
16
|
+
*/
|
|
17
|
+
export interface SealOrderConfig {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SealOrderConfig
|
|
22
|
+
*/
|
|
23
|
+
'minReservationDepositAllowed'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SealOrderConfig
|
|
28
|
+
*/
|
|
29
|
+
'maxReservationDepositAllowed'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SealOrderConfig
|
|
34
|
+
*/
|
|
35
|
+
'reservationDepositDenom'?: string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* seal/seal.proto
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: version not set
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -52,6 +52,12 @@ export interface SealOrder {
|
|
|
52
52
|
* @memberof SealOrder
|
|
53
53
|
*/
|
|
54
54
|
'price'?: string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof SealOrder
|
|
59
|
+
*/
|
|
60
|
+
'priceDecimal'?: string;
|
|
55
61
|
/**
|
|
56
62
|
*
|
|
57
63
|
* @type {boolean}
|
|
@@ -88,6 +94,12 @@ export interface SealOrder {
|
|
|
88
94
|
* @memberof SealOrder
|
|
89
95
|
*/
|
|
90
96
|
'minFillRatio'?: string;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof SealOrder
|
|
101
|
+
*/
|
|
102
|
+
'minFillRatioDecimal'?: string;
|
|
91
103
|
/**
|
|
92
104
|
*
|
|
93
105
|
* @type {boolean}
|
package/package.json
CHANGED