@ai-matrx/messaging 0.10.0 → 0.10.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.
- package/CHANGELOG.md +14 -0
- package/README.md +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js.map +1 -1
- package/dist/react.cjs +14 -2
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.cts +16 -1
- package/dist/react.d.ts +16 -1
- package/dist/react.js +14 -2
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -355,7 +355,13 @@ interface MessagingAiOptions {
|
|
|
355
355
|
transport: MatrxTransport;
|
|
356
356
|
organizationId: string;
|
|
357
357
|
agents: MessagingAgents;
|
|
358
|
-
/**
|
|
358
|
+
/**
|
|
359
|
+
* The producer slugs stamped on every run. 🚨 The AI Matrx server keeps a
|
|
360
|
+
* REGISTER of legal producers and refuses an unregistered one with a 422, so
|
|
361
|
+
* the defaults below are placeholders that will NOT survive a real server —
|
|
362
|
+
* only the host knows its registered slugs. Not analytics garnish: an
|
|
363
|
+
* unstamped or unregistered run is a refused run.
|
|
364
|
+
*/
|
|
359
365
|
sourceApp?: string | undefined;
|
|
360
366
|
sourceFeature?: string | undefined;
|
|
361
367
|
/** Cap on how much transcript is sent. Default 200 messages. */
|
package/dist/index.d.ts
CHANGED
|
@@ -355,7 +355,13 @@ interface MessagingAiOptions {
|
|
|
355
355
|
transport: MatrxTransport;
|
|
356
356
|
organizationId: string;
|
|
357
357
|
agents: MessagingAgents;
|
|
358
|
-
/**
|
|
358
|
+
/**
|
|
359
|
+
* The producer slugs stamped on every run. 🚨 The AI Matrx server keeps a
|
|
360
|
+
* REGISTER of legal producers and refuses an unregistered one with a 422, so
|
|
361
|
+
* the defaults below are placeholders that will NOT survive a real server —
|
|
362
|
+
* only the host knows its registered slugs. Not analytics garnish: an
|
|
363
|
+
* unstamped or unregistered run is a refused run.
|
|
364
|
+
*/
|
|
359
365
|
sourceApp?: string | undefined;
|
|
360
366
|
sourceFeature?: string | undefined;
|
|
361
367
|
/** Cap on how much transcript is sent. Default 200 messages. */
|