@grapadigital/shared-app-modules 0.0.109 → 0.0.110
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 +6 -18
- package/dist/components.d.ts +6 -18
- package/dist/content.d.ts +6 -18
- package/dist/invoice.d.ts +6 -18
- package/dist/payment.d.ts +6 -18
- package/dist/recruitment.d.ts +6 -18
- package/dist/sale.d.ts +6 -18
- package/package.json +1 -1
package/dist/action.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export declare interface ActionInterface {
|
|
2
|
+
tags?: string[];
|
|
2
3
|
_id?: string;
|
|
3
4
|
title?: string;
|
|
4
5
|
clientId?: string;
|
|
@@ -34,9 +35,11 @@ export declare interface ActionInterface {
|
|
|
34
35
|
project?: string;
|
|
35
36
|
type?: "partner" | "exclusive";
|
|
36
37
|
notes?: NoteInterface[];
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
hashtags?: string[];
|
|
39
|
+
mentions?: string[];
|
|
40
|
+
keywords?: string[];
|
|
41
|
+
description?: string;
|
|
42
|
+
objective?: string;
|
|
40
43
|
}
|
|
41
44
|
|
|
42
45
|
declare interface AgencyCommission {
|
|
@@ -55,13 +58,6 @@ declare interface Attachments {
|
|
|
55
58
|
name: string;
|
|
56
59
|
}
|
|
57
60
|
|
|
58
|
-
export declare interface BriefingInterface {
|
|
59
|
-
objective: string;
|
|
60
|
-
budget: number;
|
|
61
|
-
briefing: string;
|
|
62
|
-
brandName: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
61
|
declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
|
|
66
62
|
|
|
67
63
|
declare interface Canceled {
|
|
@@ -506,14 +502,6 @@ declare interface ScreeningInterface {
|
|
|
506
502
|
declare interface SupplierInterface extends UserInterface {
|
|
507
503
|
}
|
|
508
504
|
|
|
509
|
-
export declare interface TrackingInterface {
|
|
510
|
-
hashtag: string[];
|
|
511
|
-
mentions: string[];
|
|
512
|
-
keyword: string[];
|
|
513
|
-
startDate: string;
|
|
514
|
-
endDate: string;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
505
|
declare interface UserInterface {
|
|
518
506
|
_id?: string;
|
|
519
507
|
name?: string;
|
package/dist/components.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { RefAttributes } from 'react';
|
|
|
13
13
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
14
14
|
|
|
15
15
|
declare interface ActionInterface {
|
|
16
|
+
tags?: string[];
|
|
16
17
|
_id?: string;
|
|
17
18
|
title?: string;
|
|
18
19
|
clientId?: string;
|
|
@@ -48,9 +49,11 @@ declare interface ActionInterface {
|
|
|
48
49
|
project?: string;
|
|
49
50
|
type?: "partner" | "exclusive";
|
|
50
51
|
notes?: NoteInterface[];
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
hashtags?: string[];
|
|
53
|
+
mentions?: string[];
|
|
54
|
+
keywords?: string[];
|
|
55
|
+
description?: string;
|
|
56
|
+
objective?: string;
|
|
54
57
|
}
|
|
55
58
|
|
|
56
59
|
declare interface AgencyCommission {
|
|
@@ -69,13 +72,6 @@ declare interface Attachments {
|
|
|
69
72
|
name: string;
|
|
70
73
|
}
|
|
71
74
|
|
|
72
|
-
declare interface BriefingInterface {
|
|
73
|
-
objective: string;
|
|
74
|
-
budget: number;
|
|
75
|
-
briefing: string;
|
|
76
|
-
brandName: string;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
75
|
declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
|
|
80
76
|
|
|
81
77
|
export declare const CampaignsSelectInput: default_2.ForwardRefExoticComponent<Omit<CampaignsSelectInputProps, "ref"> & default_2.RefAttributes<HTMLInputElement>>;
|
|
@@ -754,14 +750,6 @@ declare interface TableSkeletonProps {
|
|
|
754
750
|
|
|
755
751
|
export declare function TikTokIcon({ size, color, ...props }: LucideProps): JSX.Element;
|
|
756
752
|
|
|
757
|
-
declare interface TrackingInterface {
|
|
758
|
-
hashtag: string[];
|
|
759
|
-
mentions: string[];
|
|
760
|
-
keyword: string[];
|
|
761
|
-
startDate: string;
|
|
762
|
-
endDate: string;
|
|
763
|
-
}
|
|
764
|
-
|
|
765
753
|
declare interface UserInterface {
|
|
766
754
|
_id?: string;
|
|
767
755
|
name?: string;
|
package/dist/content.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare interface ActionInterface {
|
|
2
|
+
tags?: string[];
|
|
2
3
|
_id?: string;
|
|
3
4
|
title?: string;
|
|
4
5
|
clientId?: string;
|
|
@@ -34,9 +35,11 @@ declare interface ActionInterface {
|
|
|
34
35
|
project?: string;
|
|
35
36
|
type?: "partner" | "exclusive";
|
|
36
37
|
notes?: NoteInterface[];
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
hashtags?: string[];
|
|
39
|
+
mentions?: string[];
|
|
40
|
+
keywords?: string[];
|
|
41
|
+
description?: string;
|
|
42
|
+
objective?: string;
|
|
40
43
|
}
|
|
41
44
|
|
|
42
45
|
declare interface AgencyCommission {
|
|
@@ -55,13 +58,6 @@ declare interface Attachments {
|
|
|
55
58
|
name: string;
|
|
56
59
|
}
|
|
57
60
|
|
|
58
|
-
declare interface BriefingInterface {
|
|
59
|
-
objective: string;
|
|
60
|
-
budget: number;
|
|
61
|
-
briefing: string;
|
|
62
|
-
brandName: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
61
|
declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
|
|
66
62
|
|
|
67
63
|
declare interface Canceled {
|
|
@@ -506,14 +502,6 @@ declare interface ScreeningInterface {
|
|
|
506
502
|
declare interface SupplierInterface extends UserInterface {
|
|
507
503
|
}
|
|
508
504
|
|
|
509
|
-
declare interface TrackingInterface {
|
|
510
|
-
hashtag: string[];
|
|
511
|
-
mentions: string[];
|
|
512
|
-
keyword: string[];
|
|
513
|
-
startDate: string;
|
|
514
|
-
endDate: string;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
505
|
declare interface UserInterface {
|
|
518
506
|
_id?: string;
|
|
519
507
|
name?: string;
|
package/dist/invoice.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare interface ActionInterface {
|
|
2
|
+
tags?: string[];
|
|
2
3
|
_id?: string;
|
|
3
4
|
title?: string;
|
|
4
5
|
clientId?: string;
|
|
@@ -34,9 +35,11 @@ declare interface ActionInterface {
|
|
|
34
35
|
project?: string;
|
|
35
36
|
type?: "partner" | "exclusive";
|
|
36
37
|
notes?: NoteInterface[];
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
hashtags?: string[];
|
|
39
|
+
mentions?: string[];
|
|
40
|
+
keywords?: string[];
|
|
41
|
+
description?: string;
|
|
42
|
+
objective?: string;
|
|
40
43
|
}
|
|
41
44
|
|
|
42
45
|
declare interface AgencyCommission {
|
|
@@ -55,13 +58,6 @@ declare interface Attachments {
|
|
|
55
58
|
name: string;
|
|
56
59
|
}
|
|
57
60
|
|
|
58
|
-
declare interface BriefingInterface {
|
|
59
|
-
objective: string;
|
|
60
|
-
budget: number;
|
|
61
|
-
briefing: string;
|
|
62
|
-
brandName: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
61
|
declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
|
|
66
62
|
|
|
67
63
|
export declare interface Canceled {
|
|
@@ -506,14 +502,6 @@ declare interface ScreeningInterface {
|
|
|
506
502
|
declare interface SupplierInterface extends UserInterface {
|
|
507
503
|
}
|
|
508
504
|
|
|
509
|
-
declare interface TrackingInterface {
|
|
510
|
-
hashtag: string[];
|
|
511
|
-
mentions: string[];
|
|
512
|
-
keyword: string[];
|
|
513
|
-
startDate: string;
|
|
514
|
-
endDate: string;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
505
|
declare interface UserInterface {
|
|
518
506
|
_id?: string;
|
|
519
507
|
name?: string;
|
package/dist/payment.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare interface ActionInterface {
|
|
2
|
+
tags?: string[];
|
|
2
3
|
_id?: string;
|
|
3
4
|
title?: string;
|
|
4
5
|
clientId?: string;
|
|
@@ -34,9 +35,11 @@ declare interface ActionInterface {
|
|
|
34
35
|
project?: string;
|
|
35
36
|
type?: "partner" | "exclusive";
|
|
36
37
|
notes?: NoteInterface[];
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
hashtags?: string[];
|
|
39
|
+
mentions?: string[];
|
|
40
|
+
keywords?: string[];
|
|
41
|
+
description?: string;
|
|
42
|
+
objective?: string;
|
|
40
43
|
}
|
|
41
44
|
|
|
42
45
|
declare interface AgencyCommission {
|
|
@@ -55,13 +58,6 @@ export declare interface Attachments {
|
|
|
55
58
|
name: string;
|
|
56
59
|
}
|
|
57
60
|
|
|
58
|
-
declare interface BriefingInterface {
|
|
59
|
-
objective: string;
|
|
60
|
-
budget: number;
|
|
61
|
-
briefing: string;
|
|
62
|
-
brandName: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
61
|
declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
|
|
66
62
|
|
|
67
63
|
export declare interface Canceled {
|
|
@@ -506,14 +502,6 @@ declare interface ScreeningInterface {
|
|
|
506
502
|
declare interface SupplierInterface extends UserInterface {
|
|
507
503
|
}
|
|
508
504
|
|
|
509
|
-
declare interface TrackingInterface {
|
|
510
|
-
hashtag: string[];
|
|
511
|
-
mentions: string[];
|
|
512
|
-
keyword: string[];
|
|
513
|
-
startDate: string;
|
|
514
|
-
endDate: string;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
505
|
declare interface UserInterface {
|
|
518
506
|
_id?: string;
|
|
519
507
|
name?: string;
|
package/dist/recruitment.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare interface ActionInterface {
|
|
2
|
+
tags?: string[];
|
|
2
3
|
_id?: string;
|
|
3
4
|
title?: string;
|
|
4
5
|
clientId?: string;
|
|
@@ -34,9 +35,11 @@ declare interface ActionInterface {
|
|
|
34
35
|
project?: string;
|
|
35
36
|
type?: "partner" | "exclusive";
|
|
36
37
|
notes?: NoteInterface[];
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
hashtags?: string[];
|
|
39
|
+
mentions?: string[];
|
|
40
|
+
keywords?: string[];
|
|
41
|
+
description?: string;
|
|
42
|
+
objective?: string;
|
|
40
43
|
}
|
|
41
44
|
|
|
42
45
|
declare interface AgencyCommission {
|
|
@@ -55,13 +58,6 @@ declare interface Attachments {
|
|
|
55
58
|
name: string;
|
|
56
59
|
}
|
|
57
60
|
|
|
58
|
-
declare interface BriefingInterface {
|
|
59
|
-
objective: string;
|
|
60
|
-
budget: number;
|
|
61
|
-
briefing: string;
|
|
62
|
-
brandName: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
61
|
declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
|
|
66
62
|
|
|
67
63
|
declare interface Canceled {
|
|
@@ -506,14 +502,6 @@ declare interface ScreeningInterface {
|
|
|
506
502
|
declare interface SupplierInterface extends UserInterface {
|
|
507
503
|
}
|
|
508
504
|
|
|
509
|
-
declare interface TrackingInterface {
|
|
510
|
-
hashtag: string[];
|
|
511
|
-
mentions: string[];
|
|
512
|
-
keyword: string[];
|
|
513
|
-
startDate: string;
|
|
514
|
-
endDate: string;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
505
|
declare interface UserInterface {
|
|
518
506
|
_id?: string;
|
|
519
507
|
name?: string;
|
package/dist/sale.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare interface ActionInterface {
|
|
2
|
+
tags?: string[];
|
|
2
3
|
_id?: string;
|
|
3
4
|
title?: string;
|
|
4
5
|
clientId?: string;
|
|
@@ -34,9 +35,11 @@ declare interface ActionInterface {
|
|
|
34
35
|
project?: string;
|
|
35
36
|
type?: "partner" | "exclusive";
|
|
36
37
|
notes?: NoteInterface[];
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
hashtags?: string[];
|
|
39
|
+
mentions?: string[];
|
|
40
|
+
keywords?: string[];
|
|
41
|
+
description?: string;
|
|
42
|
+
objective?: string;
|
|
40
43
|
}
|
|
41
44
|
|
|
42
45
|
declare interface AgencyCommission {
|
|
@@ -55,13 +58,6 @@ declare interface Attachments {
|
|
|
55
58
|
name: string;
|
|
56
59
|
}
|
|
57
60
|
|
|
58
|
-
declare interface BriefingInterface {
|
|
59
|
-
objective: string;
|
|
60
|
-
budget: number;
|
|
61
|
-
briefing: string;
|
|
62
|
-
brandName: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
61
|
export declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
|
|
66
62
|
|
|
67
63
|
declare interface Canceled {
|
|
@@ -506,14 +502,6 @@ export declare interface ScreeningInterface {
|
|
|
506
502
|
declare interface SupplierInterface extends UserInterface {
|
|
507
503
|
}
|
|
508
504
|
|
|
509
|
-
declare interface TrackingInterface {
|
|
510
|
-
hashtag: string[];
|
|
511
|
-
mentions: string[];
|
|
512
|
-
keyword: string[];
|
|
513
|
-
startDate: string;
|
|
514
|
-
endDate: string;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
505
|
declare interface UserInterface {
|
|
518
506
|
_id?: string;
|
|
519
507
|
name?: string;
|