@slates/client 1.0.0-rc.2 → 1.0.0-rc.21

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.
@@ -210,7 +210,9 @@ var SlatesProtocolClient = class {
210
210
  }
211
211
  async listTools() {
212
212
  let result = await this.listActions();
213
- return result.actions.filter((action) => action.type === "action.tool");
213
+ return result.actions.filter(
214
+ (action) => action.type === "action.tool"
215
+ );
214
216
  }
215
217
  async listTriggers() {
216
218
  let result = await this.listActions();
@@ -316,7 +318,8 @@ var SlatesProtocolClient = class {
316
318
  encoding: "base64",
317
319
  content: encodedBody
318
320
  } : null,
319
- state: d.state ?? null
321
+ state: d.state ?? null,
322
+ registrationDetails: d.registrationDetails ?? null
320
323
  });
321
324
  }
322
325
  async unregisterTriggerWebhook(d) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slates/client",
3
- "version": "1.0.0-rc.2",
3
+ "version": "1.0.0-rc.21",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -26,14 +26,14 @@
26
26
  "unpkg": "./dist/index.module.js",
27
27
  "scripts": {
28
28
  "test": "vitest run --passWithNoTests",
29
- "lint": "prettier src/**/*.ts --check",
30
29
  "build": "tsup --config ../../tsup.packages.config.ts --external async_hooks",
31
- "typecheck": "tsc --noEmit"
30
+ "typecheck": "tsc --noEmit",
31
+ "biome:check": "biome check --write src"
32
32
  },
33
33
  "dependencies": {
34
- "@slates/proto": "1.0.0-rc.7",
35
- "@slates/provider": "1.0.0-rc.8",
36
- "@slates/provider-handler": "1.0.0-rc.7"
34
+ "@slates/proto": "1.0.0-rc.17",
35
+ "@slates/provider": "1.0.0-rc.21",
36
+ "@slates/provider-handler": "1.0.0-rc.28"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@slates/tsconfig": "1.0.0-rc.1",