@captureid/datatypes 1.0.47 → 1.0.48

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/lib/enums.d.ts CHANGED
@@ -324,6 +324,7 @@ export declare enum Status {
324
324
  PENDING = 6,
325
325
  ABORTED = 7,
326
326
  TIMEOUT = 8,
327
+ CONNECTED = 9,
327
328
  UNKNOWN = 99
328
329
  }
329
330
  export declare namespace Status {
@@ -2,10 +2,10 @@ import { DataObject } from "../data-object";
2
2
  export interface StatisticData {
3
3
  id: string;
4
4
  name: string;
5
- value: number;
5
+ value: number | string | boolean;
6
6
  }
7
7
  export declare class StatisticData implements StatisticData {
8
- constructor(id?: string, name?: string, value?: number);
8
+ constructor(id?: string, name?: string, value?: number | string | boolean);
9
9
  }
10
10
  export interface StatisticObject {
11
11
  data: StatisticData[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@captureid/datatypes",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=17.0.0",
6
6
  "@angular/core": ">=17.0.0"