Compare commits

...

6 Commits

Author SHA1 Message Date
philkunz e7cafd9c1c 1.0.6 2024-01-29 21:17:14 +01:00
philkunz 60725ecdcb fix(core): update 2024-01-29 21:17:14 +01:00
philkunz 8144432377 1.0.5 2024-01-29 21:16:11 +01:00
philkunz 76a6a2fdb3 fix(core): update 2024-01-29 21:16:10 +01:00
philkunz 1993016c92 1.0.4 2024-01-29 21:15:18 +01:00
philkunz 51feac6bb3 fix(core): update 2024-01-29 21:15:18 +01:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@apiclient.xyz/hetznercloud",
"version": "1.0.3",
"version": "1.0.6",
"private": false,
"description": "an unofficial api client for the hetzner cloud api",
"main": "dist_ts/index.js",
+1 -1
View File
@@ -28,7 +28,7 @@ A modern approach to talking to the hetzner API.
```typescript
import hetznerCloud from '@apiclient.xyz/hetznercloud'
const myhetznerAccount = new hetznerCloud.HetznerAccount('myToken');
const servers = const myhetznerAccount.getServers();
const servers = await myhetznerAccount.getServers();
for (const server of servers) {
await server.delete();
}
+1 -1
View File
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@apiclient.xyz/hetznercloud',
version: '1.0.3',
version: '1.0.6',
description: 'an unofficial api client for the hetzner cloud api'
}