@openinc/parse-server-opendash 2.4.12 → 2.4.13

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.
@@ -10,6 +10,7 @@ export interface BDE_FormAttributes {
10
10
  pinOnFrontpageLink?: string;
11
11
  RID?: string;
12
12
  storeUserInfo: boolean;
13
+ visible_in_app: boolean;
13
14
  }
14
15
  export declare class BDE_Form extends Parse.Object<BDE_FormAttributes> {
15
16
  static className: string;
@@ -26,4 +27,6 @@ export declare class BDE_Form extends Parse.Object<BDE_FormAttributes> {
26
27
  set RID(value: string | undefined);
27
28
  get storeUserInfo(): boolean;
28
29
  set storeUserInfo(value: boolean);
30
+ get visible_in_app(): boolean;
31
+ set visible_in_app(value: boolean);
29
32
  }
@@ -41,6 +41,12 @@ class BDE_Form extends Parse.Object {
41
41
  set storeUserInfo(value) {
42
42
  super.set("storeUserInfo", value);
43
43
  }
44
+ get visible_in_app() {
45
+ return super.get("visible_in_app");
46
+ }
47
+ set visible_in_app(value) {
48
+ super.set("visible_in_app", value);
49
+ }
44
50
  }
45
51
  exports.BDE_Form = BDE_Form;
46
52
  BDE_Form.className = "OD3_BDE_Form";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openinc/parse-server-opendash",
3
- "version": "2.4.12",
3
+ "version": "2.4.13",
4
4
  "description": "Parse Server Cloud Code for open.DASH",
5
5
  "keywords": [
6
6
  "parse",
@@ -20,6 +20,11 @@
20
20
  "type": "Boolean",
21
21
  "required": true,
22
22
  "defaultValue": false
23
+ },
24
+ "visible_in_app": {
25
+ "type": "Boolean",
26
+ "required": false,
27
+ "defaultValue": true
23
28
  }
24
29
  },
25
30
  "classLevelPermissions": {