swoop-common 2.2.193 → 2.2.194

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,6 +100,7 @@ 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';
103
104
  export type { PublicSnapShotPayment } from './index';
104
105
  export type { PublicSnapshotPerson } from './index';
105
106
  export type { PublicSnapshotPricing } from './index';
@@ -100,6 +100,7 @@ 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';
103
104
  export type { PublicSnapShotPayment } from './models/PublicSnapShotPayment';
104
105
  export type { PublicSnapshotPerson } from './models/PublicSnapshotPerson';
105
106
  export type { PublicSnapshotPricing } from './models/PublicSnapshotPricing';
@@ -16,6 +16,7 @@ export type DTOPublicSnapshotCreate = {
16
16
  travellers: Array<PublicSnapshotTraveller>;
17
17
  map: ExpandedMap;
18
18
  componentInstancePricing: any;
19
+ partners: any;
19
20
  enquiryStatus: PublicSnapShotEnquiryStatus;
20
21
  salesPerson?: PublicSnapshotPerson;
21
22
  cxPerson?: PublicSnapshotPerson;
@@ -20,6 +20,7 @@ export type DTOPublicSnapshotEntity = {
20
20
  travellers: Array<PublicSnapshotTraveller>;
21
21
  map: ExpandedMap;
22
22
  componentInstancePricing: any;
23
+ partners: any;
23
24
  enquiryStatus: PublicSnapShotEnquiryStatus;
24
25
  salesPerson?: PublicSnapshotPerson;
25
26
  cxPerson?: PublicSnapshotPerson;
@@ -20,6 +20,7 @@ export type DTOPublicSnapshotRead = {
20
20
  travellers: Array<PublicSnapshotTraveller>;
21
21
  map: ExpandedMap;
22
22
  componentInstancePricing: any;
23
+ partners: any;
23
24
  enquiryStatus: PublicSnapShotEnquiryStatus;
24
25
  salesPerson?: PublicSnapshotPerson;
25
26
  cxPerson?: PublicSnapshotPerson;
@@ -0,0 +1,7 @@
1
+ export type PublicSnapshotPartner = {
2
+ id: string;
3
+ name: string;
4
+ address: string;
5
+ emergencyTelephoneCustomer: string;
6
+ emergencyEmailCustomer: string;
7
+ };
@@ -23,6 +23,7 @@ export type SwoopSyncComponentInstance = {
23
23
  negotiatedDiscount: number;
24
24
  nonCommissionableAmount: number;
25
25
  discountType?: string;
26
+ feeType?: string;
26
27
  };
27
28
  bookingGroup: string;
28
29
  startDate: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.2.193",
3
+ "version": "2.2.194",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {