@aptly-as/types 3.12.2 → 3.12.4

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/offer.d.ts CHANGED
@@ -34,6 +34,7 @@ export interface AptlyOfferSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE>, O
34
34
  items: AptlyOfferItemSchema<ID, DATE>[];
35
35
  customer: AptlyCustomerDataSchema<ID, DATE> | null;
36
36
  shipping: AptlyAddress | null;
37
+ ourContact: Populated<AptlyUserSchema<ID, DATE>> | null;
37
38
  openedAt: DATE | null;
38
39
  acceptedAt: DATE | null;
39
40
  acceptedBy: ID | AptlyUserSchema<ID, DATE> | null;
package/models/order.d.ts CHANGED
@@ -63,6 +63,7 @@ export interface AptlyOrderSchema<ID, DATE> extends Omit<AptlyBaseSchema<ID, DAT
63
63
  shippingDescription?: string;
64
64
  signedAt?: DATE | null;
65
65
  completedAt?: DATE | null;
66
+ ourContact: Populated<AptlyUserSchema<ID, DATE>> | null;
66
67
  createdBy?: Populated<AptlyUserSchema<ID, DATE>> | null;
67
68
  createdByAdmin?: boolean;
68
69
  created: DATE;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "3.12.2",
3
+ "version": "3.12.4",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",