@fintekkers/ledger-models 0.1.110 → 0.1.111
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.
|
@@ -8,6 +8,7 @@ import * as jspb from "google-protobuf";
|
|
|
8
8
|
import * as fintekkers_models_security_security_pb from "../../../fintekkers/models/security/security_pb";
|
|
9
9
|
import * as fintekkers_models_position_position_pb from "../../../fintekkers/models/position/position_pb";
|
|
10
10
|
import * as fintekkers_models_price_price_pb from "../../../fintekkers/models/price/price_pb";
|
|
11
|
+
import * as fintekkers_models_util_local_timestamp_pb from "../../../fintekkers/models/util/local_timestamp_pb";
|
|
11
12
|
import * as fintekkers_requests_util_operation_pb from "../../../fintekkers/requests/util/operation_pb";
|
|
12
13
|
import * as fintekkers_models_position_measure_pb from "../../../fintekkers/models/position/measure_pb";
|
|
13
14
|
|
|
@@ -38,6 +39,11 @@ export class ValuationRequestProto extends jspb.Message {
|
|
|
38
39
|
getPriceInput(): fintekkers_models_price_price_pb.PriceProto | undefined;
|
|
39
40
|
setPriceInput(value?: fintekkers_models_price_price_pb.PriceProto): ValuationRequestProto;
|
|
40
41
|
|
|
42
|
+
hasAsofDatetime(): boolean;
|
|
43
|
+
clearAsofDatetime(): void;
|
|
44
|
+
getAsofDatetime(): fintekkers_models_util_local_timestamp_pb.LocalTimestampProto | undefined;
|
|
45
|
+
setAsofDatetime(value?: fintekkers_models_util_local_timestamp_pb.LocalTimestampProto): ValuationRequestProto;
|
|
46
|
+
|
|
41
47
|
serializeBinary(): Uint8Array;
|
|
42
48
|
toObject(includeInstance?: boolean): ValuationRequestProto.AsObject;
|
|
43
49
|
static toObject(includeInstance: boolean, msg: ValuationRequestProto): ValuationRequestProto.AsObject;
|
|
@@ -57,5 +63,6 @@ export namespace ValuationRequestProto {
|
|
|
57
63
|
securityInput?: fintekkers_models_security_security_pb.SecurityProto.AsObject,
|
|
58
64
|
positionInput?: fintekkers_models_position_position_pb.PositionProto.AsObject,
|
|
59
65
|
priceInput?: fintekkers_models_price_price_pb.PriceProto.AsObject,
|
|
66
|
+
asofDatetime?: fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.AsObject,
|
|
60
67
|
}
|
|
61
68
|
}
|
|
@@ -27,6 +27,8 @@ var fintekkers_models_position_position_pb = require('../../../fintekkers/models
|
|
|
27
27
|
goog.object.extend(proto, fintekkers_models_position_position_pb);
|
|
28
28
|
var fintekkers_models_price_price_pb = require('../../../fintekkers/models/price/price_pb.js');
|
|
29
29
|
goog.object.extend(proto, fintekkers_models_price_price_pb);
|
|
30
|
+
var fintekkers_models_util_local_timestamp_pb = require('../../../fintekkers/models/util/local_timestamp_pb.js');
|
|
31
|
+
goog.object.extend(proto, fintekkers_models_util_local_timestamp_pb);
|
|
30
32
|
var fintekkers_requests_util_operation_pb = require('../../../fintekkers/requests/util/operation_pb.js');
|
|
31
33
|
goog.object.extend(proto, fintekkers_requests_util_operation_pb);
|
|
32
34
|
var fintekkers_models_position_measure_pb = require('../../../fintekkers/models/position/measure_pb.js');
|
|
@@ -98,7 +100,8 @@ proto.fintekkers.requests.valuation.ValuationRequestProto.toObject = function(in
|
|
|
98
100
|
measuresList: (f = jspb.Message.getRepeatedField(msg, 30)) == null ? undefined : f,
|
|
99
101
|
securityInput: (f = msg.getSecurityInput()) && fintekkers_models_security_security_pb.SecurityProto.toObject(includeInstance, f),
|
|
100
102
|
positionInput: (f = msg.getPositionInput()) && fintekkers_models_position_position_pb.PositionProto.toObject(includeInstance, f),
|
|
101
|
-
priceInput: (f = msg.getPriceInput()) && fintekkers_models_price_price_pb.PriceProto.toObject(includeInstance, f)
|
|
103
|
+
priceInput: (f = msg.getPriceInput()) && fintekkers_models_price_price_pb.PriceProto.toObject(includeInstance, f),
|
|
104
|
+
asofDatetime: (f = msg.getAsofDatetime()) && fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.toObject(includeInstance, f)
|
|
102
105
|
};
|
|
103
106
|
|
|
104
107
|
if (includeInstance) {
|
|
@@ -168,6 +171,11 @@ proto.fintekkers.requests.valuation.ValuationRequestProto.deserializeBinaryFromR
|
|
|
168
171
|
reader.readMessage(value,fintekkers_models_price_price_pb.PriceProto.deserializeBinaryFromReader);
|
|
169
172
|
msg.setPriceInput(value);
|
|
170
173
|
break;
|
|
174
|
+
case 23:
|
|
175
|
+
var value = new fintekkers_models_util_local_timestamp_pb.LocalTimestampProto;
|
|
176
|
+
reader.readMessage(value,fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.deserializeBinaryFromReader);
|
|
177
|
+
msg.setAsofDatetime(value);
|
|
178
|
+
break;
|
|
171
179
|
default:
|
|
172
180
|
reader.skipField();
|
|
173
181
|
break;
|
|
@@ -249,6 +257,14 @@ proto.fintekkers.requests.valuation.ValuationRequestProto.serializeBinaryToWrite
|
|
|
249
257
|
fintekkers_models_price_price_pb.PriceProto.serializeBinaryToWriter
|
|
250
258
|
);
|
|
251
259
|
}
|
|
260
|
+
f = message.getAsofDatetime();
|
|
261
|
+
if (f != null) {
|
|
262
|
+
writer.writeMessage(
|
|
263
|
+
23,
|
|
264
|
+
f,
|
|
265
|
+
fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.serializeBinaryToWriter
|
|
266
|
+
);
|
|
267
|
+
}
|
|
252
268
|
};
|
|
253
269
|
|
|
254
270
|
|
|
@@ -454,4 +470,41 @@ proto.fintekkers.requests.valuation.ValuationRequestProto.prototype.hasPriceInpu
|
|
|
454
470
|
};
|
|
455
471
|
|
|
456
472
|
|
|
473
|
+
/**
|
|
474
|
+
* optional fintekkers.models.util.LocalTimestampProto asof_datetime = 23;
|
|
475
|
+
* @return {?proto.fintekkers.models.util.LocalTimestampProto}
|
|
476
|
+
*/
|
|
477
|
+
proto.fintekkers.requests.valuation.ValuationRequestProto.prototype.getAsofDatetime = function() {
|
|
478
|
+
return /** @type{?proto.fintekkers.models.util.LocalTimestampProto} */ (
|
|
479
|
+
jspb.Message.getWrapperField(this, fintekkers_models_util_local_timestamp_pb.LocalTimestampProto, 23));
|
|
480
|
+
};
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
/**
|
|
484
|
+
* @param {?proto.fintekkers.models.util.LocalTimestampProto|undefined} value
|
|
485
|
+
* @return {!proto.fintekkers.requests.valuation.ValuationRequestProto} returns this
|
|
486
|
+
*/
|
|
487
|
+
proto.fintekkers.requests.valuation.ValuationRequestProto.prototype.setAsofDatetime = function(value) {
|
|
488
|
+
return jspb.Message.setWrapperField(this, 23, value);
|
|
489
|
+
};
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
/**
|
|
493
|
+
* Clears the message field making it undefined.
|
|
494
|
+
* @return {!proto.fintekkers.requests.valuation.ValuationRequestProto} returns this
|
|
495
|
+
*/
|
|
496
|
+
proto.fintekkers.requests.valuation.ValuationRequestProto.prototype.clearAsofDatetime = function() {
|
|
497
|
+
return this.setAsofDatetime(undefined);
|
|
498
|
+
};
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
/**
|
|
502
|
+
* Returns whether this field is set.
|
|
503
|
+
* @return {boolean}
|
|
504
|
+
*/
|
|
505
|
+
proto.fintekkers.requests.valuation.ValuationRequestProto.prototype.hasAsofDatetime = function() {
|
|
506
|
+
return jspb.Message.getField(this, 23) != null;
|
|
507
|
+
};
|
|
508
|
+
|
|
509
|
+
|
|
457
510
|
goog.object.extend(exports, proto.fintekkers.requests.valuation);
|