@tagsamurai/gsts-api-services 2.0.1-alpha.0 → 2.0.1-alpha.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tagsamurai/gsts-api-services",
3
- "version": "2.0.1-alpha.0",
3
+ "version": "2.0.1-alpha.1",
4
4
  "author": "developer.tagsamurai",
5
5
  "description": "Global Settings Tag Samurai Services Library",
6
6
  "module": "./api-services.es.js",
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Builds body parameters by processing and parsing JSON values if valid.
3
+ *
4
+ * @param params - Optional filter parameters for asset data
5
+ * @returns An object containing processed parameters where JSON strings are parsed into objects
6
+ */
7
+ export declare const buildBodyParams: (params?: Record<string, unknown>) => Record<string, unknown>;
@@ -2,3 +2,4 @@ export { createAxiosInstance } from './createInstance.util';
2
2
  export { getBaseURL } from './getBaseURL.util';
3
3
  export { getImageURL } from './getImageURL.util';
4
4
  export { queryParamsStringfy } from './queryParamsStringify.util';
5
+ export { buildBodyParams } from './buildBodyParams.util';