swoop-common 2.1.82 → 2.1.83

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.
@@ -58,7 +58,6 @@ export type { ItineraryIdPathParam } from './index';
58
58
  export type { ItineraryIdQueryParam } from './index';
59
59
  export type { ItineraryRevisionGroupId } from './index';
60
60
  export type { ItineraryValue } from './index';
61
- export type { ItineraryWelcomeNote } from './index';
62
61
  export type { LimitQueryParam } from './index';
63
62
  export { Meals } from './index';
64
63
  export type { Media } from './index';
@@ -60,7 +60,6 @@ export type { ItineraryIdPathParam } from './models/ItineraryIdPathParam';
60
60
  export type { ItineraryIdQueryParam } from './models/ItineraryIdQueryParam';
61
61
  export type { ItineraryRevisionGroupId } from './models/ItineraryRevisionGroupId';
62
62
  export type { ItineraryValue } from './models/ItineraryValue';
63
- export type { ItineraryWelcomeNote } from './models/ItineraryWelcomeNote';
64
63
  export type { LimitQueryParam } from './models/LimitQueryParam';
65
64
  export { Meals } from './models/Meals';
66
65
  export type { Media } from './models/Media';
@@ -3,13 +3,12 @@ import type { Discount } from './Discount';
3
3
  import type { EnquiryId } from './EnquiryId';
4
4
  import type { Fee } from './Fee';
5
5
  import type { ItineraryValue } from './ItineraryValue';
6
- import type { ItineraryWelcomeNote } from './ItineraryWelcomeNote';
7
6
  import type { QuoteOptions } from './QuoteOptions';
8
7
  import type { Title } from './Title';
9
8
  export type DTOItineraryCreate = {
10
9
  enquiryId: EnquiryId;
11
10
  title: Title;
12
- welcomeNote?: ItineraryWelcomeNote;
11
+ welcomeNote?: string;
13
12
  values?: Array<ItineraryValue>;
14
13
  componentInstances?: Array<ComponentInstance>;
15
14
  fees?: Array<Fee>;
@@ -5,7 +5,6 @@ import type { Fee } from './Fee';
5
5
  import type { ItineraryId } from './ItineraryId';
6
6
  import type { ItineraryRevisionGroupId } from './ItineraryRevisionGroupId';
7
7
  import type { ItineraryValue } from './ItineraryValue';
8
- import type { ItineraryWelcomeNote } from './ItineraryWelcomeNote';
9
8
  import type { Metadata } from './Metadata';
10
9
  import type { QuoteOptions } from './QuoteOptions';
11
10
  import type { Title } from './Title';
@@ -16,7 +15,7 @@ export type DTOItineraryEntity = {
16
15
  enquiryId: EnquiryId;
17
16
  metadata: Metadata;
18
17
  title: Title;
19
- welcomeNote: ItineraryWelcomeNote;
18
+ welcomeNote: string;
20
19
  values: Array<ItineraryValue>;
21
20
  componentInstances: Array<ComponentInstance>;
22
21
  fees: Array<Fee>;
@@ -5,7 +5,6 @@ import type { Fee } from './Fee';
5
5
  import type { ItineraryId } from './ItineraryId';
6
6
  import type { ItineraryRevisionGroupId } from './ItineraryRevisionGroupId';
7
7
  import type { ItineraryValue } from './ItineraryValue';
8
- import type { ItineraryWelcomeNote } from './ItineraryWelcomeNote';
9
8
  import type { Metadata } from './Metadata';
10
9
  import type { QuoteOptions } from './QuoteOptions';
11
10
  import type { Title } from './Title';
@@ -16,7 +15,7 @@ export type DTOItineraryRead = {
16
15
  enquiryId: EnquiryId;
17
16
  metadata: Metadata;
18
17
  title: Title;
19
- welcomeNote: ItineraryWelcomeNote;
18
+ welcomeNote: string;
20
19
  values: Array<ItineraryValue>;
21
20
  componentInstances: Array<ComponentInstance>;
22
21
  fees: Array<Fee>;
@@ -2,12 +2,11 @@ import type { ComponentInstance } from './ComponentInstance';
2
2
  import type { Discount } from './Discount';
3
3
  import type { Fee } from './Fee';
4
4
  import type { ItineraryValue } from './ItineraryValue';
5
- import type { ItineraryWelcomeNote } from './ItineraryWelcomeNote';
6
5
  import type { QuoteOptions } from './QuoteOptions';
7
6
  import type { Title } from './Title';
8
7
  export type DTOItineraryUpdate = {
9
8
  title?: Title;
10
- welcomeNote?: ItineraryWelcomeNote;
9
+ welcomeNote?: string;
11
10
  values?: Array<ItineraryValue>;
12
11
  componentInstances?: Array<ComponentInstance>;
13
12
  fees?: Array<Fee>;
@@ -60,7 +60,6 @@ export type { ItineraryIdPathParam } from './models/ItineraryIdPathParam';
60
60
  export type { ItineraryIdQueryParam } from './models/ItineraryIdQueryParam';
61
61
  export type { ItineraryRevisionGroupId } from './models/ItineraryRevisionGroupId';
62
62
  export type { ItineraryValue } from './models/ItineraryValue';
63
- export type { ItineraryWelcomeNote } from './models/ItineraryWelcomeNote';
64
63
  export type { LimitQueryParam } from './models/LimitQueryParam';
65
64
  export { Meals } from './models/Meals';
66
65
  export type { Media } from './models/Media';
@@ -3,13 +3,12 @@ import type { Discount } from './Discount';
3
3
  import type { EnquiryId } from './EnquiryId';
4
4
  import type { Fee } from './Fee';
5
5
  import type { ItineraryValue } from './ItineraryValue';
6
- import type { ItineraryWelcomeNote } from './ItineraryWelcomeNote';
7
6
  import type { QuoteOptions } from './QuoteOptions';
8
7
  import type { Title } from './Title';
9
8
  export type DTOItineraryCreate = {
10
9
  enquiryId: EnquiryId;
11
10
  title: Title;
12
- welcomeNote?: ItineraryWelcomeNote;
11
+ welcomeNote?: string;
13
12
  values?: Array<ItineraryValue>;
14
13
  componentInstances?: Array<ComponentInstance>;
15
14
  fees?: Array<Fee>;
@@ -5,7 +5,6 @@ import type { Fee } from './Fee';
5
5
  import type { ItineraryId } from './ItineraryId';
6
6
  import type { ItineraryRevisionGroupId } from './ItineraryRevisionGroupId';
7
7
  import type { ItineraryValue } from './ItineraryValue';
8
- import type { ItineraryWelcomeNote } from './ItineraryWelcomeNote';
9
8
  import type { Metadata } from './Metadata';
10
9
  import type { QuoteOptions } from './QuoteOptions';
11
10
  import type { Title } from './Title';
@@ -16,7 +15,7 @@ export type DTOItineraryEntity = {
16
15
  enquiryId: EnquiryId;
17
16
  metadata: Metadata;
18
17
  title: Title;
19
- welcomeNote: ItineraryWelcomeNote;
18
+ welcomeNote: string;
20
19
  values: Array<ItineraryValue>;
21
20
  componentInstances: Array<ComponentInstance>;
22
21
  fees: Array<Fee>;
@@ -5,7 +5,6 @@ import type { Fee } from './Fee';
5
5
  import type { ItineraryId } from './ItineraryId';
6
6
  import type { ItineraryRevisionGroupId } from './ItineraryRevisionGroupId';
7
7
  import type { ItineraryValue } from './ItineraryValue';
8
- import type { ItineraryWelcomeNote } from './ItineraryWelcomeNote';
9
8
  import type { Metadata } from './Metadata';
10
9
  import type { QuoteOptions } from './QuoteOptions';
11
10
  import type { Title } from './Title';
@@ -16,7 +15,7 @@ export type DTOItineraryRead = {
16
15
  enquiryId: EnquiryId;
17
16
  metadata: Metadata;
18
17
  title: Title;
19
- welcomeNote: ItineraryWelcomeNote;
18
+ welcomeNote: string;
20
19
  values: Array<ItineraryValue>;
21
20
  componentInstances: Array<ComponentInstance>;
22
21
  fees: Array<Fee>;
@@ -2,12 +2,11 @@ import type { ComponentInstance } from './ComponentInstance';
2
2
  import type { Discount } from './Discount';
3
3
  import type { Fee } from './Fee';
4
4
  import type { ItineraryValue } from './ItineraryValue';
5
- import type { ItineraryWelcomeNote } from './ItineraryWelcomeNote';
6
5
  import type { QuoteOptions } from './QuoteOptions';
7
6
  import type { Title } from './Title';
8
7
  export type DTOItineraryUpdate = {
9
8
  title?: Title;
10
- welcomeNote?: ItineraryWelcomeNote;
9
+ welcomeNote?: string;
11
10
  values?: Array<ItineraryValue>;
12
11
  componentInstances?: Array<ComponentInstance>;
13
12
  fees?: Array<Fee>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.1.82",
3
+ "version": "2.1.83",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {
@@ -1,4 +0,0 @@
1
- export type ItineraryWelcomeNote = {
2
- header: string;
3
- description: string;
4
- };
@@ -1,4 +0,0 @@
1
- export type ItineraryWelcomeNote = {
2
- header: string;
3
- description: string;
4
- };