swoop-common 2.2.222 → 2.2.223
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/SwoopSyncSuccess.d.ts +6 -0
- package/dist/api/generated/core/models/SwoopSyncSuccess.js +1 -0
- package/dist/api/generated/swoop/models/Itinerary_ItinerarySaveOutput.d.ts +1 -0
- package/dist/api/generated/swoop/models/Itinerary_ItinerarySaveOutput_jsonld.d.ts +1 -0
- package/package.json +1 -1
|
@@ -125,6 +125,7 @@ export type { SwoopError } from './index';
|
|
|
125
125
|
export type { SwoopSyncComponentInstance } from './index';
|
|
126
126
|
export type { SwoopSyncError } from './index';
|
|
127
127
|
export type { SwoopSyncErrorMsg } from './index';
|
|
128
|
+
export type { SwoopSyncSuccess } from './index';
|
|
128
129
|
export type { TagPathParam } from './index';
|
|
129
130
|
export type { TemplateId } from './index';
|
|
130
131
|
export type { TemplateIdPathParam } from './index';
|
|
@@ -125,6 +125,7 @@ export type { SwoopError } from './models/SwoopError';
|
|
|
125
125
|
export type { SwoopSyncComponentInstance } from './models/SwoopSyncComponentInstance';
|
|
126
126
|
export type { SwoopSyncError } from './models/SwoopSyncError';
|
|
127
127
|
export type { SwoopSyncErrorMsg } from './models/SwoopSyncErrorMsg';
|
|
128
|
+
export type { SwoopSyncSuccess } from './models/SwoopSyncSuccess';
|
|
128
129
|
export type { TagPathParam } from './models/TagPathParam';
|
|
129
130
|
export type { TemplateId } from './models/TemplateId';
|
|
130
131
|
export type { TemplateIdPathParam } from './models/TemplateIdPathParam';
|
|
@@ -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 {};
|