@grapadigital/shared-app-modules 0.0.152 → 0.0.154

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
@@ -423,6 +423,7 @@ declare interface ProposalInterface {
423
423
  contact: string;
424
424
  initialScope: string;
425
425
  profile: ProfileInterface;
426
+ influencer: InfluencerInterface;
426
427
  responsable: {
427
428
  team: string;
428
429
  name: string;
@@ -685,6 +685,7 @@ declare interface ProposalInterface {
685
685
  contact: string;
686
686
  initialScope: string;
687
687
  profile: ProfileInterface;
688
+ influencer: InfluencerInterface;
688
689
  responsable: {
689
690
  team: string;
690
691
  name: string;
package/dist/content.d.ts CHANGED
@@ -423,6 +423,7 @@ declare interface ProposalInterface {
423
423
  contact: string;
424
424
  initialScope: string;
425
425
  profile: ProfileInterface;
426
+ influencer: InfluencerInterface;
426
427
  responsable: {
427
428
  team: string;
428
429
  name: string;
package/dist/invoice.d.ts CHANGED
@@ -423,6 +423,7 @@ declare interface ProposalInterface {
423
423
  contact: string;
424
424
  initialScope: string;
425
425
  profile: ProfileInterface;
426
+ influencer: InfluencerInterface;
426
427
  responsable: {
427
428
  team: string;
428
429
  name: string;
package/dist/payment.d.ts CHANGED
@@ -423,6 +423,7 @@ declare interface ProposalInterface {
423
423
  contact: string;
424
424
  initialScope: string;
425
425
  profile: ProfileInterface;
426
+ influencer: InfluencerInterface;
426
427
  responsable: {
427
428
  team: string;
428
429
  name: string;
@@ -423,6 +423,7 @@ declare interface ProposalInterface {
423
423
  contact: string;
424
424
  initialScope: string;
425
425
  profile: ProfileInterface;
426
+ influencer: InfluencerInterface;
426
427
  responsable: {
427
428
  team: string;
428
429
  name: string;
package/dist/sale.d.ts CHANGED
@@ -423,6 +423,7 @@ export declare interface ProposalInterface {
423
423
  contact: string;
424
424
  initialScope: string;
425
425
  profile: ProfileInterface;
426
+ influencer: InfluencerInterface;
426
427
  responsable: {
427
428
  team: string;
428
429
  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.152",
4
+ "version": "0.0.154",
5
5
  "files": [
6
6
  "dist"
7
7
  ],
@@ -120,6 +120,13 @@
120
120
  }
121
121
  },
122
122
  "type": "module",
123
+ "scripts": {
124
+ "dev": "vite",
125
+ "build": "rm -rf dist && tsc -b && vite build",
126
+ "lint": "eslint .",
127
+ "preview": "vite preview",
128
+ "lib:publish": "pnpm build && pnpm publish --no-git-checks"
129
+ },
123
130
  "peerDependencies": {
124
131
  "react": "^18.3.1",
125
132
  "react-dom": "^18.3.1"
@@ -175,12 +182,5 @@
175
182
  "vite": "^7.2.4",
176
183
  "vite-plugin-dts": "^4.5.4",
177
184
  "vite-plugin-lib-inject-css": "^2.2.2"
178
- },
179
- "scripts": {
180
- "dev": "vite",
181
- "build": "rm -rf dist && tsc -b && vite build",
182
- "lint": "eslint .",
183
- "preview": "vite preview",
184
- "lib:publish": "pnpm build && pnpm publish --no-git-checks"
185
185
  }
186
- }
186
+ }