tonightpass 0.0.88 → 0.0.89

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > tonightpass@0.0.88 build /home/runner/work/tonightpass/tonightpass/packages/node
2
+ > tonightpass@0.0.89 build /home/runner/work/tonightpass/tonightpass/packages/node
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,12 +10,12 @@
10
10
  CJS Build start
11
11
  ESM Build start
12
12
  DTS Build start
13
- CJS dist/index.js 25.47 KB
14
- CJS dist/index.js.map 85.09 KB
15
- CJS ⚡️ Build success in 866ms
16
13
  ESM dist/index.mjs 22.96 KB
17
14
  ESM dist/index.mjs.map 84.95 KB
18
- ESM ⚡️ Build success in 867ms
19
- DTS ⚡️ Build success in 4210ms
15
+ ESM ⚡️ Build success in 713ms
16
+ CJS dist/index.js 25.47 KB
17
+ CJS dist/index.js.map 85.09 KB
18
+ CJS ⚡️ Build success in 714ms
19
+ DTS ⚡️ Build success in 4089ms
20
20
  DTS dist/index.d.ts 35.48 KB
21
21
  DTS dist/index.d.mts 35.48 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # tonightpass
2
2
 
3
+ ## 0.0.89
4
+
5
+ ### Patch Changes
6
+
7
+ - [`38ab30d`](https://github.com/tonightpass/tonightpass/commit/38ab30d4a31931ec29b44def02edce2d6fb67ebb) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Fix incorrect types for tickets in user booking
8
+
3
9
  ## 0.0.88
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -43,7 +43,7 @@ type UserBookingTicket = Base & {
43
43
  useCount: number;
44
44
  };
45
45
  type UserBooking = Base & {
46
- tickets: UserBookingTicket;
46
+ tickets: UserBookingTicket[];
47
47
  order: Order;
48
48
  user: User;
49
49
  };
package/dist/index.d.ts CHANGED
@@ -43,7 +43,7 @@ type UserBookingTicket = Base & {
43
43
  useCount: number;
44
44
  };
45
45
  type UserBooking = Base & {
46
- tickets: UserBookingTicket;
46
+ tickets: UserBookingTicket[];
47
47
  order: Order;
48
48
  user: User;
49
49
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tonightpass",
3
- "version": "0.0.88",
3
+ "version": "0.0.89",
4
4
  "description": "@tonightpass sdk and tools.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,7 +17,7 @@ export type UserBookingTicket = Base & {
17
17
  };
18
18
 
19
19
  export type UserBooking = Base & {
20
- tickets: UserBookingTicket;
20
+ tickets: UserBookingTicket[];
21
21
  order: Order;
22
22
  user: User;
23
23
  };