@webless/agent 0.10.4 → 0.11.0
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/README.md +11 -0
- package/dist/{chunk-74CSWSC5.js → chunk-NW37MHU7.js} +353 -186
- package/dist/chunk-NW37MHU7.js.map +1 -0
- package/dist/embed.cjs +351 -184
- package/dist/embed.cjs.map +1 -1
- package/dist/embed.css +87 -0
- package/dist/embed.css.map +1 -1
- package/dist/embed.js +1 -1
- package/dist/index.cjs +20 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +20 -9
- package/dist/index.js.map +1 -1
- package/dist/presentation.cjs +3 -0
- package/dist/presentation.cjs.map +1 -1
- package/dist/presentation.d.cts +1 -1
- package/dist/presentation.d.ts +1 -1
- package/dist/presentation.js +3 -0
- package/dist/presentation.js.map +1 -1
- package/dist/react.cjs +369 -202
- package/dist/react.cjs.map +1 -1
- package/dist/react.css +87 -0
- package/dist/react.css.map +1 -1
- package/dist/react.js +1 -1
- package/dist/{types-sLEIYDqm.d.cts → types-B2j6hbI5.d.cts} +2 -0
- package/dist/{types-sLEIYDqm.d.ts → types-B2j6hbI5.d.ts} +2 -0
- package/package.json +1 -1
- package/dist/chunk-74CSWSC5.js.map +0 -1
package/dist/react.js
CHANGED
|
@@ -143,6 +143,8 @@ type PersistedAgentSession = {
|
|
|
143
143
|
lastMessage?: string;
|
|
144
144
|
};
|
|
145
145
|
type AgentClientOptions = {
|
|
146
|
+
/** Advertise a client that renders and resolves precise-location consent. */
|
|
147
|
+
locationConsent?: boolean;
|
|
146
148
|
/** Index id sent as `indexId` query param to the runtime. */
|
|
147
149
|
indexId: string;
|
|
148
150
|
/** Selects the published index by default, or its unpublished preview. */
|
|
@@ -143,6 +143,8 @@ type PersistedAgentSession = {
|
|
|
143
143
|
lastMessage?: string;
|
|
144
144
|
};
|
|
145
145
|
type AgentClientOptions = {
|
|
146
|
+
/** Advertise a client that renders and resolves precise-location consent. */
|
|
147
|
+
locationConsent?: boolean;
|
|
146
148
|
/** Index id sent as `indexId` query param to the runtime. */
|
|
147
149
|
indexId: string;
|
|
148
150
|
/** Selects the published index by default, or its unpublished preview. */
|