From a675114b41ea25b631f5c04f3a81dc20e766a78b Mon Sep 17 00:00:00 2001 From: Danya H Date: Mon, 28 Oct 2024 15:10:00 +0000 Subject: [PATCH] upd core - changed local shared types package name --- cef/src/index.ts | 2 +- cef/src/types/cef.ts | 4 ++-- cef/src/types/client.ts | 4 ++-- cef/src/types/server.ts | 4 ++-- client/src/core/client.ts | 2 +- client/src/core/player.ts | 4 ++-- client/src/types/browser.ts | 2 +- client/src/types/client.ts | 2 +- client/src/types/server.ts | 2 +- server/src/core/player.ts | 2 +- server/src/core/server.ts | 4 ++-- server/src/types/browser.ts | 2 +- server/src/types/client.ts | 2 +- server/src/types/server.ts | 4 ++-- shared-types/types/types/index.d.ts | 2 +- 15 files changed, 21 insertions(+), 21 deletions(-) diff --git a/cef/src/index.ts b/cef/src/index.ts index bbddb27..0ee8496 100644 --- a/cef/src/index.ts +++ b/cef/src/index.ts @@ -1,4 +1,4 @@ -import { Rpc } from 'rage-fw-rpc' +import { Rpc } from '@entityseven/rage-fw-rpc' import type { _CefEventHasArgs, diff --git a/cef/src/types/cef.ts b/cef/src/types/cef.ts index cc0fc78..501b63a 100644 --- a/cef/src/types/cef.ts +++ b/cef/src/types/cef.ts @@ -1,6 +1,6 @@ -import { RageFW_ICustomCefEvent } from 'rage-fw-shared-types' +import { RageFW_ICustomCefEvent } from '@entityseven/rage-fw-shared-types' -export { RageFW_ICustomCefEvent } from 'rage-fw-shared-types' +export { RageFW_ICustomCefEvent } from '@entityseven/rage-fw-shared-types' /** * Union of all available cef event names diff --git a/cef/src/types/client.ts b/cef/src/types/client.ts index 0560aab..6ea2717 100644 --- a/cef/src/types/client.ts +++ b/cef/src/types/client.ts @@ -1,6 +1,6 @@ -import type { RageFW_ICustomClientEvent } from 'rage-fw-shared-types' +import type { RageFW_ICustomClientEvent } from '@entityseven/rage-fw-shared-types' -export type { RageFW_ICustomClientEvent } from 'rage-fw-shared-types' +export type { RageFW_ICustomClientEvent } from '@entityseven/rage-fw-shared-types' /** * Union of all available client event names diff --git a/cef/src/types/server.ts b/cef/src/types/server.ts index 825ff20..2652428 100644 --- a/cef/src/types/server.ts +++ b/cef/src/types/server.ts @@ -1,6 +1,6 @@ -import type { RageFW_ICustomServerEvent } from 'rage-fw-shared-types' +import type { RageFW_ICustomServerEvent } from '@entityseven/rage-fw-shared-types' -export type { RageFW_ICustomServerEvent } from 'rage-fw-shared-types' +export type { RageFW_ICustomServerEvent } from '@entityseven/rage-fw-shared-types' /** * Union of all available server event names diff --git a/client/src/core/client.ts b/client/src/core/client.ts index 550c35b..365cda7 100644 --- a/client/src/core/client.ts +++ b/client/src/core/client.ts @@ -1,4 +1,4 @@ -import { Rpc } from 'rage-fw-rpc' +import { Rpc } from '@entityseven/rage-fw-rpc' import type { RageFW_ClientArgs, diff --git a/client/src/core/player.ts b/client/src/core/player.ts index 7281d5b..1af6056 100644 --- a/client/src/core/player.ts +++ b/client/src/core/player.ts @@ -1,5 +1,5 @@ -import { Rpc } from 'rage-fw-rpc' -import type { RageFW_ICustomClientEvent } from 'rage-fw-shared-types' +import { Rpc } from '@entityseven/rage-fw-rpc' +import type { RageFW_ICustomClientEvent } from '@entityseven/rage-fw-shared-types' import { _CefEventHasArgs, diff --git a/client/src/types/browser.ts b/client/src/types/browser.ts index 5f03b4c..9b266ac 100644 --- a/client/src/types/browser.ts +++ b/client/src/types/browser.ts @@ -1,6 +1,6 @@ /// -import type { RageFW_ICustomCefEvent } from 'rage-fw-shared-types' +import type { RageFW_ICustomCefEvent } from '@entityseven/rage-fw-shared-types' export type RageFW_CefEvent = keyof RageFW_ICustomCefEvent diff --git a/client/src/types/client.ts b/client/src/types/client.ts index d03c660..a94eea9 100644 --- a/client/src/types/client.ts +++ b/client/src/types/client.ts @@ -1,6 +1,6 @@ /// -import type { RageFW_ICustomClientEvent } from 'rage-fw-shared-types' +import type { RageFW_ICustomClientEvent } from '@entityseven/rage-fw-shared-types' /** * Union of all available client event names diff --git a/client/src/types/server.ts b/client/src/types/server.ts index 78c171f..23ce9df 100644 --- a/client/src/types/server.ts +++ b/client/src/types/server.ts @@ -3,7 +3,7 @@ import type { RageFW_ICustomClientEvent, RageFW_ICustomServerEvent, -} from 'rage-fw-shared-types' +} from '@entityseven/rage-fw-shared-types' /** * Union of all available server event names callable from client diff --git a/server/src/core/player.ts b/server/src/core/player.ts index d0022e8..32e80eb 100644 --- a/server/src/core/player.ts +++ b/server/src/core/player.ts @@ -1,4 +1,4 @@ -import { Rpc } from 'rage-fw-rpc' +import { Rpc } from '@entityseven/rage-fw-rpc' import type { _CefEventHasArgs, diff --git a/server/src/core/server.ts b/server/src/core/server.ts index 4f99a37..8515511 100644 --- a/server/src/core/server.ts +++ b/server/src/core/server.ts @@ -1,5 +1,5 @@ -import { Rpc } from 'rage-fw-rpc' -import { RageFW_ICustomServerEvent } from 'rage-fw-shared-types' +import { Rpc } from '@entityseven/rage-fw-rpc' +import { RageFW_ICustomServerEvent } from '@entityseven/rage-fw-shared-types' import { nativeEvents } from '../native.events' import type { diff --git a/server/src/types/browser.ts b/server/src/types/browser.ts index e6430ce..4a40c56 100644 --- a/server/src/types/browser.ts +++ b/server/src/types/browser.ts @@ -1,4 +1,4 @@ -import type { RageFW_ICustomCefEvent } from 'rage-fw-shared-types' +import type { RageFW_ICustomCefEvent } from '@entityseven/rage-fw-shared-types' export type RageFW_CefEvent = keyof RageFW_ICustomCefEvent diff --git a/server/src/types/client.ts b/server/src/types/client.ts index 1c57a06..0416299 100644 --- a/server/src/types/client.ts +++ b/server/src/types/client.ts @@ -1,6 +1,6 @@ /// -import type { RageFW_ICustomClientEvent } from 'rage-fw-shared-types' +import type { RageFW_ICustomClientEvent } from '@entityseven/rage-fw-shared-types' /** * Union of all available client event names diff --git a/server/src/types/server.ts b/server/src/types/server.ts index 76793a1..244f9b7 100644 --- a/server/src/types/server.ts +++ b/server/src/types/server.ts @@ -3,8 +3,8 @@ import type { RageFW_ICustomClientEvent, RageFW_ICustomServerEvent, -} from 'rage-fw-shared-types' -export type { RageFW_ICustomServerEvent } from 'rage-fw-shared-types' +} from '@entityseven/rage-fw-shared-types' +export type { RageFW_ICustomServerEvent } from '@entityseven/rage-fw-shared-types' /** * Union of all available server event names diff --git a/shared-types/types/types/index.d.ts b/shared-types/types/types/index.d.ts index 9bccdd8..4d7acb4 100644 --- a/shared-types/types/types/index.d.ts +++ b/shared-types/types/types/index.d.ts @@ -1,4 +1,4 @@ -declare module 'rage-fw-shared-types' { +declare module '@entityseven/rage-fw-shared-types' { export interface RageFW_ICustomServerEvent {} export interface RageFW_ICustomClientEvent {