@brandwave/react 0.3.3 → 0.3.7

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -0
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -397,6 +397,8 @@ declare const useActivity: (params: ActivityParams, options?: UseActivityOptions
397
397
  updatedAt: string;
398
398
  }[];
399
399
  refreshStatus: "failed" | "refreshing" | "ready";
400
+ campaignId: string | null;
401
+ campaignName: string | null;
400
402
  }, Error>;
401
403
 
402
404
  /**
@@ -775,6 +777,8 @@ declare const useCreateActivity: (options?: UseCreateActivityOptions) => _tansta
775
777
  updatedAt: string;
776
778
  }[];
777
779
  refreshStatus: "failed" | "refreshing" | "ready";
780
+ campaignId: string | null;
781
+ campaignName: string | null;
778
782
  }, Error, {
779
783
  organizationId: string;
780
784
  channel: "instagram" | "youtube" | "tiktok" | "twitter" | "linkedin" | "reddit";
@@ -1049,6 +1053,8 @@ declare const useUpdateActivity: (options?: UseUpdateActivityOptions) => _tansta
1049
1053
  updatedAt: string;
1050
1054
  }[];
1051
1055
  refreshStatus: "failed" | "refreshing" | "ready";
1056
+ campaignId: string | null;
1057
+ campaignName: string | null;
1052
1058
  }, Error, {
1053
1059
  id: string;
1054
1060
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brandwave/react",
3
- "version": "0.3.3",
3
+ "version": "0.3.7",
4
4
  "description": "React hooks for the Brandwave platform with TanStack Query integration",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -21,7 +21,7 @@
21
21
  "dist"
22
22
  ],
23
23
  "dependencies": {
24
- "@brandwave/ts": "0.3.3"
24
+ "@brandwave/ts": "0.3.7"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "@tanstack/react-query": ">=5.0.0",