@openclaw/voice-call 2026.7.1 → 2026.7.2-beta.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.
Files changed (31) hide show
  1. package/README.md +1 -2
  2. package/dist/doctor-contract-api.js +34 -12
  3. package/dist/{guarded-json-api-CLVDU_h1.js → guarded-json-api-BKOgUU1q.js} +32 -41
  4. package/dist/index.js +12 -28
  5. package/dist/{plivo-D5wI4-pi.js → plivo-ByAIoPFp.js} +2 -2
  6. package/dist/{realtime-handler-Bz-MNWtD.js → realtime-handler-DJk-eYyf.js} +31 -20
  7. package/dist/{response-generator-D3YO-WtN.js → response-generator-Cdj8EuLg.js} +20 -4
  8. package/dist/{runtime-entry-DwMgbq2p.js → runtime-entry-DSgyqIwE.js} +820 -274
  9. package/dist/runtime-entry.js +1 -1
  10. package/dist/setup-api.js +86 -2
  11. package/dist/{store-DtewuuOb.js → store-path-nYL-yM0S.js} +12 -5
  12. package/dist/{telnyx-DksS6q0n.js → telnyx-DMbLYwj4.js} +1 -1
  13. package/dist/{twilio-BYcsdUkj.js → twilio-BTKKlkLT.js} +7 -10
  14. package/dist/twilio-region-4fkgz3UG.js +25 -0
  15. package/npm-shrinkwrap.json +3 -13
  16. package/openclaw.plugin.json +1 -0
  17. package/package.json +4 -6
  18. package/dist/config-CDSeuGp3.js +0 -674
  19. package/dist/config-compat-D8fcjOHp.js +0 -156
  20. package/node_modules/commander/LICENSE +0 -22
  21. package/node_modules/commander/Readme.md +0 -1172
  22. package/node_modules/commander/index.js +0 -21
  23. package/node_modules/commander/lib/argument.js +0 -147
  24. package/node_modules/commander/lib/command.js +0 -2790
  25. package/node_modules/commander/lib/error.js +0 -36
  26. package/node_modules/commander/lib/help.js +0 -731
  27. package/node_modules/commander/lib/option.js +0 -377
  28. package/node_modules/commander/lib/suggestSimilar.js +0 -99
  29. package/node_modules/commander/package-support.json +0 -19
  30. package/node_modules/commander/package.json +0 -64
  31. package/node_modules/commander/typings/index.d.ts +0 -1113
@@ -1,36 +0,0 @@
1
- /**
2
- * CommanderError class
3
- */
4
- export class CommanderError extends Error {
5
- /**
6
- * Constructs the CommanderError class
7
- * @param {number} exitCode suggested exit code which could be used with process.exit
8
- * @param {string} code an id string representing the error
9
- * @param {string} message human-readable description of the error
10
- */
11
- constructor(exitCode, code, message) {
12
- super(message);
13
- // properly capture stack trace in Node.js
14
- Error.captureStackTrace(this, this.constructor);
15
- this.name = this.constructor.name;
16
- this.code = code;
17
- this.exitCode = exitCode;
18
- this.nestedError = undefined;
19
- }
20
- }
21
-
22
- /**
23
- * InvalidArgumentError class
24
- */
25
- export class InvalidArgumentError extends CommanderError {
26
- /**
27
- * Constructs the InvalidArgumentError class
28
- * @param {string} [message] explanation of why argument is invalid
29
- */
30
- constructor(message) {
31
- super(1, 'commander.invalidArgument', message);
32
- // properly capture stack trace in Node.js
33
- Error.captureStackTrace(this, this.constructor);
34
- this.name = this.constructor.name;
35
- }
36
- }