@adminforth/import-export 1.4.11 → 1.4.13

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.
Files changed (3) hide show
  1. package/build.log +1 -1
  2. package/package.json +3 -3
  3. package/types.ts +3 -1
package/build.log CHANGED
@@ -11,5 +11,5 @@ custom/package.json
11
11
  custom/pnpm-lock.yaml
12
12
  custom/tsconfig.json
13
13
 
14
- sent 17,847 bytes received 134 bytes 35,962.00 bytes/sec
14
+ sent 17,854 bytes received 134 bytes 35,976.00 bytes/sec
15
15
  total size is 17,365 speedup is 0.97
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/import-export",
3
- "version": "1.4.11",
3
+ "version": "1.4.13",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -22,10 +22,10 @@
22
22
  "csv"
23
23
  ],
24
24
  "author": "devforth",
25
- "license": "ISC",
25
+ "license": "MIT",
26
26
  "description": "CSV import/export plugin for adminforth",
27
27
  "peerDependencies": {
28
- "adminforth": "^2.24.0"
28
+ "adminforth": "^2.30.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.10.7",
package/types.ts CHANGED
@@ -1,3 +1,5 @@
1
- export interface PluginOptions {
1
+ import {type PluginsCommonOptions } from "adminforth";
2
+
3
+ export interface PluginOptions extends PluginsCommonOptions {
2
4
 
3
5
  }