docwal-sdk 1.0.0 → 1.0.1
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 +19 -0
- package/README.md +2 -1
- package/dist/index.d.ts +2 -0
- package/docwal-sdk-1.0.1.tgz +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,25 @@ All notable changes to the DocWal Node.js SDK will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.1.0] - 2026-02-23
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Credential Issuer Tracking**: Added `issued_by_email` and `issued_by_name` fields to Credential interface
|
|
12
|
+
- Track which institution admin issued each credential
|
|
13
|
+
- Available in `credentials.list()` and `credentials.get()` responses
|
|
14
|
+
- Fields are optional (null for historical credentials issued before tracking)
|
|
15
|
+
- **Batch Upload Tracking**: Batch upload responses now include `uploaded_by` field
|
|
16
|
+
- Shows which admin uploaded each batch
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Updated `Credential` TypeScript interface to include new tracking fields
|
|
20
|
+
- API responses now include issuer information for improved accountability and audit trails
|
|
21
|
+
|
|
22
|
+
### Notes
|
|
23
|
+
- No breaking changes - new fields are optional
|
|
24
|
+
- Historical credentials will have `issued_by_email` and `issued_by_name` as `undefined`
|
|
25
|
+
- Provides better team visibility and compliance tracking
|
|
26
|
+
|
|
8
27
|
## [1.0.0] - 2024-01-10
|
|
9
28
|
|
|
10
29
|
### Added
|
package/README.md
CHANGED
|
@@ -6,6 +6,7 @@ Official Node.js/TypeScript SDK for DocWal API - Issue and manage verifiable dig
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
npm install docwal-sdk
|
|
9
|
+
yarn add docwal-sdk
|
|
9
10
|
```
|
|
10
11
|
|
|
11
12
|
## Quick Start
|
|
@@ -400,7 +401,7 @@ app.listen(3000);
|
|
|
400
401
|
## Support
|
|
401
402
|
|
|
402
403
|
- **Email**: support@docwal.com
|
|
403
|
-
- **Documentation**: https://
|
|
404
|
+
- **Documentation**: https://docwal.com/docs
|
|
404
405
|
- **API Reference**: https://docwal.com/api/docs
|
|
405
406
|
- **GitHub**: https://github.com/docwal/docwal-nodejs
|
|
406
407
|
|
package/dist/index.d.ts
CHANGED
|
Binary file
|