@ember-data/model 4.12.2 → 4.12.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/addon/-private.js CHANGED
@@ -1,5 +1,5 @@
1
- import { M as Model } from "./has-many-26d79228";
2
- export { E as Errors, L as LEGACY_SUPPORT, R as ManyArray, P as PromiseBelongsTo, c as PromiseManyArray, a as attr, b as belongsTo, h as hasMany } from "./has-many-26d79228";
1
+ import { M as Model } from "./has-many-c1bfdebf";
2
+ export { E as Errors, L as LEGACY_SUPPORT, R as ManyArray, P as PromiseBelongsTo, c as PromiseManyArray, a as attr, b as belongsTo, h as hasMany } from "./has-many-c1bfdebf";
3
3
  import { getOwner } from '@ember/application';
4
4
 
5
5
  /*
@@ -911,6 +911,9 @@ class RelatedCollection extends RecordArray {
911
911
  this.push(record);
912
912
  return record;
913
913
  }
914
+ destroy() {
915
+ super.destroy(false);
916
+ }
914
917
  }
915
918
  RelatedCollection.prototype.isAsync = false;
916
919
  RelatedCollection.prototype.isPolymorphic = false;