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
// Terminal: messages were dropped. Inspect err.responseBody
106
-
// for per-message detail when the backend provides it.
107
-
break;
108
-
default:
109
-
// Transient: the queue will retry automatically.
110
-
break;
111
-
}
112
-
telemetry.captureException(err);
113
-
},
114
-
});
115
-
```
116
-
117
-
Exceptions thrown from `onError` are swallowed by the SDK so a
118
-
bad handler can't wedge the queue.
119
-
120
-
## Interactive sample app
64
+
## Documentation
121
65
122
-
For a live harness that exercises every public method, every typed
123
-
`track()` event, and every reachable `AudienceErrorCode` against the
124
-
real sandbox backend, see [`packages/audience/sdk-sample-app`](https://github.com/immutable/ts-immutable-sdk/tree/main/packages/audience/sdk-sample-app)
125
-
in the `ts-immutable-sdk` monorepo.
66
+
-[Web SDK](https://docs.immutable.com/docs/products/audience/web-sdk) — API reference, usage, integration walkthrough
67
+
-[Tracking Pixel](https://docs.immutable.com/docs/products/audience/tracking-pixel) — sibling `@imtbl/pixel` package for drop-in page-view tracking
68
+
-[REST API](https://docs.immutable.com/docs/products/audience/rest-api) — backend reference for direct integration
69
+
-[Data dictionary](https://docs.immutable.com/docs/products/audience/data-dictionary) — predefined event names and property schemas
70
+
-[Sample app](../sdk-sample-app) — runnable example showing init, tracking, identity, and consent
0 commit comments