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 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://docs.docwal.com
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
@@ -52,6 +52,8 @@ export interface Credential {
52
52
  revocation_reason?: string;
53
53
  template_name: string;
54
54
  credential_data: CredentialData;
55
+ issued_by_email?: string;
56
+ issued_by_name?: string;
55
57
  ownership?: {
56
58
  individual_email: string;
57
59
  is_claimed: boolean;
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docwal-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Official Node.js SDK for DocWal API - Issue and manage verifiable digital credentials",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",