@seidor-cloud-produtos/tax-core 1.0.4 → 1.0.5
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/index.d.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -3798,9 +3798,10 @@ interface FieldFormat {
|
|
|
3798
3798
|
removeSpecialCharacters: boolean;
|
|
3799
3799
|
}
|
|
3800
3800
|
declare enum OnDuplicationStrategy {
|
|
3801
|
-
Error = 0
|
|
3802
|
-
Ignore = 1
|
|
3803
|
-
Overwrite = 2
|
|
3801
|
+
Error = 0,// Default behavior
|
|
3802
|
+
Ignore = 1,// Ignore the new register
|
|
3803
|
+
Overwrite = 2,// Overwrite the existing register
|
|
3804
|
+
Duplicate = 3
|
|
3804
3805
|
}
|
|
3805
3806
|
declare function Numeric(required?: boolean, fillEntireLength?: boolean, maximumLength?: number): (target: any, propertyKey: any, other?: any) => void;
|
|
3806
3807
|
declare function Decimal(required?: boolean, fillEntireLength?: boolean, maximumLength?: number, maximumDecimalsLength?: number, decimalSeparator?: string): (target: any, propertyKey: any, other?: any) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -3798,9 +3798,10 @@ interface FieldFormat {
|
|
|
3798
3798
|
removeSpecialCharacters: boolean;
|
|
3799
3799
|
}
|
|
3800
3800
|
declare enum OnDuplicationStrategy {
|
|
3801
|
-
Error = 0
|
|
3802
|
-
Ignore = 1
|
|
3803
|
-
Overwrite = 2
|
|
3801
|
+
Error = 0,// Default behavior
|
|
3802
|
+
Ignore = 1,// Ignore the new register
|
|
3803
|
+
Overwrite = 2,// Overwrite the existing register
|
|
3804
|
+
Duplicate = 3
|
|
3804
3805
|
}
|
|
3805
3806
|
declare function Numeric(required?: boolean, fillEntireLength?: boolean, maximumLength?: number): (target: any, propertyKey: any, other?: any) => void;
|
|
3806
3807
|
declare function Decimal(required?: boolean, fillEntireLength?: boolean, maximumLength?: number, maximumDecimalsLength?: number, decimalSeparator?: string): (target: any, propertyKey: any, other?: any) => void;
|