@paro.io/expert-shared-components 1.14.60 → 1.14.61
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/lib/index.d.ts +1 -0
- package/lib/index.js +3 -1
- package/lib/tax-axis/components/clientReport/TaxAxisClientReport.d.ts +4 -1
- package/lib/tax-axis/components/dashboard/TaxAxisDashboard.d.ts +2 -0
- package/lib/tax-axis/components/documents/TaxAxisDocuments.d.ts +15 -0
- package/lib/tax-axis/components/preparerWorkpaper/TaxAxisPreparerWorkpaper.d.ts +6 -1
- package/lib/tax-axis/components/processing/TaxAxisProcessing.d.ts +1 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -29,3 +29,4 @@ export { TaxAxisPreparerWorkpaper } from './tax-axis';
|
|
|
29
29
|
export { TaxAxisExtractionReview } from './tax-axis';
|
|
30
30
|
export { TaxAxisProspectReport } from './tax-axis';
|
|
31
31
|
export { TaxAxisPresentationMode } from './tax-axis';
|
|
32
|
+
export { TaxAxisShell } from './components/TaxAxis';
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TaxAxisPresentationMode = exports.TaxAxisProspectReport = exports.TaxAxisExtractionReview = exports.TaxAxisPreparerWorkpaper = exports.TaxAxisClientReport = exports.TaxAxisDashboard = exports.TaxAxisProcessing = exports.TaxAxisDocuments = exports.TaxAxisIntake = exports.TaxAxisCard = exports.TaxAxisButton = exports.TaxAxisBadge = exports.SectionHeader = exports.ProjectIntelligence = exports.Escalations = exports.fileDownloader = exports.DiscussionSection = exports.fileUploader = exports.InvoiceCard = exports.ActiveProjectCard = exports.sharedUtils = exports.ServiceLinesTemplate = exports.HeaderNavBar = exports.DocumentCenter = exports.ProfileCompletedPercentage = exports.ExpertProfileHeader = exports.OrganizationChart = exports.FirmEmployeeSection = exports.ClientReferenceSection = exports.Reviews = exports.ReviewsTab = void 0;
|
|
3
|
+
exports.TaxAxisShell = exports.TaxAxisPresentationMode = exports.TaxAxisProspectReport = exports.TaxAxisExtractionReview = exports.TaxAxisPreparerWorkpaper = exports.TaxAxisClientReport = exports.TaxAxisDashboard = exports.TaxAxisProcessing = exports.TaxAxisDocuments = exports.TaxAxisIntake = exports.TaxAxisCard = exports.TaxAxisButton = exports.TaxAxisBadge = exports.SectionHeader = exports.ProjectIntelligence = exports.Escalations = exports.fileDownloader = exports.DiscussionSection = exports.fileUploader = exports.InvoiceCard = exports.ActiveProjectCard = exports.sharedUtils = exports.ServiceLinesTemplate = exports.HeaderNavBar = exports.DocumentCenter = exports.ProfileCompletedPercentage = exports.ExpertProfileHeader = exports.OrganizationChart = exports.FirmEmployeeSection = exports.ClientReferenceSection = exports.Reviews = exports.ReviewsTab = void 0;
|
|
4
4
|
var ReviewsTab_1 = require("./components/ReviewsTab");
|
|
5
5
|
Object.defineProperty(exports, "ReviewsTab", { enumerable: true, get: function () { return ReviewsTab_1.ReviewsTab; } });
|
|
6
6
|
var Reviews_1 = require("./components/Reviews");
|
|
@@ -63,3 +63,5 @@ var tax_axis_12 = require("./tax-axis");
|
|
|
63
63
|
Object.defineProperty(exports, "TaxAxisProspectReport", { enumerable: true, get: function () { return tax_axis_12.TaxAxisProspectReport; } });
|
|
64
64
|
var tax_axis_13 = require("./tax-axis");
|
|
65
65
|
Object.defineProperty(exports, "TaxAxisPresentationMode", { enumerable: true, get: function () { return tax_axis_13.TaxAxisPresentationMode; } });
|
|
66
|
+
var TaxAxis_1 = require("./components/TaxAxis");
|
|
67
|
+
Object.defineProperty(exports, "TaxAxisShell", { enumerable: true, get: function () { return TaxAxis_1.TaxAxisShell; } });
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import type { ClientProfile } from "../../lib/types";
|
|
2
|
+
import type { ClientProfile, Strategy, ComputedMap } from "../../lib/types";
|
|
3
3
|
import type { TaxAxisScreenProps } from "../../lib/types";
|
|
4
4
|
export interface TaxAxisClientReportProps extends TaxAxisScreenProps {
|
|
5
5
|
profile: ClientProfile;
|
|
6
6
|
onBack: () => void;
|
|
7
7
|
onNavigatePreparer?: () => void;
|
|
8
|
+
liveStrategies?: Strategy[];
|
|
9
|
+
liveComputedMap?: ComputedMap;
|
|
10
|
+
engineRawOutput?: any;
|
|
8
11
|
}
|
|
9
12
|
export declare function TaxAxisClientReport({ profile, onBack, onNavigatePreparer }: TaxAxisClientReportProps): React.JSX.Element;
|
|
@@ -8,5 +8,7 @@ export interface TaxAxisDashboardProps extends TaxAxisScreenProps {
|
|
|
8
8
|
onSend: () => void;
|
|
9
9
|
onReset: () => void;
|
|
10
10
|
onReviewData?: () => void;
|
|
11
|
+
llmResult?: any;
|
|
12
|
+
parsedDocuments?: any[];
|
|
11
13
|
}
|
|
12
14
|
export declare function TaxAxisDashboard({ profile, onDownloadClient, onDownloadPreparer, onPresent, onSend, onReset, onReviewData, userContext: _userContext, }: TaxAxisDashboardProps): React.JSX.Element;
|
|
@@ -4,5 +4,20 @@ export interface TaxAxisDocumentsProps extends TaxAxisScreenProps {
|
|
|
4
4
|
profile: ClientProfile;
|
|
5
5
|
onContinue: () => void;
|
|
6
6
|
onBack: () => void;
|
|
7
|
+
entityType?: string;
|
|
8
|
+
onUploadDocument?: (doc: {
|
|
9
|
+
id: string;
|
|
10
|
+
}, file: File) => Promise<any>;
|
|
11
|
+
onDeleteDocument?: (documentId: string) => Promise<void>;
|
|
12
|
+
fetchUploadedDocuments?: () => Promise<any[]>;
|
|
13
|
+
jobId?: string;
|
|
14
|
+
onSaveReviewedField?: (documentId: string, reviewedData: Record<string, unknown>) => Promise<void>;
|
|
15
|
+
qboConnected?: boolean;
|
|
16
|
+
qboCompanyName?: string | null;
|
|
17
|
+
qboAuthorizeUrl?: string;
|
|
18
|
+
qboClientConfirmed?: boolean;
|
|
19
|
+
onImportQboReport?: (...args: any[]) => Promise<any>;
|
|
20
|
+
onQboConnected?: (companyName: string) => void;
|
|
21
|
+
onQboDisconnected?: () => void;
|
|
7
22
|
}
|
|
8
23
|
export declare function TaxAxisDocuments({ profile, onContinue, onBack, userContext: _userContext, }: TaxAxisDocumentsProps): React.JSX.Element;
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import type { ClientProfile } from "../../lib/types";
|
|
2
|
+
import type { ClientProfile, Strategy, ComputedMap } from "../../lib/types";
|
|
3
3
|
import type { TaxAxisScreenProps } from "../../lib/types";
|
|
4
4
|
export interface TaxAxisPreparerWorkpaperProps extends TaxAxisScreenProps {
|
|
5
5
|
profile: ClientProfile;
|
|
6
6
|
onBack: () => void;
|
|
7
7
|
onToggleToClient?: () => void;
|
|
8
|
+
liveStrategies?: Strategy[];
|
|
9
|
+
liveComputedMap?: ComputedMap;
|
|
10
|
+
cpaWorkflow?: any;
|
|
11
|
+
riskDisclosures?: any;
|
|
12
|
+
businessProfile?: any;
|
|
8
13
|
}
|
|
9
14
|
export declare function TaxAxisPreparerWorkpaper({ profile, onBack, onToggleToClient }: TaxAxisPreparerWorkpaperProps): React.JSX.Element;
|
|
@@ -3,5 +3,6 @@ import { ClientProfile, TaxAxisScreenProps } from "../../lib/types";
|
|
|
3
3
|
export interface TaxAxisProcessingProps extends TaxAxisScreenProps {
|
|
4
4
|
onComplete: () => void;
|
|
5
5
|
profile?: ClientProfile;
|
|
6
|
+
reportReady?: boolean;
|
|
6
7
|
}
|
|
7
8
|
export declare function TaxAxisProcessing({ onComplete, profile, userContext: _userContext, }: TaxAxisProcessingProps): React.JSX.Element;
|