@sellable/mcp 0.1.879 → 0.1.880
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.
|
@@ -167,6 +167,10 @@ export declare const opportunitySequenceToolDefinitions: readonly [{
|
|
|
167
167
|
readonly type: "string";
|
|
168
168
|
readonly format: "date-time";
|
|
169
169
|
};
|
|
170
|
+
readonly voicemail_policy: {
|
|
171
|
+
readonly type: "string";
|
|
172
|
+
readonly enum: readonly ["context_only_max_15s_then_email", "context_social_proof_max_30s_then_email", "do_not_leave"];
|
|
173
|
+
};
|
|
170
174
|
readonly subject: {
|
|
171
175
|
readonly type: "string";
|
|
172
176
|
readonly minLength: 1;
|
|
@@ -105,6 +105,14 @@ export const opportunitySequenceToolDefinitions = [
|
|
|
105
105
|
additionalProperties: false,
|
|
106
106
|
},
|
|
107
107
|
due_at: { type: "string", format: "date-time" },
|
|
108
|
+
voicemail_policy: {
|
|
109
|
+
type: "string",
|
|
110
|
+
enum: [
|
|
111
|
+
"context_only_max_15s_then_email",
|
|
112
|
+
"context_social_proof_max_30s_then_email",
|
|
113
|
+
"do_not_leave",
|
|
114
|
+
],
|
|
115
|
+
},
|
|
108
116
|
subject: { type: "string", minLength: 1, maxLength: 200 },
|
|
109
117
|
body: { type: "string", minLength: 1, maxLength: 4000 },
|
|
110
118
|
rationale_summary: {
|
package/dist/tools/registry.d.ts
CHANGED
|
@@ -10339,6 +10339,10 @@ export declare const allTools: ({
|
|
|
10339
10339
|
readonly type: "string";
|
|
10340
10340
|
readonly format: "date-time";
|
|
10341
10341
|
};
|
|
10342
|
+
readonly voicemail_policy: {
|
|
10343
|
+
readonly type: "string";
|
|
10344
|
+
readonly enum: readonly ["context_only_max_15s_then_email", "context_social_proof_max_30s_then_email", "do_not_leave"];
|
|
10345
|
+
};
|
|
10342
10346
|
readonly subject: {
|
|
10343
10347
|
readonly type: "string";
|
|
10344
10348
|
readonly minLength: 1;
|