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.
Files changed (30) hide show
  1. {zoomcli-0.2.3 → zoomcli-0.2.4}/CHANGELOG.md +7 -0
  2. {zoomcli-0.2.3 → zoomcli-0.2.4}/Cargo.lock +1 -1
  3. {zoomcli-0.2.3 → zoomcli-0.2.4}/Cargo.toml +1 -1
  4. {zoomcli-0.2.3 → zoomcli-0.2.4}/PKG-INFO +1 -1
  5. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/init.rs +31 -7
  6. {zoomcli-0.2.3 → zoomcli-0.2.4}/.github/workflows/ci.yml +0 -0
  7. {zoomcli-0.2.3 → zoomcli-0.2.4}/.github/workflows/release.yml +0 -0
  8. {zoomcli-0.2.3 → zoomcli-0.2.4}/.gitignore +0 -0
  9. {zoomcli-0.2.3 → zoomcli-0.2.4}/Formula/zoom-cli.rb +0 -0
  10. {zoomcli-0.2.3 → zoomcli-0.2.4}/Makefile +0 -0
  11. {zoomcli-0.2.3 → zoomcli-0.2.4}/README.md +0 -0
  12. {zoomcli-0.2.3 → zoomcli-0.2.4}/prek.toml +0 -0
  13. {zoomcli-0.2.3 → zoomcli-0.2.4}/pyproject.toml +0 -0
  14. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/api/client.rs +0 -0
  15. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/api/mod.rs +0 -0
  16. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/api/types.rs +0 -0
  17. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/config.rs +0 -0
  18. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/meetings.rs +0 -0
  19. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/mod.rs +0 -0
  20. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/recordings.rs +0 -0
  21. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/reports.rs +0 -0
  22. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/users.rs +0 -0
  23. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/commands/webinars.rs +0 -0
  24. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/config.rs +0 -0
  25. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/lib.rs +0 -0
  26. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/main.rs +0 -0
  27. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/output.rs +0 -0
  28. {zoomcli-0.2.3 → zoomcli-0.2.4}/src/test_support.rs +0 -0
  29. {zoomcli-0.2.3 → zoomcli-0.2.4}/zoom_cli/__init__.py +0 -0
  30. {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
@@ -2219,7 +2219,7 @@ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2219
2219
 
2220
2220
  [[package]]
2221
2221
  name = "zoom-cli"
2222
- version = "0.2.3"
2222
+ version = "0.2.4"
2223
2223
  dependencies = [
2224
2224
  "assert_cmd",
2225
2225
  "base64",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "zoom-cli"
3
- version = "0.2.3"
3
+ version = "0.2.4"
4
4
  edition = "2024"
5
5
  rust-version = "1.90"
6
6
  description = "Agent-friendly Zoom CLI with JSON output, structured exit codes, and schema introspection"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: zoomcli
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Environment :: Console
6
6
  Classifier: Intended Audience :: Developers
@@ -271,7 +271,12 @@ where
271
271
  " {}",
272
272
  sym_dim("Create a Server-to-Server OAuth app at:")
273
273
  );
274
- let _ = writeln!(writer, " {}\n", sym_dim(OAUTH_URL));
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 run_cmd = if profile_name == "default" {
351
- "zoom users me".to_owned()
355
+ let pfx = if profile_name == "default" {
356
+ "zoom".to_owned()
352
357
  } else {
353
- format!("zoom --profile {} users me", profile_name)
358
+ format!("zoom --profile {}", profile_name)
354
359
  };
355
360
 
356
- let _ = writeln!(writer, "\n{SEP}");
361
+ let _ = writeln!(writer);
357
362
  let _ = writeln!(
358
363
  writer,
359
- " {} Config saved to {}",
364
+ " {} Configuration saved to {}",
360
365
  sym_ok(),
361
366
  sym_dim(&config_path.display().to_string()),
362
367
  );
363
- let _ = writeln!(writer, " Run: {}", run_cmd.bold());
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