retell-sdk 5.35.0 → 5.37.0

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 (50) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/package.json +1 -1
  3. package/resources/agent.d.mts +98 -49
  4. package/resources/agent.d.mts.map +1 -1
  5. package/resources/agent.d.ts +98 -49
  6. package/resources/agent.d.ts.map +1 -1
  7. package/resources/agent.js +1 -4
  8. package/resources/agent.js.map +1 -1
  9. package/resources/agent.mjs +1 -4
  10. package/resources/agent.mjs.map +1 -1
  11. package/resources/batch-call.d.mts +31 -15
  12. package/resources/batch-call.d.mts.map +1 -1
  13. package/resources/batch-call.d.ts +31 -15
  14. package/resources/batch-call.d.ts.map +1 -1
  15. package/resources/call.d.mts +141 -49
  16. package/resources/call.d.mts.map +1 -1
  17. package/resources/call.d.ts +141 -49
  18. package/resources/call.d.ts.map +1 -1
  19. package/resources/chat-agent.d.mts +18 -4
  20. package/resources/chat-agent.d.mts.map +1 -1
  21. package/resources/chat-agent.d.ts +18 -4
  22. package/resources/chat-agent.d.ts.map +1 -1
  23. package/resources/chat-agent.js +1 -4
  24. package/resources/chat-agent.js.map +1 -1
  25. package/resources/chat-agent.mjs +1 -4
  26. package/resources/chat-agent.mjs.map +1 -1
  27. package/resources/conversation-flow-component.d.mts +459 -0
  28. package/resources/conversation-flow-component.d.mts.map +1 -1
  29. package/resources/conversation-flow-component.d.ts +459 -0
  30. package/resources/conversation-flow-component.d.ts.map +1 -1
  31. package/resources/conversation-flow.d.mts +1507 -589
  32. package/resources/conversation-flow.d.mts.map +1 -1
  33. package/resources/conversation-flow.d.ts +1507 -589
  34. package/resources/conversation-flow.d.ts.map +1 -1
  35. package/resources/tests.d.mts +4 -2
  36. package/resources/tests.d.mts.map +1 -1
  37. package/resources/tests.d.ts +4 -2
  38. package/resources/tests.d.ts.map +1 -1
  39. package/src/resources/agent.ts +147 -55
  40. package/src/resources/batch-call.ts +47 -17
  41. package/src/resources/call.ts +194 -55
  42. package/src/resources/chat-agent.ts +22 -4
  43. package/src/resources/conversation-flow-component.ts +699 -15
  44. package/src/resources/conversation-flow.ts +1556 -188
  45. package/src/resources/tests.ts +4 -2
  46. package/src/version.ts +1 -1
  47. package/version.d.mts +1 -1
  48. package/version.d.ts +1 -1
  49. package/version.js +1 -1
  50. package/version.mjs +1 -1
@@ -362,9 +362,11 @@ export interface TestCaseJobResponse {
362
362
  creation_timestamp: number;
363
363
 
364
364
  /**
365
- * Status of the test case job
365
+ * Status of the test case job. `pending` means the run is queued but has not
366
+ * started yet; it becomes `in_progress` once a worker picks it up, then resolves
367
+ * to `pass`, `fail`, or `error`.
366
368
  */
367
- status: 'in_progress' | 'pass' | 'fail' | 'error';
369
+ status: 'pending' | 'in_progress' | 'pass' | 'fail' | 'error';
368
370
 
369
371
  /**
370
372
  * ID of the test case definition used
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '5.35.0'; // x-release-please-version
1
+ export const VERSION = '5.37.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "5.35.0";
1
+ export declare const VERSION = "5.37.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "5.35.0";
1
+ export declare const VERSION = "5.37.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '5.35.0'; // x-release-please-version
4
+ exports.VERSION = '5.37.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '5.35.0'; // x-release-please-version
1
+ export const VERSION = '5.37.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map