@hautechai/sdk 2.11.2 → 2.11.3

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.mjs CHANGED
@@ -14914,9 +14914,9 @@ var usePipelinesApi = () => {
14914
14914
  createFromTemplate: wrapCustomMethod(function(template, params) {
14915
14915
  const sdk = this;
14916
14916
  return sdk.pipelines.create({
14917
- pipelineInput: template.input,
14917
+ pipelineInput: template.getInput(),
14918
14918
  tasks: template.tasks,
14919
- outputRef: template.outputRef,
14919
+ outputRef: template.$output,
14920
14920
  state: template.state,
14921
14921
  ...params
14922
14922
  });