swoop-common 2.2.232 → 2.2.233

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.
@@ -12,6 +12,7 @@ export type QuoteOptions = {
12
12
  currency?: Currency;
13
13
  onBehalfOf?: string;
14
14
  feeVisibility?: QuoteOptions.feeVisibility;
15
+ priceGrouping?: QuoteOptions.priceGrouping;
15
16
  };
16
17
  export declare namespace QuoteOptions {
17
18
  enum feeVisibility {
@@ -19,4 +20,8 @@ export declare namespace QuoteOptions {
19
20
  SHOW_ALL = "showAll",
20
21
  HIDE_ALL = "hideAll"
21
22
  }
23
+ enum priceGrouping {
24
+ GROUPED = "grouped",
25
+ PER_PASSENGER = "perPassenger"
26
+ }
22
27
  }
@@ -6,4 +6,9 @@ export var QuoteOptions;
6
6
  feeVisibility["SHOW_ALL"] = "showAll";
7
7
  feeVisibility["HIDE_ALL"] = "hideAll";
8
8
  })(feeVisibility = QuoteOptions.feeVisibility || (QuoteOptions.feeVisibility = {}));
9
+ let priceGrouping;
10
+ (function (priceGrouping) {
11
+ priceGrouping["GROUPED"] = "grouped";
12
+ priceGrouping["PER_PASSENGER"] = "perPassenger";
13
+ })(priceGrouping = QuoteOptions.priceGrouping || (QuoteOptions.priceGrouping = {}));
9
14
  })(QuoteOptions || (QuoteOptions = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.2.232",
3
+ "version": "2.2.233",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {