@highstate/library 0.5.3 → 0.5.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.
package/dist/index.d.ts CHANGED
@@ -51,6 +51,7 @@ declare const existingServer: _highstate_contract.Unit<{
51
51
  }>>, true, false];
52
52
  }, {
53
53
  sshPassword?: string | undefined;
54
+ sshPrivateKey?: string | undefined;
54
55
  }>;
55
56
  type Server = Static<typeof serverEntity.schema>;
56
57
  type Interface = Static<typeof interfaceEntity.schema>;
package/dist/index.mjs CHANGED
@@ -107,7 +107,8 @@ const existingServer = defineUnit({
107
107
  sshPort: Type.Optional(Type.Number({ default: 22 }))
108
108
  },
109
109
  secrets: {
110
- sshPassword: Type.Optional(Type.String())
110
+ sshPassword: Type.Optional(Type.String()),
111
+ sshPrivateKey: Type.Optional(Type.String())
111
112
  },
112
113
  outputs: {
113
114
  server: serverEntity
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highstate/library",
3
- "version": "0.5.3",
3
+ "version": "0.5.5",
4
4
  "type": "module",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "build": "pkgroll --tsconfig=tsconfig.build.json"
21
21
  },
22
22
  "dependencies": {
23
- "@highstate/contract": "^0.5.3",
23
+ "@highstate/contract": "^0.5.5",
24
24
  "@sinclair/typebox": "^0.34.11",
25
25
  "ip-cidr": "^4.0.2",
26
26
  "remeda": "^2.21.0"
@@ -28,5 +28,5 @@
28
28
  "devDependencies": {
29
29
  "pkgroll": "^2.5.1"
30
30
  },
31
- "gitHead": "e6ff8cbad1d33641d6871ca159e1589db6844203"
31
+ "gitHead": "daed8a1121d6dc0af8ed92261962356dad2325aa"
32
32
  }