flamerest 1.0.88 → 1.0.90

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.
Files changed (2) hide show
  1. package/REST.d.ts +1 -1
  2. package/package.json +1 -1
package/REST.d.ts CHANGED
@@ -45,7 +45,7 @@ interface IREST {
45
45
  * @param {string} responseType Тип ответа: json или blob
46
46
  * @param {Object} customHeaders объект с доп заголовками, которые надо включить в запрос
47
47
  */
48
- request(url: string, params: object | string, type?: string, responseType?: string, isNeedToken: boolean, customHeaders?: object): object,
48
+ request(url: string, params: object | string, type?: string, responseType?: 'json' | 'blob', isNeedToken?: boolean, customHeaders?: object): object,
49
49
 
50
50
  /**
51
51
  * Получить выборку из таблицы через REST
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flamerest",
3
- "version": "1.0.88",
3
+ "version": "1.0.90",
4
4
  "description": "",
5
5
  "main": "REST.js",
6
6
  "typings": "./REST.d.ts",