@budgetbuddyde/types 1.0.18 → 1.0.19
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 +82 -82
- package/lib/Stock.types.js +2 -2
- 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;
|
|
@@ -1781,8 +1781,8 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1781
1781
|
originalPrice: z.ZodOptional<z.ZodNumber>;
|
|
1782
1782
|
originalCurrency: z.ZodOptional<z.ZodString>;
|
|
1783
1783
|
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
|
|
1784
|
+
declarationDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
1785
|
+
recordDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
1786
1786
|
exDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
1787
1787
|
isEstimated: z.ZodBoolean;
|
|
1788
1788
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1793,12 +1793,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1793
1793
|
security: string;
|
|
1794
1794
|
price: number;
|
|
1795
1795
|
paymentDate: Date;
|
|
1796
|
-
declarationDate: Date | null;
|
|
1797
|
-
recordDate: Date | null;
|
|
1798
1796
|
exDate: Date;
|
|
1799
1797
|
isEstimated: boolean;
|
|
1800
1798
|
originalPrice?: number | undefined;
|
|
1801
1799
|
originalCurrency?: string | undefined;
|
|
1800
|
+
declarationDate?: Date | null | undefined;
|
|
1801
|
+
recordDate?: Date | null | undefined;
|
|
1802
1802
|
}, {
|
|
1803
1803
|
type: string;
|
|
1804
1804
|
currency: string;
|
|
@@ -1807,12 +1807,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1807
1807
|
security: string;
|
|
1808
1808
|
price: number;
|
|
1809
1809
|
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
1810
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
1813
1811
|
isEstimated: boolean;
|
|
1814
1812
|
originalPrice?: number | undefined;
|
|
1815
1813
|
originalCurrency?: string | undefined;
|
|
1814
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
1815
|
+
recordDate?: string | number | Date | null | undefined;
|
|
1816
1816
|
}>, "many">>>;
|
|
1817
1817
|
futureDividends: z.ZodDefault<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1818
1818
|
type: z.ZodString;
|
|
@@ -1824,8 +1824,8 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1824
1824
|
originalPrice: z.ZodOptional<z.ZodNumber>;
|
|
1825
1825
|
originalCurrency: z.ZodOptional<z.ZodString>;
|
|
1826
1826
|
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
|
|
1827
|
+
declarationDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
1828
|
+
recordDate: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>>>;
|
|
1829
1829
|
exDate: z.ZodEffects<z.ZodUnion<[z.ZodUnion<[z.ZodDate, z.ZodNumber]>, z.ZodString]>, Date, string | number | Date>;
|
|
1830
1830
|
isEstimated: z.ZodBoolean;
|
|
1831
1831
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1836,12 +1836,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1836
1836
|
security: string;
|
|
1837
1837
|
price: number;
|
|
1838
1838
|
paymentDate: Date;
|
|
1839
|
-
declarationDate: Date | null;
|
|
1840
|
-
recordDate: Date | null;
|
|
1841
1839
|
exDate: Date;
|
|
1842
1840
|
isEstimated: boolean;
|
|
1843
1841
|
originalPrice?: number | undefined;
|
|
1844
1842
|
originalCurrency?: string | undefined;
|
|
1843
|
+
declarationDate?: Date | null | undefined;
|
|
1844
|
+
recordDate?: Date | null | undefined;
|
|
1845
1845
|
}, {
|
|
1846
1846
|
type: string;
|
|
1847
1847
|
currency: string;
|
|
@@ -1850,12 +1850,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1850
1850
|
security: string;
|
|
1851
1851
|
price: number;
|
|
1852
1852
|
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
1853
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
1856
1854
|
isEstimated: boolean;
|
|
1857
1855
|
originalPrice?: number | undefined;
|
|
1858
1856
|
originalCurrency?: string | undefined;
|
|
1857
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
1858
|
+
recordDate?: string | number | Date | null | undefined;
|
|
1859
1859
|
}>, "many">>>;
|
|
1860
1860
|
priceTargetConsensus: z.ZodNullable<z.ZodObject<{
|
|
1861
1861
|
currency: z.ZodString;
|
|
@@ -1993,12 +1993,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
1993
1993
|
security: string;
|
|
1994
1994
|
price: number;
|
|
1995
1995
|
paymentDate: Date;
|
|
1996
|
-
declarationDate: Date | null;
|
|
1997
|
-
recordDate: Date | null;
|
|
1998
1996
|
exDate: Date;
|
|
1999
1997
|
isEstimated: boolean;
|
|
2000
1998
|
originalPrice?: number | undefined;
|
|
2001
1999
|
originalCurrency?: string | undefined;
|
|
2000
|
+
declarationDate?: Date | null | undefined;
|
|
2001
|
+
recordDate?: Date | null | undefined;
|
|
2002
2002
|
}[] | null;
|
|
2003
2003
|
dividendKPIs: {
|
|
2004
2004
|
cagr3Y: number;
|
|
@@ -2071,12 +2071,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2071
2071
|
security: string;
|
|
2072
2072
|
price: number;
|
|
2073
2073
|
paymentDate: Date;
|
|
2074
|
-
declarationDate: Date | null;
|
|
2075
|
-
recordDate: Date | null;
|
|
2076
2074
|
exDate: Date;
|
|
2077
2075
|
isEstimated: boolean;
|
|
2078
2076
|
originalPrice?: number | undefined;
|
|
2079
2077
|
originalCurrency?: string | undefined;
|
|
2078
|
+
declarationDate?: Date | null | undefined;
|
|
2079
|
+
recordDate?: Date | null | undefined;
|
|
2080
2080
|
}[] | null;
|
|
2081
2081
|
priceTargetConsensus: {
|
|
2082
2082
|
high: number;
|
|
@@ -2219,12 +2219,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2219
2219
|
security: string;
|
|
2220
2220
|
price: number;
|
|
2221
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
2222
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2225
2223
|
isEstimated: boolean;
|
|
2226
2224
|
originalPrice?: number | undefined;
|
|
2227
2225
|
originalCurrency?: string | undefined;
|
|
2226
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2227
|
+
recordDate?: string | number | Date | null | undefined;
|
|
2228
2228
|
}[] | null | undefined;
|
|
2229
2229
|
futureDividends?: {
|
|
2230
2230
|
type: string;
|
|
@@ -2234,12 +2234,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2234
2234
|
security: string;
|
|
2235
2235
|
price: number;
|
|
2236
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
2237
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2240
2238
|
isEstimated: boolean;
|
|
2241
2239
|
originalPrice?: number | undefined;
|
|
2242
2240
|
originalCurrency?: string | undefined;
|
|
2241
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2242
|
+
recordDate?: string | number | Date | null | undefined;
|
|
2243
2243
|
}[] | null | undefined;
|
|
2244
2244
|
}>;
|
|
2245
2245
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2253,12 +2253,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2253
2253
|
security: string;
|
|
2254
2254
|
price: number;
|
|
2255
2255
|
paymentDate: Date;
|
|
2256
|
-
declarationDate: Date | null;
|
|
2257
|
-
recordDate: Date | null;
|
|
2258
2256
|
exDate: Date;
|
|
2259
2257
|
isEstimated: boolean;
|
|
2260
2258
|
originalPrice?: number | undefined;
|
|
2261
2259
|
originalCurrency?: string | undefined;
|
|
2260
|
+
declarationDate?: Date | null | undefined;
|
|
2261
|
+
recordDate?: Date | null | undefined;
|
|
2262
2262
|
}[] | null;
|
|
2263
2263
|
dividendKPIs: {
|
|
2264
2264
|
cagr3Y: number;
|
|
@@ -2331,12 +2331,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2331
2331
|
security: string;
|
|
2332
2332
|
price: number;
|
|
2333
2333
|
paymentDate: Date;
|
|
2334
|
-
declarationDate: Date | null;
|
|
2335
|
-
recordDate: Date | null;
|
|
2336
2334
|
exDate: Date;
|
|
2337
2335
|
isEstimated: boolean;
|
|
2338
2336
|
originalPrice?: number | undefined;
|
|
2339
2337
|
originalCurrency?: string | undefined;
|
|
2338
|
+
declarationDate?: Date | null | undefined;
|
|
2339
|
+
recordDate?: Date | null | undefined;
|
|
2340
2340
|
}[] | null;
|
|
2341
2341
|
priceTargetConsensus: {
|
|
2342
2342
|
high: number;
|
|
@@ -2531,12 +2531,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2531
2531
|
security: string;
|
|
2532
2532
|
price: number;
|
|
2533
2533
|
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
2534
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2537
2535
|
isEstimated: boolean;
|
|
2538
2536
|
originalPrice?: number | undefined;
|
|
2539
2537
|
originalCurrency?: string | undefined;
|
|
2538
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2539
|
+
recordDate?: string | number | Date | null | undefined;
|
|
2540
2540
|
}[] | null | undefined;
|
|
2541
2541
|
futureDividends?: {
|
|
2542
2542
|
type: string;
|
|
@@ -2546,12 +2546,12 @@ export declare const ZAssetDetails: z.ZodObject<{
|
|
|
2546
2546
|
security: string;
|
|
2547
2547
|
price: number;
|
|
2548
2548
|
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
2549
|
exDate: (string | number | Date) & (string | number | Date | undefined);
|
|
2552
2550
|
isEstimated: boolean;
|
|
2553
2551
|
originalPrice?: number | undefined;
|
|
2554
2552
|
originalCurrency?: string | undefined;
|
|
2553
|
+
declarationDate?: string | number | Date | null | undefined;
|
|
2554
|
+
recordDate?: string | number | Date | null | undefined;
|
|
2555
2555
|
}[] | null | undefined;
|
|
2556
2556
|
};
|
|
2557
2557
|
asset: {
|
package/lib/Stock.types.js
CHANGED
|
@@ -73,8 +73,8 @@ exports.ZDividend = zod_1.z.object({
|
|
|
73
73
|
originalPrice: zod_1.z.number().optional(),
|
|
74
74
|
originalCurrency: exports.ZCurrency.optional(),
|
|
75
75
|
paymentDate: Base_type_1.ZDate,
|
|
76
|
-
declarationDate: Base_type_1.ZDate.nullable(),
|
|
77
|
-
recordDate: Base_type_1.ZDate.nullable(),
|
|
76
|
+
declarationDate: Base_type_1.ZDate.nullable().optional(),
|
|
77
|
+
recordDate: Base_type_1.ZDate.nullable().optional(),
|
|
78
78
|
exDate: Base_type_1.ZDate,
|
|
79
79
|
isEstimated: zod_1.z.boolean(),
|
|
80
80
|
});
|