@larsgw/formica 0.5.2 → 0.6.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
@@ -1,3 +1,12 @@
1
+ # [0.6.0](https://github.com/identification-resources/formica/compare/v0.5.2...v0.6.0) (2024-01-05)
2
+
3
+
4
+ ### Features
5
+
6
+ * **catalog:** add entry type, key type values ([ed6e4fb](https://github.com/identification-resources/formica/commit/ed6e4fb545e09cddb5d466f602bffb8a8483f043))
7
+
8
+
9
+
1
10
  ## [0.5.2](https://github.com/identification-resources/formica/compare/v0.5.1...v0.5.2) (2023-11-27)
2
11
 
3
12
 
@@ -7,8 +7,8 @@ var spdxLicenseList = require("spdx-license-list");
7
7
  var ietfTagListFactory = require("ietf-language-tag-regex");
8
8
  var ietfTagList = ietfTagListFactory();
9
9
  exports.FORMATS = {
10
- ENTRY_TYPE: ['print', 'online', 'cd'],
11
- KEY_TYPE: ['key', 'matrix', 'reference', 'gallery', 'checklist', 'supplement', 'collection'],
10
+ ENTRY_TYPE: ['print', 'online', 'cd', 'application'],
11
+ KEY_TYPE: ['key', 'matrix', 'reference', 'gallery', 'checklist', 'supplement', 'collection', 'algorithm'],
12
12
  COMPLETE: ['TRUE', 'FALSE'],
13
13
  ID: /^B\d+$/,
14
14
  EDTF_0: /^(\d{4}(-\d{2}(-\d{2}(T\d{2}:\d{2}:\d{2}(Z|[-+]\d{2}(:\d{2})?))?)?)?|\d{4}(-\d{2}(-\d{2})?)?\/(\d{4}(-\d{2}(-\d{2})?)?|\.\.))$/,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@larsgw/formica",
3
- "version": "0.5.2",
3
+ "version": "0.6.0",
4
4
  "description": "SDK and tools for data from the Library of Identification Resources",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -6,8 +6,8 @@ import ietfTagListFactory = require('ietf-language-tag-regex')
6
6
  const ietfTagList = ietfTagListFactory()
7
7
 
8
8
  export const FORMATS = {
9
- ENTRY_TYPE: ['print', 'online', 'cd'],
10
- KEY_TYPE: ['key', 'matrix', 'reference', 'gallery', 'checklist', 'supplement', 'collection'],
9
+ ENTRY_TYPE: ['print', 'online', 'cd', 'application'],
10
+ KEY_TYPE: ['key', 'matrix', 'reference', 'gallery', 'checklist', 'supplement', 'collection', 'algorithm'],
11
11
  COMPLETE: ['TRUE', 'FALSE'],
12
12
 
13
13
  ID: /^B\d+$/,