ember-data-model-fragments 6.0.3 → 6.0.4

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
@@ -12,6 +12,15 @@
12
12
 
13
13
 
14
14
 
15
+
16
+ ## v6.0.4 (2023-09-01)
17
+
18
+ #### :bug: Bug Fix
19
+ * [#479](https://github.com/adopted-ember-addons/ember-data-model-fragments/pull/479) Add `copy` to type declarations ([@charlesfries](https://github.com/charlesfries))
20
+
21
+ #### Committers: 1
22
+ - Charles Fries ([@charlesfries](https://github.com/charlesfries))
23
+
15
24
  ## v6.0.3 (2023-07-20)
16
25
 
17
26
  #### :bug: Bug Fix
package/fragment.d.ts CHANGED
@@ -2,4 +2,5 @@ import Model from '@ember-data/model';
2
2
 
3
3
  export default class Fragment extends Model {
4
4
  _isFragment: true;
5
+ copy: () => this;
5
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-data-model-fragments",
3
- "version": "6.0.3",
3
+ "version": "6.0.4",
4
4
  "description": "Ember Data addon to support nested JSON documents",
5
5
  "keywords": [
6
6
  "ember-addon",