@aptly-as/types 3.10.11 → 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/order.d.ts CHANGED
@@ -51,7 +51,6 @@ export interface AptlyOrderSchema<ID, DATE> extends Omit<AptlyBaseSchema<ID, DAT
51
51
  billing?: AptlyAddress;
52
52
  pricePipeline: AptlyOrderPricePipelineItemSchema<ID>[];
53
53
  signees?: AptlyOrderSigneeSchema<ID, DATE>[];
54
- signedAt?: DATE | null;
55
54
  emailText?: string;
56
55
  approved?: {
57
56
  action?: AptlyOrderAction;
@@ -62,6 +61,7 @@ export interface AptlyOrderSchema<ID, DATE> extends Omit<AptlyBaseSchema<ID, DAT
62
61
  payment?: ID | AptlyPaymentSchema<ID, DATE>;
63
62
  shippingDate?: DATE;
64
63
  shippingDescription?: string;
64
+ signedAt?: DATE | null;
65
65
  completedAt?: DATE | null;
66
66
  createdBy?: Populated<AptlyUserSchema<ID, DATE>> | null;
67
67
  createdByAdmin?: boolean;
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: {
@@ -42,6 +42,11 @@ export interface AptlyPlanSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
42
42
  monthlyQuantity: number;
43
43
  amount: number;
44
44
  };
45
+ signage: {
46
+ freeQuantity: number;
47
+ amount: number;
48
+ signee: number;
49
+ };
45
50
  }
46
51
  export type AptlyPlanInstalled = AptlyPlanInstalledSchema<string, string>;
47
52
  export interface AptlyPlanInstalledSchema<ID, DATE> extends AptlyPlanSchema<ID, DATE> {
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.11",
3
+ "version": "3.10.13",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",