@parra/parra-js-sdk 0.2.111 → 0.2.112
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/ParraAPI.d.ts +4 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -340,12 +340,16 @@ export declare enum CampaignStatus {
|
|
|
340
340
|
export interface UpdateCampaignRequestBody {
|
|
341
341
|
name?: string;
|
|
342
342
|
description?: string | null;
|
|
343
|
+
start_at?: string | null;
|
|
344
|
+
end_at?: string | null;
|
|
343
345
|
triggers?: UpdateCampaignTriggerList;
|
|
344
346
|
actions?: UpdateCampaignActionList;
|
|
345
347
|
}
|
|
346
348
|
export interface CreateCampaignRequestBody {
|
|
347
349
|
name?: string;
|
|
348
350
|
description?: string | null;
|
|
351
|
+
start_at?: string | null;
|
|
352
|
+
end_at?: string | null;
|
|
349
353
|
triggers?: UpdateCampaignTriggerList;
|
|
350
354
|
actions?: UpdateCampaignActionList;
|
|
351
355
|
}
|