@btrc/api-client 0.0.2 → 0.0.3

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/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -13,7 +13,7 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
13
13
  import { createBtrcClient } from '@btrc/api-client';
14
14
  import { BtrcClientProvider, useDriver } from '@btrc/api-client/react';
15
15
 
16
- const client = createBtrcClient({ baseUrl: 'https://api.specuro.com' });
16
+ const client = createBtrcClient({ baseUrl: 'https://btrc.specuro.com' });
17
17
  const queryClient = new QueryClient();
18
18
 
19
19
  function App() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@btrc/api-client",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Typed browser/app client for the Bowler Racing BTRC API, with TanStack Query bindings at @btrc/api-client/react",
5
5
  "private": false,
6
6
  "type": "module",
@@ -32,8 +32,8 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "zod": "^3.25.67",
35
- "@btrc/contracts": "^0.0.2",
36
- "@btrc/api-server": "^0.0.2"
35
+ "@btrc/api-server": "^0.0.3",
36
+ "@btrc/contracts": "^0.0.3"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@tanstack/react-query": "^5.62.0",