@rivascva/dt-idl 1.1.22 → 1.1.24
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/dist/index.d.ts
CHANGED
|
@@ -726,7 +726,7 @@ interface components {
|
|
|
726
726
|
*/
|
|
727
727
|
cash: number;
|
|
728
728
|
holdings: components["schemas"]["Holding"][];
|
|
729
|
-
|
|
729
|
+
orders: components["schemas"]["Order"][];
|
|
730
730
|
/**
|
|
731
731
|
* Format: int64
|
|
732
732
|
* @example 1713398544000
|
|
@@ -738,7 +738,7 @@ interface components {
|
|
|
738
738
|
*/
|
|
739
739
|
dateUpdated: number;
|
|
740
740
|
};
|
|
741
|
-
/** @description
|
|
741
|
+
/** @description A stock holding */
|
|
742
742
|
Holding: {
|
|
743
743
|
/** @example 123456 */
|
|
744
744
|
id: string;
|
package/package.json
CHANGED
|
@@ -224,7 +224,7 @@ components:
|
|
|
224
224
|
type: array
|
|
225
225
|
items:
|
|
226
226
|
$ref: '#/components/schemas/Holding'
|
|
227
|
-
|
|
227
|
+
orders:
|
|
228
228
|
type: array
|
|
229
229
|
items:
|
|
230
230
|
$ref: '#/components/schemas/Order'
|
|
@@ -242,12 +242,12 @@ components:
|
|
|
242
242
|
- type
|
|
243
243
|
- cash
|
|
244
244
|
- holdings
|
|
245
|
-
-
|
|
245
|
+
- orders
|
|
246
246
|
- dateCreated
|
|
247
247
|
- dateUpdated
|
|
248
248
|
|
|
249
249
|
Holding:
|
|
250
|
-
description:
|
|
250
|
+
description: A stock holding
|
|
251
251
|
properties:
|
|
252
252
|
id:
|
|
253
253
|
type: string
|
|
@@ -114,7 +114,7 @@ export interface components {
|
|
|
114
114
|
*/
|
|
115
115
|
cash: number;
|
|
116
116
|
holdings: components["schemas"]["Holding"][];
|
|
117
|
-
|
|
117
|
+
orders: components["schemas"]["Order"][];
|
|
118
118
|
/**
|
|
119
119
|
* Format: int64
|
|
120
120
|
* @example 1713398544000
|
|
@@ -126,7 +126,7 @@ export interface components {
|
|
|
126
126
|
*/
|
|
127
127
|
dateUpdated: number;
|
|
128
128
|
};
|
|
129
|
-
/** @description
|
|
129
|
+
/** @description A stock holding */
|
|
130
130
|
Holding: {
|
|
131
131
|
/** @example 123456 */
|
|
132
132
|
id: string;
|