@synergy-server/core 0.1.29 → 0.1.31

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.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Synergy Server Core
2
2
 
3
- `synergy-server-core` is the core framework for the SYNERGY server application. It allows for the rapid and flexible creation of business applications with minimal programming.
3
+ `@synergy-server/core` is the core framework for the SYNERGY server application. It allows for the rapid and flexible creation of business applications with minimal programming.
4
4
 
5
5
  ## Features
6
6
 
@@ -18,5 +18,5 @@
18
18
  ## Installation
19
19
 
20
20
  ```bash
21
- npm install synergy-server-core
21
+ npm install @synergy-server/core
22
22
  ```
@@ -25,5 +25,6 @@ declare const _default: {
25
25
  executeConditionCode(str: string, args: unknown): unknown;
26
26
  translateField(rowData: TranslateData, fieldName: string, langCode: string): string;
27
27
  initEnums(): Promise<Record<string, string[]>>;
28
+ normalizeFloat(value: number, digits?: number, epsilon?: number): number;
28
29
  };
29
30
  export default _default;