Compare commits

..

2 Commits

Author SHA1 Message Date
Darius
25ff0b9903 1.2.2 2025-11-21 17:34:20 +01:00
Darius
2f8f3ea017 Generic Commit; Most likely a fix or small feature 2025-11-21 17:34:15 +01:00
3 changed files with 6 additions and 6 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@dpu/shared",
"version": "1.2.1",
"version": "1.2.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@dpu/shared",
"version": "1.2.1",
"version": "1.2.2",
"dependencies": {
"axios": "^1.7.9",
"chalk": "^5.6.2",

View File

@@ -1,6 +1,6 @@
{
"name": "@dpu/shared",
"version": "1.2.1",
"version": "1.2.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View File

@@ -5,9 +5,9 @@ export type ServiceResult<T = unknown> = {
successful: boolean;
};
export type API_Error = {
error: string;
};
export class API_Error {
constructor(public error: string) {}
}
export abstract class BaseClient {
private axiosInstance: AxiosInstance;