Skip to content

Commit

Permalink
fix ManyRelationship imports
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Aug 18, 2022
1 parent 8dd620e commit bf688fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/model/addon/-private/references/has-many.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { resolve } from 'rsvp';

import { ManyArray } from 'ember-data/-private';

import type { ManyRelationship } from '@ember-data/record-data/-private';
import type { Graph } from '@ember-data/record-data/-private/graph';
import type ManyRelationship from '@ember-data/record-data/-private/relationships/state/has-many';
import type Store from '@ember-data/store';
import { recordIdentifierFor } from '@ember-data/store';
import { assertPolymorphicType } from '@ember-data/store/-debug';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { assert } from '@ember/debug';
import { assertPolymorphicType } from '@ember-data/store/-debug';
import type { StableRecordIdentifier } from '@ember-data/types/q/identifier';

import type { ManyRelationship } from '../..';
import type ManyRelationship from '../../relationships/state/has-many';
import type { ReplaceRelatedRecordsOperation } from '../-operations';
import { isBelongsTo, isHasMany, isNew, notifyChange } from '../-utils';
import type { Graph } from '../index';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';

import Model, { attr, hasMany } from '@ember-data/model';
import { graphFor, ManyRelationship } from '@ember-data/record-data/-private';
import { graphFor } from '@ember-data/record-data/-private';
import type ManyRelationship from '@ember-data/record-data/-private/relationships/state/has-many';
import Store from '@ember-data/store';

module('Integration | Graph | Operations', function (hooks) {
Expand Down

0 comments on commit bf688fc

Please sign in to comment.