@on-mission/sdk 0.1.9 → 0.1.12
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/dist/index.d.ts +2 -2
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -37
package/dist/index.d.ts
CHANGED
|
@@ -607,7 +607,7 @@ type SendIntentsModule = {
|
|
|
607
607
|
* a "tools.call" command, the registry dispatches to the right handler.
|
|
608
608
|
*
|
|
609
609
|
* Usage:
|
|
610
|
-
* mission.tools.register('
|
|
610
|
+
* mission.tools.register('search', async ({ params, context }) => { ... })
|
|
611
611
|
* mission.tools.registerAll(handlers)
|
|
612
612
|
*/
|
|
613
613
|
|
|
@@ -713,7 +713,7 @@ type MissionSDK = {
|
|
|
713
713
|
* Durable Outlook send-intent idempotency ledger. Claim a send's
|
|
714
714
|
* content-identity before dispatching to Graph, mark it sent on a 2xx, release
|
|
715
715
|
* it on a provable pre-dispatch failure — the exactly-once guard behind
|
|
716
|
-
* `
|
|
716
|
+
* `send`. Each call is a strongly-consistent round-trip to OUR
|
|
717
717
|
* store via the gateway, never a read of Graph's Sent Items.
|
|
718
718
|
*/
|
|
719
719
|
sendIntents: SendIntentsModule;
|
package/dist/index.js
CHANGED
|
@@ -13948,13 +13948,13 @@ var pageReadResultSchema = external_exports.object({
|
|
|
13948
13948
|
framesDropped: external_exports.number().int().nonnegative()
|
|
13949
13949
|
});
|
|
13950
13950
|
var PAGE_MUTATING_TOOL_NAME_LIST = [
|
|
13951
|
-
"
|
|
13952
|
-
"
|
|
13953
|
-
"
|
|
13954
|
-
"
|
|
13955
|
-
"
|
|
13956
|
-
"
|
|
13957
|
-
"
|
|
13951
|
+
"type",
|
|
13952
|
+
"click",
|
|
13953
|
+
"act",
|
|
13954
|
+
"navigate",
|
|
13955
|
+
"login",
|
|
13956
|
+
"back",
|
|
13957
|
+
"refresh"
|
|
13958
13958
|
];
|
|
13959
13959
|
var PAGE_MUTATING_TOOL_NAMES = new Set(PAGE_MUTATING_TOOL_NAME_LIST);
|
|
13960
13960
|
var mismatchSchema = external_exports.discriminatedUnion("kind", [
|