@gradio/client 0.7.1 → 0.7.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @gradio/client
2
2
 
3
+ ## 0.7.2
4
+
5
+ ### Fixes
6
+
7
+ - [#6327](https://github.com/gradio-app/gradio/pull/6327) [`bca6c2c80`](https://github.com/gradio-app/gradio/commit/bca6c2c80f7e5062427019de45c282238388af95) - Restore query parameters in request. Thanks [@aliabid94](https://github.com/aliabid94)!
8
+
3
9
  ## 0.7.1
4
10
 
5
11
  ### Features
package/dist/index.js CHANGED
@@ -728,7 +728,7 @@ function api_factory(fetch_implementation, WebSocket_factory) {
728
728
  host,
729
729
  config.path,
730
730
  true
731
- )}/queue/join?${params}`
731
+ )}/queue/join?${url_params ? url_params + "&" : ""}${params}`
732
732
  );
733
733
  eventSource = new EventSource(url);
734
734
  eventSource.onmessage = async function(event) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/client",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Gradio API client",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/client.ts CHANGED
@@ -657,7 +657,7 @@ export function api_factory(
657
657
  host,
658
658
  config.path,
659
659
  true
660
- )}/queue/join?${params}`
660
+ )}/queue/join?${url_params ? url_params + "&" : ""}${params}`
661
661
  );
662
662
 
663
663
  eventSource = new EventSource(url);