@bitgo/public-types 5.27.0 → 5.28.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/README.md
CHANGED
@@ -1,12 +1,8 @@
|
|
1
1
|
# public-types
|
2
2
|
|
3
|
-
[![Build Status]](https://github.com/BitGo/public-types/actions/workflows/release.yml)
|
4
|
-
|
5
|
-
[build status]: https://github.com/BitGo/public-types/actions/workflows/release.yml/badge.svg?event=push
|
6
|
-
|
7
3
|
Collection of types exposed externally as part of the BitGo public API
|
8
4
|
|
9
|
-
##
|
5
|
+
## Releasing
|
10
6
|
|
11
7
|
This repository uses [semantic release](https://github.com/semantic-release/semantic-release).
|
12
8
|
|
@@ -32,7 +32,7 @@ export interface Signature {
|
|
32
32
|
R: string;
|
33
33
|
sigma: string;
|
34
34
|
}
|
35
|
-
export type BaseWalletType = "backing" | "cold" | "custodial" | "custodialPaired" | "hot" | "trading";
|
35
|
+
export type BaseWalletType = "backing" | "cold" | "custodial" | "custodialPaired" | "hot" | "trading" | "advanced";
|
36
36
|
export type TxRequestState = "pendingCommitment" | "pendingApproval" | "canceled" | "rejected" | "initialized" | "pendingDelivery" | "delivered" | "pendingUserSignature" | "signed";
|
37
37
|
export type UnsignedMessageTss = {
|
38
38
|
derivationPath: string;
|
package/package.json
CHANGED