@aptly-as/types 3.10.8 → 3.10.9

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.
@@ -13,6 +13,7 @@ export interface AptlyInquirySchema<ID, DATE> extends Pick<AptlyBaseSchema<ID, D
13
13
  project: ID | AptlyProjectSchema<ID, DATE>;
14
14
  organization: ID | AptlyOrganizationSchema<ID, DATE>;
15
15
  unit: ID | AptlyUnitSchema<ID, DATE>;
16
+ offer?: ID | null;
16
17
  order?: ID | null;
17
18
  product?: ID | AptlyProductSchema<ID, DATE>;
18
19
  variant?: ID;
package/models/price.d.ts CHANGED
@@ -11,6 +11,7 @@ export interface AptlyPriceSchema<ID, DATE> extends Pick<AptlyBaseSchema<ID, DAT
11
11
  identification: string;
12
12
  amount: number;
13
13
  algorithm: ID | null;
14
+ baseQuantity: number;
14
15
  updatedAt: DATE;
15
16
  createdAt: DATE;
16
17
  }
@@ -116,6 +116,7 @@ export interface AptlyProjectNotifySchema<ID, DATE> {
116
116
  inquiry: boolean;
117
117
  booking: boolean;
118
118
  complaint: boolean;
119
+ offer?: boolean;
119
120
  order?: boolean;
120
121
  'order-created'?: boolean;
121
122
  'order-signed'?: boolean;
@@ -18,6 +18,7 @@ export interface AptlyUnitEmailSchema<ID, DATE> extends Omit<AptlyBaseSchema<ID,
18
18
  organization: ID | AptlyOrganizationSchema<ID, DATE>;
19
19
  project: ID | AptlyProjectSchema<ID, DATE>;
20
20
  unit: ID | AptlyUnitSchema<ID, DATE>;
21
+ offer?: ID | AptlyOrderSchema<ID, DATE> | null;
21
22
  order?: ID | AptlyOrderSchema<ID, DATE> | null;
22
23
  inquiry?: ID | AptlyInquirySchema<ID, DATE>;
23
24
  booking?: ID | AptlyBookingSchema<ID, DATE>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "3.10.8",
3
+ "version": "3.10.9",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",