@seidor-cloud-produtos/tax-core 1.0.0 → 1.0.2
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 +50 -9
- package/dist/index.d.ts +50 -9
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +7 -5
package/dist/index.d.mts
CHANGED
|
@@ -532,6 +532,33 @@ declare namespace CountryCodeEnum {
|
|
|
532
532
|
function getCountryByCode(code: CountryCodeEnum): NameCountryEnum | undefined;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
+
declare enum MunicipalObligationIdEnum {
|
|
536
|
+
DDS = "DDS",
|
|
537
|
+
DES_BH = "DES-BH",
|
|
538
|
+
DST = "DST",
|
|
539
|
+
DISTRITO_FEDERAL = "DISTRITO_FEDERAL",
|
|
540
|
+
CAMPINAS = "CAMPINAS",
|
|
541
|
+
SUMARE = "SUMARE",
|
|
542
|
+
GOIANIA = "GOIANIA",
|
|
543
|
+
NFTS_SP = "NFTS",
|
|
544
|
+
CURITIBA = "CURITIBA",
|
|
545
|
+
FORTALEZA = "FORTALEZA",
|
|
546
|
+
RIO_DE_JANEIRO = "RIO_DE_JANEIRO",
|
|
547
|
+
RECIFE = "RECIFE"
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
declare enum MunicipalObligationNameEnum {
|
|
551
|
+
DES = "DES",
|
|
552
|
+
ISS = "ISS",
|
|
553
|
+
NFSE = "NFSe",
|
|
554
|
+
REST = "REST",
|
|
555
|
+
DDS = "DDS",
|
|
556
|
+
DSRE = "DSR-e",
|
|
557
|
+
NOTA_CARIOCA = "Nota Carioca",
|
|
558
|
+
NFTS = "NFTS",
|
|
559
|
+
DST = "DST"
|
|
560
|
+
}
|
|
561
|
+
|
|
535
562
|
declare enum MunicipalObligationTypeEnum {
|
|
536
563
|
NORMAL = "Normal (Original)",// Representa a entrega inicial da obrigação fiscal
|
|
537
564
|
CORRECTIVE = "Retificadora (Substitutiva)",// Corrige informações de uma obrigação já entregue anteriormente. Substitui integralmente a versão anterior.
|
|
@@ -541,11 +568,13 @@ declare enum MunicipalObligationTypeEnum {
|
|
|
541
568
|
}
|
|
542
569
|
|
|
543
570
|
declare class MunicipalObligation {
|
|
544
|
-
protected
|
|
571
|
+
protected _id: MunicipalObligationIdEnum;
|
|
572
|
+
protected _name: MunicipalObligationNameEnum;
|
|
545
573
|
protected _versions: Set<string>;
|
|
546
574
|
protected _types: Set<MunicipalObligationTypeEnum>;
|
|
547
|
-
constructor(name:
|
|
548
|
-
get
|
|
575
|
+
constructor(id: MunicipalObligationIdEnum, name: MunicipalObligationNameEnum, versions: string[], types: MunicipalObligationTypeEnum[]);
|
|
576
|
+
get id(): MunicipalObligationIdEnum;
|
|
577
|
+
get name(): MunicipalObligationNameEnum;
|
|
549
578
|
addVersion(version: string): void;
|
|
550
579
|
get versions(): string[];
|
|
551
580
|
addType(type: MunicipalObligationTypeEnum): void;
|
|
@@ -575,7 +604,7 @@ declare class Municipality {
|
|
|
575
604
|
get sedetec_code(): string;
|
|
576
605
|
get rest_code(): number;
|
|
577
606
|
addMunicipalObligation(obligation: MunicipalObligation): void;
|
|
578
|
-
|
|
607
|
+
getMunicipalObligationById(obligationId: string): MunicipalObligation;
|
|
579
608
|
}
|
|
580
609
|
|
|
581
610
|
declare enum StateEnum {
|
|
@@ -2493,7 +2522,10 @@ interface ICalculationBasisNatureSetting {
|
|
|
2493
2522
|
_id: string;
|
|
2494
2523
|
name: string;
|
|
2495
2524
|
tenantid: string;
|
|
2496
|
-
|
|
2525
|
+
profiles: {
|
|
2526
|
+
id: string;
|
|
2527
|
+
alias: string;
|
|
2528
|
+
}[];
|
|
2497
2529
|
tax_settings: TaxRegimes;
|
|
2498
2530
|
}
|
|
2499
2531
|
|
|
@@ -2562,7 +2594,10 @@ declare class RevenueNatureSettings {
|
|
|
2562
2594
|
declare class CalculationBasisNatureSetting {
|
|
2563
2595
|
protected _id: string;
|
|
2564
2596
|
protected _tenantid: string;
|
|
2565
|
-
protected
|
|
2597
|
+
protected _profiles: {
|
|
2598
|
+
id: string;
|
|
2599
|
+
alias: string;
|
|
2600
|
+
}[];
|
|
2566
2601
|
protected _nature_code: NatureCode;
|
|
2567
2602
|
protected _tax_settings: TaxRegimes;
|
|
2568
2603
|
protected _logs?: {
|
|
@@ -2573,7 +2608,10 @@ declare class CalculationBasisNatureSetting {
|
|
|
2573
2608
|
}[];
|
|
2574
2609
|
set id(id: string);
|
|
2575
2610
|
set tenantid(tenantid: string);
|
|
2576
|
-
set
|
|
2611
|
+
set profiles(profiles: {
|
|
2612
|
+
id: string;
|
|
2613
|
+
alias: string;
|
|
2614
|
+
}[]);
|
|
2577
2615
|
set nature_code(nature_code: NatureCode);
|
|
2578
2616
|
set tax_settings(tax_settings: TaxRegimes);
|
|
2579
2617
|
set logs(logs: {
|
|
@@ -2585,7 +2623,10 @@ declare class CalculationBasisNatureSetting {
|
|
|
2585
2623
|
get nature_code(): NatureCode;
|
|
2586
2624
|
get id(): string;
|
|
2587
2625
|
get tenantid(): string;
|
|
2588
|
-
get
|
|
2626
|
+
get profiles(): {
|
|
2627
|
+
id: string;
|
|
2628
|
+
alias: string;
|
|
2629
|
+
}[];
|
|
2589
2630
|
get tax_settings(): TaxRegimes;
|
|
2590
2631
|
get logs(): {
|
|
2591
2632
|
type: 'create' | 'enable' | 'disable' | 'update';
|
|
@@ -4102,4 +4143,4 @@ declare function logWithContext<T extends MessageCodeType>(messageCode: T, param
|
|
|
4102
4143
|
actionSuggestion: string;
|
|
4103
4144
|
};
|
|
4104
4145
|
|
|
4105
|
-
export { ActionTypeEnum, Addition, Address, type AllowedCfopsCreditConfig, Alphanumeric, type AuditTaxCollectionDetails, type AuditTaxCollectionInfo, type AuthTokenExpiredParams, type AuthUnauthorizedParams, Block, BuilderAddition, BuilderAddress, BuilderDocument, BuilderImportDeclaration, BuilderItem, BuilderPerson, BuilderTax, CNPJ, CPF, CST, CalculationBasisNatureSetting, type Cloneable, CloseBlock, CloseFile, CodIncTrib, type Cod_ent_ref, CodeStatusEnum, ConfigTypeEnum, ConsoleOutput, CounterBlock, CounterRegister, CountryCodeEnum, CprbOption, CteTypeEnum, DEFAULT_LOCALE, type DatabaseConnectionFailedParams, type DatabaseQueryErrorParams, Decimal, DefaultAlphanumericLength, DefaultDecimalLength, DefaultDecimalSeparator, DescriptionStatusEnum, DifalIcmsCategoryEnum, Document, type DocumentRepository, DocumentTypeEnum, EcdSpecializedProfile, EcfSpecializedProfile, EfdContribSpecializedProfile, EfdIcmsIpiSpecializedProfile, Email, EnforceabilityOfISSEnum, Establishment, EstablishmentEvent, Event, EventEnum, FieldDataType, type FieldFormat, type FiltersDocument, FiscalQualificationType, FiscalRecordTypes, FreightContractedNatureIndicatorEnum, FreightTypeEnum, type GetAuditTaxCollectionQuery, GrossRevenueContributionHeaders, GroupVerification, type IAddition, type IAddressMongo, type IBaseHeadersDTO, type ICalculationBasisNatureSetting, type IDocumentMongo, type IEcdSpecializedProfile, type IEcfSpecializedProfile, type IEfdContribSpecializedProfile, type IEfdicmsipiAdditionalFields, type IEstablishment, type IEstablishmentEvent, type IGrossRevenueContributionHeader, type IIcmsAdjustmentVerification, type IIcmsCreditBaseConfig, type IIcmsCreditConfigLog, type IImportDeclaration, type IItemMongo, type IJudicialProcess, type INatureConfig, type INatureOfIncomeBusinessPartner, type IPersonMongo, type IProfile, type IProfileRepository, type IProfileServiceUrls, type IReinfAdditionalFields, type IRevenueNatureSettings, type IScp, type ISignatory, type ITable9, type ITaxMongo, type ITaxTypeConfig, type ITaxTypeConfigBase, type ITaxTypeConfigCreateOrUpdate, type ITaxTypeConfigLog, IcmsApurationIndicator, IcmsIpiAdjustmentVerification, type IdentificationNumber, ImportDeclaration, IntermediationTypeEnum, type InternalServerErrorParams, InternationalTransportTypeEnum, IssuerIndicatorEnum, Item, ItemTypeEnum, JudicialProcessOriginEnum, Key, type KeyComposition, type KeyFieldDefinition, LayoutDateFormat, type Locale, MaximumNumericLength, MemoryMasterDataRepository, MemoryPersist, MessageCategory, MessageCode, type MessageCodeType, Messages, ModelConverter, ModelRollback, MongoConfig, MongoRepository, MongoToDocumentBuilder, MunicipalObligation, MunicipalObligationTypeEnum, Municipality, NameCountryEnum, NatureCode, NatureConfig, Numeric, ObligationCodeEnum, OnDuplication, OnDuplicationStrategy, OpenBlock, OperationTypeEnum, OurDate, type OutputWriter, type ParameterTypes, PaymentTypeEnum, Person, ProductOriginEnum, Profile, ProfileRestRepository, ProfileTaxTypeEnum, Register, type RegisterDefinition, type RegisterEventData, type RegisterEventNotifier, type RegisterGenerator, type RegisterPersist, type RegisterSubscriber, ReinfSpecializedProfile, type ReportGenerationOptions, ReportGenerator, type Repository, RevenueNatureSettings, RevenueTypeEnum, Scp, ServiceCode, ServiceCodeEnum, type SettingErrorParams, Signatory, SimpleNationalOption, type SimpleReportGenerationOptions, SimpleReportGenerator, State, StateEnum, StateRegistrationIndicatorEnum, StatusDocumentEnum, StringArrayOutput, TagCounter, Tax, type TaxCollectionDetails, TaxCollectionType, TaxRegimeEnum, type TaxRegimes, type TaxRegisterGenerationOptions, TaxRegisterGenerator, TaxReport, TaxType, TaxTypeEnum, TaxationType, Uf, type ValidationInvalidInputParams, type ValidationMissingFieldParams, ValueProviderType, buildMongoFilter, calculate_bases_values, formatMessage, keyCompositionMetadata, logWithContext, newRegisterEventData, normalizeServiceCode, onDuplicationStrategyMetadata, parseState };
|
|
4146
|
+
export { ActionTypeEnum, Addition, Address, type AllowedCfopsCreditConfig, Alphanumeric, type AuditTaxCollectionDetails, type AuditTaxCollectionInfo, type AuthTokenExpiredParams, type AuthUnauthorizedParams, Block, BuilderAddition, BuilderAddress, BuilderDocument, BuilderImportDeclaration, BuilderItem, BuilderPerson, BuilderTax, CNPJ, CPF, CST, CalculationBasisNatureSetting, type Cloneable, CloseBlock, CloseFile, CodIncTrib, type Cod_ent_ref, CodeStatusEnum, ConfigTypeEnum, ConsoleOutput, CounterBlock, CounterRegister, CountryCodeEnum, CprbOption, CteTypeEnum, DEFAULT_LOCALE, type DatabaseConnectionFailedParams, type DatabaseQueryErrorParams, Decimal, DefaultAlphanumericLength, DefaultDecimalLength, DefaultDecimalSeparator, DescriptionStatusEnum, DifalIcmsCategoryEnum, Document, type DocumentRepository, DocumentTypeEnum, EcdSpecializedProfile, EcfSpecializedProfile, EfdContribSpecializedProfile, EfdIcmsIpiSpecializedProfile, Email, EnforceabilityOfISSEnum, Establishment, EstablishmentEvent, Event, EventEnum, FieldDataType, type FieldFormat, type FiltersDocument, FiscalQualificationType, FiscalRecordTypes, FreightContractedNatureIndicatorEnum, FreightTypeEnum, type GetAuditTaxCollectionQuery, GrossRevenueContributionHeaders, GroupVerification, type IAddition, type IAddressMongo, type IBaseHeadersDTO, type ICalculationBasisNatureSetting, type IDocumentMongo, type IEcdSpecializedProfile, type IEcfSpecializedProfile, type IEfdContribSpecializedProfile, type IEfdicmsipiAdditionalFields, type IEstablishment, type IEstablishmentEvent, type IGrossRevenueContributionHeader, type IIcmsAdjustmentVerification, type IIcmsCreditBaseConfig, type IIcmsCreditConfigLog, type IImportDeclaration, type IItemMongo, type IJudicialProcess, type INatureConfig, type INatureOfIncomeBusinessPartner, type IPersonMongo, type IProfile, type IProfileRepository, type IProfileServiceUrls, type IReinfAdditionalFields, type IRevenueNatureSettings, type IScp, type ISignatory, type ITable9, type ITaxMongo, type ITaxTypeConfig, type ITaxTypeConfigBase, type ITaxTypeConfigCreateOrUpdate, type ITaxTypeConfigLog, IcmsApurationIndicator, IcmsIpiAdjustmentVerification, type IdentificationNumber, ImportDeclaration, IntermediationTypeEnum, type InternalServerErrorParams, InternationalTransportTypeEnum, IssuerIndicatorEnum, Item, ItemTypeEnum, JudicialProcessOriginEnum, Key, type KeyComposition, type KeyFieldDefinition, LayoutDateFormat, type Locale, MaximumNumericLength, MemoryMasterDataRepository, MemoryPersist, MessageCategory, MessageCode, type MessageCodeType, Messages, ModelConverter, ModelRollback, MongoConfig, MongoRepository, MongoToDocumentBuilder, MunicipalObligation, MunicipalObligationIdEnum, MunicipalObligationNameEnum, MunicipalObligationTypeEnum, Municipality, NameCountryEnum, NatureCode, NatureConfig, Numeric, ObligationCodeEnum, OnDuplication, OnDuplicationStrategy, OpenBlock, OperationTypeEnum, OurDate, type OutputWriter, type ParameterTypes, PaymentTypeEnum, Person, ProductOriginEnum, Profile, ProfileRestRepository, ProfileTaxTypeEnum, Register, type RegisterDefinition, type RegisterEventData, type RegisterEventNotifier, type RegisterGenerator, type RegisterPersist, type RegisterSubscriber, ReinfSpecializedProfile, type ReportGenerationOptions, ReportGenerator, type Repository, RevenueNatureSettings, RevenueTypeEnum, Scp, ServiceCode, ServiceCodeEnum, type SettingErrorParams, Signatory, SimpleNationalOption, type SimpleReportGenerationOptions, SimpleReportGenerator, State, StateEnum, StateRegistrationIndicatorEnum, StatusDocumentEnum, StringArrayOutput, TagCounter, Tax, type TaxCollectionDetails, TaxCollectionType, TaxRegimeEnum, type TaxRegimes, type TaxRegisterGenerationOptions, TaxRegisterGenerator, TaxReport, TaxType, TaxTypeEnum, TaxationType, Uf, type ValidationInvalidInputParams, type ValidationMissingFieldParams, ValueProviderType, buildMongoFilter, calculate_bases_values, formatMessage, keyCompositionMetadata, logWithContext, newRegisterEventData, normalizeServiceCode, onDuplicationStrategyMetadata, parseState };
|
package/dist/index.d.ts
CHANGED
|
@@ -532,6 +532,33 @@ declare namespace CountryCodeEnum {
|
|
|
532
532
|
function getCountryByCode(code: CountryCodeEnum): NameCountryEnum | undefined;
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
+
declare enum MunicipalObligationIdEnum {
|
|
536
|
+
DDS = "DDS",
|
|
537
|
+
DES_BH = "DES-BH",
|
|
538
|
+
DST = "DST",
|
|
539
|
+
DISTRITO_FEDERAL = "DISTRITO_FEDERAL",
|
|
540
|
+
CAMPINAS = "CAMPINAS",
|
|
541
|
+
SUMARE = "SUMARE",
|
|
542
|
+
GOIANIA = "GOIANIA",
|
|
543
|
+
NFTS_SP = "NFTS",
|
|
544
|
+
CURITIBA = "CURITIBA",
|
|
545
|
+
FORTALEZA = "FORTALEZA",
|
|
546
|
+
RIO_DE_JANEIRO = "RIO_DE_JANEIRO",
|
|
547
|
+
RECIFE = "RECIFE"
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
declare enum MunicipalObligationNameEnum {
|
|
551
|
+
DES = "DES",
|
|
552
|
+
ISS = "ISS",
|
|
553
|
+
NFSE = "NFSe",
|
|
554
|
+
REST = "REST",
|
|
555
|
+
DDS = "DDS",
|
|
556
|
+
DSRE = "DSR-e",
|
|
557
|
+
NOTA_CARIOCA = "Nota Carioca",
|
|
558
|
+
NFTS = "NFTS",
|
|
559
|
+
DST = "DST"
|
|
560
|
+
}
|
|
561
|
+
|
|
535
562
|
declare enum MunicipalObligationTypeEnum {
|
|
536
563
|
NORMAL = "Normal (Original)",// Representa a entrega inicial da obrigação fiscal
|
|
537
564
|
CORRECTIVE = "Retificadora (Substitutiva)",// Corrige informações de uma obrigação já entregue anteriormente. Substitui integralmente a versão anterior.
|
|
@@ -541,11 +568,13 @@ declare enum MunicipalObligationTypeEnum {
|
|
|
541
568
|
}
|
|
542
569
|
|
|
543
570
|
declare class MunicipalObligation {
|
|
544
|
-
protected
|
|
571
|
+
protected _id: MunicipalObligationIdEnum;
|
|
572
|
+
protected _name: MunicipalObligationNameEnum;
|
|
545
573
|
protected _versions: Set<string>;
|
|
546
574
|
protected _types: Set<MunicipalObligationTypeEnum>;
|
|
547
|
-
constructor(name:
|
|
548
|
-
get
|
|
575
|
+
constructor(id: MunicipalObligationIdEnum, name: MunicipalObligationNameEnum, versions: string[], types: MunicipalObligationTypeEnum[]);
|
|
576
|
+
get id(): MunicipalObligationIdEnum;
|
|
577
|
+
get name(): MunicipalObligationNameEnum;
|
|
549
578
|
addVersion(version: string): void;
|
|
550
579
|
get versions(): string[];
|
|
551
580
|
addType(type: MunicipalObligationTypeEnum): void;
|
|
@@ -575,7 +604,7 @@ declare class Municipality {
|
|
|
575
604
|
get sedetec_code(): string;
|
|
576
605
|
get rest_code(): number;
|
|
577
606
|
addMunicipalObligation(obligation: MunicipalObligation): void;
|
|
578
|
-
|
|
607
|
+
getMunicipalObligationById(obligationId: string): MunicipalObligation;
|
|
579
608
|
}
|
|
580
609
|
|
|
581
610
|
declare enum StateEnum {
|
|
@@ -2493,7 +2522,10 @@ interface ICalculationBasisNatureSetting {
|
|
|
2493
2522
|
_id: string;
|
|
2494
2523
|
name: string;
|
|
2495
2524
|
tenantid: string;
|
|
2496
|
-
|
|
2525
|
+
profiles: {
|
|
2526
|
+
id: string;
|
|
2527
|
+
alias: string;
|
|
2528
|
+
}[];
|
|
2497
2529
|
tax_settings: TaxRegimes;
|
|
2498
2530
|
}
|
|
2499
2531
|
|
|
@@ -2562,7 +2594,10 @@ declare class RevenueNatureSettings {
|
|
|
2562
2594
|
declare class CalculationBasisNatureSetting {
|
|
2563
2595
|
protected _id: string;
|
|
2564
2596
|
protected _tenantid: string;
|
|
2565
|
-
protected
|
|
2597
|
+
protected _profiles: {
|
|
2598
|
+
id: string;
|
|
2599
|
+
alias: string;
|
|
2600
|
+
}[];
|
|
2566
2601
|
protected _nature_code: NatureCode;
|
|
2567
2602
|
protected _tax_settings: TaxRegimes;
|
|
2568
2603
|
protected _logs?: {
|
|
@@ -2573,7 +2608,10 @@ declare class CalculationBasisNatureSetting {
|
|
|
2573
2608
|
}[];
|
|
2574
2609
|
set id(id: string);
|
|
2575
2610
|
set tenantid(tenantid: string);
|
|
2576
|
-
set
|
|
2611
|
+
set profiles(profiles: {
|
|
2612
|
+
id: string;
|
|
2613
|
+
alias: string;
|
|
2614
|
+
}[]);
|
|
2577
2615
|
set nature_code(nature_code: NatureCode);
|
|
2578
2616
|
set tax_settings(tax_settings: TaxRegimes);
|
|
2579
2617
|
set logs(logs: {
|
|
@@ -2585,7 +2623,10 @@ declare class CalculationBasisNatureSetting {
|
|
|
2585
2623
|
get nature_code(): NatureCode;
|
|
2586
2624
|
get id(): string;
|
|
2587
2625
|
get tenantid(): string;
|
|
2588
|
-
get
|
|
2626
|
+
get profiles(): {
|
|
2627
|
+
id: string;
|
|
2628
|
+
alias: string;
|
|
2629
|
+
}[];
|
|
2589
2630
|
get tax_settings(): TaxRegimes;
|
|
2590
2631
|
get logs(): {
|
|
2591
2632
|
type: 'create' | 'enable' | 'disable' | 'update';
|
|
@@ -4102,4 +4143,4 @@ declare function logWithContext<T extends MessageCodeType>(messageCode: T, param
|
|
|
4102
4143
|
actionSuggestion: string;
|
|
4103
4144
|
};
|
|
4104
4145
|
|
|
4105
|
-
export { ActionTypeEnum, Addition, Address, type AllowedCfopsCreditConfig, Alphanumeric, type AuditTaxCollectionDetails, type AuditTaxCollectionInfo, type AuthTokenExpiredParams, type AuthUnauthorizedParams, Block, BuilderAddition, BuilderAddress, BuilderDocument, BuilderImportDeclaration, BuilderItem, BuilderPerson, BuilderTax, CNPJ, CPF, CST, CalculationBasisNatureSetting, type Cloneable, CloseBlock, CloseFile, CodIncTrib, type Cod_ent_ref, CodeStatusEnum, ConfigTypeEnum, ConsoleOutput, CounterBlock, CounterRegister, CountryCodeEnum, CprbOption, CteTypeEnum, DEFAULT_LOCALE, type DatabaseConnectionFailedParams, type DatabaseQueryErrorParams, Decimal, DefaultAlphanumericLength, DefaultDecimalLength, DefaultDecimalSeparator, DescriptionStatusEnum, DifalIcmsCategoryEnum, Document, type DocumentRepository, DocumentTypeEnum, EcdSpecializedProfile, EcfSpecializedProfile, EfdContribSpecializedProfile, EfdIcmsIpiSpecializedProfile, Email, EnforceabilityOfISSEnum, Establishment, EstablishmentEvent, Event, EventEnum, FieldDataType, type FieldFormat, type FiltersDocument, FiscalQualificationType, FiscalRecordTypes, FreightContractedNatureIndicatorEnum, FreightTypeEnum, type GetAuditTaxCollectionQuery, GrossRevenueContributionHeaders, GroupVerification, type IAddition, type IAddressMongo, type IBaseHeadersDTO, type ICalculationBasisNatureSetting, type IDocumentMongo, type IEcdSpecializedProfile, type IEcfSpecializedProfile, type IEfdContribSpecializedProfile, type IEfdicmsipiAdditionalFields, type IEstablishment, type IEstablishmentEvent, type IGrossRevenueContributionHeader, type IIcmsAdjustmentVerification, type IIcmsCreditBaseConfig, type IIcmsCreditConfigLog, type IImportDeclaration, type IItemMongo, type IJudicialProcess, type INatureConfig, type INatureOfIncomeBusinessPartner, type IPersonMongo, type IProfile, type IProfileRepository, type IProfileServiceUrls, type IReinfAdditionalFields, type IRevenueNatureSettings, type IScp, type ISignatory, type ITable9, type ITaxMongo, type ITaxTypeConfig, type ITaxTypeConfigBase, type ITaxTypeConfigCreateOrUpdate, type ITaxTypeConfigLog, IcmsApurationIndicator, IcmsIpiAdjustmentVerification, type IdentificationNumber, ImportDeclaration, IntermediationTypeEnum, type InternalServerErrorParams, InternationalTransportTypeEnum, IssuerIndicatorEnum, Item, ItemTypeEnum, JudicialProcessOriginEnum, Key, type KeyComposition, type KeyFieldDefinition, LayoutDateFormat, type Locale, MaximumNumericLength, MemoryMasterDataRepository, MemoryPersist, MessageCategory, MessageCode, type MessageCodeType, Messages, ModelConverter, ModelRollback, MongoConfig, MongoRepository, MongoToDocumentBuilder, MunicipalObligation, MunicipalObligationTypeEnum, Municipality, NameCountryEnum, NatureCode, NatureConfig, Numeric, ObligationCodeEnum, OnDuplication, OnDuplicationStrategy, OpenBlock, OperationTypeEnum, OurDate, type OutputWriter, type ParameterTypes, PaymentTypeEnum, Person, ProductOriginEnum, Profile, ProfileRestRepository, ProfileTaxTypeEnum, Register, type RegisterDefinition, type RegisterEventData, type RegisterEventNotifier, type RegisterGenerator, type RegisterPersist, type RegisterSubscriber, ReinfSpecializedProfile, type ReportGenerationOptions, ReportGenerator, type Repository, RevenueNatureSettings, RevenueTypeEnum, Scp, ServiceCode, ServiceCodeEnum, type SettingErrorParams, Signatory, SimpleNationalOption, type SimpleReportGenerationOptions, SimpleReportGenerator, State, StateEnum, StateRegistrationIndicatorEnum, StatusDocumentEnum, StringArrayOutput, TagCounter, Tax, type TaxCollectionDetails, TaxCollectionType, TaxRegimeEnum, type TaxRegimes, type TaxRegisterGenerationOptions, TaxRegisterGenerator, TaxReport, TaxType, TaxTypeEnum, TaxationType, Uf, type ValidationInvalidInputParams, type ValidationMissingFieldParams, ValueProviderType, buildMongoFilter, calculate_bases_values, formatMessage, keyCompositionMetadata, logWithContext, newRegisterEventData, normalizeServiceCode, onDuplicationStrategyMetadata, parseState };
|
|
4146
|
+
export { ActionTypeEnum, Addition, Address, type AllowedCfopsCreditConfig, Alphanumeric, type AuditTaxCollectionDetails, type AuditTaxCollectionInfo, type AuthTokenExpiredParams, type AuthUnauthorizedParams, Block, BuilderAddition, BuilderAddress, BuilderDocument, BuilderImportDeclaration, BuilderItem, BuilderPerson, BuilderTax, CNPJ, CPF, CST, CalculationBasisNatureSetting, type Cloneable, CloseBlock, CloseFile, CodIncTrib, type Cod_ent_ref, CodeStatusEnum, ConfigTypeEnum, ConsoleOutput, CounterBlock, CounterRegister, CountryCodeEnum, CprbOption, CteTypeEnum, DEFAULT_LOCALE, type DatabaseConnectionFailedParams, type DatabaseQueryErrorParams, Decimal, DefaultAlphanumericLength, DefaultDecimalLength, DefaultDecimalSeparator, DescriptionStatusEnum, DifalIcmsCategoryEnum, Document, type DocumentRepository, DocumentTypeEnum, EcdSpecializedProfile, EcfSpecializedProfile, EfdContribSpecializedProfile, EfdIcmsIpiSpecializedProfile, Email, EnforceabilityOfISSEnum, Establishment, EstablishmentEvent, Event, EventEnum, FieldDataType, type FieldFormat, type FiltersDocument, FiscalQualificationType, FiscalRecordTypes, FreightContractedNatureIndicatorEnum, FreightTypeEnum, type GetAuditTaxCollectionQuery, GrossRevenueContributionHeaders, GroupVerification, type IAddition, type IAddressMongo, type IBaseHeadersDTO, type ICalculationBasisNatureSetting, type IDocumentMongo, type IEcdSpecializedProfile, type IEcfSpecializedProfile, type IEfdContribSpecializedProfile, type IEfdicmsipiAdditionalFields, type IEstablishment, type IEstablishmentEvent, type IGrossRevenueContributionHeader, type IIcmsAdjustmentVerification, type IIcmsCreditBaseConfig, type IIcmsCreditConfigLog, type IImportDeclaration, type IItemMongo, type IJudicialProcess, type INatureConfig, type INatureOfIncomeBusinessPartner, type IPersonMongo, type IProfile, type IProfileRepository, type IProfileServiceUrls, type IReinfAdditionalFields, type IRevenueNatureSettings, type IScp, type ISignatory, type ITable9, type ITaxMongo, type ITaxTypeConfig, type ITaxTypeConfigBase, type ITaxTypeConfigCreateOrUpdate, type ITaxTypeConfigLog, IcmsApurationIndicator, IcmsIpiAdjustmentVerification, type IdentificationNumber, ImportDeclaration, IntermediationTypeEnum, type InternalServerErrorParams, InternationalTransportTypeEnum, IssuerIndicatorEnum, Item, ItemTypeEnum, JudicialProcessOriginEnum, Key, type KeyComposition, type KeyFieldDefinition, LayoutDateFormat, type Locale, MaximumNumericLength, MemoryMasterDataRepository, MemoryPersist, MessageCategory, MessageCode, type MessageCodeType, Messages, ModelConverter, ModelRollback, MongoConfig, MongoRepository, MongoToDocumentBuilder, MunicipalObligation, MunicipalObligationIdEnum, MunicipalObligationNameEnum, MunicipalObligationTypeEnum, Municipality, NameCountryEnum, NatureCode, NatureConfig, Numeric, ObligationCodeEnum, OnDuplication, OnDuplicationStrategy, OpenBlock, OperationTypeEnum, OurDate, type OutputWriter, type ParameterTypes, PaymentTypeEnum, Person, ProductOriginEnum, Profile, ProfileRestRepository, ProfileTaxTypeEnum, Register, type RegisterDefinition, type RegisterEventData, type RegisterEventNotifier, type RegisterGenerator, type RegisterPersist, type RegisterSubscriber, ReinfSpecializedProfile, type ReportGenerationOptions, ReportGenerator, type Repository, RevenueNatureSettings, RevenueTypeEnum, Scp, ServiceCode, ServiceCodeEnum, type SettingErrorParams, Signatory, SimpleNationalOption, type SimpleReportGenerationOptions, SimpleReportGenerator, State, StateEnum, StateRegistrationIndicatorEnum, StatusDocumentEnum, StringArrayOutput, TagCounter, Tax, type TaxCollectionDetails, TaxCollectionType, TaxRegimeEnum, type TaxRegimes, type TaxRegisterGenerationOptions, TaxRegisterGenerator, TaxReport, TaxType, TaxTypeEnum, TaxationType, Uf, type ValidationInvalidInputParams, type ValidationMissingFieldParams, ValueProviderType, buildMongoFilter, calculate_bases_values, formatMessage, keyCompositionMetadata, logWithContext, newRegisterEventData, normalizeServiceCode, onDuplicationStrategyMetadata, parseState };
|