@relayfile/sdk 0.8.29 → 0.9.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/dist/client.js +2 -1
- package/dist/types.d.ts +8 -0
- package/package.json +6 -6
package/dist/client.js
CHANGED
|
@@ -1598,7 +1598,8 @@ export class RelayFileClient {
|
|
|
1598
1598
|
success: input.success,
|
|
1599
1599
|
error: input.error,
|
|
1600
1600
|
externalId: input.externalId,
|
|
1601
|
-
canonicalPath: input.canonicalPath
|
|
1601
|
+
canonicalPath: input.canonicalPath,
|
|
1602
|
+
providerResult: input.providerResult
|
|
1602
1603
|
},
|
|
1603
1604
|
signal: input.signal
|
|
1604
1605
|
});
|
package/dist/types.d.ts
CHANGED
|
@@ -788,6 +788,14 @@ export interface AckWritebackInput {
|
|
|
788
788
|
* the externalId-derived name next to the draft.
|
|
789
789
|
*/
|
|
790
790
|
canonicalPath?: string;
|
|
791
|
+
/**
|
|
792
|
+
* Optional fields the provider echoed back about the written record (e.g. a
|
|
793
|
+
* Slack message `ts` and `channel`). They are surfaced verbatim on the
|
|
794
|
+
* operation's providerResult (recoverable via getOp), letting an agent reply
|
|
795
|
+
* in a Slack thread using the returned ts as thread_ts. The reserved key
|
|
796
|
+
* `providerRevision` is server-owned and cannot be overridden via this map.
|
|
797
|
+
*/
|
|
798
|
+
providerResult?: Record<string, unknown>;
|
|
791
799
|
correlationId?: string;
|
|
792
800
|
signal?: AbortSignal;
|
|
793
801
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@relayfile/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "TypeScript SDK for relayfile — real-time filesystem for humans and agents",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -59,15 +59,15 @@
|
|
|
59
59
|
"prepublishOnly": "npm run build"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@relayfile/core": "0.
|
|
62
|
+
"@relayfile/core": "0.9.0",
|
|
63
63
|
"ignore": "^7.0.5",
|
|
64
64
|
"tar": "^7.5.10"
|
|
65
65
|
},
|
|
66
66
|
"optionalDependencies": {
|
|
67
|
-
"@relayfile/mount-darwin-arm64": "0.
|
|
68
|
-
"@relayfile/mount-darwin-x64": "0.
|
|
69
|
-
"@relayfile/mount-linux-arm64": "0.
|
|
70
|
-
"@relayfile/mount-linux-x64": "0.
|
|
67
|
+
"@relayfile/mount-darwin-arm64": "0.9.0",
|
|
68
|
+
"@relayfile/mount-darwin-x64": "0.9.0",
|
|
69
|
+
"@relayfile/mount-linux-arm64": "0.9.0",
|
|
70
|
+
"@relayfile/mount-linux-x64": "0.9.0"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {},
|
|
73
73
|
"devDependencies": {
|