@percy/client 1.27.0-beta.0 → 1.27.0-beta.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.
- package/dist/client.js +6 -2
- package/package.json +4 -4
package/dist/client.js
CHANGED
|
@@ -365,7 +365,9 @@ export class PercyClient {
|
|
|
365
365
|
tiles = [],
|
|
366
366
|
externalDebugUrl,
|
|
367
367
|
ignoredElementsData,
|
|
368
|
-
domInfoSha
|
|
368
|
+
domInfoSha,
|
|
369
|
+
consideredElementsData,
|
|
370
|
+
metadata
|
|
369
371
|
} = {}) {
|
|
370
372
|
validateId('snapshot', snapshotId);
|
|
371
373
|
// Remove post percy api deploy
|
|
@@ -385,7 +387,9 @@ export class PercyClient {
|
|
|
385
387
|
attributes: {
|
|
386
388
|
'external-debug-url': externalDebugUrl || null,
|
|
387
389
|
'ignore-elements-data': ignoredElementsData || null,
|
|
388
|
-
'
|
|
390
|
+
'consider-elements-data': consideredElementsData || null,
|
|
391
|
+
'dom-info-sha': domInfoSha || null,
|
|
392
|
+
metadata: metadata || null
|
|
389
393
|
},
|
|
390
394
|
relationships: {
|
|
391
395
|
tag: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/client",
|
|
3
|
-
"version": "1.27.0-beta.
|
|
3
|
+
"version": "1.27.0-beta.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"test:coverage": "yarn test --coverage"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@percy/env": "1.27.0-beta.
|
|
36
|
-
"@percy/logger": "1.27.0-beta.
|
|
35
|
+
"@percy/env": "1.27.0-beta.2",
|
|
36
|
+
"@percy/logger": "1.27.0-beta.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "bac46d4a3352884d4466cbc543ea599af33536ca"
|
|
39
39
|
}
|