@bgord/tools 0.9.0 → 0.9.1
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/dist/iban.vo.d.ts +2 -2
- package/dist/iban.vo.js +1 -1
- package/package.json +1 -1
- package/src/iban.vo.ts +1 -1
package/dist/iban.vo.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
declare const IBANValueSchema: z.
|
|
1
|
+
import { z } from "zod/v4";
|
|
2
|
+
declare const IBANValueSchema: z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>;
|
|
3
3
|
type IBANValueType = z.infer<typeof IBANValueSchema>;
|
|
4
4
|
type IBANCountryCode = string;
|
|
5
5
|
export declare class IBAN {
|
package/dist/iban.vo.js
CHANGED
package/package.json
CHANGED
package/src/iban.vo.ts
CHANGED