@juhuu/sdk-ts 1.2.318 → 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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3013,6 +3013,7 @@ declare namespace JUHUU {
|
|
|
3013
3013
|
embeddingsGenerationEnabled: boolean;
|
|
3014
3014
|
order: number;
|
|
3015
3015
|
articleGroupIdArray: string[];
|
|
3016
|
+
pdfUrls: LocaleString;
|
|
3016
3017
|
};
|
|
3017
3018
|
namespace Create {
|
|
3018
3019
|
type Params = {
|
|
@@ -4699,6 +4700,7 @@ declare namespace JUHUU {
|
|
|
4699
4700
|
lastUpdatedAt: Date | null;
|
|
4700
4701
|
createdAt: Date | null;
|
|
4701
4702
|
reference: string | null;
|
|
4703
|
+
history: boolean;
|
|
4702
4704
|
};
|
|
4703
4705
|
export interface Text extends Base {
|
|
4704
4706
|
type: "text";
|
|
@@ -4708,6 +4710,8 @@ declare namespace JUHUU {
|
|
|
4708
4710
|
type: "number";
|
|
4709
4711
|
unit: Unit | null;
|
|
4710
4712
|
currentValue: number;
|
|
4713
|
+
min: number | null;
|
|
4714
|
+
max: number | null;
|
|
4711
4715
|
}
|
|
4712
4716
|
export interface Enum extends Base {
|
|
4713
4717
|
type: "enum";
|
|
@@ -4969,7 +4973,7 @@ declare namespace JUHUU {
|
|
|
4969
4973
|
namespace ParameterHistory {
|
|
4970
4974
|
type Base = {
|
|
4971
4975
|
id: string;
|
|
4972
|
-
readonly object: "
|
|
4976
|
+
readonly object: "parameterHistory";
|
|
4973
4977
|
description: string | null;
|
|
4974
4978
|
name: string | null;
|
|
4975
4979
|
propertyId: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3013,6 +3013,7 @@ declare namespace JUHUU {
|
|
|
3013
3013
|
embeddingsGenerationEnabled: boolean;
|
|
3014
3014
|
order: number;
|
|
3015
3015
|
articleGroupIdArray: string[];
|
|
3016
|
+
pdfUrls: LocaleString;
|
|
3016
3017
|
};
|
|
3017
3018
|
namespace Create {
|
|
3018
3019
|
type Params = {
|
|
@@ -4699,6 +4700,7 @@ declare namespace JUHUU {
|
|
|
4699
4700
|
lastUpdatedAt: Date | null;
|
|
4700
4701
|
createdAt: Date | null;
|
|
4701
4702
|
reference: string | null;
|
|
4703
|
+
history: boolean;
|
|
4702
4704
|
};
|
|
4703
4705
|
export interface Text extends Base {
|
|
4704
4706
|
type: "text";
|
|
@@ -4708,6 +4710,8 @@ declare namespace JUHUU {
|
|
|
4708
4710
|
type: "number";
|
|
4709
4711
|
unit: Unit | null;
|
|
4710
4712
|
currentValue: number;
|
|
4713
|
+
min: number | null;
|
|
4714
|
+
max: number | null;
|
|
4711
4715
|
}
|
|
4712
4716
|
export interface Enum extends Base {
|
|
4713
4717
|
type: "enum";
|
|
@@ -4969,7 +4973,7 @@ declare namespace JUHUU {
|
|
|
4969
4973
|
namespace ParameterHistory {
|
|
4970
4974
|
type Base = {
|
|
4971
4975
|
id: string;
|
|
4972
|
-
readonly object: "
|
|
4976
|
+
readonly object: "parameterHistory";
|
|
4973
4977
|
description: string | null;
|
|
4974
4978
|
name: string | null;
|
|
4975
4979
|
propertyId: string;
|