@directus/extensions-sdk 9.25.2 → 9.26.0
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/cli/commands/add.js
CHANGED
|
@@ -2,7 +2,7 @@ import { EXTENSION_LANGUAGES, EXTENSION_NAME_REGEX, EXTENSION_PKG_KEY, EXTENSION
|
|
|
2
2
|
import { isIn, isTypeIn } from '@directus/utils';
|
|
3
3
|
import { pathToRelativeUrl } from '@directus/utils/node';
|
|
4
4
|
import chalk from 'chalk';
|
|
5
|
-
import execa from 'execa';
|
|
5
|
+
import { execa } from 'execa';
|
|
6
6
|
import fse from 'fs-extra';
|
|
7
7
|
import inquirer from 'inquirer';
|
|
8
8
|
import ora from 'ora';
|
|
@@ -10,7 +10,7 @@ import chalk from 'chalk';
|
|
|
10
10
|
import fse from 'fs-extra';
|
|
11
11
|
import ora from 'ora';
|
|
12
12
|
import path from 'path';
|
|
13
|
-
import { rollup, watch as rollupWatch
|
|
13
|
+
import { rollup, watch as rollupWatch } from 'rollup';
|
|
14
14
|
import esbuildDefault from 'rollup-plugin-esbuild';
|
|
15
15
|
import stylesDefault from 'rollup-plugin-styles';
|
|
16
16
|
import vueDefault from 'rollup-plugin-vue';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { BUNDLE_EXTENSION_TYPES, EXTENSION_LANGUAGES, EXTENSION_NAME_REGEX, EXTENSION_PKG_KEY, EXTENSION_TYPES, HYBRID_EXTENSION_TYPES, } from '@directus/constants';
|
|
2
2
|
import { isIn } from '@directus/utils';
|
|
3
3
|
import chalk from 'chalk';
|
|
4
|
-
import execa from 'execa';
|
|
4
|
+
import { execa } from 'execa';
|
|
5
5
|
import fse from 'fs-extra';
|
|
6
6
|
import ora from 'ora';
|
|
7
7
|
import path from 'path';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { useApi, useCollection, useExtensions, useFilterFields, useItems, useLayout, useStores, useSync, } from '@directus/composables';
|
|
2
|
+
export { defineDisplay, defineEndpoint, defineHook, defineInterface, defineLayout, defineModule, defineOperationApi, defineOperationApp, definePanel, getFieldsFromTemplate, getRelationType, } from '@directus/utils';
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export {
|
|
1
|
+
export { useApi, useCollection, useExtensions, useFilterFields, useItems, useLayout, useStores, useSync, } from '@directus/composables';
|
|
2
|
+
export { defineDisplay, defineEndpoint, defineHook, defineInterface, defineLayout, defineModule, defineOperationApi, defineOperationApp, definePanel, getFieldsFromTemplate, getRelationType, } from '@directus/utils';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@directus/extensions-sdk",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.26.0",
|
|
4
4
|
"description": "A toolkit to develop extensions to extend Directus",
|
|
5
5
|
"homepage": "https://directus.io",
|
|
6
6
|
"type": "module",
|
|
@@ -31,35 +31,34 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@rollup/plugin-commonjs": "24.1.0",
|
|
33
33
|
"@rollup/plugin-json": "6.0.0",
|
|
34
|
-
"@rollup/plugin-node-resolve": "15.0.
|
|
34
|
+
"@rollup/plugin-node-resolve": "15.0.2",
|
|
35
35
|
"@rollup/plugin-replace": "5.0.2",
|
|
36
36
|
"@rollup/plugin-terser": "0.4.1",
|
|
37
37
|
"@rollup/plugin-virtual": "3.0.1",
|
|
38
38
|
"@vue/compiler-sfc": "3.2.47",
|
|
39
|
-
"chalk": "
|
|
40
|
-
"commander": "
|
|
41
|
-
"esbuild": "0.17.
|
|
42
|
-
"execa": "
|
|
43
|
-
"fs-extra": "11.1.
|
|
44
|
-
"inquirer": "
|
|
45
|
-
"ora": "
|
|
46
|
-
"rollup": "3.
|
|
39
|
+
"chalk": "5.2.0",
|
|
40
|
+
"commander": "10.0.1",
|
|
41
|
+
"esbuild": "0.17.17",
|
|
42
|
+
"execa": "7.1.1",
|
|
43
|
+
"fs-extra": "11.1.1",
|
|
44
|
+
"inquirer": "9.1.5",
|
|
45
|
+
"ora": "6.3.0",
|
|
46
|
+
"rollup": "3.20.7",
|
|
47
47
|
"rollup-plugin-esbuild": "5.0.0",
|
|
48
48
|
"rollup-plugin-styles": "4.0.0",
|
|
49
49
|
"rollup-plugin-vue": "6.0.0",
|
|
50
|
-
"@directus/composables": "9.
|
|
51
|
-
"@directus/constants": "9.
|
|
52
|
-
"@directus/types": "9.
|
|
53
|
-
"@directus/utils": "9.
|
|
50
|
+
"@directus/composables": "9.26.0",
|
|
51
|
+
"@directus/constants": "9.26.0",
|
|
52
|
+
"@directus/types": "9.26.0",
|
|
53
|
+
"@directus/utils": "9.26.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@directus/tsconfig": "0.0.
|
|
56
|
+
"@directus/tsconfig": "0.0.7",
|
|
57
57
|
"@types/fs-extra": "11.0.1",
|
|
58
|
-
"@types/inquirer": "
|
|
59
|
-
"@vitest/coverage-c8": "0.
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"vitest": "0.29.3"
|
|
58
|
+
"@types/inquirer": "9.0.3",
|
|
59
|
+
"@vitest/coverage-c8": "0.30.1",
|
|
60
|
+
"typescript": "5.0.4",
|
|
61
|
+
"vitest": "0.30.1"
|
|
63
62
|
},
|
|
64
63
|
"engines": {
|
|
65
64
|
"node": ">=12.20.0"
|