From ca89e712fd44fad961e3f7820bf086778d2cce2e Mon Sep 17 00:00:00 2001 From: Vitaly Gashkov Date: Sun, 1 Dec 2024 17:02:27 +0500 Subject: [PATCH] fix(api): common utils types --- package-lock.json | 2 +- packages/api/package.json | 2 +- packages/api/types/global.d.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 45260df..998cc0c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -19711,7 +19711,7 @@ }, "packages/api": { "name": "@streamyx/api", - "version": "0.0.4", + "version": "0.0.5", "funding": [ { "type": "individual", diff --git a/packages/api/package.json b/packages/api/package.json index cf0517a..0393fe7 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@streamyx/api", - "version": "0.0.4", + "version": "0.0.5", "description": "Type definitions for the latest Streamyx API", "main": "streamyx.js", "types": "streamyx.d.ts", diff --git a/packages/api/types/global.d.ts b/packages/api/types/global.d.ts index 8fa9ebb..507e771 100644 --- a/packages/api/types/global.d.ts +++ b/packages/api/types/global.d.ts @@ -11,5 +11,5 @@ declare global { const http: HttpClient; const logger: Logger; const question: Question; - const utils: Common; + const common: Common; }