@alwaysmeticulous/sdk-bundles-api 2.76.0 → 2.77.0
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.
|
@@ -139,6 +139,16 @@ export interface ReplayExecutionOptions {
|
|
|
139
139
|
* This flag is useful to reduce noise when debugging.
|
|
140
140
|
*/
|
|
141
141
|
essentialFeaturesOnly: boolean;
|
|
142
|
+
vercel?: VercelExecutionSettings;
|
|
143
|
+
}
|
|
144
|
+
export interface VercelExecutionSettings {
|
|
145
|
+
/**
|
|
146
|
+
* The protection bypass token to pass as a 'x-vercel-protection-bypass' header when downloading
|
|
147
|
+
* resources from a deployment URL with SSO or password protection enabled.
|
|
148
|
+
*
|
|
149
|
+
* https://vercel.com/docs/security/deployment-protection#protection-bypass-for-automation
|
|
150
|
+
*/
|
|
151
|
+
deploymentProtectionBypassToken: string | null;
|
|
142
152
|
}
|
|
143
153
|
export type ReplayOrchestratorScreenshottingOptions = {
|
|
144
154
|
enabled: false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/sdk-bundles-api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.77.0",
|
|
4
4
|
"description": "Meticulous common types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"depcheck": "depcheck --ignore-patterns=dist"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@alwaysmeticulous/api": "^2.
|
|
22
|
+
"@alwaysmeticulous/api": "^2.77.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"loglevel": "^1.8.0"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"bugs": {
|
|
47
47
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "0e434accc42eceb323078977344cb6298dfb5b4e"
|
|
50
50
|
}
|