@grapadigital/shared-app-modules 0.0.111 → 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
@@ -1,6 +1,7 @@
1
1
  export declare interface ActionInterface {
2
2
  tags?: string[];
3
3
  _id?: string;
4
+ primetagId?: string;
4
5
  title?: string;
5
6
  clientId?: string;
6
7
  cluster?: string;
@@ -34,12 +35,26 @@ export declare interface ActionInterface {
34
35
  shopping?: string;
35
36
  project?: string;
36
37
  type?: "partner" | "exclusive";
37
- notes?: NoteInterface[];
38
+ notes?: {
39
+ text: string;
40
+ owner: string;
41
+ createdAt: string;
42
+ }[];
38
43
  hashtags?: string[];
39
44
  mentions?: string[];
40
45
  keywords?: string[];
41
46
  description?: string;
42
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
+ };
43
58
  }
44
59
 
45
60
  declare interface AgencyCommission {
@@ -302,12 +317,6 @@ declare interface Note_3 {
302
317
  createdAt: string;
303
318
  }
304
319
 
305
- export declare interface NoteInterface {
306
- text: string;
307
- owner: string;
308
- createdAt: string;
309
- }
310
-
311
320
  declare interface Paid {
312
321
  date: string;
313
322
  }