@cardog/api 0.2.0 → 0.2.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.1 (2026-03-31)
4
+
5
+ ### Fixed
6
+ - Include README.md in npm package
7
+ - Fix type exports for `ClientConfig` and `RequestOptions`
8
+
3
9
  ## 0.2.0 (2026-03-31)
4
10
 
5
11
  ### Breaking Changes
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  var zod = require('zod');
6
6
 
7
7
  // src/base.ts
8
- var CLIENT_VERSION = "0.2.0";
8
+ var CLIENT_VERSION = "0.2.1";
9
9
  var DEFAULT_BASE_URL = "https://api.cardog.app/v1";
10
10
  var APIError = class extends Error {
11
11
  constructor(message, status, code, data) {
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
2
2
 
3
3
  // src/base.ts
4
- var CLIENT_VERSION = "0.2.0";
4
+ var CLIENT_VERSION = "0.2.1";
5
5
  var DEFAULT_BASE_URL = "https://api.cardog.app/v1";
6
6
  var APIError = class extends Error {
7
7
  constructor(message, status, code, data) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cardog/api",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Official Cardog API client library for vehicle data, market analysis, and VIN decoding",
5
5
  "license": "MIT",
6
6
  "homepage": "https://docs.cardog.app",
@@ -41,7 +41,8 @@
41
41
  "types": "./dist/index.d.ts",
42
42
  "files": [
43
43
  "dist",
44
- "CHANGELOG.md"
44
+ "CHANGELOG.md",
45
+ "README.md"
45
46
  ],
46
47
  "scripts": {
47
48
  "build": "tsup",