zoomcli 0.2.3__tar.gz → 0.2.4__tar.gz
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.
- {zoomcli-0.2.3 → zoomcli-0.2.4}/CHANGELOG.md +7 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/Cargo.lock +1 -1
- {zoomcli-0.2.3 → zoomcli-0.2.4}/Cargo.toml +1 -1
- {zoomcli-0.2.3 → zoomcli-0.2.4}/PKG-INFO +1 -1
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/init.rs +31 -7
- {zoomcli-0.2.3 → zoomcli-0.2.4}/.github/workflows/ci.yml +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/.github/workflows/release.yml +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/.gitignore +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/Formula/zoom-cli.rb +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/Makefile +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/README.md +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/prek.toml +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/pyproject.toml +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/api/client.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/api/mod.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/api/types.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/config.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/meetings.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/mod.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/recordings.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/reports.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/users.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/webinars.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/config.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/lib.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/main.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/output.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/src/test_support.rs +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/zoom_cli/__init__.py +0 -0
- {zoomcli-0.2.3 → zoomcli-0.2.4}/zoom_cli/__main__.py +0 -0
|
@@ -7,6 +7,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
+
|
|
11
|
+
## [0.2.4](https://github.com/rvben/zoom-cli/compare/v0.2.3...v0.2.4) - 2026-04-03
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- **init**: improve OAuth URL hint and add next steps block ([cd7777d](https://github.com/rvben/zoom-cli/commit/cd7777d42bc8ed582404884438a2ce8d53dbc71c))
|
|
16
|
+
|
|
10
17
|
## [0.2.3](https://github.com/rvben/zoom-cli/compare/v0.2.2...v0.2.3) - 2026-04-03
|
|
11
18
|
|
|
12
19
|
## [0.2.2](https://github.com/rvben/zoom-cli/compare/v0.2.1...v0.2.2) - 2026-04-03
|
|
@@ -271,7 +271,12 @@ where
|
|
|
271
271
|
" {}",
|
|
272
272
|
sym_dim("Create a Server-to-Server OAuth app at:")
|
|
273
273
|
);
|
|
274
|
-
let _ = writeln!(
|
|
274
|
+
let _ = writeln!(
|
|
275
|
+
writer,
|
|
276
|
+
" {}",
|
|
277
|
+
sym_dim(&format!("{OAUTH_URL} → Server-to-Server OAuth"))
|
|
278
|
+
);
|
|
279
|
+
let _ = writeln!(writer);
|
|
275
280
|
}
|
|
276
281
|
|
|
277
282
|
// Prompt for credentials.
|
|
@@ -347,20 +352,39 @@ where
|
|
|
347
352
|
&client_secret,
|
|
348
353
|
)?;
|
|
349
354
|
|
|
350
|
-
let
|
|
351
|
-
"zoom
|
|
355
|
+
let pfx = if profile_name == "default" {
|
|
356
|
+
"zoom".to_owned()
|
|
352
357
|
} else {
|
|
353
|
-
format!("zoom --profile {}
|
|
358
|
+
format!("zoom --profile {}", profile_name)
|
|
354
359
|
};
|
|
355
360
|
|
|
356
|
-
let _ = writeln!(writer
|
|
361
|
+
let _ = writeln!(writer);
|
|
357
362
|
let _ = writeln!(
|
|
358
363
|
writer,
|
|
359
|
-
" {}
|
|
364
|
+
" {} Configuration saved to {}",
|
|
360
365
|
sym_ok(),
|
|
361
366
|
sym_dim(&config_path.display().to_string()),
|
|
362
367
|
);
|
|
363
|
-
let _ = writeln!(writer
|
|
368
|
+
let _ = writeln!(writer);
|
|
369
|
+
let _ = writeln!(writer, " {}:", "Next steps".bold());
|
|
370
|
+
let _ = writeln!(
|
|
371
|
+
writer,
|
|
372
|
+
" {}",
|
|
373
|
+
sym_dim(&format!(
|
|
374
|
+
"{pfx} meetings list # list upcoming meetings"
|
|
375
|
+
))
|
|
376
|
+
);
|
|
377
|
+
let _ = writeln!(
|
|
378
|
+
writer,
|
|
379
|
+
" {}",
|
|
380
|
+
sym_dim(&format!("{pfx} users list # list users"))
|
|
381
|
+
);
|
|
382
|
+
let _ = writeln!(
|
|
383
|
+
writer,
|
|
384
|
+
" {}",
|
|
385
|
+
sym_dim(&format!("{pfx} completions zsh # shell completions"))
|
|
386
|
+
);
|
|
387
|
+
let _ = writeln!(writer);
|
|
364
388
|
let _ = writer.flush();
|
|
365
389
|
|
|
366
390
|
Ok(())
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|