@carrot-protocol/boost-http-client 0.2.13-inputs-dev-b6557d8 → 0.2.13

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/dist/index.js CHANGED
@@ -170,6 +170,7 @@ class Client {
170
170
  clendAccount: new anchor_1.web3.PublicKey(s.clendAccount),
171
171
  clendAccountAuthority: new anchor_1.web3.PublicKey(s.clendAccountAuthority),
172
172
  clendGroup: new anchor_1.web3.PublicKey(s.clendGroup),
173
+ action: s.action,
173
174
  input: undefined,
174
175
  events: [],
175
176
  };
package/dist/types.d.ts CHANGED
@@ -133,6 +133,7 @@ export interface ClendAccountTxSummary {
133
133
  clendAccount: web3.PublicKey;
134
134
  clendAccountAuthority: web3.PublicKey;
135
135
  clendGroup: web3.PublicKey;
136
+ action: string;
136
137
  events: ClendAccountEvent[];
137
138
  input?: UserRequest;
138
139
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carrot-protocol/boost-http-client",
3
- "version": "0.2.13-inputs-dev-b6557d8",
3
+ "version": "0.2.13",
4
4
  "description": "HTTP client for Carrot Boost",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -190,6 +190,7 @@ export class Client {
190
190
  clendAccount: new web3.PublicKey(s.clendAccount),
191
191
  clendAccountAuthority: new web3.PublicKey(s.clendAccountAuthority),
192
192
  clendGroup: new web3.PublicKey(s.clendGroup),
193
+ action: s.action,
193
194
  input: undefined,
194
195
  events: [],
195
196
  };
package/src/types.ts CHANGED
@@ -150,6 +150,7 @@ export interface ClendAccountTxSummary {
150
150
  clendAccount: web3.PublicKey;
151
151
  clendAccountAuthority: web3.PublicKey;
152
152
  clendGroup: web3.PublicKey;
153
+ action: string;
153
154
  events: ClendAccountEvent[];
154
155
  input?: UserRequest;
155
156
  }