@muhammedaksam/ayyildiz-node 1.0.1 → 1.0.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.
@@ -22,5 +22,5 @@ class VersionInfo {
22
22
  exports.VersionInfo = VersionInfo;
23
23
  VersionInfo.MAJOR = 1;
24
24
  VersionInfo.MINOR = 0;
25
- VersionInfo.PATCH = 1;
25
+ VersionInfo.PATCH = 2;
26
26
  //# sourceMappingURL=VersionInfo.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muhammedaksam/ayyildiz-node",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Ayyıldız Mobile Node.js SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -35,15 +35,16 @@
35
35
  "axios": "^1.10.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@eslint/js": "^9.30.1",
38
+ "@eslint/js": "^9.31.0",
39
39
  "@types/jest": "^30.0.0",
40
- "@types/node": "^24.0.12",
40
+ "@types/node": "^24.0.13",
41
41
  "@typescript-eslint/eslint-plugin": "^8.36.0",
42
42
  "@typescript-eslint/parser": "^8.36.0",
43
- "eslint": "^9.30.1",
43
+ "eslint": "^9.31.0",
44
44
  "jest": "^30.0.4",
45
45
  "prettier": "^3.6.2",
46
46
  "ts-jest": "^29.4.0",
47
+ "tsx": "^4.20.3",
47
48
  "typescript": "^5.8.3"
48
49
  },
49
50
  "engines": {
@@ -60,6 +61,9 @@
60
61
  "format:check": "prettier --check \"src/**/*.ts\" \"*.{js,json,md}\"",
61
62
  "clean": "rm -rf dist",
62
63
  "prebuild": "pnpm run clean",
63
- "check-all": "pnpm run lint && pnpm run format:check && pnpm run test"
64
+ "check-all": "pnpm run lint && pnpm run format:check && pnpm run test",
65
+ "version:show": "npx tsx scripts/version-helper.ts show",
66
+ "version:update": "npx tsx scripts/version-helper.ts update",
67
+ "version:bump": "npx tsx scripts/version-helper.ts update"
64
68
  }
65
69
  }