@elevasis/sdk 1.13.2 → 1.14.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.
package/dist/index.js CHANGED
@@ -3763,7 +3763,7 @@ var DEFAULT_CRM_ACTIONS = [
3763
3763
  {
3764
3764
  key: "send_reply",
3765
3765
  label: "Send Reply",
3766
- isAvailableFor: (deal) => deal.stage_key === "interested" && deal.state_key === "discovery_replied",
3766
+ isAvailableFor: (deal) => deal.stage_key === "interested" && (deal.state_key === "discovery_replied" || deal.state_key === "discovery_link_sent" || deal.state_key === "discovery_nudging"),
3767
3767
  workflowId: "crm-send-reply-workflow",
3768
3768
  payloadSchema: SendReplyActionPayloadSchema
3769
3769
  },