@fintekkers/ledger-models 0.3.1 → 0.4.0
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.
- package/node/fintekkers/models/security/security_pb.d.ts +0 -80
- package/node/fintekkers/models/security/security_pb.js +1 -723
- package/node/fintekkers/models/security/security_pb.test.js +15 -15
- package/node/fintekkers/models/security/security_pb.test.js.map +1 -1
- package/node/fintekkers/models/security/security_pb.test.ts +17 -18
- package/node/wrappers/models/price/Price.cash.test.js +1 -1
- package/node/wrappers/models/price/Price.cash.test.js.map +1 -1
- package/node/wrappers/models/price/Price.cash.test.ts +2 -2
- package/node/wrappers/models/security/BondSecurity.js +8 -8
- package/node/wrappers/models/security/BondSecurity.js.map +1 -1
- package/node/wrappers/models/security/BondSecurity.priceScale.test.js +5 -3
- package/node/wrappers/models/security/BondSecurity.priceScale.test.js.map +1 -1
- package/node/wrappers/models/security/BondSecurity.priceScale.test.ts +7 -5
- package/node/wrappers/models/security/BondSecurity.test.js +28 -20
- package/node/wrappers/models/security/BondSecurity.test.js.map +1 -1
- package/node/wrappers/models/security/BondSecurity.test.ts +29 -21
- package/node/wrappers/models/security/BondSecurity.ts +8 -8
- package/node/wrappers/models/security/security-roundtrip.test.js +77 -61
- package/node/wrappers/models/security/security-roundtrip.test.js.map +1 -1
- package/node/wrappers/models/security/security-roundtrip.test.ts +78 -62
- package/node/wrappers/models/security/security.d.ts +2 -3
- package/node/wrappers/models/security/security.js +8 -10
- package/node/wrappers/models/security/security.js.map +1 -1
- package/node/wrappers/models/security/security.test.js +16 -12
- package/node/wrappers/models/security/security.test.js.map +1 -1
- package/node/wrappers/models/security/security.test.ts +17 -15
- package/node/wrappers/models/security/security.ts +8 -10
- package/node/wrappers/models/transaction/transaction.derived.test.js +8 -6
- package/node/wrappers/models/transaction/transaction.derived.test.js.map +1 -1
- package/node/wrappers/models/transaction/transaction.derived.test.ts +9 -7
- package/node/wrappers/models/transaction/transaction_constructor.test.js +8 -6
- package/node/wrappers/models/transaction/transaction_constructor.test.js.map +1 -1
- package/node/wrappers/models/transaction/transaction_constructor.test.ts +9 -7
- package/node/wrappers/services/searchWithSecurities.test.js +2 -2
- package/node/wrappers/services/searchWithSecurities.test.js.map +1 -1
- package/node/wrappers/services/searchWithSecurities.test.ts +2 -2
- package/node/wrappers/services/security-service/security.maturityLadder.test.js +2 -1
- package/node/wrappers/services/security-service/security.maturityLadder.test.js.map +1 -1
- package/node/wrappers/services/security-service/security.maturityLadder.test.ts +2 -1
- package/node/wrappers/services/security-service/security.test.js +10 -8
- package/node/wrappers/services/security-service/security.test.js.map +1 -1
- package/node/wrappers/services/security-service/security.test.ts +12 -9
- package/node/wrappers/util/link-resolver.test.js +1 -1
- package/node/wrappers/util/link-resolver.test.js.map +1 -1
- package/node/wrappers/util/link-resolver.test.ts +1 -1
- package/package.json +1 -1
|
@@ -69,75 +69,12 @@ export class SecurityProto extends jspb.Message {
|
|
|
69
69
|
setSettlementCurrency(value?: SecurityProto): SecurityProto;
|
|
70
70
|
getQuantityType(): fintekkers_models_security_security_quantity_type_pb.SecurityQuantityTypeProto;
|
|
71
71
|
setQuantityType(value: fintekkers_models_security_security_quantity_type_pb.SecurityQuantityTypeProto): SecurityProto;
|
|
72
|
-
|
|
73
|
-
hasIdentifier(): boolean;
|
|
74
|
-
clearIdentifier(): void;
|
|
75
|
-
getIdentifier(): fintekkers_models_security_identifier_identifier_pb.IdentifierProto | undefined;
|
|
76
|
-
setIdentifier(value?: fintekkers_models_security_identifier_identifier_pb.IdentifierProto): SecurityProto;
|
|
77
72
|
getDescription(): string;
|
|
78
73
|
setDescription(value: string): SecurityProto;
|
|
79
74
|
clearIdentifiersList(): void;
|
|
80
75
|
getIdentifiersList(): Array<fintekkers_models_security_identifier_identifier_pb.IdentifierProto>;
|
|
81
76
|
setIdentifiersList(value: Array<fintekkers_models_security_identifier_identifier_pb.IdentifierProto>): SecurityProto;
|
|
82
77
|
addIdentifiers(value?: fintekkers_models_security_identifier_identifier_pb.IdentifierProto, index?: number): fintekkers_models_security_identifier_identifier_pb.IdentifierProto;
|
|
83
|
-
getCashId(): string;
|
|
84
|
-
setCashId(value: string): SecurityProto;
|
|
85
|
-
|
|
86
|
-
hasCouponRate(): boolean;
|
|
87
|
-
clearCouponRate(): void;
|
|
88
|
-
getCouponRate(): fintekkers_models_util_decimal_value_pb.DecimalValueProto | undefined;
|
|
89
|
-
setCouponRate(value?: fintekkers_models_util_decimal_value_pb.DecimalValueProto): SecurityProto;
|
|
90
|
-
getCouponType(): fintekkers_models_security_coupon_type_pb.CouponTypeProto;
|
|
91
|
-
setCouponType(value: fintekkers_models_security_coupon_type_pb.CouponTypeProto): SecurityProto;
|
|
92
|
-
getCouponFrequency(): fintekkers_models_security_coupon_frequency_pb.CouponFrequencyProto;
|
|
93
|
-
setCouponFrequency(value: fintekkers_models_security_coupon_frequency_pb.CouponFrequencyProto): SecurityProto;
|
|
94
|
-
|
|
95
|
-
hasDatedDate(): boolean;
|
|
96
|
-
clearDatedDate(): void;
|
|
97
|
-
getDatedDate(): fintekkers_models_util_local_date_pb.LocalDateProto | undefined;
|
|
98
|
-
setDatedDate(value?: fintekkers_models_util_local_date_pb.LocalDateProto): SecurityProto;
|
|
99
|
-
|
|
100
|
-
hasFaceValue(): boolean;
|
|
101
|
-
clearFaceValue(): void;
|
|
102
|
-
getFaceValue(): fintekkers_models_util_decimal_value_pb.DecimalValueProto | undefined;
|
|
103
|
-
setFaceValue(value?: fintekkers_models_util_decimal_value_pb.DecimalValueProto): SecurityProto;
|
|
104
|
-
|
|
105
|
-
hasIssueDate(): boolean;
|
|
106
|
-
clearIssueDate(): void;
|
|
107
|
-
getIssueDate(): fintekkers_models_util_local_date_pb.LocalDateProto | undefined;
|
|
108
|
-
setIssueDate(value?: fintekkers_models_util_local_date_pb.LocalDateProto): SecurityProto;
|
|
109
|
-
|
|
110
|
-
hasMaturityDate(): boolean;
|
|
111
|
-
clearMaturityDate(): void;
|
|
112
|
-
getMaturityDate(): fintekkers_models_util_local_date_pb.LocalDateProto | undefined;
|
|
113
|
-
setMaturityDate(value?: fintekkers_models_util_local_date_pb.LocalDateProto): SecurityProto;
|
|
114
|
-
clearIssuanceInfoList(): void;
|
|
115
|
-
getIssuanceInfoList(): Array<fintekkers_models_security_bond_issuance_pb.IssuanceProto>;
|
|
116
|
-
setIssuanceInfoList(value: Array<fintekkers_models_security_bond_issuance_pb.IssuanceProto>): SecurityProto;
|
|
117
|
-
addIssuanceInfo(value?: fintekkers_models_security_bond_issuance_pb.IssuanceProto, index?: number): fintekkers_models_security_bond_issuance_pb.IssuanceProto;
|
|
118
|
-
|
|
119
|
-
hasBaseCpi(): boolean;
|
|
120
|
-
clearBaseCpi(): void;
|
|
121
|
-
getBaseCpi(): fintekkers_models_util_decimal_value_pb.DecimalValueProto | undefined;
|
|
122
|
-
setBaseCpi(value?: fintekkers_models_util_decimal_value_pb.DecimalValueProto): SecurityProto;
|
|
123
|
-
|
|
124
|
-
hasIndexDate(): boolean;
|
|
125
|
-
clearIndexDate(): void;
|
|
126
|
-
getIndexDate(): fintekkers_models_util_local_date_pb.LocalDateProto | undefined;
|
|
127
|
-
setIndexDate(value?: fintekkers_models_util_local_date_pb.LocalDateProto): SecurityProto;
|
|
128
|
-
getInflationIndexType(): fintekkers_models_security_index_index_type_pb.IndexTypeProto;
|
|
129
|
-
setInflationIndexType(value: fintekkers_models_security_index_index_type_pb.IndexTypeProto): SecurityProto;
|
|
130
|
-
|
|
131
|
-
hasSpread(): boolean;
|
|
132
|
-
clearSpread(): void;
|
|
133
|
-
getSpread(): fintekkers_models_util_decimal_value_pb.DecimalValueProto | undefined;
|
|
134
|
-
setSpread(value?: fintekkers_models_util_decimal_value_pb.DecimalValueProto): SecurityProto;
|
|
135
|
-
getReferenceRateIndex(): fintekkers_models_security_index_index_type_pb.IndexTypeProto;
|
|
136
|
-
setReferenceRateIndex(value: fintekkers_models_security_index_index_type_pb.IndexTypeProto): SecurityProto;
|
|
137
|
-
getResetFrequency(): fintekkers_models_security_coupon_frequency_pb.CouponFrequencyProto;
|
|
138
|
-
setResetFrequency(value: fintekkers_models_security_coupon_frequency_pb.CouponFrequencyProto): SecurityProto;
|
|
139
|
-
getIndexType(): fintekkers_models_security_index_index_type_pb.IndexTypeProto;
|
|
140
|
-
setIndexType(value: fintekkers_models_security_index_index_type_pb.IndexTypeProto): SecurityProto;
|
|
141
78
|
|
|
142
79
|
hasBondDetails(): boolean;
|
|
143
80
|
clearBondDetails(): void;
|
|
@@ -203,25 +140,8 @@ export namespace SecurityProto {
|
|
|
203
140
|
issuerName: string,
|
|
204
141
|
settlementCurrency?: SecurityProto.AsObject,
|
|
205
142
|
quantityType: fintekkers_models_security_security_quantity_type_pb.SecurityQuantityTypeProto,
|
|
206
|
-
identifier?: fintekkers_models_security_identifier_identifier_pb.IdentifierProto.AsObject,
|
|
207
143
|
description: string,
|
|
208
144
|
identifiersList: Array<fintekkers_models_security_identifier_identifier_pb.IdentifierProto.AsObject>,
|
|
209
|
-
cashId: string,
|
|
210
|
-
couponRate?: fintekkers_models_util_decimal_value_pb.DecimalValueProto.AsObject,
|
|
211
|
-
couponType: fintekkers_models_security_coupon_type_pb.CouponTypeProto,
|
|
212
|
-
couponFrequency: fintekkers_models_security_coupon_frequency_pb.CouponFrequencyProto,
|
|
213
|
-
datedDate?: fintekkers_models_util_local_date_pb.LocalDateProto.AsObject,
|
|
214
|
-
faceValue?: fintekkers_models_util_decimal_value_pb.DecimalValueProto.AsObject,
|
|
215
|
-
issueDate?: fintekkers_models_util_local_date_pb.LocalDateProto.AsObject,
|
|
216
|
-
maturityDate?: fintekkers_models_util_local_date_pb.LocalDateProto.AsObject,
|
|
217
|
-
issuanceInfoList: Array<fintekkers_models_security_bond_issuance_pb.IssuanceProto.AsObject>,
|
|
218
|
-
baseCpi?: fintekkers_models_util_decimal_value_pb.DecimalValueProto.AsObject,
|
|
219
|
-
indexDate?: fintekkers_models_util_local_date_pb.LocalDateProto.AsObject,
|
|
220
|
-
inflationIndexType: fintekkers_models_security_index_index_type_pb.IndexTypeProto,
|
|
221
|
-
spread?: fintekkers_models_util_decimal_value_pb.DecimalValueProto.AsObject,
|
|
222
|
-
referenceRateIndex: fintekkers_models_security_index_index_type_pb.IndexTypeProto,
|
|
223
|
-
resetFrequency: fintekkers_models_security_coupon_frequency_pb.CouponFrequencyProto,
|
|
224
|
-
indexType: fintekkers_models_security_index_index_type_pb.IndexTypeProto,
|
|
225
145
|
bondDetails?: BondDetailsProto.AsObject,
|
|
226
146
|
tipsExtension?: TipsExtensionProto.AsObject,
|
|
227
147
|
frnExtension?: FrnExtensionProto.AsObject,
|