swoop-common 2.2.164 → 2.2.170

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.
@@ -79,7 +79,6 @@ export type { ItineraryIdQueryParam } from './index';
79
79
  export type { ItineraryRevisionGroupId } from './index';
80
80
  export type { ItineraryValue } from './index';
81
81
  export type { LimitQueryParam } from './index';
82
- export { Meals } from './index';
83
82
  export type { Media } from './index';
84
83
  export type { Metadata } from './index';
85
84
  export type { MockErrorCodeQueryParam } from './index';
@@ -7,7 +7,6 @@ export { BookingStatus } from './index';
7
7
  export { ComponentState } from './index';
8
8
  export { Currency } from './index';
9
9
  export { Destination } from './index';
10
- export { Meals } from './index';
11
10
  export { OrderQueryParam } from './index';
12
11
  export { OrgId } from './index';
13
12
  export { UrgencyCTA } from './index';
@@ -79,7 +79,6 @@ export type { ItineraryIdQueryParam } from './models/ItineraryIdQueryParam';
79
79
  export type { ItineraryRevisionGroupId } from './models/ItineraryRevisionGroupId';
80
80
  export type { ItineraryValue } from './models/ItineraryValue';
81
81
  export type { LimitQueryParam } from './models/LimitQueryParam';
82
- export { Meals } from './models/Meals';
83
82
  export type { Media } from './models/Media';
84
83
  export type { Metadata } from './models/Metadata';
85
84
  export type { MockErrorCodeQueryParam } from './models/MockErrorCodeQueryParam';
@@ -10,7 +10,6 @@ export { BookingStatus } from './models/BookingStatus';
10
10
  export { ComponentState } from './models/ComponentState';
11
11
  export { Currency } from './models/Currency';
12
12
  export { Destination } from './models/Destination';
13
- export { Meals } from './models/Meals';
14
13
  export { OrderQueryParam } from './models/OrderQueryParam';
15
14
  export { OrgId } from './models/OrgId';
16
15
  export { UrgencyCTA } from './models/UrgencyCTA';
@@ -1,4 +1,3 @@
1
- import type { Meals } from './Meals';
2
1
  import type { PackageItem } from './PackageItem';
3
2
  export type PackageSpan = {
4
3
  title?: string;
@@ -6,5 +5,4 @@ export type PackageSpan = {
6
5
  items: Array<PackageItem>;
7
6
  startDay: number;
8
7
  endDay: number;
9
- meals: Array<Meals>;
10
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.2.164",
3
+ "version": "2.2.170",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {
@@ -1,9 +0,0 @@
1
- export declare enum Meals {
2
- BREAKFAST = "Breakfast",
3
- LUNCH = "Lunch",
4
- BOX_LUNCH = "Box Lunch",
5
- DINNER = "Dinner",
6
- SNACKS = "Snacks",
7
- ALL_INCLUSIVE = "All Inclusive",
8
- ASADO_LUNCH = "Asado Lunch"
9
- }
@@ -1,14 +0,0 @@
1
- /* generated using openapi-typescript-codegen -- do not edit */
2
- /* istanbul ignore file */
3
- /* tslint:disable */
4
- /* eslint-disable */
5
- export var Meals;
6
- (function (Meals) {
7
- Meals["BREAKFAST"] = "Breakfast";
8
- Meals["LUNCH"] = "Lunch";
9
- Meals["BOX_LUNCH"] = "Box Lunch";
10
- Meals["DINNER"] = "Dinner";
11
- Meals["SNACKS"] = "Snacks";
12
- Meals["ALL_INCLUSIVE"] = "All Inclusive";
13
- Meals["ASADO_LUNCH"] = "Asado Lunch";
14
- })(Meals || (Meals = {}));