@hawk.so/types 0.1.28 → 0.1.29

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.
@@ -39,6 +39,11 @@ export interface WorkspaceDBScheme {
39
39
  * Date when workspace was charged last time
40
40
  */
41
41
  lastChargeDate: Date;
42
+ /**
43
+ * Date when subscription will be expired
44
+ * Used for pre-paid plans for several months
45
+ */
46
+ paidUntil?: Date;
42
47
  /**
43
48
  * Total number of errors since the last charge date
44
49
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hawk.so/types",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "description": "TypeScript definitions for Hawk",
5
5
  "types": "build/index.d.ts",
6
6
  "main": "build/index.js",
@@ -49,6 +49,12 @@ export interface WorkspaceDBScheme {
49
49
  */
50
50
  lastChargeDate: Date;
51
51
 
52
+ /**
53
+ * Date when subscription will be expired
54
+ * Used for pre-paid plans for several months
55
+ */
56
+ paidUntil?: Date;
57
+
52
58
  /**
53
59
  * Total number of errors since the last charge date
54
60
  */