swoop-common 2.2.114 → 2.2.116

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,4 +10,8 @@ export type Trip = {
10
10
  vesselComponent?: Record<string, any>;
11
11
  activities?: Array<Record<string, any>>;
12
12
  price?: Record<string, any>;
13
+ currentAvailability?: string;
14
+ discountPrice?: Record<string, any>;
15
+ selectedAlternativeCabin?: Record<string, any>;
16
+ selectedActivities?: Record<string, any>;
13
17
  };
@@ -419,7 +419,7 @@ export class CoreService {
419
419
  */
420
420
  templateCreate(requestBody) {
421
421
  return __request(OpenAPI, {
422
- method: 'POST',
422
+ method: 'PATCH',
423
423
  url: '/template',
424
424
  body: requestBody,
425
425
  mediaType: 'application/json',
@@ -41,7 +41,7 @@ export class TemplateService {
41
41
  */
42
42
  static templateCreate(requestBody) {
43
43
  return __request(OpenAPI, {
44
- method: 'POST',
44
+ method: 'PATCH',
45
45
  url: '/template',
46
46
  body: requestBody,
47
47
  mediaType: 'application/json',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.2.114",
3
+ "version": "2.2.116",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {