deesse 0.0.25 → 0.0.26

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.
@@ -1,13 +1,16 @@
1
1
  type Collection = {
2
+ name: string;
2
3
  fields: Field[];
3
4
  };
4
5
  type Field = {
5
- type: undefined;
6
- permissions: {
7
- create: string[];
8
- read: string[];
9
- update: string[];
10
- delete: string[];
6
+ name: {
7
+ type: undefined;
8
+ permissions: {
9
+ create: string[];
10
+ read: string[];
11
+ update: string[];
12
+ delete: string[];
13
+ };
11
14
  };
12
15
  };
13
16
 
@@ -1,13 +1,16 @@
1
1
  type Collection = {
2
+ name: string;
2
3
  fields: Field[];
3
4
  };
4
5
  type Field = {
5
- type: undefined;
6
- permissions: {
7
- create: string[];
8
- read: string[];
9
- update: string[];
10
- delete: string[];
6
+ name: {
7
+ type: undefined;
8
+ permissions: {
9
+ create: string[];
10
+ read: string[];
11
+ update: string[];
12
+ delete: string[];
13
+ };
11
14
  };
12
15
  };
13
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deesse",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "The fullstack nextjs framework",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",