@keepkey/device-protocol 7.12.1 → 7.12.2

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.
@@ -469,10 +469,10 @@ export class OsmosisMsgLPRemove extends jspb.Message {
469
469
  getPoolId(): string | undefined;
470
470
  setPoolId(value: string): void;
471
471
 
472
- hasShareOutAmount(): boolean;
473
- clearShareOutAmount(): void;
474
- getShareOutAmount(): string | undefined;
475
- setShareOutAmount(value: string): void;
472
+ hasShareInAmount(): boolean;
473
+ clearShareInAmount(): void;
474
+ getShareInAmount(): string | undefined;
475
+ setShareInAmount(value: string): void;
476
476
 
477
477
  hasDenomOutMinA(): boolean;
478
478
  clearDenomOutMinA(): void;
@@ -508,7 +508,7 @@ export namespace OsmosisMsgLPRemove {
508
508
  export type AsObject = {
509
509
  sender?: string,
510
510
  poolId?: string,
511
- shareOutAmount?: string,
511
+ shareInAmount?: string,
512
512
  denomOutMinA?: string,
513
513
  amountOutMinA?: string,
514
514
  denomOutMinB?: string,
@@ -3831,7 +3831,7 @@ proto.OsmosisMsgLPRemove.toObject = function(includeInstance, msg) {
3831
3831
  var f, obj = {
3832
3832
  sender: (f = jspb.Message.getField(msg, 1)) == null ? undefined : f,
3833
3833
  poolId: (f = jspb.Message.getField(msg, 2)) == null ? undefined : f,
3834
- shareOutAmount: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
3834
+ shareInAmount: (f = jspb.Message.getField(msg, 3)) == null ? undefined : f,
3835
3835
  denomOutMinA: (f = jspb.Message.getField(msg, 4)) == null ? undefined : f,
3836
3836
  amountOutMinA: (f = jspb.Message.getField(msg, 5)) == null ? undefined : f,
3837
3837
  denomOutMinB: (f = jspb.Message.getField(msg, 6)) == null ? undefined : f,
@@ -3882,7 +3882,7 @@ proto.OsmosisMsgLPRemove.deserializeBinaryFromReader = function(msg, reader) {
3882
3882
  break;
3883
3883
  case 3:
3884
3884
  var value = /** @type {string} */ (reader.readString());
3885
- msg.setShareOutAmount(value);
3885
+ msg.setShareInAmount(value);
3886
3886
  break;
3887
3887
  case 4:
3888
3888
  var value = /** @type {string} */ (reader.readString());
@@ -4054,10 +4054,10 @@ proto.OsmosisMsgLPRemove.prototype.hasPoolId = function() {
4054
4054
 
4055
4055
 
4056
4056
  /**
4057
- * optional string share_out_amount = 3;
4057
+ * optional string share_in_amount = 3;
4058
4058
  * @return {string}
4059
4059
  */
4060
- proto.OsmosisMsgLPRemove.prototype.getShareOutAmount = function() {
4060
+ proto.OsmosisMsgLPRemove.prototype.getShareInAmount = function() {
4061
4061
  return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
4062
4062
  };
4063
4063
 
@@ -4066,7 +4066,7 @@ proto.OsmosisMsgLPRemove.prototype.getShareOutAmount = function() {
4066
4066
  * @param {string} value
4067
4067
  * @return {!proto.OsmosisMsgLPRemove} returns this
4068
4068
  */
4069
- proto.OsmosisMsgLPRemove.prototype.setShareOutAmount = function(value) {
4069
+ proto.OsmosisMsgLPRemove.prototype.setShareInAmount = function(value) {
4070
4070
  return jspb.Message.setField(this, 3, value);
4071
4071
  };
4072
4072
 
@@ -4075,7 +4075,7 @@ proto.OsmosisMsgLPRemove.prototype.setShareOutAmount = function(value) {
4075
4075
  * Clears the field making it undefined.
4076
4076
  * @return {!proto.OsmosisMsgLPRemove} returns this
4077
4077
  */
4078
- proto.OsmosisMsgLPRemove.prototype.clearShareOutAmount = function() {
4078
+ proto.OsmosisMsgLPRemove.prototype.clearShareInAmount = function() {
4079
4079
  return jspb.Message.setField(this, 3, undefined);
4080
4080
  };
4081
4081
 
@@ -4084,7 +4084,7 @@ proto.OsmosisMsgLPRemove.prototype.clearShareOutAmount = function() {
4084
4084
  * Returns whether this field is set.
4085
4085
  * @return {boolean}
4086
4086
  */
4087
- proto.OsmosisMsgLPRemove.prototype.hasShareOutAmount = function() {
4087
+ proto.OsmosisMsgLPRemove.prototype.hasShareInAmount = function() {
4088
4088
  return jspb.Message.getField(this, 3) != null;
4089
4089
  };
4090
4090
 
package/lib/proto.json CHANGED
@@ -5017,7 +5017,7 @@
5017
5017
  "jstype": "JS_STRING"
5018
5018
  }
5019
5019
  },
5020
- "share_out_amount": {
5020
+ "share_in_amount": {
5021
5021
  "type": "string",
5022
5022
  "id": 3
5023
5023
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keepkey/device-protocol",
3
- "version": "7.12.1",
3
+ "version": "7.12.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },