@bottlebooks/valid-values 7.9.0 → 7.11.0-alpha.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,22 @@
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
+ # [7.11.0-alpha.0](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@7.10.0...@bottlebooks/valid-values@7.11.0-alpha.0) (2023-10-19)
7
+
8
+ ### Features
9
+
10
+ - Add French competition "Concours des Vins Elle à Table" ([8bcccc6](https://github.com/bottlebooks/bottlebooks/commit/8bcccc6d3050961e548936519cc923948995ce7e))
11
+
12
+ # [7.10.0](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@7.9.0...@bottlebooks/valid-values@7.10.0) (2023-10-18)
13
+
14
+ ### Bug Fixes
15
+
16
+ - all the awards should allow only >= 90 points ([d6e9c5f](https://github.com/bottlebooks/bottlebooks/commit/d6e9c5f4f0248e3b26b7ff8c9dddd291a9de2181))
17
+
18
+ ### Features
19
+
20
+ - add awards to valid values package ([1170132](https://github.com/bottlebooks/bottlebooks/commit/1170132a0e6d17737c17047292a855cb77d6dfeb))
21
+
6
22
  # [7.9.0](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@7.8.0...@bottlebooks/valid-values@7.9.0) (2023-10-18)
7
23
 
8
24
  ### Features
@@ -67,6 +67,7 @@ declare const allAwards: {
67
67
  readonly fr_concoursgeneralagricole: Award;
68
68
  readonly fr_concoursintlyon: Award;
69
69
  readonly fr_concvignindep: Award;
70
+ readonly fr_trophees_vins_elle: Award;
70
71
  readonly fr_effervescents_du_monde: Award;
71
72
  readonly fr_gaultmillau_p: Award;
72
73
  readonly fr_genagcompconcgenagri: Award;
@@ -104,6 +105,7 @@ declare const allAwards: {
104
105
  readonly it_viniveronelli_p: Award;
105
106
  readonly iwc: Award;
106
107
  readonly iwsc: Award;
108
+ readonly los_angeles_invitational_wine_and_spirits_challenge: Award;
107
109
  readonly jancisrobinson_p: Award;
108
110
  readonly japan_wine_challenge: Award;
109
111
  readonly jebdunnuck: Award;
@@ -145,6 +147,7 @@ declare const allAwards: {
145
147
  readonly peoples_choice_wine_awards: Award;
146
148
  readonly perth_royal_wine_show: Award;
147
149
  readonly pinotfile: Award;
150
+ readonly press_democrat_north_coast_winechallenge: Award;
148
151
  readonly pt_fernando_melo: Award;
149
152
  readonly pt_grandes_escolhas: Award;
150
153
  readonly pt_revista_de_vinhos: Award;
@@ -162,6 +165,7 @@ declare const allAwards: {
162
165
  readonly stephen_tanzer_p: Award;
163
166
  readonly stuttgart_international_wine_competition: Award;
164
167
  readonly sud_de_france_top_100: Award;
168
+ readonly sunset_international_wine_competition: Award;
165
169
  readonly swa: Award;
166
170
  readonly sydney_international_wine_competition: Award;
167
171
  readonly tasters_guild_international_wine_judging: 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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyxDL,CAAC;AAEX,oBAAY,QAAQ,GAAG,MAAM,OAAO,SAAS,CAAC;AAE9C,eAAe,SAAS,CAAC"}
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAi1DL,CAAC;AAEX,oBAAY,QAAQ,GAAG,MAAM,OAAO,SAAS,CAAC;AAE9C,eAAe,SAAS,CAAC"}
@@ -331,6 +331,11 @@ var allAwards = {
331
331
  label: 'Concours des Vignerons Indépendants',
332
332
  medals: ['gold', 'silver', 'bronze']
333
333
  }),
334
+ fr_trophees_vins_elle: award({
335
+ key: 'fr_trophees_vins_elle',
336
+ label: 'Concours des Vins ELLE à table',
337
+ medals: ['gold', 'silver']
338
+ }),
334
339
  fr_effervescents_du_monde: award({
335
340
  key: 'fr_effervescents_du_monde',
336
341
  label: 'Effervescents du Monde',
@@ -516,6 +521,11 @@ var allAwards = {
516
521
  label: 'International Wine & Spirits Competition (IWSC)',
517
522
  medals: ['gold_outstanding', 'gold', 'silver', 'bronze']
518
523
  }),
524
+ los_angeles_invitational_wine_and_spirits_challenge: award({
525
+ key: 'los_angeles_invitational_wine_and_spirits_challenge',
526
+ label: 'Los Angeles Invitational Wine & Spirits Challenge',
527
+ medals: ['p_90', 'p_91', 'p_92', 'p_93', 'p_94', 'p_95', 'p_96', 'p_97', 'p_98', 'p_99', 'p_100']
528
+ }),
519
529
  jancisrobinson_p: award({
520
530
  key: 'jancisrobinson_p',
521
531
  label: 'Jancis Robinson',
@@ -721,6 +731,11 @@ var allAwards = {
721
731
  label: 'Pinotfile',
722
732
  medals: ['extraordinary', 'outstanding', 'very_good', 'good', 'decent']
723
733
  }),
734
+ press_democrat_north_coast_winechallenge: award({
735
+ key: 'press_democrat_north_coast_winechallenge',
736
+ label: 'Press Democrat North Coast Wine Challenge',
737
+ medals: ['p_90', 'p_91', 'p_92', 'p_93', 'p_94', 'p_95', 'p_96', 'p_97', 'p_98', 'p_99', 'p_100']
738
+ }),
724
739
  pt_fernando_melo: award({
725
740
  key: 'pt_fernando_melo',
726
741
  label: 'Fernando Melo',
@@ -806,6 +821,11 @@ var allAwards = {
806
821
  label: 'Sud de France Top 100',
807
822
  medals: ['gold', 'best_red', 'best_white', 'best_rose', 'best_sparkling', 'best_sweet', 'coup_de_coeur']
808
823
  }),
824
+ sunset_international_wine_competition: award({
825
+ key: 'sunset_international_wine_competition',
826
+ label: 'Sunset International Wine Competition',
827
+ medals: ['p_90', 'p_91', 'p_92', 'p_93', 'p_94', 'p_95', 'p_96', 'p_97', 'p_98', 'p_99', 'p_100']
828
+ }),
809
829
  swa: award({
810
830
  key: 'swa',
811
831
  label: 'Sommelier Wine Awards',
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": "7.9.0",
5
+ "version": "7.11.0-alpha.0",
6
6
  "type": "commonjs",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
@@ -34,5 +34,5 @@
34
34
  "dependencies": {
35
35
  "@lingui/core": "3.14.0"
36
36
  },
37
- "gitHead": "a37778cd4271ddb00bfa17dd1a07e34b4e8340d2"
37
+ "gitHead": "8fd25bf971c540b708503db5e2e3cbbf6a93703b"
38
38
  }
@@ -522,6 +522,11 @@ const allAwards = {
522
522
  label: 'Concours des Vignerons Indépendants',
523
523
  medals: ['gold', 'silver', 'bronze'],
524
524
  }),
525
+ fr_trophees_vins_elle: award({
526
+ key: 'fr_trophees_vins_elle',
527
+ label: 'Concours des Vins ELLE à table',
528
+ medals: ['gold', 'silver'],
529
+ }),
525
530
  fr_effervescents_du_monde: award({
526
531
  key: 'fr_effervescents_du_monde',
527
532
  label: 'Effervescents du Monde',
@@ -800,6 +805,23 @@ const allAwards = {
800
805
  label: 'International Wine & Spirits Competition (IWSC)',
801
806
  medals: ['gold_outstanding', 'gold', 'silver', 'bronze'],
802
807
  }),
808
+ los_angeles_invitational_wine_and_spirits_challenge: award({
809
+ key: 'los_angeles_invitational_wine_and_spirits_challenge',
810
+ label: 'Los Angeles Invitational Wine & Spirits Challenge',
811
+ medals: [
812
+ 'p_90',
813
+ 'p_91',
814
+ 'p_92',
815
+ 'p_93',
816
+ 'p_94',
817
+ 'p_95',
818
+ 'p_96',
819
+ 'p_97',
820
+ 'p_98',
821
+ 'p_99',
822
+ 'p_100',
823
+ ],
824
+ }),
803
825
  jancisrobinson_p: award({
804
826
  key: 'jancisrobinson_p',
805
827
  label: 'Jancis Robinson',
@@ -1186,6 +1208,23 @@ const allAwards = {
1186
1208
  label: 'Pinotfile',
1187
1209
  medals: ['extraordinary', 'outstanding', 'very_good', 'good', 'decent'],
1188
1210
  }),
1211
+ press_democrat_north_coast_winechallenge: award({
1212
+ key: 'press_democrat_north_coast_winechallenge',
1213
+ label: 'Press Democrat North Coast Wine Challenge',
1214
+ medals: [
1215
+ 'p_90',
1216
+ 'p_91',
1217
+ 'p_92',
1218
+ 'p_93',
1219
+ 'p_94',
1220
+ 'p_95',
1221
+ 'p_96',
1222
+ 'p_97',
1223
+ 'p_98',
1224
+ 'p_99',
1225
+ 'p_100',
1226
+ ],
1227
+ }),
1189
1228
  pt_fernando_melo: award({
1190
1229
  key: 'pt_fernando_melo',
1191
1230
  label: 'Fernando Melo',
@@ -1341,6 +1380,23 @@ const allAwards = {
1341
1380
  'coup_de_coeur',
1342
1381
  ],
1343
1382
  }),
1383
+ sunset_international_wine_competition: award({
1384
+ key: 'sunset_international_wine_competition',
1385
+ label: 'Sunset International Wine Competition',
1386
+ medals: [
1387
+ 'p_90',
1388
+ 'p_91',
1389
+ 'p_92',
1390
+ 'p_93',
1391
+ 'p_94',
1392
+ 'p_95',
1393
+ 'p_96',
1394
+ 'p_97',
1395
+ 'p_98',
1396
+ 'p_99',
1397
+ 'p_100',
1398
+ ],
1399
+ }),
1344
1400
  swa: award({
1345
1401
  key: 'swa',
1346
1402
  label: 'Sommelier Wine Awards',