You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, just upgraded Loopback to version 3 and tried to generate SDK. The generation does occur but methods get generate with option twice in the input parameters like in the following.
public createManyMsgFolders(id: any, options: any = {}, data: any[] = [], options: any = {}): Observable {
let _method: string = "POST";
let _url: string = LoopBackConfig.getPath() + "/" + LoopBackConfig.getApiVersion() +
"/Accounts/:id/MsgFolders";
let _routeParams: any = {
id: id
};
let _postBody: any = {
data: data
};
let _urlParams: any = {};
let result = this.request(_method, _url, _routeParams, _urlParams, _postBody);
return result;
}
The text was updated successfully, but these errors were encountered:
What type of issue are you creating?
What version of this module are you using?
Hi, just upgraded Loopback to version 3 and tried to generate SDK. The generation does occur but methods get generate with option twice in the input parameters like in the following.
public createManyMsgFolders(id: any, options: any = {}, data: any[] = [], options: any = {}): Observable {
let _method: string = "POST";
let _url: string = LoopBackConfig.getPath() + "/" + LoopBackConfig.getApiVersion() +
"/Accounts/:id/MsgFolders";
let _routeParams: any = {
id: id
};
let _postBody: any = {
data: data
};
let _urlParams: any = {};
let result = this.request(_method, _url, _routeParams, _urlParams, _postBody);
return result;
}
The text was updated successfully, but these errors were encountered: