@voyantjs/bookings 0.51.0 → 0.52.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/dist/routes.d.ts CHANGED
@@ -2347,6 +2347,7 @@ export declare const bookingRoutes: import("hono/hono-base").HonoBase<Env, ({
2347
2347
  status: "pending" | "failed" | "issued" | "reissued" | "revoked";
2348
2348
  createdAt: string;
2349
2349
  updatedAt: string;
2350
+ revokedAt: string | null;
2350
2351
  bookingId: string;
2351
2352
  payload: {
2352
2353
  [x: string]: import("hono/utils/types").JSONValue;
@@ -2357,7 +2358,6 @@ export declare const bookingRoutes: import("hono/hono-base").HonoBase<Env, ({
2357
2358
  deliveryChannel: "api" | "email" | "other" | "download" | "wallet";
2358
2359
  artifactUrl: string | null;
2359
2360
  issuedAt: string | null;
2360
- revokedAt: string | null;
2361
2361
  };
2362
2362
  };
2363
2363
  outputFormat: "json";
package/dist/service.d.ts CHANGED
@@ -4555,6 +4555,7 @@ export declare const bookingsService: {
4555
4555
  status: "pending" | "failed" | "issued" | "reissued" | "revoked";
4556
4556
  createdAt: Date;
4557
4557
  updatedAt: Date;
4558
+ revokedAt: Date | null;
4558
4559
  bookingId: string;
4559
4560
  payload: Record<string, unknown> | null;
4560
4561
  travelerId: string | null;
@@ -4563,7 +4564,6 @@ export declare const bookingsService: {
4563
4564
  deliveryChannel: "api" | "email" | "other" | "download" | "wallet";
4564
4565
  artifactUrl: string | null;
4565
4566
  issuedAt: Date | null;
4566
- revokedAt: Date | null;
4567
4567
  } | null>;
4568
4568
  updateFulfillment(db: PostgresJsDatabase, bookingId: string, fulfillmentId: string, data: UpdateBookingFulfillmentInput, userId?: string): Promise<{
4569
4569
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voyantjs/bookings",
3
- "version": "0.51.0",
3
+ "version": "0.52.0",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -64,14 +64,14 @@
64
64
  "drizzle-orm": "^0.45.2",
65
65
  "hono": "^4.12.10",
66
66
  "zod": "^4.3.6",
67
- "@voyantjs/core": "0.51.0",
68
- "@voyantjs/db": "0.51.0",
69
- "@voyantjs/hono": "0.51.0",
70
- "@voyantjs/utils": "0.51.0"
67
+ "@voyantjs/core": "0.52.0",
68
+ "@voyantjs/db": "0.52.0",
69
+ "@voyantjs/hono": "0.52.0",
70
+ "@voyantjs/utils": "0.52.0"
71
71
  },
72
72
  "devDependencies": {
73
73
  "typescript": "^6.0.2",
74
- "@voyantjs/products": "0.51.0",
74
+ "@voyantjs/products": "0.52.0",
75
75
  "@voyantjs/voyant-typescript-config": "0.1.0"
76
76
  },
77
77
  "files": [