@rivascva/dt-idl 1.1.110 → 1.1.112
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
|
@@ -784,6 +784,12 @@ interface components$2 {
|
|
|
784
784
|
* @example 10500.25
|
|
785
785
|
*/
|
|
786
786
|
cash: number;
|
|
787
|
+
/** @example [
|
|
788
|
+
* "AAPL",
|
|
789
|
+
* "GOOGL",
|
|
790
|
+
* "AMZN"
|
|
791
|
+
* ] */
|
|
792
|
+
favoriteSymbols: string[];
|
|
787
793
|
};
|
|
788
794
|
/** @description Payload to update an existing portfolio */
|
|
789
795
|
UpdatePortfolioPayload: components$2["schemas"]["AddPortfolioPayload"];
|
package/package.json
CHANGED
|
@@ -165,10 +165,16 @@ components:
|
|
|
165
165
|
type: number
|
|
166
166
|
format: double
|
|
167
167
|
example: 10500.25
|
|
168
|
+
favoriteSymbols:
|
|
169
|
+
type: array
|
|
170
|
+
items:
|
|
171
|
+
type: string
|
|
172
|
+
example: ['AAPL', 'GOOGL', 'AMZN']
|
|
168
173
|
required:
|
|
169
174
|
- userId
|
|
170
175
|
- type
|
|
171
176
|
- cash
|
|
177
|
+
- favoriteSymbols
|
|
172
178
|
|
|
173
179
|
UpdatePortfolioPayload:
|
|
174
180
|
description: Payload to update an existing portfolio
|
|
@@ -104,6 +104,12 @@ export interface components {
|
|
|
104
104
|
* @example 10500.25
|
|
105
105
|
*/
|
|
106
106
|
cash: number;
|
|
107
|
+
/** @example [
|
|
108
|
+
* "AAPL",
|
|
109
|
+
* "GOOGL",
|
|
110
|
+
* "AMZN"
|
|
111
|
+
* ] */
|
|
112
|
+
favoriteSymbols: string[];
|
|
107
113
|
};
|
|
108
114
|
/** @description Payload to update an existing portfolio */
|
|
109
115
|
UpdatePortfolioPayload: components["schemas"]["AddPortfolioPayload"];
|