in lib/client/services/company/company.service.ts [26:41]
async performCompanyAction(
companyAction: CompanyAction,
filterStatement: Statement,
): Promise<UpdateResult> {
console.log(companyAction.constructor.name);
return this._client.performCompanyAction({
companyAction: {
attributes: {
"xsi:type": companyAction.constructor.name,
},
...companyAction.buildAttributes(),
},
statement: filterStatement,
});
}