swoop-common 2.2.232 → 2.2.234
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.
- package/dist/api/generated/core/exports.d.ts +1 -0
- package/dist/api/generated/core/index.d.ts +1 -0
- package/dist/api/generated/core/models/QuoteOptions.d.ts +5 -0
- package/dist/api/generated/core/models/QuoteOptions.js +5 -0
- package/dist/api/generated/core/models/SwoopSyncSuccess.d.ts +6 -0
- package/dist/api/generated/core/models/SwoopSyncSuccess.js +1 -0
- package/package.json +1 -1
|
@@ -126,6 +126,7 @@ export type { SwoopError } from './index';
|
|
|
126
126
|
export type { SwoopSyncComponentInstance } from './index';
|
|
127
127
|
export type { SwoopSyncError } from './index';
|
|
128
128
|
export type { SwoopSyncErrorMsg } from './index';
|
|
129
|
+
export type { SwoopSyncSuccess } from './index';
|
|
129
130
|
export type { TagPathParam } from './index';
|
|
130
131
|
export type { TemplateId } from './index';
|
|
131
132
|
export type { TemplateIdPathParam } from './index';
|
|
@@ -126,6 +126,7 @@ export type { SwoopError } from './models/SwoopError';
|
|
|
126
126
|
export type { SwoopSyncComponentInstance } from './models/SwoopSyncComponentInstance';
|
|
127
127
|
export type { SwoopSyncError } from './models/SwoopSyncError';
|
|
128
128
|
export type { SwoopSyncErrorMsg } from './models/SwoopSyncErrorMsg';
|
|
129
|
+
export type { SwoopSyncSuccess } from './models/SwoopSyncSuccess';
|
|
129
130
|
export type { TagPathParam } from './models/TagPathParam';
|
|
130
131
|
export type { TemplateId } from './models/TemplateId';
|
|
131
132
|
export type { TemplateIdPathParam } from './models/TemplateIdPathParam';
|
|
@@ -12,6 +12,7 @@ export type QuoteOptions = {
|
|
|
12
12
|
currency?: Currency;
|
|
13
13
|
onBehalfOf?: string;
|
|
14
14
|
feeVisibility?: QuoteOptions.feeVisibility;
|
|
15
|
+
priceGrouping?: QuoteOptions.priceGrouping;
|
|
15
16
|
};
|
|
16
17
|
export declare namespace QuoteOptions {
|
|
17
18
|
enum feeVisibility {
|
|
@@ -19,4 +20,8 @@ export declare namespace QuoteOptions {
|
|
|
19
20
|
SHOW_ALL = "showAll",
|
|
20
21
|
HIDE_ALL = "hideAll"
|
|
21
22
|
}
|
|
23
|
+
enum priceGrouping {
|
|
24
|
+
GROUPED = "grouped",
|
|
25
|
+
PER_PASSENGER = "perPassenger"
|
|
26
|
+
}
|
|
22
27
|
}
|
|
@@ -6,4 +6,9 @@ export var QuoteOptions;
|
|
|
6
6
|
feeVisibility["SHOW_ALL"] = "showAll";
|
|
7
7
|
feeVisibility["HIDE_ALL"] = "hideAll";
|
|
8
8
|
})(feeVisibility = QuoteOptions.feeVisibility || (QuoteOptions.feeVisibility = {}));
|
|
9
|
+
let priceGrouping;
|
|
10
|
+
(function (priceGrouping) {
|
|
11
|
+
priceGrouping["GROUPED"] = "grouped";
|
|
12
|
+
priceGrouping["PER_PASSENGER"] = "perPassenger";
|
|
13
|
+
})(priceGrouping = QuoteOptions.priceGrouping || (QuoteOptions.priceGrouping = {}));
|
|
9
14
|
})(QuoteOptions || (QuoteOptions = {}));
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export type SwoopSyncSuccess = {
|
|
2
|
+
/**
|
|
3
|
+
* Whether the itinerary currently meets the CRM's late-booking criteria, computed regardless of the isLateBookingConfirmed value that was sent. Absent when the CRM does not yet report this field, which must be treated as unknown (not false).
|
|
4
|
+
*/
|
|
5
|
+
isLate?: boolean;
|
|
6
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|