@grapadigital/shared-app-modules 0.0.139 → 0.0.141

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
@@ -41,7 +41,8 @@ export declare interface ActionInterface {
41
41
  createdAt: string;
42
42
  }[];
43
43
  hashtags?: string[];
44
- mentions?: string[];
44
+ instagramMentions?: string[];
45
+ tiktokMentions?: string[];
45
46
  keywords?: string[];
46
47
  description?: string;
47
48
  objective?: "REACH" | "AWARENESS" | "TRAFFIC" | "ENGAGEMENT";
@@ -217,6 +218,17 @@ declare interface Inbox {
217
218
  estimatedDueDate: string;
218
219
  }
219
220
 
221
+ declare interface InboxInterface {
222
+ gmailMessageId: string;
223
+ gmailThreadId: string;
224
+ from: string;
225
+ to: string;
226
+ subject: string;
227
+ bodyText: string;
228
+ bodyHtml?: string;
229
+ receivedAt: Date;
230
+ }
231
+
220
232
  declare interface InfluencerInterface extends UserInterface {
221
233
  financialManagementSheet?: string;
222
234
  isExclusive?: boolean;
@@ -490,6 +502,7 @@ declare interface SaleInterface {
490
502
  negotiation?: NegotiationInterface;
491
503
  formalization?: FormalizationInterface;
492
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface[];
493
506
  notes?: Note[];
494
507
  actions?: ActionInterface[];
495
508
  invoices?: InvoiceInterface[];
@@ -54,7 +54,8 @@ declare interface ActionInterface {
54
54
  createdAt: string;
55
55
  }[];
56
56
  hashtags?: string[];
57
- mentions?: string[];
57
+ instagramMentions?: string[];
58
+ tiktokMentions?: string[];
58
59
  keywords?: string[];
59
60
  description?: string;
60
61
  objective?: "REACH" | "AWARENESS" | "TRAFFIC" | "ENGAGEMENT";
@@ -414,6 +415,17 @@ declare interface Inbox {
414
415
  estimatedDueDate: string;
415
416
  }
416
417
 
418
+ declare interface InboxInterface {
419
+ gmailMessageId: string;
420
+ gmailThreadId: string;
421
+ from: string;
422
+ to: string;
423
+ subject: string;
424
+ bodyText: string;
425
+ bodyHtml?: string;
426
+ receivedAt: Date;
427
+ }
428
+
417
429
  declare interface InfluencerInterface extends UserInterface {
418
430
  financialManagementSheet?: string;
419
431
  isExclusive?: boolean;
@@ -752,6 +764,7 @@ declare interface SaleInterface {
752
764
  negotiation?: NegotiationInterface;
753
765
  formalization?: FormalizationInterface;
754
766
  lost?: LostInterface;
767
+ inbox?: InboxInterface[];
755
768
  notes?: Note[];
756
769
  actions?: ActionInterface[];
757
770
  invoices?: InvoiceInterface[];
package/dist/content.d.ts CHANGED
@@ -41,7 +41,8 @@ declare interface ActionInterface {
41
41
  createdAt: string;
42
42
  }[];
43
43
  hashtags?: string[];
44
- mentions?: string[];
44
+ instagramMentions?: string[];
45
+ tiktokMentions?: string[];
45
46
  keywords?: string[];
46
47
  description?: string;
47
48
  objective?: "REACH" | "AWARENESS" | "TRAFFIC" | "ENGAGEMENT";
@@ -217,6 +218,17 @@ declare interface Inbox {
217
218
  estimatedDueDate: string;
218
219
  }
219
220
 
221
+ declare interface InboxInterface {
222
+ gmailMessageId: string;
223
+ gmailThreadId: string;
224
+ from: string;
225
+ to: string;
226
+ subject: string;
227
+ bodyText: string;
228
+ bodyHtml?: string;
229
+ receivedAt: Date;
230
+ }
231
+
220
232
  declare interface InfluencerInterface extends UserInterface {
221
233
  financialManagementSheet?: string;
222
234
  isExclusive?: boolean;
@@ -490,6 +502,7 @@ declare interface SaleInterface {
490
502
  negotiation?: NegotiationInterface;
491
503
  formalization?: FormalizationInterface;
492
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface[];
493
506
  notes?: Note[];
494
507
  actions?: ActionInterface[];
495
508
  invoices?: InvoiceInterface[];
package/dist/invoice.d.ts CHANGED
@@ -41,7 +41,8 @@ declare interface ActionInterface {
41
41
  createdAt: string;
42
42
  }[];
43
43
  hashtags?: string[];
44
- mentions?: string[];
44
+ instagramMentions?: string[];
45
+ tiktokMentions?: string[];
45
46
  keywords?: string[];
46
47
  description?: string;
47
48
  objective?: "REACH" | "AWARENESS" | "TRAFFIC" | "ENGAGEMENT";
@@ -217,6 +218,17 @@ export declare interface Inbox {
217
218
  estimatedDueDate: string;
218
219
  }
219
220
 
221
+ declare interface InboxInterface {
222
+ gmailMessageId: string;
223
+ gmailThreadId: string;
224
+ from: string;
225
+ to: string;
226
+ subject: string;
227
+ bodyText: string;
228
+ bodyHtml?: string;
229
+ receivedAt: Date;
230
+ }
231
+
220
232
  declare interface InfluencerInterface extends UserInterface {
221
233
  financialManagementSheet?: string;
222
234
  isExclusive?: boolean;
@@ -490,6 +502,7 @@ declare interface SaleInterface {
490
502
  negotiation?: NegotiationInterface;
491
503
  formalization?: FormalizationInterface;
492
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface[];
493
506
  notes?: Note_2[];
494
507
  actions?: ActionInterface[];
495
508
  invoices?: InvoiceInterface[];
package/dist/payment.d.ts CHANGED
@@ -41,7 +41,8 @@ declare interface ActionInterface {
41
41
  createdAt: string;
42
42
  }[];
43
43
  hashtags?: string[];
44
- mentions?: string[];
44
+ instagramMentions?: string[];
45
+ tiktokMentions?: string[];
45
46
  keywords?: string[];
46
47
  description?: string;
47
48
  objective?: "REACH" | "AWARENESS" | "TRAFFIC" | "ENGAGEMENT";
@@ -217,6 +218,17 @@ declare interface Inbox {
217
218
  estimatedDueDate: string;
218
219
  }
219
220
 
221
+ declare interface InboxInterface {
222
+ gmailMessageId: string;
223
+ gmailThreadId: string;
224
+ from: string;
225
+ to: string;
226
+ subject: string;
227
+ bodyText: string;
228
+ bodyHtml?: string;
229
+ receivedAt: Date;
230
+ }
231
+
220
232
  declare interface InfluencerInterface extends UserInterface {
221
233
  financialManagementSheet?: string;
222
234
  isExclusive?: boolean;
@@ -490,6 +502,7 @@ declare interface SaleInterface {
490
502
  negotiation?: NegotiationInterface;
491
503
  formalization?: FormalizationInterface;
492
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface[];
493
506
  notes?: Note_2[];
494
507
  actions?: ActionInterface[];
495
508
  invoices?: InvoiceInterface[];
@@ -41,7 +41,8 @@ declare interface ActionInterface {
41
41
  createdAt: string;
42
42
  }[];
43
43
  hashtags?: string[];
44
- mentions?: string[];
44
+ instagramMentions?: string[];
45
+ tiktokMentions?: string[];
45
46
  keywords?: string[];
46
47
  description?: string;
47
48
  objective?: "REACH" | "AWARENESS" | "TRAFFIC" | "ENGAGEMENT";
@@ -217,6 +218,17 @@ declare interface Inbox {
217
218
  estimatedDueDate: string;
218
219
  }
219
220
 
221
+ declare interface InboxInterface {
222
+ gmailMessageId: string;
223
+ gmailThreadId: string;
224
+ from: string;
225
+ to: string;
226
+ subject: string;
227
+ bodyText: string;
228
+ bodyHtml?: string;
229
+ receivedAt: Date;
230
+ }
231
+
220
232
  declare interface InfluencerInterface extends UserInterface {
221
233
  financialManagementSheet?: string;
222
234
  isExclusive?: boolean;
@@ -490,6 +502,7 @@ declare interface SaleInterface {
490
502
  negotiation?: NegotiationInterface;
491
503
  formalization?: FormalizationInterface;
492
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface[];
493
506
  notes?: Note[];
494
507
  actions?: ActionInterface[];
495
508
  invoices?: InvoiceInterface[];
package/dist/sale.d.ts CHANGED
@@ -41,7 +41,8 @@ declare interface ActionInterface {
41
41
  createdAt: string;
42
42
  }[];
43
43
  hashtags?: string[];
44
- mentions?: string[];
44
+ instagramMentions?: string[];
45
+ tiktokMentions?: string[];
45
46
  keywords?: string[];
46
47
  description?: string;
47
48
  objective?: "REACH" | "AWARENESS" | "TRAFFIC" | "ENGAGEMENT";
@@ -217,6 +218,17 @@ declare interface Inbox {
217
218
  estimatedDueDate: string;
218
219
  }
219
220
 
221
+ export declare interface InboxInterface {
222
+ gmailMessageId: string;
223
+ gmailThreadId: string;
224
+ from: string;
225
+ to: string;
226
+ subject: string;
227
+ bodyText: string;
228
+ bodyHtml?: string;
229
+ receivedAt: Date;
230
+ }
231
+
220
232
  declare interface InfluencerInterface extends UserInterface {
221
233
  financialManagementSheet?: string;
222
234
  isExclusive?: boolean;
@@ -490,6 +502,7 @@ export declare interface SaleInterface {
490
502
  negotiation?: NegotiationInterface;
491
503
  formalization?: FormalizationInterface;
492
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface[];
493
506
  notes?: Note[];
494
507
  actions?: ActionInterface[];
495
508
  invoices?: InvoiceInterface[];
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.139",
4
+ "version": "0.0.141",
5
5
  "files": [
6
6
  "dist"
7
7
  ],
@@ -116,6 +116,13 @@
116
116
  }
117
117
  },
118
118
  "type": "module",
119
+ "scripts": {
120
+ "dev": "vite",
121
+ "build": "rm -rf dist && tsc -b && vite build",
122
+ "lint": "eslint .",
123
+ "preview": "vite preview",
124
+ "lib:publish": "pnpm build && pnpm publish --no-git-checks"
125
+ },
119
126
  "peerDependencies": {
120
127
  "react": "^18.3.1",
121
128
  "react-dom": "^18.3.1"
@@ -171,12 +178,5 @@
171
178
  "vite": "^7.2.4",
172
179
  "vite-plugin-dts": "^4.5.4",
173
180
  "vite-plugin-lib-inject-css": "^2.2.2"
174
- },
175
- "scripts": {
176
- "dev": "vite",
177
- "build": "rm -rf dist && tsc -b && vite build",
178
- "lint": "eslint .",
179
- "preview": "vite preview",
180
- "lib:publish": "pnpm build && pnpm publish --no-git-checks"
181
181
  }
182
- }
182
+ }