@devicecloud.dev/dcd 4.1.9-beta.0 → 4.2.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.
- package/dist/commands/cloud.js +2 -2
- package/dist/methods.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/commands/cloud.js
CHANGED
|
@@ -99,9 +99,9 @@ class Cloud extends core_1.Command {
|
|
|
99
99
|
// Store debug flag for use in catch block
|
|
100
100
|
debugFlag = debug === true;
|
|
101
101
|
jsonFile = flags['json-file'] === true;
|
|
102
|
+
this.log(`CLI Version: ${this.config.version}`);
|
|
102
103
|
if (debug) {
|
|
103
104
|
this.log('[DEBUG] Starting command execution with debug logging enabled');
|
|
104
|
-
this.log(`[DEBUG] CLI Version: ${this.config.version}`);
|
|
105
105
|
this.log(`[DEBUG] Node version: ${process.versions.node}`);
|
|
106
106
|
this.log(`[DEBUG] OS: ${process.platform} ${process.arch}`);
|
|
107
107
|
}
|
|
@@ -176,7 +176,7 @@ class Cloud extends core_1.Command {
|
|
|
176
176
|
this.log(styling_1.colors.info('ℹ') + ' ' + styling_1.colors.dim('Note: runnerType m1 is experimental and currently supports Android (Pixel 7, API Level 34) only.'));
|
|
177
177
|
}
|
|
178
178
|
if (runnerType === 'gpu1') {
|
|
179
|
-
this.log(styling_1.colors.info('ℹ') + ' ' + styling_1.colors.dim('Note: runnerType gpu1 is Android-only (
|
|
179
|
+
this.log(styling_1.colors.info('ℹ') + ' ' + styling_1.colors.dim('Note: runnerType gpu1 is Android-only (all devices, API Level 34 or 35), available to all users.'));
|
|
180
180
|
}
|
|
181
181
|
const { firstFile, secondFile } = args;
|
|
182
182
|
let finalBinaryId = appBinaryId;
|
package/dist/methods.js
CHANGED
|
@@ -448,8 +448,8 @@ async function performUpload(config) {
|
|
|
448
448
|
console.log(`[DEBUG] Upload summary - Supabase: ${supabaseResult.success ? '✓' : '✗'}, Backblaze: ${backblazeResult.success ? '✓' : '✗'}`);
|
|
449
449
|
console.log('[DEBUG] Finalizing upload...');
|
|
450
450
|
console.log(`[DEBUG] Target endpoint: ${apiUrl}/uploads/finaliseUpload`);
|
|
451
|
-
console.log(`[DEBUG]
|
|
452
|
-
console.log(`[DEBUG]
|
|
451
|
+
console.log(`[DEBUG] Uploaded to staging path: ${tempPath}`);
|
|
452
|
+
console.log(`[DEBUG] API will move to final path: ${finalPath}`);
|
|
453
453
|
console.log(`[DEBUG] Supabase upload status: ${supabaseResult.success ? 'SUCCESS' : 'FAILED'}`);
|
|
454
454
|
console.log(`[DEBUG] Backblaze upload status: ${backblazeResult.success ? 'SUCCESS' : 'FAILED'}`);
|
|
455
455
|
if (hasWarning)
|
package/oclif.manifest.json
CHANGED