@krovacloud/sdk 0.1.4 → 0.1.5

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/CHANGELOG.md +8 -0
  2. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to `@krovacloud/sdk` are documented here. This project adher
4
4
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and the
5
5
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) format.
6
6
 
7
+ ## 0.1.5
8
+
9
+ ### Changed
10
+
11
+ - Re-homed into the **krova-node** monorepo. The source now lives at
12
+ `github.com/krovacloud/krova-node` — this release restores npm provenance and
13
+ the correct repository link (the previous per-package repo was made private).
14
+
7
15
  ## 0.1.3
8
16
 
9
17
  ### Security
package/package.json CHANGED
@@ -1,17 +1,18 @@
1
1
  {
2
2
  "name": "@krovacloud/sdk",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Official TypeScript SDK for Krova Cloud — a typed client for provisioning and managing Cubes (Firecracker microVMs) on bare-metal.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "author": "Krova Inc.",
8
- "homepage": "https://krova.cloud",
8
+ "homepage": "https://github.com/krovacloud/krova-node/tree/main/packages/sdk#readme",
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "git+https://github.com/krovacloud/krova-js.git"
11
+ "url": "git+https://github.com/krovacloud/krova-node.git",
12
+ "directory": "packages/sdk"
12
13
  },
13
14
  "bugs": {
14
- "url": "https://github.com/krovacloud/krova-js/issues"
15
+ "url": "https://github.com/krovacloud/krova-node/issues"
15
16
  },
16
17
  "keywords": [
17
18
  "krova",
@@ -56,13 +57,6 @@
56
57
  "engines": {
57
58
  "node": ">=18"
58
59
  },
59
- "scripts": {
60
- "gen": "openapi-typescript openapi.json -o src/generated/types.ts",
61
- "build": "tsup",
62
- "typecheck": "tsc --noEmit",
63
- "test": "tsx --test tests/*.test.ts",
64
- "prepublishOnly": "pnpm build"
65
- },
66
60
  "dependencies": {
67
61
  "openapi-fetch": "^0.17.0"
68
62
  },
@@ -72,5 +66,11 @@
72
66
  "tsup": "^8.5.1",
73
67
  "tsx": "^4.22.4",
74
68
  "typescript": "^5.9.3"
69
+ },
70
+ "scripts": {
71
+ "gen": "openapi-typescript openapi.json -o src/generated/types.ts",
72
+ "build": "tsup",
73
+ "typecheck": "tsc --noEmit",
74
+ "test": "tsx --test tests/*.test.ts"
75
75
  }
76
- }
76
+ }