@grapadigital/shared-app-modules 0.0.112 → 0.0.113

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/action.d.ts CHANGED
@@ -35,12 +35,26 @@ export declare interface ActionInterface {
35
35
  shopping?: string;
36
36
  project?: string;
37
37
  type?: "partner" | "exclusive";
38
- notes?: NoteInterface[];
38
+ notes?: {
39
+ text: string;
40
+ owner: string;
41
+ createdAt: string;
42
+ }[];
39
43
  hashtags?: string[];
40
44
  mentions?: string[];
41
45
  keywords?: string[];
42
46
  description?: string;
43
47
  objective?: string;
48
+ kpis?: {
49
+ budget: number;
50
+ revenue: number;
51
+ transferProvision: number;
52
+ costProvision: number;
53
+ transferActual: number;
54
+ costActual: number;
55
+ freeValueProvision: number;
56
+ freeValueActual: number;
57
+ };
44
58
  }
45
59
 
46
60
  declare interface AgencyCommission {
@@ -303,12 +317,6 @@ declare interface Note_3 {
303
317
  createdAt: string;
304
318
  }
305
319
 
306
- export declare interface NoteInterface {
307
- text: string;
308
- owner: string;
309
- createdAt: string;
310
- }
311
-
312
320
  declare interface Paid {
313
321
  date: string;
314
322
  }