@nexeraid/identity-schemas 2.70.0-dev → 2.71.0-dev

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.
@@ -1823,21 +1823,21 @@ export declare const VaultZodSchema: z.ZodObject<{
1823
1823
  }>;
1824
1824
  Transaction: z.ZodObject<{
1825
1825
  amount: z.ZodOptional<z.ZodObject<{
1826
- USD: z.ZodOptional<z.ZodType<import("decimal.js").default, z.ZodTypeDef, import("decimal.js").default>>;
1827
- EUR: z.ZodOptional<z.ZodType<import("decimal.js").default, z.ZodTypeDef, import("decimal.js").default>>;
1828
- GBP: z.ZodOptional<z.ZodType<import("decimal.js").default, z.ZodTypeDef, import("decimal.js").default>>;
1826
+ USD: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
1827
+ EUR: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
1828
+ GBP: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
1829
1829
  }, "strip", z.ZodTypeAny, {
1830
- EUR?: import("decimal.js").default | undefined;
1831
- GBP?: import("decimal.js").default | undefined;
1832
- USD?: import("decimal.js").default | undefined;
1830
+ EUR?: import("decimal.js").Decimal | undefined;
1831
+ GBP?: import("decimal.js").Decimal | undefined;
1832
+ USD?: import("decimal.js").Decimal | undefined;
1833
1833
  }, {
1834
- EUR?: import("decimal.js").default | undefined;
1835
- GBP?: import("decimal.js").default | undefined;
1836
- USD?: import("decimal.js").default | undefined;
1834
+ EUR?: import("decimal.js").Decimal | undefined;
1835
+ GBP?: import("decimal.js").Decimal | undefined;
1836
+ USD?: import("decimal.js").Decimal | undefined;
1837
1837
  }>>;
1838
1838
  event: z.ZodOptional<z.ZodObject<{
1839
1839
  transactionDate: z.ZodOptional<z.ZodDate>;
1840
- amount: z.ZodOptional<z.ZodType<import("decimal.js").default, z.ZodTypeDef, import("decimal.js").default>>;
1840
+ amount: z.ZodOptional<z.ZodType<import("decimal.js").Decimal, z.ZodTypeDef, import("decimal.js").Decimal>>;
1841
1841
  riskScore: z.ZodOptional<z.ZodNumber>;
1842
1842
  riskLevel: z.ZodOptional<z.ZodString>;
1843
1843
  type: z.ZodOptional<z.ZodEnum<["crypto", "fiat"]>>;
@@ -1845,14 +1845,14 @@ export declare const VaultZodSchema: z.ZodObject<{
1845
1845
  }, "strip", z.ZodTypeAny, {
1846
1846
  type?: "crypto" | "fiat" | undefined;
1847
1847
  riskLevel?: string | undefined;
1848
- amount?: import("decimal.js").default | undefined;
1848
+ amount?: import("decimal.js").Decimal | undefined;
1849
1849
  riskScore?: number | undefined;
1850
1850
  transactionDate?: Date | undefined;
1851
1851
  assets?: string[] | undefined;
1852
1852
  }, {
1853
1853
  type?: "crypto" | "fiat" | undefined;
1854
1854
  riskLevel?: string | undefined;
1855
- amount?: import("decimal.js").default | undefined;
1855
+ amount?: import("decimal.js").Decimal | undefined;
1856
1856
  riskScore?: number | undefined;
1857
1857
  transactionDate?: Date | undefined;
1858
1858
  assets?: string[] | undefined;
@@ -2045,14 +2045,14 @@ export declare const VaultZodSchema: z.ZodObject<{
2045
2045
  }>>;
2046
2046
  }, "strip", z.ZodTypeAny, {
2047
2047
  amount?: {
2048
- EUR?: import("decimal.js").default | undefined;
2049
- GBP?: import("decimal.js").default | undefined;
2050
- USD?: import("decimal.js").default | undefined;
2048
+ EUR?: import("decimal.js").Decimal | undefined;
2049
+ GBP?: import("decimal.js").Decimal | undefined;
2050
+ USD?: import("decimal.js").Decimal | undefined;
2051
2051
  } | undefined;
2052
2052
  event?: {
2053
2053
  type?: "crypto" | "fiat" | undefined;
2054
2054
  riskLevel?: string | undefined;
2055
- amount?: import("decimal.js").default | undefined;
2055
+ amount?: import("decimal.js").Decimal | undefined;
2056
2056
  riskScore?: number | undefined;
2057
2057
  transactionDate?: Date | undefined;
2058
2058
  assets?: string[] | undefined;
@@ -2107,14 +2107,14 @@ export declare const VaultZodSchema: z.ZodObject<{
2107
2107
  } | undefined;
2108
2108
  }, {
2109
2109
  amount?: {
2110
- EUR?: import("decimal.js").default | undefined;
2111
- GBP?: import("decimal.js").default | undefined;
2112
- USD?: import("decimal.js").default | undefined;
2110
+ EUR?: import("decimal.js").Decimal | undefined;
2111
+ GBP?: import("decimal.js").Decimal | undefined;
2112
+ USD?: import("decimal.js").Decimal | undefined;
2113
2113
  } | undefined;
2114
2114
  event?: {
2115
2115
  type?: "crypto" | "fiat" | undefined;
2116
2116
  riskLevel?: string | undefined;
2117
- amount?: import("decimal.js").default | undefined;
2117
+ amount?: import("decimal.js").Decimal | undefined;
2118
2118
  riskScore?: number | undefined;
2119
2119
  transactionDate?: Date | undefined;
2120
2120
  assets?: string[] | undefined;
@@ -2874,14 +2874,14 @@ export declare const VaultZodSchema: z.ZodObject<{
2874
2874
  };
2875
2875
  Transaction: {
2876
2876
  amount?: {
2877
- EUR?: import("decimal.js").default | undefined;
2878
- GBP?: import("decimal.js").default | undefined;
2879
- USD?: import("decimal.js").default | undefined;
2877
+ EUR?: import("decimal.js").Decimal | undefined;
2878
+ GBP?: import("decimal.js").Decimal | undefined;
2879
+ USD?: import("decimal.js").Decimal | undefined;
2880
2880
  } | undefined;
2881
2881
  event?: {
2882
2882
  type?: "crypto" | "fiat" | undefined;
2883
2883
  riskLevel?: string | undefined;
2884
- amount?: import("decimal.js").default | undefined;
2884
+ amount?: import("decimal.js").Decimal | undefined;
2885
2885
  riskScore?: number | undefined;
2886
2886
  transactionDate?: Date | undefined;
2887
2887
  assets?: string[] | undefined;
@@ -3197,14 +3197,14 @@ export declare const VaultZodSchema: z.ZodObject<{
3197
3197
  };
3198
3198
  Transaction: {
3199
3199
  amount?: {
3200
- EUR?: import("decimal.js").default | undefined;
3201
- GBP?: import("decimal.js").default | undefined;
3202
- USD?: import("decimal.js").default | undefined;
3200
+ EUR?: import("decimal.js").Decimal | undefined;
3201
+ GBP?: import("decimal.js").Decimal | undefined;
3202
+ USD?: import("decimal.js").Decimal | undefined;
3203
3203
  } | undefined;
3204
3204
  event?: {
3205
3205
  type?: "crypto" | "fiat" | undefined;
3206
3206
  riskLevel?: string | undefined;
3207
- amount?: import("decimal.js").default | undefined;
3207
+ amount?: import("decimal.js").Decimal | undefined;
3208
3208
  riskScore?: number | undefined;
3209
3209
  transactionDate?: Date | undefined;
3210
3210
  assets?: string[] | undefined;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.70.0",
3
+ "version": "2.71.0",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -87,21 +87,21 @@
87
87
  },
88
88
  "dependencies": {
89
89
  "@nexeraid/logger": "workspace:*",
90
- "decimal.js": "^10.4.3",
90
+ "decimal.js": "^10.5.0",
91
91
  "nanoid": "3.3.4",
92
- "remeda": "^2.17.4",
93
- "zod": "^3.23.8",
94
- "zod-to-json-schema": "^3.23.5"
92
+ "remeda": "^2.20.0",
93
+ "zod": "^3.24.1",
94
+ "zod-to-json-schema": "^3.24.1"
95
95
  },
96
96
  "devDependencies": {
97
- "@types/bun": "^1.1.10",
97
+ "@types/bun": "^1.2.0",
98
98
  "@types/json-schema": "^7.0.15",
99
99
  "@unblokttechnology/eslint-config": "workspace:*",
100
- "bun": "^1.1.29",
101
- "bun-types": "^1.1.29",
102
- "json-schema-to-zod": "^2.4.1",
100
+ "bun": "^1.2.0",
101
+ "bun-types": "^1.2.0",
102
+ "json-schema-to-zod": "^2.6.0",
103
103
  "ts-json-as-const": "^1.0.7",
104
- "typescript": "^5.6.3",
104
+ "typescript": "^5.7.3",
105
105
  "zod-to-json-schema": "^3.23.3",
106
106
  "zod-to-ts": "^1.2.0"
107
107
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.70.0-dev",
3
+ "version": "2.71.0-dev",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -61,21 +61,21 @@
61
61
  "root": true
62
62
  },
63
63
  "dependencies": {
64
- "decimal.js": "^10.4.3",
64
+ "decimal.js": "^10.5.0",
65
65
  "nanoid": "3.3.4",
66
- "remeda": "^2.17.4",
67
- "zod": "^3.23.8",
68
- "zod-to-json-schema": "^3.23.5",
66
+ "remeda": "^2.20.0",
67
+ "zod": "^3.24.1",
68
+ "zod-to-json-schema": "^3.24.1",
69
69
  "@nexeraid/logger": "2.35.1-dev"
70
70
  },
71
71
  "devDependencies": {
72
- "@types/bun": "^1.1.10",
72
+ "@types/bun": "^1.2.0",
73
73
  "@types/json-schema": "^7.0.15",
74
- "bun": "^1.1.29",
75
- "bun-types": "^1.1.29",
76
- "json-schema-to-zod": "^2.4.1",
74
+ "bun": "^1.2.0",
75
+ "bun-types": "^1.2.0",
76
+ "json-schema-to-zod": "^2.6.0",
77
77
  "ts-json-as-const": "^1.0.7",
78
- "typescript": "^5.6.3",
78
+ "typescript": "^5.7.3",
79
79
  "zod-to-json-schema": "^3.23.3",
80
80
  "zod-to-ts": "^1.2.0",
81
81
  "@unblokttechnology/eslint-config": "0.1.1"