fable 3.0.59 → 3.0.60
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/dist/fable.compatible.js +6 -1
- package/dist/fable.compatible.min.js +1 -1
- package/dist/fable.compatible.min.js.map +1 -1
- package/dist/fable.js +6 -1
- package/dist/fable.min.js +1 -1
- package/dist/fable.min.js.map +1 -1
- package/package.json +1 -1
- package/source/services/Fable-Service-RestClient.js +2 -0
package/package.json
CHANGED
|
@@ -107,10 +107,12 @@ class FableServiceRestClient extends libFableServiceBase
|
|
|
107
107
|
{
|
|
108
108
|
tmpOptions.headers = {};
|
|
109
109
|
}
|
|
110
|
+
/* Automated headers break some APIs
|
|
110
111
|
if (!tmpOptions.headers.hasOwnProperty('Content-Type'))
|
|
111
112
|
{
|
|
112
113
|
tmpOptions.headers['Content-Type'] = 'application/json';
|
|
113
114
|
}
|
|
115
|
+
*/
|
|
114
116
|
|
|
115
117
|
tmpOptions.RequestStartTime = this.fable.log.getTimeStamp();
|
|
116
118
|
|