@hautechai/sdk 2.11.2 → 2.11.4

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 CHANGED
@@ -15199,9 +15199,9 @@ var usePipelinesApi = () => {
15199
15199
  createFromTemplate: wrapCustomMethod(function(template, params) {
15200
15200
  const sdk = this;
15201
15201
  return sdk.pipelines.create({
15202
- pipelineInput: template.input,
15202
+ pipelineInput: template.getInput(),
15203
15203
  tasks: template.tasks,
15204
- outputRef: template.outputRef,
15204
+ outputRef: template.$output,
15205
15205
  state: template.state,
15206
15206
  ...params
15207
15207
  });