@grapadigital/shared-app-modules 0.0.108 → 0.0.109

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
@@ -33,6 +33,10 @@ export declare interface ActionInterface {
33
33
  shopping?: string;
34
34
  project?: string;
35
35
  type?: "partner" | "exclusive";
36
+ notes?: NoteInterface[];
37
+ tracking?: TrackingInterface;
38
+ briefing?: BriefingInterface;
39
+ tags?: string[];
36
40
  }
37
41
 
38
42
  declare interface AgencyCommission {
@@ -51,6 +55,13 @@ declare interface Attachments {
51
55
  name: string;
52
56
  }
53
57
 
58
+ export declare interface BriefingInterface {
59
+ objective: string;
60
+ budget: number;
61
+ briefing: string;
62
+ brandName: string;
63
+ }
64
+
54
65
  declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
66
 
56
67
  declare interface Canceled {
@@ -295,6 +306,12 @@ declare interface Note_3 {
295
306
  createdAt: string;
296
307
  }
297
308
 
309
+ export declare interface NoteInterface {
310
+ text: string;
311
+ owner: string;
312
+ createdAt: string;
313
+ }
314
+
298
315
  declare interface Paid {
299
316
  date: string;
300
317
  }
@@ -489,6 +506,14 @@ declare interface ScreeningInterface {
489
506
  declare interface SupplierInterface extends UserInterface {
490
507
  }
491
508
 
509
+ export declare interface TrackingInterface {
510
+ hashtag: string[];
511
+ mentions: string[];
512
+ keyword: string[];
513
+ startDate: string;
514
+ endDate: string;
515
+ }
516
+
492
517
  declare interface UserInterface {
493
518
  _id?: string;
494
519
  name?: string;
@@ -47,6 +47,10 @@ declare interface ActionInterface {
47
47
  shopping?: string;
48
48
  project?: string;
49
49
  type?: "partner" | "exclusive";
50
+ notes?: NoteInterface[];
51
+ tracking?: TrackingInterface;
52
+ briefing?: BriefingInterface;
53
+ tags?: string[];
50
54
  }
51
55
 
52
56
  declare interface AgencyCommission {
@@ -65,6 +69,13 @@ declare interface Attachments {
65
69
  name: string;
66
70
  }
67
71
 
72
+ declare interface BriefingInterface {
73
+ objective: string;
74
+ budget: number;
75
+ briefing: string;
76
+ brandName: string;
77
+ }
78
+
68
79
  declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
69
80
 
70
81
  export declare const CampaignsSelectInput: default_2.ForwardRefExoticComponent<Omit<CampaignsSelectInputProps, "ref"> & default_2.RefAttributes<HTMLInputElement>>;
@@ -487,6 +498,12 @@ declare interface Note_3 {
487
498
  createdAt: string;
488
499
  }
489
500
 
501
+ declare interface NoteInterface {
502
+ text: string;
503
+ owner: string;
504
+ createdAt: string;
505
+ }
506
+
490
507
  export declare function NotFoundCard({ icon: Icon, title, description, tip, className, ...props }: NotFoundCardProps): JSX.Element;
491
508
 
492
509
  declare interface NotFoundCardProps extends React.ComponentProps<typeof Card> {
@@ -737,6 +754,14 @@ declare interface TableSkeletonProps {
737
754
 
738
755
  export declare function TikTokIcon({ size, color, ...props }: LucideProps): JSX.Element;
739
756
 
757
+ declare interface TrackingInterface {
758
+ hashtag: string[];
759
+ mentions: string[];
760
+ keyword: string[];
761
+ startDate: string;
762
+ endDate: string;
763
+ }
764
+
740
765
  declare interface UserInterface {
741
766
  _id?: string;
742
767
  name?: string;
package/dist/content.d.ts CHANGED
@@ -33,6 +33,10 @@ declare interface ActionInterface {
33
33
  shopping?: string;
34
34
  project?: string;
35
35
  type?: "partner" | "exclusive";
36
+ notes?: NoteInterface[];
37
+ tracking?: TrackingInterface;
38
+ briefing?: BriefingInterface;
39
+ tags?: string[];
36
40
  }
37
41
 
38
42
  declare interface AgencyCommission {
@@ -51,6 +55,13 @@ declare interface Attachments {
51
55
  name: string;
52
56
  }
53
57
 
58
+ declare interface BriefingInterface {
59
+ objective: string;
60
+ budget: number;
61
+ briefing: string;
62
+ brandName: string;
63
+ }
64
+
54
65
  declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
66
 
56
67
  declare interface Canceled {
@@ -295,6 +306,12 @@ declare interface Note_3 {
295
306
  createdAt: string;
296
307
  }
297
308
 
309
+ declare interface NoteInterface {
310
+ text: string;
311
+ owner: string;
312
+ createdAt: string;
313
+ }
314
+
298
315
  declare interface Paid {
299
316
  date: string;
300
317
  }
@@ -489,6 +506,14 @@ declare interface ScreeningInterface {
489
506
  declare interface SupplierInterface extends UserInterface {
490
507
  }
491
508
 
509
+ declare interface TrackingInterface {
510
+ hashtag: string[];
511
+ mentions: string[];
512
+ keyword: string[];
513
+ startDate: string;
514
+ endDate: string;
515
+ }
516
+
492
517
  declare interface UserInterface {
493
518
  _id?: string;
494
519
  name?: string;
package/dist/invoice.d.ts CHANGED
@@ -33,6 +33,10 @@ declare interface ActionInterface {
33
33
  shopping?: string;
34
34
  project?: string;
35
35
  type?: "partner" | "exclusive";
36
+ notes?: NoteInterface[];
37
+ tracking?: TrackingInterface;
38
+ briefing?: BriefingInterface;
39
+ tags?: string[];
36
40
  }
37
41
 
38
42
  declare interface AgencyCommission {
@@ -51,6 +55,13 @@ declare interface Attachments {
51
55
  name: string;
52
56
  }
53
57
 
58
+ declare interface BriefingInterface {
59
+ objective: string;
60
+ budget: number;
61
+ briefing: string;
62
+ brandName: string;
63
+ }
64
+
54
65
  declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
66
 
56
67
  export declare interface Canceled {
@@ -295,6 +306,12 @@ declare interface Note_3 {
295
306
  createdAt: string;
296
307
  }
297
308
 
309
+ declare interface NoteInterface {
310
+ text: string;
311
+ owner: string;
312
+ createdAt: string;
313
+ }
314
+
298
315
  declare interface Paid {
299
316
  date: string;
300
317
  }
@@ -489,6 +506,14 @@ declare interface ScreeningInterface {
489
506
  declare interface SupplierInterface extends UserInterface {
490
507
  }
491
508
 
509
+ declare interface TrackingInterface {
510
+ hashtag: string[];
511
+ mentions: string[];
512
+ keyword: string[];
513
+ startDate: string;
514
+ endDate: string;
515
+ }
516
+
492
517
  declare interface UserInterface {
493
518
  _id?: string;
494
519
  name?: string;
package/dist/payment.d.ts CHANGED
@@ -33,6 +33,10 @@ declare interface ActionInterface {
33
33
  shopping?: string;
34
34
  project?: string;
35
35
  type?: "partner" | "exclusive";
36
+ notes?: NoteInterface[];
37
+ tracking?: TrackingInterface;
38
+ briefing?: BriefingInterface;
39
+ tags?: string[];
36
40
  }
37
41
 
38
42
  declare interface AgencyCommission {
@@ -51,6 +55,13 @@ export declare interface Attachments {
51
55
  name: string;
52
56
  }
53
57
 
58
+ declare interface BriefingInterface {
59
+ objective: string;
60
+ budget: number;
61
+ briefing: string;
62
+ brandName: string;
63
+ }
64
+
54
65
  declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
66
 
56
67
  export declare interface Canceled {
@@ -295,6 +306,12 @@ declare interface Note_3 {
295
306
  createdAt: string;
296
307
  }
297
308
 
309
+ declare interface NoteInterface {
310
+ text: string;
311
+ owner: string;
312
+ createdAt: string;
313
+ }
314
+
298
315
  export declare interface Paid {
299
316
  date: string;
300
317
  }
@@ -489,6 +506,14 @@ declare interface ScreeningInterface {
489
506
  declare interface SupplierInterface extends UserInterface {
490
507
  }
491
508
 
509
+ declare interface TrackingInterface {
510
+ hashtag: string[];
511
+ mentions: string[];
512
+ keyword: string[];
513
+ startDate: string;
514
+ endDate: string;
515
+ }
516
+
492
517
  declare interface UserInterface {
493
518
  _id?: string;
494
519
  name?: string;
@@ -33,6 +33,10 @@ declare interface ActionInterface {
33
33
  shopping?: string;
34
34
  project?: string;
35
35
  type?: "partner" | "exclusive";
36
+ notes?: NoteInterface[];
37
+ tracking?: TrackingInterface;
38
+ briefing?: BriefingInterface;
39
+ tags?: string[];
36
40
  }
37
41
 
38
42
  declare interface AgencyCommission {
@@ -51,6 +55,13 @@ declare interface Attachments {
51
55
  name: string;
52
56
  }
53
57
 
58
+ declare interface BriefingInterface {
59
+ objective: string;
60
+ budget: number;
61
+ briefing: string;
62
+ brandName: string;
63
+ }
64
+
54
65
  declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
66
 
56
67
  declare interface Canceled {
@@ -295,6 +306,12 @@ declare interface Note_3 {
295
306
  createdAt: string;
296
307
  }
297
308
 
309
+ declare interface NoteInterface {
310
+ text: string;
311
+ owner: string;
312
+ createdAt: string;
313
+ }
314
+
298
315
  declare interface Paid {
299
316
  date: string;
300
317
  }
@@ -489,6 +506,14 @@ declare interface ScreeningInterface {
489
506
  declare interface SupplierInterface extends UserInterface {
490
507
  }
491
508
 
509
+ declare interface TrackingInterface {
510
+ hashtag: string[];
511
+ mentions: string[];
512
+ keyword: string[];
513
+ startDate: string;
514
+ endDate: string;
515
+ }
516
+
492
517
  declare interface UserInterface {
493
518
  _id?: string;
494
519
  name?: string;
package/dist/sale.d.ts CHANGED
@@ -33,6 +33,10 @@ declare interface ActionInterface {
33
33
  shopping?: string;
34
34
  project?: string;
35
35
  type?: "partner" | "exclusive";
36
+ notes?: NoteInterface[];
37
+ tracking?: TrackingInterface;
38
+ briefing?: BriefingInterface;
39
+ tags?: string[];
36
40
  }
37
41
 
38
42
  declare interface AgencyCommission {
@@ -51,6 +55,13 @@ declare interface Attachments {
51
55
  name: string;
52
56
  }
53
57
 
58
+ declare interface BriefingInterface {
59
+ objective: string;
60
+ budget: number;
61
+ briefing: string;
62
+ brandName: string;
63
+ }
64
+
54
65
  export declare type CalculatorType = "withPreDefinedBudget" | "withoutPreDefinedBudget" | "bourbon";
55
66
 
56
67
  declare interface Canceled {
@@ -295,6 +306,12 @@ declare interface Note_3 {
295
306
  createdAt: string;
296
307
  }
297
308
 
309
+ declare interface NoteInterface {
310
+ text: string;
311
+ owner: string;
312
+ createdAt: string;
313
+ }
314
+
298
315
  declare interface Paid {
299
316
  date: string;
300
317
  }
@@ -489,6 +506,14 @@ export declare interface ScreeningInterface {
489
506
  declare interface SupplierInterface extends UserInterface {
490
507
  }
491
508
 
509
+ declare interface TrackingInterface {
510
+ hashtag: string[];
511
+ mentions: string[];
512
+ keyword: string[];
513
+ startDate: string;
514
+ endDate: string;
515
+ }
516
+
492
517
  declare interface UserInterface {
493
518
  _id?: string;
494
519
  name?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@grapadigital/shared-app-modules",
3
3
  "private": false,
4
- "version": "0.0.108",
4
+ "version": "0.0.109",
5
5
  "files": [
6
6
  "dist"
7
7
  ],