@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 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
@@ -6,6 +6,7 @@ async function getAllCustomObjects(schemaName: string, queryParams: any = {}) {
6
6
  const response = await axiosAPI.request({
7
7
  method: 'get',
8
8
  url: `custom-entity/${schemaName}`,
9
+ params: queryParams
9
10
  })
10
11
  return response.data;
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@konversi/konversi-client",
3
- "version": "1.1.8",
3
+ "version": "1.2.0",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",