@sentio/api 1.0.2-rc.10 → 1.0.2-rc.12
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/dist/src/apis/PriceApi.d.ts +8 -0
- package/dist/src/apis/PriceApi.js +8 -0
- package/dist/src/apis/PriceApi.js.map +1 -1
- package/dist/src/models/GoogleProtobufNullValue.d.ts +1 -1
- package/dist/src/models/GoogleProtobufNullValue.js +1 -1
- package/package.json +1 -1
- package/src/apis/PriceApi.ts +8 -0
- package/src/models/GoogleProtobufNullValue.ts +1 -1
|
@@ -32,29 +32,37 @@ export interface PriceListCoinsRequest {
|
|
|
32
32
|
*/
|
|
33
33
|
export declare class PriceApi extends runtime.BaseAPI {
|
|
34
34
|
/**
|
|
35
|
+
* Batch get prices
|
|
35
36
|
*/
|
|
36
37
|
batchGetPricesRaw(requestParameters: BatchGetPricesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PriceServiceBatchGetPricesResponse>>;
|
|
37
38
|
/**
|
|
39
|
+
* Batch get prices
|
|
38
40
|
*/
|
|
39
41
|
batchGetPrices(requestParameters?: BatchGetPricesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PriceServiceBatchGetPricesResponse>;
|
|
40
42
|
/**
|
|
43
|
+
* Check latest price
|
|
41
44
|
*/
|
|
42
45
|
checkLatestPriceRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PriceServiceCheckLatestPriceResponse>>;
|
|
43
46
|
/**
|
|
47
|
+
* Check latest price
|
|
44
48
|
*/
|
|
45
49
|
checkLatestPrice(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PriceServiceCheckLatestPriceResponse>;
|
|
46
50
|
/**
|
|
47
51
|
* GetPrice returns the price of a given coin identifier, in a best effort way. If we do not have any price data for the given coin, we will return NOT_FOUND error. If we have at least one price data for the given coin, we will return it with the actual timestamp. Client is responsible for checking the timestamp and decide whether to use the price or not.
|
|
52
|
+
* Get price
|
|
48
53
|
*/
|
|
49
54
|
getPriceRaw(requestParameters: GetPriceRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PriceServiceGetPriceResponse>>;
|
|
50
55
|
/**
|
|
51
56
|
* GetPrice returns the price of a given coin identifier, in a best effort way. If we do not have any price data for the given coin, we will return NOT_FOUND error. If we have at least one price data for the given coin, we will return it with the actual timestamp. Client is responsible for checking the timestamp and decide whether to use the price or not.
|
|
57
|
+
* Get price
|
|
52
58
|
*/
|
|
53
59
|
getPrice(requestParameters?: GetPriceRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PriceServiceGetPriceResponse>;
|
|
54
60
|
/**
|
|
61
|
+
* List coins
|
|
55
62
|
*/
|
|
56
63
|
priceListCoinsRaw(requestParameters: PriceListCoinsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PriceServiceListCoinsResponse>>;
|
|
57
64
|
/**
|
|
65
|
+
* List coins
|
|
58
66
|
*/
|
|
59
67
|
priceListCoins(requestParameters?: PriceListCoinsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PriceServiceListCoinsResponse>;
|
|
60
68
|
}
|
|
@@ -18,6 +18,7 @@ import { PriceServiceBatchGetPricesResponseFromJSON, PriceServiceCheckLatestPric
|
|
|
18
18
|
*/
|
|
19
19
|
export class PriceApi extends runtime.BaseAPI {
|
|
20
20
|
/**
|
|
21
|
+
* Batch get prices
|
|
21
22
|
*/
|
|
22
23
|
async batchGetPricesRaw(requestParameters, initOverrides) {
|
|
23
24
|
const queryParameters = {};
|
|
@@ -37,12 +38,14 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
37
38
|
return new runtime.JSONApiResponse(response, (jsonValue) => PriceServiceBatchGetPricesResponseFromJSON(jsonValue));
|
|
38
39
|
}
|
|
39
40
|
/**
|
|
41
|
+
* Batch get prices
|
|
40
42
|
*/
|
|
41
43
|
async batchGetPrices(requestParameters = {}, initOverrides) {
|
|
42
44
|
const response = await this.batchGetPricesRaw(requestParameters, initOverrides);
|
|
43
45
|
return await response.value();
|
|
44
46
|
}
|
|
45
47
|
/**
|
|
48
|
+
* Check latest price
|
|
46
49
|
*/
|
|
47
50
|
async checkLatestPriceRaw(initOverrides) {
|
|
48
51
|
const queryParameters = {};
|
|
@@ -59,6 +62,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
59
62
|
return new runtime.JSONApiResponse(response, (jsonValue) => PriceServiceCheckLatestPriceResponseFromJSON(jsonValue));
|
|
60
63
|
}
|
|
61
64
|
/**
|
|
65
|
+
* Check latest price
|
|
62
66
|
*/
|
|
63
67
|
async checkLatestPrice(initOverrides) {
|
|
64
68
|
const response = await this.checkLatestPriceRaw(initOverrides);
|
|
@@ -66,6 +70,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
66
70
|
}
|
|
67
71
|
/**
|
|
68
72
|
* GetPrice returns the price of a given coin identifier, in a best effort way. If we do not have any price data for the given coin, we will return NOT_FOUND error. If we have at least one price data for the given coin, we will return it with the actual timestamp. Client is responsible for checking the timestamp and decide whether to use the price or not.
|
|
73
|
+
* Get price
|
|
69
74
|
*/
|
|
70
75
|
async getPriceRaw(requestParameters, initOverrides) {
|
|
71
76
|
const queryParameters = {};
|
|
@@ -98,12 +103,14 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
98
103
|
}
|
|
99
104
|
/**
|
|
100
105
|
* GetPrice returns the price of a given coin identifier, in a best effort way. If we do not have any price data for the given coin, we will return NOT_FOUND error. If we have at least one price data for the given coin, we will return it with the actual timestamp. Client is responsible for checking the timestamp and decide whether to use the price or not.
|
|
106
|
+
* Get price
|
|
101
107
|
*/
|
|
102
108
|
async getPrice(requestParameters = {}, initOverrides) {
|
|
103
109
|
const response = await this.getPriceRaw(requestParameters, initOverrides);
|
|
104
110
|
return await response.value();
|
|
105
111
|
}
|
|
106
112
|
/**
|
|
113
|
+
* List coins
|
|
107
114
|
*/
|
|
108
115
|
async priceListCoinsRaw(requestParameters, initOverrides) {
|
|
109
116
|
const queryParameters = {};
|
|
@@ -132,6 +139,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
132
139
|
return new runtime.JSONApiResponse(response, (jsonValue) => PriceServiceListCoinsResponseFromJSON(jsonValue));
|
|
133
140
|
}
|
|
134
141
|
/**
|
|
142
|
+
* List coins
|
|
135
143
|
*/
|
|
136
144
|
async priceListCoins(requestParameters = {}, initOverrides) {
|
|
137
145
|
const response = await this.priceListCoinsRaw(requestParameters, initOverrides);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PriceApi.js","sourceRoot":"","sources":["../../../src/apis/PriceApi.ts"],"names":[],"mappings":"AAAA,oBAAoB;AACpB,oBAAoB;AACpB;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,OAAO,MAAM,eAAe,CAAC;AAOzC,OAAO,EACH,0CAA0C,EAE1C,4CAA4C,EAE5C,oCAAoC,EAEpC,qCAAqC,GAExC,MAAM,oBAAoB,CAAC;AAqB5B;;GAEG;AACH,MAAM,OAAO,QAAS,SAAQ,OAAO,CAAC,OAAO;IAEzC;
|
|
1
|
+
{"version":3,"file":"PriceApi.js","sourceRoot":"","sources":["../../../src/apis/PriceApi.ts"],"names":[],"mappings":"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"}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
14
14
|
* `Value` type union.
|
|
15
15
|
*
|
|
16
|
-
*
|
|
16
|
+
* The JSON representation for `NullValue` is JSON `null`.
|
|
17
17
|
*
|
|
18
18
|
* - NULL_VALUE: Null value.
|
|
19
19
|
* @export
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
16
16
|
* `Value` type union.
|
|
17
17
|
*
|
|
18
|
-
*
|
|
18
|
+
* The JSON representation for `NullValue` is JSON `null`.
|
|
19
19
|
*
|
|
20
20
|
* - NULL_VALUE: Null value.
|
|
21
21
|
* @export
|
package/package.json
CHANGED
package/src/apis/PriceApi.ts
CHANGED
|
@@ -56,6 +56,7 @@ export interface PriceListCoinsRequest {
|
|
|
56
56
|
export class PriceApi extends runtime.BaseAPI {
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
|
+
* Batch get prices
|
|
59
60
|
*/
|
|
60
61
|
async batchGetPricesRaw(requestParameters: BatchGetPricesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PriceServiceBatchGetPricesResponse>> {
|
|
61
62
|
const queryParameters: any = {};
|
|
@@ -81,6 +82,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
81
82
|
}
|
|
82
83
|
|
|
83
84
|
/**
|
|
85
|
+
* Batch get prices
|
|
84
86
|
*/
|
|
85
87
|
async batchGetPrices(requestParameters: BatchGetPricesRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PriceServiceBatchGetPricesResponse> {
|
|
86
88
|
const response = await this.batchGetPricesRaw(requestParameters, initOverrides);
|
|
@@ -88,6 +90,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
88
90
|
}
|
|
89
91
|
|
|
90
92
|
/**
|
|
93
|
+
* Check latest price
|
|
91
94
|
*/
|
|
92
95
|
async checkLatestPriceRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PriceServiceCheckLatestPriceResponse>> {
|
|
93
96
|
const queryParameters: any = {};
|
|
@@ -109,6 +112,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
109
112
|
}
|
|
110
113
|
|
|
111
114
|
/**
|
|
115
|
+
* Check latest price
|
|
112
116
|
*/
|
|
113
117
|
async checkLatestPrice(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PriceServiceCheckLatestPriceResponse> {
|
|
114
118
|
const response = await this.checkLatestPriceRaw(initOverrides);
|
|
@@ -117,6 +121,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
117
121
|
|
|
118
122
|
/**
|
|
119
123
|
* GetPrice returns the price of a given coin identifier, in a best effort way. If we do not have any price data for the given coin, we will return NOT_FOUND error. If we have at least one price data for the given coin, we will return it with the actual timestamp. Client is responsible for checking the timestamp and decide whether to use the price or not.
|
|
124
|
+
* Get price
|
|
120
125
|
*/
|
|
121
126
|
async getPriceRaw(requestParameters: GetPriceRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PriceServiceGetPriceResponse>> {
|
|
122
127
|
const queryParameters: any = {};
|
|
@@ -159,6 +164,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
159
164
|
|
|
160
165
|
/**
|
|
161
166
|
* GetPrice returns the price of a given coin identifier, in a best effort way. If we do not have any price data for the given coin, we will return NOT_FOUND error. If we have at least one price data for the given coin, we will return it with the actual timestamp. Client is responsible for checking the timestamp and decide whether to use the price or not.
|
|
167
|
+
* Get price
|
|
162
168
|
*/
|
|
163
169
|
async getPrice(requestParameters: GetPriceRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PriceServiceGetPriceResponse> {
|
|
164
170
|
const response = await this.getPriceRaw(requestParameters, initOverrides);
|
|
@@ -166,6 +172,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
166
172
|
}
|
|
167
173
|
|
|
168
174
|
/**
|
|
175
|
+
* List coins
|
|
169
176
|
*/
|
|
170
177
|
async priceListCoinsRaw(requestParameters: PriceListCoinsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PriceServiceListCoinsResponse>> {
|
|
171
178
|
const queryParameters: any = {};
|
|
@@ -203,6 +210,7 @@ export class PriceApi extends runtime.BaseAPI {
|
|
|
203
210
|
}
|
|
204
211
|
|
|
205
212
|
/**
|
|
213
|
+
* List coins
|
|
206
214
|
*/
|
|
207
215
|
async priceListCoins(requestParameters: PriceListCoinsRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PriceServiceListCoinsResponse> {
|
|
208
216
|
const response = await this.priceListCoinsRaw(requestParameters, initOverrides);
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
* `NullValue` is a singleton enumeration to represent the null value for the
|
|
18
18
|
* `Value` type union.
|
|
19
19
|
*
|
|
20
|
-
*
|
|
20
|
+
* The JSON representation for `NullValue` is JSON `null`.
|
|
21
21
|
*
|
|
22
22
|
* - NULL_VALUE: Null value.
|
|
23
23
|
* @export
|