You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`wise-cli` is an unofficial TypeScript CLI for the current Wise Platform API. It wraps profile, balance, recipient, quote, transfer, statement, and currency endpoints behind one command surface while leaving a raw `wise api` escape hatch for newly released endpoints.
19
+
`wise-cli` is an independent TypeScript CLI for the current Wise Platform API. It wraps profile, balance, recipient, quote, transfer, statement, and currency endpoints behind one command surface while leaving a raw `wise api` escape hatch for newly released endpoints.
@@ -17,7 +25,15 @@ This first public release is intentionally conservative:
17
25
- It is built around the currently documented Wise production and sandbox APIs.
18
26
- It supports personal-token auth out of the box.
19
27
- It keeps dynamic payloads as JSON bodies so the CLI stays compatible with Wise's mixed endpoint versions and changing requirements.
20
-
- It is not affiliated with, endorsed by, or maintained by Wise.
28
+
- It is independent and not affiliated with Wise.
29
+
30
+
## Legal disclaimer
31
+
32
+
`wise-cli` is an open source community project. It is not affiliated with, sponsored by, endorsed by, or maintained by Wise Payments Limited, Wise plc, Wise.com, or any Wise group company.
33
+
34
+
Wise, Wise Platform, Wise.com, and TransferWise are trademarks or registered trademarks of Wise Payments Limited or its affiliates. Any use of those names in this project is solely for identification, interoperability, and documentation of the public Wise Platform API.
35
+
36
+
This project does not provide financial, legal, tax, or compliance advice. You are responsible for complying with Wise's terms, API requirements, token permissions, regional restrictions, and all applicable laws when using this CLI.
21
37
22
38
## Why use it?
23
39
@@ -27,7 +43,15 @@ This first public release is intentionally conservative:
27
43
28
44
## Install
29
45
30
-
The GitHub repo is public as `brahimhamichan/wise-cli`. The npm package is scoped because the unscoped `wise-cli` name is already taken on npm.
46
+
The GitHub repo is public as `brahimhamichan/wise-cli`. The npm package is configured as `@brahimhamichan/wise-cli` because the unscoped `wise-cli` name is already taken on npm.
47
+
48
+
Until the package is published to npm, install from the GitHub repo:
49
+
50
+
```bash
51
+
npm install -g github:brahimhamichan/wise-cli
52
+
```
53
+
54
+
After the npm package is published:
31
55
32
56
```bash
33
57
npm install -g @brahimhamichan/wise-cli
@@ -192,6 +216,7 @@ The current implementation and references were aligned against Wise's public doc
0 commit comments