@fubar-it-co/tmdb-client 0.0.9 → 0.0.11

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/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ## <small>0.0.9 (2026-03-25)</small>
1
+ ## <small>0.0.11 (2026-03-25)</small>
2
2
 
3
3
  * chore: add postinstall script to ensure shell scripts are executable ([8808374](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/8808374))
4
4
  * chore: added exception to .gitignore ([97736d5](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/97736d5))
@@ -11,6 +11,8 @@
11
11
  * chore: update .windsurfrules with current project state ([e879115](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/e879115))
12
12
  * chore: updated react from 19.0.0 to 19.1.0 ([5ab9f01](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/5ab9f01))
13
13
  * chore: upgraded react react-dom and types ([3b5a7f4](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/3b5a7f4))
14
+ * chore: version bump for @fubar-it-co/tmdb-client to 0.0.10 ([e06f3e5](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/e06f3e5))
15
+ * chore: version bump for @fubar-it-co/tmdb-client to 0.0.9 ([f3010cd](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/f3010cd))
14
16
  * chore: version bump for ui to 0.2.0 ([20e4667](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/20e4667))
15
17
  * chore: version bump for ui to 0.4.0 ([d4191a8](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/d4191a8))
16
18
  * chore(cleaning): remove typos an consoles ([3935c3a](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/3935c3a))
@@ -53,6 +55,7 @@
53
55
  * docs(claude): update rules and add message-commit command ([0369b5f](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/0369b5f))
54
56
  * docs(claude): update rules and add message-commit command ([c7a447b](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/c7a447b))
55
57
  * docs(claude): update session notes — Phase 4.8 done, Phase 4.6 next ([7c08fbe](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/7c08fbe))
58
+ * docs(http-client): update changelog for version bump ([789b3d8](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/789b3d8))
56
59
  * docs(http-client): update changelog for version bump ([127744d](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/127744d))
57
60
  * docs(http-client): update changelog for version bump ([480b4dc](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/480b4dc))
58
61
  * docs(http-client): update changelog for version bump ([db881b8](https://github.com/fubaritico/vite-mf-monorepo-tmdb/commit/db881b8))
@@ -3,7 +3,7 @@
3
3
  * TMDB API Bearer token from environment variables.
4
4
  * Must be set in `.env.local` at the monorepo root.
5
5
  */
6
- const TMDB_API_TOKEN = typeof process !== 'undefined' && process.env?.VITE_TMDB_API_TOKEN
6
+ const TMDB_API_TOKEN = typeof process !== 'undefined'
7
7
  ? process.env.VITE_TMDB_API_TOKEN
8
8
  : import.meta.env.VITE_TMDB_API_TOKEN;
9
9
  /**
@@ -26,7 +26,7 @@ export const createClientConfig = (config) => {
26
26
  baseUrl: 'https://api.themoviedb.org',
27
27
  headers: {
28
28
  ...existingHeaders,
29
- Authorization: `Bearer ${TMDB_API_TOKEN}`,
29
+ Authorization: `Bearer ${String(TMDB_API_TOKEN)}`,
30
30
  },
31
31
  };
32
32
  };
@@ -1 +1 @@
1
- {"version":3,"file":"tmdb-config.js","sourceRoot":"","sources":["../src/tmdb-config.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAerC;;;GAGG;AACH,MAAM,cAAc,GAClB,OAAO,OAAO,KAAK,WAAW,IAAI,OAAO,CAAC,GAAG,EAAE,mBAAmB;IAChE,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,mBAAmB;IACjC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAA;AAEzC;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAmB,MAAS,EAAK,EAAE;IACnE,MAAM,eAAe,GACnB,MAAM,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC;QAC9C,CAAC,CAAE,MAAM,CAAC,OAAkC;QAC5C,CAAC,CAAC,EAAE,CAAA;IAER,OAAO;QACL,GAAG,MAAM;QACT,OAAO,EAAE,4BAA4B;QACrC,OAAO,EAAE;YACP,GAAG,eAAe;YAClB,aAAa,EAAE,UAAU,cAAc,EAAE;SAC1C;KACF,CAAA;AACH,CAAC,CAAA"}
1
+ {"version":3,"file":"tmdb-config.js","sourceRoot":"","sources":["../src/tmdb-config.ts"],"names":[],"mappings":"AAAA,qCAAqC;AAerC;;;GAGG;AACH,MAAM,cAAc,GAClB,OAAO,OAAO,KAAK,WAAW;IAC5B,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,mBAAmB;IACjC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,mBAAmB,CAAA;AAEzC;;;;;;;;;;GAUG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAmB,MAAS,EAAK,EAAE;IACnE,MAAM,eAAe,GACnB,MAAM,CAAC,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC;QAC9C,CAAC,CAAE,MAAM,CAAC,OAAkC;QAC5C,CAAC,CAAC,EAAE,CAAA;IAER,OAAO;QACL,GAAG,MAAM;QACT,OAAO,EAAE,4BAA4B;QACrC,OAAO,EAAE;YACP,GAAG,eAAe;YAClB,aAAa,EAAE,UAAU,MAAM,CAAC,cAAc,CAAC,EAAE;SAClD;KACF,CAAA;AACH,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fubar-it-co/tmdb-client",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "TMDB API client generated with heyAPI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",