jedison 1.4.0 → 1.4.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.
@@ -2361,7 +2361,8 @@ class InstanceIfThenElse extends Instance {
2361
2361
  schema: schemaClone,
2362
2362
  originalSchema: this.originalSchema,
2363
2363
  path: this.path,
2364
- parent: this.parent
2364
+ parent: this.parent,
2365
+ arrayTemplateData: this.arrayTemplateData
2365
2366
  });
2366
2367
  this.schemas.forEach((schema) => {
2367
2368
  const instance = this.jedison.createInstance({
@@ -2369,7 +2370,8 @@ class InstanceIfThenElse extends Instance {
2369
2370
  schema,
2370
2371
  originalSchema: this.originalSchema,
2371
2372
  path: this.path,
2372
- parent: this.parent
2373
+ parent: this.parent,
2374
+ arrayTemplateData: this.arrayTemplateData
2373
2375
  });
2374
2376
  this.instanceStartingValues.push(instance.getValue());
2375
2377
  this.instances.push(instance);