@budgetbuddyde/types 1.0.18 → 1.0.20
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/lib/Stock.types.d.ts +619 -280
- package/lib/Stock.types.js +56 -11
- package/package.json +1 -1
package/lib/Stock.types.d.ts
CHANGED
|
@@ -235,8 +235,8 @@ export declare const ZDividend: z.ZodObject<{
|
|
|
235
235
|
originalPrice: z.ZodOptional<z.ZodNumber>;
|
|
236
236
|
originalCurrency: z.ZodOptional<z.ZodString>;
|
|
237
237
|
paymentDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
238
|
-
declarationDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
239
|
-
recordDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
238
|
+
declarationDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
239
|
+
recordDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
240
240
|
exDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
241
241
|
isEstimated: z.ZodBoolean;
|
|
242
242
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -247,12 +247,12 @@ export declare const ZDividend: z.ZodObject<{
|
|
|
247
247
|
security: string;
|
|
248
248
|
price: number;
|
|
249
249
|
paymentDate: Date;
|
|
250
|
-
declarationDate: Date | null;
|
|
251
|
-
recordDate: Date | null;
|
|
252
250
|
exDate: Date;
|
|
253
251
|
isEstimated: boolean;
|
|
254
252
|
originalPrice?: number | undefined;
|
|
255
253
|
originalCurrency?: string | undefined;
|
|
254
|
+
declarationDate?: Date | null | undefined;
|
|
255
|
+
recordDate?: Date | null | undefined;
|
|
256
256
|
}, {
|
|
257
257
|
type: string;
|
|
258
258
|
currency: string;
|
|
@@ -261,12 +261,12 @@ export declare const ZDividend: z.ZodObject<{
|
|
|
261
261
|
security: string;
|
|
262
262
|
price: number;
|
|
263
263
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
264
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
265
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
266
264
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
267
265
|
isEstimated: boolean;
|
|
268
266
|
originalPrice?: number | undefined;
|
|
269
267
|
originalCurrency?: string | undefined;
|
|
268
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
269
|
+
recordDate?: string | number | Date | null | undefined;
|
|
270
270
|
}>;
|
|
271
271
|
export type TDividend = z.infer<typeof ZDividend>;
|
|
272
272
|
export declare const ZDividendDetails: z.ZodObject<{
|
|
@@ -351,8 +351,8 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
351
351
|
originalPrice: z.ZodOptional<z.ZodNumber>;
|
|
352
352
|
originalCurrency: z.ZodOptional<z.ZodString>;
|
|
353
353
|
paymentDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
354
|
-
declarationDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
355
|
-
recordDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
354
|
+
declarationDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
355
|
+
recordDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
356
356
|
exDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
357
357
|
isEstimated: z.ZodBoolean;
|
|
358
358
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -363,12 +363,12 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
363
363
|
security: string;
|
|
364
364
|
price: number;
|
|
365
365
|
paymentDate: Date;
|
|
366
|
-
declarationDate: Date | null;
|
|
367
|
-
recordDate: Date | null;
|
|
368
366
|
exDate: Date;
|
|
369
367
|
isEstimated: boolean;
|
|
370
368
|
originalPrice?: number | undefined;
|
|
371
369
|
originalCurrency?: string | undefined;
|
|
370
|
+
declarationDate?: Date | null | undefined;
|
|
371
|
+
recordDate?: Date | null | undefined;
|
|
372
372
|
}, {
|
|
373
373
|
type: string;
|
|
374
374
|
currency: string;
|
|
@@ -377,12 +377,12 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
377
377
|
security: string;
|
|
378
378
|
price: number;
|
|
379
379
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
380
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
381
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
382
380
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
383
381
|
isEstimated: boolean;
|
|
384
382
|
originalPrice?: number | undefined;
|
|
385
383
|
originalCurrency?: string | undefined;
|
|
384
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
385
|
+
recordDate?: string | number | Date | null | undefined;
|
|
386
386
|
}>, "many">>>;
|
|
387
387
|
futureDividends: z.ZodDefault<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
388
388
|
type: z.ZodString;
|
|
@@ -394,8 +394,8 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
394
394
|
originalPrice: z.ZodOptional<z.ZodNumber>;
|
|
395
395
|
originalCurrency: z.ZodOptional<z.ZodString>;
|
|
396
396
|
paymentDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
397
|
-
declarationDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
398
|
-
recordDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
397
|
+
declarationDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
398
|
+
recordDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
399
399
|
exDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
400
400
|
isEstimated: z.ZodBoolean;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -406,12 +406,12 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
406
406
|
security: string;
|
|
407
407
|
price: number;
|
|
408
408
|
paymentDate: Date;
|
|
409
|
-
declarationDate: Date | null;
|
|
410
|
-
recordDate: Date | null;
|
|
411
409
|
exDate: Date;
|
|
412
410
|
isEstimated: boolean;
|
|
413
411
|
originalPrice?: number | undefined;
|
|
414
412
|
originalCurrency?: string | undefined;
|
|
413
|
+
declarationDate?: Date | null | undefined;
|
|
414
|
+
recordDate?: Date | null | undefined;
|
|
415
415
|
}, {
|
|
416
416
|
type: string;
|
|
417
417
|
currency: string;
|
|
@@ -420,12 +420,12 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
420
420
|
security: string;
|
|
421
421
|
price: number;
|
|
422
422
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
423
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
424
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
425
423
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
426
424
|
isEstimated: boolean;
|
|
427
425
|
originalPrice?: number | undefined;
|
|
428
426
|
originalCurrency?: string | undefined;
|
|
427
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
428
|
+
recordDate?: string | number | Date | null | undefined;
|
|
429
429
|
}>, "many">>>;
|
|
430
430
|
dividendKPIs: z.ZodOptional<z.ZodObject<{
|
|
431
431
|
cagr3Y: z.ZodNumber;
|
|
@@ -474,12 +474,12 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
474
474
|
security: string;
|
|
475
475
|
price: number;
|
|
476
476
|
paymentDate: Date;
|
|
477
|
-
declarationDate: Date | null;
|
|
478
|
-
recordDate: Date | null;
|
|
479
477
|
exDate: Date;
|
|
480
478
|
isEstimated: boolean;
|
|
481
479
|
originalPrice?: number | undefined;
|
|
482
480
|
originalCurrency?: string | undefined;
|
|
481
|
+
declarationDate?: Date | null | undefined;
|
|
482
|
+
recordDate?: Date | null | undefined;
|
|
483
483
|
}[] | null;
|
|
484
484
|
futureDividends: {
|
|
485
485
|
type: string;
|
|
@@ -489,12 +489,12 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
489
489
|
security: string;
|
|
490
490
|
price: number;
|
|
491
491
|
paymentDate: Date;
|
|
492
|
-
declarationDate: Date | null;
|
|
493
|
-
recordDate: Date | null;
|
|
494
492
|
exDate: Date;
|
|
495
493
|
isEstimated: boolean;
|
|
496
494
|
originalPrice?: number | undefined;
|
|
497
495
|
originalCurrency?: string | undefined;
|
|
496
|
+
declarationDate?: Date | null | undefined;
|
|
497
|
+
recordDate?: Date | null | undefined;
|
|
498
498
|
}[] | null;
|
|
499
499
|
dividendKPIs?: {
|
|
500
500
|
cagr3Y: number;
|
|
@@ -531,12 +531,12 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
531
531
|
security: string;
|
|
532
532
|
price: number;
|
|
533
533
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
534
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
535
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
536
534
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
537
535
|
isEstimated: boolean;
|
|
538
536
|
originalPrice?: number | undefined;
|
|
539
537
|
originalCurrency?: string | undefined;
|
|
538
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
539
|
+
recordDate?: string | number | Date | null | undefined;
|
|
540
540
|
}[] | null | undefined;
|
|
541
541
|
futureDividends?: {
|
|
542
542
|
type: string;
|
|
@@ -546,12 +546,12 @@ export declare const ZDividendDetails: z.ZodObject<{
|
|
|
546
546
|
security: string;
|
|
547
547
|
price: number;
|
|
548
548
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
549
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
550
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
551
549
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
552
550
|
isEstimated: boolean;
|
|
553
551
|
originalPrice?: number | undefined;
|
|
554
552
|
originalCurrency?: string | undefined;
|
|
553
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
554
|
+
recordDate?: string | number | Date | null | undefined;
|
|
555
555
|
}[] | null | undefined;
|
|
556
556
|
dividendKPIs?: {
|
|
557
557
|
cagr3Y: number;
|
|
@@ -645,8 +645,8 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
645
645
|
originalPrice: z.ZodOptional<z.ZodNumber>;
|
|
646
646
|
originalCurrency: z.ZodOptional<z.ZodString>;
|
|
647
647
|
paymentDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
648
|
-
declarationDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
649
|
-
recordDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
648
|
+
declarationDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
649
|
+
recordDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
650
650
|
exDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
651
651
|
isEstimated: z.ZodBoolean;
|
|
652
652
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -657,12 +657,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
657
657
|
security: string;
|
|
658
658
|
price: number;
|
|
659
659
|
paymentDate: Date;
|
|
660
|
-
declarationDate: Date | null;
|
|
661
|
-
recordDate: Date | null;
|
|
662
660
|
exDate: Date;
|
|
663
661
|
isEstimated: boolean;
|
|
664
662
|
originalPrice?: number | undefined;
|
|
665
663
|
originalCurrency?: string | undefined;
|
|
664
|
+
declarationDate?: Date | null | undefined;
|
|
665
|
+
recordDate?: Date | null | undefined;
|
|
666
666
|
}, {
|
|
667
667
|
type: string;
|
|
668
668
|
currency: string;
|
|
@@ -671,12 +671,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
671
671
|
security: string;
|
|
672
672
|
price: number;
|
|
673
673
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
674
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
675
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
676
674
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
677
675
|
isEstimated: boolean;
|
|
678
676
|
originalPrice?: number | undefined;
|
|
679
677
|
originalCurrency?: string | undefined;
|
|
678
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
679
|
+
recordDate?: string | number | Date | null | undefined;
|
|
680
680
|
}>, "many">>>;
|
|
681
681
|
futureDividends: z.ZodDefault<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
682
682
|
type: z.ZodString;
|
|
@@ -688,8 +688,8 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
688
688
|
originalPrice: z.ZodOptional<z.ZodNumber>;
|
|
689
689
|
originalCurrency: z.ZodOptional<z.ZodString>;
|
|
690
690
|
paymentDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
691
|
-
declarationDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
692
|
-
recordDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
691
|
+
declarationDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
692
|
+
recordDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
693
693
|
exDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
694
694
|
isEstimated: z.ZodBoolean;
|
|
695
695
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -700,12 +700,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
700
700
|
security: string;
|
|
701
701
|
price: number;
|
|
702
702
|
paymentDate: Date;
|
|
703
|
-
declarationDate: Date | null;
|
|
704
|
-
recordDate: Date | null;
|
|
705
703
|
exDate: Date;
|
|
706
704
|
isEstimated: boolean;
|
|
707
705
|
originalPrice?: number | undefined;
|
|
708
706
|
originalCurrency?: string | undefined;
|
|
707
|
+
declarationDate?: Date | null | undefined;
|
|
708
|
+
recordDate?: Date | null | undefined;
|
|
709
709
|
}, {
|
|
710
710
|
type: string;
|
|
711
711
|
currency: string;
|
|
@@ -714,12 +714,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
714
714
|
security: string;
|
|
715
715
|
price: number;
|
|
716
716
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
717
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
718
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
719
717
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
720
718
|
isEstimated: boolean;
|
|
721
719
|
originalPrice?: number | undefined;
|
|
722
720
|
originalCurrency?: string | undefined;
|
|
721
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
722
|
+
recordDate?: string | number | Date | null | undefined;
|
|
723
723
|
}>, "many">>>;
|
|
724
724
|
dividendKPIs: z.ZodOptional<z.ZodObject<{
|
|
725
725
|
cagr3Y: z.ZodNumber;
|
|
@@ -768,12 +768,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
768
768
|
security: string;
|
|
769
769
|
price: number;
|
|
770
770
|
paymentDate: Date;
|
|
771
|
-
declarationDate: Date | null;
|
|
772
|
-
recordDate: Date | null;
|
|
773
771
|
exDate: Date;
|
|
774
772
|
isEstimated: boolean;
|
|
775
773
|
originalPrice?: number | undefined;
|
|
776
774
|
originalCurrency?: string | undefined;
|
|
775
|
+
declarationDate?: Date | null | undefined;
|
|
776
|
+
recordDate?: Date | null | undefined;
|
|
777
777
|
}[] | null;
|
|
778
778
|
futureDividends: {
|
|
779
779
|
type: string;
|
|
@@ -783,12 +783,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
783
783
|
security: string;
|
|
784
784
|
price: number;
|
|
785
785
|
paymentDate: Date;
|
|
786
|
-
declarationDate: Date | null;
|
|
787
|
-
recordDate: Date | null;
|
|
788
786
|
exDate: Date;
|
|
789
787
|
isEstimated: boolean;
|
|
790
788
|
originalPrice?: number | undefined;
|
|
791
789
|
originalCurrency?: string | undefined;
|
|
790
|
+
declarationDate?: Date | null | undefined;
|
|
791
|
+
recordDate?: Date | null | undefined;
|
|
792
792
|
}[] | null;
|
|
793
793
|
dividendKPIs?: {
|
|
794
794
|
cagr3Y: number;
|
|
@@ -825,12 +825,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
825
825
|
security: string;
|
|
826
826
|
price: number;
|
|
827
827
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
828
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
829
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
830
828
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
831
829
|
isEstimated: boolean;
|
|
832
830
|
originalPrice?: number | undefined;
|
|
833
831
|
originalCurrency?: string | undefined;
|
|
832
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
833
|
+
recordDate?: string | number | Date | null | undefined;
|
|
834
834
|
}[] | null | undefined;
|
|
835
835
|
futureDividends?: {
|
|
836
836
|
type: string;
|
|
@@ -840,12 +840,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
840
840
|
security: string;
|
|
841
841
|
price: number;
|
|
842
842
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
843
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
844
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
845
843
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
846
844
|
isEstimated: boolean;
|
|
847
845
|
originalPrice?: number | undefined;
|
|
848
846
|
originalCurrency?: string | undefined;
|
|
847
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
848
|
+
recordDate?: string | number | Date | null | undefined;
|
|
849
849
|
}[] | null | undefined;
|
|
850
850
|
dividendKPIs?: {
|
|
851
851
|
cagr3Y: number;
|
|
@@ -884,12 +884,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
884
884
|
security: string;
|
|
885
885
|
price: number;
|
|
886
886
|
paymentDate: Date;
|
|
887
|
-
declarationDate: Date | null;
|
|
888
|
-
recordDate: Date | null;
|
|
889
887
|
exDate: Date;
|
|
890
888
|
isEstimated: boolean;
|
|
891
889
|
originalPrice?: number | undefined;
|
|
892
890
|
originalCurrency?: string | undefined;
|
|
891
|
+
declarationDate?: Date | null | undefined;
|
|
892
|
+
recordDate?: Date | null | undefined;
|
|
893
893
|
}[] | null;
|
|
894
894
|
futureDividends: {
|
|
895
895
|
type: string;
|
|
@@ -899,12 +899,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
899
899
|
security: string;
|
|
900
900
|
price: number;
|
|
901
901
|
paymentDate: Date;
|
|
902
|
-
declarationDate: Date | null;
|
|
903
|
-
recordDate: Date | null;
|
|
904
902
|
exDate: Date;
|
|
905
903
|
isEstimated: boolean;
|
|
906
904
|
originalPrice?: number | undefined;
|
|
907
905
|
originalCurrency?: string | undefined;
|
|
906
|
+
declarationDate?: Date | null | undefined;
|
|
907
|
+
recordDate?: Date | null | undefined;
|
|
908
908
|
}[] | null;
|
|
909
909
|
dividendKPIs?: {
|
|
910
910
|
cagr3Y: number;
|
|
@@ -943,12 +943,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
943
943
|
security: string;
|
|
944
944
|
price: number;
|
|
945
945
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
946
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
947
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
948
946
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
949
947
|
isEstimated: boolean;
|
|
950
948
|
originalPrice?: number | undefined;
|
|
951
949
|
originalCurrency?: string | undefined;
|
|
950
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
951
|
+
recordDate?: string | number | Date | null | undefined;
|
|
952
952
|
}[] | null | undefined;
|
|
953
953
|
futureDividends?: {
|
|
954
954
|
type: string;
|
|
@@ -958,12 +958,12 @@ export declare const ZDividendDetailList: z.ZodObject<{
|
|
|
958
958
|
security: string;
|
|
959
959
|
price: number;
|
|
960
960
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
961
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
962
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
963
961
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
964
962
|
isEstimated: boolean;
|
|
965
963
|
originalPrice?: number | undefined;
|
|
966
964
|
originalCurrency?: string | undefined;
|
|
965
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
966
|
+
recordDate?: string | number | Date | null | undefined;
|
|
967
967
|
}[] | null | undefined;
|
|
968
968
|
dividendKPIs?: {
|
|
969
969
|
cagr3Y: number;
|
|
@@ -1390,7 +1390,7 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1390
1390
|
ipoDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
1391
1391
|
etfDomicile: z.ZodString;
|
|
1392
1392
|
etfCompany: z.ZodString;
|
|
1393
|
-
hasDividends: z.ZodBoolean
|
|
1393
|
+
hasDividends: z.ZodOptional<z.ZodBoolean>;
|
|
1394
1394
|
}, "strip", z.ZodTypeAny, {
|
|
1395
1395
|
type: string;
|
|
1396
1396
|
website: string;
|
|
@@ -1419,7 +1419,7 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1419
1419
|
exchange: string;
|
|
1420
1420
|
}[];
|
|
1421
1421
|
ipoDate: Date;
|
|
1422
|
-
hasDividends
|
|
1422
|
+
hasDividends?: boolean | undefined;
|
|
1423
1423
|
}, {
|
|
1424
1424
|
type: string;
|
|
1425
1425
|
website: string;
|
|
@@ -1448,7 +1448,7 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1448
1448
|
exchange: string;
|
|
1449
1449
|
}[];
|
|
1450
1450
|
ipoDate: (string | number | Date) & (string | number | Date | undefined);
|
|
1451
|
-
hasDividends
|
|
1451
|
+
hasDividends?: boolean | undefined;
|
|
1452
1452
|
}>;
|
|
1453
1453
|
}, "strip", z.ZodTypeAny, {
|
|
1454
1454
|
name: string;
|
|
@@ -1487,7 +1487,7 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1487
1487
|
exchange: string;
|
|
1488
1488
|
}[];
|
|
1489
1489
|
ipoDate: Date;
|
|
1490
|
-
hasDividends
|
|
1490
|
+
hasDividends?: boolean | undefined;
|
|
1491
1491
|
};
|
|
1492
1492
|
updatedAt: Date;
|
|
1493
1493
|
}, {
|
|
@@ -1527,7 +1527,7 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1527
1527
|
exchange: string;
|
|
1528
1528
|
}[];
|
|
1529
1529
|
ipoDate: (string | number | Date) & (string | number | Date | undefined);
|
|
1530
|
-
hasDividends
|
|
1530
|
+
hasDividends?: boolean | undefined;
|
|
1531
1531
|
};
|
|
1532
1532
|
updatedAt: (string | number | Date) & (string | number | Date | undefined);
|
|
1533
1533
|
}>;
|
|
@@ -1557,7 +1557,7 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1557
1557
|
cachedAt: (string | number | Date) & (string | number | Date | undefined);
|
|
1558
1558
|
}>;
|
|
1559
1559
|
details: z.ZodObject<{
|
|
1560
|
-
securityDetails: z.ZodObject<{
|
|
1560
|
+
securityDetails: z.ZodOptional<z.ZodObject<{
|
|
1561
1561
|
description: z.ZodString;
|
|
1562
1562
|
currency: z.ZodString;
|
|
1563
1563
|
marketCap: z.ZodNumber;
|
|
@@ -1750,8 +1750,207 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1750
1750
|
ebitda: number;
|
|
1751
1751
|
}[];
|
|
1752
1752
|
ceo: string;
|
|
1753
|
-
}
|
|
1754
|
-
|
|
1753
|
+
}>>;
|
|
1754
|
+
eftDetails: z.ZodOptional<z.ZodObject<{
|
|
1755
|
+
currency: z.ZodString;
|
|
1756
|
+
nav: z.ZodNumber;
|
|
1757
|
+
description: z.ZodString;
|
|
1758
|
+
priceToBook: z.ZodNumber;
|
|
1759
|
+
priceToEarnings: z.ZodNumber;
|
|
1760
|
+
aum: z.ZodNumber;
|
|
1761
|
+
expenseRatio: z.ZodNumber;
|
|
1762
|
+
}, "strip", z.ZodTypeAny, {
|
|
1763
|
+
nav: number;
|
|
1764
|
+
description: string;
|
|
1765
|
+
currency: string;
|
|
1766
|
+
priceToBook: number;
|
|
1767
|
+
priceToEarnings: number;
|
|
1768
|
+
aum: number;
|
|
1769
|
+
expenseRatio: number;
|
|
1770
|
+
}, {
|
|
1771
|
+
nav: number;
|
|
1772
|
+
description: string;
|
|
1773
|
+
currency: string;
|
|
1774
|
+
priceToBook: number;
|
|
1775
|
+
priceToEarnings: number;
|
|
1776
|
+
aum: number;
|
|
1777
|
+
expenseRatio: number;
|
|
1778
|
+
}>>;
|
|
1779
|
+
etfBreakdown: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1780
|
+
currency: z.ZodString;
|
|
1781
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
1782
|
+
holdings: z.ZodArray<z.ZodObject<{
|
|
1783
|
+
share: z.ZodNumber;
|
|
1784
|
+
marketValue: z.ZodNumber;
|
|
1785
|
+
amountOfShares: z.ZodNumber;
|
|
1786
|
+
name: z.ZodString;
|
|
1787
|
+
asset: z.ZodObject<{
|
|
1788
|
+
_id: z.ZodObject<{
|
|
1789
|
+
identifier: z.ZodString;
|
|
1790
|
+
assetType: z.ZodString;
|
|
1791
|
+
}, "strip", z.ZodTypeAny, {
|
|
1792
|
+
identifier: string;
|
|
1793
|
+
assetType: string;
|
|
1794
|
+
}, {
|
|
1795
|
+
identifier: string;
|
|
1796
|
+
assetType: string;
|
|
1797
|
+
}>;
|
|
1798
|
+
assetType: z.ZodString;
|
|
1799
|
+
name: z.ZodString;
|
|
1800
|
+
logo: z.ZodString;
|
|
1801
|
+
security: z.ZodObject<{
|
|
1802
|
+
website: z.ZodString;
|
|
1803
|
+
type: z.ZodString;
|
|
1804
|
+
wkn: z.ZodString;
|
|
1805
|
+
isin: z.ZodString;
|
|
1806
|
+
etfDomicile: z.ZodString;
|
|
1807
|
+
etfCompany: z.ZodString;
|
|
1808
|
+
}, "strip", z.ZodTypeAny, {
|
|
1809
|
+
type: string;
|
|
1810
|
+
website: string;
|
|
1811
|
+
wkn: string;
|
|
1812
|
+
isin: string;
|
|
1813
|
+
etfDomicile: string;
|
|
1814
|
+
etfCompany: string;
|
|
1815
|
+
}, {
|
|
1816
|
+
type: string;
|
|
1817
|
+
website: string;
|
|
1818
|
+
wkn: string;
|
|
1819
|
+
isin: string;
|
|
1820
|
+
etfDomicile: string;
|
|
1821
|
+
etfCompany: string;
|
|
1822
|
+
}>;
|
|
1823
|
+
}, "strip", z.ZodTypeAny, {
|
|
1824
|
+
name: string;
|
|
1825
|
+
_id: {
|
|
1826
|
+
identifier: string;
|
|
1827
|
+
assetType: string;
|
|
1828
|
+
};
|
|
1829
|
+
assetType: string;
|
|
1830
|
+
logo: string;
|
|
1831
|
+
security: {
|
|
1832
|
+
type: string;
|
|
1833
|
+
website: string;
|
|
1834
|
+
wkn: string;
|
|
1835
|
+
isin: string;
|
|
1836
|
+
etfDomicile: string;
|
|
1837
|
+
etfCompany: string;
|
|
1838
|
+
};
|
|
1839
|
+
}, {
|
|
1840
|
+
name: string;
|
|
1841
|
+
_id: {
|
|
1842
|
+
identifier: string;
|
|
1843
|
+
assetType: string;
|
|
1844
|
+
};
|
|
1845
|
+
assetType: string;
|
|
1846
|
+
logo: string;
|
|
1847
|
+
security: {
|
|
1848
|
+
type: string;
|
|
1849
|
+
website: string;
|
|
1850
|
+
wkn: string;
|
|
1851
|
+
isin: string;
|
|
1852
|
+
etfDomicile: string;
|
|
1853
|
+
etfCompany: string;
|
|
1854
|
+
};
|
|
1855
|
+
}>;
|
|
1856
|
+
}, "strip", z.ZodTypeAny, {
|
|
1857
|
+
name: string;
|
|
1858
|
+
asset: {
|
|
1859
|
+
name: string;
|
|
1860
|
+
_id: {
|
|
1861
|
+
identifier: string;
|
|
1862
|
+
assetType: string;
|
|
1863
|
+
};
|
|
1864
|
+
assetType: string;
|
|
1865
|
+
logo: string;
|
|
1866
|
+
security: {
|
|
1867
|
+
type: string;
|
|
1868
|
+
website: string;
|
|
1869
|
+
wkn: string;
|
|
1870
|
+
isin: string;
|
|
1871
|
+
etfDomicile: string;
|
|
1872
|
+
etfCompany: string;
|
|
1873
|
+
};
|
|
1874
|
+
};
|
|
1875
|
+
share: number;
|
|
1876
|
+
marketValue: number;
|
|
1877
|
+
amountOfShares: number;
|
|
1878
|
+
}, {
|
|
1879
|
+
name: string;
|
|
1880
|
+
asset: {
|
|
1881
|
+
name: string;
|
|
1882
|
+
_id: {
|
|
1883
|
+
identifier: string;
|
|
1884
|
+
assetType: string;
|
|
1885
|
+
};
|
|
1886
|
+
assetType: string;
|
|
1887
|
+
logo: string;
|
|
1888
|
+
security: {
|
|
1889
|
+
type: string;
|
|
1890
|
+
website: string;
|
|
1891
|
+
wkn: string;
|
|
1892
|
+
isin: string;
|
|
1893
|
+
etfDomicile: string;
|
|
1894
|
+
etfCompany: string;
|
|
1895
|
+
};
|
|
1896
|
+
};
|
|
1897
|
+
share: number;
|
|
1898
|
+
marketValue: number;
|
|
1899
|
+
amountOfShares: number;
|
|
1900
|
+
}>, "many">;
|
|
1901
|
+
}, "strip", z.ZodTypeAny, {
|
|
1902
|
+
currency: string;
|
|
1903
|
+
updatedAt: Date;
|
|
1904
|
+
holdings: {
|
|
1905
|
+
name: string;
|
|
1906
|
+
asset: {
|
|
1907
|
+
name: string;
|
|
1908
|
+
_id: {
|
|
1909
|
+
identifier: string;
|
|
1910
|
+
assetType: string;
|
|
1911
|
+
};
|
|
1912
|
+
assetType: string;
|
|
1913
|
+
logo: string;
|
|
1914
|
+
security: {
|
|
1915
|
+
type: string;
|
|
1916
|
+
website: string;
|
|
1917
|
+
wkn: string;
|
|
1918
|
+
isin: string;
|
|
1919
|
+
etfDomicile: string;
|
|
1920
|
+
etfCompany: string;
|
|
1921
|
+
};
|
|
1922
|
+
};
|
|
1923
|
+
share: number;
|
|
1924
|
+
marketValue: number;
|
|
1925
|
+
amountOfShares: number;
|
|
1926
|
+
}[];
|
|
1927
|
+
}, {
|
|
1928
|
+
currency: string;
|
|
1929
|
+
updatedAt: (string | number | Date) & (string | number | Date | undefined);
|
|
1930
|
+
holdings: {
|
|
1931
|
+
name: string;
|
|
1932
|
+
asset: {
|
|
1933
|
+
name: string;
|
|
1934
|
+
_id: {
|
|
1935
|
+
identifier: string;
|
|
1936
|
+
assetType: string;
|
|
1937
|
+
};
|
|
1938
|
+
assetType: string;
|
|
1939
|
+
logo: string;
|
|
1940
|
+
security: {
|
|
1941
|
+
type: string;
|
|
1942
|
+
website: string;
|
|
1943
|
+
wkn: string;
|
|
1944
|
+
isin: string;
|
|
1945
|
+
etfDomicile: string;
|
|
1946
|
+
etfCompany: string;
|
|
1947
|
+
};
|
|
1948
|
+
};
|
|
1949
|
+
share: number;
|
|
1950
|
+
marketValue: number;
|
|
1951
|
+
amountOfShares: number;
|
|
1952
|
+
}[];
|
|
1953
|
+
}>>>;
|
|
1755
1954
|
analystEstimates: z.ZodNullable<z.ZodObject<{
|
|
1756
1955
|
strongBuy: z.ZodNumber;
|
|
1757
1956
|
buy: z.ZodNumber;
|
|
@@ -1781,8 +1980,8 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1781
1980
|
originalPrice: z.ZodOptional<z.ZodNumber>;
|
|
1782
1981
|
originalCurrency: z.ZodOptional<z.ZodString>;
|
|
1783
1982
|
paymentDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
1784
|
-
declarationDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
1785
|
-
recordDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
1983
|
+
declarationDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
1984
|
+
recordDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
1786
1985
|
exDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
1787
1986
|
isEstimated: z.ZodBoolean;
|
|
1788
1987
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1793,12 +1992,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1793
1992
|
security: string;
|
|
1794
1993
|
price: number;
|
|
1795
1994
|
paymentDate: Date;
|
|
1796
|
-
declarationDate: Date | null;
|
|
1797
|
-
recordDate: Date | null;
|
|
1798
1995
|
exDate: Date;
|
|
1799
1996
|
isEstimated: boolean;
|
|
1800
1997
|
originalPrice?: number | undefined;
|
|
1801
1998
|
originalCurrency?: string | undefined;
|
|
1999
|
+
declarationDate?: Date | null | undefined;
|
|
2000
|
+
recordDate?: Date | null | undefined;
|
|
1802
2001
|
}, {
|
|
1803
2002
|
type: string;
|
|
1804
2003
|
currency: string;
|
|
@@ -1807,12 +2006,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1807
2006
|
security: string;
|
|
1808
2007
|
price: number;
|
|
1809
2008
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
1810
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
1811
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
1812
2009
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
1813
2010
|
isEstimated: boolean;
|
|
1814
2011
|
originalPrice?: number | undefined;
|
|
1815
2012
|
originalCurrency?: string | undefined;
|
|
2013
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2014
|
+
recordDate?: string | number | Date | null | undefined;
|
|
1816
2015
|
}>, "many">>>;
|
|
1817
2016
|
futureDividends: z.ZodDefault<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1818
2017
|
type: z.ZodString;
|
|
@@ -1824,8 +2023,8 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1824
2023
|
originalPrice: z.ZodOptional<z.ZodNumber>;
|
|
1825
2024
|
originalCurrency: z.ZodOptional<z.ZodString>;
|
|
1826
2025
|
paymentDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
1827
|
-
declarationDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
1828
|
-
recordDate: z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date
|
|
2026
|
+
declarationDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
2027
|
+
recordDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
1829
2028
|
exDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
1830
2029
|
isEstimated: z.ZodBoolean;
|
|
1831
2030
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1836,12 +2035,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1836
2035
|
security: string;
|
|
1837
2036
|
price: number;
|
|
1838
2037
|
paymentDate: Date;
|
|
1839
|
-
declarationDate: Date | null;
|
|
1840
|
-
recordDate: Date | null;
|
|
1841
2038
|
exDate: Date;
|
|
1842
2039
|
isEstimated: boolean;
|
|
1843
2040
|
originalPrice?: number | undefined;
|
|
1844
2041
|
originalCurrency?: string | undefined;
|
|
2042
|
+
declarationDate?: Date | null | undefined;
|
|
2043
|
+
recordDate?: Date | null | undefined;
|
|
1845
2044
|
}, {
|
|
1846
2045
|
type: string;
|
|
1847
2046
|
currency: string;
|
|
@@ -1850,12 +2049,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1850
2049
|
security: string;
|
|
1851
2050
|
price: number;
|
|
1852
2051
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
1853
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
1854
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
1855
2052
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
1856
2053
|
isEstimated: boolean;
|
|
1857
2054
|
originalPrice?: number | undefined;
|
|
1858
2055
|
originalCurrency?: string | undefined;
|
|
2056
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2057
|
+
recordDate?: string | number | Date | null | undefined;
|
|
1859
2058
|
}>, "many">>>;
|
|
1860
2059
|
priceTargetConsensus: z.ZodNullable<z.ZodObject<{
|
|
1861
2060
|
currency: z.ZodString;
|
|
@@ -1961,9 +2160,9 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1961
2160
|
maxValue: number;
|
|
1962
2161
|
badgeColor: string;
|
|
1963
2162
|
}>, "many">;
|
|
1964
|
-
payoutInterval: z.ZodString
|
|
1965
|
-
payoutIntervalSource: z.ZodString
|
|
1966
|
-
dividendKPIs: z.ZodObject<{
|
|
2163
|
+
payoutInterval: z.ZodNullable<z.ZodString>;
|
|
2164
|
+
payoutIntervalSource: z.ZodNullable<z.ZodString>;
|
|
2165
|
+
dividendKPIs: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1967
2166
|
cagr3Y: z.ZodNumber;
|
|
1968
2167
|
cagr5Y: z.ZodNumber;
|
|
1969
2168
|
cagr10Y: z.ZodNumber;
|
|
@@ -1981,10 +2180,10 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1981
2180
|
cagr10Y: number;
|
|
1982
2181
|
dividendYieldPercentageTTM: number;
|
|
1983
2182
|
dividendPerShareTTM: number;
|
|
1984
|
-
}
|
|
1985
|
-
dividendYearlyTTM: z.ZodRecord<z.ZodString, z.ZodNumber
|
|
2183
|
+
}>>>;
|
|
2184
|
+
dividendYearlyTTM: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
1986
2185
|
}, "strip", z.ZodTypeAny, {
|
|
1987
|
-
payoutInterval: string;
|
|
2186
|
+
payoutInterval: string | null;
|
|
1988
2187
|
futureDividends: {
|
|
1989
2188
|
type: string;
|
|
1990
2189
|
currency: string;
|
|
@@ -1993,69 +2192,13 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1993
2192
|
security: string;
|
|
1994
2193
|
price: number;
|
|
1995
2194
|
paymentDate: Date;
|
|
1996
|
-
declarationDate: Date | null;
|
|
1997
|
-
recordDate: Date | null;
|
|
1998
2195
|
exDate: Date;
|
|
1999
2196
|
isEstimated: boolean;
|
|
2000
2197
|
originalPrice?: number | undefined;
|
|
2001
2198
|
originalCurrency?: string | undefined;
|
|
2199
|
+
declarationDate?: Date | null | undefined;
|
|
2200
|
+
recordDate?: Date | null | undefined;
|
|
2002
2201
|
}[] | null;
|
|
2003
|
-
dividendKPIs: {
|
|
2004
|
-
cagr3Y: number;
|
|
2005
|
-
cagr5Y: number;
|
|
2006
|
-
cagr10Y: number;
|
|
2007
|
-
dividendYieldPercentageTTM: number;
|
|
2008
|
-
dividendPerShareTTM: number;
|
|
2009
|
-
};
|
|
2010
|
-
securityDetails: {
|
|
2011
|
-
beta: number;
|
|
2012
|
-
address: {
|
|
2013
|
-
state: string;
|
|
2014
|
-
addressLine: string;
|
|
2015
|
-
city: string;
|
|
2016
|
-
zip: string;
|
|
2017
|
-
};
|
|
2018
|
-
description: string;
|
|
2019
|
-
currency: string;
|
|
2020
|
-
dividendPerShareTTM: number;
|
|
2021
|
-
marketCap: number;
|
|
2022
|
-
shares: number;
|
|
2023
|
-
fullTimeEmployees: number;
|
|
2024
|
-
peRatioTTM: number;
|
|
2025
|
-
priceSalesRatioTTM: number;
|
|
2026
|
-
priceToBookRatioTTM: number;
|
|
2027
|
-
pegRatioTTM: number;
|
|
2028
|
-
priceFairValueTTM: number;
|
|
2029
|
-
dividendYielPercentageTTM: number;
|
|
2030
|
-
payoutRatioTTM: number;
|
|
2031
|
-
fiftyTwoWeekRange: {
|
|
2032
|
-
from: number;
|
|
2033
|
-
to: number;
|
|
2034
|
-
};
|
|
2035
|
-
incomeStatementGrowth: {
|
|
2036
|
-
date: Date;
|
|
2037
|
-
growthRevenue: number;
|
|
2038
|
-
growthNetIncome: number;
|
|
2039
|
-
}[];
|
|
2040
|
-
annualFinancials: {
|
|
2041
|
-
currency: string;
|
|
2042
|
-
date: Date;
|
|
2043
|
-
revenue: number;
|
|
2044
|
-
grossProfit: number;
|
|
2045
|
-
netIncome: number;
|
|
2046
|
-
ebitda: number;
|
|
2047
|
-
}[];
|
|
2048
|
-
quarterlyFinancials: {
|
|
2049
|
-
currency: string;
|
|
2050
|
-
date: Date;
|
|
2051
|
-
revenue: number;
|
|
2052
|
-
grossProfit: number;
|
|
2053
|
-
netIncome: number;
|
|
2054
|
-
ebitda: number;
|
|
2055
|
-
}[];
|
|
2056
|
-
ceo: string;
|
|
2057
|
-
};
|
|
2058
|
-
etfBreakdown: null;
|
|
2059
2202
|
analystEstimates: {
|
|
2060
2203
|
strongBuy: number;
|
|
2061
2204
|
buy: number;
|
|
@@ -2071,12 +2214,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2071
2214
|
security: string;
|
|
2072
2215
|
price: number;
|
|
2073
2216
|
paymentDate: Date;
|
|
2074
|
-
declarationDate: Date | null;
|
|
2075
|
-
recordDate: Date | null;
|
|
2076
2217
|
exDate: Date;
|
|
2077
2218
|
isEstimated: boolean;
|
|
2078
2219
|
originalPrice?: number | undefined;
|
|
2079
2220
|
originalCurrency?: string | undefined;
|
|
2221
|
+
declarationDate?: Date | null | undefined;
|
|
2222
|
+
recordDate?: Date | null | undefined;
|
|
2080
2223
|
}[] | null;
|
|
2081
2224
|
priceTargetConsensus: {
|
|
2082
2225
|
high: number;
|
|
@@ -2110,18 +2253,9 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2110
2253
|
maxValue: number;
|
|
2111
2254
|
badgeColor: string;
|
|
2112
2255
|
}[];
|
|
2113
|
-
payoutIntervalSource: string;
|
|
2114
|
-
dividendYearlyTTM: Record<string, number
|
|
2115
|
-
|
|
2116
|
-
payoutInterval: string;
|
|
2117
|
-
dividendKPIs: {
|
|
2118
|
-
cagr3Y: number;
|
|
2119
|
-
cagr5Y: number;
|
|
2120
|
-
cagr10Y: number;
|
|
2121
|
-
dividendYieldPercentageTTM: number;
|
|
2122
|
-
dividendPerShareTTM: number;
|
|
2123
|
-
};
|
|
2124
|
-
securityDetails: {
|
|
2256
|
+
payoutIntervalSource: string | null;
|
|
2257
|
+
dividendYearlyTTM: Record<string, number> | null;
|
|
2258
|
+
securityDetails?: {
|
|
2125
2259
|
beta: number;
|
|
2126
2260
|
address: {
|
|
2127
2261
|
state: string;
|
|
@@ -2147,13 +2281,13 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2147
2281
|
to: number;
|
|
2148
2282
|
};
|
|
2149
2283
|
incomeStatementGrowth: {
|
|
2150
|
-
date:
|
|
2284
|
+
date: Date;
|
|
2151
2285
|
growthRevenue: number;
|
|
2152
2286
|
growthNetIncome: number;
|
|
2153
2287
|
}[];
|
|
2154
2288
|
annualFinancials: {
|
|
2155
2289
|
currency: string;
|
|
2156
|
-
date:
|
|
2290
|
+
date: Date;
|
|
2157
2291
|
revenue: number;
|
|
2158
2292
|
grossProfit: number;
|
|
2159
2293
|
netIncome: number;
|
|
@@ -2161,15 +2295,59 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2161
2295
|
}[];
|
|
2162
2296
|
quarterlyFinancials: {
|
|
2163
2297
|
currency: string;
|
|
2164
|
-
date:
|
|
2298
|
+
date: Date;
|
|
2165
2299
|
revenue: number;
|
|
2166
2300
|
grossProfit: number;
|
|
2167
2301
|
netIncome: number;
|
|
2168
2302
|
ebitda: number;
|
|
2169
2303
|
}[];
|
|
2170
2304
|
ceo: string;
|
|
2171
|
-
};
|
|
2172
|
-
|
|
2305
|
+
} | undefined;
|
|
2306
|
+
eftDetails?: {
|
|
2307
|
+
nav: number;
|
|
2308
|
+
description: string;
|
|
2309
|
+
currency: string;
|
|
2310
|
+
priceToBook: number;
|
|
2311
|
+
priceToEarnings: number;
|
|
2312
|
+
aum: number;
|
|
2313
|
+
expenseRatio: number;
|
|
2314
|
+
} | undefined;
|
|
2315
|
+
etfBreakdown?: {
|
|
2316
|
+
currency: string;
|
|
2317
|
+
updatedAt: Date;
|
|
2318
|
+
holdings: {
|
|
2319
|
+
name: string;
|
|
2320
|
+
asset: {
|
|
2321
|
+
name: string;
|
|
2322
|
+
_id: {
|
|
2323
|
+
identifier: string;
|
|
2324
|
+
assetType: string;
|
|
2325
|
+
};
|
|
2326
|
+
assetType: string;
|
|
2327
|
+
logo: string;
|
|
2328
|
+
security: {
|
|
2329
|
+
type: string;
|
|
2330
|
+
website: string;
|
|
2331
|
+
wkn: string;
|
|
2332
|
+
isin: string;
|
|
2333
|
+
etfDomicile: string;
|
|
2334
|
+
etfCompany: string;
|
|
2335
|
+
};
|
|
2336
|
+
};
|
|
2337
|
+
share: number;
|
|
2338
|
+
marketValue: number;
|
|
2339
|
+
amountOfShares: number;
|
|
2340
|
+
}[];
|
|
2341
|
+
} | null | undefined;
|
|
2342
|
+
dividendKPIs?: {
|
|
2343
|
+
cagr3Y: number;
|
|
2344
|
+
cagr5Y: number;
|
|
2345
|
+
cagr10Y: number;
|
|
2346
|
+
dividendYieldPercentageTTM: number;
|
|
2347
|
+
dividendPerShareTTM: number;
|
|
2348
|
+
} | null | undefined;
|
|
2349
|
+
}, {
|
|
2350
|
+
payoutInterval: string | null;
|
|
2173
2351
|
analystEstimates: {
|
|
2174
2352
|
strongBuy: number;
|
|
2175
2353
|
buy: number;
|
|
@@ -2209,65 +2387,9 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2209
2387
|
maxValue: number;
|
|
2210
2388
|
badgeColor: string;
|
|
2211
2389
|
}[];
|
|
2212
|
-
payoutIntervalSource: string;
|
|
2213
|
-
dividendYearlyTTM: Record<string, number
|
|
2214
|
-
|
|
2215
|
-
type: string;
|
|
2216
|
-
currency: string;
|
|
2217
|
-
date: (string | number | Date) & (string | number | Date | undefined);
|
|
2218
|
-
datetime: (string | number | Date) & (string | number | Date | undefined);
|
|
2219
|
-
security: string;
|
|
2220
|
-
price: number;
|
|
2221
|
-
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2222
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
2223
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
2224
|
-
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2225
|
-
isEstimated: boolean;
|
|
2226
|
-
originalPrice?: number | undefined;
|
|
2227
|
-
originalCurrency?: string | undefined;
|
|
2228
|
-
}[] | null | undefined;
|
|
2229
|
-
futureDividends?: {
|
|
2230
|
-
type: string;
|
|
2231
|
-
currency: string;
|
|
2232
|
-
date: (string | number | Date) & (string | number | Date | undefined);
|
|
2233
|
-
datetime: (string | number | Date) & (string | number | Date | undefined);
|
|
2234
|
-
security: string;
|
|
2235
|
-
price: number;
|
|
2236
|
-
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2237
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
2238
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
2239
|
-
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2240
|
-
isEstimated: boolean;
|
|
2241
|
-
originalPrice?: number | undefined;
|
|
2242
|
-
originalCurrency?: string | undefined;
|
|
2243
|
-
}[] | null | undefined;
|
|
2244
|
-
}>;
|
|
2245
|
-
}, "strip", z.ZodTypeAny, {
|
|
2246
|
-
details: {
|
|
2247
|
-
payoutInterval: string;
|
|
2248
|
-
futureDividends: {
|
|
2249
|
-
type: string;
|
|
2250
|
-
currency: string;
|
|
2251
|
-
date: Date;
|
|
2252
|
-
datetime: Date;
|
|
2253
|
-
security: string;
|
|
2254
|
-
price: number;
|
|
2255
|
-
paymentDate: Date;
|
|
2256
|
-
declarationDate: Date | null;
|
|
2257
|
-
recordDate: Date | null;
|
|
2258
|
-
exDate: Date;
|
|
2259
|
-
isEstimated: boolean;
|
|
2260
|
-
originalPrice?: number | undefined;
|
|
2261
|
-
originalCurrency?: string | undefined;
|
|
2262
|
-
}[] | null;
|
|
2263
|
-
dividendKPIs: {
|
|
2264
|
-
cagr3Y: number;
|
|
2265
|
-
cagr5Y: number;
|
|
2266
|
-
cagr10Y: number;
|
|
2267
|
-
dividendYieldPercentageTTM: number;
|
|
2268
|
-
dividendPerShareTTM: number;
|
|
2269
|
-
};
|
|
2270
|
-
securityDetails: {
|
|
2390
|
+
payoutIntervalSource: string | null;
|
|
2391
|
+
dividendYearlyTTM: Record<string, number> | null;
|
|
2392
|
+
securityDetails?: {
|
|
2271
2393
|
beta: number;
|
|
2272
2394
|
address: {
|
|
2273
2395
|
state: string;
|
|
@@ -2293,13 +2415,13 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2293
2415
|
to: number;
|
|
2294
2416
|
};
|
|
2295
2417
|
incomeStatementGrowth: {
|
|
2296
|
-
date: Date;
|
|
2418
|
+
date: (string | number | Date) & (string | number | Date | undefined);
|
|
2297
2419
|
growthRevenue: number;
|
|
2298
2420
|
growthNetIncome: number;
|
|
2299
2421
|
}[];
|
|
2300
2422
|
annualFinancials: {
|
|
2301
2423
|
currency: string;
|
|
2302
|
-
date: Date;
|
|
2424
|
+
date: (string | number | Date) & (string | number | Date | undefined);
|
|
2303
2425
|
revenue: number;
|
|
2304
2426
|
grossProfit: number;
|
|
2305
2427
|
netIncome: number;
|
|
@@ -2307,15 +2429,106 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2307
2429
|
}[];
|
|
2308
2430
|
quarterlyFinancials: {
|
|
2309
2431
|
currency: string;
|
|
2310
|
-
date: Date;
|
|
2432
|
+
date: (string | number | Date) & (string | number | Date | undefined);
|
|
2311
2433
|
revenue: number;
|
|
2312
2434
|
grossProfit: number;
|
|
2313
2435
|
netIncome: number;
|
|
2314
2436
|
ebitda: number;
|
|
2315
2437
|
}[];
|
|
2316
2438
|
ceo: string;
|
|
2317
|
-
};
|
|
2318
|
-
|
|
2439
|
+
} | undefined;
|
|
2440
|
+
eftDetails?: {
|
|
2441
|
+
nav: number;
|
|
2442
|
+
description: string;
|
|
2443
|
+
currency: string;
|
|
2444
|
+
priceToBook: number;
|
|
2445
|
+
priceToEarnings: number;
|
|
2446
|
+
aum: number;
|
|
2447
|
+
expenseRatio: number;
|
|
2448
|
+
} | undefined;
|
|
2449
|
+
etfBreakdown?: {
|
|
2450
|
+
currency: string;
|
|
2451
|
+
updatedAt: (string | number | Date) & (string | number | Date | undefined);
|
|
2452
|
+
holdings: {
|
|
2453
|
+
name: string;
|
|
2454
|
+
asset: {
|
|
2455
|
+
name: string;
|
|
2456
|
+
_id: {
|
|
2457
|
+
identifier: string;
|
|
2458
|
+
assetType: string;
|
|
2459
|
+
};
|
|
2460
|
+
assetType: string;
|
|
2461
|
+
logo: string;
|
|
2462
|
+
security: {
|
|
2463
|
+
type: string;
|
|
2464
|
+
website: string;
|
|
2465
|
+
wkn: string;
|
|
2466
|
+
isin: string;
|
|
2467
|
+
etfDomicile: string;
|
|
2468
|
+
etfCompany: string;
|
|
2469
|
+
};
|
|
2470
|
+
};
|
|
2471
|
+
share: number;
|
|
2472
|
+
marketValue: number;
|
|
2473
|
+
amountOfShares: number;
|
|
2474
|
+
}[];
|
|
2475
|
+
} | null | undefined;
|
|
2476
|
+
historicalDividends?: {
|
|
2477
|
+
type: string;
|
|
2478
|
+
currency: string;
|
|
2479
|
+
date: (string | number | Date) & (string | number | Date | undefined);
|
|
2480
|
+
datetime: (string | number | Date) & (string | number | Date | undefined);
|
|
2481
|
+
security: string;
|
|
2482
|
+
price: number;
|
|
2483
|
+
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2484
|
+
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2485
|
+
isEstimated: boolean;
|
|
2486
|
+
originalPrice?: number | undefined;
|
|
2487
|
+
originalCurrency?: string | undefined;
|
|
2488
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2489
|
+
recordDate?: string | number | Date | null | undefined;
|
|
2490
|
+
}[] | null | undefined;
|
|
2491
|
+
futureDividends?: {
|
|
2492
|
+
type: string;
|
|
2493
|
+
currency: string;
|
|
2494
|
+
date: (string | number | Date) & (string | number | Date | undefined);
|
|
2495
|
+
datetime: (string | number | Date) & (string | number | Date | undefined);
|
|
2496
|
+
security: string;
|
|
2497
|
+
price: number;
|
|
2498
|
+
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2499
|
+
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2500
|
+
isEstimated: boolean;
|
|
2501
|
+
originalPrice?: number | undefined;
|
|
2502
|
+
originalCurrency?: string | undefined;
|
|
2503
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2504
|
+
recordDate?: string | number | Date | null | undefined;
|
|
2505
|
+
}[] | null | undefined;
|
|
2506
|
+
dividendKPIs?: {
|
|
2507
|
+
cagr3Y: number;
|
|
2508
|
+
cagr5Y: number;
|
|
2509
|
+
cagr10Y: number;
|
|
2510
|
+
dividendYieldPercentageTTM: number;
|
|
2511
|
+
dividendPerShareTTM: number;
|
|
2512
|
+
} | null | undefined;
|
|
2513
|
+
}>;
|
|
2514
|
+
}, "strip", z.ZodTypeAny, {
|
|
2515
|
+
details: {
|
|
2516
|
+
payoutInterval: string | null;
|
|
2517
|
+
futureDividends: {
|
|
2518
|
+
type: string;
|
|
2519
|
+
currency: string;
|
|
2520
|
+
date: Date;
|
|
2521
|
+
datetime: Date;
|
|
2522
|
+
security: string;
|
|
2523
|
+
price: number;
|
|
2524
|
+
paymentDate: Date;
|
|
2525
|
+
exDate: Date;
|
|
2526
|
+
isEstimated: boolean;
|
|
2527
|
+
originalPrice?: number | undefined;
|
|
2528
|
+
originalCurrency?: string | undefined;
|
|
2529
|
+
declarationDate?: Date | null | undefined;
|
|
2530
|
+
recordDate?: Date | null | undefined;
|
|
2531
|
+
}[] | null;
|
|
2319
2532
|
analystEstimates: {
|
|
2320
2533
|
strongBuy: number;
|
|
2321
2534
|
buy: number;
|
|
@@ -2331,12 +2544,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2331
2544
|
security: string;
|
|
2332
2545
|
price: number;
|
|
2333
2546
|
paymentDate: Date;
|
|
2334
|
-
declarationDate: Date | null;
|
|
2335
|
-
recordDate: Date | null;
|
|
2336
2547
|
exDate: Date;
|
|
2337
2548
|
isEstimated: boolean;
|
|
2338
2549
|
originalPrice?: number | undefined;
|
|
2339
2550
|
originalCurrency?: string | undefined;
|
|
2551
|
+
declarationDate?: Date | null | undefined;
|
|
2552
|
+
recordDate?: Date | null | undefined;
|
|
2340
2553
|
}[] | null;
|
|
2341
2554
|
priceTargetConsensus: {
|
|
2342
2555
|
high: number;
|
|
@@ -2370,8 +2583,99 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2370
2583
|
maxValue: number;
|
|
2371
2584
|
badgeColor: string;
|
|
2372
2585
|
}[];
|
|
2373
|
-
payoutIntervalSource: string;
|
|
2374
|
-
dividendYearlyTTM: Record<string, number
|
|
2586
|
+
payoutIntervalSource: string | null;
|
|
2587
|
+
dividendYearlyTTM: Record<string, number> | null;
|
|
2588
|
+
securityDetails?: {
|
|
2589
|
+
beta: number;
|
|
2590
|
+
address: {
|
|
2591
|
+
state: string;
|
|
2592
|
+
addressLine: string;
|
|
2593
|
+
city: string;
|
|
2594
|
+
zip: string;
|
|
2595
|
+
};
|
|
2596
|
+
description: string;
|
|
2597
|
+
currency: string;
|
|
2598
|
+
dividendPerShareTTM: number;
|
|
2599
|
+
marketCap: number;
|
|
2600
|
+
shares: number;
|
|
2601
|
+
fullTimeEmployees: number;
|
|
2602
|
+
peRatioTTM: number;
|
|
2603
|
+
priceSalesRatioTTM: number;
|
|
2604
|
+
priceToBookRatioTTM: number;
|
|
2605
|
+
pegRatioTTM: number;
|
|
2606
|
+
priceFairValueTTM: number;
|
|
2607
|
+
dividendYielPercentageTTM: number;
|
|
2608
|
+
payoutRatioTTM: number;
|
|
2609
|
+
fiftyTwoWeekRange: {
|
|
2610
|
+
from: number;
|
|
2611
|
+
to: number;
|
|
2612
|
+
};
|
|
2613
|
+
incomeStatementGrowth: {
|
|
2614
|
+
date: Date;
|
|
2615
|
+
growthRevenue: number;
|
|
2616
|
+
growthNetIncome: number;
|
|
2617
|
+
}[];
|
|
2618
|
+
annualFinancials: {
|
|
2619
|
+
currency: string;
|
|
2620
|
+
date: Date;
|
|
2621
|
+
revenue: number;
|
|
2622
|
+
grossProfit: number;
|
|
2623
|
+
netIncome: number;
|
|
2624
|
+
ebitda: number;
|
|
2625
|
+
}[];
|
|
2626
|
+
quarterlyFinancials: {
|
|
2627
|
+
currency: string;
|
|
2628
|
+
date: Date;
|
|
2629
|
+
revenue: number;
|
|
2630
|
+
grossProfit: number;
|
|
2631
|
+
netIncome: number;
|
|
2632
|
+
ebitda: number;
|
|
2633
|
+
}[];
|
|
2634
|
+
ceo: string;
|
|
2635
|
+
} | undefined;
|
|
2636
|
+
eftDetails?: {
|
|
2637
|
+
nav: number;
|
|
2638
|
+
description: string;
|
|
2639
|
+
currency: string;
|
|
2640
|
+
priceToBook: number;
|
|
2641
|
+
priceToEarnings: number;
|
|
2642
|
+
aum: number;
|
|
2643
|
+
expenseRatio: number;
|
|
2644
|
+
} | undefined;
|
|
2645
|
+
etfBreakdown?: {
|
|
2646
|
+
currency: string;
|
|
2647
|
+
updatedAt: Date;
|
|
2648
|
+
holdings: {
|
|
2649
|
+
name: string;
|
|
2650
|
+
asset: {
|
|
2651
|
+
name: string;
|
|
2652
|
+
_id: {
|
|
2653
|
+
identifier: string;
|
|
2654
|
+
assetType: string;
|
|
2655
|
+
};
|
|
2656
|
+
assetType: string;
|
|
2657
|
+
logo: string;
|
|
2658
|
+
security: {
|
|
2659
|
+
type: string;
|
|
2660
|
+
website: string;
|
|
2661
|
+
wkn: string;
|
|
2662
|
+
isin: string;
|
|
2663
|
+
etfDomicile: string;
|
|
2664
|
+
etfCompany: string;
|
|
2665
|
+
};
|
|
2666
|
+
};
|
|
2667
|
+
share: number;
|
|
2668
|
+
marketValue: number;
|
|
2669
|
+
amountOfShares: number;
|
|
2670
|
+
}[];
|
|
2671
|
+
} | null | undefined;
|
|
2672
|
+
dividendKPIs?: {
|
|
2673
|
+
cagr3Y: number;
|
|
2674
|
+
cagr5Y: number;
|
|
2675
|
+
cagr10Y: number;
|
|
2676
|
+
dividendYieldPercentageTTM: number;
|
|
2677
|
+
dividendPerShareTTM: number;
|
|
2678
|
+
} | null | undefined;
|
|
2375
2679
|
};
|
|
2376
2680
|
asset: {
|
|
2377
2681
|
name: string;
|
|
@@ -2410,7 +2714,7 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2410
2714
|
exchange: string;
|
|
2411
2715
|
}[];
|
|
2412
2716
|
ipoDate: Date;
|
|
2413
|
-
hasDividends
|
|
2717
|
+
hasDividends?: boolean | undefined;
|
|
2414
2718
|
};
|
|
2415
2719
|
updatedAt: Date;
|
|
2416
2720
|
};
|
|
@@ -2425,15 +2729,49 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2425
2729
|
};
|
|
2426
2730
|
}, {
|
|
2427
2731
|
details: {
|
|
2428
|
-
payoutInterval: string;
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2732
|
+
payoutInterval: string | null;
|
|
2733
|
+
analystEstimates: {
|
|
2734
|
+
strongBuy: number;
|
|
2735
|
+
buy: number;
|
|
2736
|
+
hold: number;
|
|
2737
|
+
sell: number;
|
|
2738
|
+
strongSell: number;
|
|
2739
|
+
} | null;
|
|
2740
|
+
priceTargetConsensus: {
|
|
2741
|
+
high: number;
|
|
2742
|
+
low: number;
|
|
2743
|
+
currency: string;
|
|
2744
|
+
consensus: number;
|
|
2745
|
+
median: number;
|
|
2746
|
+
} | null;
|
|
2747
|
+
analysis: {
|
|
2748
|
+
entries: {
|
|
2749
|
+
url: string;
|
|
2750
|
+
title: string;
|
|
2751
|
+
analysisDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2752
|
+
mediaType: string;
|
|
2753
|
+
ratingCount: number;
|
|
2754
|
+
rating: number;
|
|
2755
|
+
author: string;
|
|
2756
|
+
}[];
|
|
2435
2757
|
};
|
|
2436
|
-
|
|
2758
|
+
news: {
|
|
2759
|
+
url: string;
|
|
2760
|
+
title: string;
|
|
2761
|
+
image: string;
|
|
2762
|
+
description: string;
|
|
2763
|
+
publishedAt: (string | number | Date) & (string | number | Date | undefined);
|
|
2764
|
+
}[];
|
|
2765
|
+
scorings: {
|
|
2766
|
+
type: string;
|
|
2767
|
+
source: string;
|
|
2768
|
+
value: number;
|
|
2769
|
+
maxValue: number;
|
|
2770
|
+
badgeColor: string;
|
|
2771
|
+
}[];
|
|
2772
|
+
payoutIntervalSource: string | null;
|
|
2773
|
+
dividendYearlyTTM: Record<string, number> | null;
|
|
2774
|
+
securityDetails?: {
|
|
2437
2775
|
beta: number;
|
|
2438
2776
|
address: {
|
|
2439
2777
|
state: string;
|
|
@@ -2480,49 +2818,43 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2480
2818
|
ebitda: number;
|
|
2481
2819
|
}[];
|
|
2482
2820
|
ceo: string;
|
|
2483
|
-
};
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
buy: number;
|
|
2488
|
-
hold: number;
|
|
2489
|
-
sell: number;
|
|
2490
|
-
strongSell: number;
|
|
2491
|
-
} | null;
|
|
2492
|
-
priceTargetConsensus: {
|
|
2493
|
-
high: number;
|
|
2494
|
-
low: number;
|
|
2821
|
+
} | undefined;
|
|
2822
|
+
eftDetails?: {
|
|
2823
|
+
nav: number;
|
|
2824
|
+
description: string;
|
|
2495
2825
|
currency: string;
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2826
|
+
priceToBook: number;
|
|
2827
|
+
priceToEarnings: number;
|
|
2828
|
+
aum: number;
|
|
2829
|
+
expenseRatio: number;
|
|
2830
|
+
} | undefined;
|
|
2831
|
+
etfBreakdown?: {
|
|
2832
|
+
currency: string;
|
|
2833
|
+
updatedAt: (string | number | Date) & (string | number | Date | undefined);
|
|
2834
|
+
holdings: {
|
|
2835
|
+
name: string;
|
|
2836
|
+
asset: {
|
|
2837
|
+
name: string;
|
|
2838
|
+
_id: {
|
|
2839
|
+
identifier: string;
|
|
2840
|
+
assetType: string;
|
|
2841
|
+
};
|
|
2842
|
+
assetType: string;
|
|
2843
|
+
logo: string;
|
|
2844
|
+
security: {
|
|
2845
|
+
type: string;
|
|
2846
|
+
website: string;
|
|
2847
|
+
wkn: string;
|
|
2848
|
+
isin: string;
|
|
2849
|
+
etfDomicile: string;
|
|
2850
|
+
etfCompany: string;
|
|
2851
|
+
};
|
|
2852
|
+
};
|
|
2853
|
+
share: number;
|
|
2854
|
+
marketValue: number;
|
|
2855
|
+
amountOfShares: number;
|
|
2508
2856
|
}[];
|
|
2509
|
-
};
|
|
2510
|
-
news: {
|
|
2511
|
-
url: string;
|
|
2512
|
-
title: string;
|
|
2513
|
-
image: string;
|
|
2514
|
-
description: string;
|
|
2515
|
-
publishedAt: (string | number | Date) & (string | number | Date | undefined);
|
|
2516
|
-
}[];
|
|
2517
|
-
scorings: {
|
|
2518
|
-
type: string;
|
|
2519
|
-
source: string;
|
|
2520
|
-
value: number;
|
|
2521
|
-
maxValue: number;
|
|
2522
|
-
badgeColor: string;
|
|
2523
|
-
}[];
|
|
2524
|
-
payoutIntervalSource: string;
|
|
2525
|
-
dividendYearlyTTM: Record<string, number>;
|
|
2857
|
+
} | null | undefined;
|
|
2526
2858
|
historicalDividends?: {
|
|
2527
2859
|
type: string;
|
|
2528
2860
|
currency: string;
|
|
@@ -2531,12 +2863,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2531
2863
|
security: string;
|
|
2532
2864
|
price: number;
|
|
2533
2865
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2534
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
2535
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
2536
2866
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2537
2867
|
isEstimated: boolean;
|
|
2538
2868
|
originalPrice?: number | undefined;
|
|
2539
2869
|
originalCurrency?: string | undefined;
|
|
2870
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2871
|
+
recordDate?: string | number | Date | null | undefined;
|
|
2540
2872
|
}[] | null | undefined;
|
|
2541
2873
|
futureDividends?: {
|
|
2542
2874
|
type: string;
|
|
@@ -2546,13 +2878,20 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2546
2878
|
security: string;
|
|
2547
2879
|
price: number;
|
|
2548
2880
|
paymentDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2549
|
-
declarationDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
2550
|
-
recordDate: ((string | number | Date) & (string | number | Date | undefined)) | null;
|
|
2551
2881
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2552
2882
|
isEstimated: boolean;
|
|
2553
2883
|
originalPrice?: number | undefined;
|
|
2554
2884
|
originalCurrency?: string | undefined;
|
|
2885
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2886
|
+
recordDate?: string | number | Date | null | undefined;
|
|
2555
2887
|
}[] | null | undefined;
|
|
2888
|
+
dividendKPIs?: {
|
|
2889
|
+
cagr3Y: number;
|
|
2890
|
+
cagr5Y: number;
|
|
2891
|
+
cagr10Y: number;
|
|
2892
|
+
dividendYieldPercentageTTM: number;
|
|
2893
|
+
dividendPerShareTTM: number;
|
|
2894
|
+
} | null | undefined;
|
|
2556
2895
|
};
|
|
2557
2896
|
asset: {
|
|
2558
2897
|
name: string;
|
|
@@ -2591,7 +2930,7 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2591
2930
|
exchange: string;
|
|
2592
2931
|
}[];
|
|
2593
2932
|
ipoDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2594
|
-
hasDividends
|
|
2933
|
+
hasDividends?: boolean | undefined;
|
|
2595
2934
|
};
|
|
2596
2935
|
updatedAt: (string | number | Date) & (string | number | Date | undefined);
|
|
2597
2936
|
};
|