swoop-common 2.2.121 → 2.2.122

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.
@@ -17,6 +17,7 @@ export type ComponentInstance = {
17
17
  userComponentInstanceFields: Array<UserComponentInstanceField>;
18
18
  assignedPassengers: Array<AssignedPassenger>;
19
19
  assignedTravellerGroups: Array<AssignedTravellerGroup>;
20
+ description?: string;
20
21
  pricing: {
21
22
  price: Price;
22
23
  commissionPercent: number;
@@ -1,6 +1,5 @@
1
1
  export declare enum Destination {
2
2
  PATAGONIA = "patagonia",
3
3
  ANTARCTICA = "antarctica",
4
- UNSPECIFIED = "unspecified",
5
- REST_OF_CHILE_ARGENTINA = "rest of chile/argentina"
4
+ UNSPECIFIED = "unspecified"
6
5
  }
@@ -7,5 +7,4 @@ export var Destination;
7
7
  Destination["PATAGONIA"] = "patagonia";
8
8
  Destination["ANTARCTICA"] = "antarctica";
9
9
  Destination["UNSPECIFIED"] = "unspecified";
10
- Destination["REST_OF_CHILE_ARGENTINA"] = "rest of chile/argentina";
11
10
  })(Destination || (Destination = {}));
@@ -1,9 +1,6 @@
1
1
  import type { Meals } from './Meals';
2
2
  import type { PackageItem } from './PackageItem';
3
- import type { Title } from './Title';
4
3
  export type PackageSpan = {
5
- title: Title;
6
- description: string;
7
4
  items: Array<PackageItem>;
8
5
  startDay: number;
9
6
  endDay: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.2.121",
3
+ "version": "2.2.122",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {