@objectstack/core 1.0.6 → 1.0.7
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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/api-registry-plugin.ts +1 -0
- package/src/types.ts +6 -0
package/dist/index.d.cts
CHANGED
|
@@ -340,6 +340,11 @@ interface Plugin {
|
|
|
340
340
|
* Plugin version
|
|
341
341
|
*/
|
|
342
342
|
version?: string;
|
|
343
|
+
/**
|
|
344
|
+
* Plugin type (standard, ui, driver, server, app, theme, agent)
|
|
345
|
+
* @default 'standard'
|
|
346
|
+
*/
|
|
347
|
+
type?: string;
|
|
343
348
|
/**
|
|
344
349
|
* List of other plugin names that this plugin depends on.
|
|
345
350
|
* The kernel ensures these plugins are initialized before this one.
|
package/dist/index.d.ts
CHANGED
|
@@ -340,6 +340,11 @@ interface Plugin {
|
|
|
340
340
|
* Plugin version
|
|
341
341
|
*/
|
|
342
342
|
version?: string;
|
|
343
|
+
/**
|
|
344
|
+
* Plugin type (standard, ui, driver, server, app, theme, agent)
|
|
345
|
+
* @default 'standard'
|
|
346
|
+
*/
|
|
347
|
+
type?: string;
|
|
343
348
|
/**
|
|
344
349
|
* List of other plugin names that this plugin depends on.
|
|
345
350
|
* The kernel ensures these plugins are initialized before this one.
|
package/dist/index.js
CHANGED