@processandtools/rp-article-designer 1.0.23 → 1.0.25

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.
@@ -6,7 +6,7 @@ import { MaterialTypes } from '../construction_principle/material/material.types
6
6
  import { SurfaceTypes } from '../construction_principle/surface/surface.types';
7
7
  declare class APIFactory {
8
8
  private baseUrl;
9
- constructor(baseUrl?: string);
9
+ constructor();
10
10
  conditionTree(): GenericAPI<ConditionTreeResponse>;
11
11
  descriptor(): GenericAPI<DescriptorResponse<import('../descriptor/types/descriptor-data.types.ts').DescriptorTypeValue>>;
12
12
  materialData(): GenericAPI<MaterialTypes>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@processandtools/rp-article-designer",
3
3
  "private": false,
4
- "version": "1.0.23",
4
+ "version": "1.0.25",
5
5
  "author": "Otman Abid Lmerabetine",
6
6
  "license": "MIT",
7
7
  "type": "module",
@@ -36,7 +36,7 @@
36
36
  "dev": "vite",
37
37
  "build": "tsc -b && vite build",
38
38
  "build:lib": "vite build --mode production",
39
- "build:protected": "vite build --mode production && npx javascript-obfuscator dist --output dist",
39
+ "build:protected": "vite build --mode production && npx javascript-obfuscator dist --output dist --disable-console-output false",
40
40
  "lint": "eslint .",
41
41
  "preview": "vite preview",
42
42
  "prepack": "npm run build:protected",
@@ -1,9 +0,0 @@
1
- /// <reference types="vite/client" />
2
-
3
- interface ImportMetaEnv {
4
- readonly VITE_API_URL: string
5
- }
6
-
7
- interface ImportMeta {
8
- readonly env: ImportMetaEnv
9
- }