@highstate/library 0.5.0 → 0.5.2

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
@@ -882,6 +882,7 @@ declare const vaultwarden: _highstate_contract.Unit<{
882
882
 
883
883
  declare const traefikGateway: _highstate_contract.Unit<{
884
884
  serviceType?: "NodePort" | "LoadBalancer" | "ClusterIP" | undefined;
885
+ appName?: string | undefined;
885
886
  className?: string | undefined;
886
887
  }, {
887
888
  k8sCluster: [_highstate_contract.Entity<"k8s.cluster", _sinclair_typebox.TObject<{
package/dist/index.mjs CHANGED
@@ -1078,6 +1078,7 @@ const vaultwarden = defineUnit({
1078
1078
  const traefikGateway = defineUnit({
1079
1079
  type: "apps.traefik-gateway",
1080
1080
  args: {
1081
+ appName: Type.Optional(Type.String()),
1081
1082
  className: Type.Optional(Type.String()),
1082
1083
  serviceType: Type.Optional(serviceTypeSchema)
1083
1084
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highstate/library",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
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.0",
23
+ "@highstate/contract": "^0.5.2",
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": "9ab4fc8f01c56df2c9ddf39eda57a3e00a2d17a8"
31
+ "gitHead": "88ec44336bbdd081cfbc4cb06db9b34c6314dbd2"
32
32
  }