@konversi/konversi-client 1.1.8 → 1.2.0
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/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -217,7 +217,8 @@ function getAllCustomObjects(_0) {
|
|
|
217
217
|
return __async(this, arguments, function* (schemaName, queryParams = {}) {
|
|
218
218
|
const response = yield axiosAPI_default.request({
|
|
219
219
|
method: "get",
|
|
220
|
-
url: `custom-entity/${schemaName}
|
|
220
|
+
url: `custom-entity/${schemaName}`,
|
|
221
|
+
params: queryParams
|
|
221
222
|
});
|
|
222
223
|
return response.data;
|
|
223
224
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -186,7 +186,8 @@ function getAllCustomObjects(_0) {
|
|
|
186
186
|
return __async(this, arguments, function* (schemaName, queryParams = {}) {
|
|
187
187
|
const response = yield axiosAPI_default.request({
|
|
188
188
|
method: "get",
|
|
189
|
-
url: `custom-entity/${schemaName}
|
|
189
|
+
url: `custom-entity/${schemaName}`,
|
|
190
|
+
params: queryParams
|
|
190
191
|
});
|
|
191
192
|
return response.data;
|
|
192
193
|
});
|
package/index.ts
CHANGED