@sellout/models 0.0.237 → 0.0.238

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.
@@ -10,6 +10,7 @@ export default interface ICreateOrderParams {
10
10
  orgId: string;
11
11
  eventId?: string;
12
12
  seasonId?: string;
13
+ discount?: string;
13
14
  tickets: ICreateOrderTicketParams[];
14
15
  upgrades: ICreateOrderUpgradeParams[];
15
16
  fees?: IFee[];
@@ -51,6 +51,7 @@ export default interface IOrder {
51
51
  cancelReason?: string;
52
52
  promoterFee?: IProcessingFee;
53
53
  discountAmount?: number;
54
+ discount?: string;
54
55
  }
55
56
  export interface IEventGraphQL extends IEvent {
56
57
  venue?: IVenue;
@@ -1 +1 @@
1
- {"version":3,"file":"IOrder.js","sourceRoot":"","sources":["../../src/interfaces/IOrder.ts"],"names":[],"mappings":";;AAuDC,CAAC;AAeD,CAAC"}
1
+ {"version":3,"file":"IOrder.js","sourceRoot":"","sources":["../../src/interfaces/IOrder.ts"],"names":[],"mappings":";;AAwDC,CAAC;AAeD,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellout/models",
3
- "version": "0.0.237",
3
+ "version": "0.0.238",
4
4
  "description": "Sellout.io models",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -31,5 +31,5 @@
31
31
  "protobufjs": "^6.11.2",
32
32
  "typescript": "^4.4.2"
33
33
  },
34
- "gitHead": "de4528274f98a2bceeca73cdcee0c0ecbcda8014"
34
+ "gitHead": "720793738d10e24ac3c91a0590631946db8cc2be"
35
35
  }
@@ -11,6 +11,7 @@ export default interface ICreateOrderParams {
11
11
  orgId: string;
12
12
  eventId?: string;
13
13
  seasonId?: string;
14
+ discount?:string;
14
15
  // discountAmount?:string
15
16
  tickets: ICreateOrderTicketParams[];
16
17
  upgrades: ICreateOrderUpgradeParams[];
@@ -52,7 +52,8 @@ export default interface IOrder {
52
52
  parentSeasonOrderId?: string;
53
53
  cancelReason?: string;
54
54
  promoterFee?: IProcessingFee;
55
- discountAmount?: number
55
+ discountAmount?: number,
56
+ discount?:string
56
57
  };
57
58
 
58
59
  export interface IEventGraphQL extends IEvent {