@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
- ## Releaseing
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo/public-types",
3
- "version": "5.27.0",
3
+ "version": "5.28.1",
4
4
  "description": "Collection of types exposed externally as part of the BitGo public API",
5
5
  "license": "UNLICENSED",
6
6
  "author": "",
@@ -46,7 +46,8 @@ export type BaseWalletType =
46
46
  | "custodial"
47
47
  | "custodialPaired"
48
48
  | "hot"
49
- | "trading";
49
+ | "trading"
50
+ | "advanced";
50
51
 
51
52
  export type TxRequestState =
52
53
  | "pendingCommitment"