From 9aa5c75483a53d848311d5a3c150d48ea9744683 Mon Sep 17 00:00:00 2001 From: Gordon Smith Date: Tue, 31 Jul 2018 07:41:26 +0100 Subject: [PATCH] fix(WUDetails): Update to latest WsWorkunits.WUDetails Signed-off-by: Gordon Smith --- packages/comms/src/ecl/graph.ts | 6 ++++-- packages/comms/src/services/wsWorkunits.ts | 8 +++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/comms/src/ecl/graph.ts b/packages/comms/src/ecl/graph.ts index 381942f088..2b196ea315 100644 --- a/packages/comms/src/ecl/graph.ts +++ b/packages/comms/src/ecl/graph.ts @@ -48,9 +48,11 @@ export class ECLGraph extends StateObject implements ECL ScopeTypes: ["graph", "subgraph", "activity", "edge"] }, PropertiesToReturn: { - AllProperties: true, AllStatistics: true, - AllHints: true + AllAttributes: true, + AllHints: true, + AllProperties: true, + AllScopes: true }, ScopeOptions: { IncludeId: true, diff --git a/packages/comms/src/services/wsWorkunits.ts b/packages/comms/src/services/wsWorkunits.ts index a52368755f..7b8d20bce7 100644 --- a/packages/comms/src/services/wsWorkunits.ts +++ b/packages/comms/src/services/wsWorkunits.ts @@ -2250,6 +2250,10 @@ export namespace WUDetails { id: string[]; } + export interface ScopeTypes { + ScopeType: string[]; + } + export interface PropertyFilter { Name?: string; ExactValue?: string; @@ -2297,8 +2301,10 @@ export namespace WUDetails { export interface PropertiesToReturn { AllStatistics?: boolean; - AllProperties?: boolean; + AllAttributes?: boolean; AllHints?: boolean; + AllScopes?: boolean; + AllProperties?: boolean; MinVersion?: string; Measure?: string; Properties?: string[];