@devicecloud.dev/dcd 4.0.0 → 4.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.
- package/dist/commands/cloud.d.ts +1 -7
- package/dist/commands/cloud.js +58 -18
- package/dist/constants.d.ts +1 -0
- package/dist/constants.js +7 -3
- package/dist/gateways/api-gateway.d.ts +3 -2
- package/dist/gateways/api-gateway.js +21 -0
- package/dist/methods.js +11 -2
- package/dist/plan.d.ts +1 -0
- package/dist/plan.js +22 -4
- package/dist/types/schema.types.d.ts +310 -313
- package/dist/types/schema.types.js +1 -4
- package/oclif.manifest.json +15 -4
- package/package.json +3 -3
package/oclif.manifest.json
CHANGED
|
@@ -124,6 +124,16 @@
|
|
|
124
124
|
"multiple": false,
|
|
125
125
|
"type": "option"
|
|
126
126
|
},
|
|
127
|
+
"junit-path": {
|
|
128
|
+
"dependsOn": [
|
|
129
|
+
"report"
|
|
130
|
+
],
|
|
131
|
+
"description": "Custom file path for downloaded JUnit report (default: ./report.xml)",
|
|
132
|
+
"name": "junit-path",
|
|
133
|
+
"hasDynamicHelp": false,
|
|
134
|
+
"multiple": false,
|
|
135
|
+
"type": "option"
|
|
136
|
+
},
|
|
127
137
|
"async": {
|
|
128
138
|
"description": "Immediately return (exit code 0) from the command without waiting for the results of the run (useful for saving CI minutes)",
|
|
129
139
|
"name": "async",
|
|
@@ -151,7 +161,7 @@
|
|
|
151
161
|
"type": "option"
|
|
152
162
|
},
|
|
153
163
|
"download-artifacts": {
|
|
154
|
-
"description": "Download a zip containing the logs, screenshots and videos for each result in this run. You will debited a $0.01 egress fee for each result.
|
|
164
|
+
"description": "Download a zip containing the logs, screenshots and videos for each result in this run. You will be debited a $0.01 egress fee for each result. Options: ALL (everything), FAILED (failures only).",
|
|
155
165
|
"name": "download-artifacts",
|
|
156
166
|
"hasDynamicHelp": false,
|
|
157
167
|
"multiple": false,
|
|
@@ -382,7 +392,7 @@
|
|
|
382
392
|
"type": "option"
|
|
383
393
|
},
|
|
384
394
|
"runner-type": {
|
|
385
|
-
"description": "[experimental] The type of runner to use - note: anything other than default will incur premium pricing tiers, see https://docs.devicecloud.dev/reference/runner-type for more information",
|
|
395
|
+
"description": "[experimental] The type of runner to use - note: anything other than default will incur premium pricing tiers, see https://docs.devicecloud.dev/reference/runner-type for more information. gpu1 is Android-only and requires contacting support to enable, otherwise reverts to default.",
|
|
386
396
|
"name": "runner-type",
|
|
387
397
|
"default": "default",
|
|
388
398
|
"hasDynamicHelp": false,
|
|
@@ -390,7 +400,8 @@
|
|
|
390
400
|
"options": [
|
|
391
401
|
"default",
|
|
392
402
|
"m4",
|
|
393
|
-
"m1"
|
|
403
|
+
"m1",
|
|
404
|
+
"gpu1"
|
|
394
405
|
],
|
|
395
406
|
"type": "option"
|
|
396
407
|
},
|
|
@@ -570,5 +581,5 @@
|
|
|
570
581
|
]
|
|
571
582
|
}
|
|
572
583
|
},
|
|
573
|
-
"version": "4.0.
|
|
584
|
+
"version": "4.0.2"
|
|
574
585
|
}
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"@oclif/core": "^3",
|
|
8
8
|
"@oclif/plugin-autocomplete": "^3.0.8",
|
|
9
9
|
"@oclif/plugin-help": "^6",
|
|
10
|
-
"@oclif/plugin-not-found": "^3.
|
|
10
|
+
"@oclif/plugin-not-found": "^3.2.65",
|
|
11
11
|
"@oclif/plugin-plugins": "^4",
|
|
12
12
|
"@oclif/plugin-update": "^4.1.11",
|
|
13
13
|
"@oclif/plugin-warn-if-update-available": "^3.0.10",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"eslint-config-oclif-typescript": "^3",
|
|
39
39
|
"eslint-config-prettier": "^10.1.8",
|
|
40
40
|
"mocha": "^11.7.1",
|
|
41
|
-
"oclif": "^4",
|
|
41
|
+
"oclif": "^4.22.12",
|
|
42
42
|
"shx": "^0.4.0",
|
|
43
43
|
"ts-node": "^10.9.2",
|
|
44
44
|
"typescript": "^5.9.2"
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"version": "oclif readme && git add README.md",
|
|
81
81
|
"test": "node scripts/test-runner.mjs"
|
|
82
82
|
},
|
|
83
|
-
"version": "4.0.
|
|
83
|
+
"version": "4.0.2",
|
|
84
84
|
"bugs": {
|
|
85
85
|
"url": "https://discord.gg/gm3mJwcNw8"
|
|
86
86
|
},
|