@bottlebooks/valid-values 10.38.2 → 10.39.0
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [10.39.0](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.38.2...@bottlebooks/valid-values@10.39.0) (2024-12-05)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- add international du gamay award ([cbed394](https://github.com/bottlebooks/bottlebooks/commit/cbed3944296a8f0beef5d73ce29978275c13d4a5))
|
|
11
|
+
|
|
6
12
|
## [10.38.2](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.38.1...@bottlebooks/valid-values@10.38.2) (2024-12-05)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
|
@@ -92,6 +92,7 @@ declare const allAwards: {
|
|
|
92
92
|
readonly hilton_head_island_wine_food_festival_international_judging: Award;
|
|
93
93
|
readonly hong_kong_international_wine_spirit_competition: Award;
|
|
94
94
|
readonly indy_international_wine_competition: Award;
|
|
95
|
+
readonly international_du_gamay: Award;
|
|
95
96
|
readonly international_taste_quality_institute: Award;
|
|
96
97
|
readonly international_wine_awards: Award;
|
|
97
98
|
readonly international_wine_challenge_china: Award;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"award.d.ts","sourceRoot":"","sources":["../../../src/validValues/award/award.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAE1E,UAAU,KAAM,SAAQ,oBAAoB;IAC1C,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAKD,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"award.d.ts","sourceRoot":"","sources":["../../../src/validValues/award/award.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAE1E,UAAU,KAAM,SAAQ,oBAAoB;IAC1C,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAKD,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAs1DL,CAAC;AAEX,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,SAAS,CAAC;AAE9C,eAAe,SAAS,CAAC"}
|
|
@@ -456,6 +456,11 @@ var allAwards = {
|
|
|
456
456
|
label: 'Indy International Wine Competition',
|
|
457
457
|
medals: ['gold', 'silver', 'bronze']
|
|
458
458
|
}),
|
|
459
|
+
international_du_gamay: award({
|
|
460
|
+
key: 'international_du_gamay',
|
|
461
|
+
label: 'International du Gamay',
|
|
462
|
+
medals: ['trophy', 'gold', 'silver']
|
|
463
|
+
}),
|
|
459
464
|
international_taste_quality_institute: award({
|
|
460
465
|
key: 'international_taste_quality_institute',
|
|
461
466
|
label: 'International Taste Quality Institute',
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@bottlebooks/valid-values",
|
|
3
3
|
"description": "The Bottlebooks lookup values, defined globally.",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "10.
|
|
5
|
+
"version": "10.39.0",
|
|
6
6
|
"type": "commonjs",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@lingui/core": "3.14.0"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "cc648cac45e60df5b549a7b2c7eb9849a4cce773"
|
|
40
40
|
}
|
|
@@ -719,6 +719,11 @@ const allAwards = {
|
|
|
719
719
|
label: 'Indy International Wine Competition',
|
|
720
720
|
medals: ['gold', 'silver', 'bronze'],
|
|
721
721
|
}),
|
|
722
|
+
international_du_gamay: award({
|
|
723
|
+
key: 'international_du_gamay',
|
|
724
|
+
label: 'International du Gamay',
|
|
725
|
+
medals: ['trophy', 'gold', 'silver'],
|
|
726
|
+
}),
|
|
722
727
|
international_taste_quality_institute: award({
|
|
723
728
|
key: 'international_taste_quality_institute',
|
|
724
729
|
label: 'International Taste Quality Institute',
|