@greatapps/greatauth 0.2.4 → 0.2.5
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/package.json
CHANGED
package/src/product.js
CHANGED
|
@@ -5,7 +5,6 @@ import users from "./modules/users/index.js";
|
|
|
5
5
|
import user_phones from "./modules/user_phones/index.js";
|
|
6
6
|
import superadmins from "./modules/superadmins/index.js";
|
|
7
7
|
import products from "./modules/products/index.js";
|
|
8
|
-
import profiles from "./modules/profiles/index.js";
|
|
9
8
|
|
|
10
9
|
/* Shared */
|
|
11
10
|
|
|
@@ -35,7 +34,6 @@ export default {
|
|
|
35
34
|
user_phones,
|
|
36
35
|
superadmins,
|
|
37
36
|
products,
|
|
38
|
-
profiles,
|
|
39
37
|
},
|
|
40
38
|
documentation: {
|
|
41
39
|
title: "Great Platform API",
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
const properties = {
|
|
2
|
-
slug: {
|
|
3
|
-
type: "string",
|
|
4
|
-
required: true,
|
|
5
|
-
unique: true,
|
|
6
|
-
maxLength: 50,
|
|
7
|
-
searchable: true,
|
|
8
|
-
filterable: true,
|
|
9
|
-
interface: {
|
|
10
|
-
label: { "pt-br": "Slug", en: "Slug" },
|
|
11
|
-
component: "input",
|
|
12
|
-
},
|
|
13
|
-
},
|
|
14
|
-
name: {
|
|
15
|
-
type: "string",
|
|
16
|
-
required: true,
|
|
17
|
-
maxLength: 100,
|
|
18
|
-
searchable: true,
|
|
19
|
-
filterable: true,
|
|
20
|
-
interface: {
|
|
21
|
-
label: { "pt-br": "Nome", en: "Name" },
|
|
22
|
-
component: "input",
|
|
23
|
-
},
|
|
24
|
-
},
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
export default properties;
|