@vercel/client 12.0.1 → 12.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.
Files changed (2) hide show
  1. package/dist/types.d.ts +15 -0
  2. package/package.json +3 -3
package/dist/types.d.ts CHANGED
@@ -91,6 +91,20 @@ export interface VercelConfig {
91
91
  alias?: string | string[];
92
92
  regions?: string[];
93
93
  projectSettings?: ProjectSettings;
94
+ buildCommand?: string | null;
95
+ ignoreCommand?: string | null;
96
+ devCommand?: string | null;
97
+ installCommand?: string | null;
98
+ framework?: string | null;
99
+ outputDirectory?: string | null;
100
+ }
101
+ export interface GitMetadata {
102
+ commitAuthorName?: string | undefined;
103
+ commitMessage?: string | undefined;
104
+ commitRef?: string | undefined;
105
+ commitSha?: string | undefined;
106
+ dirty?: boolean | undefined;
107
+ remoteUrl: string;
94
108
  }
95
109
  /**
96
110
  * Options that will be sent to the API.
@@ -116,4 +130,5 @@ export interface DeploymentOptions {
116
130
  public?: boolean;
117
131
  meta?: Dictionary<string>;
118
132
  projectSettings?: ProjectSettings;
133
+ gitMetadata?: GitMetadata;
119
134
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/client",
3
- "version": "12.0.1",
3
+ "version": "12.0.2",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "homepage": "https://vercel.com",
@@ -42,7 +42,7 @@
42
42
  ]
43
43
  },
44
44
  "dependencies": {
45
- "@vercel/build-utils": "4.1.0",
45
+ "@vercel/build-utils": "4.2.0",
46
46
  "@zeit/fetch": "5.2.0",
47
47
  "async-retry": "1.2.3",
48
48
  "async-sema": "3.0.0",
@@ -54,5 +54,5 @@
54
54
  "querystring": "^0.2.0",
55
55
  "sleep-promise": "8.0.1"
56
56
  },
57
- "gitHead": "0c7b54edad6adf48505abf2cbec01691b85963bb"
57
+ "gitHead": "eed39913e1394477b224c38efe29429b17eeada6"
58
58
  }