retell-sync-cli 3.8.0 → 3.8.1
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/dist/cli.js +3 -7
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -135143,19 +135143,15 @@ async function canonicalizeFromFiles(files) {
|
|
|
135143
135143
|
var InputMatchRuleSchema = zod_default.discriminatedUnion("type", [
|
|
135144
135144
|
zod_default.object({ type: zod_default.literal("any") }),
|
|
135145
135145
|
zod_default.object({
|
|
135146
|
-
type: zod_default.literal("
|
|
135147
|
-
|
|
135148
|
-
}),
|
|
135149
|
-
zod_default.object({
|
|
135150
|
-
type: zod_default.literal("partial"),
|
|
135151
|
-
input: zod_default.record(zod_default.string(), zod_default.unknown())
|
|
135146
|
+
type: zod_default.literal("partial_match"),
|
|
135147
|
+
args: zod_default.record(zod_default.string(), zod_default.unknown())
|
|
135152
135148
|
})
|
|
135153
135149
|
]);
|
|
135154
135150
|
var ToolMockSchema = zod_default.object({
|
|
135155
135151
|
tool_name: zod_default.string(),
|
|
135156
135152
|
input_match_rule: InputMatchRuleSchema,
|
|
135157
135153
|
output: zod_default.string(),
|
|
135158
|
-
result: zod_default.boolean()
|
|
135154
|
+
result: zod_default.boolean().nullable().optional()
|
|
135159
135155
|
});
|
|
135160
135156
|
var TestCaseResponseEngineSchema = zod_default.discriminatedUnion("type", [
|
|
135161
135157
|
zod_default.object({
|