@supernova-studio/model 1.48.14 → 1.48.16

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.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
  //
@@ -3822,7 +3825,6 @@ var FileStructureStats = z93.object({
3822
3825
  componentSets: zeroNumberByDefault()
3823
3826
  });
3824
3827
  var SourceImportSummaryByTokenTypeKey = DesignTokenType.or(
3825
- // Backward compatibility
3826
3828
  z93.enum(["Measure", "Radius", "GenericToken", "Font", "Text"])
3827
3829
  );
3828
3830
  var SourceImportSummaryByTokenType = z93.record(SourceImportSummaryByTokenTypeKey, z93.number());