@opens/gateways 1.10.0 → 1.10.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.
|
@@ -76,7 +76,10 @@ interface Campaign {
|
|
|
76
76
|
schedule?: CampaignSchedule;
|
|
77
77
|
followUp?: {
|
|
78
78
|
message: WhatsAppPayload;
|
|
79
|
-
schedule:
|
|
79
|
+
schedule: {
|
|
80
|
+
startAt?: string;
|
|
81
|
+
delay?: number;
|
|
82
|
+
};
|
|
80
83
|
};
|
|
81
84
|
retryConfig?: CampaignRetryConfig | null;
|
|
82
85
|
}
|
|
@@ -102,7 +105,10 @@ interface CreateCampaignRequest {
|
|
|
102
105
|
expiresAt?: string;
|
|
103
106
|
followUp?: {
|
|
104
107
|
message: WhatsAppPayload;
|
|
105
|
-
schedule:
|
|
108
|
+
schedule: {
|
|
109
|
+
startAt?: string;
|
|
110
|
+
delay?: number;
|
|
111
|
+
};
|
|
106
112
|
};
|
|
107
113
|
retryConfig?: CampaignRetryConfig | null;
|
|
108
114
|
}
|
|
@@ -76,7 +76,10 @@ interface Campaign {
|
|
|
76
76
|
schedule?: CampaignSchedule;
|
|
77
77
|
followUp?: {
|
|
78
78
|
message: WhatsAppPayload;
|
|
79
|
-
schedule:
|
|
79
|
+
schedule: {
|
|
80
|
+
startAt?: string;
|
|
81
|
+
delay?: number;
|
|
82
|
+
};
|
|
80
83
|
};
|
|
81
84
|
retryConfig?: CampaignRetryConfig | null;
|
|
82
85
|
}
|
|
@@ -102,7 +105,10 @@ interface CreateCampaignRequest {
|
|
|
102
105
|
expiresAt?: string;
|
|
103
106
|
followUp?: {
|
|
104
107
|
message: WhatsAppPayload;
|
|
105
|
-
schedule:
|
|
108
|
+
schedule: {
|
|
109
|
+
startAt?: string;
|
|
110
|
+
delay?: number;
|
|
111
|
+
};
|
|
106
112
|
};
|
|
107
113
|
retryConfig?: CampaignRetryConfig | null;
|
|
108
114
|
}
|
package/package.json
CHANGED