@juhuu/sdk-ts 1.2.319 → 1.2.320
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/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4700,6 +4700,7 @@ declare namespace JUHUU {
|
|
|
4700
4700
|
lastUpdatedAt: Date | null;
|
|
4701
4701
|
createdAt: Date | null;
|
|
4702
4702
|
reference: string | null;
|
|
4703
|
+
history: boolean;
|
|
4703
4704
|
};
|
|
4704
4705
|
export interface Text extends Base {
|
|
4705
4706
|
type: "text";
|
|
@@ -4709,6 +4710,8 @@ declare namespace JUHUU {
|
|
|
4709
4710
|
type: "number";
|
|
4710
4711
|
unit: Unit | null;
|
|
4711
4712
|
currentValue: number;
|
|
4713
|
+
min: number | null;
|
|
4714
|
+
max: number | null;
|
|
4712
4715
|
}
|
|
4713
4716
|
export interface Enum extends Base {
|
|
4714
4717
|
type: "enum";
|
|
@@ -4970,7 +4973,7 @@ declare namespace JUHUU {
|
|
|
4970
4973
|
namespace ParameterHistory {
|
|
4971
4974
|
type Base = {
|
|
4972
4975
|
id: string;
|
|
4973
|
-
readonly object: "
|
|
4976
|
+
readonly object: "parameterHistory";
|
|
4974
4977
|
description: string | null;
|
|
4975
4978
|
name: string | null;
|
|
4976
4979
|
propertyId: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -4700,6 +4700,7 @@ declare namespace JUHUU {
|
|
|
4700
4700
|
lastUpdatedAt: Date | null;
|
|
4701
4701
|
createdAt: Date | null;
|
|
4702
4702
|
reference: string | null;
|
|
4703
|
+
history: boolean;
|
|
4703
4704
|
};
|
|
4704
4705
|
export interface Text extends Base {
|
|
4705
4706
|
type: "text";
|
|
@@ -4709,6 +4710,8 @@ declare namespace JUHUU {
|
|
|
4709
4710
|
type: "number";
|
|
4710
4711
|
unit: Unit | null;
|
|
4711
4712
|
currentValue: number;
|
|
4713
|
+
min: number | null;
|
|
4714
|
+
max: number | null;
|
|
4712
4715
|
}
|
|
4713
4716
|
export interface Enum extends Base {
|
|
4714
4717
|
type: "enum";
|
|
@@ -4970,7 +4973,7 @@ declare namespace JUHUU {
|
|
|
4970
4973
|
namespace ParameterHistory {
|
|
4971
4974
|
type Base = {
|
|
4972
4975
|
id: string;
|
|
4973
|
-
readonly object: "
|
|
4976
|
+
readonly object: "parameterHistory";
|
|
4974
4977
|
description: string | null;
|
|
4975
4978
|
name: string | null;
|
|
4976
4979
|
propertyId: string;
|