@agent-comm/piece-agent-comms 0.1.1 → 0.1.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-comm/piece-agent-comms",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Agent Comms — voice-agent communications. Triggers on calls, appointments and chats; place outbound calls, upsert contacts and send SMS.",
5
5
  "type": "commonjs",
6
6
  "main": "./src/index.js",
@@ -1,4 +1,4 @@
1
1
  export declare const makeOutboundCall: import("@activepieces/pieces-framework").IAction<import("@activepieces/pieces-framework").SecretTextProperty<true>, {
2
- assistant_id: import("@activepieces/pieces-framework").DropdownProperty<any, true, import("@activepieces/pieces-framework").PieceAuthProperty | import("@activepieces/pieces-framework").PieceAuthProperty[]>;
2
+ assistant_id: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").SecretTextProperty<true>>;
3
3
  to_number: import("@activepieces/pieces-framework").ShortTextProperty<true>;
4
4
  }>;
@@ -18,6 +18,7 @@ exports.makeOutboundCall = (0, pieces_framework_1.createAction)({
18
18
  description: 'The agent that should place the call.',
19
19
  required: true,
20
20
  refreshers: [],
21
+ auth: auth_1.bellvoxAuth,
21
22
  options: async ({ auth }) => {
22
23
  if (!auth)
23
24
  return { disabled: true, placeholder: 'Connect your account first', options: [] };
@@ -16,6 +16,7 @@ export const makeOutboundCall = createAction({
16
16
  description: 'The agent that should place the call.',
17
17
  required: true,
18
18
  refreshers: [],
19
+ auth: bellvoxAuth,
19
20
  options: async ({ auth }) => {
20
21
  if (!auth) return { disabled: true, placeholder: 'Connect your account first', options: [] };
21
22
  try {