You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Inkeep Analytics API provides endpoints for managing conversations, feedback, events, and queries.
20
+
Inkeep Analytics API: The Inkeep Analytics API provides endpoints for managing and updating conversations, feedback, events, and queries.
22
21
<!-- End Summary [summary] -->
23
22
24
23
<!-- Start Table of Contents [toc] -->
@@ -45,34 +44,30 @@ The Inkeep Analytics API provides endpoints for managing conversations, feedback
45
44
<!-- Start SDK Installation [installation] -->
46
45
## SDK Installation
47
46
48
-
> [!TIP]
49
-
> To finish publishing your SDK to npm and others you must [run your first generation action](https://www.speakeasy.com/docs/github-setup#step-by-step-guide).
50
-
51
-
52
47
The SDK can be installed with either [npm](https://www.npmjs.com/), [pnpm](https://pnpm.io/), [bun](https://bun.sh/) or [yarn](https://classic.yarnpkg.com/en/) package managers.
53
48
54
49
### NPM
55
50
56
51
```bash
57
-
npm add <UNSET>
52
+
npm add @inkeep/inkeep-analytics
58
53
```
59
54
60
55
### PNPM
61
56
62
57
```bash
63
-
pnpm add <UNSET>
58
+
pnpm add @inkeep/inkeep-analytics
64
59
```
65
60
66
61
### Bun
67
62
68
63
```bash
69
-
bun add <UNSET>
64
+
bun add @inkeep/inkeep-analytics
70
65
```
71
66
72
67
### Yarn
73
68
74
69
```bash
75
-
yarn add <UNSET> zod
70
+
yarn add @inkeep/inkeep-analytics zod
76
71
77
72
# Note that Yarn does not install peer dependencies automatically. You will need
@@ -439,7 +434,7 @@ In some rare cases, the SDK can fail to get a response from the server or even m
439
434
440
435
The default server can also be overridden globally by passing a URL to the `serverURL: string` optional parameter when initializing the SDK client instance. For example:
// fetcher takes a function that has the same signature as native `fetch`.
@@ -526,7 +521,7 @@ You can pass a logger that matches `console`'s interface as an SDK option.
526
521
> Beware that debug logging will reveal secrets, like API tokens in headers, in log messages printed to a console or files. It's recommended to use this feature only during local development and not in production.
0 commit comments