@shipfox/api-integration-slack 11.0.0 → 12.2.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +36 -0
- package/dist/core/agent-tools-provider.d.ts.map +1 -1
- package/dist/core/agent-tools.d.ts +13 -13
- package/dist/core/agent-tools.d.ts.map +1 -1
- package/dist/core/agent-tools.js +1 -1
- package/dist/core/agent-tools.js.map +1 -1
- package/dist/core/errors.d.ts.map +1 -1
- package/dist/db/db.d.ts +2 -2
- package/dist/db/schema/installations.d.ts +1 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/presentation/dto/integrations.d.ts.map +1 -1
- package/dist/presentation/routes/webhooks.d.ts +2 -2
- package/dist/presentation/routes/webhooks.d.ts.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +14 -10
- package/src/core/agent-tools.ts +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/api-integration-slack",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "12.2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -15,22 +15,26 @@
|
|
|
15
15
|
".": {
|
|
16
16
|
"types": "./dist/index.d.ts",
|
|
17
17
|
"default": "./dist/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./agent-tools": {
|
|
20
|
+
"types": "./dist/core/agent-tools.d.ts",
|
|
21
|
+
"default": "./dist/core/agent-tools.js"
|
|
18
22
|
}
|
|
19
23
|
},
|
|
20
24
|
"dependencies": {
|
|
21
25
|
"drizzle-orm": "^0.45.2",
|
|
22
26
|
"ky": "^2.0.0",
|
|
23
27
|
"zod": "^4.4.3",
|
|
24
|
-
"@shipfox/api-auth-context": "
|
|
25
|
-
"@shipfox/api-integration-spi": "0.
|
|
26
|
-
"@shipfox/api-integration-slack-dto": "
|
|
27
|
-
"@shipfox/api-workspaces-dto": "
|
|
28
|
+
"@shipfox/api-auth-context": "12.2.0",
|
|
29
|
+
"@shipfox/api-integration-spi": "1.0.1",
|
|
30
|
+
"@shipfox/api-integration-slack-dto": "12.2.0",
|
|
31
|
+
"@shipfox/api-workspaces-dto": "12.0.0",
|
|
28
32
|
"@shipfox/config": "1.2.4",
|
|
29
|
-
"@shipfox/inter-module": "0.2.
|
|
30
|
-
"@shipfox/node-drizzle": "0.3.
|
|
31
|
-
"@shipfox/node-fastify": "0.4.
|
|
32
|
-
"@shipfox/node-opentelemetry": "0.6.
|
|
33
|
-
"@shipfox/node-postgres": "0.
|
|
33
|
+
"@shipfox/inter-module": "0.2.3",
|
|
34
|
+
"@shipfox/node-drizzle": "0.3.5",
|
|
35
|
+
"@shipfox/node-fastify": "0.4.2",
|
|
36
|
+
"@shipfox/node-opentelemetry": "0.6.4",
|
|
37
|
+
"@shipfox/node-postgres": "0.5.0"
|
|
34
38
|
},
|
|
35
39
|
"imports": {
|
|
36
40
|
"#*": "./dist/*"
|
package/src/core/agent-tools.ts
CHANGED
|
@@ -357,7 +357,7 @@ const italicPattern = /\*([^*]+)\*|_([^_]+)_/g;
|
|
|
357
357
|
const blockquotePattern = /^>\s?/gm;
|
|
358
358
|
// Reserved code spans are wrapped in a delimiter built at runtime (String.fromCharCode) rather than
|
|
359
359
|
// a literal escape in source. A real chat message is vanishingly unlikely to contain a NUL byte, but
|
|
360
|
-
// isn't guaranteed not to, so any that do appear are stripped from the input first
|
|
360
|
+
// isn't guaranteed not to, so any that do appear are stripped from the input first. After that, the
|
|
361
361
|
// only NUL bytes left are the ones this function inserts, so restoration can't misfire on user text.
|
|
362
362
|
const codePlaceholderDelimiter = String.fromCharCode(0);
|
|
363
363
|
const codePlaceholderPattern = new RegExp(
|