tango-api-schema 2.2.126 → 2.2.127
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/index.js +2 -1
- package/package.json +1 -1
- package/schema/streaming.model.js +1 -3
package/index.js
CHANGED
|
@@ -88,7 +88,7 @@ import auditConfigModel from "./schema/auditConfig.model.js";
|
|
|
88
88
|
import revopConfigModel from "./schema/revopConfig.model.js";
|
|
89
89
|
import planoCrestLogModel from './schema/planoCrestLog.model.js';
|
|
90
90
|
import countryCurrencyModel from './schema/countryCurrency.model.js';
|
|
91
|
-
|
|
91
|
+
import streamingModel from './schema/streaming.model.js';
|
|
92
92
|
|
|
93
93
|
|
|
94
94
|
export default {
|
|
@@ -182,4 +182,5 @@ export default {
|
|
|
182
182
|
revopConfigModel,
|
|
183
183
|
planoCrestLogModel,
|
|
184
184
|
countryCurrencyModel,
|
|
185
|
+
streamingModel
|
|
185
186
|
};
|
package/package.json
CHANGED