@rtsdk/topia 0.5.3 → 0.5.4
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/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -41579,7 +41579,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
41579
41579
|
return new DroppedAsset(this.topia, id, urlSlug, { attributes: response.data });
|
|
41580
41580
|
}
|
|
41581
41581
|
catch (error) {
|
|
41582
|
-
throw this.errorHandler({ error, params });
|
|
41582
|
+
throw this.errorHandler({ error, params, sdkMethod: "DroppedAssetFactory.getWithUniqueName" });
|
|
41583
41583
|
}
|
|
41584
41584
|
});
|
|
41585
41585
|
}
|
|
@@ -41599,7 +41599,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
41599
41599
|
return new DroppedAsset(this.topia, id, urlSlug, { credentials: asset.credentials });
|
|
41600
41600
|
}
|
|
41601
41601
|
catch (error) {
|
|
41602
|
-
throw this.errorHandler({ error, params });
|
|
41602
|
+
throw this.errorHandler({ error, params, sdkMethod: "DroppedAssetFactory.drop" });
|
|
41603
41603
|
}
|
|
41604
41604
|
});
|
|
41605
41605
|
}
|
package/dist/index.js
CHANGED
|
@@ -41577,7 +41577,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
41577
41577
|
return new DroppedAsset(this.topia, id, urlSlug, { attributes: response.data });
|
|
41578
41578
|
}
|
|
41579
41579
|
catch (error) {
|
|
41580
|
-
throw this.errorHandler({ error, params });
|
|
41580
|
+
throw this.errorHandler({ error, params, sdkMethod: "DroppedAssetFactory.getWithUniqueName" });
|
|
41581
41581
|
}
|
|
41582
41582
|
});
|
|
41583
41583
|
}
|
|
@@ -41597,7 +41597,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
41597
41597
|
return new DroppedAsset(this.topia, id, urlSlug, { credentials: asset.credentials });
|
|
41598
41598
|
}
|
|
41599
41599
|
catch (error) {
|
|
41600
|
-
throw this.errorHandler({ error, params });
|
|
41600
|
+
throw this.errorHandler({ error, params, sdkMethod: "DroppedAssetFactory.drop" });
|
|
41601
41601
|
}
|
|
41602
41602
|
});
|
|
41603
41603
|
}
|
package/package.json
CHANGED