@bottlebooks/valid-values 10.64.0 → 10.65.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.
@@ -1,5 +1,10 @@
1
1
  import type { ValidValueDataDefinition, ValidValueDefinition, ValidValueMetadataDefinition } from '../types/ValidValueDefinition';
2
- export interface Certification extends ValidValueDefinition, ValidValueDataDefinition, ValidValueMetadataDefinition {
2
+ import type { CountryKey } from '../country/country';
3
+ export interface Certification extends ValidValueDefinition, Omit<ValidValueDataDefinition, 'data'>, ValidValueMetadataDefinition {
4
+ data?: {
5
+ logo?: string;
6
+ logos?: Partial<Record<CountryKey | string, string>>;
7
+ };
3
8
  isDeprecated?: boolean;
4
9
  }
5
10
  declare const allCertifications: {
@@ -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,EAC5B,wBAAwB,EACxB,4BAA4B;IAE5B,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAYD,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+Pb,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,MAAM,OAAO,iBAAiB,CAAC;AAE9D,eAAe,iBAAiB,CAAC"}
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;AACvC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAErD,MAAM,WAAW,aACf,SAAQ,oBAAoB,EAC5B,IAAI,CAAC,wBAAwB,EAAE,MAAM,CAAC,EACtC,4BAA4B;IAC5B,IAAI,CAAC,EAAE;QACL,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,KAAK,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,UAAU,GAAG,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;KACtD,CAAC;IAEF,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAYD,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwQb,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,MAAM,OAAO,iBAAiB,CAAC;AAE9D,eAAe,iBAAiB,CAAC"}
@@ -261,7 +261,16 @@ var allCertifications = {
261
261
  key: 'b_corp_2026',
262
262
  label: 'B Corp',
263
263
  data: {
264
- logo: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/b_corp_2026.svg'
264
+ logo: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/b_corp_2026.svg',
265
+ logos: {
266
+ en: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/b_corp_2026.svg',
267
+ pt: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/b_corp_2026_pt.svg',
268
+ es: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/b_corp_2026_es.svg',
269
+ de: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/b_corp_2026_de.svg',
270
+ it: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/b_corp_2026_it.svg',
271
+ fr: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/b_corp_2026_fr.svg',
272
+ ca: 'https://cdn.bottlebooks.me/bottlebooks/img/logos/b_corp_2026_ca.svg'
273
+ }
265
274
  }
266
275
  }),
267
276
  certifiedOrganicEU: internationalCertification({
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.64.0",
5
+ "version": "10.65.0",
6
6
  "type": "commonjs",
7
7
  "files": [
8
8
  "dist"
@@ -40,5 +40,5 @@
40
40
  "dependencies": {
41
41
  "@lingui/core": "3.14.0"
42
42
  },
43
- "gitHead": "6c197107737367c16f8073b8d75ee8b372d90d93"
43
+ "gitHead": "b024dc66757794d519a705f5f1a7d33dfa5c454c"
44
44
  }