@grapadigital/shared-app-modules 0.0.95 → 0.0.97

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.
@@ -9,6 +9,7 @@ export declare interface CommissionInterface {
9
9
  type: string;
10
10
  title: string;
11
11
  sale: string;
12
+ paymentDate?: string;
12
13
  createdAt: string;
13
14
  updatedAt: string;
14
15
  }
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.95",
4
+ "version": "0.0.97",
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
  "dependencies": {
120
127
  "@radix-ui/react-accordion": "^1.2.12",
121
128
  "@radix-ui/react-checkbox": "^1.3.3",
@@ -167,12 +174,5 @@
167
174
  "vite": "^7.2.4",
168
175
  "vite-plugin-dts": "^4.5.4",
169
176
  "vite-plugin-lib-inject-css": "^2.2.2"
170
- },
171
- "scripts": {
172
- "dev": "vite",
173
- "build": "rm -rf dist && tsc -b && vite build",
174
- "lint": "eslint .",
175
- "preview": "vite preview",
176
- "lib:publish": "pnpm build && pnpm publish --no-git-checks"
177
177
  }
178
- }
178
+ }