@supernova-studio/model 1.48.13 → 1.48.15
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.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -953,6 +953,9 @@ var SupernovaException = class _SupernovaException extends Error {
|
|
|
953
953
|
static thirdPartyError(message) {
|
|
954
954
|
return new _SupernovaException("ThirdPartyError", message);
|
|
955
955
|
}
|
|
956
|
+
static userDeactivated(message) {
|
|
957
|
+
return new _SupernovaException("UserDeactivated", message);
|
|
958
|
+
}
|
|
956
959
|
//
|
|
957
960
|
// To refactor
|
|
958
961
|
//
|