cloud-ide-lms-model 1.0.10 → 1.0.12
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.controllerRoutes = void 0;
|
|
4
4
|
const controllerRoutes = {
|
|
5
|
-
/** Endpoint to
|
|
5
|
+
/** Endpoint to core module
|
|
6
6
|
* for more details refer https://docs.google.com/document/d/1CwB4evLsQuatG4jI0U1faRtmqtNmIfZOE4fDWiz9-sQ/edit#bookmark=id.r7i5y3qldjhw
|
|
7
7
|
*/
|
|
8
8
|
coreRoutes: "core"
|
|
@@ -16,7 +16,7 @@ var __asyncValues = (this && this.__asyncValues) || function (o) {
|
|
|
16
16
|
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.stringInterpolation = void 0;
|
|
19
|
+
exports.cidePath = exports.stringInterpolation = void 0;
|
|
20
20
|
function stringInterpolation(variables, body, data) {
|
|
21
21
|
return __awaiter(this, void 0, void 0, function* () {
|
|
22
22
|
/*
|
|
@@ -178,3 +178,8 @@ function stringInterpolation(variables, body, data) {
|
|
|
178
178
|
});
|
|
179
179
|
}
|
|
180
180
|
exports.stringInterpolation = stringInterpolation;
|
|
181
|
+
exports.cidePath = {
|
|
182
|
+
join: (path) => {
|
|
183
|
+
return path.join("/");
|
|
184
|
+
}
|
|
185
|
+
};
|