@readyfor/api-client-base 1.75.0-pr1466.af1e4d2 → 1.75.0-pr1466.debf293

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.
@@ -1,8 +1,9 @@
1
1
  //#region src/requestUrl.d.ts
2
- type UrlParams = Record<string, string | number>;
2
+ type PathParams = Record<string, string | number>;
3
+ type QueryParams = Record<string, unknown>;
3
4
  type UrlArgs = {
4
- path?: UrlParams;
5
- query?: UrlParams;
5
+ path?: PathParams;
6
+ query?: QueryParams;
6
7
  };
7
8
  declare const __internal__requestUrl: (rawPath: string, { path: pathParams, query }?: UrlArgs) => string;
8
9
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readyfor/api-client-base",
3
- "version": "1.75.0-pr1466.af1e4d2",
3
+ "version": "1.75.0-pr1466.debf293",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",