Skip to content

Commit ddc9a46

Browse files
committed
fix: 🐛 update imports
1 parent 3a03780 commit ddc9a46

File tree

23 files changed

+37
-37
lines changed

23 files changed

+37
-37
lines changed

src/__demos__/json-crdt-server/routes/block/methods/get.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {ResolveType} from 'json-joy/lib/json-type';
1+
import type {ResolveType} from '@jsonjoy.com/json-type';
22
import {BlockIdRef, BlockRef} from '../schema';
33
import type {RouteDeps, Router, RouterBase} from '../../types';
44

src/__demos__/json-crdt-server/routes/block/methods/upd.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {ResolveType} from 'json-joy/lib/json-type';
1+
import type {ResolveType} from '@jsonjoy.com/json-type';
22
import {
33
BlockBatchPartialRef,
44
BlockBatchPartialReturnRef,

src/__demos__/json-crdt-server/routes/block/methods/view.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {ResolveType} from 'json-joy/lib/json-type';
1+
import type {ResolveType} from '@jsonjoy.com/json-type';
22
import {BlockIdRef} from '../schema';
33
import type {RouteDeps, Router, RouterBase} from '../../types';
44

src/__demos__/json-crdt-server/routes/block/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {t} from '../system';
2-
import type {ResolveType} from 'json-joy/lib/json-type';
2+
import type {ResolveType} from '@jsonjoy.com/json-type';
33

44
export const BlockId = t.str.options({
55
title: 'Block ID',

src/__demos__/json-crdt-server/routes/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {RpcError} from '../../../common/rpc/caller';
33
import {RpcValue} from '../../../common/messages/Value';
44
import {ObjectValueCaller} from '../../../common/rpc/caller/ObjectValueCaller';
55
import {system} from './system';
6-
import {ObjectValue} from 'json-joy/lib/json-type-value/ObjectValue';
6+
import {ObjectValue} from '@jsonjoy.com/json-type/lib/value/ObjectValue';
77
import {Services} from '../services/Services';
88
import {MemoryStore} from '../services/blocks/store/MemoryStore';
99
import {LevelStore} from '../services/blocks/store/level/LevelStore';

src/__demos__/json-crdt-server/routes/presence/methods/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {ResolveType} from 'json-joy/lib/json-type';
1+
import type {ResolveType} from '@jsonjoy.com/json-type';
22
import type {PresenceEntry} from '../schema';
33
import type {RouteDeps, Router, RouterBase} from '../../types';
44

src/__demos__/json-crdt-server/routes/presence/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type {ResolveType} from 'json-joy/lib/json-type';
1+
import type {ResolveType} from '@jsonjoy.com/json-type';
22
import {t} from '../system';
33

44
export const PresenceEntry = t.Object(

src/__demos__/json-crdt-server/routes/routes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import {pubsub} from './pubsub';
33
import {presence} from './presence';
44
import {block} from './block';
55
import type {RouteDeps} from './types';
6-
import type {ObjectValue} from 'json-joy/lib/json-type-value/ObjectValue';
7-
import type {ObjectType} from 'json-joy/lib/json-type';
6+
import type {ObjectValue} from '@jsonjoy.com/json-type/lib/value/ObjectValue';
7+
import type {ObjectType} from '@jsonjoy.com/json-type';
88

99
// biome-ignore format: each on its own line
1010
export const routes = (d: RouteDeps) => <R extends ObjectType<any>>(r: ObjectValue<R>) =>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {TypeSystem} from 'json-joy/lib/json-type';
1+
import {TypeSystem} from '@jsonjoy.com/json-type';
22

33
export const system = new TypeSystem();
44
export const t = system.t;

src/__demos__/json-crdt-server/routes/types.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import type {ObjectType, TypeSystem} from 'json-joy/lib/json-type';
2-
import type {ObjectValue} from 'json-joy/lib/json-type-value/ObjectValue';
3-
import type {TypeBuilder} from 'json-joy/lib/json-type/type/TypeBuilder';
1+
import type {ObjectType, TypeSystem} from '@jsonjoy.com/json-type';
2+
import type {ObjectValue} from '@jsonjoy.com/json-type/lib/value/ObjectValue';
3+
import type {TypeBuilder} from '@jsonjoy.com/json-type/lib/type/TypeBuilder';
44
import type {Services} from '../services/Services';
55

66
export interface RouteDeps {

0 commit comments

Comments
 (0)