@openinc/parse-server-opendash 3.18.0 → 3.19.0
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.
|
@@ -9,6 +9,8 @@ export interface Documentation_DocumentAttributes {
|
|
|
9
9
|
category: Documentation_Category;
|
|
10
10
|
content: string;
|
|
11
11
|
icon?: string;
|
|
12
|
+
locationPattern?: string;
|
|
13
|
+
locations: any[];
|
|
12
14
|
order: number;
|
|
13
15
|
tenant?: Tenant;
|
|
14
16
|
title: string;
|
|
@@ -23,6 +25,10 @@ export declare class Documentation_Document extends Parse.Object<Documentation_D
|
|
|
23
25
|
set content(value: string);
|
|
24
26
|
get icon(): string | undefined;
|
|
25
27
|
set icon(value: string | undefined);
|
|
28
|
+
get locationPattern(): string | undefined;
|
|
29
|
+
set locationPattern(value: string | undefined);
|
|
30
|
+
get locations(): any[];
|
|
31
|
+
set locations(value: any[]);
|
|
26
32
|
get order(): number;
|
|
27
33
|
set order(value: number);
|
|
28
34
|
get tenant(): Tenant | undefined;
|
|
@@ -23,6 +23,18 @@ class Documentation_Document extends Parse.Object {
|
|
|
23
23
|
set icon(value) {
|
|
24
24
|
super.set("icon", value);
|
|
25
25
|
}
|
|
26
|
+
get locationPattern() {
|
|
27
|
+
return super.get("locationPattern");
|
|
28
|
+
}
|
|
29
|
+
set locationPattern(value) {
|
|
30
|
+
super.set("locationPattern", value);
|
|
31
|
+
}
|
|
32
|
+
get locations() {
|
|
33
|
+
return super.get("locations");
|
|
34
|
+
}
|
|
35
|
+
set locations(value) {
|
|
36
|
+
super.set("locations", value);
|
|
37
|
+
}
|
|
26
38
|
get order() {
|
|
27
39
|
return super.get("order");
|
|
28
40
|
}
|
package/package.json
CHANGED
|
@@ -13,6 +13,15 @@
|
|
|
13
13
|
"type": "String",
|
|
14
14
|
"required": false
|
|
15
15
|
},
|
|
16
|
+
"locationPattern": {
|
|
17
|
+
"type": "String",
|
|
18
|
+
"required": false
|
|
19
|
+
},
|
|
20
|
+
"locations": {
|
|
21
|
+
"type": "Array",
|
|
22
|
+
"required": false,
|
|
23
|
+
"defaultValue": []
|
|
24
|
+
},
|
|
16
25
|
"order": {
|
|
17
26
|
"type": "Number",
|
|
18
27
|
"required": false,
|