@readyfor/api-client-base 1.75.0-pr1466.debf293 → 1.75.0-pr1467.5a14ea8
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/requestUrl.d.ts +3 -4
- package/package.json +1 -1
package/dist/requestUrl.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
//#region src/requestUrl.d.ts
|
|
2
|
-
type
|
|
3
|
-
type QueryParams = Record<string, unknown>;
|
|
2
|
+
type UrlParams = Record<string, string | number>;
|
|
4
3
|
type UrlArgs = {
|
|
5
|
-
path?:
|
|
6
|
-
query?:
|
|
4
|
+
path?: UrlParams;
|
|
5
|
+
query?: UrlParams;
|
|
7
6
|
};
|
|
8
7
|
declare const __internal__requestUrl: (rawPath: string, { path: pathParams, query }?: UrlArgs) => string;
|
|
9
8
|
//#endregion
|