@meshmakers/octo-services 3.4.1070 → 3.4.1080
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/README.md
CHANGED
|
@@ -4531,7 +4531,7 @@ class AssetRepoService {
|
|
|
4531
4531
|
.set('importStrategy', importStrategy.toString());
|
|
4532
4532
|
if (this.configurationService.config?.assetServices) {
|
|
4533
4533
|
const formData = new FormData();
|
|
4534
|
-
formData.append(
|
|
4534
|
+
formData.append('file', file);
|
|
4535
4535
|
const r = await firstValueFrom(this.httpClient.post(this.configurationService.config.assetServices + tenantId + '/v1/Models/ImportRt', formData, {
|
|
4536
4536
|
params,
|
|
4537
4537
|
observe: 'response'
|
|
@@ -4545,7 +4545,7 @@ class AssetRepoService {
|
|
|
4545
4545
|
.set('importStrategy', importStrategy.toString());
|
|
4546
4546
|
if (this.configurationService.config?.assetServices) {
|
|
4547
4547
|
const formData = new FormData();
|
|
4548
|
-
formData.append(
|
|
4548
|
+
formData.append('file', file);
|
|
4549
4549
|
const r = await firstValueFrom(this.httpClient.post(this.configurationService.config.assetServices + tenantId + '/v1/Models/ImportCk', formData, {
|
|
4550
4550
|
params,
|
|
4551
4551
|
observe: 'response'
|
|
@@ -4778,7 +4778,7 @@ class HealthService {
|
|
|
4778
4778
|
return error.error;
|
|
4779
4779
|
}
|
|
4780
4780
|
}
|
|
4781
|
-
console.error(
|
|
4781
|
+
console.error('error', error);
|
|
4782
4782
|
}
|
|
4783
4783
|
return null;
|
|
4784
4784
|
}
|