@globus/sdk 6.2.0-canary.25.1df9ba5 → 6.2.0-canary.27.8eef7eb

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/cjs/index.js CHANGED
@@ -2625,7 +2625,7 @@ var start = function(tunnel_uuid, options, sdkOptions) {
2625
2625
  path: `/v2/tunnels/${tunnel_uuid}`,
2626
2626
  method: "PATCH" /* PATCH */
2627
2627
  },
2628
- { payload: { data: { attributes: { ...options } } } },
2628
+ { payload: { data: { attributes: { ...options.payload } } } },
2629
2629
  sdkOptions
2630
2630
  );
2631
2631
  };
@@ -2637,7 +2637,7 @@ var stop = function(tunnel_uuid, options = {}, sdkOptions) {
2637
2637
  path: `/v2/tunnels/${tunnel_uuid}`,
2638
2638
  method: "PATCH" /* PATCH */
2639
2639
  },
2640
- { payload: { data: { attributes: { ...options, state: "STOPPING" } } } },
2640
+ { payload: { data: { attributes: { ...options.payload, state: "STOPPING" } } } },
2641
2641
  sdkOptions
2642
2642
  );
2643
2643
  };