@aicats/sdk 1.2.2 → 1.3.0

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 CHANGED
@@ -43,7 +43,9 @@ declare enum Theme {
43
43
  /** New Year's themed cats with celebrations */
44
44
  NewYear = "NewYear",
45
45
  /** Easter-themed cats with bunnies and eggs */
46
- Easter = "Easter"
46
+ Easter = "Easter",
47
+ /** Mystical-themed cats with magical and fantasy elements */
48
+ Mystical = "Mystical"
47
49
  }
48
50
 
49
51
  /**
package/dist/index.d.ts CHANGED
@@ -43,7 +43,9 @@ declare enum Theme {
43
43
  /** New Year's themed cats with celebrations */
44
44
  NewYear = "NewYear",
45
45
  /** Easter-themed cats with bunnies and eggs */
46
- Easter = "Easter"
46
+ Easter = "Easter",
47
+ /** Mystical-themed cats with magical and fantasy elements */
48
+ Mystical = "Mystical"
47
49
  }
48
50
 
49
51
  /**
package/dist/index.js CHANGED
@@ -50,6 +50,7 @@ var Theme = /* @__PURE__ */ ((Theme2) => {
50
50
  Theme2["Xmas"] = "Xmas";
51
51
  Theme2["NewYear"] = "NewYear";
52
52
  Theme2["Easter"] = "Easter";
53
+ Theme2["Mystical"] = "Mystical";
53
54
  return Theme2;
54
55
  })(Theme || {});
55
56
 
package/dist/index.mjs CHANGED
@@ -21,6 +21,7 @@ var Theme = /* @__PURE__ */ ((Theme2) => {
21
21
  Theme2["Xmas"] = "Xmas";
22
22
  Theme2["NewYear"] = "NewYear";
23
23
  Theme2["Easter"] = "Easter";
24
+ Theme2["Mystical"] = "Mystical";
24
25
  return Theme2;
25
26
  })(Theme || {});
26
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aicats/sdk",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "Official JavaScript SDK for the ai-cats.net API",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",