tonightpass 0.0.219 → 0.0.220
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -442,7 +442,7 @@ type UserBookingTicketEndpoints = Endpoint<"GET", "/users/bookings/tickets/:tick
|
|
|
442
442
|
|
|
443
443
|
type Order = Base & {
|
|
444
444
|
invoice: Stripe__default.Invoice;
|
|
445
|
-
user:
|
|
445
|
+
user: UserProfile;
|
|
446
446
|
};
|
|
447
447
|
type OrderEndpoints = Endpoint<"GET", "/orders", ArrayResult<Order>, ArrayOptions<Order>> | Endpoint<"GET", "/orders/:orderId", Order>;
|
|
448
448
|
|
package/dist/index.d.ts
CHANGED
|
@@ -442,7 +442,7 @@ type UserBookingTicketEndpoints = Endpoint<"GET", "/users/bookings/tickets/:tick
|
|
|
442
442
|
|
|
443
443
|
type Order = Base & {
|
|
444
444
|
invoice: Stripe__default.Invoice;
|
|
445
|
-
user:
|
|
445
|
+
user: UserProfile;
|
|
446
446
|
};
|
|
447
447
|
type OrderEndpoints = Endpoint<"GET", "/orders", ArrayResult<Order>, ArrayOptions<Order>> | Endpoint<"GET", "/orders/:orderId", Order>;
|
|
448
448
|
|