@cyberismo/assets 0.0.17 → 0.0.19
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/dist/schemas.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
Cyberismo
|
|
3
|
-
Copyright © Cyberismo Ltd and contributors
|
|
3
|
+
Copyright © Cyberismo Ltd and contributors 2026
|
|
4
4
|
This program is free software: you can redistribute it and/or modify it under
|
|
5
5
|
the terms of the GNU Affero General Public License version 3 as published by
|
|
6
6
|
the Free Software Foundation.
|
package/package.json
CHANGED
|
@@ -7,7 +7,6 @@ result(X) :- projectCard(X).
|
|
|
7
7
|
% a helper term for display names
|
|
8
8
|
|
|
9
9
|
displayName(Card, (Card, Field), DisplayName) :-
|
|
10
|
-
field(Card, Field, _),
|
|
11
10
|
fieldType(Field),
|
|
12
11
|
field(Field, "displayName", DisplayName),
|
|
13
12
|
field(Card, "cardType", CardType),
|
|
@@ -132,4 +131,4 @@ field((Field, EnumValue), "enumValue", EnumValue) :-
|
|
|
132
131
|
|
|
133
132
|
order(2, "fields", 1, "visibility", "ASC").
|
|
134
133
|
order(2, "fields", 2, "index", "ASC").
|
|
135
|
-
order(3, "enumValues", 1, "index", "ASC").
|
|
134
|
+
order(3, "enumValues", 1, "index", "ASC").
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"properties": {
|
|
6
6
|
"schemaVersion": {
|
|
7
7
|
"type": "number",
|
|
8
|
-
"description": "
|
|
8
|
+
"description": "Project schema version"
|
|
9
9
|
},
|
|
10
10
|
"cardKeyPrefix": {
|
|
11
11
|
"type": "string",
|
|
@@ -15,13 +15,21 @@
|
|
|
15
15
|
"maxLength": 10
|
|
16
16
|
},
|
|
17
17
|
"name": {
|
|
18
|
-
"description": "
|
|
18
|
+
"description": "Project name",
|
|
19
19
|
"type": "string",
|
|
20
20
|
"minLength": 1,
|
|
21
21
|
"pattern": "^[A-Za-z ._-]+$"
|
|
22
22
|
},
|
|
23
|
+
"category": {
|
|
24
|
+
"description": "Project category",
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"description": {
|
|
28
|
+
"description": "Project description",
|
|
29
|
+
"type": "string"
|
|
30
|
+
},
|
|
23
31
|
"hubs": {
|
|
24
|
-
"description": "List
|
|
32
|
+
"description": "Hub list. List contains information from where to fetch module information",
|
|
25
33
|
"type": "array",
|
|
26
34
|
"items": {
|
|
27
35
|
"type": "object",
|
package/src/schema/version.json
CHANGED
package/src/schemas.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
Cyberismo
|
|
3
|
-
Copyright © Cyberismo Ltd and contributors
|
|
3
|
+
Copyright © Cyberismo Ltd and contributors 2026
|
|
4
4
|
This program is free software: you can redistribute it and/or modify it under
|
|
5
5
|
the terms of the GNU Affero General Public License version 3 as published by
|
|
6
6
|
the Free Software Foundation.
|