@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.42.2",
3
+ "version": "1.42.3",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",