osl-base-extended 3.0.0 → 3.0.1

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": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.0",
6
6
  "@angular/core": "^21.2.0"
@@ -104,7 +104,7 @@ declare abstract class Httpbase {
104
104
  protected patch<T>(methodName: string, body: any): Promise<HttpResponse<T>>;
105
105
  protected delete<T>(methodName: string, params?: myParams[]): Promise<HttpResponse<T>>;
106
106
  /** Multipart file upload — do NOT pass Content-Type; browser sets the boundary */
107
- protected upload<T>(methodName: string, formData: FormData): Promise<HttpResponse<T>>;
107
+ protected upload<T>(methodName: string, formData: FormData, params: myParams[]): Promise<HttpResponse<T>>;
108
108
  }
109
109
 
110
110
  declare class DialogWrapper {