@microsoft/teamsfx-core 3.0.7-alpha.02a5b8d9f.0 → 3.0.7-alpha.193ff0359.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "~6.2",
3
- "localVersion": "6.2.1-alpha.02a5b8d9f.0",
3
+ "localVersion": "6.2.1-alpha.193ff0359.0",
4
4
  "tagPrefix": "templates@",
5
5
  "vstagPrefix": "templates-vs@",
6
6
  "vsversion": "18.0.0",
@@ -989,7 +989,7 @@ module.exports = { {{operationId}}Handler };`,
989
989
  ):
990
990
  path = getattr(parameters, "path", {})
991
991
  body = getattr(parameters, "body", None)
992
- query = getattr(parameters, "query", {})
992
+ query = getattr(parameters, "query", {}) or {}
993
993
  resp = client.{{operationId}}(**path, json=body, _headers={}, _params=query, _cookies={})
994
994
 
995
995
  if resp.status_code != 200: