@yuants/data-interest-rate 0.0.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.
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Interest Rate when holding a product
3
+ *
4
+ * @public
5
+ */
6
+ export declare interface IInterestRate {
7
+ /**
8
+ * Series ID (Encoded as `encodePath(datasource_id, product_id)`)
9
+ */
10
+ series_id: string;
11
+ /**
12
+ * Settlement TimestampTz
13
+ */
14
+ created_at: string;
15
+ /**
16
+ * Data source ID
17
+ * 数据源 ID
18
+ */
19
+ datasource_id: string;
20
+ /**
21
+ * Product ID
22
+ * 品种 ID
23
+ */
24
+ product_id: string;
25
+ /**
26
+ * 持有多头时,在结算时刻的收益率
27
+ */
28
+ long_rate: string;
29
+ /**
30
+ * 持有空头时,在结算时刻的收益率
31
+ */
32
+ short_rate: string;
33
+ /** 结算价格 */
34
+ settlement_price: string;
35
+ }
36
+
37
+ export { }
package/dist/index.js ADDED
@@ -0,0 +1,23 @@
1
+ import { AddMigration } from '@yuants/sql';
2
+ AddMigration({
3
+ id: '0ed605e6-59f0-4684-a65a-54328e2af50f',
4
+ name: 'create_table_interest_rate',
5
+ dependencies: [],
6
+ statement: `
7
+ CREATE TABLE IF NOT EXISTS interest_rate (
8
+ series_id TEXT NOT NULL,
9
+ created_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,
10
+ datasource_id TEXT NOT NULL,
11
+ product_id TEXT NOT NULL,
12
+ long_rate TEXT NOT NULL,
13
+ short_rate TEXT NOT NULL,
14
+ settlement_price TEXT NOT NULL,
15
+ updated_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,
16
+ PRIMARY KEY (series_id, created_at)
17
+ );
18
+
19
+ CREATE INDEX IF NOT EXISTS idx_interest_rate_series_id_created_at ON ohlc (series_id, created_at desc);
20
+ create or replace trigger auto_update_updated_at before update on ohlc for each row execute function update_updated_at_column();
21
+ `,
22
+ });
23
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAuC3C,YAAY,CAAC;IACX,EAAE,EAAE,sCAAsC;IAC1C,IAAI,EAAE,4BAA4B;IAClC,YAAY,EAAE,EAAE;IAChB,SAAS,EAAE;;;;;;;;;;;;;;;GAeV;CACF,CAAC,CAAC","sourcesContent":["import { AddMigration } from '@yuants/sql';\n/**\n * Interest Rate when holding a product\n *\n * @public\n */\nexport interface IInterestRate {\n /**\n * Series ID (Encoded as `encodePath(datasource_id, product_id)`)\n */\n series_id: string;\n /**\n * Settlement TimestampTz\n */\n created_at: string;\n /**\n * Data source ID\n * 数据源 ID\n */\n datasource_id: string;\n /**\n * Product ID\n * 品种 ID\n */\n product_id: string;\n\n /**\n * 持有多头时,在结算时刻的收益率\n */\n long_rate: string;\n /**\n * 持有空头时,在结算时刻的收益率\n */\n short_rate: string;\n\n /** 结算价格 */\n settlement_price: string;\n}\n\nAddMigration({\n id: '0ed605e6-59f0-4684-a65a-54328e2af50f',\n name: 'create_table_interest_rate',\n dependencies: [],\n statement: `\n CREATE TABLE IF NOT EXISTS interest_rate (\n series_id TEXT NOT NULL,\n created_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,\n datasource_id TEXT NOT NULL,\n product_id TEXT NOT NULL,\n long_rate TEXT NOT NULL,\n short_rate TEXT NOT NULL,\n settlement_price TEXT NOT NULL,\n updated_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,\n PRIMARY KEY (series_id, created_at)\n );\n\n CREATE INDEX IF NOT EXISTS idx_interest_rate_series_id_created_at ON ohlc (series_id, created_at desc);\n create or replace trigger auto_update_updated_at before update on ohlc for each row execute function update_updated_at_column();\n `,\n});\n"]}
package/lib/index.d.ts ADDED
@@ -0,0 +1,36 @@
1
+ /**
2
+ * Interest Rate when holding a product
3
+ *
4
+ * @public
5
+ */
6
+ export interface IInterestRate {
7
+ /**
8
+ * Series ID (Encoded as `encodePath(datasource_id, product_id)`)
9
+ */
10
+ series_id: string;
11
+ /**
12
+ * Settlement TimestampTz
13
+ */
14
+ created_at: string;
15
+ /**
16
+ * Data source ID
17
+ * 数据源 ID
18
+ */
19
+ datasource_id: string;
20
+ /**
21
+ * Product ID
22
+ * 品种 ID
23
+ */
24
+ product_id: string;
25
+ /**
26
+ * 持有多头时,在结算时刻的收益率
27
+ */
28
+ long_rate: string;
29
+ /**
30
+ * 持有空头时,在结算时刻的收益率
31
+ */
32
+ short_rate: string;
33
+ /** 结算价格 */
34
+ settlement_price: string;
35
+ }
36
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA;;;;GAIG;AACH,MAAM,WAAW,aAAa;IAC5B;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;;OAGG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB,WAAW;IACX,gBAAgB,EAAE,MAAM,CAAC;CAC1B"}
package/lib/index.js ADDED
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const sql_1 = require("@yuants/sql");
4
+ (0, sql_1.AddMigration)({
5
+ id: '0ed605e6-59f0-4684-a65a-54328e2af50f',
6
+ name: 'create_table_interest_rate',
7
+ dependencies: [],
8
+ statement: `
9
+ CREATE TABLE IF NOT EXISTS interest_rate (
10
+ series_id TEXT NOT NULL,
11
+ created_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,
12
+ datasource_id TEXT NOT NULL,
13
+ product_id TEXT NOT NULL,
14
+ long_rate TEXT NOT NULL,
15
+ short_rate TEXT NOT NULL,
16
+ settlement_price TEXT NOT NULL,
17
+ updated_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,
18
+ PRIMARY KEY (series_id, created_at)
19
+ );
20
+
21
+ CREATE INDEX IF NOT EXISTS idx_interest_rate_series_id_created_at ON ohlc (series_id, created_at desc);
22
+ create or replace trigger auto_update_updated_at before update on ohlc for each row execute function update_updated_at_column();
23
+ `,
24
+ });
25
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,qCAA2C;AAuC3C,IAAA,kBAAY,EAAC;IACX,EAAE,EAAE,sCAAsC;IAC1C,IAAI,EAAE,4BAA4B;IAClC,YAAY,EAAE,EAAE;IAChB,SAAS,EAAE;;;;;;;;;;;;;;;GAeV;CACF,CAAC,CAAC","sourcesContent":["import { AddMigration } from '@yuants/sql';\n/**\n * Interest Rate when holding a product\n *\n * @public\n */\nexport interface IInterestRate {\n /**\n * Series ID (Encoded as `encodePath(datasource_id, product_id)`)\n */\n series_id: string;\n /**\n * Settlement TimestampTz\n */\n created_at: string;\n /**\n * Data source ID\n * 数据源 ID\n */\n datasource_id: string;\n /**\n * Product ID\n * 品种 ID\n */\n product_id: string;\n\n /**\n * 持有多头时,在结算时刻的收益率\n */\n long_rate: string;\n /**\n * 持有空头时,在结算时刻的收益率\n */\n short_rate: string;\n\n /** 结算价格 */\n settlement_price: string;\n}\n\nAddMigration({\n id: '0ed605e6-59f0-4684-a65a-54328e2af50f',\n name: 'create_table_interest_rate',\n dependencies: [],\n statement: `\n CREATE TABLE IF NOT EXISTS interest_rate (\n series_id TEXT NOT NULL,\n created_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,\n datasource_id TEXT NOT NULL,\n product_id TEXT NOT NULL,\n long_rate TEXT NOT NULL,\n short_rate TEXT NOT NULL,\n settlement_price TEXT NOT NULL,\n updated_at TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP,\n PRIMARY KEY (series_id, created_at)\n );\n\n CREATE INDEX IF NOT EXISTS idx_interest_rate_series_id_created_at ON ohlc (series_id, created_at desc);\n create or replace trigger auto_update_updated_at before update on ohlc for each row execute function update_updated_at_column();\n `,\n});\n"]}
@@ -0,0 +1,11 @@
1
+ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
+ // It should be published with your NPM package. It should not be tracked by Git.
3
+ {
4
+ "tsdocVersion": "0.12",
5
+ "toolPackages": [
6
+ {
7
+ "packageName": "@microsoft/api-extractor",
8
+ "packageVersion": "7.30.1"
9
+ }
10
+ ]
11
+ }
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "@yuants/data-interest-rate",
3
+ "version": "0.0.0",
4
+ "main": "lib/index.js",
5
+ "module": "dist/index.js",
6
+ "files": [
7
+ "dist",
8
+ "lib",
9
+ "temp"
10
+ ],
11
+ "publishConfig": {
12
+ "registry": "https://registry.npmjs.org",
13
+ "access": "public"
14
+ },
15
+ "devDependencies": {
16
+ "@yuants/tool-kit": "0.1.10",
17
+ "@microsoft/api-extractor": "~7.30.0",
18
+ "@rushstack/heft": "~0.47.5",
19
+ "@rushstack/heft-jest-plugin": "~0.16.8",
20
+ "@rushstack/heft-node-rig": "~1.10.7",
21
+ "@types/heft-jest": "1.0.3",
22
+ "@types/json-schema": "~7.0.11",
23
+ "@types/node": "22",
24
+ "@types/uuid": "~8.3.4",
25
+ "typescript": "~4.7.4"
26
+ },
27
+ "dependencies": {
28
+ "@yuants/protocol": "0.34.0",
29
+ "@yuants/sql": "0.5.0",
30
+ "date-fns": "~2.30.0",
31
+ "date-fns-tz": "~2.0.0",
32
+ "rxjs": "~7.5.6",
33
+ "uuid": "~8.3.2"
34
+ },
35
+ "scripts": {
36
+ "build": "heft test --clean && api-extractor run --local && yuan-toolkit post-build"
37
+ }
38
+ }
@@ -0,0 +1,384 @@
1
+ {
2
+ "metadata": {
3
+ "toolPackage": "@microsoft/api-extractor",
4
+ "toolVersion": "7.30.1",
5
+ "schemaVersion": 1009,
6
+ "oldestForwardsCompatibleVersion": 1001,
7
+ "tsdocConfig": {
8
+ "$schema": "https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json",
9
+ "noStandardTags": true,
10
+ "tagDefinitions": [
11
+ {
12
+ "tagName": "@alpha",
13
+ "syntaxKind": "modifier"
14
+ },
15
+ {
16
+ "tagName": "@beta",
17
+ "syntaxKind": "modifier"
18
+ },
19
+ {
20
+ "tagName": "@defaultValue",
21
+ "syntaxKind": "block"
22
+ },
23
+ {
24
+ "tagName": "@decorator",
25
+ "syntaxKind": "block",
26
+ "allowMultiple": true
27
+ },
28
+ {
29
+ "tagName": "@deprecated",
30
+ "syntaxKind": "block"
31
+ },
32
+ {
33
+ "tagName": "@eventProperty",
34
+ "syntaxKind": "modifier"
35
+ },
36
+ {
37
+ "tagName": "@example",
38
+ "syntaxKind": "block",
39
+ "allowMultiple": true
40
+ },
41
+ {
42
+ "tagName": "@experimental",
43
+ "syntaxKind": "modifier"
44
+ },
45
+ {
46
+ "tagName": "@inheritDoc",
47
+ "syntaxKind": "inline"
48
+ },
49
+ {
50
+ "tagName": "@internal",
51
+ "syntaxKind": "modifier"
52
+ },
53
+ {
54
+ "tagName": "@label",
55
+ "syntaxKind": "inline"
56
+ },
57
+ {
58
+ "tagName": "@link",
59
+ "syntaxKind": "inline",
60
+ "allowMultiple": true
61
+ },
62
+ {
63
+ "tagName": "@override",
64
+ "syntaxKind": "modifier"
65
+ },
66
+ {
67
+ "tagName": "@packageDocumentation",
68
+ "syntaxKind": "modifier"
69
+ },
70
+ {
71
+ "tagName": "@param",
72
+ "syntaxKind": "block",
73
+ "allowMultiple": true
74
+ },
75
+ {
76
+ "tagName": "@privateRemarks",
77
+ "syntaxKind": "block"
78
+ },
79
+ {
80
+ "tagName": "@public",
81
+ "syntaxKind": "modifier"
82
+ },
83
+ {
84
+ "tagName": "@readonly",
85
+ "syntaxKind": "modifier"
86
+ },
87
+ {
88
+ "tagName": "@remarks",
89
+ "syntaxKind": "block"
90
+ },
91
+ {
92
+ "tagName": "@returns",
93
+ "syntaxKind": "block"
94
+ },
95
+ {
96
+ "tagName": "@sealed",
97
+ "syntaxKind": "modifier"
98
+ },
99
+ {
100
+ "tagName": "@see",
101
+ "syntaxKind": "block"
102
+ },
103
+ {
104
+ "tagName": "@throws",
105
+ "syntaxKind": "block",
106
+ "allowMultiple": true
107
+ },
108
+ {
109
+ "tagName": "@typeParam",
110
+ "syntaxKind": "block",
111
+ "allowMultiple": true
112
+ },
113
+ {
114
+ "tagName": "@virtual",
115
+ "syntaxKind": "modifier"
116
+ },
117
+ {
118
+ "tagName": "@betaDocumentation",
119
+ "syntaxKind": "modifier"
120
+ },
121
+ {
122
+ "tagName": "@internalRemarks",
123
+ "syntaxKind": "block"
124
+ },
125
+ {
126
+ "tagName": "@preapproved",
127
+ "syntaxKind": "modifier"
128
+ }
129
+ ],
130
+ "supportForTags": {
131
+ "@alpha": true,
132
+ "@beta": true,
133
+ "@defaultValue": true,
134
+ "@decorator": true,
135
+ "@deprecated": true,
136
+ "@eventProperty": true,
137
+ "@example": true,
138
+ "@experimental": true,
139
+ "@inheritDoc": true,
140
+ "@internal": true,
141
+ "@label": true,
142
+ "@link": true,
143
+ "@override": true,
144
+ "@packageDocumentation": true,
145
+ "@param": true,
146
+ "@privateRemarks": true,
147
+ "@public": true,
148
+ "@readonly": true,
149
+ "@remarks": true,
150
+ "@returns": true,
151
+ "@sealed": true,
152
+ "@see": true,
153
+ "@throws": true,
154
+ "@typeParam": true,
155
+ "@virtual": true,
156
+ "@betaDocumentation": true,
157
+ "@internalRemarks": true,
158
+ "@preapproved": true
159
+ },
160
+ "reportUnsupportedHtmlElements": false
161
+ }
162
+ },
163
+ "kind": "Package",
164
+ "canonicalReference": "@yuants/data-interest-rate!",
165
+ "docComment": "",
166
+ "name": "@yuants/data-interest-rate",
167
+ "preserveMemberOrder": false,
168
+ "members": [
169
+ {
170
+ "kind": "EntryPoint",
171
+ "canonicalReference": "@yuants/data-interest-rate!",
172
+ "name": "",
173
+ "preserveMemberOrder": false,
174
+ "members": [
175
+ {
176
+ "kind": "Interface",
177
+ "canonicalReference": "@yuants/data-interest-rate!IInterestRate:interface",
178
+ "docComment": "/**\n * Interest Rate when holding a product\n *\n * @public\n */\n",
179
+ "excerptTokens": [
180
+ {
181
+ "kind": "Content",
182
+ "text": "export interface IInterestRate "
183
+ }
184
+ ],
185
+ "releaseTag": "Public",
186
+ "name": "IInterestRate",
187
+ "preserveMemberOrder": false,
188
+ "members": [
189
+ {
190
+ "kind": "PropertySignature",
191
+ "canonicalReference": "@yuants/data-interest-rate!IInterestRate#created_at:member",
192
+ "docComment": "/**\n * Settlement TimestampTz\n */\n",
193
+ "excerptTokens": [
194
+ {
195
+ "kind": "Content",
196
+ "text": "created_at: "
197
+ },
198
+ {
199
+ "kind": "Content",
200
+ "text": "string"
201
+ },
202
+ {
203
+ "kind": "Content",
204
+ "text": ";"
205
+ }
206
+ ],
207
+ "isReadonly": false,
208
+ "isOptional": false,
209
+ "releaseTag": "Public",
210
+ "name": "created_at",
211
+ "propertyTypeTokenRange": {
212
+ "startIndex": 1,
213
+ "endIndex": 2
214
+ }
215
+ },
216
+ {
217
+ "kind": "PropertySignature",
218
+ "canonicalReference": "@yuants/data-interest-rate!IInterestRate#datasource_id:member",
219
+ "docComment": "/**\n * Data source ID 数据源 ID\n */\n",
220
+ "excerptTokens": [
221
+ {
222
+ "kind": "Content",
223
+ "text": "datasource_id: "
224
+ },
225
+ {
226
+ "kind": "Content",
227
+ "text": "string"
228
+ },
229
+ {
230
+ "kind": "Content",
231
+ "text": ";"
232
+ }
233
+ ],
234
+ "isReadonly": false,
235
+ "isOptional": false,
236
+ "releaseTag": "Public",
237
+ "name": "datasource_id",
238
+ "propertyTypeTokenRange": {
239
+ "startIndex": 1,
240
+ "endIndex": 2
241
+ }
242
+ },
243
+ {
244
+ "kind": "PropertySignature",
245
+ "canonicalReference": "@yuants/data-interest-rate!IInterestRate#long_rate:member",
246
+ "docComment": "/**\n * 持有多头时,在结算时刻的收益率\n */\n",
247
+ "excerptTokens": [
248
+ {
249
+ "kind": "Content",
250
+ "text": "long_rate: "
251
+ },
252
+ {
253
+ "kind": "Content",
254
+ "text": "string"
255
+ },
256
+ {
257
+ "kind": "Content",
258
+ "text": ";"
259
+ }
260
+ ],
261
+ "isReadonly": false,
262
+ "isOptional": false,
263
+ "releaseTag": "Public",
264
+ "name": "long_rate",
265
+ "propertyTypeTokenRange": {
266
+ "startIndex": 1,
267
+ "endIndex": 2
268
+ }
269
+ },
270
+ {
271
+ "kind": "PropertySignature",
272
+ "canonicalReference": "@yuants/data-interest-rate!IInterestRate#product_id:member",
273
+ "docComment": "/**\n * Product ID 品种 ID\n */\n",
274
+ "excerptTokens": [
275
+ {
276
+ "kind": "Content",
277
+ "text": "product_id: "
278
+ },
279
+ {
280
+ "kind": "Content",
281
+ "text": "string"
282
+ },
283
+ {
284
+ "kind": "Content",
285
+ "text": ";"
286
+ }
287
+ ],
288
+ "isReadonly": false,
289
+ "isOptional": false,
290
+ "releaseTag": "Public",
291
+ "name": "product_id",
292
+ "propertyTypeTokenRange": {
293
+ "startIndex": 1,
294
+ "endIndex": 2
295
+ }
296
+ },
297
+ {
298
+ "kind": "PropertySignature",
299
+ "canonicalReference": "@yuants/data-interest-rate!IInterestRate#series_id:member",
300
+ "docComment": "/**\n * Series ID (Encoded as `encodePath(datasource_id, product_id)`)\n */\n",
301
+ "excerptTokens": [
302
+ {
303
+ "kind": "Content",
304
+ "text": "series_id: "
305
+ },
306
+ {
307
+ "kind": "Content",
308
+ "text": "string"
309
+ },
310
+ {
311
+ "kind": "Content",
312
+ "text": ";"
313
+ }
314
+ ],
315
+ "isReadonly": false,
316
+ "isOptional": false,
317
+ "releaseTag": "Public",
318
+ "name": "series_id",
319
+ "propertyTypeTokenRange": {
320
+ "startIndex": 1,
321
+ "endIndex": 2
322
+ }
323
+ },
324
+ {
325
+ "kind": "PropertySignature",
326
+ "canonicalReference": "@yuants/data-interest-rate!IInterestRate#settlement_price:member",
327
+ "docComment": "/**\n * 结算价格\n */\n",
328
+ "excerptTokens": [
329
+ {
330
+ "kind": "Content",
331
+ "text": "settlement_price: "
332
+ },
333
+ {
334
+ "kind": "Content",
335
+ "text": "string"
336
+ },
337
+ {
338
+ "kind": "Content",
339
+ "text": ";"
340
+ }
341
+ ],
342
+ "isReadonly": false,
343
+ "isOptional": false,
344
+ "releaseTag": "Public",
345
+ "name": "settlement_price",
346
+ "propertyTypeTokenRange": {
347
+ "startIndex": 1,
348
+ "endIndex": 2
349
+ }
350
+ },
351
+ {
352
+ "kind": "PropertySignature",
353
+ "canonicalReference": "@yuants/data-interest-rate!IInterestRate#short_rate:member",
354
+ "docComment": "/**\n * 持有空头时,在结算时刻的收益率\n */\n",
355
+ "excerptTokens": [
356
+ {
357
+ "kind": "Content",
358
+ "text": "short_rate: "
359
+ },
360
+ {
361
+ "kind": "Content",
362
+ "text": "string"
363
+ },
364
+ {
365
+ "kind": "Content",
366
+ "text": ";"
367
+ }
368
+ ],
369
+ "isReadonly": false,
370
+ "isOptional": false,
371
+ "releaseTag": "Public",
372
+ "name": "short_rate",
373
+ "propertyTypeTokenRange": {
374
+ "startIndex": 1,
375
+ "endIndex": 2
376
+ }
377
+ }
378
+ ],
379
+ "extendsTokenRanges": []
380
+ }
381
+ ]
382
+ }
383
+ ]
384
+ }
@@ -0,0 +1,20 @@
1
+ ## API Report File for "@yuants/data-interest-rate"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ // @public
8
+ export interface IInterestRate {
9
+ created_at: string;
10
+ datasource_id: string;
11
+ long_rate: string;
12
+ product_id: string;
13
+ series_id: string;
14
+ settlement_price: string;
15
+ short_rate: string;
16
+ }
17
+
18
+ // (No @packageDocumentation comment for this package)
19
+
20
+ ```
@@ -0,0 +1,14 @@
1
+ {
2
+ "libraries/data-interest-rate/api-extractor.json": "62f4fd324425b9a235f0c117975967aab09ced0c",
3
+ "libraries/data-interest-rate/config/jest.config.json": "4bb17bde3ee911163a3edb36a6eb71491d80b1bd",
4
+ "libraries/data-interest-rate/config/rig.json": "f6c7b5537dc77a3170ba9f008bae3b6c3ee11956",
5
+ "libraries/data-interest-rate/config/typescript.json": "854907e8a821f2050f6533368db160c649c25348",
6
+ "libraries/data-interest-rate/etc/data-interest-rate.api.md": "feb35c489bbcefa513047171ae00b38371408e6e",
7
+ "libraries/data-interest-rate/package.json": "7c12a6f73d80663598f3ecf0500d931683697e7f",
8
+ "libraries/data-interest-rate/src/index.ts": "1d4df95c3a70348e007e3bd8ed46f0ee010af4dc",
9
+ "libraries/data-interest-rate/tsconfig.json": "22f94ca28b507f8ddcc21b9053158eefd3f726a9",
10
+ "libraries/data-interest-rate/.rush/temp/shrinkwrap-deps.json": "14d204eb5804e8b263a53fcc1425c1dc56c952e8",
11
+ "libraries/protocol/temp/package-deps.json": "e8044cc98b8d21f4962dfb6f03e2e18e8552a3bd",
12
+ "libraries/sql/temp/package-deps.json": "ef33a07c3f2a62efe9e8e34fd00609d4682f78b6",
13
+ "tools/toolkit/temp/package-deps.json": "eb0447c467da3a90db0913ed01e42ec0de840234"
14
+ }