@juhuu/sdk-ts 1.2.223 → 1.2.225
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 +39 -7
- package/dist/index.d.ts +39 -7
- package/dist/index.js +32 -5
- package/dist/index.mjs +32 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -15,6 +15,11 @@ type Frontend = "dashboard" | "app";
|
|
|
15
15
|
type FlowExecutionEnvironment = "dashboard" | "app" | "backend";
|
|
16
16
|
type ApiKeyStatus = "enabled" | "disabled";
|
|
17
17
|
type FlowStatus = "error" | "ready";
|
|
18
|
+
type FlowLog = {
|
|
19
|
+
severity: "debug" | "info" | "warning" | "error";
|
|
20
|
+
message: string;
|
|
21
|
+
createdAt: Date;
|
|
22
|
+
};
|
|
18
23
|
type QuickAction = {
|
|
19
24
|
icon: string | null;
|
|
20
25
|
name: LocaleString;
|
|
@@ -1882,6 +1887,16 @@ declare namespace JUHUU {
|
|
|
1882
1887
|
namespace Create {
|
|
1883
1888
|
type Params = {
|
|
1884
1889
|
propertyId: string;
|
|
1890
|
+
title?: LocaleString;
|
|
1891
|
+
subtitle?: LocaleString;
|
|
1892
|
+
parentArticleId?: string | null;
|
|
1893
|
+
markdownContent?: LocaleString;
|
|
1894
|
+
status?: "draft" | "published";
|
|
1895
|
+
languageCodeArray?: LanguageCode[];
|
|
1896
|
+
slug?: string;
|
|
1897
|
+
autoTranslateEnabled?: boolean;
|
|
1898
|
+
embeddingsGenerationEnabled?: boolean;
|
|
1899
|
+
articleGroupIdArray?: string[];
|
|
1885
1900
|
};
|
|
1886
1901
|
type Options = JUHUU.RequestOptions;
|
|
1887
1902
|
type Response = {
|
|
@@ -2222,7 +2237,7 @@ declare namespace JUHUU {
|
|
|
2222
2237
|
type Params = {
|
|
2223
2238
|
propertyId: string;
|
|
2224
2239
|
duration?: string;
|
|
2225
|
-
name?:
|
|
2240
|
+
name?: LocaleString;
|
|
2226
2241
|
amount?: number[];
|
|
2227
2242
|
continue?: number;
|
|
2228
2243
|
currencyCode?: string;
|
|
@@ -3025,6 +3040,16 @@ declare namespace JUHUU {
|
|
|
3025
3040
|
type Params = {
|
|
3026
3041
|
propertyId: string;
|
|
3027
3042
|
name?: string;
|
|
3043
|
+
previewText?: LocaleString;
|
|
3044
|
+
description?: LocaleString;
|
|
3045
|
+
highlightArray?: LocaleString[];
|
|
3046
|
+
purposeArray?: Purpose[];
|
|
3047
|
+
technologyArray?: Technology[];
|
|
3048
|
+
articleId?: string | null;
|
|
3049
|
+
bannerImageDark?: string[];
|
|
3050
|
+
bannerImageLight?: string[];
|
|
3051
|
+
model3d?: string | null;
|
|
3052
|
+
datasheet?: DeepNullable<LocaleString>;
|
|
3028
3053
|
};
|
|
3029
3054
|
type Options = JUHUU.RequestOptions;
|
|
3030
3055
|
type Response = {
|
|
@@ -3405,6 +3430,10 @@ declare namespace JUHUU {
|
|
|
3405
3430
|
namespace Create {
|
|
3406
3431
|
type Params = {
|
|
3407
3432
|
propertyId: string;
|
|
3433
|
+
name?: string;
|
|
3434
|
+
title?: LocaleString;
|
|
3435
|
+
description?: LocaleString;
|
|
3436
|
+
severity?: JUHUU.IncidentTemplate.Object["severity"];
|
|
3408
3437
|
};
|
|
3409
3438
|
type Options = JUHUU.RequestOptions;
|
|
3410
3439
|
type Response = {
|
|
@@ -3598,6 +3627,8 @@ declare namespace JUHUU {
|
|
|
3598
3627
|
type Params = {
|
|
3599
3628
|
propertyId: string;
|
|
3600
3629
|
parameterAnomalyGroupTrackerId?: string;
|
|
3630
|
+
name?: string;
|
|
3631
|
+
featureReferenceParameterIdArray?: JUHUU.ParameterAnomalyGroup.Object["featureReferenceParameterIdArray"];
|
|
3601
3632
|
};
|
|
3602
3633
|
type Options = JUHUU.RequestOptions;
|
|
3603
3634
|
type Response = {
|
|
@@ -3798,10 +3829,11 @@ declare namespace JUHUU {
|
|
|
3798
3829
|
};
|
|
3799
3830
|
namespace Create {
|
|
3800
3831
|
type Params = {
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3832
|
+
propertyId: string;
|
|
3833
|
+
name?: string;
|
|
3834
|
+
startNode?: FlowBlock;
|
|
3835
|
+
nodeArray?: FlowBlock[];
|
|
3836
|
+
edgeArray?: FlowEdge[];
|
|
3805
3837
|
};
|
|
3806
3838
|
type Options = JUHUU.RequestOptions;
|
|
3807
3839
|
type Response = {
|
|
@@ -3873,7 +3905,7 @@ declare namespace JUHUU {
|
|
|
3873
3905
|
output: Record<string, any>;
|
|
3874
3906
|
flowId: string;
|
|
3875
3907
|
propertyId: string;
|
|
3876
|
-
logArray:
|
|
3908
|
+
logArray: FlowLog[];
|
|
3877
3909
|
error: string | null;
|
|
3878
3910
|
successful: boolean;
|
|
3879
3911
|
};
|
|
@@ -4139,4 +4171,4 @@ declare namespace JUHUU {
|
|
|
4139
4171
|
}
|
|
4140
4172
|
}
|
|
4141
4173
|
|
|
4142
|
-
export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
|
4174
|
+
export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowLog, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,11 @@ type Frontend = "dashboard" | "app";
|
|
|
15
15
|
type FlowExecutionEnvironment = "dashboard" | "app" | "backend";
|
|
16
16
|
type ApiKeyStatus = "enabled" | "disabled";
|
|
17
17
|
type FlowStatus = "error" | "ready";
|
|
18
|
+
type FlowLog = {
|
|
19
|
+
severity: "debug" | "info" | "warning" | "error";
|
|
20
|
+
message: string;
|
|
21
|
+
createdAt: Date;
|
|
22
|
+
};
|
|
18
23
|
type QuickAction = {
|
|
19
24
|
icon: string | null;
|
|
20
25
|
name: LocaleString;
|
|
@@ -1882,6 +1887,16 @@ declare namespace JUHUU {
|
|
|
1882
1887
|
namespace Create {
|
|
1883
1888
|
type Params = {
|
|
1884
1889
|
propertyId: string;
|
|
1890
|
+
title?: LocaleString;
|
|
1891
|
+
subtitle?: LocaleString;
|
|
1892
|
+
parentArticleId?: string | null;
|
|
1893
|
+
markdownContent?: LocaleString;
|
|
1894
|
+
status?: "draft" | "published";
|
|
1895
|
+
languageCodeArray?: LanguageCode[];
|
|
1896
|
+
slug?: string;
|
|
1897
|
+
autoTranslateEnabled?: boolean;
|
|
1898
|
+
embeddingsGenerationEnabled?: boolean;
|
|
1899
|
+
articleGroupIdArray?: string[];
|
|
1885
1900
|
};
|
|
1886
1901
|
type Options = JUHUU.RequestOptions;
|
|
1887
1902
|
type Response = {
|
|
@@ -2222,7 +2237,7 @@ declare namespace JUHUU {
|
|
|
2222
2237
|
type Params = {
|
|
2223
2238
|
propertyId: string;
|
|
2224
2239
|
duration?: string;
|
|
2225
|
-
name?:
|
|
2240
|
+
name?: LocaleString;
|
|
2226
2241
|
amount?: number[];
|
|
2227
2242
|
continue?: number;
|
|
2228
2243
|
currencyCode?: string;
|
|
@@ -3025,6 +3040,16 @@ declare namespace JUHUU {
|
|
|
3025
3040
|
type Params = {
|
|
3026
3041
|
propertyId: string;
|
|
3027
3042
|
name?: string;
|
|
3043
|
+
previewText?: LocaleString;
|
|
3044
|
+
description?: LocaleString;
|
|
3045
|
+
highlightArray?: LocaleString[];
|
|
3046
|
+
purposeArray?: Purpose[];
|
|
3047
|
+
technologyArray?: Technology[];
|
|
3048
|
+
articleId?: string | null;
|
|
3049
|
+
bannerImageDark?: string[];
|
|
3050
|
+
bannerImageLight?: string[];
|
|
3051
|
+
model3d?: string | null;
|
|
3052
|
+
datasheet?: DeepNullable<LocaleString>;
|
|
3028
3053
|
};
|
|
3029
3054
|
type Options = JUHUU.RequestOptions;
|
|
3030
3055
|
type Response = {
|
|
@@ -3405,6 +3430,10 @@ declare namespace JUHUU {
|
|
|
3405
3430
|
namespace Create {
|
|
3406
3431
|
type Params = {
|
|
3407
3432
|
propertyId: string;
|
|
3433
|
+
name?: string;
|
|
3434
|
+
title?: LocaleString;
|
|
3435
|
+
description?: LocaleString;
|
|
3436
|
+
severity?: JUHUU.IncidentTemplate.Object["severity"];
|
|
3408
3437
|
};
|
|
3409
3438
|
type Options = JUHUU.RequestOptions;
|
|
3410
3439
|
type Response = {
|
|
@@ -3598,6 +3627,8 @@ declare namespace JUHUU {
|
|
|
3598
3627
|
type Params = {
|
|
3599
3628
|
propertyId: string;
|
|
3600
3629
|
parameterAnomalyGroupTrackerId?: string;
|
|
3630
|
+
name?: string;
|
|
3631
|
+
featureReferenceParameterIdArray?: JUHUU.ParameterAnomalyGroup.Object["featureReferenceParameterIdArray"];
|
|
3601
3632
|
};
|
|
3602
3633
|
type Options = JUHUU.RequestOptions;
|
|
3603
3634
|
type Response = {
|
|
@@ -3798,10 +3829,11 @@ declare namespace JUHUU {
|
|
|
3798
3829
|
};
|
|
3799
3830
|
namespace Create {
|
|
3800
3831
|
type Params = {
|
|
3801
|
-
|
|
3802
|
-
|
|
3803
|
-
|
|
3804
|
-
|
|
3832
|
+
propertyId: string;
|
|
3833
|
+
name?: string;
|
|
3834
|
+
startNode?: FlowBlock;
|
|
3835
|
+
nodeArray?: FlowBlock[];
|
|
3836
|
+
edgeArray?: FlowEdge[];
|
|
3805
3837
|
};
|
|
3806
3838
|
type Options = JUHUU.RequestOptions;
|
|
3807
3839
|
type Response = {
|
|
@@ -3873,7 +3905,7 @@ declare namespace JUHUU {
|
|
|
3873
3905
|
output: Record<string, any>;
|
|
3874
3906
|
flowId: string;
|
|
3875
3907
|
propertyId: string;
|
|
3876
|
-
logArray:
|
|
3908
|
+
logArray: FlowLog[];
|
|
3877
3909
|
error: string | null;
|
|
3878
3910
|
successful: boolean;
|
|
3879
3911
|
};
|
|
@@ -4139,4 +4171,4 @@ declare namespace JUHUU {
|
|
|
4139
4171
|
}
|
|
4140
4172
|
}
|
|
4141
4173
|
|
|
4142
|
-
export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
|
4174
|
+
export { type AccessControlListElement, type Address, type ApiKeyScope, type ApiKeyStatus, type AutoRenewMode, type BaseBlock, type BusinessType, type Capability, type Category, type Circumstance, type Color, type ColorScheme, type Command, type Condition, ConditionType, type ConstBooleanBlock, type ConstNumberBlock, type ConstStringBlock, type CountryCode, CountryCodeArray, type CurrencyCode, CurrencyCodeArray, type CustomClaims, type DeepNullable, type DevicePermission, type DeviceStatus, type DeviceType, type EndBlock, type Environment, type EnvironmentSettings, type ExtractType, type FlowBlock, type FlowBlockInput, type FlowControlEdge, type FlowDataEdge, type FlowEdge, type FlowExecutionEnvironment, type FlowIfBlock, type FlowLog, type FlowStatus, type FlowSwitchBlock, type Frontend, type GeneralSettings, type GeoPoint, type GraphNode, type HttpsPatchBlock, JUHUU, Juhuu, type LanguageCode, LanguageCodeArray, Layout, type LayoutBlock, type License, type LicenseTariffIdMap, type LinkType, type LocaleString, type MapFilter, type MathAddBlock, type MathAddBlockInputs, type Modality, type Offer, type OfferTime, type ParamDefinition, type ParamType, type Party, type PaymentMethod, type PaymentReason, type PaymentRefundReason, type PaymentRefundStatus, type PaymentServiceProvider, type PaymentStatus, type PayoutSettings, type PayoutStatus, type PermissionTypes, type Person, type Platform, type PlatformString, type PostingRow, type Purpose, type PushToken, type QuickAction, ReadonlyCategoryArray, ReadonlyModalityArray, ReadonlySectorArray, type RefundStatus, type Sector, type SessionCannotTerminateReason, type SessionSettings, type SessionStatus, type SessionTerminatedByType, type SessionType, Settings, type SimStatus, type StarRating, type TarifType, type TaxCode, type TimeZone, type TriggerCustomBlock, type TriggerManualBlock, type TriggerQuickActionLocationBlock, type Unit, type UserGroup, type UserType, type UtilEchoBlock, type UtilLogBlock, type Utilization, type VeloBrushDeviceDocumentUserManualStep, type Viewport, type ViewportPolygon, type VisualPriority, type hexColor };
|
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
|
},
|