nuxt-auto-crud 2.1.2 → 2.1.3

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/README.md CHANGED
@@ -56,13 +56,14 @@ export const users = sqliteTable('users', {
56
56
 
57
57
  ```
58
58
 
59
- ### Initialize and Run
59
+ ### Generate Migrations and Start Dev Server
60
60
 
61
61
  ```bash
62
- npx nuxi generate
63
- npx nuxi dev
62
+ nuxt db generate
63
+ nuxt dev
64
64
 
65
65
  ```
66
+ > If you encounter `Error: Cannot find module 'typescript'`, run `bun add -D typescript`.
66
67
 
67
68
  ---
68
69
 
package/dist/module.d.mts CHANGED
@@ -1,6 +1,7 @@
1
1
  import * as _nuxt_schema from '@nuxt/schema';
2
2
 
3
3
  interface ModuleOptions {
4
+ statusFiltering: boolean;
4
5
  realtime: boolean;
5
6
  schemaPath: string;
6
7
  auth: {
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-auto-crud",
3
3
  "configKey": "autoCrud",
4
- "version": "2.1.2",
4
+ "version": "2.1.3",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "unknown"
package/dist/module.mjs CHANGED
@@ -8,6 +8,7 @@ const module$1 = defineNuxtModule({
8
8
  },
9
9
  defaults: {
10
10
  // Private config
11
+ statusFiltering: true,
11
12
  realtime: false,
12
13
  auth: {
13
14
  authentication: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-auto-crud",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "description": "Dynamic RESTful CRUD APIs for Nuxt without code generation, fully schema-driven.",
5
5
  "author": "Cliford Pereira",
6
6
  "license": "MIT",