@selfcommunity/types 0.7.0-alpha.1 → 0.7.0-alpha.2
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.
|
@@ -21,6 +21,10 @@ export interface SCMetadataType {
|
|
|
21
21
|
* Is the metadata mandatory for the user
|
|
22
22
|
*/
|
|
23
23
|
mandatory?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* If the metadata is editable for the user (only for the enum type)
|
|
26
|
+
*/
|
|
27
|
+
editable?: boolean;
|
|
24
28
|
/**
|
|
25
29
|
* Is the metadata visible in signup form
|
|
26
30
|
*/
|
|
@@ -37,4 +41,8 @@ export interface SCMetadataType {
|
|
|
37
41
|
* Options for the enum type
|
|
38
42
|
*/
|
|
39
43
|
type_options?: string[];
|
|
44
|
+
/**
|
|
45
|
+
* The type tagging
|
|
46
|
+
*/
|
|
47
|
+
type_tagging?: Record<string, number[]>;
|
|
40
48
|
}
|
|
@@ -21,6 +21,10 @@ export interface SCMetadataType {
|
|
|
21
21
|
* Is the metadata mandatory for the user
|
|
22
22
|
*/
|
|
23
23
|
mandatory?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* If the metadata is editable for the user (only for the enum type)
|
|
26
|
+
*/
|
|
27
|
+
editable?: boolean;
|
|
24
28
|
/**
|
|
25
29
|
* Is the metadata visible in signup form
|
|
26
30
|
*/
|
|
@@ -37,4 +41,8 @@ export interface SCMetadataType {
|
|
|
37
41
|
* Options for the enum type
|
|
38
42
|
*/
|
|
39
43
|
type_options?: string[];
|
|
44
|
+
/**
|
|
45
|
+
* The type tagging
|
|
46
|
+
*/
|
|
47
|
+
type_tagging?: Record<string, number[]>;
|
|
40
48
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selfcommunity/types",
|
|
3
|
-
"version": "0.7.0-alpha.
|
|
3
|
+
"version": "0.7.0-alpha.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./lib/cjs/index.js",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"bugs": {
|
|
102
102
|
"url": "https://github.com/selfcommunity/community-js/issues"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "2fe1a8bd778a323f4bfdae63c8b8f43712dc5d5d"
|
|
105
105
|
}
|