@nextera.one/axis-server-sdk 2.3.23 → 2.3.24

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
@@ -3732,7 +3732,8 @@ var init_intent_router = __esm({
3732
3732
  required: f.required,
3733
3733
  maxLen: f.maxLen,
3734
3734
  max: f.max,
3735
- scope: f.scope
3735
+ scope: f.scope,
3736
+ ...f.encode !== void 0 ? { encode: f.encode } : {}
3736
3737
  }))
3737
3738
  };
3738
3739
  this.intentSchemas.set(meta.intent, schema2);
@@ -3756,7 +3757,8 @@ var init_intent_router = __esm({
3756
3757
  required: f.required,
3757
3758
  maxLen: f.maxLen,
3758
3759
  max: f.max,
3759
- scope: f.scope
3760
+ scope: f.scope,
3761
+ ...f.encode !== void 0 ? { encode: f.encode } : {}
3760
3762
  }))
3761
3763
  };
3762
3764
  this.intentSchemas.set(meta.intent, schema);