@seidor-cloud-produtos/tax-core 1.0.9 → 1.0.10
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 +276 -68
- package/dist/index.d.ts +276 -68
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { MongoClient } from 'mongodb';
|
|
1
2
|
import { ClientConfig, Pool } from 'pg';
|
|
2
3
|
|
|
3
4
|
interface Cloneable {
|
|
@@ -2051,6 +2052,280 @@ declare function calculate_bases_values(percentage: number, value: number): numb
|
|
|
2051
2052
|
|
|
2052
2053
|
declare function normalizeServiceCode(service_code: string): string | undefined;
|
|
2053
2054
|
|
|
2055
|
+
interface IDocumentMongo {
|
|
2056
|
+
_id: any;
|
|
2057
|
+
active: boolean;
|
|
2058
|
+
inactivated_at?: Date;
|
|
2059
|
+
branch_id: string;
|
|
2060
|
+
tenant_id: string;
|
|
2061
|
+
type: DocumentTypeEnum;
|
|
2062
|
+
access_key: string;
|
|
2063
|
+
replaced_access_key: string;
|
|
2064
|
+
verification_code: string;
|
|
2065
|
+
subscriber_type_code: string;
|
|
2066
|
+
issuance_date: Date;
|
|
2067
|
+
release_date: Date;
|
|
2068
|
+
due_date: Date;
|
|
2069
|
+
payment_date: Date;
|
|
2070
|
+
erp_id: string;
|
|
2071
|
+
operation_type: OperationTypeEnum;
|
|
2072
|
+
payment_type: PaymentTypeEnum;
|
|
2073
|
+
revenue_type: RevenueTypeEnum;
|
|
2074
|
+
freight_type: FreightTypeEnum;
|
|
2075
|
+
additional_information: string;
|
|
2076
|
+
model: string;
|
|
2077
|
+
number: string;
|
|
2078
|
+
accounting_additional_information: string;
|
|
2079
|
+
series: string;
|
|
2080
|
+
subseries: string;
|
|
2081
|
+
cte_type: CteTypeEnum;
|
|
2082
|
+
total_amount: number;
|
|
2083
|
+
payment_value: number;
|
|
2084
|
+
issuer_indicator: IssuerIndicatorEnum;
|
|
2085
|
+
rps_number: string;
|
|
2086
|
+
issuer: IPersonMongo;
|
|
2087
|
+
recipient: IPersonMongo;
|
|
2088
|
+
items: IItemMongo[];
|
|
2089
|
+
fiscal_situation: CodeStatusEnum;
|
|
2090
|
+
erp_integration_status: StatusDocumentEnum;
|
|
2091
|
+
manual_entry: boolean;
|
|
2092
|
+
created_at?: Date;
|
|
2093
|
+
updated_at?: Date;
|
|
2094
|
+
created_by_name: string;
|
|
2095
|
+
updated_by_name: string;
|
|
2096
|
+
created_by_email: string;
|
|
2097
|
+
updated_by_email: string;
|
|
2098
|
+
}
|
|
2099
|
+
interface IPersonMongo {
|
|
2100
|
+
name: string;
|
|
2101
|
+
cnpj: string;
|
|
2102
|
+
cpf: string;
|
|
2103
|
+
cnae: string;
|
|
2104
|
+
state_registration_number: string;
|
|
2105
|
+
municipal_registration_number: string;
|
|
2106
|
+
suframa_registration_number: string;
|
|
2107
|
+
state_registration_indicator: StateRegistrationIndicatorEnum;
|
|
2108
|
+
taxation_regime: TaxRegimeEnum;
|
|
2109
|
+
address: IAddressMongo;
|
|
2110
|
+
}
|
|
2111
|
+
interface IAddressMongo {
|
|
2112
|
+
neighborhood: string;
|
|
2113
|
+
municipality_code: string;
|
|
2114
|
+
country_code: CountryCodeEnum;
|
|
2115
|
+
postal_code: string;
|
|
2116
|
+
supplement: string;
|
|
2117
|
+
state: string;
|
|
2118
|
+
street: string;
|
|
2119
|
+
number: string;
|
|
2120
|
+
telephone: string;
|
|
2121
|
+
}
|
|
2122
|
+
interface IItemMongo {
|
|
2123
|
+
_id: string;
|
|
2124
|
+
cfop: string;
|
|
2125
|
+
previous_code: string;
|
|
2126
|
+
cest_code: string;
|
|
2127
|
+
code: string;
|
|
2128
|
+
classification_code: string;
|
|
2129
|
+
service_activity_code: string;
|
|
2130
|
+
account_code: string;
|
|
2131
|
+
barcode: string;
|
|
2132
|
+
description: string;
|
|
2133
|
+
municipal_tax_code: string;
|
|
2134
|
+
cost_center_code: string;
|
|
2135
|
+
genre_code: string;
|
|
2136
|
+
destination_municipality_code: string;
|
|
2137
|
+
origin_municipality_code: string;
|
|
2138
|
+
iss_incidence_municipality_code: string;
|
|
2139
|
+
service_municipality_code: string;
|
|
2140
|
+
service_code: string;
|
|
2141
|
+
ex_code: string;
|
|
2142
|
+
ncm_code: string;
|
|
2143
|
+
operation_nature_description: string;
|
|
2144
|
+
service_list: ServiceCodeEnum;
|
|
2145
|
+
type: ItemTypeEnum;
|
|
2146
|
+
number: number;
|
|
2147
|
+
stock_unit: string;
|
|
2148
|
+
stock_quantity: number;
|
|
2149
|
+
total_amount: number;
|
|
2150
|
+
commercial_unit: string;
|
|
2151
|
+
commercial_quantity: number;
|
|
2152
|
+
accessory_expenses_value: number;
|
|
2153
|
+
non_taxable_deduction_value: number;
|
|
2154
|
+
discount_value: number;
|
|
2155
|
+
freight_value: number;
|
|
2156
|
+
insurance_value: number;
|
|
2157
|
+
third_party_value: number;
|
|
2158
|
+
taxes: ITaxMongo[];
|
|
2159
|
+
import_declaration: IImportDeclaration;
|
|
2160
|
+
conversion_factor: IConversionFactor;
|
|
2161
|
+
imported: boolean;
|
|
2162
|
+
accounting_value: number;
|
|
2163
|
+
}
|
|
2164
|
+
interface ITaxMongo {
|
|
2165
|
+
_id: string;
|
|
2166
|
+
category: TaxTypeEnum;
|
|
2167
|
+
rate: number;
|
|
2168
|
+
rate_inter: number;
|
|
2169
|
+
rate_intra: number;
|
|
2170
|
+
classification_code: string;
|
|
2171
|
+
product_origin: ProductOriginEnum;
|
|
2172
|
+
other_base_value: number;
|
|
2173
|
+
exempt_non_taxed_base: number;
|
|
2174
|
+
value: number;
|
|
2175
|
+
non_taxable_value: number;
|
|
2176
|
+
base_amount: number;
|
|
2177
|
+
fcp_st_value: number;
|
|
2178
|
+
fcp_value: number;
|
|
2179
|
+
fcp_base: number;
|
|
2180
|
+
fcp_rate: number;
|
|
2181
|
+
base_deduction_value: number;
|
|
2182
|
+
withholding_tax: boolean;
|
|
2183
|
+
customs_expense_value: number;
|
|
2184
|
+
value_iof: number;
|
|
2185
|
+
triggering_fact: string;
|
|
2186
|
+
revenue_code: string;
|
|
2187
|
+
enforceability_of_iss: EnforceabilityOfISSEnum;
|
|
2188
|
+
increased_rate: number;
|
|
2189
|
+
base_fcp_destination: number;
|
|
2190
|
+
rate_fcp_destination: number;
|
|
2191
|
+
fcp_value_destination: number;
|
|
2192
|
+
interstate_icms_tax_rate: number;
|
|
2193
|
+
icms_value_origin_uf: number;
|
|
2194
|
+
difal_icms_category: DifalIcmsCategoryEnum;
|
|
2195
|
+
}
|
|
2196
|
+
interface IImportDeclaration {
|
|
2197
|
+
number: string;
|
|
2198
|
+
code: string;
|
|
2199
|
+
pis_amount: number;
|
|
2200
|
+
cofins_amount: number;
|
|
2201
|
+
drawback_concession_number: string;
|
|
2202
|
+
date_registration: Date;
|
|
2203
|
+
customs_clearance_location: string;
|
|
2204
|
+
customs_clearance_state: string;
|
|
2205
|
+
customs_clearance_date: Date;
|
|
2206
|
+
international_transport_type: InternationalTransportTypeEnum;
|
|
2207
|
+
exporter_code: string;
|
|
2208
|
+
afrmm_amount: number;
|
|
2209
|
+
intermediation_type: IntermediationTypeEnum;
|
|
2210
|
+
acquirer_cnpj: string;
|
|
2211
|
+
acquirer_state: string;
|
|
2212
|
+
additions: IAddition[];
|
|
2213
|
+
}
|
|
2214
|
+
interface IAddition {
|
|
2215
|
+
number: string;
|
|
2216
|
+
addition_sequence_number: string;
|
|
2217
|
+
manufacturer_code: string;
|
|
2218
|
+
import_discount_amount: number;
|
|
2219
|
+
drawback_concession_number: string;
|
|
2220
|
+
}
|
|
2221
|
+
interface IConversionFactor {
|
|
2222
|
+
unit: string;
|
|
2223
|
+
multiply: number;
|
|
2224
|
+
barcode: string;
|
|
2225
|
+
}
|
|
2226
|
+
|
|
2227
|
+
declare class MongoToDocumentBuilder {
|
|
2228
|
+
private instance;
|
|
2229
|
+
private buildPerson;
|
|
2230
|
+
private buildAddress;
|
|
2231
|
+
private buildItem;
|
|
2232
|
+
private buildTax;
|
|
2233
|
+
private buildAddition;
|
|
2234
|
+
private buildImportDeclaration;
|
|
2235
|
+
private buildConversionFactor;
|
|
2236
|
+
private items;
|
|
2237
|
+
constructor();
|
|
2238
|
+
newInstance(): MongoToDocumentBuilder;
|
|
2239
|
+
build(document: IDocumentMongo): Document;
|
|
2240
|
+
withPerson(person: IPersonMongo): Person;
|
|
2241
|
+
withAddress(address: IAddressMongo): Address;
|
|
2242
|
+
withItems(item: IItemMongo): void;
|
|
2243
|
+
withTax(tax: ITaxMongo): Tax;
|
|
2244
|
+
withImportDeclaration(item: IItemMongo): ImportDeclaration;
|
|
2245
|
+
withAddition(addition: IAddition): Addition;
|
|
2246
|
+
withConversionFactor(item: IItemMongo): ConversionFactor;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
declare function buildMongoFilter(filters: FiltersDocument): any;
|
|
2250
|
+
|
|
2251
|
+
declare class MongoConfig {
|
|
2252
|
+
host: string;
|
|
2253
|
+
port: number;
|
|
2254
|
+
database: string;
|
|
2255
|
+
username?: string;
|
|
2256
|
+
password?: string;
|
|
2257
|
+
isSrv: boolean;
|
|
2258
|
+
maxPoolSize: number;
|
|
2259
|
+
minPoolSize: number;
|
|
2260
|
+
connectTimeoutMS: number;
|
|
2261
|
+
socketTimeoutMS: number;
|
|
2262
|
+
/**
|
|
2263
|
+
* MongoDB configuration class.
|
|
2264
|
+
* @param host - The host of the MongoDB server.
|
|
2265
|
+
* @param port - The port of the MongoDB server.
|
|
2266
|
+
* @param database - The name of the database to connect to.
|
|
2267
|
+
* @param username - Optional username for authentication.
|
|
2268
|
+
* @param password - Optional password for authentication.
|
|
2269
|
+
* @param isSrv - Whether to use SRV connection string format (default: false).
|
|
2270
|
+
* @param maxPoolSize - Maximum number of connections in the pool (default: 20).
|
|
2271
|
+
* @param minPoolSize - Minimum number of connections in the pool (default: 5).
|
|
2272
|
+
* @param connectTimeoutMS - Connection timeout in milliseconds (default: 10000).
|
|
2273
|
+
* @param socketTimeoutMS - Socket timeout in milliseconds (default: 45000).
|
|
2274
|
+
*/
|
|
2275
|
+
constructor(host: string, port: number, database: string, username?: string, password?: string, isSrv?: boolean, maxPoolSize?: number, minPoolSize?: number, connectTimeoutMS?: number, socketTimeoutMS?: number);
|
|
2276
|
+
getConnectionString(): string;
|
|
2277
|
+
getPoolOptions(): {
|
|
2278
|
+
maxPoolSize: number;
|
|
2279
|
+
minPoolSize: number;
|
|
2280
|
+
connectTimeoutMS: number;
|
|
2281
|
+
socketTimeoutMS: number;
|
|
2282
|
+
};
|
|
2283
|
+
}
|
|
2284
|
+
|
|
2285
|
+
declare class PostgresConfig {
|
|
2286
|
+
config: {
|
|
2287
|
+
user: string;
|
|
2288
|
+
host: string;
|
|
2289
|
+
database: string;
|
|
2290
|
+
password: string;
|
|
2291
|
+
port: number;
|
|
2292
|
+
ssl?: {
|
|
2293
|
+
rejectUnauthorized: boolean;
|
|
2294
|
+
};
|
|
2295
|
+
};
|
|
2296
|
+
/**
|
|
2297
|
+
* PostgresDB configuration class.
|
|
2298
|
+
* @param user - The username for authentication.
|
|
2299
|
+
* @param host - The host of the PostgresDB server.
|
|
2300
|
+
* @param database - The name of the database to connect to.
|
|
2301
|
+
* @param password - The password for authentication.
|
|
2302
|
+
* @param port - The port of the PostgresDB server.
|
|
2303
|
+
* @param ssl - The ssl connection of the PostgresDB server.
|
|
2304
|
+
*/
|
|
2305
|
+
constructor(config: {
|
|
2306
|
+
user: string;
|
|
2307
|
+
host: string;
|
|
2308
|
+
database: string;
|
|
2309
|
+
password: string;
|
|
2310
|
+
port: number;
|
|
2311
|
+
ssl?: {
|
|
2312
|
+
rejectUnauthorized: boolean;
|
|
2313
|
+
};
|
|
2314
|
+
});
|
|
2315
|
+
getConnection(): ClientConfig;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
declare class MongoRepository implements DocumentRepository {
|
|
2319
|
+
private readonly _client;
|
|
2320
|
+
private _isConnected;
|
|
2321
|
+
constructor(mongoConfig: MongoConfig);
|
|
2322
|
+
private isConnected;
|
|
2323
|
+
connect(): Promise<MongoClient>;
|
|
2324
|
+
close(): Promise<void>;
|
|
2325
|
+
getAll(filters: FiltersDocument): AsyncIterableIterator<Document>;
|
|
2326
|
+
findOne(id: string, tenant_id: string): Promise<Document>;
|
|
2327
|
+
}
|
|
2328
|
+
|
|
2054
2329
|
declare class ModelRollback {
|
|
2055
2330
|
execute(document: any): any;
|
|
2056
2331
|
}
|
|
@@ -3742,73 +4017,6 @@ interface IEcfSpecializedProfile {
|
|
|
3742
4017
|
tenantid: string;
|
|
3743
4018
|
}
|
|
3744
4019
|
|
|
3745
|
-
declare class MongoConfig {
|
|
3746
|
-
host: string;
|
|
3747
|
-
port: number;
|
|
3748
|
-
database: string;
|
|
3749
|
-
username?: string;
|
|
3750
|
-
password?: string;
|
|
3751
|
-
isSrv: boolean;
|
|
3752
|
-
maxPoolSize: number;
|
|
3753
|
-
minPoolSize: number;
|
|
3754
|
-
connectTimeoutMS: number;
|
|
3755
|
-
socketTimeoutMS: number;
|
|
3756
|
-
/**
|
|
3757
|
-
* MongoDB configuration class.
|
|
3758
|
-
* @param host - The host of the MongoDB server.
|
|
3759
|
-
* @param port - The port of the MongoDB server.
|
|
3760
|
-
* @param database - The name of the database to connect to.
|
|
3761
|
-
* @param username - Optional username for authentication.
|
|
3762
|
-
* @param password - Optional password for authentication.
|
|
3763
|
-
* @param isSrv - Whether to use SRV connection string format (default: false).
|
|
3764
|
-
* @param maxPoolSize - Maximum number of connections in the pool (default: 20).
|
|
3765
|
-
* @param minPoolSize - Minimum number of connections in the pool (default: 5).
|
|
3766
|
-
* @param connectTimeoutMS - Connection timeout in milliseconds (default: 10000).
|
|
3767
|
-
* @param socketTimeoutMS - Socket timeout in milliseconds (default: 45000).
|
|
3768
|
-
*/
|
|
3769
|
-
constructor(host: string, port: number, database: string, username?: string, password?: string, isSrv?: boolean, maxPoolSize?: number, minPoolSize?: number, connectTimeoutMS?: number, socketTimeoutMS?: number);
|
|
3770
|
-
getConnectionString(): string;
|
|
3771
|
-
getPoolOptions(): {
|
|
3772
|
-
maxPoolSize: number;
|
|
3773
|
-
minPoolSize: number;
|
|
3774
|
-
connectTimeoutMS: number;
|
|
3775
|
-
socketTimeoutMS: number;
|
|
3776
|
-
};
|
|
3777
|
-
}
|
|
3778
|
-
|
|
3779
|
-
declare class PostgresConfig {
|
|
3780
|
-
config: {
|
|
3781
|
-
user: string;
|
|
3782
|
-
host: string;
|
|
3783
|
-
database: string;
|
|
3784
|
-
password: string;
|
|
3785
|
-
port: number;
|
|
3786
|
-
ssl?: {
|
|
3787
|
-
rejectUnauthorized: boolean;
|
|
3788
|
-
};
|
|
3789
|
-
};
|
|
3790
|
-
/**
|
|
3791
|
-
* PostgresDB configuration class.
|
|
3792
|
-
* @param user - The username for authentication.
|
|
3793
|
-
* @param host - The host of the PostgresDB server.
|
|
3794
|
-
* @param database - The name of the database to connect to.
|
|
3795
|
-
* @param password - The password for authentication.
|
|
3796
|
-
* @param port - The port of the PostgresDB server.
|
|
3797
|
-
* @param ssl - The ssl connection of the PostgresDB server.
|
|
3798
|
-
*/
|
|
3799
|
-
constructor(config: {
|
|
3800
|
-
user: string;
|
|
3801
|
-
host: string;
|
|
3802
|
-
database: string;
|
|
3803
|
-
password: string;
|
|
3804
|
-
port: number;
|
|
3805
|
-
ssl?: {
|
|
3806
|
-
rejectUnauthorized: boolean;
|
|
3807
|
-
};
|
|
3808
|
-
});
|
|
3809
|
-
getConnection(): ClientConfig;
|
|
3810
|
-
}
|
|
3811
|
-
|
|
3812
4020
|
declare class PostgresRepository implements IStateCollectionSettingsRepository {
|
|
3813
4021
|
private readonly _client;
|
|
3814
4022
|
private _isConnected;
|
|
@@ -4245,4 +4453,4 @@ declare function logWithContext<T extends MessageCodeType>(messageCode: T, param
|
|
|
4245
4453
|
actionSuggestion: string;
|
|
4246
4454
|
};
|
|
4247
4455
|
|
|
4248
|
-
export { ActionTypeEnum, Addition, Address, type AllowedCfopsCreditConfig, Alphanumeric, type AuditTaxCollectionDetails, type AuditTaxCollectionInfo, type AuthTokenExpiredParams, type AuthUnauthorizedParams, Block, BuilderAddition, BuilderAddress, BuilderConversionFactor, BuilderDocument, BuilderImportDeclaration, BuilderItem, BuilderPerson, BuilderTax, CNPJ, CPF, CST, CalculationBasisNatureSetting, type Cloneable, CloseBlock, CloseFile, CodIncTrib, type Cod_ent_ref, CodeStatusEnum, ConfigTypeEnum, ConsoleOutput, ConversionFactor, CounterBlock, CounterRegister, CountryCodeEnum, CprbOption, CteTypeEnum, DEFAULT_LOCALE, type DatabaseConnectionFailedParams, type DatabaseQueryErrorParams, Decimal, DefaultAlphanumericLength, DefaultDecimalLength, DefaultDecimalSeparator, DescriptionStatusEnum, DifalIcmsCategoryEnum, Document, type DocumentRepository, DocumentTypeEnum, DonationIndicatorEnum, EcdSpecializedProfile, EcfSpecializedProfile, EfdContribSpecializedProfile, EfdIcmsIpiSpecializedProfile, Email, EnforceabilityOfISSEnum, Establishment, EstablishmentEvent, Event, EventEnum, FieldDataType, type FieldFormat, type FiltersDocument, FiscalQualificationType, FreightContractedNatureIndicatorEnum, FreightTypeEnum, type GetAuditTaxCollectionQuery, GrossRevenueContributionHeaders, type IBaseHeadersDTO, type ICalculationBasisNatureSetting, type IEcdSpecializedProfile, type IEcfSpecializedProfile, type IEfdContribSpecializedProfile, type IEfdicmsipiAdditionalFields, type IEstablishment, type IEstablishmentEvent, type IGrossRevenueContributionHeader, type IIcmsAdjustmentExtraInfo, type IIcmsAdjustmentSetting, type IIcmsCreditBaseConfig, type IIcmsCreditConfigLog, type IJudicialProcess, type INatureConfig, type INatureOfIncomeBusinessPartner, type IProfile, type IProfileRepository, type IProfileServiceUrls, type IReinfAdditionalFields, type IRevenueNatureSettings, type IScp, type ISignatory, type IStateCollectionSettingsRepository, type ITable9, type ITaxTypeConfig, type ITaxTypeConfigBase, type ITaxTypeConfigCreateOrUpdate, type ITaxTypeConfigLog, IcmsAdjustmentGroupEnum, IcmsAdjustmentRegistryEnum, IcmsAdjustmentSetting, IcmsAdjustmentTaxTypeEnum, IcmsAdjustmentTypeEnum, IcmsCalculationIndicatorEnum, 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, MunicipalObligation, MunicipalObligationIdEnum, MunicipalObligationNameEnum, MunicipalObligationTypeEnum, Municipality, NameCountryEnum, NatureCode, NatureConfig, Numeric, ObligationCodeEnum, OnDuplication, OnDuplicationStrategy, OpenBlock, OperationTypeEnum, OurDate, type OutputWriter, type ParameterTypes, PaymentTypeEnum, Person, PostgresConfig, PostgresRepository, ProductOriginEnum, Profile, ProfileDbRepository, 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, StateCollectionSettings, StateCollectionSettingsConfigTypeEnum, StateCollectionSettingsTaxTypeEnum, StateEnum, StateRegistrationIndicatorEnum, StatusDocumentEnum, StringArrayOutput, TagCounter, Tax, type TaxCollectionDetails, TaxCollectionType, TaxCollectionTypeEnum, TaxRegimeEnum, type TaxRegimes, type TaxRegisterGenerationOptions, TaxRegisterGenerator, TaxReport, TaxTypeEnum, TaxationType, Uf, type ValidationInvalidInputParams, type ValidationMissingFieldParams, ValueProviderType, ZfmPresumedCreditTypeEnum, calculate_bases_values, formatMessage, keyCompositionMetadata, logWithContext, newRegisterEventData, normalizeServiceCode, onDuplicationStrategyMetadata, parseState };
|
|
4456
|
+
export { ActionTypeEnum, Addition, Address, type AllowedCfopsCreditConfig, Alphanumeric, type AuditTaxCollectionDetails, type AuditTaxCollectionInfo, type AuthTokenExpiredParams, type AuthUnauthorizedParams, Block, BuilderAddition, BuilderAddress, BuilderConversionFactor, BuilderDocument, BuilderImportDeclaration, BuilderItem, BuilderPerson, BuilderTax, CNPJ, CPF, CST, CalculationBasisNatureSetting, type Cloneable, CloseBlock, CloseFile, CodIncTrib, type Cod_ent_ref, CodeStatusEnum, ConfigTypeEnum, ConsoleOutput, ConversionFactor, CounterBlock, CounterRegister, CountryCodeEnum, CprbOption, CteTypeEnum, DEFAULT_LOCALE, type DatabaseConnectionFailedParams, type DatabaseQueryErrorParams, Decimal, DefaultAlphanumericLength, DefaultDecimalLength, DefaultDecimalSeparator, DescriptionStatusEnum, DifalIcmsCategoryEnum, Document, type DocumentRepository, DocumentTypeEnum, DonationIndicatorEnum, EcdSpecializedProfile, EcfSpecializedProfile, EfdContribSpecializedProfile, EfdIcmsIpiSpecializedProfile, Email, EnforceabilityOfISSEnum, Establishment, EstablishmentEvent, Event, EventEnum, FieldDataType, type FieldFormat, type FiltersDocument, FiscalQualificationType, FreightContractedNatureIndicatorEnum, FreightTypeEnum, type GetAuditTaxCollectionQuery, GrossRevenueContributionHeaders, type IAddition, type IAddressMongo, type IBaseHeadersDTO, type ICalculationBasisNatureSetting, type IConversionFactor, type IDocumentMongo, type IEcdSpecializedProfile, type IEcfSpecializedProfile, type IEfdContribSpecializedProfile, type IEfdicmsipiAdditionalFields, type IEstablishment, type IEstablishmentEvent, type IGrossRevenueContributionHeader, type IIcmsAdjustmentExtraInfo, type IIcmsAdjustmentSetting, 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 IStateCollectionSettingsRepository, type ITable9, type ITaxMongo, type ITaxTypeConfig, type ITaxTypeConfigBase, type ITaxTypeConfigCreateOrUpdate, type ITaxTypeConfigLog, IcmsAdjustmentGroupEnum, IcmsAdjustmentRegistryEnum, IcmsAdjustmentSetting, IcmsAdjustmentTaxTypeEnum, IcmsAdjustmentTypeEnum, IcmsCalculationIndicatorEnum, 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, PostgresConfig, PostgresRepository, ProductOriginEnum, Profile, ProfileDbRepository, 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, StateCollectionSettings, StateCollectionSettingsConfigTypeEnum, StateCollectionSettingsTaxTypeEnum, StateEnum, StateRegistrationIndicatorEnum, StatusDocumentEnum, StringArrayOutput, TagCounter, Tax, type TaxCollectionDetails, TaxCollectionType, TaxCollectionTypeEnum, TaxRegimeEnum, type TaxRegimes, type TaxRegisterGenerationOptions, TaxRegisterGenerator, TaxReport, TaxTypeEnum, TaxationType, Uf, type ValidationInvalidInputParams, type ValidationMissingFieldParams, ValueProviderType, ZfmPresumedCreditTypeEnum, buildMongoFilter, calculate_bases_values, formatMessage, keyCompositionMetadata, logWithContext, newRegisterEventData, normalizeServiceCode, onDuplicationStrategyMetadata, parseState };
|