Skip to content

Commit cc855d4

Browse files
committed
fix: sort imports
1 parent cecb05b commit cc855d4

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

warp-drive-packages/core/src/store/-private/caches/instance-cache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { ReactiveDocument } from '../../../reactive/-private/document.ts';
88
import { _CHECKOUT, ReactiveResource } from '../../../reactive/-private/record.ts';
99
import { getOrSetGlobal } from '../../../types/-private.ts';
1010
import type { Cache } from '../../../types/cache.ts';
11-
import type { ResourceKey, RequestKey } from '../../../types/identifier.ts';
11+
import type { RequestKey, ResourceKey } from '../../../types/identifier.ts';
1212
import type { TypedRecordInstance, TypeFromInstance, TypeFromInstanceOrString } from '../../../types/record.ts';
1313
import type { ResourceSchema } from '../../../types/schema/fields.ts';
1414
import type { OpaqueRecordInstance } from '../../-types/q/record-instance.ts';

warp-drive-packages/core/src/store/-private/managers/cache-capabilities-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ENABLE_LEGACY_SCHEMA_SERVICE } from '@warp-drive/core/build-config/deprecations';
22
import { assert } from '@warp-drive/core/build-config/macros';
33

4-
import type { ResourceKey, RequestKey } from '../../../types/identifier.ts';
4+
import type { RequestKey, ResourceKey } from '../../../types/identifier.ts';
55
import type { CacheCapabilitiesManager as StoreWrapper } from '../../-types/q/cache-capabilities-manager.ts';
66
import type { SchemaService } from '../../-types/q/schema-service.ts';
77
import type { Store } from '../store-service.ts';

warp-drive-packages/core/src/store/-private/managers/cache-key-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import {
1414
DEBUG_KEY_TYPE,
1515
DEBUG_STALE_CACHE_OWNER,
1616
type PersistedResourceKey,
17-
type ResourceKey,
1817
type RequestKey,
18+
type ResourceKey,
1919
} from '../../../types/identifier.ts';
2020
import type { ImmutableRequestInfo } from '../../../types/request.ts';
2121
import type {

warp-drive-packages/core/src/store/-private/managers/record-array-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { assert } from '@warp-drive/core/build-config/macros';
33
import { Context } from '../../../reactive/-private.ts';
44
import { getOrSetGlobal } from '../../../types/-private.ts';
55
import type { LocalRelationshipOperation } from '../../../types/graph.ts';
6-
import type { ResourceKey, RequestKey } from '../../../types/identifier.ts';
6+
import type { RequestKey, ResourceKey } from '../../../types/identifier.ts';
77
import type { ImmutableRequestInfo } from '../../../types/request.ts';
88
import type { CollectionResourceDocument } from '../../../types/spec/json-api-raw.ts';
99
import { notifyInternalSignal } from '../new-core-tmp/reactivity/internal.ts';

warp-drive-packages/core/src/store/-private/new-core-tmp/expensive-subscription.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ResourceKey, RequestKey } from '../../../types/identifier';
1+
import type { RequestKey, ResourceKey } from '../../../types/identifier';
22
import type { UnsubscribeToken } from '../managers/notification-manager';
33
import type { Store } from '../store-service';
44

warp-drive-packages/core/src/store/-private/record-arrays/resource-array.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
performExtensionSet,
1111
} from '../../../reactive/-private/fields/extension.ts';
1212
import { getOrSetGlobal } from '../../../types/-private.ts';
13-
import type { ResourceKey, RequestKey } from '../../../types/identifier.ts';
13+
import type { RequestKey, ResourceKey } from '../../../types/identifier.ts';
1414
import type { ObjectValue, Value } from '../../../types/json/raw.ts';
1515
import type { CollectionField } from '../../../types/schema/fields.ts';
1616
import type { OpaqueRecordInstance } from '../../-types/q/record-instance.ts';

warp-drive-packages/core/src/store/-types/q/cache-capabilities-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ResourceKey, RequestKey } from '../../../types/identifier.ts';
1+
import type { RequestKey, ResourceKey } from '../../../types/identifier.ts';
22
import type { CacheKeyManager } from '../../-private/managers/cache-key-manager.ts';
33
import type { NotificationType } from '../../-private/managers/notification-manager.ts';
44
import type { SchemaService } from './schema-service.ts';

warp-drive-packages/core/src/store/-types/q/identifier.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { CacheKeyType, ResourceKey, RequestKey } from '../../../types/identifier.ts';
1+
import type { CacheKeyType, RequestKey, ResourceKey } from '../../../types/identifier.ts';
22
import type { ImmutableRequestInfo } from '../../../types/request.ts';
33

44
export interface GenerationMethod {

warp-drive-packages/core/src/types/cache/change.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { ResourceKey, RequestKey } from '../identifier.ts';
1+
import type { RequestKey, ResourceKey } from '../identifier.ts';
22

33
export interface Change {
44
identifier: ResourceKey | RequestKey;

warp-drive-packages/core/src/types/cache/operations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1616
import type { Cache } from '../cache.ts';
17-
import type { PersistedResourceKey, ResourceKey, RequestKey } from '../identifier.ts';
17+
import type { PersistedResourceKey, RequestKey, ResourceKey } from '../identifier.ts';
1818
import type { Value } from '../json/raw.ts';
1919
import type { ExistingResourceObject } from '../spec/json-api-raw.ts';
2020
import type { Relationship } from './relationship.ts';

0 commit comments

Comments
 (0)