Skip to content

Commit

Permalink
fix: Switch to wsdl generated WsSMC
Browse files Browse the repository at this point in the history
Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
  • Loading branch information
GordonSmith committed Jan 23, 2024
1 parent 5e11e56 commit 4621f91
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 4621f91

Please sign in to comment.