repzo 1.0.144 → 1.0.145

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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -25,7 +25,9 @@ npm install repzo
25
25
  ## 🔧 Quick Start
26
26
 
27
27
  ```typescript
28
- import { Service } from "repzo";
28
+ import Repzo from "repzo";
29
+ const repzo = new Repzo("my-repzo-api-key");
30
+ let clients = repzo.client.find({ search: "Mecca" });
29
31
 
30
32
  // Example usage with type safety
31
33
  const params: Service.Client.Find.Params = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.144",
3
+ "version": "1.0.145",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -64,8 +64,8 @@
64
64
  "typescript": "^5.0.0"
65
65
  },
66
66
  "engines": {
67
- "node": ">=14.0.0",
68
- "npm": ">=6.0.0"
67
+ "node": ">=22.0.0",
68
+ "npm": ">=10.0.0"
69
69
  },
70
70
  "exports": {
71
71
  ".": {