@inweb/client 25.9.7 → 25.10.0
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/client.js +3 -3
- package/dist/client.js.map +1 -1
- package/dist/client.min.js +1 -1
- package/dist/client.module.js +2 -2
- package/dist/client.module.js.map +1 -1
- package/lib/Api/Assembly.d.ts +2 -2
- package/lib/Api/File.d.ts +2 -2
- package/lib/Api/IFile.d.ts +17 -0
- package/lib/Api/Project.d.ts +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/Api/Assembly.ts +2 -2
- package/src/Api/File.ts +2 -2
- package/src/Api/IAssembly.ts +0 -2
- package/src/Api/IFile.ts +20 -0
- package/src/Api/Project.ts +1 -1
- package/src/index.ts +1 -0
package/dist/client.js
CHANGED
|
@@ -3543,7 +3543,7 @@
|
|
|
3543
3543
|
});
|
|
3544
3544
|
}
|
|
3545
3545
|
/**
|
|
3546
|
-
* Returns a list of project
|
|
3546
|
+
* Returns a list of project files.
|
|
3547
3547
|
*/
|
|
3548
3548
|
getModels() {
|
|
3549
3549
|
return this.getFilesInformation()
|
|
@@ -4142,7 +4142,7 @@
|
|
|
4142
4142
|
.then((data) => ({
|
|
4143
4143
|
...data,
|
|
4144
4144
|
server: data.version,
|
|
4145
|
-
client: "25.
|
|
4145
|
+
client: "25.10.0",
|
|
4146
4146
|
}));
|
|
4147
4147
|
}
|
|
4148
4148
|
/**
|
|
@@ -4872,7 +4872,7 @@
|
|
|
4872
4872
|
// By use of this software, its documentation or related materials, you
|
|
4873
4873
|
// acknowledge and accept the above terms.
|
|
4874
4874
|
///////////////////////////////////////////////////////////////////////////////
|
|
4875
|
-
const version = "25.
|
|
4875
|
+
const version = "25.10.0";
|
|
4876
4876
|
|
|
4877
4877
|
exports.Assembly = Assembly;
|
|
4878
4878
|
exports.ClashTest = ClashTest;
|