@seidor-cloud-produtos/tax-core 1.0.0 → 1.0.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/index.d.mts +16 -4
- package/dist/index.d.ts +16 -4
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +7 -5
package/dist/index.d.mts
CHANGED
|
@@ -2493,7 +2493,10 @@ interface ICalculationBasisNatureSetting {
|
|
|
2493
2493
|
_id: string;
|
|
2494
2494
|
name: string;
|
|
2495
2495
|
tenantid: string;
|
|
2496
|
-
|
|
2496
|
+
profiles: {
|
|
2497
|
+
id: string;
|
|
2498
|
+
alias: string;
|
|
2499
|
+
}[];
|
|
2497
2500
|
tax_settings: TaxRegimes;
|
|
2498
2501
|
}
|
|
2499
2502
|
|
|
@@ -2562,7 +2565,10 @@ declare class RevenueNatureSettings {
|
|
|
2562
2565
|
declare class CalculationBasisNatureSetting {
|
|
2563
2566
|
protected _id: string;
|
|
2564
2567
|
protected _tenantid: string;
|
|
2565
|
-
protected
|
|
2568
|
+
protected _profiles: {
|
|
2569
|
+
id: string;
|
|
2570
|
+
alias: string;
|
|
2571
|
+
}[];
|
|
2566
2572
|
protected _nature_code: NatureCode;
|
|
2567
2573
|
protected _tax_settings: TaxRegimes;
|
|
2568
2574
|
protected _logs?: {
|
|
@@ -2573,7 +2579,10 @@ declare class CalculationBasisNatureSetting {
|
|
|
2573
2579
|
}[];
|
|
2574
2580
|
set id(id: string);
|
|
2575
2581
|
set tenantid(tenantid: string);
|
|
2576
|
-
set
|
|
2582
|
+
set profiles(profiles: {
|
|
2583
|
+
id: string;
|
|
2584
|
+
alias: string;
|
|
2585
|
+
}[]);
|
|
2577
2586
|
set nature_code(nature_code: NatureCode);
|
|
2578
2587
|
set tax_settings(tax_settings: TaxRegimes);
|
|
2579
2588
|
set logs(logs: {
|
|
@@ -2585,7 +2594,10 @@ declare class CalculationBasisNatureSetting {
|
|
|
2585
2594
|
get nature_code(): NatureCode;
|
|
2586
2595
|
get id(): string;
|
|
2587
2596
|
get tenantid(): string;
|
|
2588
|
-
get
|
|
2597
|
+
get profiles(): {
|
|
2598
|
+
id: string;
|
|
2599
|
+
alias: string;
|
|
2600
|
+
}[];
|
|
2589
2601
|
get tax_settings(): TaxRegimes;
|
|
2590
2602
|
get logs(): {
|
|
2591
2603
|
type: 'create' | 'enable' | 'disable' | 'update';
|
package/dist/index.d.ts
CHANGED
|
@@ -2493,7 +2493,10 @@ interface ICalculationBasisNatureSetting {
|
|
|
2493
2493
|
_id: string;
|
|
2494
2494
|
name: string;
|
|
2495
2495
|
tenantid: string;
|
|
2496
|
-
|
|
2496
|
+
profiles: {
|
|
2497
|
+
id: string;
|
|
2498
|
+
alias: string;
|
|
2499
|
+
}[];
|
|
2497
2500
|
tax_settings: TaxRegimes;
|
|
2498
2501
|
}
|
|
2499
2502
|
|
|
@@ -2562,7 +2565,10 @@ declare class RevenueNatureSettings {
|
|
|
2562
2565
|
declare class CalculationBasisNatureSetting {
|
|
2563
2566
|
protected _id: string;
|
|
2564
2567
|
protected _tenantid: string;
|
|
2565
|
-
protected
|
|
2568
|
+
protected _profiles: {
|
|
2569
|
+
id: string;
|
|
2570
|
+
alias: string;
|
|
2571
|
+
}[];
|
|
2566
2572
|
protected _nature_code: NatureCode;
|
|
2567
2573
|
protected _tax_settings: TaxRegimes;
|
|
2568
2574
|
protected _logs?: {
|
|
@@ -2573,7 +2579,10 @@ declare class CalculationBasisNatureSetting {
|
|
|
2573
2579
|
}[];
|
|
2574
2580
|
set id(id: string);
|
|
2575
2581
|
set tenantid(tenantid: string);
|
|
2576
|
-
set
|
|
2582
|
+
set profiles(profiles: {
|
|
2583
|
+
id: string;
|
|
2584
|
+
alias: string;
|
|
2585
|
+
}[]);
|
|
2577
2586
|
set nature_code(nature_code: NatureCode);
|
|
2578
2587
|
set tax_settings(tax_settings: TaxRegimes);
|
|
2579
2588
|
set logs(logs: {
|
|
@@ -2585,7 +2594,10 @@ declare class CalculationBasisNatureSetting {
|
|
|
2585
2594
|
get nature_code(): NatureCode;
|
|
2586
2595
|
get id(): string;
|
|
2587
2596
|
get tenantid(): string;
|
|
2588
|
-
get
|
|
2597
|
+
get profiles(): {
|
|
2598
|
+
id: string;
|
|
2599
|
+
alias: string;
|
|
2600
|
+
}[];
|
|
2589
2601
|
get tax_settings(): TaxRegimes;
|
|
2590
2602
|
get logs(): {
|
|
2591
2603
|
type: 'create' | 'enable' | 'disable' | 'update';
|