@larsgw/formica 0.4.0 → 0.4.1

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.4.1](https://github.com/identification-resources/formica/compare/v0.4.0...v0.4.1) (2023-09-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **catalog:** fix typo in duplicate_of schema ([fbb6333](https://github.com/identification-resources/formica/commit/fbb6333d10dd6f5846856ea8de81d941ce539d21))
7
+
8
+
9
+
1
10
  # [0.4.0](https://github.com/identification-resources/formica/compare/v0.3.1...v0.4.0) (2023-09-07)
2
11
 
3
12
 
@@ -52,7 +52,7 @@ var Work = /** @class */ (function (_super) {
52
52
  listed_in: { required: false, multiple: true, format: value_1.FORMATS.ID },
53
53
  part_of: { required: false, multiple: true, format: value_1.FORMATS.ID },
54
54
  version_of: { required: false, multiple: true, format: value_1.FORMATS.ID },
55
- // duplicate_of: { required: false, multiple: false, format: FORMATS.ID }
55
+ duplicate_of: { required: false, multiple: false, format: value_1.FORMATS.ID }
56
56
  }) || this;
57
57
  }
58
58
  Work.prototype.deriveFields = function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@larsgw/formica",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
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",
@@ -34,7 +34,7 @@ export class Work extends Entity {
34
34
  listed_in: { required: false, multiple: true, format: FORMATS.ID },
35
35
  part_of: { required: false, multiple: true, format: FORMATS.ID },
36
36
  version_of: { required: false, multiple: true, format: FORMATS.ID },
37
- // duplicate_of: { required: false, multiple: false, format: FORMATS.ID }
37
+ duplicate_of: { required: false, multiple: false, format: FORMATS.ID }
38
38
  })
39
39
  }
40
40