@fintekkers/ledger-models 0.1.128 → 0.1.129

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.
@@ -19,4 +19,8 @@ export enum IndexTypeProto {
19
19
  SONIA = 13,
20
20
  ESTR = 14,
21
21
  TONA = 15,
22
+ US_TREASURY = 20,
23
+ UK_GILT = 21,
24
+ DE_BUND = 22,
25
+ JP_JGB = 23,
22
26
  }
@@ -31,7 +31,11 @@ proto.fintekkers.models.security.index.IndexTypeProto = {
31
31
  FED_FUNDS: 12,
32
32
  SONIA: 13,
33
33
  ESTR: 14,
34
- TONA: 15
34
+ TONA: 15,
35
+ US_TREASURY: 20,
36
+ UK_GILT: 21,
37
+ DE_BUND: 22,
38
+ JP_JGB: 23
35
39
  };
36
40
 
37
41
  goog.object.extend(exports, proto.fintekkers.models.security.index);
@@ -12,6 +12,11 @@ import * as fintekkers_models_util_local_date_pb from "../../../fintekkers/model
12
12
 
13
13
  export class ProductInput extends jspb.Message {
14
14
 
15
+ hasBond(): boolean;
16
+ clearBond(): void;
17
+ getBond(): BondInput | undefined;
18
+ setBond(value?: BondInput): ProductInput;
19
+
15
20
  hasFrn(): boolean;
16
21
  clearFrn(): void;
17
22
  getFrn(): FrnInput | undefined;
@@ -31,16 +36,53 @@ export class ProductInput extends jspb.Message {
31
36
 
32
37
  export namespace ProductInput {
33
38
  export type AsObject = {
39
+ bond?: BondInput.AsObject,
34
40
  frn?: FrnInput.AsObject,
35
41
  }
36
42
 
37
43
  export enum InputCase {
38
44
  INPUT_NOT_SET = 0,
45
+ BOND = 1,
39
46
  FRN = 8,
40
47
  }
41
48
 
42
49
  }
43
50
 
51
+ export class BondInput extends jspb.Message {
52
+
53
+ hasSecurity(): boolean;
54
+ clearSecurity(): void;
55
+ getSecurity(): fintekkers_models_security_security_pb.SecurityProto | undefined;
56
+ setSecurity(value?: fintekkers_models_security_security_pb.SecurityProto): BondInput;
57
+
58
+ hasCleanPrice(): boolean;
59
+ clearCleanPrice(): void;
60
+ getCleanPrice(): fintekkers_models_util_decimal_value_pb.DecimalValueProto | undefined;
61
+ setCleanPrice(value?: fintekkers_models_util_decimal_value_pb.DecimalValueProto): BondInput;
62
+
63
+ hasBenchmarkCurve(): boolean;
64
+ clearBenchmarkCurve(): void;
65
+ getBenchmarkCurve(): SecurityBasedCurveInput | undefined;
66
+ setBenchmarkCurve(value?: SecurityBasedCurveInput): BondInput;
67
+
68
+ serializeBinary(): Uint8Array;
69
+ toObject(includeInstance?: boolean): BondInput.AsObject;
70
+ static toObject(includeInstance: boolean, msg: BondInput): BondInput.AsObject;
71
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
72
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
73
+ static serializeBinaryToWriter(message: BondInput, writer: jspb.BinaryWriter): void;
74
+ static deserializeBinary(bytes: Uint8Array): BondInput;
75
+ static deserializeBinaryFromReader(message: BondInput, reader: jspb.BinaryReader): BondInput;
76
+ }
77
+
78
+ export namespace BondInput {
79
+ export type AsObject = {
80
+ security?: fintekkers_models_security_security_pb.SecurityProto.AsObject,
81
+ cleanPrice?: fintekkers_models_util_decimal_value_pb.DecimalValueProto.AsObject,
82
+ benchmarkCurve?: SecurityBasedCurveInput.AsObject,
83
+ }
84
+ }
85
+
44
86
  export class FrnInput extends jspb.Message {
45
87
 
46
88
  hasSecurity(): boolean;
@@ -135,3 +177,63 @@ export namespace CurvePoint {
135
177
  rate?: fintekkers_models_util_decimal_value_pb.DecimalValueProto.AsObject,
136
178
  }
137
179
  }
180
+
181
+ export class SecurityBasedCurveInput extends jspb.Message {
182
+ getIndex(): fintekkers_models_security_index_index_type_pb.IndexTypeProto;
183
+ setIndex(value: fintekkers_models_security_index_index_type_pb.IndexTypeProto): SecurityBasedCurveInput;
184
+
185
+ hasReferenceDate(): boolean;
186
+ clearReferenceDate(): void;
187
+ getReferenceDate(): fintekkers_models_util_local_date_pb.LocalDateProto | undefined;
188
+ setReferenceDate(value?: fintekkers_models_util_local_date_pb.LocalDateProto): SecurityBasedCurveInput;
189
+ clearPointsList(): void;
190
+ getPointsList(): Array<SecurityCurvePoint>;
191
+ setPointsList(value: Array<SecurityCurvePoint>): SecurityBasedCurveInput;
192
+ addPoints(value?: SecurityCurvePoint, index?: number): SecurityCurvePoint;
193
+
194
+ serializeBinary(): Uint8Array;
195
+ toObject(includeInstance?: boolean): SecurityBasedCurveInput.AsObject;
196
+ static toObject(includeInstance: boolean, msg: SecurityBasedCurveInput): SecurityBasedCurveInput.AsObject;
197
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
198
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
199
+ static serializeBinaryToWriter(message: SecurityBasedCurveInput, writer: jspb.BinaryWriter): void;
200
+ static deserializeBinary(bytes: Uint8Array): SecurityBasedCurveInput;
201
+ static deserializeBinaryFromReader(message: SecurityBasedCurveInput, reader: jspb.BinaryReader): SecurityBasedCurveInput;
202
+ }
203
+
204
+ export namespace SecurityBasedCurveInput {
205
+ export type AsObject = {
206
+ index: fintekkers_models_security_index_index_type_pb.IndexTypeProto,
207
+ referenceDate?: fintekkers_models_util_local_date_pb.LocalDateProto.AsObject,
208
+ pointsList: Array<SecurityCurvePoint.AsObject>,
209
+ }
210
+ }
211
+
212
+ export class SecurityCurvePoint extends jspb.Message {
213
+
214
+ hasSecurity(): boolean;
215
+ clearSecurity(): void;
216
+ getSecurity(): fintekkers_models_security_security_pb.SecurityProto | undefined;
217
+ setSecurity(value?: fintekkers_models_security_security_pb.SecurityProto): SecurityCurvePoint;
218
+
219
+ hasCleanPrice(): boolean;
220
+ clearCleanPrice(): void;
221
+ getCleanPrice(): fintekkers_models_util_decimal_value_pb.DecimalValueProto | undefined;
222
+ setCleanPrice(value?: fintekkers_models_util_decimal_value_pb.DecimalValueProto): SecurityCurvePoint;
223
+
224
+ serializeBinary(): Uint8Array;
225
+ toObject(includeInstance?: boolean): SecurityCurvePoint.AsObject;
226
+ static toObject(includeInstance: boolean, msg: SecurityCurvePoint): SecurityCurvePoint.AsObject;
227
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
228
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
229
+ static serializeBinaryToWriter(message: SecurityCurvePoint, writer: jspb.BinaryWriter): void;
230
+ static deserializeBinary(bytes: Uint8Array): SecurityCurvePoint;
231
+ static deserializeBinaryFromReader(message: SecurityCurvePoint, reader: jspb.BinaryReader): SecurityCurvePoint;
232
+ }
233
+
234
+ export namespace SecurityCurvePoint {
235
+ export type AsObject = {
236
+ security?: fintekkers_models_security_security_pb.SecurityProto.AsObject,
237
+ cleanPrice?: fintekkers_models_util_decimal_value_pb.DecimalValueProto.AsObject,
238
+ }
239
+ }