@highstate/library 0.9.27 → 0.9.29
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/LICENSE +21 -0
- package/dist/highstate.library.msgpack +0 -0
- package/dist/index.js +21 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/common/access-point.ts +17 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@highstate/library",
|
3
|
-
"version": "0.9.
|
3
|
+
"version": "0.9.29",
|
4
4
|
"type": "module",
|
5
5
|
"highstate": {
|
6
6
|
"type": "library"
|
@@ -25,14 +25,14 @@
|
|
25
25
|
"biome:check": "biome check --error-on-warnings"
|
26
26
|
},
|
27
27
|
"dependencies": {
|
28
|
-
"@highstate/contract": "^0.9.
|
28
|
+
"@highstate/contract": "^0.9.29",
|
29
29
|
"remeda": "^2.21.0"
|
30
30
|
},
|
31
31
|
"devDependencies": {
|
32
32
|
"@biomejs/biome": "2.2.0",
|
33
|
-
"@highstate/cli": "^0.9.
|
33
|
+
"@highstate/cli": "^0.9.29",
|
34
34
|
"@typescript/native-preview": "^7.0.0-dev.20250920.1",
|
35
35
|
"type-fest": "^4.41.0"
|
36
36
|
},
|
37
|
-
"gitHead": "
|
37
|
+
"gitHead": "170b9d5583afd825d95c4576c541b193ce6c6f48"
|
38
38
|
}
|
@@ -55,6 +55,11 @@ export const accessPointEntity = defineEntity({
|
|
55
55
|
* The DNS providers used to manage the DNS records for the access point.
|
56
56
|
*/
|
57
57
|
dnsProviders: dns.providerEntity.schema.array(),
|
58
|
+
|
59
|
+
/**
|
60
|
+
* Whether the DNS records created for the access point should be proxied.
|
61
|
+
*/
|
62
|
+
proxied: z.boolean().default(false),
|
58
63
|
}),
|
59
64
|
|
60
65
|
meta: {
|
@@ -70,6 +75,18 @@ export const accessPointEntity = defineEntity({
|
|
70
75
|
export const accessPoint = defineUnit({
|
71
76
|
type: "common.access-point.v1",
|
72
77
|
|
78
|
+
args: {
|
79
|
+
/**
|
80
|
+
* Whether the DNS records created for the access point should be proxied.
|
81
|
+
*
|
82
|
+
* This option is specific to certain DNS providers that support proxying, such as Cloudflare.
|
83
|
+
* When enabled, the DNS records will be proxied through the provider's network, providing additional security and performance benefits.
|
84
|
+
*
|
85
|
+
* Defaults to `false`.
|
86
|
+
*/
|
87
|
+
proxied: z.boolean().default(false),
|
88
|
+
},
|
89
|
+
|
73
90
|
inputs: {
|
74
91
|
gateway: gatewayEntity,
|
75
92
|
tlsIssuers: {
|