Skip to content

Commit

Permalink
fix(WUDetails): Update to latest WsWorkunits.WUDetails
Browse files Browse the repository at this point in the history
Signed-off-by: Gordon Smith <gordonjsmith@gmail.com>
  • Loading branch information
GordonSmith committed Aug 1, 2018
1 parent 9015f62 commit 9aa5c75
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 4 additions & 2 deletions packages/comms/src/ecl/graph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ export class ECLGraph extends StateObject<ECLGraphEx, ECLGraphEx> 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,
Expand Down
8 changes: 7 additions & 1 deletion packages/comms/src/services/wsWorkunits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2250,6 +2250,10 @@ export namespace WUDetails {
id: string[];
}

export interface ScopeTypes {
ScopeType: string[];
}

export interface PropertyFilter {
Name?: string;
ExactValue?: string;
Expand Down Expand Up @@ -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[];
Expand Down

0 comments on commit 9aa5c75

Please sign in to comment.