swoop-common 2.2.211 → 2.2.212
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.
|
@@ -22,6 +22,8 @@ export declare const TEMPLATE_NAMES: {
|
|
|
22
22
|
readonly PACKAGE: "Package";
|
|
23
23
|
readonly ROOM: "Room";
|
|
24
24
|
readonly GROUP_TOUR: "Group Tour";
|
|
25
|
+
readonly BESPOKE_PACKAGE: "Bespoke Package";
|
|
26
|
+
readonly SELF_DRIVE: "Self Drive";
|
|
25
27
|
};
|
|
26
28
|
/**
|
|
27
29
|
* Template Name to Template ID mapping
|
|
@@ -47,6 +49,8 @@ export declare const templateStructure: {
|
|
|
47
49
|
readonly "Cruise Activity": "template_12345678123456781234567812345678";
|
|
48
50
|
readonly Room: "template_bb0b09c544d242c9a9ef38147966979f";
|
|
49
51
|
readonly "Group Tour": "template_530f2f95c21147a08422bb714d771994";
|
|
52
|
+
readonly "Bespoke Package": "template_ad3c600295cce6fd5b40beeb0479a881";
|
|
53
|
+
readonly "Self Drive": "template_b8229bf387697b9ef540e3c45b0dfba4";
|
|
50
54
|
};
|
|
51
55
|
export declare const packagesTemplateStructure: {
|
|
52
56
|
readonly Cruise: "template_63a57a90570c47b89f830d2c7618324f";
|
|
@@ -22,6 +22,8 @@ export const TEMPLATE_NAMES = {
|
|
|
22
22
|
PACKAGE: "Package",
|
|
23
23
|
ROOM: "Room",
|
|
24
24
|
GROUP_TOUR: "Group Tour",
|
|
25
|
+
BESPOKE_PACKAGE: "Bespoke Package",
|
|
26
|
+
SELF_DRIVE: "Self Drive",
|
|
25
27
|
};
|
|
26
28
|
/**
|
|
27
29
|
* Template Name to Template ID mapping
|
|
@@ -46,7 +48,9 @@ export const templateStructure = {
|
|
|
46
48
|
[TEMPLATE_NAMES.FEE]: "template_d15cc4ab72034fb8a098d9a9ec791a7d",
|
|
47
49
|
[TEMPLATE_NAMES.CRUISE_ACTIVITY]: "template_12345678123456781234567812345678",
|
|
48
50
|
[TEMPLATE_NAMES.ROOM]: "template_bb0b09c544d242c9a9ef38147966979f",
|
|
49
|
-
[TEMPLATE_NAMES.GROUP_TOUR]: "template_530f2f95c21147a08422bb714d771994"
|
|
51
|
+
[TEMPLATE_NAMES.GROUP_TOUR]: "template_530f2f95c21147a08422bb714d771994",
|
|
52
|
+
[TEMPLATE_NAMES.BESPOKE_PACKAGE]: "template_ad3c600295cce6fd5b40beeb0479a881",
|
|
53
|
+
[TEMPLATE_NAMES.SELF_DRIVE]: "template_b8229bf387697b9ef540e3c45b0dfba4"
|
|
50
54
|
};
|
|
51
55
|
export const packagesTemplateStructure = {
|
|
52
56
|
[TEMPLATE_NAMES.CRUISE]: templateStructure[TEMPLATE_NAMES.CRUISE],
|
|
@@ -20,5 +20,7 @@ export const TEMPLATE_CHIP_STYLES = {
|
|
|
20
20
|
[TEMPLATE_NAMES.FEE]: { backgroundColor: "#ECECEC", color: "#5F5F5F" }, // neutral grey
|
|
21
21
|
[TEMPLATE_NAMES.ROOM]: { backgroundColor: "#FCE9DA", color: "#B5651D" }, // peach
|
|
22
22
|
[TEMPLATE_NAMES.GROUP_TOUR]: { backgroundColor: "#F0E6FB", color: "#7A3FA0" }, // violet
|
|
23
|
+
[TEMPLATE_NAMES.BESPOKE_PACKAGE]: { backgroundColor: "#E8E0D5", color: "#6B5B3E" }, // taupe
|
|
24
|
+
[TEMPLATE_NAMES.SELF_DRIVE]: { backgroundColor: "#DDF0E8", color: "#2A7A5C" }, // sea green
|
|
23
25
|
};
|
|
24
26
|
export const getTemplateChipStyle = (templateName) => { var _a; return (_a = TEMPLATE_CHIP_STYLES[templateName]) !== null && _a !== void 0 ? _a : { backgroundColor: "#EEEEEE", color: "#616161" }; };
|