@budgetbuddyde/types 1.0.28 → 1.0.29
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.
|
@@ -291,7 +291,7 @@ export declare const ZDividend: z.ZodObject<{
|
|
|
291
291
|
recordDate?: string | number | Date | null | undefined;
|
|
292
292
|
}>;
|
|
293
293
|
export type TDividend = z.infer<typeof ZDividend>;
|
|
294
|
-
declare const ZPayoutInterval: z.ZodEnum<["none", "month", "quarter", "year"]>;
|
|
294
|
+
export declare const ZPayoutInterval: z.ZodEnum<["none", "month", "quarter", "year"]>;
|
|
295
295
|
export type TPayoutInterval = z.infer<typeof ZPayoutInterval>;
|
|
296
296
|
export declare const ZDividendDetails: z.ZodObject<{
|
|
297
297
|
identifier: z.ZodString;
|
|
@@ -3246,4 +3246,3 @@ export declare const ZRelatedStockWithQuotes: z.ZodObject<{
|
|
|
3246
3246
|
};
|
|
3247
3247
|
}>;
|
|
3248
3248
|
export type TRelatedStockWithQuotes = z.infer<typeof ZRelatedStockWithQuotes>;
|
|
3249
|
-
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ZRelatedStockWithQuotes = exports.ZRelatedStock = exports.ZUpdateStockPositionPayload = exports.ZCreateStockPositionPayload = exports.ZStockPositionWithQuote = exports.ZStockPosition = exports.ZStockExchange = exports.ZAssetDetails = exports.ZDividendDetailList = exports.ZDividendDetails = exports.ZDividend = exports.ZAssetChartQuote = exports.ZAssetSearchResult = exports.ZAsset = exports.ZStockQuote = exports.ZStockType = exports.ZTimeframe = exports.ZCurrency = exports.ZWKN = exports.ZIsin = void 0;
|
|
3
|
+
exports.ZRelatedStockWithQuotes = exports.ZRelatedStock = exports.ZUpdateStockPositionPayload = exports.ZCreateStockPositionPayload = exports.ZStockPositionWithQuote = exports.ZStockPosition = exports.ZStockExchange = exports.ZAssetDetails = exports.ZDividendDetailList = exports.ZDividendDetails = exports.ZPayoutInterval = exports.ZDividend = exports.ZAssetChartQuote = exports.ZAssetSearchResult = exports.ZAsset = exports.ZStockQuote = exports.ZStockType = exports.ZTimeframe = exports.ZCurrency = exports.ZWKN = exports.ZIsin = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const PocketBase_types_1 = require("../PocketBase.types");
|
|
6
6
|
const Base_type_1 = require("../Base.type");
|
|
@@ -88,10 +88,10 @@ exports.ZDividend = zod_1.z.object({
|
|
|
88
88
|
exDate: Base_type_1.ZDate,
|
|
89
89
|
isEstimated: zod_1.z.boolean(),
|
|
90
90
|
});
|
|
91
|
-
|
|
91
|
+
exports.ZPayoutInterval = zod_1.z.enum(['none', 'month', 'quarter', 'year']);
|
|
92
92
|
exports.ZDividendDetails = zod_1.z.object({
|
|
93
93
|
identifier: exports.ZIsin,
|
|
94
|
-
payoutInterval: ZPayoutInterval,
|
|
94
|
+
payoutInterval: exports.ZPayoutInterval,
|
|
95
95
|
asset: zod_1.z.object({
|
|
96
96
|
_id: zod_1.z.object({
|
|
97
97
|
identifier: exports.ZIsin,
|