@aloma.io/integration-sdk 3.8.34 → 3.8.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,7 +35,7 @@ export class AbstractController {
35
35
  * @param arg
36
36
  * @returns
37
37
  */
38
- autocomplete(arg) {
38
+ async autocomplete(arg) {
39
39
  return Promise.resolve({});
40
40
  }
41
41
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.8.34",
3
+ "version": "3.8.35",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -44,7 +44,7 @@ export abstract class AbstractController {
44
44
  * @param arg
45
45
  * @returns
46
46
  */
47
- protected autocomplete(arg: any): Promise<any> {
47
+ protected async autocomplete(arg: any): Promise<any> {
48
48
  return Promise.resolve({});
49
49
  }
50
50