@learncard/cli 3.4.17 → 3.5.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/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @learncard/cli
2
2
 
3
+ ## 3.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1528](https://github.com/learningeconomy/LearnCard/pull/1528) [`75d1816d5bbbd17772ef4c1c6b4932deacb9ccb5`](https://github.com/learningeconomy/LearnCard/commit/75d1816d5bbbd17772ef4c1c6b4932deacb9ccb5) Thanks [@Custard7](https://github.com/Custard7)! - Add quickstart commands that mirror the docs: `send <email>` (writes a seed to `.env`, creates an issuer profile, sends an Open Badges 3.0 credential via the universal inbox, and writes a reusable `send.mjs`), plus `init`, `status`, `revoke`, `verify`, `token`, `setup-signing`, `webhook`, `embed`, `consent-contract`, `open`, and `repl`.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [[`6315fa3346cf75df2c6cbabe78962a9faa408781`](https://github.com/learningeconomy/LearnCard/commit/6315fa3346cf75df2c6cbabe78962a9faa408781), [`80d2ebf54bb5a643808f8f7d908cf68758903dce`](https://github.com/learningeconomy/LearnCard/commit/80d2ebf54bb5a643808f8f7d908cf68758903dce), [`75d1816d5bbbd17772ef4c1c6b4932deacb9ccb5`](https://github.com/learningeconomy/LearnCard/commit/75d1816d5bbbd17772ef4c1c6b4932deacb9ccb5)]:
12
+ - @learncard/types@5.19.0
13
+ - @learncard/init@2.4.15
14
+ - @learncard/holder-continuity@0.2.17
15
+ - @learncard/core@9.4.34
16
+ - @learncard/didkit-plugin@1.9.14
17
+ - @learncard/lca-api-plugin@2.0.4
18
+ - @learncard/learn-cloud-plugin@2.3.40
19
+ - @learncard/ler-rs-plugin@0.1.25
20
+ - @learncard/linked-claims-plugin@0.2.34
21
+ - @learncard/open-badge-v2-plugin@1.1.35
22
+ - @learncard/render-method-plugin@6.0.0
23
+
3
24
  ## 3.4.17
4
25
 
5
26
  ### Patch Changes
package/README.md CHANGED
@@ -18,6 +18,16 @@ https://docs.learncard.com
18
18
 
19
19
  ## Usage
20
20
 
21
+ ### Send your first credential
22
+
23
+ ```bash
24
+ npx @learncard/cli send you@example.com
25
+ ```
26
+
27
+ Generates a seed into `.env`, creates your issuer profile, sends a "Quickstart Complete" badge to the address, and writes the code it ran to `./send.mjs`. Pass `--yes` to accept defaults; `--name "Acme"`, `--badge "Welcome to Acme"`, `--description`, and `--profile-id` set them explicitly. Walkthrough: https://docs.learncard.com/start-here/your-first-integration
28
+
29
+ ### Interactive REPL
30
+
21
31
  ```bash
22
32
  npx @learncard/cli
23
33