flowgrid-sdk 1.2.0 → 1.2.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.
@@ -26,7 +26,7 @@
26
26
  * return (
27
27
  * <FlowGridProvider
28
28
  * webId="web_abc123"
29
- * endpoint="https://api.flowgrid.io"
29
+ * endpoint="https://api.flow-grid.xyz"
30
30
  * apiKey="key_xxx"
31
31
  * >
32
32
  * <MyApp />
@@ -52,7 +52,7 @@ export type { CookieBannerProps } from './CookieBanner';
52
52
  * ```tsx
53
53
  * <FlowGridProvider
54
54
  * webId="web_abc123"
55
- * endpoint="https://api.flowgrid.io"
55
+ * endpoint="https://api.flow-grid.xyz"
56
56
  * apiKey="key_xxx"
57
57
  * autoTrackPageViews={true}
58
58
  * autoTrackSessions={true}
@@ -15,7 +15,7 @@
15
15
  * const app = createApp(App);
16
16
  * app.use(FlowGridPlugin, {
17
17
  * webId: 'your-web-id',
18
- * endpoint: 'https://api.flowgrid.io',
18
+ * endpoint: 'https://api.flow-grid.xyz',
19
19
  * apiKey: 'your-api-key'
20
20
  * });
21
21
  * app.mount('#app');
@@ -60,7 +60,7 @@ export interface FlowGridInstance {
60
60
  * createApp(App)
61
61
  * .use(FlowGridPlugin, {
62
62
  * webId: 'web_123',
63
- * endpoint: 'https://api.flowgrid.io',
63
+ * endpoint: 'https://api.flow-grid.xyz',
64
64
  * apiKey: 'key_abc',
65
65
  * autoTrackPageViews: true
66
66
  * })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowgrid-sdk",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "A TypeScript SDK for tracking user events, feature usage, experiments, and feature flags with Flowgrid.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",