@capitalos/react 1.6.0 → 1.7.0

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 CHANGED
@@ -1,52 +1,324 @@
1
- export { CardsApp } from './_tsup-dts-rollup.mjs';
2
- export { IssueCard } from './_tsup-dts-rollup.mjs';
3
- export { DisputeTransaction } from './_tsup-dts-rollup.mjs';
4
- export { BillPayApp } from './_tsup-dts-rollup.mjs';
5
- export { CardDetails } from './_tsup-dts-rollup.mjs';
6
- export { AccountDetails } from './_tsup-dts-rollup.mjs';
7
- export { AccountActions } from './_tsup-dts-rollup.mjs';
8
- export { ManageBankConnections } from './_tsup-dts-rollup.mjs';
9
- export { ConfigureAutoPay } from './_tsup-dts-rollup.mjs';
10
- export { PolicySettings } from './_tsup-dts-rollup.mjs';
11
- export { ConnectToVendors } from './_tsup-dts-rollup.mjs';
12
- export { ConnectBankAccounts } from './_tsup-dts-rollup.mjs';
13
- export { InsightsDashboard } from './_tsup-dts-rollup.mjs';
14
- export { InsightsWidget } from './_tsup-dts-rollup.mjs';
15
- export { Onboarding } from './_tsup-dts-rollup.mjs';
16
- export { MakePayment } from './_tsup-dts-rollup.mjs';
17
- export { ContactSupport } from './_tsup-dts-rollup.mjs';
18
- export { Statements } from './_tsup-dts-rollup.mjs';
19
- export { LegalDocuments } from './_tsup-dts-rollup.mjs';
20
- export { ReplaceCard } from './_tsup-dts-rollup.mjs';
21
- export { TerminateCard } from './_tsup-dts-rollup.mjs';
22
- export { Transactions } from './_tsup-dts-rollup.mjs';
23
- export { useActions } from './_tsup-dts-rollup.mjs';
24
- export { App } from './_tsup-dts-rollup.mjs';
25
- export { IssueCardResult } from './_tsup-dts-rollup.mjs';
26
- export { IssueCardProps } from './_tsup-dts-rollup.mjs';
27
- export { DisputeTransactionProps } from './_tsup-dts-rollup.mjs';
28
- export { BillPayAppProps } from './_tsup-dts-rollup.mjs';
29
- export { CardDetailsProps } from './_tsup-dts-rollup.mjs';
30
- export { AccountDetailsProps } from './_tsup-dts-rollup.mjs';
31
- export { AccountActionsProps } from './_tsup-dts-rollup.mjs';
32
- export { ManageBankConnectionsProps } from './_tsup-dts-rollup.mjs';
33
- export { ConfigureAutoPayProps } from './_tsup-dts-rollup.mjs';
34
- export { PolicySettingsProps } from './_tsup-dts-rollup.mjs';
35
- export { ConnectToVendorsProps } from './_tsup-dts-rollup.mjs';
36
- export { ApplicationStatus } from './_tsup-dts-rollup.mjs';
37
- export { BankAccount } from './_tsup-dts-rollup.mjs';
38
- export { ConnectBankAccountsResult } from './_tsup-dts-rollup.mjs';
39
- export { ConnectBankAccountsProps } from './_tsup-dts-rollup.mjs';
40
- export { InsightsDashboardProps } from './_tsup-dts-rollup.mjs';
41
- export { InsightsWidgetProps } from './_tsup-dts-rollup.mjs';
42
- export { MakePaymentProps } from './_tsup-dts-rollup.mjs';
43
- export { DevTools_alias_1 as DevTools } from './_tsup-dts-rollup.mjs';
44
- export { ContactSupportProps } from './_tsup-dts-rollup.mjs';
45
- export { StatementsProps } from './_tsup-dts-rollup.mjs';
46
- export { LegalDocumentsProps } from './_tsup-dts-rollup.mjs';
47
- export { ReplaceCardProps } from './_tsup-dts-rollup.mjs';
48
- export { TerminateCardProps } from './_tsup-dts-rollup.mjs';
49
- export { TransactionsProps } from './_tsup-dts-rollup.mjs';
50
- export { CapitalOsAuthenticationProvider } from './_tsup-dts-rollup.mjs';
51
- export { Logger } from './_tsup-dts-rollup.mjs';
52
- export { LogLevel } from './_tsup-dts-rollup.mjs';
1
+ "use client";
2
+
3
+ import React, { ReactNode } from "react";
4
+ import * as z$1 from "zod";
5
+ import { z } from "zod";
6
+ import "schemas";
7
+ import "utils";
8
+
9
+ //#region ../../client/common/rendering-context-schema.d.ts
10
+ declare const issueCardDefaultValuesSchema: z.ZodUnion<[z.ZodObject<{
11
+ firstName: z.ZodString;
12
+ lastName: z.ZodString;
13
+ phone: z.ZodString;
14
+ }, "strip", z.ZodTypeAny, {
15
+ firstName: string;
16
+ lastName: string;
17
+ phone: string;
18
+ }, {
19
+ firstName: string;
20
+ lastName: string;
21
+ phone: string;
22
+ }>, z.ZodObject<{
23
+ userId: z.ZodString;
24
+ }, "strip", z.ZodTypeAny, {
25
+ userId: string;
26
+ }, {
27
+ userId: string;
28
+ }>]>;
29
+ type IssueCardDefaultValues = z.infer<typeof issueCardDefaultValuesSchema>;
30
+
31
+ //#endregion
32
+ //#region ../../server/src/core/common.schema.d.ts
33
+
34
+ declare const accountStatusSchema: z$1.ZodEnum<["eligible", "ineligible", "engaged", "onboarding", "approved", "processing", "pending", "declined", "closed", "waiting"]>;
35
+ type AccountStatus = z$1.infer<typeof accountStatusSchema>; //#endregion
36
+ //#region src/types.d.ts
37
+ type ThemeColorScheme = 'light' | 'dark' | 'system';
38
+ declare const LogLevel: {
39
+ readonly log: "log";
40
+ readonly warn: "warn";
41
+ readonly error: "error";
42
+ };
43
+ type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
44
+ type Logger = {
45
+ [LogLevel.log]: (message: string) => void;
46
+ [LogLevel.warn]: (message: string) => void;
47
+ [LogLevel.error]: (message: string) => void;
48
+ };
49
+ type CommonProps = {
50
+ token?: string;
51
+ className?: string;
52
+ enableLogging?: boolean;
53
+ logger?: Logger;
54
+ onError?: (error: Error) => void;
55
+ loadingComponent?: ReactNode;
56
+ theme?: ThemeColorScheme;
57
+ };
58
+ type Account = {
59
+ status: AccountStatus;
60
+ };
61
+ type Card = {
62
+ status: 'active' | 'inactive' | 'canceled' | 'frozen';
63
+ };
64
+
65
+ //#endregion
66
+ //#region src/iframe-connection/types.d.ts
67
+
68
+ type ClientActionResult<T> = {
69
+ success: true;
70
+ canceled: false;
71
+ data: T;
72
+ } | {
73
+ success: false;
74
+ canceled: true;
75
+ } | {
76
+ success: false;
77
+ canceled: false;
78
+ error: string;
79
+ };
80
+ type ChildFunctions = {
81
+ freezeCard: (cardId: string) => Promise<ClientActionResult<Card>>;
82
+ unfreezeCard: (cardId: string) => Promise<ClientActionResult<Card>>;
83
+ }; //#endregion
84
+ //#region src/context/capital-os-authentication-context.d.ts
85
+
86
+ //# sourceMappingURL=types.d.ts.map
87
+ type ProviderProps = {
88
+ getToken: () => Promise<string>;
89
+ enableLogging?: boolean | undefined;
90
+ logger?: Logger | undefined;
91
+ children: React.ReactNode;
92
+ };
93
+ declare const CapitalOsAuthenticationProvider: React.FC<ProviderProps>;
94
+
95
+ //#endregion
96
+ //#region src/dev-tools.d.ts
97
+ type DevToolsProps = CommonProps;
98
+ declare function DevTools(props: DevToolsProps): JSX.Element;
99
+
100
+ //#endregion
101
+ //#region src/index.d.ts
102
+ //# sourceMappingURL=dev-tools.d.ts.map
103
+ declare function CardsApp(props: CommonProps): JSX.Element;
104
+ declare const App: typeof CardsApp;
105
+ type IssueCardResult = {
106
+ cardId: string;
107
+ };
108
+ type IssueCardProps = CommonProps & {
109
+ cardholder?: IssueCardDefaultValues;
110
+ onCreate?: (result: IssueCardResult) => void;
111
+ onDone: (result: IssueCardResult) => void;
112
+ onCancel: () => void;
113
+ };
114
+ declare function IssueCard({
115
+ cardholder,
116
+ onCreate,
117
+ onDone,
118
+ onCancel,
119
+ ...restOfProps
120
+ }: IssueCardProps): JSX.Element;
121
+ type DisputeTransactionProps = CommonProps & {
122
+ transactionId: string;
123
+ onDone: () => void;
124
+ onCancel: () => void;
125
+ };
126
+ declare function DisputeTransaction({
127
+ transactionId,
128
+ onDone,
129
+ onCancel,
130
+ ...restOfProps
131
+ }: DisputeTransactionProps): JSX.Element;
132
+ type BillPayAppProps = CommonProps;
133
+ declare function BillPayApp(props: BillPayAppProps): JSX.Element;
134
+ type CardDetailsConditionalProps = {
135
+ cardOnly?: false;
136
+ backOnly?: never;
137
+ } | {
138
+ cardOnly: true;
139
+ backOnly?: boolean;
140
+ };
141
+ type CardDetailsProps = CommonProps & {
142
+ cardId: string;
143
+ hideAddress?: boolean | undefined;
144
+ onCardCanceled?: () => void;
145
+ onHideSensitiveDetails?: () => void;
146
+ } & CardDetailsConditionalProps;
147
+ declare function CardDetails(props: CardDetailsProps): JSX.Element;
148
+ type AccountDetailsProps = CommonProps;
149
+ declare function AccountDetails(props: AccountDetailsProps): JSX.Element;
150
+ type AccountActionsProps = CommonProps;
151
+ declare function AccountActions(props: AccountActionsProps): JSX.Element;
152
+ type ManageBankConnectionsExternalAccount = {
153
+ id: string;
154
+ name: string;
155
+ last4: string;
156
+ status: 'enabled' | 'revoked' | 'disabled';
157
+ type: string;
158
+ };
159
+ type ManageBankConnectionsSummary = {
160
+ id: string;
161
+ bankName: string;
162
+ provider: 'fake' | 'plaid' | 'manual' | 'stripeTreasury' | 'treasuryPrime' | 'platformManagedBaas';
163
+ status: 'healthy' | 'actionRequired' | 'temporarilyUnavailable' | 'disabled';
164
+ externalAccounts: ManageBankConnectionsExternalAccount[];
165
+ };
166
+ type ManageBankConnectionsResult = {
167
+ bankConnections: ManageBankConnectionsSummary[];
168
+ };
169
+ type ManageBankConnectionsProps = CommonProps & {
170
+ onClose: () => void;
171
+ onChange?: (result: ManageBankConnectionsResult) => void;
172
+ };
173
+ declare function ManageBankConnections({
174
+ onClose,
175
+ onChange,
176
+ ...restOfProps
177
+ }: ManageBankConnectionsProps): JSX.Element;
178
+ type ConfigureAutoPayProps = CommonProps & {
179
+ onClose: () => void;
180
+ };
181
+ declare function ConfigureAutoPay({
182
+ onClose,
183
+ ...restOfProps
184
+ }: ConfigureAutoPayProps): JSX.Element;
185
+ type PolicySettingsProps = CommonProps & {
186
+ onClose: () => void;
187
+ };
188
+ declare function PolicySettings({
189
+ onClose,
190
+ ...restOfProps
191
+ }: PolicySettingsProps): JSX.Element;
192
+ type ConnectToVendorsProps = CommonProps & {
193
+ cardId?: string;
194
+ onClose: () => void;
195
+ inlineCardOnFile?: boolean;
196
+ };
197
+ declare function ConnectToVendors({
198
+ cardId,
199
+ onClose,
200
+ inlineCardOnFile,
201
+ ...restOfProps
202
+ }: ConnectToVendorsProps): JSX.Element;
203
+ type ApplicationStatus = 'ineligible' | 'eligible' | 'preapproved';
204
+ type BankAccount = {
205
+ id: string;
206
+ bankName: string;
207
+ accountName: string;
208
+ accountNumberMask: string;
209
+ accountNumber: string;
210
+ routingNumber: string;
211
+ type: string;
212
+ status: 'enabled' | 'disabled';
213
+ };
214
+ type ConnectBankAccountsResult = {
215
+ accounts: BankAccount[];
216
+ applicationStatus: ApplicationStatus;
217
+ };
218
+ type ConnectBankAccountsProps = CommonProps & {
219
+ onClose: () => void;
220
+ onDone: (result: ConnectBankAccountsResult) => void;
221
+ };
222
+ declare function ConnectBankAccounts({
223
+ onClose,
224
+ onDone,
225
+ ...restOfProps
226
+ }: ConnectBankAccountsProps): JSX.Element;
227
+ type InsightsDashboardProps = CommonProps;
228
+ declare function InsightsDashboard(props: InsightsDashboardProps): JSX.Element;
229
+ type InsightsWidgetProps = CommonProps & {
230
+ widget: 'over-time-spend-by-card-per-month' | 'over-time-spend-by-category-per-month' | 'top-cards-by-spend-this-month' | 'top-categories-by-spend-this-month' | 'top-transactions-by-amount-this-month' | 'comparison-spend-this-month-vs-last-month';
231
+ hideTitle?: boolean | undefined;
232
+ height?: number | undefined;
233
+ width?: number | undefined;
234
+ };
235
+ declare function InsightsWidget(props: InsightsWidgetProps): JSX.Element;
236
+ type AllowedExitPoints = {
237
+ welcome: 'application' | 'activation';
238
+ application: 'application' | 'activation';
239
+ };
240
+ type OnboardingEntryPoint = keyof AllowedExitPoints;
241
+ type OnboardingProps<T extends keyof AllowedExitPoints> = CommonProps & {
242
+ entryPoint?: T;
243
+ exitPoint?: AllowedExitPoints[T];
244
+ allowExitOnNonApproved?: boolean | undefined;
245
+ doneButtonText?: string | undefined;
246
+ product?: 'billPay' | 'card' | undefined;
247
+ onDone: (account: Account) => void;
248
+ };
249
+ declare function Onboarding<T extends OnboardingEntryPoint>({
250
+ onDone,
251
+ entryPoint: onboardingEntryPoint,
252
+ exitPoint: onboardingExitPoint,
253
+ allowExitOnNonApproved,
254
+ doneButtonText,
255
+ product,
256
+ ...restOfProps
257
+ }: OnboardingProps<T>): JSX.Element;
258
+ type MakePaymentProps = CommonProps & {
259
+ onDone: () => void;
260
+ };
261
+ declare function MakePayment({
262
+ onDone,
263
+ ...restOfProps
264
+ }: MakePaymentProps): JSX.Element;
265
+ type ContactSupportProps = CommonProps & {
266
+ onDone: () => void;
267
+ onCancel: () => void;
268
+ };
269
+ declare function ContactSupport({
270
+ onDone,
271
+ onCancel,
272
+ ...restOfProps
273
+ }: ContactSupportProps): JSX.Element;
274
+ type StatementsProps = CommonProps & {
275
+ onDone: () => void;
276
+ };
277
+ declare function Statements({
278
+ onDone,
279
+ ...restOfProps
280
+ }: StatementsProps): JSX.Element;
281
+ type LegalDocumentsProps = CommonProps & {
282
+ onDone: () => void;
283
+ };
284
+ declare function LegalDocuments({
285
+ onDone,
286
+ ...restOfProps
287
+ }: LegalDocumentsProps): JSX.Element;
288
+ type ReplaceCardProps = CommonProps & {
289
+ cardId: string;
290
+ onDone: (result: {
291
+ oldCardId: string;
292
+ newCardId: string;
293
+ }) => void;
294
+ onClose: () => void;
295
+ };
296
+ declare function ReplaceCard({
297
+ cardId,
298
+ onDone,
299
+ onClose,
300
+ ...restOfProps
301
+ }: ReplaceCardProps): JSX.Element;
302
+ type TerminateCardProps = CommonProps & {
303
+ cardId: string;
304
+ onDone: () => void;
305
+ onClose: () => void;
306
+ };
307
+ declare function TerminateCard({
308
+ cardId,
309
+ onDone,
310
+ onClose,
311
+ ...restOfProps
312
+ }: TerminateCardProps): JSX.Element;
313
+ type TransactionsProps = CommonProps;
314
+ declare function Transactions(props: TransactionsProps): JSX.Element;
315
+ declare function useActions(): {
316
+ actions: ChildFunctions | null;
317
+ isLoading: boolean;
318
+ };
319
+
320
+ //#endregion
321
+ //# sourceMappingURL=index.d.ts.map
322
+
323
+ export { Account, AccountActions, AccountActionsProps, AccountDetails, AccountDetailsProps, App, ApplicationStatus, BankAccount, BillPayApp, BillPayAppProps, CapitalOsAuthenticationProvider, CardDetails, CardDetailsProps, CardsApp, ConfigureAutoPay, ConfigureAutoPayProps, ConnectBankAccounts, ConnectBankAccountsProps, ConnectBankAccountsResult, ConnectToVendors, ConnectToVendorsProps, ContactSupport, ContactSupportProps, DevTools, DisputeTransaction, DisputeTransactionProps, InsightsDashboard, InsightsDashboardProps, InsightsWidget, InsightsWidgetProps, IssueCard, IssueCardProps, IssueCardResult, LegalDocuments, LegalDocumentsProps, LogLevel, Logger, MakePayment, MakePaymentProps, ManageBankConnections, ManageBankConnectionsExternalAccount, ManageBankConnectionsProps, ManageBankConnectionsResult, ManageBankConnectionsSummary, Onboarding, PolicySettings, PolicySettingsProps, ReplaceCard, ReplaceCardProps, Statements, StatementsProps, TerminateCard, TerminateCardProps, ThemeColorScheme, Transactions, TransactionsProps, useActions };
324
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../../../client/common/rendering-context-schema.ts","../../../server/src/core/common.schema.ts","../src/types.ts","../src/iframe-connection/types.ts","../src/context/capital-os-authentication-context.tsx","../src/dev-tools.tsx","../src/index.tsx"],"sourcesContent":null,"mappings":"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"}