@brandwave/ts 0.3.3 → 0.3.5
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/index.d.ts +12 -0
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -345,6 +345,8 @@ declare const createActivitiesResource: (http: HttpClient) => ((params: _brandwa
|
|
|
345
345
|
updatedAt: string;
|
|
346
346
|
}[];
|
|
347
347
|
refreshStatus: "failed" | "refreshing" | "ready";
|
|
348
|
+
campaignId: string | null;
|
|
349
|
+
campaignName: string | null;
|
|
348
350
|
}>>) & {
|
|
349
351
|
/** List activities with pagination, search, sorting, and filtering. */
|
|
350
352
|
list: (params: _brandwave_database_queries_activities_schemas.ListActivitiesParams) => Promise<ActivityListResult>;
|
|
@@ -625,6 +627,8 @@ declare const createActivitiesResource: (http: HttpClient) => ((params: _brandwa
|
|
|
625
627
|
updatedAt: string;
|
|
626
628
|
}[];
|
|
627
629
|
refreshStatus: "failed" | "refreshing" | "ready";
|
|
630
|
+
campaignId: string | null;
|
|
631
|
+
campaignName: string | null;
|
|
628
632
|
}>>;
|
|
629
633
|
/** Update an activity's details, content link, or metrics. */
|
|
630
634
|
update: (params: _brandwave_database_queries_activities_schemas.UpdateActivityParams) => Promise<_brandwave_database_queries__shared_types.ItemResult<{
|
|
@@ -885,6 +889,8 @@ declare const createActivitiesResource: (http: HttpClient) => ((params: _brandwa
|
|
|
885
889
|
updatedAt: string;
|
|
886
890
|
}[];
|
|
887
891
|
refreshStatus: "failed" | "refreshing" | "ready";
|
|
892
|
+
campaignId: string | null;
|
|
893
|
+
campaignName: string | null;
|
|
888
894
|
}>>;
|
|
889
895
|
/**
|
|
890
896
|
* Permanently delete an activity and its associated records.
|
|
@@ -2980,6 +2986,8 @@ declare const createBrandwave: (options: BrandwaveOptions) => {
|
|
|
2980
2986
|
updatedAt: string;
|
|
2981
2987
|
}[];
|
|
2982
2988
|
refreshStatus: "failed" | "refreshing" | "ready";
|
|
2989
|
+
campaignId: string | null;
|
|
2990
|
+
campaignName: string | null;
|
|
2983
2991
|
}>>) & {
|
|
2984
2992
|
list: (params: _brandwave_database_queries_activities_schemas.ListActivitiesParams) => Promise<ActivityListResult>;
|
|
2985
2993
|
count: (params: _brandwave_database_queries_activities_schemas.CountActivitiesParams) => Promise<_brandwave_database_queries__shared_types.CountResult>;
|
|
@@ -3256,6 +3264,8 @@ declare const createBrandwave: (options: BrandwaveOptions) => {
|
|
|
3256
3264
|
updatedAt: string;
|
|
3257
3265
|
}[];
|
|
3258
3266
|
refreshStatus: "failed" | "refreshing" | "ready";
|
|
3267
|
+
campaignId: string | null;
|
|
3268
|
+
campaignName: string | null;
|
|
3259
3269
|
}>>;
|
|
3260
3270
|
update: (params: _brandwave_database_queries_activities_schemas.UpdateActivityParams) => Promise<_brandwave_database_queries__shared_types.ItemResult<{
|
|
3261
3271
|
organizationId: string;
|
|
@@ -3515,6 +3525,8 @@ declare const createBrandwave: (options: BrandwaveOptions) => {
|
|
|
3515
3525
|
updatedAt: string;
|
|
3516
3526
|
}[];
|
|
3517
3527
|
refreshStatus: "failed" | "refreshing" | "ready";
|
|
3528
|
+
campaignId: string | null;
|
|
3529
|
+
campaignName: string | null;
|
|
3518
3530
|
}>>;
|
|
3519
3531
|
delete: (params: _brandwave_database_queries_activities_schemas.DeleteActivityParams) => Promise<_brandwave_database_queries__shared_types.ItemResult<{
|
|
3520
3532
|
success: true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brandwave/ts",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "TypeScript SDK for the Brandwave platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@vitest/coverage-v8": "^4.1.9",
|
|
24
24
|
"tsup": "^8.0.0",
|
|
25
25
|
"vitest": "^4.1.0",
|
|
26
|
-
"@brandwave/database": "0.3.
|
|
26
|
+
"@brandwave/database": "0.3.5"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"typescript": ">=5.0.0"
|