zoomcli 0.0.1__tar.gz → 0.2.0__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.0/.github/workflows/ci.yml +54 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/.github/workflows/release.yml +4 -0
- zoomcli-0.2.0/CHANGELOG.md +18 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/Cargo.lock +1 -1
- {zoomcli-0.0.1 → zoomcli-0.2.0}/Cargo.toml +2 -2
- {zoomcli-0.0.1 → zoomcli-0.2.0}/PKG-INFO +1 -2
- zoomcli-0.2.0/src/api/client.rs +1150 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/api/mod.rs +4 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/api/types.rs +283 -6
- zoomcli-0.2.0/src/commands/config.rs +239 -0
- zoomcli-0.2.0/src/commands/init.rs +803 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/commands/meetings.rs +69 -1
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/commands/mod.rs +35 -1
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/commands/recordings.rs +85 -6
- zoomcli-0.2.0/src/commands/webinars.rs +178 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/config.rs +144 -9
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/main.rs +52 -2
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/output.rs +23 -0
- zoomcli-0.0.1/docs/superpowers/plans/2026-04-02-zoom-cli.md +0 -2969
- zoomcli-0.0.1/docs/superpowers/specs/2026-04-02-zoom-cli-design.md +0 -135
- zoomcli-0.0.1/src/api/client.rs +0 -639
- zoomcli-0.0.1/src/commands/init.rs +0 -468
- {zoomcli-0.0.1 → zoomcli-0.2.0}/.gitignore +0 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/Makefile +0 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/README.md +0 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/pyproject.toml +0 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/commands/reports.rs +0 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/commands/users.rs +0 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/lib.rs +0 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/src/test_support.rs +0 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/zoom_cli/__init__.py +0 -0
- {zoomcli-0.0.1 → zoomcli-0.2.0}/zoom_cli/__main__.py +0 -0
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
workflow_dispatch:
|
|
8
|
+
|
|
9
|
+
concurrency:
|
|
10
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
11
|
+
cancel-in-progress: true
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
lint:
|
|
15
|
+
name: Lint
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
steps:
|
|
18
|
+
- uses: actions/checkout@v4
|
|
19
|
+
|
|
20
|
+
- uses: dtolnay/rust-toolchain@stable
|
|
21
|
+
with:
|
|
22
|
+
components: rustfmt, clippy
|
|
23
|
+
|
|
24
|
+
- name: Run linting
|
|
25
|
+
run: make lint
|
|
26
|
+
|
|
27
|
+
test:
|
|
28
|
+
name: Test
|
|
29
|
+
runs-on: ubuntu-latest
|
|
30
|
+
steps:
|
|
31
|
+
- uses: actions/checkout@v4
|
|
32
|
+
|
|
33
|
+
- uses: dtolnay/rust-toolchain@stable
|
|
34
|
+
|
|
35
|
+
- uses: taiki-e/install-action@v2
|
|
36
|
+
with:
|
|
37
|
+
tool: nextest
|
|
38
|
+
|
|
39
|
+
- name: Run tests
|
|
40
|
+
run: make test
|
|
41
|
+
|
|
42
|
+
all-checks-passed:
|
|
43
|
+
name: All checks passed
|
|
44
|
+
runs-on: ubuntu-latest
|
|
45
|
+
needs: [lint, test]
|
|
46
|
+
if: always()
|
|
47
|
+
steps:
|
|
48
|
+
- name: Verify all checks passed
|
|
49
|
+
run: |
|
|
50
|
+
if [ "${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}" == "true" ]; then
|
|
51
|
+
echo "Some checks failed or were cancelled"
|
|
52
|
+
exit 1
|
|
53
|
+
fi
|
|
54
|
+
echo "All checks passed"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
6
|
+
|
|
7
|
+
## [0.2.0](https://github.com/rvben/zoom-cli/compare/v0.1.0...v0.2.0) - 2026-04-02
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **init**: redesign interactive setup with excellent UX ([2bc79df](https://github.com/rvben/zoom-cli/commit/2bc79dfc82e18f476e69ea7aaaa4416d3fce2c23))
|
|
12
|
+
- **config**: add zoom config show command ([dbe8490](https://github.com/rvben/zoom-cli/commit/dbe84901f3618e6c17542ae6fd8e5c52a741eb29))
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- double-encode recording UUIDs and write downloads atomically ([f346939](https://github.com/rvben/zoom-cli/commit/f346939569336d808e5c02f7c2029c55e7273169))
|
|
17
|
+
- unreachable!() in send_with_retry was reachable, causing panics ([ceb905d](https://github.com/rvben/zoom-cli/commit/ceb905d7b12dfbc25fa8a7150daf2a5f09158375))
|
|
18
|
+
- transparent token refresh on 401, --permanent flag for recordings delete ([fdae155](https://github.com/rvben/zoom-cli/commit/fdae155e096e953c4a6634a177abb9c7ce2ab6cf))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "zoom-cli"
|
|
3
|
-
version = "0.0
|
|
3
|
+
version = "0.2.0"
|
|
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"
|
|
@@ -21,7 +21,7 @@ clap_complete = "4"
|
|
|
21
21
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "stream"] }
|
|
22
22
|
serde = { version = "1", features = ["derive"] }
|
|
23
23
|
serde_json = "1"
|
|
24
|
-
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
|
|
24
|
+
tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "io-util", "time"] }
|
|
25
25
|
toml = "0.8"
|
|
26
26
|
owo-colors = "4"
|
|
27
27
|
dirs = "6"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: zoomcli
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Classifier: Development Status :: 3 - Alpha
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -11,7 +11,6 @@ Classifier: Programming Language :: Python :: 3
|
|
|
11
11
|
Classifier: Programming Language :: Rust
|
|
12
12
|
Classifier: Topic :: Communications :: Conferencing
|
|
13
13
|
Summary: Agent-friendly CLI for the Zoom API
|
|
14
|
-
Keywords: zoom,meetings,cli
|
|
15
14
|
Home-Page: https://github.com/rvben/zoom-cli
|
|
16
15
|
Author-email: "Ruben J. Jongejan" <ruben.jongejan@gmail.com>
|
|
17
16
|
License: MIT
|