@vercel/client 18.4.2 → 18.4.3
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/types.d.ts +6 -1
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -133,6 +133,11 @@ export interface DeploymentGithubData {
|
|
|
133
133
|
silent: boolean;
|
|
134
134
|
autoJobCancelation: boolean;
|
|
135
135
|
}
|
|
136
|
+
export type VercelConfigSchedule = Omit<Schedule, 'target'> & {
|
|
137
|
+
target: Schedule['target'] | {
|
|
138
|
+
entrypoint: string;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
136
141
|
export declare const fileNameSymbol: unique symbol;
|
|
137
142
|
export interface VercelConfig {
|
|
138
143
|
[fileNameSymbol]?: string;
|
|
@@ -165,7 +170,7 @@ export interface VercelConfig {
|
|
|
165
170
|
outputDirectory?: string | null;
|
|
166
171
|
images?: Images;
|
|
167
172
|
crons?: Cron[];
|
|
168
|
-
schedules?:
|
|
173
|
+
schedules?: VercelConfigSchedule[];
|
|
169
174
|
bunVersion?: string;
|
|
170
175
|
proxy?: ProxyConfig;
|
|
171
176
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vercel/client",
|
|
3
|
-
"version": "18.4.
|
|
3
|
+
"version": "18.4.3",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"homepage": "https://vercel.com",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"querystring": "^0.2.0",
|
|
38
38
|
"sleep-promise": "8.0.1",
|
|
39
39
|
"tar-fs": "1.16.3",
|
|
40
|
-
"@vercel/
|
|
40
|
+
"@vercel/error-utils": "2.2.1",
|
|
41
41
|
"@vercel/routing-utils": "6.6.0",
|
|
42
|
-
"@vercel/
|
|
42
|
+
"@vercel/build-utils": "14.11.0"
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"build": "node ../../utils/build.mjs",
|