@hawk.so/types 0.1.16 → 0.1.17

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.
@@ -23,4 +23,9 @@ export interface PlanDBScheme {
23
23
  * Is this plan used by default?
24
24
  */
25
25
  isDefault: boolean;
26
+ /**
27
+ * Special plans to be selected manually
28
+ * No one cannot be switched to this plan by api
29
+ */
30
+ isHidden: boolean;
26
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hawk.so/types",
3
- "version": "0.1.16",
3
+ "version": "0.1.17",
4
4
  "description": "TypeScript definitions for Hawk",
5
5
  "types": "build/index.d.ts",
6
6
  "main": "build/index.js",
@@ -28,4 +28,10 @@ export interface PlanDBScheme {
28
28
  * Is this plan used by default?
29
29
  */
30
30
  isDefault: boolean;
31
+
32
+ /**
33
+ * Special plans to be selected manually
34
+ * No one cannot be switched to this plan by api
35
+ */
36
+ isHidden: boolean;
31
37
  }