adminizer 4.1.0-build.17 → 4.1.0-build.18

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/index.d.ts CHANGED
@@ -11,7 +11,4 @@ export * from "./lib/v4/model/adapter/sequelize";
11
11
  export * from "./lib/Adminizer";
12
12
  export * from "./models/GroupAP";
13
13
  export * from "./models/UserAP";
14
- export * from "./models/MediaManagerAP";
15
- export * from "./models/MediaManagerAssociationsAP";
16
- export * from "./models/MediaManagerMetaAP";
17
14
  export * from "./models/NavigationAP";
package/index.js CHANGED
@@ -11,7 +11,7 @@ export * from "./lib/v4/model/adapter/sequelize";
11
11
  export * from "./lib/Adminizer";
12
12
  export * from "./models/GroupAP";
13
13
  export * from "./models/UserAP";
14
- export * from "./models/MediaManagerAP";
15
- export * from "./models/MediaManagerAssociationsAP";
16
- export * from "./models/MediaManagerMetaAP";
14
+ // export * from "./models/MediaManagerAP"
15
+ // export * from "./models/MediaManagerAssociationsAP"
16
+ // export * from "./models/MediaManagerMetaAP"
17
17
  export * from "./models/NavigationAP";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "adminizer",
3
3
  "type": "module",
4
- "version": "4.1.0-build.17",
4
+ "version": "4.1.0-build.18",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "vitest --reporter verbose",
@@ -1,62 +0,0 @@
1
- import { MediaManagerAssociationsAP } from "./MediaManagerAssociationsAP";
2
- import { MediaManagerMetaAP } from "./MediaManagerMetaAP";
3
- declare const _default: {
4
- id: {
5
- type: string;
6
- allowNull: boolean;
7
- uuid: boolean;
8
- primaryKey: boolean;
9
- required: boolean;
10
- };
11
- parentMedia: {
12
- model: string;
13
- };
14
- variants: {
15
- collection: string;
16
- via: string;
17
- };
18
- mimeType: {
19
- type: string;
20
- };
21
- path: {
22
- type: string;
23
- };
24
- size: {
25
- type: string;
26
- };
27
- group: {
28
- type: string;
29
- };
30
- tag: {
31
- type: string;
32
- };
33
- url: {
34
- type: string;
35
- };
36
- filename: {
37
- type: string;
38
- };
39
- meta: {
40
- collection: string;
41
- via: string;
42
- };
43
- modelAssociation: {
44
- collection: string;
45
- via: string;
46
- };
47
- };
48
- export default _default;
49
- export interface MediaManagerAP {
50
- id: string;
51
- parent?: MediaManagerAP;
52
- variants?: MediaManagerAP[];
53
- mimeType?: string;
54
- path?: string;
55
- size?: number;
56
- group?: string;
57
- tag?: string;
58
- url?: string;
59
- filename?: string;
60
- meta?: MediaManagerMetaAP[];
61
- modelAssociation?: MediaManagerAssociationsAP[];
62
- }
@@ -1,46 +0,0 @@
1
- export default {
2
- id: {
3
- type: "string",
4
- allowNull: false,
5
- uuid: true,
6
- primaryKey: true,
7
- required: true
8
- },
9
- // WARN!!! renamed from parent is confict
10
- parentMedia: {
11
- model: "MediaManagerAP"
12
- },
13
- variants: {
14
- collection: "MediaManagerAP",
15
- via: "parent"
16
- },
17
- mimeType: {
18
- type: "string"
19
- },
20
- path: {
21
- type: "string"
22
- },
23
- size: {
24
- type: "number"
25
- },
26
- group: {
27
- type: "string"
28
- },
29
- tag: {
30
- type: "string"
31
- },
32
- url: {
33
- type: "string"
34
- },
35
- filename: {
36
- type: "string"
37
- },
38
- meta: {
39
- collection: "MediaManagerMetaAP",
40
- via: "parent"
41
- },
42
- modelAssociation: {
43
- collection: "MediaManagerAssociationsAP",
44
- via: "file"
45
- }
46
- };
@@ -1,38 +0,0 @@
1
- import { MediaManagerAP } from "./MediaManagerAP";
2
- declare const _default: {
3
- id: {
4
- type: string;
5
- allowNull: boolean;
6
- uuid: boolean;
7
- primaryKey: boolean;
8
- required: boolean;
9
- };
10
- mediaManagerId: {
11
- type: string;
12
- };
13
- model: {
14
- type: string;
15
- };
16
- modelId: {
17
- type: string;
18
- };
19
- widgetName: {
20
- type: string;
21
- };
22
- sortOrder: {
23
- type: string;
24
- };
25
- file: {
26
- model: string;
27
- };
28
- };
29
- export default _default;
30
- export interface MediaManagerAssociationsAP {
31
- id: string;
32
- mediaManagerId?: string;
33
- model?: Record<string, unknown>;
34
- modelId?: Record<string, unknown>;
35
- widgetName?: string;
36
- sortOrder?: number;
37
- file?: MediaManagerAP;
38
- }
@@ -1,27 +0,0 @@
1
- export default {
2
- id: {
3
- type: "string",
4
- allowNull: false,
5
- uuid: true,
6
- primaryKey: true,
7
- required: true
8
- },
9
- mediaManagerId: {
10
- type: "string"
11
- },
12
- model: {
13
- type: "json"
14
- },
15
- modelId: {
16
- type: "json"
17
- },
18
- widgetName: {
19
- type: "string"
20
- },
21
- sortOrder: {
22
- type: "number"
23
- },
24
- file: {
25
- model: "MediaManagerAP"
26
- }
27
- };
@@ -1,30 +0,0 @@
1
- import { MediaManagerAP } from "./MediaManagerAP";
2
- declare const _default: {
3
- id: {
4
- type: string;
5
- allowNull: boolean;
6
- uuid: boolean;
7
- primaryKey: boolean;
8
- required: boolean;
9
- };
10
- key: {
11
- type: string;
12
- };
13
- value: {
14
- type: string;
15
- };
16
- isPublic: {
17
- type: string;
18
- };
19
- parent: {
20
- model: string;
21
- };
22
- };
23
- export default _default;
24
- export interface MediaManagerMetaAP {
25
- id: string;
26
- key?: string;
27
- value?: Record<string, unknown>;
28
- isPublic?: boolean;
29
- parent?: MediaManagerAP;
30
- }
@@ -1,21 +0,0 @@
1
- export default {
2
- id: {
3
- type: "string",
4
- allowNull: false,
5
- uuid: true,
6
- primaryKey: true,
7
- required: true
8
- },
9
- key: {
10
- type: "string"
11
- },
12
- value: {
13
- type: "json"
14
- },
15
- isPublic: {
16
- type: "boolean"
17
- },
18
- parent: {
19
- model: "MediaManagerAP"
20
- }
21
- };