@aptly-as/types 3.0.17 → 3.0.19

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
@@ -30,6 +30,7 @@ export interface AptlyOfferSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE>, O
30
30
  items: AptlyOfferItemSchema<ID, DATE>[];
31
31
  customer: AptlyCustomerSchema<ID, DATE> | null;
32
32
  shipping: AptlyAddress | null;
33
+ openedAt: DATE | null;
33
34
  acceptedAt: DATE | null;
34
35
  acceptedBy: ID | AptlyUserSchema<ID, DATE> | null;
35
36
  locked: boolean;
@@ -69,6 +69,7 @@ export interface AptlyOrganizationMemberSchema<ID, DATE> {
69
69
  position?: AptlyOrganizationMemberPosition;
70
70
  projects?: (ID | AptlyProjectSchema<ID, DATE>)[] | null;
71
71
  departments?: (ID | AptlyDepartmentGeneric<ID, DATE>)[] | null;
72
+ createdAt?: DATE;
72
73
  }
73
74
  export declare enum AptlyOrganizationMemberPosition {
74
75
  Owner = 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aptly-as/types",
3
- "version": "3.0.17",
3
+ "version": "3.0.19",
4
4
  "description": "Aptly types and enums",
5
5
  "type": "module",
6
6
  "main": "./index.js",