1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

fix cross packages imports

This commit is contained in:
Leibale Eidelman
2024-11-04 12:21:17 -05:00
parent 8dab27ed02
commit b835309cf8
156 changed files with 340 additions and 340 deletions

View File

@@ -1,5 +1,5 @@
import { RedisArgument, TuplesReply, ArrayReply, BlobStringReply, NumberReply, Command } from '@redis/client/lib/RESP/types';
import { CommandParser } from '@redis/client/lib/client/parser';
import { RedisArgument, TuplesReply, ArrayReply, BlobStringReply, NumberReply, Command } from '@redis/client/dist/lib/RESP/types';
import { CommandParser } from '@redis/client/dist/lib/client/parser';
type ConfigItemReply = TuplesReply<[
configKey: BlobStringReply,

View File

@@ -1,5 +1,5 @@
import { RedisArgument, SimpleStringReply, Command } from '@redis/client/lib/RESP/types';
import { CommandParser } from '@redis/client/lib/client/parser';
import { RedisArgument, SimpleStringReply, Command } from '@redis/client/dist/lib/RESP/types';
import { CommandParser } from '@redis/client/dist/lib/client/parser';
export default {
NOT_KEYED_COMMAND: true,

View File

@@ -1,5 +1,5 @@
import { RedisArgument, BlobStringReply, Command } from '@redis/client/lib/RESP/types';
import { CommandParser } from '@redis/client/lib/client/parser';
import { RedisArgument, BlobStringReply, Command } from '@redis/client/dist/lib/RESP/types';
import { CommandParser } from '@redis/client/dist/lib/client/parser';
export default {
IS_READ_ONLY: false,

View File

@@ -1,5 +1,5 @@
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '@redis/client/lib/RESP/types';
import { CommandParser } from '@redis/client/lib/client/parser';
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '@redis/client/dist/lib/RESP/types';
import { CommandParser } from '@redis/client/dist/lib/client/parser';
export default {
IS_READ_ONLY: true,

View File

@@ -1,5 +1,5 @@
import { ArrayReply, BlobStringReply, Command } from '@redis/client/lib/RESP/types';
import { CommandParser } from '@redis/client/lib/client/parser';
import { ArrayReply, BlobStringReply, Command } from '@redis/client/dist/lib/RESP/types';
import { CommandParser } from '@redis/client/dist/lib/client/parser';
export default {
NOT_KEYED_COMMAND: true,

View File

@@ -1,5 +1,5 @@
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '@redis/client/lib/RESP/types';
import { CommandParser } from '@redis/client/lib/client/parser';
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '@redis/client/dist/lib/RESP/types';
import { CommandParser } from '@redis/client/dist/lib/client/parser';
export default {
IS_READ_ONLY: true,

View File

@@ -1,5 +1,5 @@
import { RedisArgument, ArrayReply, BlobStringReply, NumberReply, NullReply, TuplesReply, UnwrapReply, Command } from '@redis/client/lib/RESP/types';
import { CommandParser } from '@redis/client/lib/client/parser';
import { RedisArgument, ArrayReply, BlobStringReply, NumberReply, NullReply, TuplesReply, UnwrapReply, Command } from '@redis/client/dist/lib/RESP/types';
import { CommandParser } from '@redis/client/dist/lib/client/parser';
type Headers = ArrayReply<BlobStringReply>;

View File

@@ -1,4 +1,4 @@
import { Command } from '@redis/client/lib/RESP/types';
import { Command } from '@redis/client/dist/lib/RESP/types';
import QUERY, { parseQueryArguments } from './QUERY';
export default {

View File

@@ -1,5 +1,5 @@
import { RedisArgument, ArrayReply, TuplesReply, BlobStringReply, UnwrapReply, Command } from '@redis/client/lib/RESP/types';
import { CommandParser } from '@redis/client/lib/client/parser';
import { RedisArgument, ArrayReply, TuplesReply, BlobStringReply, UnwrapReply, Command } from '@redis/client/dist/lib/RESP/types';
import { CommandParser } from '@redis/client/dist/lib/client/parser';
type SlowLogRawReply = ArrayReply<TuplesReply<[
timestamp: BlobStringReply,

View File

@@ -1,4 +1,4 @@
import type { RedisCommands } from '@redis/client/lib/RESP/types';
import type { RedisCommands } from '@redis/client/dist/lib/RESP/types';
import CONFIG_GET from './CONFIG_GET';
import CONFIG_SET from './CONFIG_SET';;
import DELETE from './DELETE';