@supernova-studio/model 1.4.0 → 1.4.2

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
@@ -959,6 +959,14 @@ var ContentLoaderPayload = z35.object({
959
959
  })
960
960
  );
961
961
 
962
+ // src/utils/interop-pulsar-error.ts
963
+ import { z as z36 } from "zod";
964
+ var GitInteropPulsarError = z36.object({
965
+ errorType: z36.string(),
966
+ errorMessage: z36.string(),
967
+ trace: z36.array(z36.string())
968
+ });
969
+
962
970
  // src/utils/naming.ts
963
971
  function getCodenameFromText(name) {
964
972
  let codeName = removeDiacritics(name);
@@ -1669,14 +1677,6 @@ function isSlugReserved(slug) {
1669
1677
  // src/utils/validation.ts
1670
1678
  var slugRegex = /^[a-z0-9][a-z0-9-]*[a-z0-9]$/;
1671
1679
 
1672
- // src/utils/interop-pulsar-error.ts
1673
- import { z as z36 } from "zod";
1674
- var GitInteropPulsarError = z36.object({
1675
- errorType: z36.string(),
1676
- errorMessage: z36.string(),
1677
- trace: z36.array(z36.string())
1678
- });
1679
-
1680
1680
  // src/dsm/properties/property-definition.ts
1681
1681
  import { z as z37 } from "zod";
1682
1682
  var ElementPropertyTypeSchema = z37.enum(["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]);