Skip to content

Commit

Permalink
Merge pull request #4158 from GordonSmith/WSDL_SMC
Browse files Browse the repository at this point in the history
fix:  Switch to wsdl generated WsSMC
  • Loading branch information
GordonSmith authored Jan 23, 2024
2 parents 625e31e + 4621f91 commit 20ee0d2
Show file tree
Hide file tree
Showing 3 changed files with 680 additions and 606 deletions.
4 changes: 2 additions & 2 deletions packages/comms/src/ecl/activity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ export class Activity extends StateObject<UActivityState, IActivityState> implem
setBanner(request: Partial<WsSMC.SetBanner>): Promise<Activity> {
return this.connection.SetBanner({
...request
}).then((response) => {
} as WsSMC.SetBanner).then((response) => {
this.set(response);
return this;
});
}

lazyRefresh = debounce(async (): Promise<this> => {
const response = await this.connection.Activity({});
const response = await this.connection.Activity({} as WsSMC.Activity);
this.set(response);
return this;
});
Expand Down
Loading

0 comments on commit 20ee0d2

Please sign in to comment.