@hashgraphonline/standards-sdk 0.0.45 → 0.0.46

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/README.md CHANGED
@@ -58,12 +58,19 @@ The SDK includes demo implementations that showcase various features. Follow the
58
58
 
59
59
  ```bash
60
60
  # Run the inscribe demo
61
- npm run demo
61
+ npm run demo:inscribe
62
+ ```
62
63
 
64
+ ```bash
63
65
  # Run the HCS-10 AI agent communication demo
64
66
  npm run demo:hcs-10
65
67
  ```
66
68
 
69
+ ```bash
70
+ # Run the HCS-10 polling demo
71
+ npm run demo:polling-agent
72
+ ```
73
+
67
74
  ### Demo Descriptions
68
75
 
69
76
  #### Inscribe Demo
@@ -25,6 +25,7 @@ export interface HCSMessage {
25
25
  sequence_number: number;
26
26
  operator_id?: string;
27
27
  reason?: string;
28
+ close_method?: string;
28
29
  }
29
30
  export interface ProfileResponse {
30
31
  profile: any;