@oauth2-cli/veracross 0.1.0 → 0.1.2

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 (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +32 -0
  3. package/package.json +2 -1
package/CHANGELOG.md CHANGED
@@ -2,4 +2,18 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [0.1.2](https://github.com/groton-school/veracross-cli/compare/oauth2-cli/veracross/0.1.1...oauth2-cli/veracross/0.1.2) (2026-01-17)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * typo ([9e95c8e](https://github.com/groton-school/veracross-cli/commit/9e95c8e253b90dd28f9fc95f33e6607fd4fa23c2))
11
+
12
+ ## [0.1.1](https://github.com/groton-school/veracross-cli/compare/oauth2-cli/veracross/0.1.0...oauth2-cli/veracross/0.1.1) (2026-01-17)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * add README ([e1024f8](https://github.com/groton-school/veracross-cli/commit/e1024f89198a3283f62b43d0025ec34a1378570f))
18
+
5
19
  ## 0.1.0 (2026-01-17)
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # @oauth2-cli/veracross
2
+
3
+ Node.js command-line client for Veracross API
4
+
5
+ [![npm version](https://badge.fury.io/js/@oauth2-cli%2Fveracross.svg)](https://npmjs.com/package/@oauth2-cli/veracross)
6
+ [![Module type: ESM](https://img.shields.io/badge/module%20type-esm-brightgreen)](https://nodejs.org/api/esm.html)
7
+
8
+ ## Install
9
+
10
+ ```sh
11
+ npm install @oauth2-cli/veracross @qui-cli/core
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ ```ts
17
+ import { Veracross } from '@oauth2-cli/veracross';
18
+ import { Core } from '@qui-cli/core';
19
+
20
+ // configure any necessary scopes
21
+ Veracross.configure({ scope: 'contact_info:read' });
22
+
23
+ // intialize the @qui-cli environment
24
+ await Core.run();
25
+
26
+ // request your data
27
+ console.log(await Veracross.requestJSON('/v3/contact_info/2'));
28
+ ```
29
+
30
+ See [@groton/veracross-cli](https://github.com/groton-school/veracross-cli#readme) for more information about the client.
31
+
32
+ See [@qui-cli](https://github.com/battis/qui-cli#readme) for more information on developing CLI apps quickly in Node.js.
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@oauth2-cli/veracross",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
+ "description": "Node.js command-line client for Veracross API",
4
5
  "homepage": "https://github.com/groton-school/veracross-cli/tree/main/packages/oauth2-cli/veracross#readme",
5
6
  "repository": {
6
7
  "type": "git",