@zeniai/web-components 4.3.30 → 4.3.32
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/{SessionTimeoutPopup-HwnNPD2l.js → SessionTimeoutPopup-DR1A_p32.js} +74005 -73021
- package/dist/{SessionTimeoutPopup-BwidPHWK.cjs → SessionTimeoutPopup-DUYe7WC6.cjs} +15834 -15588
- package/dist/appLocale.d.ts +80 -0
- package/dist/cockpit.cjs.js +2 -2
- package/dist/cockpit.esm.js +595 -594
- package/dist/common/util.d.ts +8 -0
- package/dist/components/aiCfo/AiCfoPage.d.ts +48 -2
- package/dist/components/aiCfo/components/AiCfoSkillEditor.d.ts +24 -0
- package/dist/components/aiCfo/components/AiCfoSkillVersionHistory.d.ts +18 -0
- package/dist/components/aiCfo/components/AiCfoSkillsBrowser.d.ts +61 -0
- package/dist/components/aiCfo/stories/hooks/useAiCfoStreamingState.d.ts +1 -0
- package/dist/components/appDrawerContent/AiCfoMenuContent.d.ts +3 -1
- package/dist/components/appDrawerContent/AppDrawerContent.d.ts +3 -1
- package/dist/components/appDrawerContent/MenuButton.d.ts +3 -3
- package/dist/components/appDrawerContent/MenuList.d.ts +3 -1
- package/dist/components/invoicing/catalogForm/InvoicingCatalogItemFormPage.d.ts +9 -4
- package/dist/components/invoicing/settings/InvoicingQBOSettingsPage.d.ts +6 -4
- package/dist/components/taskManagement/TaskDetailPage.d.ts +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +406 -405
- package/dist/strings/strings.d.ts +80 -0
- package/package.json +5 -5
package/dist/common/util.d.ts
CHANGED
|
@@ -75,6 +75,14 @@ export declare function escapeRegExp(keyword: string): string;
|
|
|
75
75
|
export declare const formatToSentenceCase: (text: string) => string;
|
|
76
76
|
export declare const convertMinutesToDays: (minutes: number) => number;
|
|
77
77
|
export declare const convertMinutesToWeeks: (minutes: number) => number;
|
|
78
|
+
/**
|
|
79
|
+
* "Jul 29, 2026" from an ISO timestamp, or null when there is nothing to show.
|
|
80
|
+
*
|
|
81
|
+
* Returns null rather than a placeholder string so the caller decides the copy — a
|
|
82
|
+
* skill that has never been updated reads differently from one whose timestamp we
|
|
83
|
+
* failed to parse, and both are worse than an em-dash chosen here.
|
|
84
|
+
*/
|
|
85
|
+
export declare const formatIsoDateShort: (iso: string | null) => string | null;
|
|
78
86
|
export declare const formatMonthYear: (monthStr: string) => string;
|
|
79
87
|
type YearMonthPeriod = string & {
|
|
80
88
|
readonly __brand: "YearMonthPeriod";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { AICFOChatSubmissionSource } from '@zeniai/client-analytics';
|
|
3
|
-
import { AiCfoQuestionWithAnswer, AiCfoViewSelector, ID, SyntheticAiCfoAnswer, User } from '@zeniai/client-epic-state';
|
|
3
|
+
import { AiCfoQuestionWithAnswer, AiCfoViewSelector, ID, Skill, SkillDetail, SkillDraft, SkillVersion, SkillVisibility, SyntheticAiCfoAnswer, User } from '@zeniai/client-epic-state';
|
|
4
4
|
import { AiCfoChatHeaderProps } from './components/AiCfoChatHeader';
|
|
5
5
|
import { FileAttachment } from './components/AiCfoInput';
|
|
6
6
|
import { AiCfoQuestionAnswerProps } from './components/AiCfoQuestionAnswer';
|
|
@@ -122,6 +122,8 @@ export interface AiCfoPageProps {
|
|
|
122
122
|
isFileUploadEnabled?: boolean;
|
|
123
123
|
/** True while the create-cards mutation is in flight; disables the form CTA. */
|
|
124
124
|
isInteractiveFormSubmitting?: boolean;
|
|
125
|
+
/** Replaces the chat body with the Skills browser. Driven by the left-rail entry. */
|
|
126
|
+
isSkillsOpen?: boolean;
|
|
125
127
|
isUploadPromoVisible?: boolean;
|
|
126
128
|
/** Debounced (300ms) flush of the card-policy RHF watch subscription. */
|
|
127
129
|
onCardPolicyFormChange?: AiCfoQuestionAnswerProps["onCardPolicyFormChange"];
|
|
@@ -153,8 +155,44 @@ export interface AiCfoPageProps {
|
|
|
153
155
|
routedInitialQuestionSource?: AICFOChatSubmissionSource;
|
|
154
156
|
/** Suggestion chip index when the routed question came from a sample chip (e.g. `question_card` or `dashboard_card`). */
|
|
155
157
|
routedInitialQuestionSuggestionIndex?: number;
|
|
158
|
+
skillDetail?: SkillDetail;
|
|
159
|
+
skillDetailError?: boolean;
|
|
160
|
+
skillDetailLoading?: boolean;
|
|
161
|
+
skillRestoreBody?: {
|
|
162
|
+
macroId: string;
|
|
163
|
+
version: number;
|
|
164
|
+
error?: boolean;
|
|
165
|
+
instructions?: string;
|
|
166
|
+
loading?: boolean;
|
|
167
|
+
};
|
|
156
168
|
/** Chat-visible skills for the `/` menu (from getSkills). */
|
|
157
169
|
skills?: SkillMenuItem[];
|
|
170
|
+
/** Authoring. Absent leaves the Skills browser read-only. */
|
|
171
|
+
skillSaveError?: boolean;
|
|
172
|
+
skillSaving?: boolean;
|
|
173
|
+
/**
|
|
174
|
+
* Whether the signed-in user may publish a skill tenant-wide. Optional, defaulting to
|
|
175
|
+
* withheld: a host that has not wired it shows no publish control rather than a button
|
|
176
|
+
* the API refuses.
|
|
177
|
+
*/
|
|
178
|
+
skillsCanPublish?: boolean;
|
|
179
|
+
/** Full skill list for the browser — richer than the `/` menu's {@link skills}. */
|
|
180
|
+
skillsList?: Skill[];
|
|
181
|
+
skillsListError?: boolean;
|
|
182
|
+
skillsListLoading?: boolean;
|
|
183
|
+
/**
|
|
184
|
+
* A skill's history and a restore's pinned body, each WITH the identity it belongs to.
|
|
185
|
+
*
|
|
186
|
+
* Grouped rather than split into value-plus-key props: the key is not optional relative
|
|
187
|
+
* to the data, and when they were separate a host could pass one and forget the other —
|
|
188
|
+
* which shipped, and left history hidden and Restore hanging. The type now refuses it.
|
|
189
|
+
*/
|
|
190
|
+
skillVersionHistory?: {
|
|
191
|
+
macroId: string;
|
|
192
|
+
versions: SkillVersion[];
|
|
193
|
+
error?: boolean;
|
|
194
|
+
loading?: boolean;
|
|
195
|
+
};
|
|
158
196
|
style?: React.CSSProperties;
|
|
159
197
|
/**
|
|
160
198
|
* Client-synthesized "Creating…" / "Created" bubbles for the active
|
|
@@ -176,10 +214,18 @@ export interface AiCfoPageProps {
|
|
|
176
214
|
openOnboardingPage: () => void;
|
|
177
215
|
togglePageView: () => void;
|
|
178
216
|
updateCurrentInput: (input: string) => void;
|
|
179
|
-
onEmailLinkQuestionProcessed?: () => void;
|
|
180
217
|
/** Called when the user first types `/` so the container can fetch skills. */
|
|
218
|
+
onCloseSkillDetail?: () => void;
|
|
219
|
+
onDeleteSkill?: (macroId: string) => void;
|
|
220
|
+
onEmailLinkQuestionProcessed?: () => void;
|
|
181
221
|
onFetchSkills?: () => void;
|
|
222
|
+
onFetchSkillVersionBody?: (macroId: string, version: number) => void;
|
|
182
223
|
onMenuClick?: () => void;
|
|
224
|
+
onOpenSkill?: (macroId: string) => void;
|
|
225
|
+
onRunSkill?: (macroId: string, label: string) => void;
|
|
226
|
+
onSaveSkill?: (draft: SkillDraft, macroId: string | undefined) => void;
|
|
227
|
+
/** Publish or unpublish in place. Absent withholds the control. */
|
|
228
|
+
onSetSkillVisibility?: (macroId: string, visibility: SkillVisibility) => void;
|
|
183
229
|
onUploadPromoClose?: () => void;
|
|
184
230
|
/**
|
|
185
231
|
* Resolves a newly-created card id to a `{ title, subtitle? }` tile.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Skill, SkillDraft } from '@zeniai/client-epic-state';
|
|
3
|
+
export interface AiCfoSkillEditorProps {
|
|
4
|
+
/**
|
|
5
|
+
* Whether this user may publish tenant-wide. From the server — a scope granted to
|
|
6
|
+
* admin roles. False hides the audience control entirely rather than disabling it: a
|
|
7
|
+
* greyed-out "Everyone" is an invitation to go asking for a permission most people do
|
|
8
|
+
* not need.
|
|
9
|
+
*/
|
|
10
|
+
canPublish: boolean;
|
|
11
|
+
/** The skill being edited. Absent means this is a new one. */
|
|
12
|
+
editing: Skill | undefined;
|
|
13
|
+
/** Prefilled body — the existing prompt when editing, a forked one when copying. */
|
|
14
|
+
initialInstructions: string;
|
|
15
|
+
/** Prefilled name. Differs from `editing.name` when forking, which suggests a new one. */
|
|
16
|
+
initialName: string;
|
|
17
|
+
saveError: boolean;
|
|
18
|
+
saving: boolean;
|
|
19
|
+
initialDescription?: string | null;
|
|
20
|
+
onCancel: () => void;
|
|
21
|
+
onSave: (draft: SkillDraft) => void;
|
|
22
|
+
}
|
|
23
|
+
declare const AiCfoSkillEditor: React.FC<AiCfoSkillEditorProps>;
|
|
24
|
+
export default AiCfoSkillEditor;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { SkillVersion } from '@zeniai/client-epic-state';
|
|
3
|
+
export interface AiCfoSkillVersionHistoryProps {
|
|
4
|
+
error: boolean;
|
|
5
|
+
loading: boolean;
|
|
6
|
+
versions: SkillVersion[];
|
|
7
|
+
/** Absent leaves the list read-only, so a host without authoring shows no Restore. */
|
|
8
|
+
onRestore?: (version: SkillVersion) => void;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* A skill's versions, newest first.
|
|
12
|
+
*
|
|
13
|
+
* Restore does not write from here. It hands the version to the caller, which loads that
|
|
14
|
+
* body and opens the EDITOR on it — so a restore goes through the same validation and the
|
|
15
|
+
* same unsaved-changes handling as any other edit, and is reviewed before it is saved.
|
|
16
|
+
*/
|
|
17
|
+
declare const AiCfoSkillVersionHistory: React.FC<AiCfoSkillVersionHistoryProps>;
|
|
18
|
+
export default AiCfoSkillVersionHistory;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Skill, SkillDetail, SkillDraft, SkillVersion, SkillVisibility } from '@zeniai/client-epic-state';
|
|
3
|
+
export interface AiCfoSkillsBrowserProps {
|
|
4
|
+
/**
|
|
5
|
+
* Whether this user may publish a skill tenant-wide. Straight through to the editor,
|
|
6
|
+
* which owns the control; the browser only forwards it.
|
|
7
|
+
*/
|
|
8
|
+
canPublish: boolean;
|
|
9
|
+
detail: SkillDetail | undefined;
|
|
10
|
+
detailError: boolean;
|
|
11
|
+
detailLoading: boolean;
|
|
12
|
+
listError: boolean;
|
|
13
|
+
/** The list is being fetched. Distinct from "no skills": opening the browser triggers
|
|
14
|
+
* the fetch, so without this an empty list reads as "none exist" for the whole
|
|
15
|
+
* round-trip — the same conflation this component already avoids for errors. */
|
|
16
|
+
listLoading: boolean;
|
|
17
|
+
/** macroId whose detail is open; undefined shows the list. */
|
|
18
|
+
openMacroId: string | undefined;
|
|
19
|
+
skills: Skill[];
|
|
20
|
+
/**
|
|
21
|
+
* A restore's pinned body, WITH the (skill, version) it is for.
|
|
22
|
+
*
|
|
23
|
+
* One object rather than a value plus separate keys, because the keys are not optional
|
|
24
|
+
* relative to the data: a body that cannot be attributed must not seed the editor,
|
|
25
|
+
* which seeds once. Split apart, a host could pass the body and forget the keys — which
|
|
26
|
+
* shipped, and left Restore hanging on its loading state forever. Grouped, that is a
|
|
27
|
+
* type error instead of a silent break.
|
|
28
|
+
*/
|
|
29
|
+
restoreBody?: {
|
|
30
|
+
macroId: string;
|
|
31
|
+
version: number;
|
|
32
|
+
error?: boolean;
|
|
33
|
+
instructions?: string;
|
|
34
|
+
loading?: boolean;
|
|
35
|
+
};
|
|
36
|
+
/** Authoring is absent unless the host wires it, so the browser stays read-only by
|
|
37
|
+
* default rather than rendering buttons that do nothing. */
|
|
38
|
+
saveError?: boolean;
|
|
39
|
+
saving?: boolean;
|
|
40
|
+
/** A skill's history, WITH the skill it belongs to. Same reasoning. */
|
|
41
|
+
versionHistory?: {
|
|
42
|
+
macroId: string;
|
|
43
|
+
versions: SkillVersion[];
|
|
44
|
+
error?: boolean;
|
|
45
|
+
loading?: boolean;
|
|
46
|
+
};
|
|
47
|
+
onBack: () => void;
|
|
48
|
+
onOpenSkill: (skill: Skill) => void;
|
|
49
|
+
onRunSkill: (skill: Skill) => void;
|
|
50
|
+
onDeleteSkill?: (skill: Skill) => void;
|
|
51
|
+
onFetchVersionBody?: (macroId: string, version: number) => void;
|
|
52
|
+
/** Absent disables authoring entirely — see `saveError`. */
|
|
53
|
+
onSaveSkill?: (draft: SkillDraft, editing: Skill | undefined) => void;
|
|
54
|
+
/**
|
|
55
|
+
* Publish or unpublish in place. Absent withholds the control — a host without it gets
|
|
56
|
+
* no button rather than one the API refuses, the same rule Edit and Delete follow.
|
|
57
|
+
*/
|
|
58
|
+
onSetVisibility?: (skill: Skill, visibility: SkillVisibility) => void;
|
|
59
|
+
}
|
|
60
|
+
declare const AiCfoSkillsBrowser: React.FC<AiCfoSkillsBrowserProps>;
|
|
61
|
+
export default AiCfoSkillsBrowser;
|
|
@@ -27,6 +27,7 @@ export declare const useAiCfoStreamingState: ({ initialAiCfoView, currentChatSes
|
|
|
27
27
|
};
|
|
28
28
|
agentId?: import('@zeniai/client-epic-state').ID;
|
|
29
29
|
aiCfoSidePanelHostPageKey?: string;
|
|
30
|
+
isSkillsBrowserOpen?: boolean;
|
|
30
31
|
lastContextMessage?: string;
|
|
31
32
|
lastContextStatus?: import('@zeniai/client-epic-state/view/aiCfoView/aiCfoViewPayload').ContextStatus;
|
|
32
33
|
};
|
|
@@ -5,8 +5,10 @@ export interface Props {
|
|
|
5
5
|
selectedMenu: MenuType | SettingsMenu | AiCfoMenu | InvoicingMenu;
|
|
6
6
|
aiCfoView?: AiCfoViewSelector;
|
|
7
7
|
isMobile?: boolean;
|
|
8
|
+
/** Absent/false hides the Skills entry entirely — the server decides. */
|
|
9
|
+
skillsEnabled?: boolean;
|
|
8
10
|
onClick: (_menu: MenuListItem) => void;
|
|
9
11
|
onDeleteChatSession?: (chatSessionId: string) => void;
|
|
10
12
|
updateCurrentChatSessionId?: (chatSessionId: string) => void;
|
|
11
13
|
}
|
|
12
|
-
export default function AiCfoMenuContent({ selectedMenu, aiCfoView, isMobile, onClick, onDeleteChatSession, updateCurrentChatSessionId, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export default function AiCfoMenuContent({ selectedMenu, aiCfoView, isMobile, skillsEnabled, onClick, onDeleteChatSession, updateCurrentChatSessionId, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -36,6 +36,8 @@ export interface Props {
|
|
|
36
36
|
count: number;
|
|
37
37
|
fetchStatus: FetchStateAndError;
|
|
38
38
|
};
|
|
39
|
+
/** Forwarded to the AI CFO rail: absent/false hides the Skills entry. */
|
|
40
|
+
skillsEnabled?: boolean;
|
|
39
41
|
thanksGivingAnimationEnabled?: boolean;
|
|
40
42
|
handleLogOutClick: () => void;
|
|
41
43
|
handleMenuChange: (selectedMenu: MenuListItem, additionalMessage?: string) => void;
|
|
@@ -51,4 +53,4 @@ export interface Props {
|
|
|
51
53
|
onZeniLogoClick?: () => void;
|
|
52
54
|
updateCurrentChatSessionId?: (chatSessionId: string) => void;
|
|
53
55
|
}
|
|
54
|
-
export default function AppDrawerContent({ currentTenantId, tenants, isVendorsTabVisible, isZeniAccountEnabled, isTreasuryEnabled, isChargeCardEnabled, rewardsConfiguration, selectedMenu, isTenantDropdownDisabled, isSettings, isInvoicing, isAiCfo, isAiCfoAccessEnabled, isNotificationsTabVisible, isSettingsFeatureEnabled, signedInUser, aiCfoView, currentTenant, christmasAnimationEnabled, expenseAutomationEnabledCompanies: _expenseAutomationEnabledCompanies, halloweenAnimationEnabled, newYearAnimationEnabled, thanksGivingAnimationEnabled, notificationCountDetails, isExpenseAutomationEnabledForUser, isTaskManagerAccessEnabled, onNotificationIconClick, handleLogOutClick, handleMenuChange, onZeniLogoClick, handleBackClick, handleCockpitClick, handleMyProfileClick, handleReferralsClick, handleTenantSelect, monthEndCloseChecksView, onCalendarOpen, onDeleteChatSession, onPeriodChange, updateCurrentChatSessionId, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
|
|
56
|
+
export default function AppDrawerContent({ currentTenantId, tenants, isVendorsTabVisible, isZeniAccountEnabled, isTreasuryEnabled, isChargeCardEnabled, rewardsConfiguration, selectedMenu, isTenantDropdownDisabled, isSettings, isInvoicing, isAiCfo, isAiCfoAccessEnabled, skillsEnabled, isNotificationsTabVisible, isSettingsFeatureEnabled, signedInUser, aiCfoView, currentTenant, christmasAnimationEnabled, expenseAutomationEnabledCompanies: _expenseAutomationEnabledCompanies, halloweenAnimationEnabled, newYearAnimationEnabled, thanksGivingAnimationEnabled, notificationCountDetails, isExpenseAutomationEnabledForUser, isTaskManagerAccessEnabled, onNotificationIconClick, handleLogOutClick, handleMenuChange, onZeniLogoClick, handleBackClick, handleCockpitClick, handleMyProfileClick, handleReferralsClick, handleTenantSelect, monthEndCloseChecksView, onCalendarOpen, onDeleteChatSession, onPeriodChange, updateCurrentChatSessionId, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,9 +7,9 @@ export declare const ALL_SETTINGS_MENU_OPTIONS: readonly ["accounting", "approva
|
|
|
7
7
|
export declare const toSettingsMenuOptionType: (v: string) => "my_profile" | "accounting" | "billing" | "company_details" | "integrations" | "approval_rules" | "bank_connections" | "business_verification" | "my_bank_connections" | "notifications";
|
|
8
8
|
export declare const toSettingsMenuOptionTypeStrict: (v: string) => "my_profile" | "accounting" | "billing" | "company_details" | "integrations" | "approval_rules" | "bank_connections" | "business_verification" | "my_bank_connections" | "notifications" | undefined;
|
|
9
9
|
export type SettingsMenu = (typeof ALL_SETTINGS_MENU_OPTIONS)[number];
|
|
10
|
-
export declare const ALL_AI_CFO_MENU_OPTIONS: readonly ["new_chat", "explore", "search_chats"];
|
|
11
|
-
export declare const toAiCfoMenuOptionType: (v: string) => "new_chat" | "explore" | "search_chats";
|
|
12
|
-
export declare const toAiCfoMenuOptionTypeStrict: (v: string) => "new_chat" | "explore" | "search_chats" | undefined;
|
|
10
|
+
export declare const ALL_AI_CFO_MENU_OPTIONS: readonly ["new_chat", "explore", "skills", "search_chats"];
|
|
11
|
+
export declare const toAiCfoMenuOptionType: (v: string) => "skills" | "new_chat" | "explore" | "search_chats";
|
|
12
|
+
export declare const toAiCfoMenuOptionTypeStrict: (v: string) => "skills" | "new_chat" | "explore" | "search_chats" | undefined;
|
|
13
13
|
export type AiCfoMenu = (typeof ALL_AI_CFO_MENU_OPTIONS)[number];
|
|
14
14
|
export declare const ALL_INVOICING_MENU_OPTIONS: readonly ["invoicing_overview", "invoicing_analytics", "invoicing_customers", "invoicing_subscriptions", "invoicing_invoices", "invoicing_payments", "invoicing_credits", "invoicing_discounts", "invoicing_dunning", "invoicing_reports", "invoicing_catalog", "invoicing_settings", "invoicing_settings_payment_destination", "invoicing_settings_branding", "invoicing_settings_integrations", "invoicing_settings_dunning", "invoicing_integrations", "invoicing_data_import", "invoicing_audit_log"];
|
|
15
15
|
export declare const toInvoicingMenuOptionType: (v: string) => "invoicing_overview" | "invoicing_analytics" | "invoicing_customers" | "invoicing_subscriptions" | "invoicing_invoices" | "invoicing_payments" | "invoicing_credits" | "invoicing_discounts" | "invoicing_dunning" | "invoicing_reports" | "invoicing_catalog" | "invoicing_settings" | "invoicing_settings_payment_destination" | "invoicing_settings_branding" | "invoicing_settings_integrations" | "invoicing_settings_dunning" | "invoicing_integrations" | "invoicing_data_import" | "invoicing_audit_log";
|
|
@@ -31,6 +31,8 @@ interface Props {
|
|
|
31
31
|
currentTenant?: CurrentTenant;
|
|
32
32
|
isTaskManagerAccessEnabled?: boolean;
|
|
33
33
|
monthEndCloseChecksView?: MonthEndCloseChecksView;
|
|
34
|
+
/** Forwarded to the AI CFO rail: absent/false hides the Skills entry. */
|
|
35
|
+
skillsEnabled?: boolean;
|
|
34
36
|
style?: React.CSSProperties;
|
|
35
37
|
onSelectionChanged: (selectedMenu: MenuListItem, additionalMessage?: string) => void;
|
|
36
38
|
onBackClick?: () => void;
|
|
@@ -39,5 +41,5 @@ interface Props {
|
|
|
39
41
|
onPeriodChange?: (period: MonthYearPeriod) => void;
|
|
40
42
|
updateCurrentChatSessionId?: (chatSessionId: string) => void;
|
|
41
43
|
}
|
|
42
|
-
export default function MenuList({ selectedMenu, currentTenant, isVendorsTabVisible, isSetting, isInvoicing, isAiCfo, isAiCfoAccessEnabled, isZeniAccountEnabled, isChargeCardEnabled, isTreasuryEnabled, rewardsConfiguration, className, style, isNotificationsTabVisible, isTaskManagerAccessEnabled, isExpenseAutomationEnabledForUser, aiCfoView, additionalMessage, monthEndCloseChecksView, onCalendarOpen, onPeriodChange, onSelectionChanged, onDeleteChatSession, updateCurrentChatSessionId, onBackClick, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
|
|
44
|
+
export default function MenuList({ selectedMenu, currentTenant, isVendorsTabVisible, isSetting, isInvoicing, isAiCfo, isAiCfoAccessEnabled, skillsEnabled, isZeniAccountEnabled, isChargeCardEnabled, isTreasuryEnabled, rewardsConfiguration, className, style, isNotificationsTabVisible, isTaskManagerAccessEnabled, isExpenseAutomationEnabledForUser, aiCfoView, additionalMessage, monthEndCloseChecksView, onCalendarOpen, onPeriodChange, onSelectionChanged, onDeleteChatSession, updateCurrentChatSessionId, onBackClick, }: Readonly<Props>): import("react/jsx-runtime").JSX.Element;
|
|
43
45
|
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InvoicingCatalogItemFormLocalData, InvoicingNamedOption, InvoicingNamedOptionsByKey,
|
|
1
|
+
import { InvoicingCatalogItemFormLocalData, InvoicingNamedOption, InvoicingNamedOptionsByKey, NestedAccountHierarchyForReport, NestedClassHierarchyForReport } from '@zeniai/client-epic-state';
|
|
2
2
|
import { FieldHelpByCode } from '../../formElements/fieldHelp/FieldHelpContext';
|
|
3
3
|
/**
|
|
4
4
|
* Catalog item types as shown to the user. All three are parent catalog items;
|
|
@@ -35,8 +35,13 @@ export interface InvoicingCatalogItemFormPageProps {
|
|
|
35
35
|
* Absent means no help is available, and no icons render.
|
|
36
36
|
*/
|
|
37
37
|
fieldHelp?: FieldHelpByCode;
|
|
38
|
-
|
|
39
|
-
|
|
38
|
+
/**
|
|
39
|
+
* Account and class trees the price-point pickers render as grouped options.
|
|
40
|
+
* The account tree is already narrowed to the income accounts a price may
|
|
41
|
+
* post to, so this page does no filtering of its own.
|
|
42
|
+
*/
|
|
43
|
+
qboClassHierarchy?: NestedClassHierarchyForReport[];
|
|
44
|
+
qboIncomeAccountHierarchy?: NestedAccountHierarchyForReport[];
|
|
40
45
|
/**
|
|
41
46
|
* `catalog_tier_type_options_by_pricing_model` from the invoicing config; the
|
|
42
47
|
* tier `Type` column is driven by it. `undefined` until the config loads.
|
|
@@ -54,5 +59,5 @@ export interface InvoicingCatalogItemFormPageProps {
|
|
|
54
59
|
* invoicing forms. The whole form syncs back to the CES draft (`localData`) on
|
|
55
60
|
* every change; the save payload is derived from the draft in CES.
|
|
56
61
|
*/
|
|
57
|
-
export declare function InvoicingCatalogItemFormPage({ applicabilityValues, fieldHelp, applicableItemOptions, defaultType, errorMessage, isSubmitting, localData, mode, onBack, onCancel, onChange, onSubmit, periodUnitOptions, pricingModelValues, prorationValues,
|
|
62
|
+
export declare function InvoicingCatalogItemFormPage({ applicabilityValues, fieldHelp, applicableItemOptions, defaultType, errorMessage, isSubmitting, localData, mode, onBack, onCancel, onChange, onSubmit, periodUnitOptions, pricingModelValues, prorationValues, qboClassHierarchy, qboIncomeAccountHierarchy, tierTypeOptionsByPricingModel, tierTypeValues, trialEndActionOptions, trialUnitOptions, typeOptions, }: Readonly<InvoicingCatalogItemFormPageProps>): import("react/jsx-runtime").JSX.Element;
|
|
58
63
|
export default InvoicingCatalogItemFormPage;
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
import { FetchStateAndError, InvoicingNamedOption, InvoicingQboAccountMappingKindOption,
|
|
1
|
+
import { FetchStateAndError, InvoicingAccountingOption, InvoicingNamedOption, InvoicingQboAccountMappingKindOption, InvoicingQboConnection, InvoicingQboSettingsPayload, InvoicingQboSyncHealth, NestedAccountHierarchyForReport } from '@zeniai/client-epic-state';
|
|
2
2
|
export interface InvoicingQBOSettingsPageProps {
|
|
3
3
|
accountMappingKindOptions: InvoicingQboAccountMappingKindOption[];
|
|
4
|
-
|
|
4
|
+
/** Every mapped-capable account; each row narrows by its own kind. */
|
|
5
|
+
accounts: InvoicingAccountingOption[];
|
|
5
6
|
customerMatchingOptions: InvoicingNamedOption[];
|
|
6
7
|
isBackfilling: boolean;
|
|
7
8
|
isLoading: boolean;
|
|
8
9
|
isSaving: boolean;
|
|
10
|
+
/** Account tree the grouped pickers render, straight from the account list. */
|
|
11
|
+
nestedAccountHierarchy: NestedAccountHierarchyForReport[];
|
|
9
12
|
retryFetchStateByTaskId: Record<string, FetchStateAndError>;
|
|
10
13
|
syncStatusOptions: InvoicingNamedOption[];
|
|
11
14
|
connection?: InvoicingQboConnection;
|
|
@@ -13,12 +16,11 @@ export interface InvoicingQBOSettingsPageProps {
|
|
|
13
16
|
saveErrorMessage?: string;
|
|
14
17
|
syncHealth?: InvoicingQboSyncHealth;
|
|
15
18
|
onBackClick: () => void;
|
|
16
|
-
onLoadAccounts: (accountTypes: string) => void;
|
|
17
19
|
onReconnect: () => void;
|
|
18
20
|
onRefresh: () => void;
|
|
19
21
|
onRetryTask: (taskId: string) => void;
|
|
20
22
|
onSave: (qboSettings: InvoicingQboSettingsPayload) => void;
|
|
21
23
|
onStartBackfill: (startDate: string) => void;
|
|
22
24
|
}
|
|
23
|
-
export declare function InvoicingQBOSettingsPage({ accountMappingKindOptions,
|
|
25
|
+
export declare function InvoicingQBOSettingsPage({ accountMappingKindOptions, accounts, nestedAccountHierarchy, connection, customerMatchingOptions, isBackfilling, isLoading, isSaving, onBackClick, onReconnect, onRefresh, onRetryTask, onSave, onStartBackfill, qboSettings, retryFetchStateByTaskId, saveErrorMessage, syncHealth, syncStatusOptions, }: Readonly<InvoicingQBOSettingsPageProps>): import("react/jsx-runtime").JSX.Element;
|
|
24
26
|
export default InvoicingQBOSettingsPage;
|
|
@@ -48,7 +48,7 @@ export interface FormData {
|
|
|
48
48
|
[taskDataKey]: Record<string, SubtaskInlineFieldData>;
|
|
49
49
|
};
|
|
50
50
|
}
|
|
51
|
-
declare const uniqueName: (sectionId: string, key: FormDataKeys) => `${string}.fileIds` | `${string}.name` | `${string}.status` | `${string}.description` | `${string}.dueDate` | `${string}.priority` | `${string}.timeSpent` | `${string}.assignee` | `${string}.
|
|
51
|
+
declare const uniqueName: (sectionId: string, key: FormDataKeys) => `${string}.fileIds` | `${string}.name` | `${string}.status` | `${string}.description` | `${string}.dueDate` | `${string}.priority` | `${string}.timeSpent` | `${string}.assignee` | `${string}.visibility` | `${string}.tag` | `${string}.taskType` | `${string}.recurringView`;
|
|
52
52
|
export type FormDataKeyUniqueNames = ReturnType<typeof uniqueName>;
|
|
53
53
|
export declare const uniqueFormName: (sectionId: ID) => `${string}_form`;
|
|
54
54
|
export interface TaskDetailPageProps {
|
package/dist/index.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup-BwidPHWK.cjs"),a=require("./vendor-.pnpm-BGlYY3q9.cjs"),i=require("@zeniai/client-epic-state"),t=require("@emotion/styled");exports.AIAgentsActivatingPage=e.AIAgentsActivatingPage;exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_INVOICING_MENU_GROUPS=e.ALL_INVOICING_MENU_GROUPS;exports.ALL_INVOICING_MENU_OPTIONS=e.ALL_INVOICING_MENU_OPTIONS;exports.ALL_SETTINGS_MENU_OPTIONS=e.ALL_SETTINGS_MENU_OPTIONS;exports.APP_DRAWER_CONTENT_WIDTH_PX=e.APP_DRAWER_CONTENT_WIDTH_PX;exports.AccountInfoPage=e.AccountInfoPage;exports.AccountLockedInfoModal=e.AccountLockedInfoModal;exports.AccountReconDetailsDrawerPage=e.AccountReconDetailsDrawerPage;exports.AccountReconDetailsDrawerPageV2=e.AccountReconDetailsDrawerPage$1;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoChatHeader=e.AiCfoChatHeader;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AiFinanceTeamReadyPage=e.AiFinanceTeamReadyPage;exports.AllowBlockChipPicker=e.AllowBlockChipPicker;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.AutoTransferRulePage=e.AutoTransferRulePage;exports.BackNavigationProvider=e.BackNavigationProvider;exports.BankConnectionsSettingsPage=e.BankConnectionsSettingsPage;exports.BillDetailPage=e.BillDetailPage;exports.BillDetailPageSkeleton=e.BillDetailPageSkeleton;exports.BillPayApprovalRuleDetailPage=e.BillPayApprovalRuleDetailPage;exports.BillPayApprovalRuleDetailPageV1=e.BillPayApprovalRuleDetailPage$1;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayApprovalRulesPageV1=e.BillPayApprovalRulesPage$1;exports.BillPayPromoPage=e.BillPayPromoPage;exports.BillPaySetUpLoading=e.SpendManagementSetUpLoading;exports.BillPaySetUpPage=e.BillPaySetUpPage;exports.BillingSettingsPage=e.BillingSettingsPage;exports.BillsBulkReviewDrawerPage=e.BillsBulkReviewDrawerPage;exports.BusinessVerificationPage=e.BusinessVerificationPage;exports.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT=e.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT;exports.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION=e.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.COMMENT_NOTIFICATION_KINDS=e.COMMENT_NOTIFICATION_KINDS;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CardPolicyCreatePage=e.CardPolicyCreatePage;exports.CardPolicyEditPage=e.CardPolicyEditPage;exports.CardPolicyFormPageSkeleton=e.CardPolicyFormPageSkeleton;exports.CardPolicyFormSections=e.CardPolicyFormSections;exports.CardPolicyListPage=e.CardPolicyListPage;exports.CardPolicyListPageSkeleton=e.CardPolicyListPageSkeleton;exports.CardPolicyListRow=e.CardPolicyListRow;exports.CardPolicyListSkeletonRow=e.CardPolicyListSkeletonRow;exports.CardPolicyManualEmptyState=e.CardPolicyManualEmptyState;exports.CardsAiCfoHero=e.CardsAiCfoHero;exports.CardsShutdownBanner=e.CardsShutdownBanner;exports.CashbackDetailLoading=e.CashbackDetailLoading;exports.CashbackDetailPage=e.CashbackDetailPage;exports.ChargeCardCVVActivate=e.ChargeCardCVVActivate;exports.ChargeCardDetailLoading=e.ChargeCardDetailLoading;exports.ChargeCardDetailPage=e.ChargeCardDetailPage;exports.ChargeCardListLoading=e.ChargeCardListLoading;exports.ChargeCardListPage=e.ChargeCardListPage;exports.ChargeCardListSkeletonRow=e.ChargeCardListSkeletonRow;exports.ChargeCardPaymentHistoryPage=e.ChargeCardPaymentHistoryPage;exports.ChargeCardPromoPage=e.ChargeCardPromoPage;exports.ChargeCardPromoPageSkeleton=e.ChargeCardPromoPageSkeleton;exports.ChargeCardSetUpPage=e.ChargeCardSetUpPage;exports.ChargeCardSetupLoading=e.SpendManagementSetUpLoading;exports.ChargeCardStatementsLoading=e.ChargeCardStatementsLoading;exports.ChargeCardStatementsPage=e.ChargeCardStatementsPage;exports.ChargeCardUserOnboardingPromoPage=e.ChargeCardUserOnboardingPromoPage;exports.ChargeCardUserOnboardingPromoPageSkeleton=e.ChargeCardUserOnboardingPromoPageSkeleton;exports.CheckDepositDrawerPage=e.CheckDepositDrawerPage;exports.ClickableRow=e.ClickableRow;exports.CollaborationGlobalStyles=e.CollaborationGlobalStyles;exports.CollaborationProvider=e.CollaborationProvider;exports.CollaborationRoomProvider=e.CollaborationRoomProvider;exports.Colors=e.Colors;exports.CommentsAndNotesCount=e.CommentsAndNotesCount;exports.CommentsDrawerProvider=e.CommentsDrawerProvider;exports.CompanyOfficerOnboardingDetailsSection=e.CompanyOfficerOnboardingDetailsSection;exports.CompanyOnboardingDetailsSection=e.CompanyOnboardingDetailsSection;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.ConnectDataSourcesPage=e.ConnectDataSourcesPage;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreatedEntitiesAnswer=e.CreatedEntitiesAnswer;exports.CreatingEntitiesAnswerLoading=e.CreatingEntitiesAnswerLoading;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;exports.CustomerOnboardingContainerPage=e.CustomerOnboardingContainerPage;exports.CustomerOnboardingNoStepsPage=e.CustomerOnboardingNoStepsPage;exports.CustomerOnboardingPage=e.CustomerOnboardingPage;exports.CustomerOnboardingProductSuitePage=e.CustomerOnboardingProductSuitePage;exports.Dashboard=e.Dashboard;exports.DashboardReportPage=e.DashboardReportPage;exports.DashboardSidebarLogoAnimation=e.DashboardSidebarLogoAnimation;exports.DataListTable=e.DataListTable;exports.DataListTableHeader=e.DataListTableHeader;exports.DataListTableRow=e.DataListTableRow;exports.DataListTableSortIndicator=e.DataListTableSortIndicator;exports.DebitCardSetPin=e.DebitCardSetPin;exports.DropdownPortalContext=e.DropdownPortalContext;exports.EditPeoplePage=e.EditPeoplePage;exports.EditReimbursementDetailPage=e.EditReimbursementDetailPage;exports.EditableBillDetailPage=e.EditableBillDetailPage;exports.EntityDetailPage=e.EntityDetailPage;exports.ErrorBoundaryWrapper=e.ErrorBoundaryWrapper;exports.ExcludedAccountReconDetailsDrawerPage=e.ExcludedAccountReconDetailsDrawerPage;exports.ExpenseAutomationOverviewPage=e.ExpenseAutomationOverviewPage;exports.ExpenseAutomationOverviewPageSkeleton=e.ExpenseAutomationOverviewPageSkeleton;exports.ExpenseAutomationPage=e.ExpenseAutomationPage;exports.ExpressPayPage=e.ExpressPayPage;exports.FeatureDynamicConfigNames=e.DynamicConfigNames;exports.FeatureGatesNames=e.FeatureGatesNames;exports.FeaturePreviewPage=e.FeaturePreviewPage;exports.FeatureProvider=e.FeatureProvider;exports.FieldHelpIcon=e.FieldHelpIcon;exports.FieldHelpProvider=e.FieldHelpProvider;exports.FirstReviewVendorDetailPage=e.FirstReviewVendorDetailPage;exports.FontWeight=e.FontWeight;exports.GlobalInfoProvider=e.GlobalInfoProvider;exports.GlobalReviewListPage=e.GlobalReviewListPage;exports.INVOICING_SETTINGS_NAV_SECTIONS=e.INVOICING_SETTINGS_NAV_SECTIONS;exports.INVOICING_SETTINGS_TABS=e.INVOICING_SETTINGS_TABS;exports.InformationCardStack=e.InformationCardStack;exports.InitialCollaborationProvider=e.InitialCollaborationProvider;exports.InsightsCardStack=e.InsightCardStack;exports.IntegrationCardView=e.IntegrationCardView;exports.IntegrationsCardGrid=e.IntegrationsCardGrid;exports.IntegrationsSection=e.IntegrationsSection;exports.IntegrationsSettingsPage=e.IntegrationsSettingsPage;exports.InternationalWireVerificationPage=e.InternationalWireVerificationPage;exports.InviteFormPage=e.InviteFormPage;exports.InvitePageListView=e.InvitePageListView;exports.InvitePeoplePage=e.InvitePeoplePage;exports.InvoiceUploadSection=e.InvoiceUploadSection;exports.InvoiceUploadSectionSkeleton=e.InvoiceUploadSectionSkeleton;exports.InvoicingAddPaymentMethodDialog=e.InvoicingAddPaymentMethodDialog;exports.InvoicingAuditLogPage=e.InvoicingAuditLogPage;exports.InvoicingBrandingSettingsPage=e.InvoicingBrandingSettingsPage;exports.InvoicingCatalogItemDetailPage=e.InvoicingCatalogItemDetailPage;exports.InvoicingCatalogItemFormPage=e.InvoicingCatalogItemFormPage;exports.InvoicingCatalogPage=e.InvoicingCatalogPage;exports.InvoicingCouponFormPage=e.InvoicingCouponFormPage;exports.InvoicingCreateInvoicePage=e.InvoicingCreateInvoicePage;exports.InvoicingCreateInvoiceSkeleton=e.InvoicingCreateInvoiceSkeleton;exports.InvoicingCreatePromotionalCreditsDialog=e.InvoicingCreatePromotionalCreditsDialog;exports.InvoicingCreditDetailPage=e.InvoicingCreditDetailPage;exports.InvoicingCreditListPage=e.InvoicingCreditListPage;exports.InvoicingCustomerDetailPage=e.InvoicingCustomerDetailPage;exports.InvoicingCustomerFormPage=e.InvoicingCustomerFormPage;exports.InvoicingCustomerListPage=e.InvoicingCustomerListPage;exports.InvoicingDashboardSkeleton=e.InvoicingDashboardSkeleton;exports.InvoicingDataImportDetailPage=e.InvoicingDataImportDetailPage;exports.InvoicingDataImportHubPage=e.InvoicingDataImportHubPage;exports.InvoicingDataImportMigratePage=e.InvoicingDataImportMigratePage;exports.InvoicingDetailScaffold=e.InvoicingDetailScaffold;exports.InvoicingDiscountDetailPage=e.InvoicingDiscountDetailPage;exports.InvoicingDiscountListPage=e.InvoicingDiscountListPage;exports.InvoicingDunningDetailPage=e.InvoicingDunningDetailPage;exports.InvoicingDunningEmailComposerDialog=e.InvoicingDunningEmailComposerDialog;exports.InvoicingDunningListPage=e.InvoicingDunningListPage;exports.InvoicingDunningSettingsPage=e.InvoicingDunningSettingsPage;exports.InvoicingEmptyState=e.InvoicingEmptyState;exports.InvoicingIntegrationsSettingsPage=e.InvoicingIntegrationsSettingsPage;exports.InvoicingInvoiceDetailPage=e.InvoicingInvoiceDetailPage;exports.InvoicingInvoiceListPage=e.InvoicingInvoiceListPage;exports.InvoicingIssueCreditNotePage=e.InvoicingIssueCreditNotePage;exports.InvoicingOverviewPage=e.InvoicingOverviewPage;exports.InvoicingPaymentDestinationSettingsPage=e.InvoicingPaymentDestinationSettingsPage;exports.InvoicingPaymentLinkPage=e.InvoicingPaymentLinkPage;exports.InvoicingPaymentListPage=e.InvoicingPaymentListPage;exports.InvoicingPromoPage=e.InvoicingPromoPage;exports.InvoicingQBOSettingsPage=e.InvoicingQBOSettingsPage;exports.InvoicingRecordPaymentPage=e.InvoicingRecordPaymentPage;exports.InvoicingSettingsHubPage=e.InvoicingSettingsHubPage;exports.InvoicingSettingsPage=e.InvoicingSettingsHubPage;exports.InvoicingSubscriptionDetailPage=e.InvoicingSubscriptionDetailPage;exports.InvoicingSubscriptionFormPage=e.InvoicingSubscriptionFormPage;exports.InvoicingSubscriptionListPage=e.InvoicingSubscriptionListPage;exports.InvoicingTransactionDetailPage=e.InvoicingTransactionDetailPage;exports.InvoicingVoidInvoiceDialog=e.InvoicingVoidInvoiceDialog;exports.IssueChargeCardPage=e.IssueChargeCardPage;exports.IssueChargeCardPageSkeleton=e.IssueChargeCardPageSkeleton;exports.LinkBillExpensePage=e.LinkBillExpensePage;exports.LinkJETransactionPage=e.LinkJETransactionPage;exports.Loader=e.Loader;exports.LogoutButton=e.LogoutButton;exports.MCC_CHIP_ID_PREFIX=e.MCC_CHIP_ID_PREFIX;exports.MagicLinkDomesticWireDetailsPage=e.MagicLinkDomesticWireDetailsPage;exports.MagicLinkInternationalWireDetailsPage=e.MagicLinkInternationalWireDetailsPage;exports.MagicLinkSuccessPage=e.MagicLinkSuccessPage;exports.MagicLinkVendorACHDetailsPage=e.MagicLinkVendorACHDetailsPage;exports.Modal=e.Modal;exports.MonthEndEmailDrawerCustomerRequestPage=e.MonthEndEmailDrawerCustomerRequestPage;exports.MyBankConnectionsSettingsPage=e.MyBankConnectionsSettingsPage;exports.MyPendingActivationChargeCardListPage=e.MyPendingActivationChargeCardListPage;exports.MyProfileSettingsPage=e.MyProfileSettingsPage;exports.NavBar=e.NavBar;exports.NavBarRightRowStyled=e.NavBarRightRowStyled;exports.NewGlobalMerchantPage=e.NewGlobalMerchantPage;exports.NewUpdateAvailablePage=e.NewUpdateAvailablePage;exports.NotFoundPage=e.NotFoundPage;exports.NotificationIcon=e.SvgNotification;exports.NotificationSettingsPage=e.NotificationSettingsPage;exports.NotificationsPage=e.NotificationsPage;exports.OAuthConsentPage=e.OAuthConsentPage;exports.OnboardingInitialLoader=e.OnboardingInitialLoader;exports.OnboardingSidebar=e.OnboardingSidebar;exports.OnboardingStepFrame=e.OnboardingStepFrame;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelInternalContext=e.PanelInternalContext;exports.PaymentAccountSetupBillingAddressSection=e.PaymentAccountSetupBillingAddressSection;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PolicyLimitsRowList=e.PolicyLimitsRowList;exports.PolicyModeSelector=e.PolicyModeSelector;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QBOSetupSectionWithForm=e.QBOSetupSectionWithForm;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.RIGHT_SIDE_PANEL_WIDTH_PX=e.RIGHT_SIDE_PANEL_WIDTH_PX;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRuleDetailPageV1=e.ReimbursementApprovalRuleDetailPage$1;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementApprovalRulesPageV1=e.ReimbursementApprovalRulesPage$1;exports.ReimbursementDetailPage=e.ReimbursementDetailPage;exports.ReimbursementDetailPageSkeleton=e.ReimbursementDetailPageSkeleton;exports.ReimbursementPromoPage=e.ReimbursementPromoPage;exports.ReimbursementSetUpLoading=e.SpendManagementSetUpLoading;exports.ReimbursementSetUpPage=e.RemiSetupPage;exports.RemisBulkReviewDrawerPage=e.ReimbursementsBulkReviewDrawerPage;exports.ReportsPage=e.ReportsPage;exports.ResponsiveSized=e.ResponsiveSized;exports.ReviewBillDetailsPage=e.ReviewBillDetailsPage;exports.ReviewConfirmTransferPanel=e.ReviewConfirmTransferPanel;exports.ReviewDetailsPageSkeleton=e.ReviewDetailsPageSkeleton;exports.ScheduleDetailSkeleton=e.ScheduleDetailSkeleton;exports.ScheduleDetailsAccruedExpensesPage=e.ScheduleDetailsAccruedExpensesPage;exports.ScheduleDetailsFixedAssetsPage=e.ScheduleDetailsFixedAssetsPage;exports.ScheduleDetailsPage=e.ScheduleDetailsPage;exports.SchedulePanelInternalContext=e.SchedulePanelInternalContext;exports.SearchableCheckboxCardList=e.SearchableCheckboxCardList;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementParseInfo=e.StatementParseInfoEntry;exports.StatementProcessingPage=e.StatementProcessingPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.SyntheticAiCfoAnswerView=e.SyntheticAiCfoAnswerView;exports.THREAD_RESOLVED_NOTIFICATION_KIND=e.THREAD_RESOLVED_NOTIFICATION_KIND;exports.THREAD_UNRESOLVED_NOTIFICATION_KIND=e.THREAD_UNRESOLVED_NOTIFICATION_KIND;exports.TaskDetailPage=e.TaskDetailPage;exports.TaskManagementPage=e.TaskManagementPage;exports.TenantsDropDown=e.TenantsDropDown;exports.TextStyle=e.TextStyle;exports.ToolkitProvider=e.ToolkitProvider;exports.TopExDetailPage=e.TopExDetailPage;exports.TransactionActivityLogPage=e.TransactionActivityLogPage;exports.TransactionActivityLogPanel=e.TransactionActivityLogPanel;exports.TransactionDetailPage=e.TransactionDetailPage;exports.TransactionDetailSkeleton=e.TransactionDetailSkeleton;exports.TransactionListBig=e.TransactionListBig;exports.TransactionListComments=e.TransactionListComments;exports.TransactionListPage=e.TransactionListPage;exports.TransactionPanelInternalContext=e.TransactionPanelInternalContext;exports.TransactionSidePanelLayout=e.TransactionSidePanelLayout;exports.TransactionVendorDetailPage=e.TransactionVendorDetailPage;exports.TransferDrawerPage=e.TransferDrawerPage;exports.TreasuryOverviewPage=e.TreasuryOverviewPage;exports.TreasuryPromoPage=e.TreasuryPromoPage;exports.TreasurySetUpPage=e.TreasurySetUpPage;exports.TreasuryStatementsPage=e.TreasuryStatementsPage;exports.TreasuryTaxLetterPage=e.TreasuryTaxLetterPage;exports.TreasuryTransferOrReviewPage=e.TreasuryTransferOrReviewPage;exports.TrendChart=e.TrendChart;exports.UncategorizedAccountsMappingPage=e.UncategorizedAccountsMappingPage;exports.UnitIntegrationPage=e.UnitIntegrationPage;exports.VENDOR_CHIP_ID_PREFIX=e.VENDOR_CHIP_ID_PREFIX;exports.Vendor2FAPopup=e.Vendor2FAPopup;exports.VendorACHDetailsPage=e.VendorACHDetailsPage;exports.VendorAccruedSchedulesPage=e.VendorAccruedSchedulesPage;exports.VendorDetailPage=e.VendorDetailPage;exports.VendorDomesticWireDetailsPage=e.VendorDomesticWireDetailsPage;exports.VendorFiling1099DetailsEditablePage=e.VendorFiling1099DetailsEditablePage;exports.VendorFiling1099EditableFormSkeleton=e.VendorFiling1099EditableFormSkeleton;exports.VendorFiling1099ListPage=e.VendorFiling1099ListPage;exports.VendorFirstReviewPage=e.VendorFirstReviewPage;exports.VendorInternationalSwiftBasedDetailsPage=e.VendorInternationalSwiftBasedDetailsPage;exports.VendorInternationalWireDetailsPage=e.VendorInternationalWireDetailsPage;exports.VendorListPage=e.VendorListPage;exports.VendorSchedulesPage=e.VendorSchedulesPage;exports.VerificationFrame=e.VerificationFrame;exports.VerifyDevice=e.VerifyDevice;exports.VerifyUnlockFinancialStackPage=e.VerifyUnlockFinancialStackPage;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WelcomeAnimation=e.WelcomeAnimation;exports.WindowSizeProvider=e.WindowSizeProvider;exports.ZeniAccountDetailLoading=e.ZeniAccountDetailLoading;exports.ZeniAccountDetailNavBarTitleShimmer=e.ZeniAccountDetailNavBarTitleShimmer;exports.ZeniAccountDetailPage=e.ZeniAccountDetailPage;exports.ZeniAccountListLoading=e.ZeniAccountListLoading;exports.ZeniAccountListViewPage=e.ZeniAccountListViewPage;exports.ZeniAccountPromoPage=e.ZeniAccountPromoPage;exports.ZeniAccountSetUpPage=e.ZeniAccountSetUpPage;exports.ZeniText=e.ZeniText;exports.ZeniThemeProvider=e.ZeniThemeProvider;exports.alignToJustify=e.alignToJustify;exports.amountToString=e.amountToString;exports.amountValueToString=e.amountValueToString;exports.appLocale=e.appLocale;exports.applyExtractedPolicyRulesToFormValues=e.applyExtractedPolicyRulesToFormValues;exports.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm=e.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm;exports.buildCardPolicyFormValuesFromRequest=e.buildCardPolicyFormValuesFromRequest;exports.buildCreateCardPolicyTemplateRequest=e.buildCreateCardPolicyTemplateRequest;exports.buildCreateCardPolicyTemplateRequestFromInteractiveForm=e.buildCreateCardPolicyTemplateRequestFromInteractiveForm;exports.buildMccCategoryChipId=e.buildMccCategoryChipId;exports.buildStickyKeySet=e.buildStickyKeySet;exports.buildVendorChipId=e.buildVendorChipId;exports.buildVoidInvoiceSubmitBody=e.buildVoidInvoiceSubmitBody;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.clickableRowStyles=e.clickableRowStyles;exports.computeStatementProcessingStepsFromElapsedTime=e.computeStatementProcessingStepsFromElapsedTime;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.defaultCardPolicyFormValues=e.defaultCardPolicyFormValues;exports.formatReconAccountDisplayName=e.formatReconAccountDisplayName;exports.getAlpha2=e.getAlpha2;exports.getAlpha3=e.getAlpha3;exports.getColorForALabel=e.getColorForALabel;exports.getCountries=e.getCountries;exports.getCustomerDataFromAutoComplete=e.getCustomerDataFromAutoComplete;exports.getFullName=e.getFullName;exports.getInitialOpenThreadRequestFromSearch=e.getInitialOpenThreadRequestFromSearch;exports.getRecipientTotalAmount=e.getRecipientTotalAmount;exports.getReconAccountDisplayName=e.getReconAccountDisplayName;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.getStatementParseTransactionCount=e.getStatementParseTransactionCount;exports.invoicingMenuList=e.invoicingMenuList;exports.isBackdatedInvoiceDate=e.isBackdatedInvoiceDate;exports.isCloseManagementMenu=e.isCloseManagementMenu;exports.isClosedCardStatus=e.isClosedCardStatus;exports.isCollaborationEntityType=e.isCollaborationEntityType;exports.isCommentNotificationKind=e.isCommentNotificationKind;exports.isMobileOrTabletView=e.isMobileOrTabletView;exports.isMobilePhoneScreen=e.isMobilePhoneScreen;exports.lightColors=e.lightColors;exports.lightTheme=e.lightTheme;exports.menuList=e.menuList;exports.mergeColumnDeclarativeWithRenderers=e.mergeColumnDeclarativeWithRenderers;exports.mergeLayoutDefaults=e.mergeLayoutDefaults;exports.percentValueToString=e.percentValueToString;exports.resolveBackgroundStatementProcessingCompletedSteps=e.resolveBackgroundStatementProcessingCompletedSteps;exports.resolveColumnWidth=e.resolveColumnWidth;exports.roundAmountIfNeeded=e.roundAmountIfNeeded;exports.roundOffNumberToTwoDecimal=e.roundOffNumberToTwoDecimal;exports.setAutoLogoutContext=e.setAutoLogoutContext;exports.setShowNegativeAmountInParenthesisDefaultValue=e.setShowNegativeAmountInParenthesisDefaultValue;exports.setShowNegativeAmountInParenthesisForPercentDefaultValue=e.setShowNegativeAmountInParenthesisForPercentDefaultValue;exports.settingMenuList=e.settingMenuList;exports.shouldDefaultAdjustmentCreditNote=e.shouldDefaultAdjustmentCreditNote;exports.sp=e.sp;exports.textAlignForCell=e.textAlignForCell;exports.textStyles=e.textStyles;exports.toInstitutionLogoDataUri=e.toInstitutionLogoDataUri;exports.toInvoicingMenuOptionType=e.toInvoicingMenuOptionType;exports.toInvoicingMenuOptionTypeStrict=e.toInvoicingMenuOptionTypeStrict;exports.toMccCategoryChipFieldValue=e.toMccCategoryChipFieldValue;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.toVendorChipFieldValue=e.toVendorChipFieldValue;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useApprovalRulesV3Config=e.useApprovalRulesV3Config;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useExpenseAutomationEnabledForUser=e.useExpenseAutomationEnabledForUser;exports.useFieldHelp=e.useFieldHelp;exports.useGlobalInfoContext=e.useGlobalInfoContext;exports.useLockBodyScroll=e.useLockBodyScroll;exports.usePanelInternal=e.usePanelInternal;exports.usePrevious=e.usePrevious;exports.useQuickViewMode=e.useQuickViewMode;exports.useRegisterBackHandler=e.useRegisterBackHandler;exports.useRequestCloseAllCommentDrawers=e.useRequestCloseAllCommentDrawers;exports.useSchedulePanelInternal=e.useSchedulePanelInternal;exports.useSessionAutoLogoutConfig=e.useSessionAutoLogoutConfig;exports.useSidePanelContext=e.useSidePanelContext;exports.useToolkitContext=e.useToolkitContext;exports.useTransactionPanelInternal=e.useTransactionPanelInternal;exports.useWindowSizeContext=e.useWindowSizeContext;exports.useZeniCardsVisibilityConfig=e.useZeniCardsVisibilityConfig;exports.useZeniFeatureContext=e.useZeniFeatureContext;exports.useZeniThemeContext=e.useZeniThemeContext;exports.waitFor=e.waitFor;exports.useZeniTheme=a.useTheme;exports.zeniStyled=a.styled;Object.defineProperty(exports,"buildInvoicingEntityPath",{enumerable:!0,get:()=>i.buildInvoicingEntityPath});Object.defineProperty(exports,"isInvoicingEntityLinkable",{enumerable:!0,get:()=>i.isInvoicingEntityLinkable});exports.zeniEmotionStyled=t;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./SessionTimeoutPopup-DUYe7WC6.cjs"),a=require("./vendor-.pnpm-BGlYY3q9.cjs"),i=require("@zeniai/client-epic-state"),t=require("@emotion/styled");exports.AIAgentsActivatingPage=e.AIAgentsActivatingPage;exports.AIIconButton=e.AIIconButton;exports.AIPerformancePage=e.AIPerformancePage;exports.ALL_AI_CFO_MENU_OPTIONS=e.ALL_AI_CFO_MENU_OPTIONS;exports.ALL_INVOICING_MENU_GROUPS=e.ALL_INVOICING_MENU_GROUPS;exports.ALL_INVOICING_MENU_OPTIONS=e.ALL_INVOICING_MENU_OPTIONS;exports.ALL_SETTINGS_MENU_OPTIONS=e.ALL_SETTINGS_MENU_OPTIONS;exports.APP_DRAWER_CONTENT_WIDTH_PX=e.APP_DRAWER_CONTENT_WIDTH_PX;exports.AccountInfoPage=e.AccountInfoPage;exports.AccountLockedInfoModal=e.AccountLockedInfoModal;exports.AccountReconDetailsDrawerPage=e.AccountReconDetailsDrawerPage;exports.AccountReconDetailsDrawerPageV2=e.AccountReconDetailsDrawerPage$1;exports.ActivityIndicator=e.ActivityIndicator;exports.AddAddressForCardDrawer=e.AddAddressForCardDrawer;exports.AddToWalletPage=e.AddToWalletPage;exports.AddressFormPage=e.AddressFormPage;exports.AgingReportsPage=e.AgingReportsPage;exports.AiCfoChatHeader=e.AiCfoChatHeader;exports.AiCfoMenuContent=e.AiCfoMenuContent;exports.AiCfoOnboardingPage=e.AiCfoOnboardingPage;exports.AiCfoPage=e.AiCfoPage;exports.AiCfoScopeModal=e.AiCfoScopeModal;exports.AiCfoScopeModalScrollBody=e.AiCfoScopeModalScrollBody;exports.AiCfoSidePanel=e.AiCfoSidePanel;exports.AiCfoSkillsBrowser=e.AiCfoSkillsBrowser;exports.AiFinanceTeamReadyPage=e.AiFinanceTeamReadyPage;exports.AllowBlockChipPicker=e.AllowBlockChipPicker;exports.AnalyticsOnLoad=e.AnalyticsOnLoad;exports.ApAgingDetailPage=e.ApAgingDetailPage;exports.AppBasePage=e.AppBasePage;exports.AppDrawerContent=e.AppDrawerContent;exports.AppDrawerHeightMobile=e.AppDrawerHeightMobile;exports.ApprovalRulesSettingsPage=e.ApprovalRulesSettingsPage;exports.ArAgingDetailPage=e.ArAgingDetailPage;exports.AskAiCfoNavButton=e.AskAiCfoNavButton;exports.AskAiCfoNavButtonWhenEnabled=e.AskAiCfoNavButtonWhenEnabled;exports.AttachmentView=e.AttachmentView;exports.AutoTransferRulePage=e.AutoTransferRulePage;exports.BackNavigationProvider=e.BackNavigationProvider;exports.BankConnectionsSettingsPage=e.BankConnectionsSettingsPage;exports.BillDetailPage=e.BillDetailPage;exports.BillDetailPageSkeleton=e.BillDetailPageSkeleton;exports.BillPayApprovalRuleDetailPage=e.BillPayApprovalRuleDetailPage;exports.BillPayApprovalRuleDetailPageV1=e.BillPayApprovalRuleDetailPage$1;exports.BillPayApprovalRulesPage=e.BillPayApprovalRulesPage;exports.BillPayApprovalRulesPageV1=e.BillPayApprovalRulesPage$1;exports.BillPayPromoPage=e.BillPayPromoPage;exports.BillPaySetUpLoading=e.SpendManagementSetUpLoading;exports.BillPaySetUpPage=e.BillPaySetUpPage;exports.BillingSettingsPage=e.BillingSettingsPage;exports.BillsBulkReviewDrawerPage=e.BillsBulkReviewDrawerPage;exports.BusinessVerificationPage=e.BusinessVerificationPage;exports.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT=e.CARD_POLICY_LIMIT_ROW_ID_REQUIRE_RECEIPT;exports.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION=e.CARD_POLICY_LIMIT_ROW_ID_TRANSACTION;exports.COMMAND_CENTER_SUBMENU_TYPES=e.COMMAND_CENTER_SUBMENU_TYPES;exports.COMMENT_NOTIFICATION_KINDS=e.COMMENT_NOTIFICATION_KINDS;exports.CapitalizationOnboardingPopup=e.CapitalizationOnboardingPopup;exports.CapitalizationSettingsSection=e.CapitalizationSettingsSection;exports.CardPolicyCreatePage=e.CardPolicyCreatePage;exports.CardPolicyEditPage=e.CardPolicyEditPage;exports.CardPolicyFormPageSkeleton=e.CardPolicyFormPageSkeleton;exports.CardPolicyFormSections=e.CardPolicyFormSections;exports.CardPolicyListPage=e.CardPolicyListPage;exports.CardPolicyListPageSkeleton=e.CardPolicyListPageSkeleton;exports.CardPolicyListRow=e.CardPolicyListRow;exports.CardPolicyListSkeletonRow=e.CardPolicyListSkeletonRow;exports.CardPolicyManualEmptyState=e.CardPolicyManualEmptyState;exports.CardsAiCfoHero=e.CardsAiCfoHero;exports.CardsShutdownBanner=e.CardsShutdownBanner;exports.CashbackDetailLoading=e.CashbackDetailLoading;exports.CashbackDetailPage=e.CashbackDetailPage;exports.ChargeCardCVVActivate=e.ChargeCardCVVActivate;exports.ChargeCardDetailLoading=e.ChargeCardDetailLoading;exports.ChargeCardDetailPage=e.ChargeCardDetailPage;exports.ChargeCardListLoading=e.ChargeCardListLoading;exports.ChargeCardListPage=e.ChargeCardListPage;exports.ChargeCardListSkeletonRow=e.ChargeCardListSkeletonRow;exports.ChargeCardPaymentHistoryPage=e.ChargeCardPaymentHistoryPage;exports.ChargeCardPromoPage=e.ChargeCardPromoPage;exports.ChargeCardPromoPageSkeleton=e.ChargeCardPromoPageSkeleton;exports.ChargeCardSetUpPage=e.ChargeCardSetUpPage;exports.ChargeCardSetupLoading=e.SpendManagementSetUpLoading;exports.ChargeCardStatementsLoading=e.ChargeCardStatementsLoading;exports.ChargeCardStatementsPage=e.ChargeCardStatementsPage;exports.ChargeCardUserOnboardingPromoPage=e.ChargeCardUserOnboardingPromoPage;exports.ChargeCardUserOnboardingPromoPageSkeleton=e.ChargeCardUserOnboardingPromoPageSkeleton;exports.CheckDepositDrawerPage=e.CheckDepositDrawerPage;exports.ClickableRow=e.ClickableRow;exports.CollaborationGlobalStyles=e.CollaborationGlobalStyles;exports.CollaborationProvider=e.CollaborationProvider;exports.CollaborationRoomProvider=e.CollaborationRoomProvider;exports.Colors=e.Colors;exports.CommentsAndNotesCount=e.CommentsAndNotesCount;exports.CommentsDrawerProvider=e.CommentsDrawerProvider;exports.CompanyOfficerOnboardingDetailsSection=e.CompanyOfficerOnboardingDetailsSection;exports.CompanyOnboardingDetailsSection=e.CompanyOnboardingDetailsSection;exports.CompanyPassportCard=e.CompanyPassportCard;exports.CompanyPassportPage=e.CompanyPassportPage;exports.CompleteProfile=e.CompleteProfile;exports.ConfettiBurst=e.ConfettiBurst;exports.ConfirmationPopup=e.ConfirmationPopup;exports.ConnectDataSourcesPage=e.ConnectDataSourcesPage;exports.CreateOrEditVendorPage=e.CreateOrEditVendorPage;exports.CreateOrEditVendorPageSkeleton=e.CreateOrEditVendorPageSkeleton;exports.CreatedEntitiesAnswer=e.CreatedEntitiesAnswer;exports.CreatingEntitiesAnswerLoading=e.CreatingEntitiesAnswerLoading;exports.CreditCardPaymentDrawerPage=e.CreditCardPaymentDrawerPage;exports.CustomerOnboardingContainerPage=e.CustomerOnboardingContainerPage;exports.CustomerOnboardingNoStepsPage=e.CustomerOnboardingNoStepsPage;exports.CustomerOnboardingPage=e.CustomerOnboardingPage;exports.CustomerOnboardingProductSuitePage=e.CustomerOnboardingProductSuitePage;exports.Dashboard=e.Dashboard;exports.DashboardReportPage=e.DashboardReportPage;exports.DashboardSidebarLogoAnimation=e.DashboardSidebarLogoAnimation;exports.DataListTable=e.DataListTable;exports.DataListTableHeader=e.DataListTableHeader;exports.DataListTableRow=e.DataListTableRow;exports.DataListTableSortIndicator=e.DataListTableSortIndicator;exports.DebitCardSetPin=e.DebitCardSetPin;exports.DropdownPortalContext=e.DropdownPortalContext;exports.EditPeoplePage=e.EditPeoplePage;exports.EditReimbursementDetailPage=e.EditReimbursementDetailPage;exports.EditableBillDetailPage=e.EditableBillDetailPage;exports.EntityDetailPage=e.EntityDetailPage;exports.ErrorBoundaryWrapper=e.ErrorBoundaryWrapper;exports.ExcludedAccountReconDetailsDrawerPage=e.ExcludedAccountReconDetailsDrawerPage;exports.ExpenseAutomationOverviewPage=e.ExpenseAutomationOverviewPage;exports.ExpenseAutomationOverviewPageSkeleton=e.ExpenseAutomationOverviewPageSkeleton;exports.ExpenseAutomationPage=e.ExpenseAutomationPage;exports.ExpressPayPage=e.ExpressPayPage;exports.FeatureDynamicConfigNames=e.DynamicConfigNames;exports.FeatureGatesNames=e.FeatureGatesNames;exports.FeaturePreviewPage=e.FeaturePreviewPage;exports.FeatureProvider=e.FeatureProvider;exports.FieldHelpIcon=e.FieldHelpIcon;exports.FieldHelpProvider=e.FieldHelpProvider;exports.FirstReviewVendorDetailPage=e.FirstReviewVendorDetailPage;exports.FontWeight=e.FontWeight;exports.GlobalInfoProvider=e.GlobalInfoProvider;exports.GlobalReviewListPage=e.GlobalReviewListPage;exports.INVOICING_SETTINGS_NAV_SECTIONS=e.INVOICING_SETTINGS_NAV_SECTIONS;exports.INVOICING_SETTINGS_TABS=e.INVOICING_SETTINGS_TABS;exports.InformationCardStack=e.InformationCardStack;exports.InitialCollaborationProvider=e.InitialCollaborationProvider;exports.InsightsCardStack=e.InsightCardStack;exports.IntegrationCardView=e.IntegrationCardView;exports.IntegrationsCardGrid=e.IntegrationsCardGrid;exports.IntegrationsSection=e.IntegrationsSection;exports.IntegrationsSettingsPage=e.IntegrationsSettingsPage;exports.InternationalWireVerificationPage=e.InternationalWireVerificationPage;exports.InviteFormPage=e.InviteFormPage;exports.InvitePageListView=e.InvitePageListView;exports.InvitePeoplePage=e.InvitePeoplePage;exports.InvoiceUploadSection=e.InvoiceUploadSection;exports.InvoiceUploadSectionSkeleton=e.InvoiceUploadSectionSkeleton;exports.InvoicingAddPaymentMethodDialog=e.InvoicingAddPaymentMethodDialog;exports.InvoicingAuditLogPage=e.InvoicingAuditLogPage;exports.InvoicingBrandingSettingsPage=e.InvoicingBrandingSettingsPage;exports.InvoicingCatalogItemDetailPage=e.InvoicingCatalogItemDetailPage;exports.InvoicingCatalogItemFormPage=e.InvoicingCatalogItemFormPage;exports.InvoicingCatalogPage=e.InvoicingCatalogPage;exports.InvoicingCouponFormPage=e.InvoicingCouponFormPage;exports.InvoicingCreateInvoicePage=e.InvoicingCreateInvoicePage;exports.InvoicingCreateInvoiceSkeleton=e.InvoicingCreateInvoiceSkeleton;exports.InvoicingCreatePromotionalCreditsDialog=e.InvoicingCreatePromotionalCreditsDialog;exports.InvoicingCreditDetailPage=e.InvoicingCreditDetailPage;exports.InvoicingCreditListPage=e.InvoicingCreditListPage;exports.InvoicingCustomerDetailPage=e.InvoicingCustomerDetailPage;exports.InvoicingCustomerFormPage=e.InvoicingCustomerFormPage;exports.InvoicingCustomerListPage=e.InvoicingCustomerListPage;exports.InvoicingDashboardSkeleton=e.InvoicingDashboardSkeleton;exports.InvoicingDataImportDetailPage=e.InvoicingDataImportDetailPage;exports.InvoicingDataImportHubPage=e.InvoicingDataImportHubPage;exports.InvoicingDataImportMigratePage=e.InvoicingDataImportMigratePage;exports.InvoicingDetailScaffold=e.InvoicingDetailScaffold;exports.InvoicingDiscountDetailPage=e.InvoicingDiscountDetailPage;exports.InvoicingDiscountListPage=e.InvoicingDiscountListPage;exports.InvoicingDunningDetailPage=e.InvoicingDunningDetailPage;exports.InvoicingDunningEmailComposerDialog=e.InvoicingDunningEmailComposerDialog;exports.InvoicingDunningListPage=e.InvoicingDunningListPage;exports.InvoicingDunningSettingsPage=e.InvoicingDunningSettingsPage;exports.InvoicingEmptyState=e.InvoicingEmptyState;exports.InvoicingIntegrationsSettingsPage=e.InvoicingIntegrationsSettingsPage;exports.InvoicingInvoiceDetailPage=e.InvoicingInvoiceDetailPage;exports.InvoicingInvoiceListPage=e.InvoicingInvoiceListPage;exports.InvoicingIssueCreditNotePage=e.InvoicingIssueCreditNotePage;exports.InvoicingOverviewPage=e.InvoicingOverviewPage;exports.InvoicingPaymentDestinationSettingsPage=e.InvoicingPaymentDestinationSettingsPage;exports.InvoicingPaymentLinkPage=e.InvoicingPaymentLinkPage;exports.InvoicingPaymentListPage=e.InvoicingPaymentListPage;exports.InvoicingPromoPage=e.InvoicingPromoPage;exports.InvoicingQBOSettingsPage=e.InvoicingQBOSettingsPage;exports.InvoicingRecordPaymentPage=e.InvoicingRecordPaymentPage;exports.InvoicingSettingsHubPage=e.InvoicingSettingsHubPage;exports.InvoicingSettingsPage=e.InvoicingSettingsHubPage;exports.InvoicingSubscriptionDetailPage=e.InvoicingSubscriptionDetailPage;exports.InvoicingSubscriptionFormPage=e.InvoicingSubscriptionFormPage;exports.InvoicingSubscriptionListPage=e.InvoicingSubscriptionListPage;exports.InvoicingTransactionDetailPage=e.InvoicingTransactionDetailPage;exports.InvoicingVoidInvoiceDialog=e.InvoicingVoidInvoiceDialog;exports.IssueChargeCardPage=e.IssueChargeCardPage;exports.IssueChargeCardPageSkeleton=e.IssueChargeCardPageSkeleton;exports.LinkBillExpensePage=e.LinkBillExpensePage;exports.LinkJETransactionPage=e.LinkJETransactionPage;exports.Loader=e.Loader;exports.LogoutButton=e.LogoutButton;exports.MCC_CHIP_ID_PREFIX=e.MCC_CHIP_ID_PREFIX;exports.MagicLinkDomesticWireDetailsPage=e.MagicLinkDomesticWireDetailsPage;exports.MagicLinkInternationalWireDetailsPage=e.MagicLinkInternationalWireDetailsPage;exports.MagicLinkSuccessPage=e.MagicLinkSuccessPage;exports.MagicLinkVendorACHDetailsPage=e.MagicLinkVendorACHDetailsPage;exports.Modal=e.Modal;exports.MonthEndEmailDrawerCustomerRequestPage=e.MonthEndEmailDrawerCustomerRequestPage;exports.MyBankConnectionsSettingsPage=e.MyBankConnectionsSettingsPage;exports.MyPendingActivationChargeCardListPage=e.MyPendingActivationChargeCardListPage;exports.MyProfileSettingsPage=e.MyProfileSettingsPage;exports.NavBar=e.NavBar;exports.NavBarRightRowStyled=e.NavBarRightRowStyled;exports.NewGlobalMerchantPage=e.NewGlobalMerchantPage;exports.NewUpdateAvailablePage=e.NewUpdateAvailablePage;exports.NotFoundPage=e.NotFoundPage;exports.NotificationIcon=e.SvgNotification;exports.NotificationSettingsPage=e.NotificationSettingsPage;exports.NotificationsPage=e.NotificationsPage;exports.OAuthConsentPage=e.OAuthConsentPage;exports.OnboardingInitialLoader=e.OnboardingInitialLoader;exports.OnboardingSidebar=e.OnboardingSidebar;exports.OnboardingStepFrame=e.OnboardingStepFrame;exports.OpExByVendorPage=e.OpExByVendorPage;exports.OverlayContainerPage=e.OverlayContainerPage;exports.PandLWithForecastPage=e.PandLWithForecastPage;exports.PanelInternalContext=e.PanelInternalContext;exports.PaymentAccountSetupBillingAddressSection=e.PaymentAccountSetupBillingAddressSection;exports.PeoplePage=e.PeoplePage;exports.Picker=e.Picker;exports.PolicyLimitsRowList=e.PolicyLimitsRowList;exports.PolicyModeSelector=e.PolicyModeSelector;exports.PortfolioAllocationFormPage=e.PortfolioAllocationFormPage;exports.QBOConnectionDialog=e.QBOConnectionDialog;exports.QBOSetupSectionWithForm=e.QBOSetupSectionWithForm;exports.QuickResponsesPage=e.QuickResponsesPage;exports.QuickViewModeContext=e.QuickViewModeContext;exports.RIGHT_SIDE_PANEL_WIDTH_PX=e.RIGHT_SIDE_PANEL_WIDTH_PX;exports.ReferralDrawerPage=e.DrawerPage;exports.ReimbursementApprovalRuleDetailPage=e.ReimbursementApprovalRuleDetailPage;exports.ReimbursementApprovalRuleDetailPageV1=e.ReimbursementApprovalRuleDetailPage$1;exports.ReimbursementApprovalRulesPage=e.ReimbursementApprovalRulesPage;exports.ReimbursementApprovalRulesPageV1=e.ReimbursementApprovalRulesPage$1;exports.ReimbursementDetailPage=e.ReimbursementDetailPage;exports.ReimbursementDetailPageSkeleton=e.ReimbursementDetailPageSkeleton;exports.ReimbursementPromoPage=e.ReimbursementPromoPage;exports.ReimbursementSetUpLoading=e.SpendManagementSetUpLoading;exports.ReimbursementSetUpPage=e.RemiSetupPage;exports.RemisBulkReviewDrawerPage=e.ReimbursementsBulkReviewDrawerPage;exports.ReportsPage=e.ReportsPage;exports.ResponsiveSized=e.ResponsiveSized;exports.ReviewBillDetailsPage=e.ReviewBillDetailsPage;exports.ReviewConfirmTransferPanel=e.ReviewConfirmTransferPanel;exports.ReviewDetailsPageSkeleton=e.ReviewDetailsPageSkeleton;exports.ScheduleDetailSkeleton=e.ScheduleDetailSkeleton;exports.ScheduleDetailsAccruedExpensesPage=e.ScheduleDetailsAccruedExpensesPage;exports.ScheduleDetailsFixedAssetsPage=e.ScheduleDetailsFixedAssetsPage;exports.ScheduleDetailsPage=e.ScheduleDetailsPage;exports.SchedulePanelInternalContext=e.SchedulePanelInternalContext;exports.SearchableCheckboxCardList=e.SearchableCheckboxCardList;exports.SessionTimeoutPopup=e.SessionTimeoutPopup;exports.SidePanelContext=e.SidePanelContext;exports.SidePanelProvider=e.SidePanelProvider;exports.SignIn=e.SignIn;exports.SomethingWrongPage=e.SomethingWrongPage;exports.Space=e.Space;exports.SpendManagementListLoading=e.SpendManagementListLoading;exports.SpendManagementListViewPage=e.SpendManagementListViewPage;exports.StatementParseInfo=e.StatementParseInfoEntry;exports.StatementProcessingPage=e.StatementProcessingPage;exports.StatementsPage=e.StatementsPage;exports.StyledCapsule=e.StyledCapsule;exports.SubscriptionDetailPage=e.SubscriptionDetailPage;exports.SubscriptionSummaryPage=e.SubscriptionSummaryPage;exports.SyntheticAiCfoAnswerView=e.SyntheticAiCfoAnswerView;exports.THREAD_RESOLVED_NOTIFICATION_KIND=e.THREAD_RESOLVED_NOTIFICATION_KIND;exports.THREAD_UNRESOLVED_NOTIFICATION_KIND=e.THREAD_UNRESOLVED_NOTIFICATION_KIND;exports.TaskDetailPage=e.TaskDetailPage;exports.TaskManagementPage=e.TaskManagementPage;exports.TenantsDropDown=e.TenantsDropDown;exports.TextStyle=e.TextStyle;exports.ToolkitProvider=e.ToolkitProvider;exports.TopExDetailPage=e.TopExDetailPage;exports.TransactionActivityLogPage=e.TransactionActivityLogPage;exports.TransactionActivityLogPanel=e.TransactionActivityLogPanel;exports.TransactionDetailPage=e.TransactionDetailPage;exports.TransactionDetailSkeleton=e.TransactionDetailSkeleton;exports.TransactionListBig=e.TransactionListBig;exports.TransactionListComments=e.TransactionListComments;exports.TransactionListPage=e.TransactionListPage;exports.TransactionPanelInternalContext=e.TransactionPanelInternalContext;exports.TransactionSidePanelLayout=e.TransactionSidePanelLayout;exports.TransactionVendorDetailPage=e.TransactionVendorDetailPage;exports.TransferDrawerPage=e.TransferDrawerPage;exports.TreasuryOverviewPage=e.TreasuryOverviewPage;exports.TreasuryPromoPage=e.TreasuryPromoPage;exports.TreasurySetUpPage=e.TreasurySetUpPage;exports.TreasuryStatementsPage=e.TreasuryStatementsPage;exports.TreasuryTaxLetterPage=e.TreasuryTaxLetterPage;exports.TreasuryTransferOrReviewPage=e.TreasuryTransferOrReviewPage;exports.TrendChart=e.TrendChart;exports.UncategorizedAccountsMappingPage=e.UncategorizedAccountsMappingPage;exports.UnitIntegrationPage=e.UnitIntegrationPage;exports.VENDOR_CHIP_ID_PREFIX=e.VENDOR_CHIP_ID_PREFIX;exports.Vendor2FAPopup=e.Vendor2FAPopup;exports.VendorACHDetailsPage=e.VendorACHDetailsPage;exports.VendorAccruedSchedulesPage=e.VendorAccruedSchedulesPage;exports.VendorDetailPage=e.VendorDetailPage;exports.VendorDomesticWireDetailsPage=e.VendorDomesticWireDetailsPage;exports.VendorFiling1099DetailsEditablePage=e.VendorFiling1099DetailsEditablePage;exports.VendorFiling1099EditableFormSkeleton=e.VendorFiling1099EditableFormSkeleton;exports.VendorFiling1099ListPage=e.VendorFiling1099ListPage;exports.VendorFirstReviewPage=e.VendorFirstReviewPage;exports.VendorInternationalSwiftBasedDetailsPage=e.VendorInternationalSwiftBasedDetailsPage;exports.VendorInternationalWireDetailsPage=e.VendorInternationalWireDetailsPage;exports.VendorListPage=e.VendorListPage;exports.VendorSchedulesPage=e.VendorSchedulesPage;exports.VerificationFrame=e.VerificationFrame;exports.VerifyDevice=e.VerifyDevice;exports.VerifyUnlockFinancialStackPage=e.VerifyUnlockFinancialStackPage;exports.WebV2MicroService=e.WebV2MicroService;exports.WebV2MicroServiceProvider=e.WebV2MicroServiceProvider;exports.WelcomeAnimation=e.WelcomeAnimation;exports.WindowSizeProvider=e.WindowSizeProvider;exports.ZeniAccountDetailLoading=e.ZeniAccountDetailLoading;exports.ZeniAccountDetailNavBarTitleShimmer=e.ZeniAccountDetailNavBarTitleShimmer;exports.ZeniAccountDetailPage=e.ZeniAccountDetailPage;exports.ZeniAccountListLoading=e.ZeniAccountListLoading;exports.ZeniAccountListViewPage=e.ZeniAccountListViewPage;exports.ZeniAccountPromoPage=e.ZeniAccountPromoPage;exports.ZeniAccountSetUpPage=e.ZeniAccountSetUpPage;exports.ZeniText=e.ZeniText;exports.ZeniThemeProvider=e.ZeniThemeProvider;exports.alignToJustify=e.alignToJustify;exports.amountToString=e.amountToString;exports.amountValueToString=e.amountValueToString;exports.appLocale=e.appLocale;exports.applyExtractedPolicyRulesToFormValues=e.applyExtractedPolicyRulesToFormValues;exports.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm=e.buildBulkCreateCardPolicyTemplateRequestsFromInteractiveForm;exports.buildCardPolicyFormValuesFromRequest=e.buildCardPolicyFormValuesFromRequest;exports.buildCreateCardPolicyTemplateRequest=e.buildCreateCardPolicyTemplateRequest;exports.buildCreateCardPolicyTemplateRequestFromInteractiveForm=e.buildCreateCardPolicyTemplateRequestFromInteractiveForm;exports.buildMccCategoryChipId=e.buildMccCategoryChipId;exports.buildStickyKeySet=e.buildStickyKeySet;exports.buildVendorChipId=e.buildVendorChipId;exports.buildVoidInvoiceSubmitBody=e.buildVoidInvoiceSubmitBody;exports.cellVerticalAlignToFlexAlign=e.cellVerticalAlignToFlexAlign;exports.clearAutoLogoutContext=e.clearAutoLogoutContext;exports.clickableRowStyles=e.clickableRowStyles;exports.computeStatementProcessingStepsFromElapsedTime=e.computeStatementProcessingStepsFromElapsedTime;exports.computeStickyLeftOffsets=e.computeStickyLeftOffsets;exports.darkColors=e.darkColors;exports.darkTheme=e.darkTheme;exports.dashboardCardDimension=e.designDimension;exports.defaultCardPolicyFormValues=e.defaultCardPolicyFormValues;exports.formatReconAccountDisplayName=e.formatReconAccountDisplayName;exports.getAlpha2=e.getAlpha2;exports.getAlpha3=e.getAlpha3;exports.getColorForALabel=e.getColorForALabel;exports.getCountries=e.getCountries;exports.getCustomerDataFromAutoComplete=e.getCustomerDataFromAutoComplete;exports.getFullName=e.getFullName;exports.getInitialOpenThreadRequestFromSearch=e.getInitialOpenThreadRequestFromSearch;exports.getRecipientTotalAmount=e.getRecipientTotalAmount;exports.getReconAccountDisplayName=e.getReconAccountDisplayName;exports.getShowNegativeAmountInParenthesisDefaultValue=e.getShowNegativeAmountInParenthesisDefaultValue;exports.getShowNegativeAmountInParenthesisForPercentDefaultValue=e.getShowNegativeAmountInParenthesisForPercentDefaultValue;exports.getStableTransactionId=e.getStableTransactionId;exports.getStatementParseTransactionCount=e.getStatementParseTransactionCount;exports.invoicingMenuList=e.invoicingMenuList;exports.isBackdatedInvoiceDate=e.isBackdatedInvoiceDate;exports.isCloseManagementMenu=e.isCloseManagementMenu;exports.isClosedCardStatus=e.isClosedCardStatus;exports.isCollaborationEntityType=e.isCollaborationEntityType;exports.isCommentNotificationKind=e.isCommentNotificationKind;exports.isMobileOrTabletView=e.isMobileOrTabletView;exports.isMobilePhoneScreen=e.isMobilePhoneScreen;exports.lightColors=e.lightColors;exports.lightTheme=e.lightTheme;exports.menuList=e.menuList;exports.mergeColumnDeclarativeWithRenderers=e.mergeColumnDeclarativeWithRenderers;exports.mergeLayoutDefaults=e.mergeLayoutDefaults;exports.percentValueToString=e.percentValueToString;exports.resolveBackgroundStatementProcessingCompletedSteps=e.resolveBackgroundStatementProcessingCompletedSteps;exports.resolveColumnWidth=e.resolveColumnWidth;exports.roundAmountIfNeeded=e.roundAmountIfNeeded;exports.roundOffNumberToTwoDecimal=e.roundOffNumberToTwoDecimal;exports.setAutoLogoutContext=e.setAutoLogoutContext;exports.setShowNegativeAmountInParenthesisDefaultValue=e.setShowNegativeAmountInParenthesisDefaultValue;exports.setShowNegativeAmountInParenthesisForPercentDefaultValue=e.setShowNegativeAmountInParenthesisForPercentDefaultValue;exports.settingMenuList=e.settingMenuList;exports.shouldDefaultAdjustmentCreditNote=e.shouldDefaultAdjustmentCreditNote;exports.sp=e.sp;exports.textAlignForCell=e.textAlignForCell;exports.textStyles=e.textStyles;exports.toInstitutionLogoDataUri=e.toInstitutionLogoDataUri;exports.toInvoicingMenuOptionType=e.toInvoicingMenuOptionType;exports.toInvoicingMenuOptionTypeStrict=e.toInvoicingMenuOptionTypeStrict;exports.toMccCategoryChipFieldValue=e.toMccCategoryChipFieldValue;exports.toMenuOptionType=e.toMenuOptionType;exports.toSettingsMenuOptionTypeStrict=e.toSettingsMenuOptionTypeStrict;exports.toSupportedLocaleStrict=e.toSupportedLocaleStrict;exports.toVendorChipFieldValue=e.toVendorChipFieldValue;exports.trackTreasuryTransferAnalytics=e.trackTreasuryTransferAnalytics;exports.uploadAttachmentReceipts=e.uploadAttachmentReceipts;exports.useApprovalRulesV3Config=e.useApprovalRulesV3Config;exports.useBackNavigation=e.useBackNavigation;exports.useCollaborationInfoContext=e.useCollaborationInfoContext;exports.useCommentsDrawer=e.useCommentsDrawer;exports.useDropdownPortal=e.useDropdownPortal;exports.useExpenseAutomationEnabledForUser=e.useExpenseAutomationEnabledForUser;exports.useFieldHelp=e.useFieldHelp;exports.useGlobalInfoContext=e.useGlobalInfoContext;exports.useLockBodyScroll=e.useLockBodyScroll;exports.usePanelInternal=e.usePanelInternal;exports.usePrevious=e.usePrevious;exports.useQuickViewMode=e.useQuickViewMode;exports.useRegisterBackHandler=e.useRegisterBackHandler;exports.useRequestCloseAllCommentDrawers=e.useRequestCloseAllCommentDrawers;exports.useSchedulePanelInternal=e.useSchedulePanelInternal;exports.useSessionAutoLogoutConfig=e.useSessionAutoLogoutConfig;exports.useSidePanelContext=e.useSidePanelContext;exports.useToolkitContext=e.useToolkitContext;exports.useTransactionPanelInternal=e.useTransactionPanelInternal;exports.useWindowSizeContext=e.useWindowSizeContext;exports.useZeniCardsVisibilityConfig=e.useZeniCardsVisibilityConfig;exports.useZeniFeatureContext=e.useZeniFeatureContext;exports.useZeniThemeContext=e.useZeniThemeContext;exports.waitFor=e.waitFor;exports.useZeniTheme=a.useTheme;exports.zeniStyled=a.styled;Object.defineProperty(exports,"buildInvoicingEntityPath",{enumerable:!0,get:()=>i.buildInvoicingEntityPath});Object.defineProperty(exports,"isInvoicingEntityLinkable",{enumerable:!0,get:()=>i.isInvoicingEntityLinkable});exports.zeniEmotionStyled=t;
|
package/dist/index.d.ts
CHANGED
|
@@ -589,6 +589,8 @@ export type { AiCfoSidePanelProps } from './components/aiCfo/AiCfoSidePanel';
|
|
|
589
589
|
export type { AiCfoOnboardingPageProps } from './components/aiCfo/AiCfoOnboardingPage';
|
|
590
590
|
export type { FileAttachment } from './components/aiCfo/components/AiCfoInput';
|
|
591
591
|
export { default as AiCfoChatHeader } from './components/aiCfo/components/AiCfoChatHeader';
|
|
592
|
+
export { default as AiCfoSkillsBrowser } from './components/aiCfo/components/AiCfoSkillsBrowser';
|
|
593
|
+
export type { AiCfoSkillsBrowserProps } from './components/aiCfo/components/AiCfoSkillsBrowser';
|
|
592
594
|
export type { AiCfoChatHeaderProps } from './components/aiCfo/components/AiCfoChatHeader';
|
|
593
595
|
export { default as CardsAiCfoHero } from './components/spendManagement/chargeCard/components/CardsAiCfoHero';
|
|
594
596
|
export type { CardsAiCfoHeroProps, CardsAiCfoHeroComposerProps, } from './components/spendManagement/chargeCard/components/CardsAiCfoHero';
|