@juhuu/sdk-ts 1.2.223 → 1.2.224
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 +32 -5
- package/dist/index.d.ts +32 -5
- package/dist/index.js +32 -5
- package/dist/index.mjs +32 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1882,6 +1882,16 @@ declare namespace JUHUU {
|
|
|
1882
1882
|
namespace Create {
|
|
1883
1883
|
type Params = {
|
|
1884
1884
|
propertyId: string;
|
|
1885
|
+
title?: LocaleString;
|
|
1886
|
+
subtitle?: LocaleString;
|
|
1887
|
+
parentArticleId?: string | null;
|
|
1888
|
+
markdownContent?: LocaleString;
|
|
1889
|
+
status?: "draft" | "published";
|
|
1890
|
+
languageCodeArray?: LanguageCode[];
|
|
1891
|
+
slug?: string;
|
|
1892
|
+
autoTranslateEnabled?: boolean;
|
|
1893
|
+
embeddingsGenerationEnabled?: boolean;
|
|
1894
|
+
articleGroupIdArray?: string[];
|
|
1885
1895
|
};
|
|
1886
1896
|
type Options = JUHUU.RequestOptions;
|
|
1887
1897
|
type Response = {
|
|
@@ -2222,7 +2232,7 @@ declare namespace JUHUU {
|
|
|
2222
2232
|
type Params = {
|
|
2223
2233
|
propertyId: string;
|
|
2224
2234
|
duration?: string;
|
|
2225
|
-
name?:
|
|
2235
|
+
name?: LocaleString;
|
|
2226
2236
|
amount?: number[];
|
|
2227
2237
|
continue?: number;
|
|
2228
2238
|
currencyCode?: string;
|
|
@@ -3025,6 +3035,16 @@ declare namespace JUHUU {
|
|
|
3025
3035
|
type Params = {
|
|
3026
3036
|
propertyId: string;
|
|
3027
3037
|
name?: string;
|
|
3038
|
+
previewText?: LocaleString;
|
|
3039
|
+
description?: LocaleString;
|
|
3040
|
+
highlightArray?: LocaleString[];
|
|
3041
|
+
purposeArray?: Purpose[];
|
|
3042
|
+
technologyArray?: Technology[];
|
|
3043
|
+
articleId?: string | null;
|
|
3044
|
+
bannerImageDark?: string[];
|
|
3045
|
+
bannerImageLight?: string[];
|
|
3046
|
+
model3d?: string | null;
|
|
3047
|
+
datasheet?: DeepNullable<LocaleString>;
|
|
3028
3048
|
};
|
|
3029
3049
|
type Options = JUHUU.RequestOptions;
|
|
3030
3050
|
type Response = {
|
|
@@ -3405,6 +3425,10 @@ declare namespace JUHUU {
|
|
|
3405
3425
|
namespace Create {
|
|
3406
3426
|
type Params = {
|
|
3407
3427
|
propertyId: string;
|
|
3428
|
+
name?: string;
|
|
3429
|
+
title?: LocaleString;
|
|
3430
|
+
description?: LocaleString;
|
|
3431
|
+
severity?: JUHUU.IncidentTemplate.Object["severity"];
|
|
3408
3432
|
};
|
|
3409
3433
|
type Options = JUHUU.RequestOptions;
|
|
3410
3434
|
type Response = {
|
|
@@ -3598,6 +3622,8 @@ declare namespace JUHUU {
|
|
|
3598
3622
|
type Params = {
|
|
3599
3623
|
propertyId: string;
|
|
3600
3624
|
parameterAnomalyGroupTrackerId?: string;
|
|
3625
|
+
name?: string;
|
|
3626
|
+
featureReferenceParameterIdArray?: JUHUU.ParameterAnomalyGroup.Object["featureReferenceParameterIdArray"];
|
|
3601
3627
|
};
|
|
3602
3628
|
type Options = JUHUU.RequestOptions;
|
|
3603
3629
|
type Response = {
|
|
@@ -3798,10 +3824,11 @@ declare namespace JUHUU {
|
|
|
3798
3824
|
};
|
|
3799
3825
|
namespace Create {
|
|
3800
3826
|
type Params = {
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3827
|
+
propertyId: string;
|
|
3828
|
+
name?: string;
|
|
3829
|
+
startNode?: FlowBlock;
|
|
3830
|
+
nodeArray?: FlowBlock[];
|
|
3831
|
+
edgeArray?: FlowEdge[];
|
|
3805
3832
|
};
|
|
3806
3833
|
type Options = JUHUU.RequestOptions;
|
|
3807
3834
|
type Response = {
|
package/dist/index.d.ts
CHANGED
|
@@ -1882,6 +1882,16 @@ declare namespace JUHUU {
|
|
|
1882
1882
|
namespace Create {
|
|
1883
1883
|
type Params = {
|
|
1884
1884
|
propertyId: string;
|
|
1885
|
+
title?: LocaleString;
|
|
1886
|
+
subtitle?: LocaleString;
|
|
1887
|
+
parentArticleId?: string | null;
|
|
1888
|
+
markdownContent?: LocaleString;
|
|
1889
|
+
status?: "draft" | "published";
|
|
1890
|
+
languageCodeArray?: LanguageCode[];
|
|
1891
|
+
slug?: string;
|
|
1892
|
+
autoTranslateEnabled?: boolean;
|
|
1893
|
+
embeddingsGenerationEnabled?: boolean;
|
|
1894
|
+
articleGroupIdArray?: string[];
|
|
1885
1895
|
};
|
|
1886
1896
|
type Options = JUHUU.RequestOptions;
|
|
1887
1897
|
type Response = {
|
|
@@ -2222,7 +2232,7 @@ declare namespace JUHUU {
|
|
|
2222
2232
|
type Params = {
|
|
2223
2233
|
propertyId: string;
|
|
2224
2234
|
duration?: string;
|
|
2225
|
-
name?:
|
|
2235
|
+
name?: LocaleString;
|
|
2226
2236
|
amount?: number[];
|
|
2227
2237
|
continue?: number;
|
|
2228
2238
|
currencyCode?: string;
|
|
@@ -3025,6 +3035,16 @@ declare namespace JUHUU {
|
|
|
3025
3035
|
type Params = {
|
|
3026
3036
|
propertyId: string;
|
|
3027
3037
|
name?: string;
|
|
3038
|
+
previewText?: LocaleString;
|
|
3039
|
+
description?: LocaleString;
|
|
3040
|
+
highlightArray?: LocaleString[];
|
|
3041
|
+
purposeArray?: Purpose[];
|
|
3042
|
+
technologyArray?: Technology[];
|
|
3043
|
+
articleId?: string | null;
|
|
3044
|
+
bannerImageDark?: string[];
|
|
3045
|
+
bannerImageLight?: string[];
|
|
3046
|
+
model3d?: string | null;
|
|
3047
|
+
datasheet?: DeepNullable<LocaleString>;
|
|
3028
3048
|
};
|
|
3029
3049
|
type Options = JUHUU.RequestOptions;
|
|
3030
3050
|
type Response = {
|
|
@@ -3405,6 +3425,10 @@ declare namespace JUHUU {
|
|
|
3405
3425
|
namespace Create {
|
|
3406
3426
|
type Params = {
|
|
3407
3427
|
propertyId: string;
|
|
3428
|
+
name?: string;
|
|
3429
|
+
title?: LocaleString;
|
|
3430
|
+
description?: LocaleString;
|
|
3431
|
+
severity?: JUHUU.IncidentTemplate.Object["severity"];
|
|
3408
3432
|
};
|
|
3409
3433
|
type Options = JUHUU.RequestOptions;
|
|
3410
3434
|
type Response = {
|
|
@@ -3598,6 +3622,8 @@ declare namespace JUHUU {
|
|
|
3598
3622
|
type Params = {
|
|
3599
3623
|
propertyId: string;
|
|
3600
3624
|
parameterAnomalyGroupTrackerId?: string;
|
|
3625
|
+
name?: string;
|
|
3626
|
+
featureReferenceParameterIdArray?: JUHUU.ParameterAnomalyGroup.Object["featureReferenceParameterIdArray"];
|
|
3601
3627
|
};
|
|
3602
3628
|
type Options = JUHUU.RequestOptions;
|
|
3603
3629
|
type Response = {
|
|
@@ -3798,10 +3824,11 @@ declare namespace JUHUU {
|
|
|
3798
3824
|
};
|
|
3799
3825
|
namespace Create {
|
|
3800
3826
|
type Params = {
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3827
|
+
propertyId: string;
|
|
3828
|
+
name?: string;
|
|
3829
|
+
startNode?: FlowBlock;
|
|
3830
|
+
nodeArray?: FlowBlock[];
|
|
3831
|
+
edgeArray?: FlowEdge[];
|
|
3805
3832
|
};
|
|
3806
3833
|
type Options = JUHUU.RequestOptions;
|
|
3807
3834
|
type Response = {
|
package/dist/index.js
CHANGED
|
@@ -1741,7 +1741,17 @@ var ProductService = class extends Service {
|
|
|
1741
1741
|
url: "products",
|
|
1742
1742
|
body: {
|
|
1743
1743
|
propertyId: ProductCreateParams.propertyId,
|
|
1744
|
-
name: ProductCreateParams.name
|
|
1744
|
+
name: ProductCreateParams.name,
|
|
1745
|
+
previewText: ProductCreateParams.previewText,
|
|
1746
|
+
description: ProductCreateParams.description,
|
|
1747
|
+
highlightArray: ProductCreateParams.highlightArray,
|
|
1748
|
+
purposeArray: ProductCreateParams.purposeArray,
|
|
1749
|
+
technologyArray: ProductCreateParams.technologyArray,
|
|
1750
|
+
articleId: ProductCreateParams.articleId,
|
|
1751
|
+
bannerImageDark: ProductCreateParams.bannerImageDark,
|
|
1752
|
+
bannerImageLight: ProductCreateParams.bannerImageLight,
|
|
1753
|
+
model3d: ProductCreateParams.model3d,
|
|
1754
|
+
datasheet: ProductCreateParams.datasheet
|
|
1745
1755
|
},
|
|
1746
1756
|
authenticationNotOptional: true
|
|
1747
1757
|
},
|
|
@@ -2206,7 +2216,17 @@ var ArticlesService = class extends Service {
|
|
|
2206
2216
|
method: "POST",
|
|
2207
2217
|
url: "articles",
|
|
2208
2218
|
body: {
|
|
2209
|
-
propertyId: ArticleCreateParams.propertyId
|
|
2219
|
+
propertyId: ArticleCreateParams.propertyId,
|
|
2220
|
+
title: ArticleCreateParams.title,
|
|
2221
|
+
subtitle: ArticleCreateParams.subtitle,
|
|
2222
|
+
parentArticleId: ArticleCreateParams.parentArticleId,
|
|
2223
|
+
markdownContent: ArticleCreateParams.markdownContent,
|
|
2224
|
+
status: ArticleCreateParams.status,
|
|
2225
|
+
languageCodeArray: ArticleCreateParams.languageCodeArray,
|
|
2226
|
+
slug: ArticleCreateParams.slug,
|
|
2227
|
+
autoTranslateEnabled: ArticleCreateParams.autoTranslateEnabled,
|
|
2228
|
+
embeddingsGenerationEnabled: ArticleCreateParams.embeddingsGenerationEnabled,
|
|
2229
|
+
articleGroupIdArray: ArticleCreateParams.articleGroupIdArray
|
|
2210
2230
|
},
|
|
2211
2231
|
authenticationNotOptional: true
|
|
2212
2232
|
},
|
|
@@ -3008,7 +3028,11 @@ var IncidentTemplatesService = class extends Service {
|
|
|
3008
3028
|
method: "POST",
|
|
3009
3029
|
url: "incidentTemplates",
|
|
3010
3030
|
body: {
|
|
3011
|
-
propertyId: IncidentTemplateCreateParams.propertyId
|
|
3031
|
+
propertyId: IncidentTemplateCreateParams.propertyId,
|
|
3032
|
+
name: IncidentTemplateCreateParams.name,
|
|
3033
|
+
title: IncidentTemplateCreateParams.title,
|
|
3034
|
+
description: IncidentTemplateCreateParams.description,
|
|
3035
|
+
severity: IncidentTemplateCreateParams.severity
|
|
3012
3036
|
},
|
|
3013
3037
|
authenticationNotOptional: false
|
|
3014
3038
|
},
|
|
@@ -3176,7 +3200,9 @@ var ParameterAnomalyGroupsService = class extends Service {
|
|
|
3176
3200
|
url: "parameterAnomalyGroups",
|
|
3177
3201
|
body: {
|
|
3178
3202
|
propertyId: ParameterAnomalyGroupCreateParams.propertyId,
|
|
3179
|
-
parameterAnomalyGroupTrackerId: ParameterAnomalyGroupCreateParams.parameterAnomalyGroupTrackerId
|
|
3203
|
+
parameterAnomalyGroupTrackerId: ParameterAnomalyGroupCreateParams.parameterAnomalyGroupTrackerId,
|
|
3204
|
+
name: ParameterAnomalyGroupCreateParams.name,
|
|
3205
|
+
featureReferenceParameterIdArray: ParameterAnomalyGroupCreateParams.featureReferenceParameterIdArray
|
|
3180
3206
|
},
|
|
3181
3207
|
authenticationNotOptional: true
|
|
3182
3208
|
},
|
|
@@ -3399,7 +3425,8 @@ var FlowsService = class extends Service {
|
|
|
3399
3425
|
name: FlowCreateParams.name,
|
|
3400
3426
|
startNode: FlowCreateParams.startNode,
|
|
3401
3427
|
nodeArray: FlowCreateParams.nodeArray,
|
|
3402
|
-
edgeArray: FlowCreateParams.edgeArray
|
|
3428
|
+
edgeArray: FlowCreateParams.edgeArray,
|
|
3429
|
+
propertyId: FlowCreateParams.propertyId
|
|
3403
3430
|
},
|
|
3404
3431
|
authenticationNotOptional: true
|
|
3405
3432
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -1697,7 +1697,17 @@ var ProductService = class extends Service {
|
|
|
1697
1697
|
url: "products",
|
|
1698
1698
|
body: {
|
|
1699
1699
|
propertyId: ProductCreateParams.propertyId,
|
|
1700
|
-
name: ProductCreateParams.name
|
|
1700
|
+
name: ProductCreateParams.name,
|
|
1701
|
+
previewText: ProductCreateParams.previewText,
|
|
1702
|
+
description: ProductCreateParams.description,
|
|
1703
|
+
highlightArray: ProductCreateParams.highlightArray,
|
|
1704
|
+
purposeArray: ProductCreateParams.purposeArray,
|
|
1705
|
+
technologyArray: ProductCreateParams.technologyArray,
|
|
1706
|
+
articleId: ProductCreateParams.articleId,
|
|
1707
|
+
bannerImageDark: ProductCreateParams.bannerImageDark,
|
|
1708
|
+
bannerImageLight: ProductCreateParams.bannerImageLight,
|
|
1709
|
+
model3d: ProductCreateParams.model3d,
|
|
1710
|
+
datasheet: ProductCreateParams.datasheet
|
|
1701
1711
|
},
|
|
1702
1712
|
authenticationNotOptional: true
|
|
1703
1713
|
},
|
|
@@ -2162,7 +2172,17 @@ var ArticlesService = class extends Service {
|
|
|
2162
2172
|
method: "POST",
|
|
2163
2173
|
url: "articles",
|
|
2164
2174
|
body: {
|
|
2165
|
-
propertyId: ArticleCreateParams.propertyId
|
|
2175
|
+
propertyId: ArticleCreateParams.propertyId,
|
|
2176
|
+
title: ArticleCreateParams.title,
|
|
2177
|
+
subtitle: ArticleCreateParams.subtitle,
|
|
2178
|
+
parentArticleId: ArticleCreateParams.parentArticleId,
|
|
2179
|
+
markdownContent: ArticleCreateParams.markdownContent,
|
|
2180
|
+
status: ArticleCreateParams.status,
|
|
2181
|
+
languageCodeArray: ArticleCreateParams.languageCodeArray,
|
|
2182
|
+
slug: ArticleCreateParams.slug,
|
|
2183
|
+
autoTranslateEnabled: ArticleCreateParams.autoTranslateEnabled,
|
|
2184
|
+
embeddingsGenerationEnabled: ArticleCreateParams.embeddingsGenerationEnabled,
|
|
2185
|
+
articleGroupIdArray: ArticleCreateParams.articleGroupIdArray
|
|
2166
2186
|
},
|
|
2167
2187
|
authenticationNotOptional: true
|
|
2168
2188
|
},
|
|
@@ -2964,7 +2984,11 @@ var IncidentTemplatesService = class extends Service {
|
|
|
2964
2984
|
method: "POST",
|
|
2965
2985
|
url: "incidentTemplates",
|
|
2966
2986
|
body: {
|
|
2967
|
-
propertyId: IncidentTemplateCreateParams.propertyId
|
|
2987
|
+
propertyId: IncidentTemplateCreateParams.propertyId,
|
|
2988
|
+
name: IncidentTemplateCreateParams.name,
|
|
2989
|
+
title: IncidentTemplateCreateParams.title,
|
|
2990
|
+
description: IncidentTemplateCreateParams.description,
|
|
2991
|
+
severity: IncidentTemplateCreateParams.severity
|
|
2968
2992
|
},
|
|
2969
2993
|
authenticationNotOptional: false
|
|
2970
2994
|
},
|
|
@@ -3132,7 +3156,9 @@ var ParameterAnomalyGroupsService = class extends Service {
|
|
|
3132
3156
|
url: "parameterAnomalyGroups",
|
|
3133
3157
|
body: {
|
|
3134
3158
|
propertyId: ParameterAnomalyGroupCreateParams.propertyId,
|
|
3135
|
-
parameterAnomalyGroupTrackerId: ParameterAnomalyGroupCreateParams.parameterAnomalyGroupTrackerId
|
|
3159
|
+
parameterAnomalyGroupTrackerId: ParameterAnomalyGroupCreateParams.parameterAnomalyGroupTrackerId,
|
|
3160
|
+
name: ParameterAnomalyGroupCreateParams.name,
|
|
3161
|
+
featureReferenceParameterIdArray: ParameterAnomalyGroupCreateParams.featureReferenceParameterIdArray
|
|
3136
3162
|
},
|
|
3137
3163
|
authenticationNotOptional: true
|
|
3138
3164
|
},
|
|
@@ -3355,7 +3381,8 @@ var FlowsService = class extends Service {
|
|
|
3355
3381
|
name: FlowCreateParams.name,
|
|
3356
3382
|
startNode: FlowCreateParams.startNode,
|
|
3357
3383
|
nodeArray: FlowCreateParams.nodeArray,
|
|
3358
|
-
edgeArray: FlowCreateParams.edgeArray
|
|
3384
|
+
edgeArray: FlowCreateParams.edgeArray,
|
|
3385
|
+
propertyId: FlowCreateParams.propertyId
|
|
3359
3386
|
},
|
|
3360
3387
|
authenticationNotOptional: true
|
|
3361
3388
|
},
|