@coingecko/coingecko-typescript 1.7.0 → 1.7.2
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/CHANGELOG.md +28 -0
- package/internal/types.d.mts +8 -6
- package/internal/types.d.mts.map +1 -1
- package/internal/types.d.ts +8 -6
- package/internal/types.d.ts.map +1 -1
- package/internal/uploads.js +1 -1
- package/internal/uploads.js.map +1 -1
- package/internal/uploads.mjs +1 -1
- package/internal/uploads.mjs.map +1 -1
- package/internal/utils/log.js +1 -1
- package/internal/utils/log.js.map +1 -1
- package/internal/utils/log.mjs +1 -1
- package/internal/utils/log.mjs.map +1 -1
- package/internal/utils/path.d.mts.map +1 -1
- package/internal/utils/path.d.ts.map +1 -1
- package/internal/utils/path.js +26 -5
- package/internal/utils/path.js.map +1 -1
- package/internal/utils/path.mjs +26 -5
- package/internal/utils/path.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/coins/coins.d.mts +12 -4
- package/resources/coins/coins.d.mts.map +1 -1
- package/resources/coins/coins.d.ts +12 -4
- package/resources/coins/coins.d.ts.map +1 -1
- package/resources/coins/contract/contract.d.mts +12 -4
- package/resources/coins/contract/contract.d.mts.map +1 -1
- package/resources/coins/contract/contract.d.ts +12 -4
- package/resources/coins/contract/contract.d.ts.map +1 -1
- package/resources/coins/history.d.mts +3 -1
- package/resources/coins/history.d.mts.map +1 -1
- package/resources/coins/history.d.ts +3 -1
- package/resources/coins/history.d.ts.map +1 -1
- package/resources/coins/list.d.mts +3 -1
- package/resources/coins/list.d.mts.map +1 -1
- package/resources/coins/list.d.ts +3 -1
- package/resources/coins/list.d.ts.map +1 -1
- package/resources/exchange-rates.d.mts +3 -1
- package/resources/exchange-rates.d.mts.map +1 -1
- package/resources/exchange-rates.d.ts +3 -1
- package/resources/exchange-rates.d.ts.map +1 -1
- package/resources/onchain/simple/networks/token-price.d.mts +3 -1
- package/resources/onchain/simple/networks/token-price.d.mts.map +1 -1
- package/resources/onchain/simple/networks/token-price.d.ts +3 -1
- package/resources/onchain/simple/networks/token-price.d.ts.map +1 -1
- package/src/internal/types.ts +9 -6
- package/src/internal/uploads.ts +1 -1
- package/src/internal/utils/log.ts +1 -1
- package/src/internal/utils/path.ts +30 -7
- package/src/resources/coins/coins.ts +4 -4
- package/src/resources/coins/contract/contract.ts +4 -4
- package/src/resources/coins/history.ts +1 -1
- package/src/resources/coins/list.ts +1 -1
- package/src/resources/exchange-rates.ts +1 -1
- package/src/resources/onchain/simple/networks/token-price.ts +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -122,12 +122,12 @@ export interface CoinGetIDResponse {
|
|
|
122
122
|
/**
|
|
123
123
|
* coin description
|
|
124
124
|
*/
|
|
125
|
-
description?:
|
|
125
|
+
description?: { [key: string]: string };
|
|
126
126
|
|
|
127
127
|
/**
|
|
128
128
|
* detailed coin asset platform and contract address
|
|
129
129
|
*/
|
|
130
|
-
detail_platforms?:
|
|
130
|
+
detail_platforms?: { [key: string]: string };
|
|
131
131
|
|
|
132
132
|
/**
|
|
133
133
|
* coin developer data
|
|
@@ -162,7 +162,7 @@ export interface CoinGetIDResponse {
|
|
|
162
162
|
/**
|
|
163
163
|
* coin name localization
|
|
164
164
|
*/
|
|
165
|
-
localization?:
|
|
165
|
+
localization?: { [key: string]: string };
|
|
166
166
|
|
|
167
167
|
/**
|
|
168
168
|
* coin rank by market cap
|
|
@@ -182,7 +182,7 @@ export interface CoinGetIDResponse {
|
|
|
182
182
|
/**
|
|
183
183
|
* coin asset platform and contract address
|
|
184
184
|
*/
|
|
185
|
-
platforms?:
|
|
185
|
+
platforms?: { [key: string]: string };
|
|
186
186
|
|
|
187
187
|
/**
|
|
188
188
|
* preview listing coin
|
|
@@ -79,12 +79,12 @@ export interface ContractGetResponse {
|
|
|
79
79
|
/**
|
|
80
80
|
* coin description
|
|
81
81
|
*/
|
|
82
|
-
description?:
|
|
82
|
+
description?: { [key: string]: string };
|
|
83
83
|
|
|
84
84
|
/**
|
|
85
85
|
* detailed coin asset platform and contract address
|
|
86
86
|
*/
|
|
87
|
-
detail_platforms?:
|
|
87
|
+
detail_platforms?: { [key: string]: string };
|
|
88
88
|
|
|
89
89
|
/**
|
|
90
90
|
* coin developer data
|
|
@@ -119,7 +119,7 @@ export interface ContractGetResponse {
|
|
|
119
119
|
/**
|
|
120
120
|
* coin name localization
|
|
121
121
|
*/
|
|
122
|
-
localization?:
|
|
122
|
+
localization?: { [key: string]: string };
|
|
123
123
|
|
|
124
124
|
/**
|
|
125
125
|
* coin rank by market cap
|
|
@@ -139,7 +139,7 @@ export interface ContractGetResponse {
|
|
|
139
139
|
/**
|
|
140
140
|
* coin asset platform and contract address
|
|
141
141
|
*/
|
|
142
|
-
platforms?:
|
|
142
|
+
platforms?: { [key: string]: string };
|
|
143
143
|
|
|
144
144
|
/**
|
|
145
145
|
* preview listing coin
|
|
@@ -19,7 +19,7 @@ export class ExchangeRates extends APIResource {
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
export interface ExchangeRateGetResponse {
|
|
22
|
-
rates?:
|
|
22
|
+
rates?: { [key: string]: ExchangeRateGetResponse.Rates };
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
export namespace ExchangeRateGetResponse {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.7.
|
|
1
|
+
export const VERSION = '1.7.2'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.7.
|
|
1
|
+
export declare const VERSION = "1.7.2";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.7.
|
|
1
|
+
export declare const VERSION = "1.7.2";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.7.
|
|
1
|
+
export const VERSION = '1.7.2'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|