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.
@@ -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 {};
@@ -1,5 +1,6 @@
1
1
  export type Itinerary_ItinerarySaveOutput = {
2
2
  status?: string;
3
+ isLate?: boolean | null;
3
4
  messages?: any[] | null;
4
5
  errors?: any[] | null;
5
6
  };
@@ -1,6 +1,7 @@
1
1
  import type { HydraItemBaseSchema } from './HydraItemBaseSchema';
2
2
  export type Itinerary_ItinerarySaveOutput_jsonld = (HydraItemBaseSchema & {
3
3
  status?: string;
4
+ isLate?: boolean | null;
4
5
  messages?: any[] | null;
5
6
  errors?: any[] | null;
6
7
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swoop-common",
3
- "version": "2.2.222",
3
+ "version": "2.2.223",
4
4
  "main": "dist/api/index.js",
5
5
  "types": "dist/api/index.d.ts",
6
6
  "exports": {