@lilaquadrat/interfaces 1.23.0 → 1.24.0

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [1.24.0](https://github.com/lilaquadrat/interfaces/compare/v1.23.0...v1.24.0) (2025-04-01)
6
+
7
+
8
+ ### Features
9
+
10
+ * **cart:** add payment property to Cart ([6ef3251](https://github.com/lilaquadrat/interfaces/commit/6ef325144d08515d65abdc1a1c993d80d462283b))
11
+
5
12
  ## [1.23.0](https://github.com/lilaquadrat/interfaces/compare/v1.22.0...v1.23.0) (2025-04-01)
6
13
 
7
14
 
package/lib/cjs/Cart.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { CartItem } from "./CartItem";
2
+ import { ObjectIdString } from "./ObjectIdString";
2
3
  export interface Cart {
3
4
  items?: CartItem[];
4
5
  state: 'open' | 'closed' | 'checkout';
@@ -9,4 +10,5 @@ export interface Cart {
9
10
  };
10
11
  modified?: Date;
11
12
  checkoutUrl?: string;
13
+ payment: ObjectIdString;
12
14
  }
package/lib/esm/Cart.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { CartItem } from "./CartItem";
2
+ import { ObjectIdString } from "./ObjectIdString";
2
3
  export interface Cart {
3
4
  items?: CartItem[];
4
5
  state: 'open' | 'closed' | 'checkout';
@@ -9,4 +10,5 @@ export interface Cart {
9
10
  };
10
11
  modified?: Date;
11
12
  checkoutUrl?: string;
13
+ payment: ObjectIdString;
12
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lilaquadrat/interfaces",
3
- "version": "1.23.0",
3
+ "version": "1.24.0",
4
4
  "description": "interfaces in context of lilaquadrat STUDIO",
5
5
  "author": {
6
6
  "email": "m.schuebel@lila2.de",
package/src/Cart.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { CartItem } from "./CartItem"
2
+ import { ObjectIdString } from "./ObjectIdString"
2
3
 
3
4
  export interface Cart {
4
5
 
@@ -16,5 +17,7 @@ export interface Cart {
16
17
  modified?: Date
17
18
 
18
19
  checkoutUrl?: string
20
+
21
+ payment: ObjectIdString
19
22
 
20
23
  }