@tapir19/contracts 1.5.2 → 1.5.3

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/gen/ts/booking.ts CHANGED
@@ -36,7 +36,7 @@ export interface SeatInput {
36
36
  }
37
37
 
38
38
  export interface ConfirmBookingRequest {
39
- orderId: string;
39
+ bookingId: string;
40
40
  userId: string;
41
41
  }
42
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tapir19/contracts",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "Protobufs definitions and generated TypeScript types",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,7 +37,7 @@ message SeatInput {
37
37
  }
38
38
 
39
39
  message ConfirmBookingRequest {
40
- string order_id = 1;
40
+ string booking_id = 1;
41
41
  string user_id = 2;
42
42
  }
43
43