@fintekkers/ledger-models 0.1.62 → 0.1.64

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.
Files changed (71) hide show
  1. package/.env +3 -0
  2. package/node/fintekkers/models/position/field_pb.d.ts +1 -0
  3. package/node/fintekkers/models/position/field_pb.js +1 -0
  4. package/node/fintekkers/models/security/bond/auction_type_grpc_pb.js +1 -0
  5. package/node/fintekkers/models/security/bond/auction_type_pb.d.ts +12 -0
  6. package/node/fintekkers/models/security/bond/auction_type_pb.js +33 -0
  7. package/node/fintekkers/models/security/bond/issuance_grpc_pb.js +1 -0
  8. package/node/fintekkers/models/security/bond/issuance_pb.d.ts +85 -0
  9. package/node/fintekkers/models/security/bond/issuance_pb.js +652 -0
  10. package/node/fintekkers/models/security/security_pb.d.ts +6 -0
  11. package/node/fintekkers/models/security/security_pb.js +64 -2
  12. package/node/wrappers/models/portfolio/portfolio.js +41 -0
  13. package/node/wrappers/models/portfolio/portfolio.js.map +1 -0
  14. package/node/wrappers/models/portfolio/portfolio.ts +49 -0
  15. package/node/wrappers/models/position/position.test.ts +1 -1
  16. package/node/wrappers/models/position/positionfilter.js +35 -0
  17. package/node/wrappers/models/position/positionfilter.js.map +1 -0
  18. package/node/wrappers/models/position/positionfilter.ts +38 -0
  19. package/node/wrappers/models/security/security.test.js +33 -0
  20. package/node/wrappers/models/security/security.test.js.map +1 -0
  21. package/node/wrappers/models/security/security.test.ts +41 -0
  22. package/node/wrappers/models/transaction/transaction.js +4 -3
  23. package/node/wrappers/models/transaction/transaction.js.map +1 -1
  24. package/node/wrappers/models/transaction/transaction.test.js.map +1 -1
  25. package/node/wrappers/models/transaction/transaction.test.ts +1 -5
  26. package/node/wrappers/models/transaction/transaction.ts +29 -29
  27. package/node/wrappers/models/utils/datetime.js +9 -0
  28. package/node/wrappers/models/utils/datetime.js.map +1 -1
  29. package/node/wrappers/models/utils/datetime.ts +16 -4
  30. package/node/wrappers/models/utils/serialization.js +8 -0
  31. package/node/wrappers/models/utils/serialization.js.map +1 -1
  32. package/node/wrappers/models/utils/serialization.ts +48 -40
  33. package/node/wrappers/models/utils/serialization.util.js +49 -17
  34. package/node/wrappers/models/utils/serialization.util.js.map +1 -1
  35. package/node/wrappers/models/utils/serialization.util.test.js +12 -0
  36. package/node/wrappers/models/utils/serialization.util.test.js.map +1 -1
  37. package/node/wrappers/models/utils/serialization.util.test.ts +18 -0
  38. package/node/wrappers/models/utils/serialization.util.ts +62 -26
  39. package/node/wrappers/services/portfolio-service/PortfolioService.js +5 -13
  40. package/node/wrappers/services/portfolio-service/PortfolioService.js.map +1 -1
  41. package/node/wrappers/services/portfolio-service/PortfolioService.ts +11 -23
  42. package/node/wrappers/services/portfolio-service/portfolio.test.js +30 -34
  43. package/node/wrappers/services/portfolio-service/portfolio.test.js.map +1 -1
  44. package/node/wrappers/services/portfolio-service/portfolio.test.ts +8 -12
  45. package/node/wrappers/services/position-service/position.test.js +9 -3
  46. package/node/wrappers/services/position-service/position.test.js.map +1 -1
  47. package/node/wrappers/services/position-service/position.test.ts +52 -49
  48. package/node/wrappers/services/security-service/SecurityService.js +14 -12
  49. package/node/wrappers/services/security-service/SecurityService.js.map +1 -1
  50. package/node/wrappers/services/security-service/SecurityService.ts +13 -16
  51. package/node/wrappers/services/security-service/security.maturityLadder.test.js +59 -0
  52. package/node/wrappers/services/security-service/security.maturityLadder.test.js.map +1 -0
  53. package/node/wrappers/services/security-service/security.maturityLadder.test.ts +39 -0
  54. package/node/wrappers/services/security-service/security.test.js +6 -2
  55. package/node/wrappers/services/security-service/security.test.js.map +1 -1
  56. package/node/wrappers/services/security-service/security.test.ts +7 -3
  57. package/node/wrappers/services/transaction-service/TransactionService.js +2 -9
  58. package/node/wrappers/services/transaction-service/TransactionService.js.map +1 -1
  59. package/node/wrappers/services/transaction-service/TransactionService.ts +8 -18
  60. package/node/wrappers/services/transaction-service/transaction.test.js +21 -5
  61. package/node/wrappers/services/transaction-service/transaction.test.js.map +1 -1
  62. package/node/wrappers/services/transaction-service/transaction.test.ts +32 -15
  63. package/package.json +1 -1
  64. package/web/fintekkers/models/position/field_pb.d.ts +1 -0
  65. package/web/fintekkers/models/position/field_pb.js +1 -0
  66. package/web/fintekkers/models/security/bond/auction_type_pb.d.ts +8 -0
  67. package/web/fintekkers/models/security/bond/auction_type_pb.js +27 -0
  68. package/web/fintekkers/models/security/bond/issuance_pb.d.ts +82 -0
  69. package/web/fintekkers/models/security/bond/issuance_pb.js +646 -0
  70. package/web/fintekkers/models/security/security_pb.d.ts +7 -0
  71. package/web/fintekkers/models/security/security_pb.js +64 -2
@@ -0,0 +1,652 @@
1
+ // source: fintekkers/models/security/bond/issuance.proto
2
+ /**
3
+ * @fileoverview
4
+ * @enhanceable
5
+ * @suppress {missingRequire} reports error on implicit type usages.
6
+ * @suppress {messageConventions} JS Compiler reports an error if a variable or
7
+ * field starts with 'MSG_' and isn't a translatable message.
8
+ * @public
9
+ */
10
+ // GENERATED CODE -- DO NOT EDIT!
11
+ /* eslint-disable */
12
+ // @ts-nocheck
13
+
14
+ var jspb = require('google-protobuf');
15
+ var goog = jspb;
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
23
+
24
+ var fintekkers_models_security_bond_auction_type_pb = require('../../../../fintekkers/models/security/bond/auction_type_pb.js');
25
+ goog.object.extend(proto, fintekkers_models_security_bond_auction_type_pb);
26
+ var fintekkers_models_util_decimal_value_pb = require('../../../../fintekkers/models/util/decimal_value_pb.js');
27
+ goog.object.extend(proto, fintekkers_models_util_decimal_value_pb);
28
+ var fintekkers_models_util_local_date_pb = require('../../../../fintekkers/models/util/local_date_pb.js');
29
+ goog.object.extend(proto, fintekkers_models_util_local_date_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);
32
+ goog.exportSymbol('proto.fintekkers.models.security.bond.IssuanceProto', null, global);
33
+ /**
34
+ * Generated by JsPbCodeGenerator.
35
+ * @param {Array=} opt_data Optional initial data array, typically from a
36
+ * server response, or constructed directly in Javascript. The array is used
37
+ * in place and becomes part of the constructed object. It is not cloned.
38
+ * If no data is provided, the constructed object will be empty, but still
39
+ * valid.
40
+ * @extends {jspb.Message}
41
+ * @constructor
42
+ */
43
+ proto.fintekkers.models.security.bond.IssuanceProto = function(opt_data) {
44
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
45
+ };
46
+ goog.inherits(proto.fintekkers.models.security.bond.IssuanceProto, jspb.Message);
47
+ if (goog.DEBUG && !COMPILED) {
48
+ /**
49
+ * @public
50
+ * @override
51
+ */
52
+ proto.fintekkers.models.security.bond.IssuanceProto.displayName = 'proto.fintekkers.models.security.bond.IssuanceProto';
53
+ }
54
+
55
+
56
+
57
+ if (jspb.Message.GENERATE_TO_OBJECT) {
58
+ /**
59
+ * Creates an object representation of this proto.
60
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
61
+ * Optional fields that are not set will be set to undefined.
62
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
63
+ * For the list of reserved names please see:
64
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
65
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
66
+ * JSPB instance for transitional soy proto support:
67
+ * http://goto/soy-param-migration
68
+ * @return {!Object}
69
+ */
70
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.toObject = function(opt_includeInstance) {
71
+ return proto.fintekkers.models.security.bond.IssuanceProto.toObject(opt_includeInstance, this);
72
+ };
73
+
74
+
75
+ /**
76
+ * Static version of the {@see toObject} method.
77
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
78
+ * the JSPB instance for transitional soy proto support:
79
+ * http://goto/soy-param-migration
80
+ * @param {!proto.fintekkers.models.security.bond.IssuanceProto} msg The msg instance to transform.
81
+ * @return {!Object}
82
+ * @suppress {unusedLocalVariables} f is only used for nested messages
83
+ */
84
+ proto.fintekkers.models.security.bond.IssuanceProto.toObject = function(includeInstance, msg) {
85
+ var f, obj = {
86
+ objectClass: jspb.Message.getFieldWithDefault(msg, 1, ""),
87
+ version: jspb.Message.getFieldWithDefault(msg, 2, ""),
88
+ asOf: (f = msg.getAsOf()) && fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.toObject(includeInstance, f),
89
+ validFrom: (f = msg.getValidFrom()) && fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.toObject(includeInstance, f),
90
+ validTo: (f = msg.getValidTo()) && fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.toObject(includeInstance, f),
91
+ auctionAnnouncementDate: (f = msg.getAuctionAnnouncementDate()) && fintekkers_models_util_local_date_pb.LocalDateProto.toObject(includeInstance, f),
92
+ auctionIssueDate: (f = msg.getAuctionIssueDate()) && fintekkers_models_util_local_date_pb.LocalDateProto.toObject(includeInstance, f),
93
+ preauctionOutstandingQuantity: (f = msg.getPreauctionOutstandingQuantity()) && fintekkers_models_util_decimal_value_pb.DecimalValueProto.toObject(includeInstance, f),
94
+ auctionOfferingAmount: (f = msg.getAuctionOfferingAmount()) && fintekkers_models_util_decimal_value_pb.DecimalValueProto.toObject(includeInstance, f),
95
+ auctionType: jspb.Message.getFieldWithDefault(msg, 24, 0),
96
+ priceForSinglePriceAuction: (f = msg.getPriceForSinglePriceAuction()) && fintekkers_models_util_decimal_value_pb.DecimalValueProto.toObject(includeInstance, f)
97
+ };
98
+
99
+ if (includeInstance) {
100
+ obj.$jspbMessageInstance = msg;
101
+ }
102
+ return obj;
103
+ };
104
+ }
105
+
106
+
107
+ /**
108
+ * Deserializes binary data (in protobuf wire format).
109
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
110
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto}
111
+ */
112
+ proto.fintekkers.models.security.bond.IssuanceProto.deserializeBinary = function(bytes) {
113
+ var reader = new jspb.BinaryReader(bytes);
114
+ var msg = new proto.fintekkers.models.security.bond.IssuanceProto;
115
+ return proto.fintekkers.models.security.bond.IssuanceProto.deserializeBinaryFromReader(msg, reader);
116
+ };
117
+
118
+
119
+ /**
120
+ * Deserializes binary data (in protobuf wire format) from the
121
+ * given reader into the given message object.
122
+ * @param {!proto.fintekkers.models.security.bond.IssuanceProto} msg The message object to deserialize into.
123
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
124
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto}
125
+ */
126
+ proto.fintekkers.models.security.bond.IssuanceProto.deserializeBinaryFromReader = function(msg, reader) {
127
+ while (reader.nextField()) {
128
+ if (reader.isEndGroup()) {
129
+ break;
130
+ }
131
+ var field = reader.getFieldNumber();
132
+ switch (field) {
133
+ case 1:
134
+ var value = /** @type {string} */ (reader.readString());
135
+ msg.setObjectClass(value);
136
+ break;
137
+ case 2:
138
+ var value = /** @type {string} */ (reader.readString());
139
+ msg.setVersion(value);
140
+ break;
141
+ case 6:
142
+ var value = new fintekkers_models_util_local_timestamp_pb.LocalTimestampProto;
143
+ reader.readMessage(value,fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.deserializeBinaryFromReader);
144
+ msg.setAsOf(value);
145
+ break;
146
+ case 8:
147
+ var value = new fintekkers_models_util_local_timestamp_pb.LocalTimestampProto;
148
+ reader.readMessage(value,fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.deserializeBinaryFromReader);
149
+ msg.setValidFrom(value);
150
+ break;
151
+ case 9:
152
+ var value = new fintekkers_models_util_local_timestamp_pb.LocalTimestampProto;
153
+ reader.readMessage(value,fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.deserializeBinaryFromReader);
154
+ msg.setValidTo(value);
155
+ break;
156
+ case 20:
157
+ var value = new fintekkers_models_util_local_date_pb.LocalDateProto;
158
+ reader.readMessage(value,fintekkers_models_util_local_date_pb.LocalDateProto.deserializeBinaryFromReader);
159
+ msg.setAuctionAnnouncementDate(value);
160
+ break;
161
+ case 21:
162
+ var value = new fintekkers_models_util_local_date_pb.LocalDateProto;
163
+ reader.readMessage(value,fintekkers_models_util_local_date_pb.LocalDateProto.deserializeBinaryFromReader);
164
+ msg.setAuctionIssueDate(value);
165
+ break;
166
+ case 22:
167
+ var value = new fintekkers_models_util_decimal_value_pb.DecimalValueProto;
168
+ reader.readMessage(value,fintekkers_models_util_decimal_value_pb.DecimalValueProto.deserializeBinaryFromReader);
169
+ msg.setPreauctionOutstandingQuantity(value);
170
+ break;
171
+ case 23:
172
+ var value = new fintekkers_models_util_decimal_value_pb.DecimalValueProto;
173
+ reader.readMessage(value,fintekkers_models_util_decimal_value_pb.DecimalValueProto.deserializeBinaryFromReader);
174
+ msg.setAuctionOfferingAmount(value);
175
+ break;
176
+ case 24:
177
+ var value = /** @type {!proto.fintekkers.models.security.bond.AuctionTypeProto} */ (reader.readEnum());
178
+ msg.setAuctionType(value);
179
+ break;
180
+ case 25:
181
+ var value = new fintekkers_models_util_decimal_value_pb.DecimalValueProto;
182
+ reader.readMessage(value,fintekkers_models_util_decimal_value_pb.DecimalValueProto.deserializeBinaryFromReader);
183
+ msg.setPriceForSinglePriceAuction(value);
184
+ break;
185
+ default:
186
+ reader.skipField();
187
+ break;
188
+ }
189
+ }
190
+ return msg;
191
+ };
192
+
193
+
194
+ /**
195
+ * Serializes the message to binary data (in protobuf wire format).
196
+ * @return {!Uint8Array}
197
+ */
198
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.serializeBinary = function() {
199
+ var writer = new jspb.BinaryWriter();
200
+ proto.fintekkers.models.security.bond.IssuanceProto.serializeBinaryToWriter(this, writer);
201
+ return writer.getResultBuffer();
202
+ };
203
+
204
+
205
+ /**
206
+ * Serializes the given message to binary data (in protobuf wire
207
+ * format), writing to the given BinaryWriter.
208
+ * @param {!proto.fintekkers.models.security.bond.IssuanceProto} message
209
+ * @param {!jspb.BinaryWriter} writer
210
+ * @suppress {unusedLocalVariables} f is only used for nested messages
211
+ */
212
+ proto.fintekkers.models.security.bond.IssuanceProto.serializeBinaryToWriter = function(message, writer) {
213
+ var f = undefined;
214
+ f = message.getObjectClass();
215
+ if (f.length > 0) {
216
+ writer.writeString(
217
+ 1,
218
+ f
219
+ );
220
+ }
221
+ f = message.getVersion();
222
+ if (f.length > 0) {
223
+ writer.writeString(
224
+ 2,
225
+ f
226
+ );
227
+ }
228
+ f = message.getAsOf();
229
+ if (f != null) {
230
+ writer.writeMessage(
231
+ 6,
232
+ f,
233
+ fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.serializeBinaryToWriter
234
+ );
235
+ }
236
+ f = message.getValidFrom();
237
+ if (f != null) {
238
+ writer.writeMessage(
239
+ 8,
240
+ f,
241
+ fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.serializeBinaryToWriter
242
+ );
243
+ }
244
+ f = message.getValidTo();
245
+ if (f != null) {
246
+ writer.writeMessage(
247
+ 9,
248
+ f,
249
+ fintekkers_models_util_local_timestamp_pb.LocalTimestampProto.serializeBinaryToWriter
250
+ );
251
+ }
252
+ f = message.getAuctionAnnouncementDate();
253
+ if (f != null) {
254
+ writer.writeMessage(
255
+ 20,
256
+ f,
257
+ fintekkers_models_util_local_date_pb.LocalDateProto.serializeBinaryToWriter
258
+ );
259
+ }
260
+ f = message.getAuctionIssueDate();
261
+ if (f != null) {
262
+ writer.writeMessage(
263
+ 21,
264
+ f,
265
+ fintekkers_models_util_local_date_pb.LocalDateProto.serializeBinaryToWriter
266
+ );
267
+ }
268
+ f = message.getPreauctionOutstandingQuantity();
269
+ if (f != null) {
270
+ writer.writeMessage(
271
+ 22,
272
+ f,
273
+ fintekkers_models_util_decimal_value_pb.DecimalValueProto.serializeBinaryToWriter
274
+ );
275
+ }
276
+ f = message.getAuctionOfferingAmount();
277
+ if (f != null) {
278
+ writer.writeMessage(
279
+ 23,
280
+ f,
281
+ fintekkers_models_util_decimal_value_pb.DecimalValueProto.serializeBinaryToWriter
282
+ );
283
+ }
284
+ f = message.getAuctionType();
285
+ if (f !== 0.0) {
286
+ writer.writeEnum(
287
+ 24,
288
+ f
289
+ );
290
+ }
291
+ f = message.getPriceForSinglePriceAuction();
292
+ if (f != null) {
293
+ writer.writeMessage(
294
+ 25,
295
+ f,
296
+ fintekkers_models_util_decimal_value_pb.DecimalValueProto.serializeBinaryToWriter
297
+ );
298
+ }
299
+ };
300
+
301
+
302
+ /**
303
+ * optional string object_class = 1;
304
+ * @return {string}
305
+ */
306
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getObjectClass = function() {
307
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
308
+ };
309
+
310
+
311
+ /**
312
+ * @param {string} value
313
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
314
+ */
315
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setObjectClass = function(value) {
316
+ return jspb.Message.setProto3StringField(this, 1, value);
317
+ };
318
+
319
+
320
+ /**
321
+ * optional string version = 2;
322
+ * @return {string}
323
+ */
324
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getVersion = function() {
325
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
326
+ };
327
+
328
+
329
+ /**
330
+ * @param {string} value
331
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
332
+ */
333
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setVersion = function(value) {
334
+ return jspb.Message.setProto3StringField(this, 2, value);
335
+ };
336
+
337
+
338
+ /**
339
+ * optional fintekkers.models.util.LocalTimestampProto as_of = 6;
340
+ * @return {?proto.fintekkers.models.util.LocalTimestampProto}
341
+ */
342
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getAsOf = function() {
343
+ return /** @type{?proto.fintekkers.models.util.LocalTimestampProto} */ (
344
+ jspb.Message.getWrapperField(this, fintekkers_models_util_local_timestamp_pb.LocalTimestampProto, 6));
345
+ };
346
+
347
+
348
+ /**
349
+ * @param {?proto.fintekkers.models.util.LocalTimestampProto|undefined} value
350
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
351
+ */
352
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setAsOf = function(value) {
353
+ return jspb.Message.setWrapperField(this, 6, value);
354
+ };
355
+
356
+
357
+ /**
358
+ * Clears the message field making it undefined.
359
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
360
+ */
361
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.clearAsOf = function() {
362
+ return this.setAsOf(undefined);
363
+ };
364
+
365
+
366
+ /**
367
+ * Returns whether this field is set.
368
+ * @return {boolean}
369
+ */
370
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.hasAsOf = function() {
371
+ return jspb.Message.getField(this, 6) != null;
372
+ };
373
+
374
+
375
+ /**
376
+ * optional fintekkers.models.util.LocalTimestampProto valid_from = 8;
377
+ * @return {?proto.fintekkers.models.util.LocalTimestampProto}
378
+ */
379
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getValidFrom = function() {
380
+ return /** @type{?proto.fintekkers.models.util.LocalTimestampProto} */ (
381
+ jspb.Message.getWrapperField(this, fintekkers_models_util_local_timestamp_pb.LocalTimestampProto, 8));
382
+ };
383
+
384
+
385
+ /**
386
+ * @param {?proto.fintekkers.models.util.LocalTimestampProto|undefined} value
387
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
388
+ */
389
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setValidFrom = function(value) {
390
+ return jspb.Message.setWrapperField(this, 8, value);
391
+ };
392
+
393
+
394
+ /**
395
+ * Clears the message field making it undefined.
396
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
397
+ */
398
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.clearValidFrom = function() {
399
+ return this.setValidFrom(undefined);
400
+ };
401
+
402
+
403
+ /**
404
+ * Returns whether this field is set.
405
+ * @return {boolean}
406
+ */
407
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.hasValidFrom = function() {
408
+ return jspb.Message.getField(this, 8) != null;
409
+ };
410
+
411
+
412
+ /**
413
+ * optional fintekkers.models.util.LocalTimestampProto valid_to = 9;
414
+ * @return {?proto.fintekkers.models.util.LocalTimestampProto}
415
+ */
416
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getValidTo = function() {
417
+ return /** @type{?proto.fintekkers.models.util.LocalTimestampProto} */ (
418
+ jspb.Message.getWrapperField(this, fintekkers_models_util_local_timestamp_pb.LocalTimestampProto, 9));
419
+ };
420
+
421
+
422
+ /**
423
+ * @param {?proto.fintekkers.models.util.LocalTimestampProto|undefined} value
424
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
425
+ */
426
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setValidTo = function(value) {
427
+ return jspb.Message.setWrapperField(this, 9, value);
428
+ };
429
+
430
+
431
+ /**
432
+ * Clears the message field making it undefined.
433
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
434
+ */
435
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.clearValidTo = function() {
436
+ return this.setValidTo(undefined);
437
+ };
438
+
439
+
440
+ /**
441
+ * Returns whether this field is set.
442
+ * @return {boolean}
443
+ */
444
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.hasValidTo = function() {
445
+ return jspb.Message.getField(this, 9) != null;
446
+ };
447
+
448
+
449
+ /**
450
+ * optional fintekkers.models.util.LocalDateProto auction_announcement_date = 20;
451
+ * @return {?proto.fintekkers.models.util.LocalDateProto}
452
+ */
453
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getAuctionAnnouncementDate = function() {
454
+ return /** @type{?proto.fintekkers.models.util.LocalDateProto} */ (
455
+ jspb.Message.getWrapperField(this, fintekkers_models_util_local_date_pb.LocalDateProto, 20));
456
+ };
457
+
458
+
459
+ /**
460
+ * @param {?proto.fintekkers.models.util.LocalDateProto|undefined} value
461
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
462
+ */
463
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setAuctionAnnouncementDate = function(value) {
464
+ return jspb.Message.setWrapperField(this, 20, value);
465
+ };
466
+
467
+
468
+ /**
469
+ * Clears the message field making it undefined.
470
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
471
+ */
472
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.clearAuctionAnnouncementDate = function() {
473
+ return this.setAuctionAnnouncementDate(undefined);
474
+ };
475
+
476
+
477
+ /**
478
+ * Returns whether this field is set.
479
+ * @return {boolean}
480
+ */
481
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.hasAuctionAnnouncementDate = function() {
482
+ return jspb.Message.getField(this, 20) != null;
483
+ };
484
+
485
+
486
+ /**
487
+ * optional fintekkers.models.util.LocalDateProto auction_issue_date = 21;
488
+ * @return {?proto.fintekkers.models.util.LocalDateProto}
489
+ */
490
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getAuctionIssueDate = function() {
491
+ return /** @type{?proto.fintekkers.models.util.LocalDateProto} */ (
492
+ jspb.Message.getWrapperField(this, fintekkers_models_util_local_date_pb.LocalDateProto, 21));
493
+ };
494
+
495
+
496
+ /**
497
+ * @param {?proto.fintekkers.models.util.LocalDateProto|undefined} value
498
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
499
+ */
500
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setAuctionIssueDate = function(value) {
501
+ return jspb.Message.setWrapperField(this, 21, value);
502
+ };
503
+
504
+
505
+ /**
506
+ * Clears the message field making it undefined.
507
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
508
+ */
509
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.clearAuctionIssueDate = function() {
510
+ return this.setAuctionIssueDate(undefined);
511
+ };
512
+
513
+
514
+ /**
515
+ * Returns whether this field is set.
516
+ * @return {boolean}
517
+ */
518
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.hasAuctionIssueDate = function() {
519
+ return jspb.Message.getField(this, 21) != null;
520
+ };
521
+
522
+
523
+ /**
524
+ * optional fintekkers.models.util.DecimalValueProto preauction_outstanding_quantity = 22;
525
+ * @return {?proto.fintekkers.models.util.DecimalValueProto}
526
+ */
527
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getPreauctionOutstandingQuantity = function() {
528
+ return /** @type{?proto.fintekkers.models.util.DecimalValueProto} */ (
529
+ jspb.Message.getWrapperField(this, fintekkers_models_util_decimal_value_pb.DecimalValueProto, 22));
530
+ };
531
+
532
+
533
+ /**
534
+ * @param {?proto.fintekkers.models.util.DecimalValueProto|undefined} value
535
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
536
+ */
537
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setPreauctionOutstandingQuantity = function(value) {
538
+ return jspb.Message.setWrapperField(this, 22, value);
539
+ };
540
+
541
+
542
+ /**
543
+ * Clears the message field making it undefined.
544
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
545
+ */
546
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.clearPreauctionOutstandingQuantity = function() {
547
+ return this.setPreauctionOutstandingQuantity(undefined);
548
+ };
549
+
550
+
551
+ /**
552
+ * Returns whether this field is set.
553
+ * @return {boolean}
554
+ */
555
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.hasPreauctionOutstandingQuantity = function() {
556
+ return jspb.Message.getField(this, 22) != null;
557
+ };
558
+
559
+
560
+ /**
561
+ * optional fintekkers.models.util.DecimalValueProto auction_offering_amount = 23;
562
+ * @return {?proto.fintekkers.models.util.DecimalValueProto}
563
+ */
564
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getAuctionOfferingAmount = function() {
565
+ return /** @type{?proto.fintekkers.models.util.DecimalValueProto} */ (
566
+ jspb.Message.getWrapperField(this, fintekkers_models_util_decimal_value_pb.DecimalValueProto, 23));
567
+ };
568
+
569
+
570
+ /**
571
+ * @param {?proto.fintekkers.models.util.DecimalValueProto|undefined} value
572
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
573
+ */
574
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setAuctionOfferingAmount = function(value) {
575
+ return jspb.Message.setWrapperField(this, 23, value);
576
+ };
577
+
578
+
579
+ /**
580
+ * Clears the message field making it undefined.
581
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
582
+ */
583
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.clearAuctionOfferingAmount = function() {
584
+ return this.setAuctionOfferingAmount(undefined);
585
+ };
586
+
587
+
588
+ /**
589
+ * Returns whether this field is set.
590
+ * @return {boolean}
591
+ */
592
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.hasAuctionOfferingAmount = function() {
593
+ return jspb.Message.getField(this, 23) != null;
594
+ };
595
+
596
+
597
+ /**
598
+ * optional AuctionTypeProto auction_type = 24;
599
+ * @return {!proto.fintekkers.models.security.bond.AuctionTypeProto}
600
+ */
601
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getAuctionType = function() {
602
+ return /** @type {!proto.fintekkers.models.security.bond.AuctionTypeProto} */ (jspb.Message.getFieldWithDefault(this, 24, 0));
603
+ };
604
+
605
+
606
+ /**
607
+ * @param {!proto.fintekkers.models.security.bond.AuctionTypeProto} value
608
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
609
+ */
610
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setAuctionType = function(value) {
611
+ return jspb.Message.setProto3EnumField(this, 24, value);
612
+ };
613
+
614
+
615
+ /**
616
+ * optional fintekkers.models.util.DecimalValueProto price_for_single_price_auction = 25;
617
+ * @return {?proto.fintekkers.models.util.DecimalValueProto}
618
+ */
619
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.getPriceForSinglePriceAuction = function() {
620
+ return /** @type{?proto.fintekkers.models.util.DecimalValueProto} */ (
621
+ jspb.Message.getWrapperField(this, fintekkers_models_util_decimal_value_pb.DecimalValueProto, 25));
622
+ };
623
+
624
+
625
+ /**
626
+ * @param {?proto.fintekkers.models.util.DecimalValueProto|undefined} value
627
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
628
+ */
629
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.setPriceForSinglePriceAuction = function(value) {
630
+ return jspb.Message.setWrapperField(this, 25, value);
631
+ };
632
+
633
+
634
+ /**
635
+ * Clears the message field making it undefined.
636
+ * @return {!proto.fintekkers.models.security.bond.IssuanceProto} returns this
637
+ */
638
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.clearPriceForSinglePriceAuction = function() {
639
+ return this.setPriceForSinglePriceAuction(undefined);
640
+ };
641
+
642
+
643
+ /**
644
+ * Returns whether this field is set.
645
+ * @return {boolean}
646
+ */
647
+ proto.fintekkers.models.security.bond.IssuanceProto.prototype.hasPriceForSinglePriceAuction = function() {
648
+ return jspb.Message.getField(this, 25) != null;
649
+ };
650
+
651
+
652
+ goog.object.extend(exports, proto.fintekkers.models.security.bond);
@@ -10,6 +10,7 @@ import * as fintekkers_models_util_local_date_pb from "../../../fintekkers/model
10
10
  import * as fintekkers_models_util_local_timestamp_pb from "../../../fintekkers/models/util/local_timestamp_pb";
11
11
  import * as fintekkers_models_util_uuid_pb from "../../../fintekkers/models/util/uuid_pb";
12
12
  import * as fintekkers_models_security_identifier_identifier_pb from "../../../fintekkers/models/security/identifier/identifier_pb";
13
+ import * as fintekkers_models_security_bond_issuance_pb from "../../../fintekkers/models/security/bond/issuance_pb";
13
14
  import * as fintekkers_models_security_security_type_pb from "../../../fintekkers/models/security/security_type_pb";
14
15
  import * as fintekkers_models_security_security_quantity_type_pb from "../../../fintekkers/models/security/security_quantity_type_pb";
15
16
  import * as fintekkers_models_security_coupon_frequency_pb from "../../../fintekkers/models/security/coupon_frequency_pb";
@@ -93,6 +94,10 @@ export class SecurityProto extends jspb.Message {
93
94
  clearMaturityDate(): void;
94
95
  getMaturityDate(): fintekkers_models_util_local_date_pb.LocalDateProto | undefined;
95
96
  setMaturityDate(value?: fintekkers_models_util_local_date_pb.LocalDateProto): SecurityProto;
97
+ clearIssuanceInfoList(): void;
98
+ getIssuanceInfoList(): Array<fintekkers_models_security_bond_issuance_pb.IssuanceProto>;
99
+ setIssuanceInfoList(value: Array<fintekkers_models_security_bond_issuance_pb.IssuanceProto>): SecurityProto;
100
+ addIssuanceInfo(value?: fintekkers_models_security_bond_issuance_pb.IssuanceProto, index?: number): fintekkers_models_security_bond_issuance_pb.IssuanceProto;
96
101
 
97
102
  serializeBinary(): Uint8Array;
98
103
  toObject(includeInstance?: boolean): SecurityProto.AsObject;
@@ -128,5 +133,6 @@ export namespace SecurityProto {
128
133
  faceValue?: fintekkers_models_util_decimal_value_pb.DecimalValueProto.AsObject,
129
134
  issueDate?: fintekkers_models_util_local_date_pb.LocalDateProto.AsObject,
130
135
  maturityDate?: fintekkers_models_util_local_date_pb.LocalDateProto.AsObject,
136
+ issuanceInfoList: Array<fintekkers_models_security_bond_issuance_pb.IssuanceProto.AsObject>,
131
137
  }
132
138
  }