osl-base-extended 2.0.15 → 2.0.17

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "osl-base-extended",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0"
@@ -97,7 +97,7 @@ declare abstract class Httpbase {
97
97
  protected http: HttpClient;
98
98
  protected post<T>(methodName: string, body: any, params?: myParams[]): Promise<HttpResponse<T>>;
99
99
  protected get<T>(methodName: string, params?: myParams[]): Promise<HttpResponse<T>>;
100
- protected put<T>(methodName: string, body: any): Promise<HttpResponse<T>>;
100
+ protected put<T>(methodName: string, body: any, params?: myParams[]): Promise<HttpResponse<T>>;
101
101
  protected patch<T>(methodName: string, body: any): Promise<HttpResponse<T>>;
102
102
  protected delete<T>(methodName: string, params?: myParams[]): Promise<HttpResponse<T>>;
103
103
  /** Multipart file upload — do NOT pass Content-Type; browser sets the boundary */