@bottlebooks/valid-values 10.31.1 → 10.31.3
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/.env.development +2 -0
- package/CHANGELOG.md +8 -0
- package/dist/validValues/certification/certification.d.ts +1 -0
- package/dist/validValues/certification/certification.d.ts.map +1 -1
- package/dist/validValues/certification/certification.js +10 -0
- package/dist/validValues/country/country.d.ts +3 -3
- package/dist/validValues/country/country.d.ts.map +1 -1
- package/dist/validValues/country/country.js +1 -1
- package/package.json +2 -2
- package/scripts/out/ingredients_da_label.txt +56 -0
- package/scripts/out/ingredients_en_key.txt +56 -0
- package/scripts/out/ingredients_en_label.txt +56 -0
- package/scripts/out/ingredients_es_label.txt +56 -0
- package/src/validValues/certification/certification.ts +10 -0
- package/src/validValues/country/country.ts +20 -4
package/.env.development
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.31.3](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.31.2...@bottlebooks/valid-values@10.31.3) (2024-08-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @bottlebooks/valid-values
|
|
9
|
+
|
|
10
|
+
## [10.31.2](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.31.1...@bottlebooks/valid-values@10.31.2) (2024-08-14)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @bottlebooks/valid-values
|
|
13
|
+
|
|
6
14
|
## [10.31.1](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@10.31.0...@bottlebooks/valid-values@10.31.1) (2024-07-25)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @bottlebooks/valid-values
|
|
@@ -17,6 +17,7 @@ declare const allCertifications: {
|
|
|
17
17
|
readonly de_bioland: Certification;
|
|
18
18
|
readonly za_wwf_bwi_champion: Certification;
|
|
19
19
|
readonly us_newyork_lisw: Certification;
|
|
20
|
+
readonly us_newYorkSustainableWinegrowing: Certification;
|
|
20
21
|
readonly nz_swnz: Certification;
|
|
21
22
|
readonly gb_sustainable_wines: Certification;
|
|
22
23
|
readonly globalGap_cropsForProcessingStandard: Certification;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"certification.d.ts","sourceRoot":"","sources":["../../../src/validValues/certification/certification.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACpB,4BAA4B,EAC7B,MAAM,+BAA+B,CAAC;AAEvC,MAAM,WAAW,aACf,SAAQ,oBAAoB,EAC1B,wBAAwB,EACxB,4BAA4B;IAE9B,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAKD,QAAA,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"certification.d.ts","sourceRoot":"","sources":["../../../src/validValues/certification/certification.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,wBAAwB,EACxB,oBAAoB,EACpB,4BAA4B,EAC7B,MAAM,+BAA+B,CAAC;AAEvC,MAAM,WAAW,aACf,SAAQ,oBAAoB,EAC1B,wBAAwB,EACxB,4BAA4B;IAE9B,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAKD,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwTb,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,MAAM,OAAO,iBAAiB,CAAC;AAE9D,eAAe,iBAAiB,CAAC"}
|
|
@@ -151,6 +151,16 @@ var allCertifications = {
|
|
|
151
151
|
tags: ['internationalCertification']
|
|
152
152
|
}
|
|
153
153
|
}),
|
|
154
|
+
us_newYorkSustainableWinegrowing: certification({
|
|
155
|
+
key: 'us_newYorkSustainableWinegrowing',
|
|
156
|
+
label: 'New York Sustainable Winegrowing',
|
|
157
|
+
data: {
|
|
158
|
+
logo: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/us_newYorkSustainableWinegrowing.png'
|
|
159
|
+
},
|
|
160
|
+
metadata: {
|
|
161
|
+
tags: ['internationalCertification']
|
|
162
|
+
}
|
|
163
|
+
}),
|
|
154
164
|
nz_swnz: certification({
|
|
155
165
|
key: 'nz_swnz',
|
|
156
166
|
label: 'Sustainable Winegrowing New Zealand',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { RegionKey } from '../region/region';
|
|
2
|
-
import { ValidValueDefinition } from '../types/ValidValueDefinition';
|
|
3
|
-
import { MessageDescriptor } from '@lingui/core';
|
|
1
|
+
import type { RegionKey } from '../region/region';
|
|
2
|
+
import type { ValidValueDefinition } from '../types/ValidValueDefinition';
|
|
3
|
+
import type { MessageDescriptor } from '@lingui/core';
|
|
4
4
|
export interface Country extends ValidValueDefinition {
|
|
5
5
|
regions?: readonly RegionKey[];
|
|
6
6
|
label: MessageDescriptor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"country.d.ts","sourceRoot":"","sources":["../../../src/validValues/country/country.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"country.d.ts","sourceRoot":"","sources":["../../../src/validValues/country/country.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,+BAA+B,CAAC;AAC1E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,MAAM,WAAW,OAAQ,SAAQ,oBAAoB;IACnD,OAAO,CAAC,EAAE,SAAS,SAAS,EAAE,CAAC;IAE/B,KAAK,EAAE,iBAAiB,CAAC;CAC1B;AAKD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAorDR,CAAC;AAEX,MAAM,MAAM,UAAU,GAAG,MAAM,OAAO,YAAY,CAAC;AAEnD,eAAe,YAAY,CAAC"}
|
|
@@ -491,7 +491,7 @@ var allCountries = {
|
|
|
491
491
|
id: 'validValues.country.gb_eng',
|
|
492
492
|
message: 'England'
|
|
493
493
|
},
|
|
494
|
-
regions: []
|
|
494
|
+
regions: ['gb_kent', 'gb_norfolk', 'gb_suffolk', 'gb_somerset', 'gb_surrey', 'gb_sussex', 'gb_west_sussex', 'gb_east_Sussex', 'gb_hampshire', 'gb_cornwall', 'gb_devon', 'gb_dorset', 'gb_berkshire', 'gb_wiltshire', 'all_nonregional']
|
|
495
495
|
}),
|
|
496
496
|
gb_nir: country({
|
|
497
497
|
key: 'gb_nir',
|
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.31.
|
|
5
|
+
"version": "10.31.3",
|
|
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": "4bd8dceb30936f2b7f1f66e63769ffd79f879938"
|
|
40
40
|
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Ingredients DA
|
|
2
|
+
aleppofyrharpiks
|
|
3
|
+
ascorbinsyre
|
|
4
|
+
E 300
|
|
5
|
+
ascorbinsyre (E 300)
|
|
6
|
+
calciumsulfat
|
|
7
|
+
E 516
|
|
8
|
+
karamel
|
|
9
|
+
E 150
|
|
10
|
+
kuldioxid
|
|
11
|
+
E 290
|
|
12
|
+
carboxymethylcellulose
|
|
13
|
+
E 466
|
|
14
|
+
<0>mælkecasein</0>
|
|
15
|
+
citronsyre
|
|
16
|
+
E 330
|
|
17
|
+
koncentreret druemost
|
|
18
|
+
dimethyldicarbonat
|
|
19
|
+
E 242
|
|
20
|
+
<0>æg</0>
|
|
21
|
+
<0>ægalbumin</0>
|
|
22
|
+
<0>æglysozym</0>
|
|
23
|
+
E 1105 (<0>æg</0>)
|
|
24
|
+
<0>ægprodukt</0>
|
|
25
|
+
<0>ægprotein</0>
|
|
26
|
+
fumarsyre
|
|
27
|
+
druer
|
|
28
|
+
gummi arabicum
|
|
29
|
+
E 414
|
|
30
|
+
mælkesyre
|
|
31
|
+
E 270
|
|
32
|
+
æblesyre
|
|
33
|
+
E 296
|
|
34
|
+
metavinsyre
|
|
35
|
+
E 353
|
|
36
|
+
<0>mælk</0>
|
|
37
|
+
<0>mælkeprodukt</0>
|
|
38
|
+
<0>mælkeprotein</0>
|
|
39
|
+
kaliumbisulfit (<0>sulfitter</0>)
|
|
40
|
+
E 228 (<0>sulfitter</0>)
|
|
41
|
+
<0>kaliumbisulfit</0>
|
|
42
|
+
kaliumdisulfit (<0>sulfitter</0>)
|
|
43
|
+
E 224 (<0>sulfitter</0>)
|
|
44
|
+
<0>kaliumdisulfit</0>
|
|
45
|
+
kaliumpolyaspartat
|
|
46
|
+
E 456
|
|
47
|
+
kaliumsorbat
|
|
48
|
+
E 202
|
|
49
|
+
saccharose
|
|
50
|
+
sukker
|
|
51
|
+
<0>sulfitter</0>
|
|
52
|
+
<0>svovldioxid</0>
|
|
53
|
+
E 220 (<0>sulfitter</0>)
|
|
54
|
+
vinsyre
|
|
55
|
+
E 334
|
|
56
|
+
gærmannoproteiner
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Ingredients EN
|
|
2
|
+
aleppoPineResin
|
|
3
|
+
ascorbicAcid
|
|
4
|
+
ascorbicAcid_eCode
|
|
5
|
+
ascorbicAcidWithEcode
|
|
6
|
+
calciumSulphate
|
|
7
|
+
calciumSulphate_eCode
|
|
8
|
+
caramel
|
|
9
|
+
caramel_eCode
|
|
10
|
+
carbonDioxide
|
|
11
|
+
carbonDioxide_eCode
|
|
12
|
+
carboxymethylcellulose
|
|
13
|
+
carboxymethylcellulose_eCode
|
|
14
|
+
casein
|
|
15
|
+
citricAcid
|
|
16
|
+
citricAcid_eCode
|
|
17
|
+
concentratedGrapeMust
|
|
18
|
+
dimethyldicarbonate
|
|
19
|
+
dimethyldicarbonate_eCode
|
|
20
|
+
egg
|
|
21
|
+
eggAlbumin
|
|
22
|
+
eggLysozyme
|
|
23
|
+
eggLysozyme_eCode
|
|
24
|
+
eggProduct
|
|
25
|
+
eggProtein
|
|
26
|
+
fumaricAcid
|
|
27
|
+
grape
|
|
28
|
+
gumArabic
|
|
29
|
+
gumArabic_eCode
|
|
30
|
+
lacticAcid
|
|
31
|
+
lacticAcid_eCode
|
|
32
|
+
malicAcid
|
|
33
|
+
malicAcid_eCode
|
|
34
|
+
metatartaricAcid
|
|
35
|
+
metatartaricAcid_eCode
|
|
36
|
+
milk
|
|
37
|
+
milkProducts
|
|
38
|
+
milkProtein
|
|
39
|
+
potassiumBisulphite
|
|
40
|
+
potassiumBisulphite_eCode
|
|
41
|
+
potassiumBisulphiteBold
|
|
42
|
+
potassiumMetabisulphite
|
|
43
|
+
potassiumMetabisulphite_eCode
|
|
44
|
+
potassiumMetabisulphiteBold
|
|
45
|
+
potassiumPolyaspartate
|
|
46
|
+
potassiumPolyaspartate_eCode
|
|
47
|
+
potassiumSorbate
|
|
48
|
+
potassiumSorbate_eCode
|
|
49
|
+
sucrose
|
|
50
|
+
sugar
|
|
51
|
+
sulfites
|
|
52
|
+
sulphurDioxide
|
|
53
|
+
sulphurDioxide_eCode
|
|
54
|
+
tartaricAcid
|
|
55
|
+
tartaricAcid_eCode
|
|
56
|
+
yeastMannoproteins
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Ingredients EN
|
|
2
|
+
aleppo pine resin
|
|
3
|
+
ascorbic acid
|
|
4
|
+
E 300
|
|
5
|
+
ascorbic acid (E 300)
|
|
6
|
+
calcium sulphate
|
|
7
|
+
E 516
|
|
8
|
+
caramel
|
|
9
|
+
E 150
|
|
10
|
+
carbon dioxide
|
|
11
|
+
E 290
|
|
12
|
+
carboxymethylcellulose
|
|
13
|
+
E 466
|
|
14
|
+
<0>milk</0> casein
|
|
15
|
+
citric acid
|
|
16
|
+
E 330
|
|
17
|
+
concentrated grape must
|
|
18
|
+
dimethyldicarbonate
|
|
19
|
+
E 242
|
|
20
|
+
<0>egg</0>
|
|
21
|
+
<0>egg</0> albumin
|
|
22
|
+
<0>egg</0> lysozyme
|
|
23
|
+
E 1105 (<0>egg</0>)
|
|
24
|
+
<0>egg</0> product
|
|
25
|
+
<0>egg</0> protein
|
|
26
|
+
fumaric acid
|
|
27
|
+
grapes
|
|
28
|
+
gum arabic
|
|
29
|
+
E 414
|
|
30
|
+
lactic acid
|
|
31
|
+
E 270
|
|
32
|
+
malic acid
|
|
33
|
+
E 296
|
|
34
|
+
metatartaric acid
|
|
35
|
+
E 353
|
|
36
|
+
<0>milk</0>
|
|
37
|
+
<0>milk</0> products
|
|
38
|
+
<0>milk</0> protein
|
|
39
|
+
potassium bisulphite (<0>sulfites</0>)
|
|
40
|
+
E 228 (<0>sulphites</0>)
|
|
41
|
+
<0>potassium bisulphite</0>
|
|
42
|
+
potassium metabisulphite (<0>sulfites</0>)
|
|
43
|
+
E 224 (<0>sulphites</0>)
|
|
44
|
+
<0>potassium metabisulphite</0>
|
|
45
|
+
potassium polyaspartate
|
|
46
|
+
E 456
|
|
47
|
+
potassium sorbate
|
|
48
|
+
E 202
|
|
49
|
+
sucrose
|
|
50
|
+
sugar
|
|
51
|
+
<0>sulphites</0>
|
|
52
|
+
<0>sulphur dioxide</0>
|
|
53
|
+
E 220 (<0>sulphites</0>)
|
|
54
|
+
tartaric acid
|
|
55
|
+
E 334
|
|
56
|
+
yeast mannoproteins
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
Ingredients ES
|
|
2
|
+
resina de pino carrasco
|
|
3
|
+
ácido ascórbico
|
|
4
|
+
E 300
|
|
5
|
+
ácido ascórbico (E 300)
|
|
6
|
+
sulfato cálcico
|
|
7
|
+
E 516
|
|
8
|
+
caramelo
|
|
9
|
+
E 150
|
|
10
|
+
dióxido de carbono
|
|
11
|
+
E 290
|
|
12
|
+
carboximetilcelulosa
|
|
13
|
+
E 466
|
|
14
|
+
caseína de <0>leche</0>
|
|
15
|
+
ácido cítrico
|
|
16
|
+
E 330
|
|
17
|
+
mosto de uva concentrado
|
|
18
|
+
dicarbonato de dimetilo
|
|
19
|
+
E 242
|
|
20
|
+
<0>huevo</0>
|
|
21
|
+
<0>ovoalbúmina</0>
|
|
22
|
+
lisozima de <0>huevo</0>
|
|
23
|
+
E 1105 (<0>huevo</0>)
|
|
24
|
+
<0>ovoproducto</0>
|
|
25
|
+
<0>proteína de huevo</0>
|
|
26
|
+
ácido fumárico
|
|
27
|
+
uva
|
|
28
|
+
goma arábiga
|
|
29
|
+
E 414
|
|
30
|
+
ácido láctico
|
|
31
|
+
E 270
|
|
32
|
+
ácido málico
|
|
33
|
+
E 296
|
|
34
|
+
ácido metatartárico
|
|
35
|
+
E 353
|
|
36
|
+
<0>leche</0>
|
|
37
|
+
productos <0>lácteos</0>
|
|
38
|
+
proteína de <0>leche</0>
|
|
39
|
+
bisulfito de potasio (<0>sulfitos</0>)
|
|
40
|
+
E 228 (<0>sulfitos</0>)
|
|
41
|
+
<0>bisulfito de potasio</0>
|
|
42
|
+
metabisulfito de potasio (<0>sulfitos</0>)
|
|
43
|
+
E 224 (<0>sulfitos</0>)
|
|
44
|
+
<0>metabisulfito de potasio</0>
|
|
45
|
+
poliaspartato de potasio
|
|
46
|
+
E 456
|
|
47
|
+
sorbato de potasio
|
|
48
|
+
E 202
|
|
49
|
+
sacarosa
|
|
50
|
+
azúcar
|
|
51
|
+
<0>sulfitos</0>
|
|
52
|
+
<0>dióxido de azufre</0>
|
|
53
|
+
E 220 (<0>sulfitos</0>)
|
|
54
|
+
ácido tartárico
|
|
55
|
+
E 334
|
|
56
|
+
manoproteínas de levaduras
|
|
@@ -156,6 +156,16 @@ const allCertifications = {
|
|
|
156
156
|
tags: ['internationalCertification'],
|
|
157
157
|
},
|
|
158
158
|
}),
|
|
159
|
+
us_newYorkSustainableWinegrowing: certification({
|
|
160
|
+
key: 'us_newYorkSustainableWinegrowing',
|
|
161
|
+
label: 'New York Sustainable Winegrowing',
|
|
162
|
+
data: {
|
|
163
|
+
logo: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/us_newYorkSustainableWinegrowing.png',
|
|
164
|
+
},
|
|
165
|
+
metadata: {
|
|
166
|
+
tags: ['internationalCertification'],
|
|
167
|
+
},
|
|
168
|
+
}),
|
|
159
169
|
nz_swnz: certification({
|
|
160
170
|
key: 'nz_swnz',
|
|
161
171
|
label: 'Sustainable Winegrowing New Zealand',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineMessage } from '@lingui/macro';
|
|
2
|
-
import { RegionKey } from '../region/region';
|
|
3
|
-
import { ValidValueDefinition } from '../types/ValidValueDefinition';
|
|
4
|
-
import { MessageDescriptor } from '@lingui/core';
|
|
2
|
+
import type { RegionKey } from '../region/region';
|
|
3
|
+
import type { ValidValueDefinition } from '../types/ValidValueDefinition';
|
|
4
|
+
import type { MessageDescriptor } from '@lingui/core';
|
|
5
5
|
|
|
6
6
|
export interface Country extends ValidValueDefinition {
|
|
7
7
|
regions?: readonly RegionKey[];
|
|
@@ -667,7 +667,23 @@ const allCountries = {
|
|
|
667
667
|
id: 'validValues.country.gb_eng',
|
|
668
668
|
message: 'England',
|
|
669
669
|
}),
|
|
670
|
-
regions: [
|
|
670
|
+
regions: [
|
|
671
|
+
'gb_kent',
|
|
672
|
+
'gb_norfolk',
|
|
673
|
+
'gb_suffolk',
|
|
674
|
+
'gb_somerset',
|
|
675
|
+
'gb_surrey',
|
|
676
|
+
'gb_sussex',
|
|
677
|
+
'gb_west_sussex',
|
|
678
|
+
'gb_east_Sussex',
|
|
679
|
+
'gb_hampshire',
|
|
680
|
+
'gb_cornwall',
|
|
681
|
+
'gb_devon',
|
|
682
|
+
'gb_dorset',
|
|
683
|
+
'gb_berkshire',
|
|
684
|
+
'gb_wiltshire',
|
|
685
|
+
'all_nonregional',
|
|
686
|
+
],
|
|
671
687
|
}),
|
|
672
688
|
gb_nir: country({
|
|
673
689
|
key: 'gb_nir',
|