@powfix/core-js 0.11.0 → 0.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import { AxiosInstance } from "axios";
2
- import { StorageProvider } from "@interfaces/StorageProvider";
2
+ import { StorageProvider } from "../interfaces/StorageProvider";
3
3
  import EventEmitter3 from 'eventemitter3';
4
4
  export declare class SessionService {
5
5
  private static readonly DEFAULT_AUTHORIZATION_STORAGE_KEY;
@@ -1,4 +1,4 @@
1
- import { Coordinate } from "@interfaces/Coordinate";
1
+ import { Coordinate } from "../interfaces/Coordinate";
2
2
  export declare class CoordinateUtils {
3
3
  static isValidLatitude(latitude: Coordinate['latitude'] | string): boolean;
4
4
  static isValidLongitude(longitude: Coordinate['longitude'] | string): boolean;
@@ -1,4 +1,4 @@
1
- import { Point3 } from "@interfaces/Point3";
1
+ import { Point3 } from "../interfaces/Point3";
2
2
  export declare class Point3Utils {
3
3
  static distance(p1: Point3, p2: Point3): number;
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powfix/core-js",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "core package",
5
5
  "author": "Kwon Kyung-Min <powfix@gmail.com>",
6
6
  "private": false,
@@ -36,7 +36,6 @@
36
36
  "@types/node": "20.9.5",
37
37
  "@types/uuid": "9.0.7",
38
38
  "axios": "1.7.9",
39
- "babel-plugin-module-resolver": "^5.0.2",
40
39
  "moment": "^2.30.1",
41
40
  "typescript": "5.1.6"
42
41
  },