@rovi-tickets/common 1.0.4 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,5 +5,6 @@ export interface TicketCreatedEvent {
5
5
  id: string;
6
6
  title: string;
7
7
  price: number;
8
+ userId: string;
8
9
  };
9
10
  }
@@ -0,0 +1,6 @@
1
+ export declare enum OrderStatus {
2
+ Created = "created",
3
+ Cancelled = "cancelled",
4
+ AwaitingPayment = "awaiting:payment",
5
+ Complete = "complete"
6
+ }
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OrderStatus = void 0;
4
+ var OrderStatus;
5
+ (function (OrderStatus) {
6
+ // When the order has been created, but the
7
+ // ticket it is trying to order has not been reserved
8
+ OrderStatus["Created"] = "created";
9
+ // The ticket the order is trying to reserve has already
10
+ // been reserved, or when the user has cancelled the order.
11
+ // The order expires before payment
12
+ OrderStatus["Cancelled"] = "cancelled";
13
+ // The order has successfully reserved the ticket
14
+ OrderStatus["AwaitingPayment"] = "awaiting:payment";
15
+ // The order has reserved the ticket and the user has
16
+ // provided payment successfully
17
+ OrderStatus["Complete"] = "complete";
18
+ })(OrderStatus || (exports.OrderStatus = OrderStatus = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rovi-tickets/common",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",