@grapadigital/shared-app-modules 0.0.140 → 0.0.142

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
@@ -218,6 +218,17 @@ declare interface Inbox {
218
218
  estimatedDueDate: string;
219
219
  }
220
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
+
221
232
  declare interface InfluencerInterface extends UserInterface {
222
233
  financialManagementSheet?: string;
223
234
  isExclusive?: boolean;
@@ -491,6 +502,7 @@ declare interface SaleInterface {
491
502
  negotiation?: NegotiationInterface;
492
503
  formalization?: FormalizationInterface;
493
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface;
494
506
  notes?: Note[];
495
507
  actions?: ActionInterface[];
496
508
  invoices?: InvoiceInterface[];
@@ -415,6 +415,17 @@ declare interface Inbox {
415
415
  estimatedDueDate: string;
416
416
  }
417
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
+
418
429
  declare interface InfluencerInterface extends UserInterface {
419
430
  financialManagementSheet?: string;
420
431
  isExclusive?: boolean;
@@ -753,6 +764,7 @@ declare interface SaleInterface {
753
764
  negotiation?: NegotiationInterface;
754
765
  formalization?: FormalizationInterface;
755
766
  lost?: LostInterface;
767
+ inbox?: InboxInterface;
756
768
  notes?: Note[];
757
769
  actions?: ActionInterface[];
758
770
  invoices?: InvoiceInterface[];
package/dist/content.d.ts CHANGED
@@ -218,6 +218,17 @@ declare interface Inbox {
218
218
  estimatedDueDate: string;
219
219
  }
220
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
+
221
232
  declare interface InfluencerInterface extends UserInterface {
222
233
  financialManagementSheet?: string;
223
234
  isExclusive?: boolean;
@@ -491,6 +502,7 @@ declare interface SaleInterface {
491
502
  negotiation?: NegotiationInterface;
492
503
  formalization?: FormalizationInterface;
493
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface;
494
506
  notes?: Note[];
495
507
  actions?: ActionInterface[];
496
508
  invoices?: InvoiceInterface[];
package/dist/invoice.d.ts CHANGED
@@ -218,6 +218,17 @@ export declare interface Inbox {
218
218
  estimatedDueDate: string;
219
219
  }
220
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
+
221
232
  declare interface InfluencerInterface extends UserInterface {
222
233
  financialManagementSheet?: string;
223
234
  isExclusive?: boolean;
@@ -491,6 +502,7 @@ declare interface SaleInterface {
491
502
  negotiation?: NegotiationInterface;
492
503
  formalization?: FormalizationInterface;
493
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface;
494
506
  notes?: Note_2[];
495
507
  actions?: ActionInterface[];
496
508
  invoices?: InvoiceInterface[];
package/dist/payment.d.ts CHANGED
@@ -218,6 +218,17 @@ declare interface Inbox {
218
218
  estimatedDueDate: string;
219
219
  }
220
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
+
221
232
  declare interface InfluencerInterface extends UserInterface {
222
233
  financialManagementSheet?: string;
223
234
  isExclusive?: boolean;
@@ -491,6 +502,7 @@ declare interface SaleInterface {
491
502
  negotiation?: NegotiationInterface;
492
503
  formalization?: FormalizationInterface;
493
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface;
494
506
  notes?: Note_2[];
495
507
  actions?: ActionInterface[];
496
508
  invoices?: InvoiceInterface[];
@@ -218,6 +218,17 @@ declare interface Inbox {
218
218
  estimatedDueDate: string;
219
219
  }
220
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
+
221
232
  declare interface InfluencerInterface extends UserInterface {
222
233
  financialManagementSheet?: string;
223
234
  isExclusive?: boolean;
@@ -491,6 +502,7 @@ declare interface SaleInterface {
491
502
  negotiation?: NegotiationInterface;
492
503
  formalization?: FormalizationInterface;
493
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface;
494
506
  notes?: Note[];
495
507
  actions?: ActionInterface[];
496
508
  invoices?: InvoiceInterface[];
package/dist/sale.d.ts CHANGED
@@ -218,6 +218,17 @@ declare interface Inbox {
218
218
  estimatedDueDate: string;
219
219
  }
220
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
+
221
232
  declare interface InfluencerInterface extends UserInterface {
222
233
  financialManagementSheet?: string;
223
234
  isExclusive?: boolean;
@@ -491,6 +502,7 @@ export declare interface SaleInterface {
491
502
  negotiation?: NegotiationInterface;
492
503
  formalization?: FormalizationInterface;
493
504
  lost?: LostInterface;
505
+ inbox?: InboxInterface;
494
506
  notes?: Note[];
495
507
  actions?: ActionInterface[];
496
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.140",
4
+ "version": "0.0.142",
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
+ }