@plyaz/types 1.42.2 → 1.42.3
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/campaign/types.d.ts +7 -0
- package/package.json +1 -1
package/dist/campaign/types.d.ts
CHANGED
|
@@ -34,6 +34,13 @@ export type QueryCampaignDTO = z.infer<typeof QueryCampaignSchema>;
|
|
|
34
34
|
* Delete options DTO (DELETE)
|
|
35
35
|
*/
|
|
36
36
|
export type DeleteCampaignDTO = z.infer<typeof DeleteCampaignSchema>;
|
|
37
|
+
/**
|
|
38
|
+
* Update campaign params interface for API operations
|
|
39
|
+
*/
|
|
40
|
+
export interface UpdateCampaignParams {
|
|
41
|
+
id: string;
|
|
42
|
+
data: PatchCampaignDTO;
|
|
43
|
+
}
|
|
37
44
|
/**
|
|
38
45
|
* Single entity response DTO
|
|
39
46
|
*/
|
package/package.json
CHANGED