apify-client 3.0.0-beta.0 → 3.0.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apify-client",
3
- "version": "3.0.0-beta.0",
3
+ "version": "3.0.0-beta.1",
4
4
  "description": "Apify API client for JavaScript",
5
5
  "engines": {
6
6
  "node": ">=22.0.0"
@@ -49,8 +49,14 @@
49
49
  "homepage": "https://docs.apify.com/api/client/js/",
50
50
  "files": [
51
51
  "dist",
52
- "!dist/*.tsbuildinfo"
52
+ "!dist/*.tsbuildinfo",
53
+ "!dist/spec_guards.*"
53
54
  ],
55
+ "apify": {
56
+ "openapiSpec": {
57
+ "version": "v2-2026-08-03T111309Z"
58
+ }
59
+ },
54
60
  "dependencies": {
55
61
  "@apify/consts": "^2.50.0",
56
62
  "@apify/log": "^2.2.6",
@@ -84,6 +90,7 @@
84
90
  "esbuild": "0.28.2",
85
91
  "express": "^5.0.0",
86
92
  "gen-esm-wrapper": "^1.1.2",
93
+ "openapi-typescript": "7.13.0",
87
94
  "oxfmt": "0.65.0",
88
95
  "oxlint": "1.79.0",
89
96
  "oxlint-tsgolint": "7.0.2001",
@@ -113,11 +120,14 @@
113
120
  "lint": "oxlint --type-aware",
114
121
  "lint:fix": "oxlint --type-aware --fix",
115
122
  "tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
123
+ "tsc-check-scripts": "tsc --noEmit --project tsconfig.scripts.json",
116
124
  "format": "oxfmt",
117
125
  "format:check": "oxfmt --check",
118
126
  "api:extract": "pnpm build && pnpm dlx github:apify/api-extractor-report --packages=. --extract-command='pnpm api:extract'",
119
127
  "api:check": "pnpm dlx github:apify/api-extractor-report --packages=. --extract-command='pnpm api:extract' --verify",
120
128
  "build:node": "tsc",
121
- "build:browser": "rsbuild build"
129
+ "build:browser": "rsbuild build",
130
+ "spec:fetch": "node scripts/openapi_spec.mts fetch",
131
+ "generate:types": "node scripts/openapi_spec.mts fetch && node scripts/generate_types.mts && node scripts/openapi_spec.mts record-version"
122
132
  }
123
133
  }