@openinc/parse-server-opendash 2.0.1 → 2.1.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.
- package/package.json +1 -1
- package/schema/AlarmAction.json +1 -3
- package/schema/GTFS_Calendar.json +1 -3
- package/schema/GTFS_Level.json +1 -3
- package/schema/GTFS_Stop_Times.json +1 -3
- package/schema/GTFS_Trip.json +1 -3
- package/schema/GTFS_Wheelchair_Boarding.json +1 -3
- package/schema/Group.json +1 -3
- package/schema/Log.json +1 -3
- package/schema/MIAAS_MDSEndpoint.json +1 -3
- package/schema/Maintenance_Item.json +41 -0
- package/schema/Maintenance_Media.json +1 -3
- package/schema/Maintenance_Message.json +49 -0
- package/schema/Maintenance_Message_Body.json +42 -0
- package/schema/Maintenance_Schedule.json +9 -3
- package/schema/Maintenance_SourceMeta.json +38 -0
- package/schema/{Slideshow.json → Monitoring_Slideshow.json} +1 -3
- package/schema/Report.json +18 -0
- package/schema/Share.json +1 -3
- package/schema/Source.json +0 -4
- package/schema/Tenant.json +0 -20
- package/schema/VirtualKPI.json +1 -3
- package/schema/WidgetPreset.json +1 -3
package/package.json
CHANGED
package/schema/AlarmAction.json
CHANGED
package/schema/GTFS_Level.json
CHANGED
package/schema/GTFS_Trip.json
CHANGED
package/schema/Group.json
CHANGED
package/schema/Log.json
CHANGED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"fields": {
|
|
3
|
+
"description": {
|
|
4
|
+
"type": "String",
|
|
5
|
+
"required": false
|
|
6
|
+
},
|
|
7
|
+
"name": {
|
|
8
|
+
"type": "String",
|
|
9
|
+
"required": true
|
|
10
|
+
},
|
|
11
|
+
"tenant": {
|
|
12
|
+
"type": "Pointer",
|
|
13
|
+
"targetClass": "{{PREFIX}}Tenant",
|
|
14
|
+
"required": true
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"classLevelPermissions": {
|
|
18
|
+
"find": {
|
|
19
|
+
"requiresAuthentication": true
|
|
20
|
+
},
|
|
21
|
+
"count": {
|
|
22
|
+
"requiresAuthentication": true
|
|
23
|
+
},
|
|
24
|
+
"get": {
|
|
25
|
+
"requiresAuthentication": true
|
|
26
|
+
},
|
|
27
|
+
"create": {
|
|
28
|
+
"requiresAuthentication": true
|
|
29
|
+
},
|
|
30
|
+
"update": {
|
|
31
|
+
"requiresAuthentication": true
|
|
32
|
+
},
|
|
33
|
+
"delete": {
|
|
34
|
+
"requiresAuthentication": true
|
|
35
|
+
},
|
|
36
|
+
"addField": {},
|
|
37
|
+
"protectedFields": {
|
|
38
|
+
"*": []
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"fields": {
|
|
3
|
+
"classname": {
|
|
4
|
+
"type": "String",
|
|
5
|
+
"required": true
|
|
6
|
+
},
|
|
7
|
+
"data": {
|
|
8
|
+
"type": "Object",
|
|
9
|
+
"required": false
|
|
10
|
+
},
|
|
11
|
+
"referencedObjectId": {
|
|
12
|
+
"type": "String",
|
|
13
|
+
"required": true
|
|
14
|
+
},
|
|
15
|
+
"title": {
|
|
16
|
+
"type": "String",
|
|
17
|
+
"required": false
|
|
18
|
+
},
|
|
19
|
+
"user": {
|
|
20
|
+
"type": "Pointer",
|
|
21
|
+
"targetClass": "_User",
|
|
22
|
+
"required": false
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"classLevelPermissions": {
|
|
26
|
+
"find": {
|
|
27
|
+
"requiresAuthentication": true
|
|
28
|
+
},
|
|
29
|
+
"count": {
|
|
30
|
+
"requiresAuthentication": true
|
|
31
|
+
},
|
|
32
|
+
"get": {
|
|
33
|
+
"requiresAuthentication": true
|
|
34
|
+
},
|
|
35
|
+
"create": {
|
|
36
|
+
"requiresAuthentication": true
|
|
37
|
+
},
|
|
38
|
+
"update": {
|
|
39
|
+
"requiresAuthentication": true
|
|
40
|
+
},
|
|
41
|
+
"delete": {
|
|
42
|
+
"requiresAuthentication": true
|
|
43
|
+
},
|
|
44
|
+
"addField": {},
|
|
45
|
+
"protectedFields": {
|
|
46
|
+
"*": []
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"fields": {
|
|
3
|
+
"content": {
|
|
4
|
+
"type": "String",
|
|
5
|
+
"required": false
|
|
6
|
+
},
|
|
7
|
+
"message": {
|
|
8
|
+
"type": "Pointer",
|
|
9
|
+
"targetClass": "{{PREFIX}}Service_Message",
|
|
10
|
+
"required": false
|
|
11
|
+
},
|
|
12
|
+
"user": {
|
|
13
|
+
"type": "Pointer",
|
|
14
|
+
"targetClass": "_User",
|
|
15
|
+
"required": false
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"classLevelPermissions": {
|
|
19
|
+
"find": {
|
|
20
|
+
"requiresAuthentication": true
|
|
21
|
+
},
|
|
22
|
+
"count": {
|
|
23
|
+
"requiresAuthentication": true
|
|
24
|
+
},
|
|
25
|
+
"get": {
|
|
26
|
+
"requiresAuthentication": true
|
|
27
|
+
},
|
|
28
|
+
"create": {
|
|
29
|
+
"requiresAuthentication": true
|
|
30
|
+
},
|
|
31
|
+
"update": {
|
|
32
|
+
"requiresAuthentication": true
|
|
33
|
+
},
|
|
34
|
+
"delete": {
|
|
35
|
+
"requiresAuthentication": true
|
|
36
|
+
},
|
|
37
|
+
"addField": {},
|
|
38
|
+
"protectedFields": {
|
|
39
|
+
"*": []
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -14,6 +14,14 @@
|
|
|
14
14
|
"targetClass": "{{PREFIX}}Maintenance_Media",
|
|
15
15
|
"required": false
|
|
16
16
|
},
|
|
17
|
+
"run_cron": {
|
|
18
|
+
"type": "String",
|
|
19
|
+
"required": false
|
|
20
|
+
},
|
|
21
|
+
"run_timestamp": {
|
|
22
|
+
"type": "Date",
|
|
23
|
+
"required": false
|
|
24
|
+
},
|
|
17
25
|
"source": {
|
|
18
26
|
"type": "Pointer",
|
|
19
27
|
"targetClass": "{{PREFIX}}Source",
|
|
@@ -48,9 +56,7 @@
|
|
|
48
56
|
"delete": {
|
|
49
57
|
"requiresAuthentication": true
|
|
50
58
|
},
|
|
51
|
-
"addField": {
|
|
52
|
-
"requiresAuthentication": true
|
|
53
|
-
},
|
|
59
|
+
"addField": {},
|
|
54
60
|
"protectedFields": {
|
|
55
61
|
"*": []
|
|
56
62
|
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"fields": {
|
|
3
|
+
"item": {
|
|
4
|
+
"type": "Pointer",
|
|
5
|
+
"targetClass": "{{PREFIX}}Service_Item",
|
|
6
|
+
"required": false
|
|
7
|
+
},
|
|
8
|
+
"source": {
|
|
9
|
+
"type": "Pointer",
|
|
10
|
+
"targetClass": "{{PREFIX}}Source",
|
|
11
|
+
"required": true
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"classLevelPermissions": {
|
|
15
|
+
"find": {
|
|
16
|
+
"requiresAuthentication": true
|
|
17
|
+
},
|
|
18
|
+
"count": {
|
|
19
|
+
"requiresAuthentication": true
|
|
20
|
+
},
|
|
21
|
+
"get": {
|
|
22
|
+
"requiresAuthentication": true
|
|
23
|
+
},
|
|
24
|
+
"create": {
|
|
25
|
+
"requiresAuthentication": true
|
|
26
|
+
},
|
|
27
|
+
"update": {
|
|
28
|
+
"requiresAuthentication": true
|
|
29
|
+
},
|
|
30
|
+
"delete": {
|
|
31
|
+
"requiresAuthentication": true
|
|
32
|
+
},
|
|
33
|
+
"addField": {},
|
|
34
|
+
"protectedFields": {
|
|
35
|
+
"*": []
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
package/schema/Report.json
CHANGED
|
@@ -4,6 +4,16 @@
|
|
|
4
4
|
"type": "String",
|
|
5
5
|
"required": false
|
|
6
6
|
},
|
|
7
|
+
"items": {
|
|
8
|
+
"type": "Array",
|
|
9
|
+
"required": true,
|
|
10
|
+
"defaultValue": []
|
|
11
|
+
},
|
|
12
|
+
"masterData": {
|
|
13
|
+
"type": "Object",
|
|
14
|
+
"required": true,
|
|
15
|
+
"defaultValue": {}
|
|
16
|
+
},
|
|
7
17
|
"name": {
|
|
8
18
|
"type": "String",
|
|
9
19
|
"required": false
|
|
@@ -13,6 +23,14 @@
|
|
|
13
23
|
"required": true,
|
|
14
24
|
"defaultValue": {}
|
|
15
25
|
},
|
|
26
|
+
"template": {
|
|
27
|
+
"type": "File",
|
|
28
|
+
"required": true
|
|
29
|
+
},
|
|
30
|
+
"title": {
|
|
31
|
+
"type": "String",
|
|
32
|
+
"required": false
|
|
33
|
+
},
|
|
16
34
|
"type": {
|
|
17
35
|
"type": "String",
|
|
18
36
|
"required": true
|
package/schema/Share.json
CHANGED
package/schema/Source.json
CHANGED
package/schema/Tenant.json
CHANGED
|
@@ -18,28 +18,8 @@
|
|
|
18
18
|
"type": "String",
|
|
19
19
|
"required": true
|
|
20
20
|
},
|
|
21
|
-
"listedForSignup": {
|
|
22
|
-
"type": "Boolean",
|
|
23
|
-
"required": false
|
|
24
|
-
},
|
|
25
21
|
"tagPrefix": {
|
|
26
22
|
"type": "String"
|
|
27
|
-
},
|
|
28
|
-
"logo": {
|
|
29
|
-
"type": "File",
|
|
30
|
-
"required": false
|
|
31
|
-
},
|
|
32
|
-
"logoRaw": {
|
|
33
|
-
"type": "File",
|
|
34
|
-
"required": false
|
|
35
|
-
},
|
|
36
|
-
"icon": {
|
|
37
|
-
"type": "File",
|
|
38
|
-
"required": false
|
|
39
|
-
},
|
|
40
|
-
"iconRaw": {
|
|
41
|
-
"type": "File",
|
|
42
|
-
"required": false
|
|
43
23
|
}
|
|
44
24
|
},
|
|
45
25
|
"classLevelPermissions": {
|
package/schema/VirtualKPI.json
CHANGED