@highstate/library 0.4.2 → 0.4.3
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 +1 -1
- package/dist/index.mjs +1 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import * as _highstate_contract from '@highstate/contract';
|
2
|
+
import { Static } from '@highstate/contract';
|
2
3
|
import * as _sinclair_typebox from '@sinclair/typebox';
|
3
|
-
import { Static } from '@sinclair/typebox';
|
4
4
|
|
5
5
|
declare const serverEntity: _highstate_contract.Entity<"common.server", _sinclair_typebox.TObject<{
|
6
6
|
endpoint: _sinclair_typebox.TString;
|
package/dist/index.mjs
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
import { defineEntity, defineUnit, text, defineComponent } from '@highstate/contract';
|
2
|
-
import { Type } from '@sinclair/typebox';
|
1
|
+
import { Type, defineEntity, defineUnit, text, defineComponent } from '@highstate/contract';
|
3
2
|
import IPCIDR from 'ip-cidr';
|
4
3
|
|
5
4
|
const keyTypeSchema = Type.Union([
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@highstate/library",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.3",
|
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.4.
|
23
|
+
"@highstate/contract": "^0.4.3",
|
24
24
|
"@sinclair/typebox": "^0.34.11",
|
25
25
|
"ip-cidr": "^4.0.2",
|
26
26
|
"remeda": "^2.17.4"
|
@@ -28,5 +28,5 @@
|
|
28
28
|
"devDependencies": {
|
29
29
|
"pkgroll": "^2.5.1"
|
30
30
|
},
|
31
|
-
"gitHead": "
|
31
|
+
"gitHead": "5b99600bd04872a4817c97b26501e1f22c8a0780"
|
32
32
|
}
|