@bottlebooks/valid-values 6.0.2 → 6.0.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/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
+ ## [6.0.3](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@6.0.2...@bottlebooks/valid-values@6.0.3) (2023-03-14)
7
+
8
+ ### Bug Fixes
9
+
10
+ - generic recycling logo url ([36d23f1](https://github.com/bottlebooks/bottlebooks/commit/36d23f16b58a40026e415d7c898d704bbbd89504))
11
+
6
12
  ## [6.0.2](https://github.com/bottlebooks/bottlebooks/compare/@bottlebooks/valid-values@6.0.1...@bottlebooks/valid-values@6.0.2) (2023-03-14)
7
13
 
8
14
  ### Bug Fixes
@@ -1 +1 @@
1
- {"version":3,"file":"packagingMaterialType.d.ts","sourceRoot":"","sources":["../../../src/validValues/packagingMaterialType/packagingMaterialType.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,oBAAoB,EACpB,wBAAwB,EACzB,MAAM,+BAA+B,CAAC;AAGvC,QAAA,MAAM,UAAU,+FAQN,CAAC;AACX,oBAAY,gBAAgB,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AAGzD,UAAU,qBACR,SAAQ,oBAAoB,EAC1B,wBAAwB;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,gBAAgB,CAAC;CAC5B;AAKD,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6kBrB,CAAC;AAEX,oBAAY,wBAAwB,GAAG,MAAM,OAAO,yBAAyB,CAAC;AAE9E,eAAe,yBAAyB,CAAC"}
1
+ {"version":3,"file":"packagingMaterialType.d.ts","sourceRoot":"","sources":["../../../src/validValues/packagingMaterialType/packagingMaterialType.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,oBAAoB,EACpB,wBAAwB,EACzB,MAAM,+BAA+B,CAAC;AAGvC,QAAA,MAAM,UAAU,+FAQN,CAAC;AACX,oBAAY,gBAAgB,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AAEzD,UAAU,qBACR,SAAQ,oBAAoB,EAC1B,wBAAwB;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,gBAAgB,CAAC;CAC5B;AAKD,QAAA,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6kBrB,CAAC;AAEX,oBAAY,wBAAwB,GAAG,MAAM,OAAO,yBAAyB,CAAC;AAE9E,eAAe,yBAAyB,CAAC"}
@@ -7,9 +7,8 @@ exports["default"] = void 0;
7
7
 
8
8
  var _core = require("@lingui/core");
9
9
 
10
- var genericRecyclingLogo = 'https://s3.amazonaws.com/cdn.bottlebooks.me/bottlebooks/img/logos/packagingMaterialType/00_Generic_Recycling.svg';
10
+ var genericRecyclingLogo = 'https://cdn.bottlebooks.me/bottlebooks/img/logos/packagingMaterialType/00_Generic_Recycling.svg';
11
11
  var categories = ['plastics', 'batteries', 'paper', 'metals', 'glass', 'composites', 'biodegradable'];
12
- 'https://cdn.bottlebooks.me/bottlebooks/img/logos/packagingMaterialType/00_Generic_Recycling.svg';
13
12
 
14
13
  /** Makes sure errors are displayed where the error is introduced. */
15
14
  var packagingMaterialType = function packagingMaterialType(value) {
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": "6.0.2",
5
+ "version": "6.0.3",
6
6
  "type": "commonjs",
7
7
  "main": "dist/index.js",
8
8
  "scripts": {
@@ -32,5 +32,5 @@
32
32
  "@babel/core": "^7.15.5",
33
33
  "@lingui/core": "3.14.0"
34
34
  },
35
- "gitHead": "38a70620f42362b35f377c23abc69e2d71f4c37d"
35
+ "gitHead": "b15ab587f4d11753492faf638815d5f5e9329495"
36
36
  }
@@ -4,7 +4,7 @@ import type {
4
4
  ValidValueDataDefinition,
5
5
  } from '../types/ValidValueDefinition';
6
6
  const genericRecyclingLogo =
7
- 'https://s3.amazonaws.com/cdn.bottlebooks.me/bottlebooks/img/logos/packagingMaterialType/00_Generic_Recycling.svg';
7
+ 'https://cdn.bottlebooks.me/bottlebooks/img/logos/packagingMaterialType/00_Generic_Recycling.svg';
8
8
  const categories = [
9
9
  'plastics',
10
10
  'batteries',
@@ -15,7 +15,6 @@ const categories = [
15
15
  'biodegradable',
16
16
  ] as const;
17
17
  export type MaterialCategory = typeof categories[number];
18
- 'https://cdn.bottlebooks.me/bottlebooks/img/logos/packagingMaterialType/00_Generic_Recycling.svg';
19
18
 
20
19
  interface PackagingMaterialType
21
20
  extends ValidValueDefinition,