swoop-common 2.2.142 → 2.2.144

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.
@@ -3,5 +3,7 @@ export declare enum Meals {
3
3
  LUNCH = "Lunch",
4
4
  BOX_LUNCH = "Box Lunch",
5
5
  DINNER = "Dinner",
6
- SNACKS = "Snacks"
6
+ SNACKS = "Snacks",
7
+ ALL_INCLUSIVE = "All Inclusive",
8
+ ASADO_LUNCH = "Asado Lunch"
7
9
  }
@@ -9,4 +9,6 @@ export var Meals;
9
9
  Meals["BOX_LUNCH"] = "Box Lunch";
10
10
  Meals["DINNER"] = "Dinner";
11
11
  Meals["SNACKS"] = "Snacks";
12
+ Meals["ALL_INCLUSIVE"] = "All Inclusive";
13
+ Meals["ASADO_LUNCH"] = "Asado Lunch";
12
14
  })(Meals || (Meals = {}));
@@ -3,4 +3,5 @@ import type { Title } from './Title';
3
3
  export type Package = {
4
4
  spans?: Array<PackageSpan>;
5
5
  title: Title;
6
+ description?: string;
6
7
  };
@@ -1,6 +1,9 @@
1
1
  import type { Meals } from './Meals';
2
2
  import type { PackageItem } from './PackageItem';
3
+ import type { Title } from './Title';
3
4
  export type PackageSpan = {
5
+ title: Title;
6
+ description: string;
4
7
  items: Array<PackageItem>;
5
8
  startDay: number;
6
9
  endDay: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.2.142",
3
+ "version": "2.2.144",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {