@agent-native/dispatch 0.15.22 → 0.15.24

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.
@@ -47,11 +47,9 @@ declare const _default: import("node_modules/@agent-native/core/dist").ActionDef
47
47
  notes?: string | undefined;
48
48
  scope?: "org" | "user" | undefined;
49
49
  }, {
50
- message?: undefined;
51
50
  id?: undefined;
52
51
  provider?: undefined;
53
52
  deleted?: undefined;
54
- found?: undefined;
55
53
  providers: {
56
54
  id: string;
57
55
  label: string;
@@ -62,44 +60,46 @@ declare const _default: import("node_modules/@agent-native/core/dist").ActionDef
62
60
  updatedAt: number;
63
61
  }[];
64
62
  count: number;
63
+ found?: undefined;
65
64
  registered?: undefined;
66
65
  label?: undefined;
67
- } | {
68
66
  message?: undefined;
69
- count?: undefined;
67
+ } | {
70
68
  id?: undefined;
71
69
  deleted?: undefined;
72
70
  providers?: undefined;
71
+ count?: undefined;
73
72
  found: boolean;
74
73
  provider: import("node_modules/@agent-native/core/dist/provider-api").CustomProviderConfig;
75
74
  registered?: undefined;
76
75
  label?: undefined;
77
- } | {
78
76
  message?: undefined;
79
- count?: undefined;
77
+ } | {
80
78
  provider?: undefined;
81
79
  deleted?: undefined;
82
80
  providers?: undefined;
81
+ count?: undefined;
83
82
  found: boolean;
84
83
  id: string;
85
84
  registered?: undefined;
86
85
  label?: undefined;
87
- } | {
88
86
  message?: undefined;
89
- count?: undefined;
87
+ } | {
90
88
  provider?: undefined;
91
- found?: undefined;
92
89
  providers?: undefined;
90
+ count?: undefined;
91
+ found?: undefined;
93
92
  deleted: boolean;
94
93
  id: string;
95
94
  registered?: undefined;
96
95
  label?: undefined;
96
+ message?: undefined;
97
97
  } | {
98
- count?: undefined;
99
98
  provider?: undefined;
100
99
  deleted?: undefined;
101
- found?: undefined;
102
100
  providers?: undefined;
101
+ count?: undefined;
102
+ found?: undefined;
103
103
  registered: boolean;
104
104
  id: string;
105
105
  label: string;
@@ -5,18 +5,18 @@ declare const _default: import("@agent-native/core").ActionDefinition<{
5
5
  accessMode: import("../server/lib/vault-store.js").VaultAccessMode;
6
6
  synced: number;
7
7
  keys: never[];
8
- credentialStore?: undefined;
8
+ credentialStores: never[];
9
9
  envVars?: undefined;
10
10
  } | {
11
11
  appId: string;
12
12
  accessMode: import("../server/lib/vault-store.js").VaultAccessMode;
13
13
  synced: number;
14
14
  keys: string[];
15
- credentialStore: {
16
- scope: "org" | "workspace";
15
+ credentialStores: {
16
+ scope: ReturnType<typeof import("../server/lib/vault-store.js").credentialStoreScopeForVaultCtx>["scope"];
17
17
  scopeId: string;
18
18
  synced: number;
19
- };
19
+ }[];
20
20
  envVars: {
21
21
  status: "synced";
22
22
  keys: string[];
@@ -1280,7 +1280,7 @@ function normalizeBuilderRunString(value, fieldName) {
1280
1280
  throw new Error(`Builder app creation returned a blank ${fieldName}`);
1281
1281
  }
1282
1282
  const trimmed = value.trim();
1283
- if (/[-]/.test(trimmed)) {
1283
+ if (/[\u0000-\u001f\u007f]/.test(trimmed)) {
1284
1284
  throw new Error(`Builder app creation returned a malformed ${fieldName}`);
1285
1285
  }
1286
1286
  return trimmed;