@avalabs/core-covalent-sdk 3.1.0-alpha.6 → 3.1.0-alpha.61

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/index.d.ts CHANGED
@@ -167,4 +167,5 @@ declare const BASE_URL = "https://api.covalenthq.com";
167
167
 
168
168
  declare function createApiUrl(chainID: number, version?: number): string;
169
169
 
170
- export { AddressTxsItem, BASE_URL, Covalent, GetAddressBalanceV2Item, GetAddressBalancesV2Response, GetTxsForAddressResponse, NFTAttribute, NFTData, PaginationQuery, PaginationResponse, TxsLogEvent, createApiUrl };
170
+ export { BASE_URL, Covalent, createApiUrl };
171
+ export type { AddressTxsItem, GetAddressBalanceV2Item, GetAddressBalancesV2Response, GetTxsForAddressResponse, NFTAttribute, NFTData, PaginationQuery, PaginationResponse, TxsLogEvent };
package/esm/models.d.ts CHANGED
@@ -117,4 +117,4 @@ interface TxsLogEvent {
117
117
  decoded: any;
118
118
  }
119
119
 
120
- export { AddressTxsItem, GetAddressBalanceV2Item, GetAddressBalancesV2Response, GetTxsForAddressResponse, NFTAttribute, NFTData, PaginationQuery, PaginationResponse, TxsLogEvent };
120
+ export type { AddressTxsItem, GetAddressBalanceV2Item, GetAddressBalancesV2Response, GetTxsForAddressResponse, NFTAttribute, NFTData, PaginationQuery, PaginationResponse, TxsLogEvent };
package/package.json CHANGED
@@ -1,11 +1,20 @@
1
1
  {
2
2
  "name": "@avalabs/core-covalent-sdk",
3
- "version": "3.1.0-alpha.6",
3
+ "version": "3.1.0-alpha.61",
4
4
  "license": "Limited Ecosystem License",
5
5
  "private": false,
6
- "main": "dist/index.js",
6
+ "type": "module",
7
+ "main": "dist/index.cjs",
7
8
  "module": "esm/index.js",
8
9
  "typings": "dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./esm/index.d.ts",
13
+ "import": "./esm/index.js",
14
+ "require": "./dist/index.cjs",
15
+ "default": "./esm/index.js"
16
+ }
17
+ },
9
18
  "files": [
10
19
  "dist",
11
20
  "esm"
@@ -17,10 +26,10 @@
17
26
  "scripts": {
18
27
  "start": "rollup -c --watch",
19
28
  "build": "rollup -c",
20
- "lint": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\""
29
+ "lint": "eslint --fix -c ./.eslintrc.cjs \"src/**/*.ts*\""
21
30
  },
22
31
  "dependencies": {
23
- "@avalabs/core-utils-sdk": "3.1.0-alpha.6"
32
+ "@avalabs/core-utils-sdk": "3.1.0-alpha.61"
24
33
  },
25
- "gitHead": "ee355dd2e49356401bc627399d8b365939c5a097"
34
+ "gitHead": "7a242a5dcc4d069cd28156e7727e3913aec52f28"
26
35
  }
File without changes