swoop-common 2.1.86 → 2.1.87
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.
|
@@ -147,16 +147,6 @@ export declare class ItineraryService {
|
|
|
147
147
|
* @throws ApiError
|
|
148
148
|
*/
|
|
149
149
|
promoteItinerary(enquiryId: EnquiryId, tag: string, version: string, error?: number): CancelablePromise<DTOItineraryRead>;
|
|
150
|
-
/**
|
|
151
|
-
* Fake Sync Itinerary
|
|
152
|
-
* Fakes an error when syncing itinerary
|
|
153
|
-
* @param enquiryId Enquiry Id
|
|
154
|
-
* @param tag the branch tag
|
|
155
|
-
* @param version the version of a branch
|
|
156
|
-
* @returns void
|
|
157
|
-
* @throws ApiError
|
|
158
|
-
*/
|
|
159
|
-
fakeSyncItinerary(enquiryId: EnquiryId, tag: string, version: string): CancelablePromise<void>;
|
|
160
150
|
/**
|
|
161
151
|
* List Regions
|
|
162
152
|
* List all regions
|
|
@@ -322,31 +322,6 @@ export class ItineraryService {
|
|
|
322
322
|
},
|
|
323
323
|
});
|
|
324
324
|
}
|
|
325
|
-
/**
|
|
326
|
-
* Fake Sync Itinerary
|
|
327
|
-
* Fakes an error when syncing itinerary
|
|
328
|
-
* @param enquiryId Enquiry Id
|
|
329
|
-
* @param tag the branch tag
|
|
330
|
-
* @param version the version of a branch
|
|
331
|
-
* @returns void
|
|
332
|
-
* @throws ApiError
|
|
333
|
-
*/
|
|
334
|
-
fakeSyncItinerary(enquiryId, tag, version) {
|
|
335
|
-
return __request(OpenAPI, {
|
|
336
|
-
method: 'POST',
|
|
337
|
-
url: '/itinerary/fake/sync/{enquiryId}/{tag}/{version}',
|
|
338
|
-
path: {
|
|
339
|
-
'enquiryId': enquiryId,
|
|
340
|
-
'tag': tag,
|
|
341
|
-
'version': version,
|
|
342
|
-
},
|
|
343
|
-
errors: {
|
|
344
|
-
400: `The faked error`,
|
|
345
|
-
401: `Unauthorized - Missing or invalid Authorization header`,
|
|
346
|
-
500: `When an internal server error occurs whilst syncing`,
|
|
347
|
-
},
|
|
348
|
-
});
|
|
349
|
-
}
|
|
350
325
|
/**
|
|
351
326
|
* List Regions
|
|
352
327
|
* List all regions
|