bruce-models 4.9.4 → 4.9.5
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/bruce-models.es5.js +5 -2
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +5 -2
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/bruce-models.js +1 -1
- package/dist/lib/data-source/data-source.js +4 -1
- package/dist/lib/data-source/data-source.js.map +1 -1
- package/dist/types/bruce-models.d.ts +1 -1
- package/dist/types/data-source/data-source.d.ts +4 -1
- package/package.json +1 -1
package/dist/bruce-models.umd.js
CHANGED
|
@@ -14041,7 +14041,10 @@
|
|
|
14041
14041
|
api = exports.ENVIRONMENT.Api().GetBruceApi();
|
|
14042
14042
|
}
|
|
14043
14043
|
const res = yield api.POST("source/analyze", {
|
|
14044
|
-
"DataSamples": params.dataSamples
|
|
14044
|
+
"DataSamples": params.dataSamples,
|
|
14045
|
+
"SchemaSource": params.schemaSource,
|
|
14046
|
+
"SchemaTarget": params.schemaTarget,
|
|
14047
|
+
"DataMapping": params.dataMapping
|
|
14045
14048
|
}, exports.Api.PrepReqParams(reqParams));
|
|
14046
14049
|
return {
|
|
14047
14050
|
dataMapping: res.DataMapping,
|
|
@@ -14081,7 +14084,7 @@
|
|
|
14081
14084
|
})(exports.DataSource || (exports.DataSource = {}));
|
|
14082
14085
|
|
|
14083
14086
|
// This is updated with the package.json version on build.
|
|
14084
|
-
const VERSION = "4.9.
|
|
14087
|
+
const VERSION = "4.9.5";
|
|
14085
14088
|
|
|
14086
14089
|
exports.VERSION = VERSION;
|
|
14087
14090
|
exports.AbstractApi = AbstractApi;
|