swoop-common 2.1.38 → 2.1.39
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 +0 -1
- package/dist/api/generated/core/exports.js +0 -1
- package/dist/api/generated/core/index.d.ts +0 -1
- package/dist/api/generated/core/index.js +0 -1
- package/dist/api/generated/core/models/DTOComponentCreate.d.ts +0 -2
- package/dist/api/generated/core/models/DTOComponentEntity.d.ts +0 -2
- package/dist/api/generated/core/models/DTOComponentRead.d.ts +0 -2
- package/dist/api/generated/core/models/DTOComponentUpdate.d.ts +0 -2
- package/dist/api/generated/itinerary/index.d.ts +0 -1
- package/dist/api/generated/itinerary/index.js +0 -1
- package/dist/api/generated/itinerary/models/DTOComponentCreate.d.ts +0 -2
- package/dist/api/generated/itinerary/models/DTOComponentEntity.d.ts +0 -2
- package/dist/api/generated/itinerary/models/DTOComponentRead.d.ts +0 -2
- package/dist/api/generated/itinerary/models/DTOComponentUpdate.d.ts +0 -2
- package/dist/rendering/renderers/ComponentPicker.d.ts +0 -1
- package/package.json +1 -1
- package/dist/api/generated/core/models/ComponentType.d.ts +0 -13
- package/dist/api/generated/core/models/ComponentType.js +0 -18
- package/dist/api/generated/itinerary/models/ComponentType.d.ts +0 -13
- package/dist/api/generated/itinerary/models/ComponentType.js +0 -18
|
@@ -14,7 +14,6 @@ export type { ComponentMedia } from './index';
|
|
|
14
14
|
export type { ComponentNotes } from './index';
|
|
15
15
|
export type { ComponentPricing } from './index';
|
|
16
16
|
export { ComponentState } from './index';
|
|
17
|
-
export { ComponentType } from './index';
|
|
18
17
|
export { Currency } from './index';
|
|
19
18
|
export type { CurrencyItem } from './index';
|
|
20
19
|
export type { CurrencyItemResponse } from './index';
|
|
@@ -3,7 +3,6 @@ export { ApiError } from './index';
|
|
|
3
3
|
export { CancelablePromise, CancelError } from './index';
|
|
4
4
|
export { BookingStatus } from './index';
|
|
5
5
|
export { ComponentState } from './index';
|
|
6
|
-
export { ComponentType } from './index';
|
|
7
6
|
export { Currency } from './index';
|
|
8
7
|
export { Meals } from './index';
|
|
9
8
|
export { regionParam } from './index';
|
|
@@ -16,7 +16,6 @@ export type { ComponentMedia } from './models/ComponentMedia';
|
|
|
16
16
|
export type { ComponentNotes } from './models/ComponentNotes';
|
|
17
17
|
export type { ComponentPricing } from './models/ComponentPricing';
|
|
18
18
|
export { ComponentState } from './models/ComponentState';
|
|
19
|
-
export { ComponentType } from './models/ComponentType';
|
|
20
19
|
export { Currency } from './models/Currency';
|
|
21
20
|
export type { CurrencyItem } from './models/CurrencyItem';
|
|
22
21
|
export type { CurrencyItemResponse } from './models/CurrencyItemResponse';
|
|
@@ -7,7 +7,6 @@ export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
|
7
7
|
export { OpenAPI } from './core/OpenAPI';
|
|
8
8
|
export { BookingStatus } from './models/BookingStatus';
|
|
9
9
|
export { ComponentState } from './models/ComponentState';
|
|
10
|
-
export { ComponentType } from './models/ComponentType';
|
|
11
10
|
export { Currency } from './models/Currency';
|
|
12
11
|
export { Meals } from './models/Meals';
|
|
13
12
|
export { regionParam } from './models/regionParam';
|
|
@@ -4,7 +4,6 @@ import type { ComponentMedia } from './ComponentMedia';
|
|
|
4
4
|
import type { ComponentNotes } from './ComponentNotes';
|
|
5
5
|
import type { ComponentPricing } from './ComponentPricing';
|
|
6
6
|
import type { ComponentState } from './ComponentState';
|
|
7
|
-
import type { ComponentType } from './ComponentType';
|
|
8
7
|
import type { Field } from './Field';
|
|
9
8
|
import type { Package } from './Package';
|
|
10
9
|
export type DTOComponentCreate = {
|
|
@@ -24,7 +23,6 @@ export type DTOComponentCreate = {
|
|
|
24
23
|
endDate?: string | null;
|
|
25
24
|
duration?: number | null;
|
|
26
25
|
state: ComponentState;
|
|
27
|
-
type: ComponentType;
|
|
28
26
|
isBookable: boolean;
|
|
29
27
|
templateId: string;
|
|
30
28
|
};
|
|
@@ -4,7 +4,6 @@ import type { ComponentMedia } from './ComponentMedia';
|
|
|
4
4
|
import type { ComponentNotes } from './ComponentNotes';
|
|
5
5
|
import type { ComponentPricing } from './ComponentPricing';
|
|
6
6
|
import type { ComponentState } from './ComponentState';
|
|
7
|
-
import type { ComponentType } from './ComponentType';
|
|
8
7
|
import type { Field } from './Field';
|
|
9
8
|
import type { Metadata } from './Metadata';
|
|
10
9
|
import type { Package } from './Package';
|
|
@@ -30,6 +29,5 @@ export type DTOComponentEntity = {
|
|
|
30
29
|
endDate?: string | null;
|
|
31
30
|
duration?: number | null;
|
|
32
31
|
state: ComponentState;
|
|
33
|
-
type: ComponentType;
|
|
34
32
|
isBookable: boolean;
|
|
35
33
|
};
|
|
@@ -4,7 +4,6 @@ import type { ComponentMedia } from './ComponentMedia';
|
|
|
4
4
|
import type { ComponentNotes } from './ComponentNotes';
|
|
5
5
|
import type { ComponentPricing } from './ComponentPricing';
|
|
6
6
|
import type { ComponentState } from './ComponentState';
|
|
7
|
-
import type { ComponentType } from './ComponentType';
|
|
8
7
|
import type { Field } from './Field';
|
|
9
8
|
import type { Metadata } from './Metadata';
|
|
10
9
|
import type { Package } from './Package';
|
|
@@ -30,6 +29,5 @@ export type DTOComponentRead = {
|
|
|
30
29
|
endDate?: string | null;
|
|
31
30
|
duration?: number | null;
|
|
32
31
|
state: ComponentState;
|
|
33
|
-
type: ComponentType;
|
|
34
32
|
isBookable: boolean;
|
|
35
33
|
};
|
|
@@ -4,7 +4,6 @@ import type { ComponentMedia } from './ComponentMedia';
|
|
|
4
4
|
import type { ComponentNotes } from './ComponentNotes';
|
|
5
5
|
import type { ComponentPricing } from './ComponentPricing';
|
|
6
6
|
import type { ComponentState } from './ComponentState';
|
|
7
|
-
import type { ComponentType } from './ComponentType';
|
|
8
7
|
import type { Field } from './Field';
|
|
9
8
|
import type { Package } from './Package';
|
|
10
9
|
export type DTOComponentUpdate = {
|
|
@@ -22,6 +21,5 @@ export type DTOComponentUpdate = {
|
|
|
22
21
|
endDate?: string | null;
|
|
23
22
|
duration?: number | null;
|
|
24
23
|
state?: ComponentState;
|
|
25
|
-
type?: ComponentType;
|
|
26
24
|
isBookable?: boolean;
|
|
27
25
|
};
|
|
@@ -16,7 +16,6 @@ export type { ComponentMedia } from './models/ComponentMedia';
|
|
|
16
16
|
export type { ComponentNotes } from './models/ComponentNotes';
|
|
17
17
|
export type { ComponentPricing } from './models/ComponentPricing';
|
|
18
18
|
export { ComponentState } from './models/ComponentState';
|
|
19
|
-
export { ComponentType } from './models/ComponentType';
|
|
20
19
|
export { Currency } from './models/Currency';
|
|
21
20
|
export type { CurrencyItem } from './models/CurrencyItem';
|
|
22
21
|
export type { CurrencyItemResponse } from './models/CurrencyItemResponse';
|
|
@@ -7,7 +7,6 @@ export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|
|
7
7
|
export { OpenAPI } from './core/OpenAPI';
|
|
8
8
|
export { BookingStatus } from './models/BookingStatus';
|
|
9
9
|
export { ComponentState } from './models/ComponentState';
|
|
10
|
-
export { ComponentType } from './models/ComponentType';
|
|
11
10
|
export { Currency } from './models/Currency';
|
|
12
11
|
export { Meals } from './models/Meals';
|
|
13
12
|
export { regionParam } from './models/regionParam';
|
|
@@ -4,7 +4,6 @@ import type { ComponentMedia } from './ComponentMedia';
|
|
|
4
4
|
import type { ComponentNotes } from './ComponentNotes';
|
|
5
5
|
import type { ComponentPricing } from './ComponentPricing';
|
|
6
6
|
import type { ComponentState } from './ComponentState';
|
|
7
|
-
import type { ComponentType } from './ComponentType';
|
|
8
7
|
import type { Field } from './Field';
|
|
9
8
|
import type { Package } from './Package';
|
|
10
9
|
export type DTOComponentCreate = {
|
|
@@ -24,7 +23,6 @@ export type DTOComponentCreate = {
|
|
|
24
23
|
endDate?: string | null;
|
|
25
24
|
duration?: number | null;
|
|
26
25
|
state: ComponentState;
|
|
27
|
-
type: ComponentType;
|
|
28
26
|
isBookable: boolean;
|
|
29
27
|
templateId: string;
|
|
30
28
|
};
|
|
@@ -4,7 +4,6 @@ import type { ComponentMedia } from './ComponentMedia';
|
|
|
4
4
|
import type { ComponentNotes } from './ComponentNotes';
|
|
5
5
|
import type { ComponentPricing } from './ComponentPricing';
|
|
6
6
|
import type { ComponentState } from './ComponentState';
|
|
7
|
-
import type { ComponentType } from './ComponentType';
|
|
8
7
|
import type { Field } from './Field';
|
|
9
8
|
import type { Metadata } from './Metadata';
|
|
10
9
|
import type { Package } from './Package';
|
|
@@ -30,6 +29,5 @@ export type DTOComponentEntity = {
|
|
|
30
29
|
endDate?: string | null;
|
|
31
30
|
duration?: number | null;
|
|
32
31
|
state: ComponentState;
|
|
33
|
-
type: ComponentType;
|
|
34
32
|
isBookable: boolean;
|
|
35
33
|
};
|
|
@@ -4,7 +4,6 @@ import type { ComponentMedia } from './ComponentMedia';
|
|
|
4
4
|
import type { ComponentNotes } from './ComponentNotes';
|
|
5
5
|
import type { ComponentPricing } from './ComponentPricing';
|
|
6
6
|
import type { ComponentState } from './ComponentState';
|
|
7
|
-
import type { ComponentType } from './ComponentType';
|
|
8
7
|
import type { Field } from './Field';
|
|
9
8
|
import type { Metadata } from './Metadata';
|
|
10
9
|
import type { Package } from './Package';
|
|
@@ -30,6 +29,5 @@ export type DTOComponentRead = {
|
|
|
30
29
|
endDate?: string | null;
|
|
31
30
|
duration?: number | null;
|
|
32
31
|
state: ComponentState;
|
|
33
|
-
type: ComponentType;
|
|
34
32
|
isBookable: boolean;
|
|
35
33
|
};
|
|
@@ -4,7 +4,6 @@ import type { ComponentMedia } from './ComponentMedia';
|
|
|
4
4
|
import type { ComponentNotes } from './ComponentNotes';
|
|
5
5
|
import type { ComponentPricing } from './ComponentPricing';
|
|
6
6
|
import type { ComponentState } from './ComponentState';
|
|
7
|
-
import type { ComponentType } from './ComponentType';
|
|
8
7
|
import type { Field } from './Field';
|
|
9
8
|
import type { Package } from './Package';
|
|
10
9
|
export type DTOComponentUpdate = {
|
|
@@ -22,6 +21,5 @@ export type DTOComponentUpdate = {
|
|
|
22
21
|
endDate?: string | null;
|
|
23
22
|
duration?: number | null;
|
|
24
23
|
state?: ComponentState;
|
|
25
|
-
type?: ComponentType;
|
|
26
24
|
isBookable?: boolean;
|
|
27
25
|
};
|
|
@@ -23,7 +23,6 @@ export declare const fetchComponents: () => Promise<{
|
|
|
23
23
|
endDate?: string | null;
|
|
24
24
|
duration?: number | null;
|
|
25
25
|
state: import("../../api/generated/core").ComponentState;
|
|
26
|
-
type: import("../../api/generated/core").ComponentType;
|
|
27
26
|
isBookable: boolean;
|
|
28
27
|
}[];
|
|
29
28
|
}>;
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare enum ComponentType {
|
|
2
|
-
GROUND_ACCOMMODATION = "Ground Accommodation",
|
|
3
|
-
SHIP_ACCOMMODATION = "Ship Accommodation",
|
|
4
|
-
ACTIVITY = "Activity",
|
|
5
|
-
LOCATION = "Location",
|
|
6
|
-
JOURNEY = "Journey",
|
|
7
|
-
TRANSFER = "Transfer",
|
|
8
|
-
EXCURSION = "Excursion",
|
|
9
|
-
PRIVATE_TOUR = "Private Tour",
|
|
10
|
-
ALL_INCLUSIVE_HOTEL = "All Inclusive Hotel",
|
|
11
|
-
CRUISE = "Cruise",
|
|
12
|
-
MULTI_DAY_ACTIVITY = "Multi-day Activity"
|
|
13
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
export var ComponentType;
|
|
6
|
-
(function (ComponentType) {
|
|
7
|
-
ComponentType["GROUND_ACCOMMODATION"] = "Ground Accommodation";
|
|
8
|
-
ComponentType["SHIP_ACCOMMODATION"] = "Ship Accommodation";
|
|
9
|
-
ComponentType["ACTIVITY"] = "Activity";
|
|
10
|
-
ComponentType["LOCATION"] = "Location";
|
|
11
|
-
ComponentType["JOURNEY"] = "Journey";
|
|
12
|
-
ComponentType["TRANSFER"] = "Transfer";
|
|
13
|
-
ComponentType["EXCURSION"] = "Excursion";
|
|
14
|
-
ComponentType["PRIVATE_TOUR"] = "Private Tour";
|
|
15
|
-
ComponentType["ALL_INCLUSIVE_HOTEL"] = "All Inclusive Hotel";
|
|
16
|
-
ComponentType["CRUISE"] = "Cruise";
|
|
17
|
-
ComponentType["MULTI_DAY_ACTIVITY"] = "Multi-day Activity";
|
|
18
|
-
})(ComponentType || (ComponentType = {}));
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare enum ComponentType {
|
|
2
|
-
GROUND_ACCOMMODATION = "Ground Accommodation",
|
|
3
|
-
SHIP_ACCOMMODATION = "Ship Accommodation",
|
|
4
|
-
ACTIVITY = "Activity",
|
|
5
|
-
LOCATION = "Location",
|
|
6
|
-
JOURNEY = "Journey",
|
|
7
|
-
TRANSFER = "Transfer",
|
|
8
|
-
EXCURSION = "Excursion",
|
|
9
|
-
PRIVATE_TOUR = "Private Tour",
|
|
10
|
-
ALL_INCLUSIVE_HOTEL = "All Inclusive Hotel",
|
|
11
|
-
CRUISE = "Cruise",
|
|
12
|
-
MULTI_DAY_ACTIVITY = "Multi-day Activity"
|
|
13
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/* generated using openapi-typescript-codegen -- do not edit */
|
|
2
|
-
/* istanbul ignore file */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
|
-
export var ComponentType;
|
|
6
|
-
(function (ComponentType) {
|
|
7
|
-
ComponentType["GROUND_ACCOMMODATION"] = "Ground Accommodation";
|
|
8
|
-
ComponentType["SHIP_ACCOMMODATION"] = "Ship Accommodation";
|
|
9
|
-
ComponentType["ACTIVITY"] = "Activity";
|
|
10
|
-
ComponentType["LOCATION"] = "Location";
|
|
11
|
-
ComponentType["JOURNEY"] = "Journey";
|
|
12
|
-
ComponentType["TRANSFER"] = "Transfer";
|
|
13
|
-
ComponentType["EXCURSION"] = "Excursion";
|
|
14
|
-
ComponentType["PRIVATE_TOUR"] = "Private Tour";
|
|
15
|
-
ComponentType["ALL_INCLUSIVE_HOTEL"] = "All Inclusive Hotel";
|
|
16
|
-
ComponentType["CRUISE"] = "Cruise";
|
|
17
|
-
ComponentType["MULTI_DAY_ACTIVITY"] = "Multi-day Activity";
|
|
18
|
-
})(ComponentType || (ComponentType = {}));
|