@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 +15 -7
- package/dist/chuncks/{field-textarea.component.j5MsRUzc.js → field-textarea.component.CVt4caPC.js} +362 -352
- package/dist/chuncks/{format.util.CxZ87QTi.js → format.util.6YTmX_Zn.js} +1 -1
- package/dist/components.d.ts +17 -8
- package/dist/components.js +1 -1
- package/dist/constants.js +1 -1
- package/dist/content.d.ts +15 -7
- package/dist/events.js +1 -1
- package/dist/hooks.d.ts +3 -3
- package/dist/invoice.d.ts +15 -7
- package/dist/payment.d.ts +15 -7
- package/dist/providers.d.ts +3 -3
- package/dist/recruitment.d.ts +15 -7
- package/dist/sale.d.ts +15 -7
- package/dist/utils.js +2 -2
- package/package.json +1 -1
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?:
|
|
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
|
}
|