@fintekkers/ledger-models 0.1.62 → 0.1.63

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