localflare-core 0.4.0 → 0.4.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -106,6 +106,11 @@ interface LocalflareManifest {
106
106
  binding: string;
107
107
  className: string;
108
108
  }[];
109
+ vars: {
110
+ key: string;
111
+ value: string;
112
+ isSecret: boolean;
113
+ }[];
109
114
  }
110
115
 
111
116
  declare const WRANGLER_CONFIG_FILES: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "localflare-core",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "Core utilities for Localflare - config parsing and binding discovery",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",