@drift-labs/vaults-sdk 0.1.591 → 0.1.592
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/lib/types/types.d.ts +1 -0
- package/package.json +1 -1
- package/src/types/types.ts +1 -0
package/lib/types/types.d.ts
CHANGED
|
@@ -203,6 +203,7 @@ export type VaultDepositorV1Record = {
|
|
|
203
203
|
};
|
|
204
204
|
export type VaultsEventMap = {
|
|
205
205
|
VaultDepositorRecord: Event<VaultDepositorRecord>;
|
|
206
|
+
VaultDepositorV1Record: Event<VaultDepositorV1Record>;
|
|
206
207
|
};
|
|
207
208
|
export type EventType = keyof VaultsEventMap;
|
|
208
209
|
export type WrappedEvent<Type extends EventType> = VaultsEventMap[Type] & {
|
package/package.json
CHANGED
package/src/types/types.ts
CHANGED