@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.
@@ -3876,7 +3876,8 @@ var init_intent_router = __esm({
3876
3876
  required: f.required,
3877
3877
  maxLen: f.maxLen,
3878
3878
  max: f.max,
3879
- scope: f.scope
3879
+ scope: f.scope,
3880
+ ...f.encode !== void 0 ? { encode: f.encode } : {}
3880
3881
  }))
3881
3882
  };
3882
3883
  this.intentSchemas.set(meta.intent, schema2);
@@ -3900,7 +3901,8 @@ var init_intent_router = __esm({
3900
3901
  required: f.required,
3901
3902
  maxLen: f.maxLen,
3902
3903
  max: f.max,
3903
- scope: f.scope
3904
+ scope: f.scope,
3905
+ ...f.encode !== void 0 ? { encode: f.encode } : {}
3904
3906
  }))
3905
3907
  };
3906
3908
  this.intentSchemas.set(meta.intent, schema);