@opencx/mcp 1.15.8 → 1.15.9

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/schema.d.ts CHANGED
@@ -4767,7 +4767,7 @@ export interface components {
4767
4767
  * @description How often the same session may be surveyed: once_per_session (default, one survey ever), once_per_close (one per closure, so a reopened session can be surveyed again), or once_until_answered (re-ask after resend_after_days until the customer scores it)
4768
4768
  * @enum {string}
4769
4769
  */
4770
- resend_policy?: "once_per_close" | "once_per_session" | "once_until_answered";
4770
+ resend_policy?: "always" | "once_per_close" | "once_per_session" | "once_until_answered";
4771
4771
  /** @description Days to wait before re-asking an unanswered survey. Only used when resend_policy is once_until_answered */
4772
4772
  resend_after_days?: number;
4773
4773
  /** @description Per-channel overrides keyed by channel (e.g. { "whatsapp": { "rating_style": "emoji" } }). Replaces the whole map, so send the channels you want to keep */
@@ -7075,7 +7075,7 @@ export interface components {
7075
7075
  * @description How often the same session may be surveyed: once_per_session, once_per_close, or once_until_answered
7076
7076
  * @enum {string}
7077
7077
  */
7078
- resend_policy: "once_per_close" | "once_per_session" | "once_until_answered";
7078
+ resend_policy: "always" | "once_per_close" | "once_per_session" | "once_until_answered";
7079
7079
  /** @description Days to wait before re-asking an unanswered survey (only used when resend_policy is once_until_answered) */
7080
7080
  resend_after_days: number;
7081
7081
  /** @description Per-channel overrides keyed by channel; an absent channel inherits the org-wide settings */