@aptly-as/types 3.10.12 → 3.10.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.
package/models/plan.d.ts CHANGED
@@ -30,7 +30,7 @@ export interface AptlyPlanSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
30
30
  lastPaymentAt: DATE | null;
31
31
  nextPaymentAt: DATE | null;
32
32
  user: {
33
- freeQuantity: number;
33
+ monthlyQuantity: number;
34
34
  monthly: number;
35
35
  };
36
36
  unit: {
@@ -43,6 +43,7 @@ export interface AptlyPlanSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
43
43
  amount: number;
44
44
  };
45
45
  signage: {
46
+ freeQuantity: number;
46
47
  amount: number;
47
48
  signee: number;
48
49
  };
package/models/unit.d.ts CHANGED
@@ -54,6 +54,7 @@ export interface AptlyUnitSchema<ID, DATE> extends AptlyUnitTemplateBaseSchema<I
54
54
  integrations: AptlyUnitIntegrationSchema<ID>[];
55
55
  gdpr?: AptlyUnitGDPRSchema<DATE, ID>;
56
56
  tree: any[];
57
+ activatedAt: DATE | null;
57
58
  created: DATE;
58
59
  }
59
60
  interface AptlyUnitGDPRSchema<DATE, ID> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "3.10.12",
3
+ "version": "3.10.13",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",