@seidor-cloud-produtos/tax-core 1.0.20 → 1.0.22
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1906,7 +1906,7 @@ declare class BuilderAddress {
|
|
|
1906
1906
|
withNeighborhood(neighborhood: string): BuilderAddress;
|
|
1907
1907
|
withMunicipalityCode(municipality_code: string): BuilderAddress;
|
|
1908
1908
|
withMunicipality(municipality: Municipality): BuilderAddress;
|
|
1909
|
-
withCountryCode(country_code:
|
|
1909
|
+
withCountryCode(country_code: string): BuilderAddress;
|
|
1910
1910
|
withCountry(country: Country): BuilderAddress;
|
|
1911
1911
|
withPostalCode(postal_code: string): BuilderAddress;
|
|
1912
1912
|
withSupplement(supplement: string): BuilderAddress;
|
|
@@ -2057,7 +2057,7 @@ declare class BuilderPerson {
|
|
|
2057
2057
|
withCPF(cpf: string): BuilderPerson;
|
|
2058
2058
|
withName(name: string): BuilderPerson;
|
|
2059
2059
|
withEmail(email: string): BuilderPerson;
|
|
2060
|
-
withStateRegistrationNumber(state_registration_number: string): BuilderPerson;
|
|
2060
|
+
withStateRegistrationNumber(state_registration_number: string, municipalityCode?: string): BuilderPerson;
|
|
2061
2061
|
withMunicipalRegistrationNumber(municipal_registration_number: string): BuilderPerson;
|
|
2062
2062
|
withSuframaRegistrationNumber(suframa_registration_number: string): BuilderPerson;
|
|
2063
2063
|
withStateRegistrationIndicator(state_registration_indicator: StateRegistrationIndicatorEnum): BuilderPerson;
|
package/dist/index.d.ts
CHANGED
|
@@ -1906,7 +1906,7 @@ declare class BuilderAddress {
|
|
|
1906
1906
|
withNeighborhood(neighborhood: string): BuilderAddress;
|
|
1907
1907
|
withMunicipalityCode(municipality_code: string): BuilderAddress;
|
|
1908
1908
|
withMunicipality(municipality: Municipality): BuilderAddress;
|
|
1909
|
-
withCountryCode(country_code:
|
|
1909
|
+
withCountryCode(country_code: string): BuilderAddress;
|
|
1910
1910
|
withCountry(country: Country): BuilderAddress;
|
|
1911
1911
|
withPostalCode(postal_code: string): BuilderAddress;
|
|
1912
1912
|
withSupplement(supplement: string): BuilderAddress;
|
|
@@ -2057,7 +2057,7 @@ declare class BuilderPerson {
|
|
|
2057
2057
|
withCPF(cpf: string): BuilderPerson;
|
|
2058
2058
|
withName(name: string): BuilderPerson;
|
|
2059
2059
|
withEmail(email: string): BuilderPerson;
|
|
2060
|
-
withStateRegistrationNumber(state_registration_number: string): BuilderPerson;
|
|
2060
|
+
withStateRegistrationNumber(state_registration_number: string, municipalityCode?: string): BuilderPerson;
|
|
2061
2061
|
withMunicipalRegistrationNumber(municipal_registration_number: string): BuilderPerson;
|
|
2062
2062
|
withSuframaRegistrationNumber(suframa_registration_number: string): BuilderPerson;
|
|
2063
2063
|
withStateRegistrationIndicator(state_registration_indicator: StateRegistrationIndicatorEnum): BuilderPerson;
|