@azure/arm-hybridcompute 4.1.0-alpha.20250130.1 → 4.1.0-alpha.20250203.1
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/tsdoc-metadata.json +1 -1
package/dist/index.js
CHANGED
@@ -506,7 +506,7 @@ function createLroSpec(inputs) {
|
|
506
506
|
requestPath: spec.path,
|
507
507
|
sendInitialRequest: () => sendOperationFn(args, spec),
|
508
508
|
sendPollRequest: (path, options) => {
|
509
|
-
const restSpec = tslib.__rest(spec, ["requestBody"]);
|
509
|
+
const { requestBody } = spec, restSpec = tslib.__rest(spec, ["requestBody"]);
|
510
510
|
return sendOperationFn(args, Object.assign(Object.assign({}, restSpec), { httpMethod: "GET", path, abortSignal: options === null || options === undefined ? undefined : options.abortSignal }));
|
511
511
|
},
|
512
512
|
};
|