tonightpass 0.0.87 → 0.0.88

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.87 build /home/runner/work/tonightpass/tonightpass/packages/node
2
+ > tonightpass@0.0.88 build /home/runner/work/tonightpass/tonightpass/packages/node
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -12,10 +12,10 @@
12
12
  DTS Build start
13
13
  CJS dist/index.js 25.47 KB
14
14
  CJS dist/index.js.map 85.09 KB
15
- CJS ⚡️ Build success in 614ms
15
+ CJS ⚡️ Build success in 866ms
16
16
  ESM dist/index.mjs 22.96 KB
17
17
  ESM dist/index.mjs.map 84.95 KB
18
- ESM ⚡️ Build success in 614ms
19
- DTS ⚡️ Build success in 3873ms
18
+ ESM ⚡️ Build success in 867ms
19
+ DTS ⚡️ Build success in 4210ms
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.88
4
+
5
+ ### Patch Changes
6
+
7
+ - [`4535441`](https://github.com/tonightpass/tonightpass/commit/4535441e1615627dfe2e9a54c7f51a060ba0b903) Thanks [@AntoineKM](https://github.com/AntoineKM)! - Fix wrong types for tickets in user booking
8
+
3
9
  ## 0.0.87
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: OrganizationEventTicket;
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: OrganizationEventTicket;
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.87",
3
+ "version": "0.0.88",
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: OrganizationEventTicket;
20
+ tickets: UserBookingTicket;
21
21
  order: Order;
22
22
  user: User;
23
23
  };