@budgetbuddyde/types 1.0.39 → 1.0.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -291,11 +291,11 @@ export declare const ZDividend: z.ZodObject<{
291
291
  recordDate?: string | number | Date | null | undefined;
292
292
  }>;
293
293
  export type TDividend = z.infer<typeof ZDividend>;
294
- export declare const ZPayoutInterval: z.ZodEnum<["none", "month", "quarter", "year"]>;
294
+ export declare const ZPayoutInterval: z.ZodEnum<["none", "month", "quarter", "halfyear", "year"]>;
295
295
  export type TPayoutInterval = z.infer<typeof ZPayoutInterval>;
296
296
  export declare const ZDividendDetails: z.ZodObject<{
297
297
  identifier: z.ZodString;
298
- payoutInterval: z.ZodEnum<["none", "month", "quarter", "year"]>;
298
+ payoutInterval: z.ZodEnum<["none", "month", "quarter", "halfyear", "year"]>;
299
299
  asset: z.ZodObject<{
300
300
  _id: z.ZodObject<{
301
301
  identifier: z.ZodString;
@@ -472,7 +472,7 @@ export declare const ZDividendDetails: z.ZodObject<{
472
472
  }>>;
473
473
  }, "strip", z.ZodTypeAny, {
474
474
  identifier: string;
475
- payoutInterval: "none" | "month" | "year" | "quarter";
475
+ payoutInterval: "none" | "month" | "year" | "quarter" | "halfyear";
476
476
  asset: {
477
477
  name: string;
478
478
  _id: {
@@ -529,7 +529,7 @@ export declare const ZDividendDetails: z.ZodObject<{
529
529
  } | undefined;
530
530
  }, {
531
531
  identifier: string;
532
- payoutInterval: "none" | "month" | "year" | "quarter";
532
+ payoutInterval: "none" | "month" | "year" | "quarter" | "halfyear";
533
533
  asset: {
534
534
  name: string;
535
535
  _id: {
@@ -589,7 +589,7 @@ export type TDividendDetails = z.infer<typeof ZDividendDetails>;
589
589
  export declare const ZDividendDetailList: z.ZodObject<{
590
590
  dividendDetails: z.ZodRecord<z.ZodString, z.ZodObject<{
591
591
  identifier: z.ZodString;
592
- payoutInterval: z.ZodEnum<["none", "month", "quarter", "year"]>;
592
+ payoutInterval: z.ZodEnum<["none", "month", "quarter", "halfyear", "year"]>;
593
593
  asset: z.ZodObject<{
594
594
  _id: z.ZodObject<{
595
595
  identifier: z.ZodString;
@@ -766,7 +766,7 @@ export declare const ZDividendDetailList: z.ZodObject<{
766
766
  }>>;
767
767
  }, "strip", z.ZodTypeAny, {
768
768
  identifier: string;
769
- payoutInterval: "none" | "month" | "year" | "quarter";
769
+ payoutInterval: "none" | "month" | "year" | "quarter" | "halfyear";
770
770
  asset: {
771
771
  name: string;
772
772
  _id: {
@@ -823,7 +823,7 @@ export declare const ZDividendDetailList: z.ZodObject<{
823
823
  } | undefined;
824
824
  }, {
825
825
  identifier: string;
826
- payoutInterval: "none" | "month" | "year" | "quarter";
826
+ payoutInterval: "none" | "month" | "year" | "quarter" | "halfyear";
827
827
  asset: {
828
828
  name: string;
829
829
  _id: {
@@ -882,7 +882,7 @@ export declare const ZDividendDetailList: z.ZodObject<{
882
882
  }, "strip", z.ZodTypeAny, {
883
883
  dividendDetails: Record<string, {
884
884
  identifier: string;
885
- payoutInterval: "none" | "month" | "year" | "quarter";
885
+ payoutInterval: "none" | "month" | "year" | "quarter" | "halfyear";
886
886
  asset: {
887
887
  name: string;
888
888
  _id: {
@@ -941,7 +941,7 @@ export declare const ZDividendDetailList: z.ZodObject<{
941
941
  }, {
942
942
  dividendDetails: Record<string, {
943
943
  identifier: string;
944
- payoutInterval: "none" | "month" | "year" | "quarter";
944
+ payoutInterval: "none" | "month" | "year" | "quarter" | "halfyear";
945
945
  asset: {
946
946
  name: string;
947
947
  _id: {
@@ -89,7 +89,7 @@ exports.ZDividend = zod_1.z.object({
89
89
  exDate: Base_type_1.ZDate,
90
90
  isEstimated: zod_1.z.boolean(),
91
91
  });
92
- exports.ZPayoutInterval = zod_1.z.enum(['none', 'month', 'quarter', 'year']);
92
+ exports.ZPayoutInterval = zod_1.z.enum(['none', 'month', 'quarter', 'halfyear', 'year']);
93
93
  exports.ZDividendDetails = zod_1.z.object({
94
94
  identifier: exports.ZIsin,
95
95
  payoutInterval: exports.ZPayoutInterval,
package/lib/index.d.ts CHANGED
@@ -12,3 +12,4 @@ export * from './DailyBalance.types';
12
12
  export * from './MonthlyBalance.types';
13
13
  export * from './Stocks';
14
14
  export * from './Newsletter.types';
15
+ export * from './Mail.types';
package/lib/index.js CHANGED
@@ -28,3 +28,4 @@ __exportStar(require("./DailyBalance.types"), exports);
28
28
  __exportStar(require("./MonthlyBalance.types"), exports);
29
29
  __exportStar(require("./Stocks"), exports);
30
30
  __exportStar(require("./Newsletter.types"), exports);
31
+ __exportStar(require("./Mail.types"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budgetbuddyde/types",
3
- "version": "1.0.39",
3
+ "version": "1.0.43",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "description": "Budget Buddy Typescript Types",