botbook/node_modules/json-schema-library/dist/module/lib/schema/createOneOfSchemaResult.js

12 lines
324 B
JavaScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
export function createOneOfSchemaResult(schema, oneOfSchema, oneOfIndex) {
const childSchema = { ...oneOfSchema };
Object.defineProperty(childSchema, "getOneOfOrigin", {
enumerable: false,
value: () => ({
index: oneOfIndex,
schema
})
});
return childSchema;
}