joulepai 1.0.0
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 +27 -0
- package/package.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# joulepai — name reserved, this is not the SDK
|
|
2
|
+
|
|
3
|
+
This package name is held by **Greenland AI Limited** (the operator of
|
|
4
|
+
JoulePAI) to protect users from installing the wrong package.
|
|
5
|
+
|
|
6
|
+
**The JoulePAI payment rail is part of the unified
|
|
7
|
+
[`@greenlandai/sdk`](https://www.npmjs.com/package/@greenlandai/sdk).**
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @greenlandai/sdk
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
import { Client } from '@greenlandai/sdk';
|
|
15
|
+
const client = new Client({ apiKey: 'jlp_YOUR_API_KEY' });
|
|
16
|
+
console.log(await client.joulepai.balance());
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
If an instruction sent you to `npm install joulepai`, it was following an
|
|
20
|
+
outdated docs page — no standalone package was ever published under this name;
|
|
21
|
+
the JoulePAI wallet, transfer, and funding methods live in the unified SDK's
|
|
22
|
+
`client.joulepai` namespace. Python: `pip install greenlandai`.
|
|
23
|
+
|
|
24
|
+
This placeholder contains no code and will never contain any.
|
|
25
|
+
|
|
26
|
+
- Docs: https://joulepai.ai/docs
|
|
27
|
+
- Contact: info@joulepai.ai
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "joulepai",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Name reserved by Greenland AI Limited — the JoulePAI payment rail is part of the unified @greenlandai/sdk. Install that instead: npm install @greenlandai/sdk",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "Greenland AI Limited <info@joulepai.ai>",
|
|
7
|
+
"homepage": "https://joulepai.ai",
|
|
8
|
+
"bugs": {
|
|
9
|
+
"email": "info@joulepai.ai"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"joulepai",
|
|
13
|
+
"greenlandai",
|
|
14
|
+
"reserved",
|
|
15
|
+
"see-@greenlandai/sdk"
|
|
16
|
+
],
|
|
17
|
+
"files": [
|
|
18
|
+
"README.md"
|
|
19
|
+
]
|
|
20
|
+
}
|