@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.
- package/lib/codegen/api/seal-client.d.ts +224 -13
- package/lib/codegen/api/seal-client.js +251 -12
- package/lib/codegen/model/index.d.ts +9 -0
- package/lib/codegen/model/index.js +9 -0
- package/lib/codegen/model/seal-chain-config.d.ts +7 -0
- package/lib/codegen/model/seal-get-rfq-nonce-response.d.ts +24 -0
- package/lib/codegen/model/seal-get-rfq-nonce-response.js +15 -0
- package/lib/codegen/model/seal-get-rfq-quotes-response.d.ts +31 -0
- package/lib/codegen/model/seal-get-rfq-quotes-response.js +15 -0
- package/lib/codegen/model/seal-order-reservation.d.ts +6 -0
- package/lib/codegen/model/seal-rfq-contract-config.d.ts +32 -0
- package/lib/codegen/model/seal-rfq-contract-config.js +15 -0
- package/lib/codegen/model/seal-rfq-contract-params.d.ts +54 -0
- package/lib/codegen/model/seal-rfq-contract-params.js +15 -0
- package/lib/codegen/model/seal-rfq-quote.d.ts +104 -0
- package/lib/codegen/model/seal-rfq-quote.js +15 -0
- package/lib/codegen/model/seal-rfq-request.d.ts +0 -6
- package/lib/codegen/model/seal-seal-contract-params.d.ts +12 -0
- package/lib/codegen/model/seal-submit-quote-request.d.ts +84 -0
- package/lib/codegen/model/seal-submit-quote-request.js +15 -0
- package/lib/codegen/model/seal-submit-quote-response.d.ts +24 -0
- package/lib/codegen/model/seal-submit-quote-response.js +15 -0
- package/lib/codegen/model/seal-submit-rfq-request.d.ts +0 -6
- package/lib/codegen/model/types-rfq-quote-order-by-property.d.ts +22 -0
- package/lib/codegen/model/types-rfq-quote-order-by-property.js +28 -0
- package/lib/codegen/model/types-rfq-quote-order-by.d.ts +31 -0
- package/lib/codegen/model/types-rfq-quote-order-by.js +15 -0
- package/lib/codegen/model/types-rfq-requests-order-by-property.d.ts +1 -2
- package/lib/codegen/model/types-rfq-requests-order-by-property.js +0 -1
- package/package.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
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 SealRfqContractParams
|
|
16
|
+
*/
|
|
17
|
+
export interface SealRfqContractParams {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SealRfqContractParams
|
|
22
|
+
*/
|
|
23
|
+
'makerFee'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SealRfqContractParams
|
|
28
|
+
*/
|
|
29
|
+
'commitmentDepositToken'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SealRfqContractParams
|
|
34
|
+
*/
|
|
35
|
+
'minCommitmentDepositAmount'?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SealRfqContractParams
|
|
40
|
+
*/
|
|
41
|
+
'maxCommitmentDepositAmount'?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof SealRfqContractParams
|
|
46
|
+
*/
|
|
47
|
+
'minCommitmentPeriodSeconds'?: number;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof SealRfqContractParams
|
|
52
|
+
*/
|
|
53
|
+
'maxCommitmentPeriodSeconds'?: number;
|
|
54
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,104 @@
|
|
|
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
|
+
import type { SealRfqRequest } from './seal-rfq-request';
|
|
13
|
+
import type { TypesTimestamp } from './types-timestamp';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface SealRfqQuote
|
|
18
|
+
*/
|
|
19
|
+
export interface SealRfqQuote {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof SealRfqQuote
|
|
24
|
+
*/
|
|
25
|
+
'id'?: string;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof SealRfqQuote
|
|
30
|
+
*/
|
|
31
|
+
'quoteHash'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof SealRfqQuote
|
|
36
|
+
*/
|
|
37
|
+
'offerer'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof SealRfqQuote
|
|
42
|
+
*/
|
|
43
|
+
'amountIn'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof SealRfqQuote
|
|
48
|
+
*/
|
|
49
|
+
'amountOut'?: string;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof SealRfqQuote
|
|
54
|
+
*/
|
|
55
|
+
'depositToken'?: string;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof SealRfqQuote
|
|
60
|
+
*/
|
|
61
|
+
'depositAmount'?: string;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof SealRfqQuote
|
|
66
|
+
*/
|
|
67
|
+
'minFillRatio'?: string;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {TypesTimestamp}
|
|
71
|
+
* @memberof SealRfqQuote
|
|
72
|
+
*/
|
|
73
|
+
'settlementTime'?: TypesTimestamp;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof SealRfqQuote
|
|
78
|
+
*/
|
|
79
|
+
'nonce'?: string;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {TypesTimestamp}
|
|
83
|
+
* @memberof SealRfqQuote
|
|
84
|
+
*/
|
|
85
|
+
'deadline'?: TypesTimestamp;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof SealRfqQuote
|
|
90
|
+
*/
|
|
91
|
+
'signature'?: string;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {TypesTimestamp}
|
|
95
|
+
* @memberof SealRfqQuote
|
|
96
|
+
*/
|
|
97
|
+
'submissionTime'?: TypesTimestamp;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {SealRfqRequest}
|
|
101
|
+
* @memberof SealRfqQuote
|
|
102
|
+
*/
|
|
103
|
+
'request'?: SealRfqRequest;
|
|
104
|
+
}
|
|
@@ -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 });
|
|
@@ -21,6 +21,18 @@ export interface SealSealContractParams {
|
|
|
21
21
|
* @memberof SealSealContractParams
|
|
22
22
|
*/
|
|
23
23
|
'makerFee'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SealSealContractParams
|
|
28
|
+
*/
|
|
29
|
+
'takerFee'?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SealSealContractParams
|
|
34
|
+
*/
|
|
35
|
+
'reserverFee'?: string;
|
|
24
36
|
/**
|
|
25
37
|
*
|
|
26
38
|
* @type {string}
|
|
@@ -0,0 +1,84 @@
|
|
|
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 SealSubmitQuoteRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface SealSubmitQuoteRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SealSubmitQuoteRequest
|
|
22
|
+
*/
|
|
23
|
+
'requestId': string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof SealSubmitQuoteRequest
|
|
28
|
+
*/
|
|
29
|
+
'offerer': string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof SealSubmitQuoteRequest
|
|
34
|
+
*/
|
|
35
|
+
'amountIn': string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SealSubmitQuoteRequest
|
|
40
|
+
*/
|
|
41
|
+
'amountOut': string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof SealSubmitQuoteRequest
|
|
46
|
+
*/
|
|
47
|
+
'depositToken': string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof SealSubmitQuoteRequest
|
|
52
|
+
*/
|
|
53
|
+
'depositAmount': string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof SealSubmitQuoteRequest
|
|
58
|
+
*/
|
|
59
|
+
'minFillRatio': string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof SealSubmitQuoteRequest
|
|
64
|
+
*/
|
|
65
|
+
'settlementTime': number;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof SealSubmitQuoteRequest
|
|
70
|
+
*/
|
|
71
|
+
'nonce': string;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof SealSubmitQuoteRequest
|
|
76
|
+
*/
|
|
77
|
+
'deadline': number;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof SealSubmitQuoteRequest
|
|
82
|
+
*/
|
|
83
|
+
'signature': string;
|
|
84
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,24 @@
|
|
|
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 SealSubmitQuoteResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface SealSubmitQuoteResponse {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof SealSubmitQuoteResponse
|
|
22
|
+
*/
|
|
23
|
+
'id'?: string;
|
|
24
|
+
}
|
|
@@ -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 });
|
|
@@ -0,0 +1,22 @@
|
|
|
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
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare enum TypesRfqQuoteOrderByProperty {
|
|
18
|
+
RfqQuoteOrderByPropertyUnspecified = "RfqQuoteOrderByProperty_UNSPECIFIED",
|
|
19
|
+
RfqQuoteOrderByPropertyId = "RfqQuoteOrderByProperty_ID",
|
|
20
|
+
RfqQuoteOrderByPropertySettlementTime = "RfqQuoteOrderByProperty_SETTLEMENT_TIME",
|
|
21
|
+
RfqQuoteOrderByPropertyDeadline = "RfqQuoteOrderByProperty_DEADLINE"
|
|
22
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 });
|
|
16
|
+
exports.TypesRfqQuoteOrderByProperty = void 0;
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
var TypesRfqQuoteOrderByProperty;
|
|
23
|
+
(function (TypesRfqQuoteOrderByProperty) {
|
|
24
|
+
TypesRfqQuoteOrderByProperty["RfqQuoteOrderByPropertyUnspecified"] = "RfqQuoteOrderByProperty_UNSPECIFIED";
|
|
25
|
+
TypesRfqQuoteOrderByProperty["RfqQuoteOrderByPropertyId"] = "RfqQuoteOrderByProperty_ID";
|
|
26
|
+
TypesRfqQuoteOrderByProperty["RfqQuoteOrderByPropertySettlementTime"] = "RfqQuoteOrderByProperty_SETTLEMENT_TIME";
|
|
27
|
+
TypesRfqQuoteOrderByProperty["RfqQuoteOrderByPropertyDeadline"] = "RfqQuoteOrderByProperty_DEADLINE";
|
|
28
|
+
})(TypesRfqQuoteOrderByProperty || (exports.TypesRfqQuoteOrderByProperty = TypesRfqQuoteOrderByProperty = {}));
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
import type { TypesRfqQuoteOrderByProperty } from './types-rfq-quote-order-by-property';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface TypesRfqQuoteOrderBy
|
|
17
|
+
*/
|
|
18
|
+
export interface TypesRfqQuoteOrderBy {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {TypesRfqQuoteOrderByProperty}
|
|
22
|
+
* @memberof TypesRfqQuoteOrderBy
|
|
23
|
+
*/
|
|
24
|
+
'property'?: TypesRfqQuoteOrderByProperty;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @memberof TypesRfqQuoteOrderBy
|
|
29
|
+
*/
|
|
30
|
+
'descending'?: boolean;
|
|
31
|
+
}
|
|
@@ -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 });
|
|
@@ -18,6 +18,5 @@ export declare enum TypesRfqRequestsOrderByProperty {
|
|
|
18
18
|
RfqRequestsOrderByPropertyUnspecified = "RfqRequestsOrderByProperty_UNSPECIFIED",
|
|
19
19
|
RfqRequestsOrderByPropertyId = "RfqRequestsOrderByProperty_ID",
|
|
20
20
|
RfqRequestsOrderByPropertyCreationTime = "RfqRequestsOrderByProperty_CREATION_TIME",
|
|
21
|
-
RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE"
|
|
22
|
-
RfqRequestsOrderByPropertyBuyInDeadline = "RfqRequestsOrderByProperty_BUY_IN_DEADLINE"
|
|
21
|
+
RfqRequestsOrderByPropertyRequestDeadline = "RfqRequestsOrderByProperty_REQUEST_DEADLINE"
|
|
23
22
|
}
|
|
@@ -25,5 +25,4 @@ var TypesRfqRequestsOrderByProperty;
|
|
|
25
25
|
TypesRfqRequestsOrderByProperty["RfqRequestsOrderByPropertyId"] = "RfqRequestsOrderByProperty_ID";
|
|
26
26
|
TypesRfqRequestsOrderByProperty["RfqRequestsOrderByPropertyCreationTime"] = "RfqRequestsOrderByProperty_CREATION_TIME";
|
|
27
27
|
TypesRfqRequestsOrderByProperty["RfqRequestsOrderByPropertyRequestDeadline"] = "RfqRequestsOrderByProperty_REQUEST_DEADLINE";
|
|
28
|
-
TypesRfqRequestsOrderByProperty["RfqRequestsOrderByPropertyBuyInDeadline"] = "RfqRequestsOrderByProperty_BUY_IN_DEADLINE";
|
|
29
28
|
})(TypesRfqRequestsOrderByProperty || (exports.TypesRfqRequestsOrderByProperty = TypesRfqRequestsOrderByProperty = {}));
|
package/package.json
CHANGED