cloud-ide-lms-model 1.0.11 → 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.
@@ -1,4 +1,6 @@
1
1
  export declare function stringInterpolation(variables: {
2
2
  [key: string]: string;
3
3
  }, body: string, data: any): Promise<string>;
4
- export declare const cidePath: () => void;
4
+ export declare const cidePath: {
5
+ join: (path: string[]) => string;
6
+ };
@@ -178,9 +178,8 @@ function stringInterpolation(variables, body, data) {
178
178
  });
179
179
  }
180
180
  exports.stringInterpolation = stringInterpolation;
181
- const cidePath = () => {
182
- const join = (path) => {
181
+ exports.cidePath = {
182
+ join: (path) => {
183
183
  return path.join("/");
184
- };
184
+ }
185
185
  };
186
- exports.cidePath = cidePath;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "typescript": "^5.4.2"
6
6
  },
7
7
  "name": "cloud-ide-lms-model",
8
- "version": "1.0.11",
8
+ "version": "1.0.12",
9
9
  "description": "Package for Model management of Cloud IDEsys LMS",
10
10
  "main": "lib/index.js",
11
11
  "types": "lib/index.d.ts",