swoop-common 2.2.192 → 2.2.193

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.
@@ -100,7 +100,6 @@ export type { Price } from './index';
100
100
  export type { PublicPaymentLead } from './index';
101
101
  export type { PublicSnapShotEnquiryStatus } from './index';
102
102
  export type { PublicSnapshotId } from './index';
103
- export type { PublicSnapshotPartner } from './index';
104
103
  export type { PublicSnapShotPayment } from './index';
105
104
  export type { PublicSnapshotPerson } from './index';
106
105
  export type { PublicSnapshotPricing } from './index';
@@ -100,7 +100,6 @@ export type { Price } from './models/Price';
100
100
  export type { PublicPaymentLead } from './models/PublicPaymentLead';
101
101
  export type { PublicSnapShotEnquiryStatus } from './models/PublicSnapShotEnquiryStatus';
102
102
  export type { PublicSnapshotId } from './models/PublicSnapshotId';
103
- export type { PublicSnapshotPartner } from './models/PublicSnapshotPartner';
104
103
  export type { PublicSnapShotPayment } from './models/PublicSnapShotPayment';
105
104
  export type { PublicSnapshotPerson } from './models/PublicSnapshotPerson';
106
105
  export type { PublicSnapshotPricing } from './models/PublicSnapshotPricing';
@@ -16,7 +16,6 @@ export type DTOPublicSnapshotCreate = {
16
16
  travellers: Array<PublicSnapshotTraveller>;
17
17
  map: ExpandedMap;
18
18
  componentInstancePricing: any;
19
- partners: any;
20
19
  enquiryStatus: PublicSnapShotEnquiryStatus;
21
20
  salesPerson?: PublicSnapshotPerson;
22
21
  cxPerson?: PublicSnapshotPerson;
@@ -20,7 +20,6 @@ export type DTOPublicSnapshotEntity = {
20
20
  travellers: Array<PublicSnapshotTraveller>;
21
21
  map: ExpandedMap;
22
22
  componentInstancePricing: any;
23
- partners: any;
24
23
  enquiryStatus: PublicSnapShotEnquiryStatus;
25
24
  salesPerson?: PublicSnapshotPerson;
26
25
  cxPerson?: PublicSnapshotPerson;
@@ -20,7 +20,6 @@ export type DTOPublicSnapshotRead = {
20
20
  travellers: Array<PublicSnapshotTraveller>;
21
21
  map: ExpandedMap;
22
22
  componentInstancePricing: any;
23
- partners: any;
24
23
  enquiryStatus: PublicSnapShotEnquiryStatus;
25
24
  salesPerson?: PublicSnapshotPerson;
26
25
  cxPerson?: PublicSnapshotPerson;
@@ -2,6 +2,7 @@ import type { AssignedPassenger } from './AssignedPassenger';
2
2
  import type { AssignedTravellerGroup } from './AssignedTravellerGroup';
3
3
  import type { BookingStatus } from './BookingStatus';
4
4
  import type { ComponentId } from './ComponentId';
5
+ import type { ComponentInstanceId } from './ComponentInstanceId';
5
6
  import type { Flag } from './Flag';
6
7
  import type { InternalSwoopId } from './InternalSwoopId';
7
8
  import type { Price } from './Price';
@@ -29,4 +30,5 @@ export type SwoopSyncComponentInstance = {
29
30
  flag: Flag;
30
31
  bookingStatus: BookingStatus;
31
32
  sortOrder?: number;
33
+ parentId?: ComponentInstanceId;
32
34
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.2.192",
3
+ "version": "2.2.193",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {
@@ -1,7 +0,0 @@
1
- export type PublicSnapshotPartner = {
2
- id: string;
3
- name: string;
4
- address: string;
5
- emergencyTelephoneCustomer: string;
6
- emergencyEmailCustomer: string;
7
- };