@johnqh/indexer_client 0.0.11 → 0.0.13

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/README.md CHANGED
@@ -23,7 +23,7 @@ npm install @johnqh/indexer_client
23
23
  ### Peer Dependencies
24
24
 
25
25
  ```bash
26
- npm install react @tanstack/react-query axios
26
+ npm install react @tanstack/react-query
27
27
  ```
28
28
 
29
29
  ## Quick Start
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- export * from './network/index.js';
2
- export * from './business/index.js';
3
- export * from './hooks/index.js';
4
- export * from './utils/index.js';
5
- export type { IndexerUserAuth } from './types.js';
1
+ export * from './network';
2
+ export * from './business';
3
+ export * from './hooks';
4
+ export * from './utils';
5
+ export type { IndexerUserAuth } from './types';
6
6
  export type { IndexerAddressValidationResponse, ChainType, IndexerDelegatedFromResponse, IndexerDelegatedToResponse, IndexerEmailAccountsResponse, IndexerEntitlementResponse, IndexerLeaderboardResponse, IndexerNameResolutionResponse, IndexerNameServiceResponse, IndexerNonceResponse, Optional, IndexerPointsResponse, IndexerSignInMessageResponse, IndexerSiteStatsResponse, } from '@johnqh/types';
7
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,cAAc,oBAAoB,CAAC;AAGnC,cAAc,qBAAqB,CAAC;AAGpC,cAAc,kBAAkB,CAAC;AAGjC,cAAc,kBAAkB,CAAC;AAGjC,YAAY,EAAE,eAAe,EAAE,MAAM,YAAY,CAAC;AAGlD,YAAY,EACV,gCAAgC,EAChC,SAAS,EACT,4BAA4B,EAC5B,0BAA0B,EAC1B,4BAA4B,EAC5B,0BAA0B,EAC1B,0BAA0B,EAC1B,6BAA6B,EAC7B,0BAA0B,EAC1B,oBAAoB,EACpB,QAAQ,EACR,qBAAqB,EACrB,4BAA4B,EAC5B,wBAAwB,GACzB,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,cAAc,WAAW,CAAC;AAG1B,cAAc,YAAY,CAAC;AAG3B,cAAc,SAAS,CAAC;AAGxB,cAAc,SAAS,CAAC;AAGxB,YAAY,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAG/C,YAAY,EACV,gCAAgC,EAChC,SAAS,EACT,4BAA4B,EAC5B,0BAA0B,EAC1B,4BAA4B,EAC5B,0BAA0B,EAC1B,0BAA0B,EAC1B,6BAA6B,EAC7B,0BAA0B,EAC1B,oBAAoB,EACpB,QAAQ,EACR,qBAAqB,EACrB,4BAA4B,EAC5B,wBAAwB,GACzB,MAAM,eAAe,CAAC"}
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- export * from './network/index.js';
2
- export * from './business/index.js';
3
- export * from './hooks/index.js';
4
- export * from './utils/index.js';
1
+ export * from './network';
2
+ export * from './business';
3
+ export * from './hooks';
4
+ export * from './utils';
5
5
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,cAAc,oBAAoB,CAAC;AAGnC,cAAc,qBAAqB,CAAC;AAGpC,cAAc,kBAAkB,CAAC;AAGjC,cAAc,kBAAkB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,cAAc,WAAW,CAAC;AAG1B,cAAc,YAAY,CAAC;AAG3B,cAAc,SAAS,CAAC;AAGxB,cAAc,SAAS,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@johnqh/indexer_client",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "description": "React and React Native compatible client library for 0xMail indexer API with TypeScript support",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -38,15 +38,16 @@
38
38
  "author": "John Huang",
39
39
  "license": "MIT",
40
40
  "peerDependencies": {
41
- "react": "^19.2.0"
41
+ "react": "^19.2.0",
42
+ "@tanstack/react-query": "^5.90.2"
42
43
  },
43
44
  "dependencies": {
44
45
  "@johnqh/di": "^1.4.4",
45
46
  "@johnqh/types": "^1.8.20",
46
- "@tanstack/react-query": "^5.90.2",
47
47
  "axios": "^1.12.2"
48
48
  },
49
49
  "devDependencies": {
50
+ "@tanstack/react-query": "^5.90.2",
50
51
  "@testing-library/react": "^16.3.0",
51
52
  "@types/node": "^24.7.0",
52
53
  "@types/react": "^19.2.2",