fimo-react 2.1.0-staging.2 → 2.2.0-staging.1

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.
@@ -11,9 +11,9 @@ export const viteContentRuntime = {
11
11
  headers(extra) {
12
12
  const headers = { ...extra };
13
13
  // @ts-ignore - import.meta.env is a Vite feature
14
- const env = import.meta.env.FIMO_ENV;
15
- if (env) {
16
- headers['X-Fimo-Env'] = env;
14
+ const branch = import.meta.env.FIMO_ENV;
15
+ if (branch) {
16
+ headers['X-Fimo-Branch'] = branch;
17
17
  }
18
18
  return headers;
19
19
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fimo-react",
3
- "version": "2.1.0-staging.2",
3
+ "version": "2.2.0-staging.1",
4
4
  "description": "Fimo React runtime: content clients, labels, and source-tracked primitives.",
5
5
  "files": [
6
6
  "dist/",
@@ -43,12 +43,12 @@
43
43
  "test:watch": "vitest"
44
44
  },
45
45
  "devDependencies": {
46
- "@fimo/tsconfig": "2.1.0-staging.2",
46
+ "@fimo/tsconfig": "2.2.0-staging.1",
47
47
  "@tanstack/react-query": "^5.80.6",
48
48
  "@types/node": "22.18.6",
49
49
  "@types/react": "19.2.14",
50
50
  "@types/react-dom": "19.2.3",
51
- "fimo": "2.1.0-staging.2",
51
+ "fimo": "2.2.0-staging.1",
52
52
  "react": "19.2.4",
53
53
  "react-dom": "19.2.4",
54
54
  "typescript": "7.0.2",
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "peerDependencies": {
59
59
  "@tanstack/react-query": "^5.80.6",
60
- "fimo": "2.1.0-staging.2",
60
+ "fimo": "2.2.0-staging.1",
61
61
  "react": "^18.2.0 || ^19.0.0",
62
62
  "react-dom": "^18.2.0 || ^19.0.0"
63
63
  },