This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch 3207-remove-pipeline-element-recommender
in repository https://gitbox.apache.org/repos/asf/streampipes.git

commit 6b6069584dbc99ee75386c730b8fea80dbc5a4d0
Author: Dominik Riemer <[email protected]>
AuthorDate: Tue Sep 3 17:49:18 2024 +0200

    Merge model
---
 .../platform-services/src/lib/model/gen/streampipes-model.ts   | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git 
a/ui/projects/streampipes/platform-services/src/lib/model/gen/streampipes-model.ts
 
b/ui/projects/streampipes/platform-services/src/lib/model/gen/streampipes-model.ts
index e03d42804b..5229982e53 100644
--- 
a/ui/projects/streampipes/platform-services/src/lib/model/gen/streampipes-model.ts
+++ 
b/ui/projects/streampipes/platform-services/src/lib/model/gen/streampipes-model.ts
@@ -20,7 +20,7 @@
 /* tslint:disable */
 /* eslint-disable */
 // @ts-nocheck
-// Generated using typescript-generator version 3.2.1263 on 2024-09-03 
16:16:50.
+// Generated using typescript-generator version 3.2.1263 on 2024-09-03 
17:38:51.
 
 export class NamedStreamPipesEntity implements Storable {
     '@class':
@@ -2614,11 +2614,9 @@ export class PipelineElementMonitoringInfo {
 }
 
 export class PipelineElementRecommendation {
-    count: number;
     description: string;
     elementId: string;
     name: string;
-    weight: number;
 
     static fromData(
         data: PipelineElementRecommendation,
@@ -2628,18 +2626,15 @@ export class PipelineElementRecommendation {
             return data;
         }
         const instance = target || new PipelineElementRecommendation();
-        instance.count = data.count;
         instance.description = data.description;
         instance.elementId = data.elementId;
         instance.name = data.name;
-        instance.weight = data.weight;
         return instance;
     }
 }
 
 export class PipelineElementRecommendationMessage {
     possibleElements: PipelineElementRecommendation[];
-    recommendedElements: PipelineElementRecommendation[];
     success: boolean;
 
     static fromData(
@@ -2653,9 +2648,6 @@ export class PipelineElementRecommendationMessage {
         instance.possibleElements = __getCopyArrayFn(
             PipelineElementRecommendation.fromData,
         )(data.possibleElements);
-        instance.recommendedElements = __getCopyArrayFn(
-            PipelineElementRecommendation.fromData,
-        )(data.recommendedElements);
         instance.success = data.success;
         return instance;
     }

Reply via email to