@malevich-studio/strapi-sdk-typescript 1.2.11 → 1.2.13
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/cli.cjs +5 -5
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +5 -5
- package/dist/cli.mjs.map +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -21294,11 +21294,11 @@ class Strapi {
|
|
|
21294
21294
|
this.token = token;
|
|
21295
21295
|
}
|
|
21296
21296
|
async fetch(endpoint, data = {}, params = {}) {
|
|
21297
|
-
|
|
21298
|
-
return await this.fetchData(queryString ? `${endpoint}?${queryString}` : endpoint, { data }, params);
|
|
21297
|
+
return await this.fetchData(endpoint, { data }, params);
|
|
21299
21298
|
}
|
|
21300
21299
|
async fetchData(endpoint, data = {}, params = {}) {
|
|
21301
|
-
|
|
21300
|
+
const queryString = params.method === 'GET' ? qs.stringify(data) : '';
|
|
21301
|
+
return await this.baseFetch(queryString ? `${endpoint}?${queryString}` : endpoint, _.merge({
|
|
21302
21302
|
headers: {
|
|
21303
21303
|
'Content-Type': 'application/json',
|
|
21304
21304
|
},
|