swoop-common 2.1.47 → 2.1.48
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/itineraryIdQuery.d.ts +4 -0
- package/dist/api/generated/core/models/itineraryIdQuery.js +1 -0
- package/dist/api/generated/itinerary/index.d.ts +1 -0
- package/dist/api/generated/itinerary/models/itineraryIdQuery.d.ts +4 -0
- package/dist/api/generated/itinerary/models/itineraryIdQuery.js +1 -0
- package/dist/api/generated/itinerary/services/ItineraryService.d.ts +2 -1
- package/dist/api/generated/itinerary/services/ItineraryService.js +3 -1
- package/package.json +1 -1
|
@@ -45,6 +45,7 @@ export type { IBEvent } from './index';
|
|
|
45
45
|
export type { id } from './index';
|
|
46
46
|
export type { itemsPerPage } from './index';
|
|
47
47
|
export type { itineraryId } from './index';
|
|
48
|
+
export type { itineraryIdQuery } from './index';
|
|
48
49
|
export type { Limit } from './index';
|
|
49
50
|
export { Meals } from './index';
|
|
50
51
|
export type { Member } from './index';
|
|
@@ -47,6 +47,7 @@ export type { IBEvent } from './models/IBEvent';
|
|
|
47
47
|
export type { id } from './models/id';
|
|
48
48
|
export type { itemsPerPage } from './models/itemsPerPage';
|
|
49
49
|
export type { itineraryId } from './models/itineraryId';
|
|
50
|
+
export type { itineraryIdQuery } from './models/itineraryIdQuery';
|
|
50
51
|
export type { Limit } from './models/Limit';
|
|
51
52
|
export { Meals } from './models/Meals';
|
|
52
53
|
export type { Member } from './models/Member';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -47,6 +47,7 @@ export type { IBEvent } from './models/IBEvent';
|
|
|
47
47
|
export type { id } from './models/id';
|
|
48
48
|
export type { itemsPerPage } from './models/itemsPerPage';
|
|
49
49
|
export type { itineraryId } from './models/itineraryId';
|
|
50
|
+
export type { itineraryIdQuery } from './models/itineraryIdQuery';
|
|
50
51
|
export type { Limit } from './models/Limit';
|
|
51
52
|
export { Meals } from './models/Meals';
|
|
52
53
|
export type { Member } from './models/Member';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -22,10 +22,11 @@ export declare class ItineraryService {
|
|
|
22
22
|
* @param page Pagination, starting at page 1
|
|
23
23
|
* @param limit Number of items per page
|
|
24
24
|
* @param sort List of fields to sort by
|
|
25
|
+
* @param itineraryId Itinerary Id
|
|
25
26
|
* @returns any OK
|
|
26
27
|
* @throws ApiError
|
|
27
28
|
*/
|
|
28
|
-
snapshotList(page?: number, limit?: number, sort?: any[]): CancelablePromise<{
|
|
29
|
+
snapshotList(page?: number, limit?: number, sort?: any[], itineraryId?: string): CancelablePromise<{
|
|
29
30
|
data: Array<DTOSnapshotRead>;
|
|
30
31
|
pagination?: Pagination;
|
|
31
32
|
}>;
|
|
@@ -22,10 +22,11 @@ export class ItineraryService {
|
|
|
22
22
|
* @param page Pagination, starting at page 1
|
|
23
23
|
* @param limit Number of items per page
|
|
24
24
|
* @param sort List of fields to sort by
|
|
25
|
+
* @param itineraryId Itinerary Id
|
|
25
26
|
* @returns any OK
|
|
26
27
|
* @throws ApiError
|
|
27
28
|
*/
|
|
28
|
-
snapshotList(page, limit, sort) {
|
|
29
|
+
snapshotList(page, limit, sort, itineraryId) {
|
|
29
30
|
return __request(OpenAPI, {
|
|
30
31
|
method: 'GET',
|
|
31
32
|
url: '/snapshots',
|
|
@@ -33,6 +34,7 @@ export class ItineraryService {
|
|
|
33
34
|
'page': page,
|
|
34
35
|
'limit': limit,
|
|
35
36
|
'sort': sort,
|
|
37
|
+
'itineraryId': itineraryId,
|
|
36
38
|
},
|
|
37
39
|
});
|
|
38
40
|
}
|