@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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shipfox/api-integration-slack",
3
3
  "license": "MIT",
4
- "version": "11.0.0",
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": "11.0.0",
25
- "@shipfox/api-integration-spi": "0.2.2",
26
- "@shipfox/api-integration-slack-dto": "9.0.2",
27
- "@shipfox/api-workspaces-dto": "11.0.0",
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.2",
30
- "@shipfox/node-drizzle": "0.3.4",
31
- "@shipfox/node-fastify": "0.4.0",
32
- "@shipfox/node-opentelemetry": "0.6.3",
33
- "@shipfox/node-postgres": "0.4.4"
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/*"
@@ -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 after that, the
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(