@tesouro/embedded-components-react 0.3.61 → 0.3.63

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.
Files changed (43) hide show
  1. package/README.md +11 -11
  2. package/dist/index.css +6 -0
  3. package/dist/index.d.ts +44 -0
  4. package/dist/index.js +1 -1
  5. package/dist/lib/CardDetailsWidget.d.ts +44 -0
  6. package/dist/lib/CardDetailsWidget.js +1 -1
  7. package/dist/lib/CreditCardsWidget.d.ts +44 -0
  8. package/dist/lib/DebitCardsWidget.d.ts +44 -0
  9. package/dist/lib/WidgetSuite.d.ts +44 -0
  10. package/dist/libs/tesouro-embedded-components-react/card-details-widget/data-access/dist/index.js +4 -2
  11. package/dist/libs/tesouro-embedded-components-react/card-details-widget/data-access/dist/index10.js +32 -0
  12. package/dist/libs/tesouro-embedded-components-react/card-details-widget/data-access/dist/index11.js +27 -0
  13. package/dist/libs/tesouro-embedded-components-react/card-details-widget/data-access/dist/index9.js +17 -12
  14. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index.js +2 -2
  15. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index10.js +26 -0
  16. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index11.js +63 -0
  17. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index12.js +79 -0
  18. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index13.js +219 -0
  19. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index3.js +18 -2
  20. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index4.js +29 -28
  21. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index5.js +3 -0
  22. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index6.js +33 -19
  23. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index7.js +17 -102
  24. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index8.js +14 -181
  25. package/dist/libs/tesouro-embedded-components-react/card-details-widget/feature/dist/index9.js +113 -0
  26. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/ActivateCardPanel/ActivateCardPanel.js +58 -55
  27. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/ActivateCardPanel/ActivateCardSuccessView.js +12 -13
  28. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/CardDetailsPanel/CardCredentialsFace.js +27 -24
  29. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/CardDetailsPanel/CardDetailsHeader.js +26 -27
  30. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/CardDetailsPanel/CardDetailsPanel.js +140 -110
  31. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/CardDetailsPanel/CardFace.js +29 -19
  32. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/CardDetailsPanel/CardFaceFlip.js +16 -17
  33. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/CardDetailsPanel/DetailCopyRow.js +4 -4
  34. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/CardDetailsPanel/NicknameRow.js +65 -0
  35. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/CardDetailsPanel/labels.js +23 -0
  36. package/dist/libs/tesouro-embedded-components-react/cards-widget/feature/dist/index9.js +1 -1
  37. package/dist/libs/tesouro-embedded-components-react/shared/data-access/dist/index.js +22 -22
  38. package/dist/libs/tesouro-embedded-components-react/shared/data-access/dist/lib/rest/@tanstack/react-query.gen.js +165 -151
  39. package/dist/libs/tesouro-embedded-components-react/shared/data-access/dist/lib/rest/sdk.gen.js +164 -132
  40. package/dist/libs/tesouro-embedded-components-react/shared/data-access/dist/lib/rest/zod.gen.js +2325 -2315
  41. package/dist/libs/tesouro-embedded-components-react/shared/feature/dist/lib/analytics/build-info.js +1 -1
  42. package/package.json +1 -1
  43. package/dist/libs/tesouro-embedded-components-react/card-details-widget/ui/dist/lib/CardDetailsPanel/testIds.js +0 -14
@@ -24,6 +24,21 @@ var e = {
24
24
  viewCard: "View card",
25
25
  hideCard: "Hide card"
26
26
  },
27
+ nickname: {
28
+ editAriaLabel: "Edit nickname",
29
+ inputAriaLabel: "Nickname",
30
+ save: "Save",
31
+ cancel: "Cancel",
32
+ errorDescription: "We couldn't update the nickname. Please try again."
33
+ },
34
+ lock: {
35
+ lockCard: "Lock card",
36
+ unlockCard: "Unlock card",
37
+ cardFaceLabel: "Card is locked",
38
+ lockedDescription: "Your card is locked. New transactions will automatically decline. You can unlock the card at any time.",
39
+ lockedDescriptionWithoutUnlock: "Your card is locked. New transactions will automatically decline.",
40
+ errorDescription: "We couldn't change this card's lock. Please try again."
41
+ },
27
42
  credentials: {
28
43
  cardNumber: "Card number",
29
44
  expirationDate: "Expiration date",
@@ -60,6 +75,14 @@ function t(t) {
60
75
  ...e.actions,
61
76
  ...t?.actions
62
77
  },
78
+ nickname: {
79
+ ...e.nickname,
80
+ ...t?.nickname
81
+ },
82
+ lock: {
83
+ ...e.lock,
84
+ ...t?.lock
85
+ },
63
86
  credentials: {
64
87
  ...e.credentials,
65
88
  ...t?.credentials
@@ -11,7 +11,7 @@ import { CardsList as i } from "../../ui/dist/lib/CardsList/CardsList.js";
11
11
  import { CardsListDetailsSheet as a } from "../../ui/dist/lib/CardsList/CardsListDetailsSheet.js";
12
12
  import "../../ui/dist/index.js";
13
13
  import { useCardsWidget as o } from "./index8.js";
14
- import { CardDetailsWidget as s } from "../../../card-details-widget/feature/dist/index8.js";
14
+ import { CardDetailsWidget as s } from "../../../card-details-widget/feature/dist/index13.js";
15
15
  import "../../../card-details-widget/feature/dist/index.js";
16
16
  import { CreateCardWidget as c } from "../../../create-card-widget/feature/dist/index8.js";
17
17
  import "../../../create-card-widget/feature/dist/index.js";
@@ -8,29 +8,29 @@ import { optionalOrganizationHeaders as d, organizationHeaders as f } from "./li
8
8
  import { bulkUpdateDepartmentMembers as p, bulkUpdateLocationMembers as m, bulkUpdateRoleMembers as h, createDepartment as g, createLocation as _, createUser as v, deactivateDepartment as y, deactivateLocation as b, deleteCounterpartsId as x, deleteCounterpartsIdBankAccountsId as S, deleteMeasureUnitsId as C, deletePayablesId as w, deletePayablesIdFile as T, deleteProductsId as E, deleteReceivablesId as D, deleteTagsId as O, downloadBankAccountTransactions as k, getApplicationStatus as A, getApprovalPolicies as j, getApprovalRequests as M, getBankAccountAccess as N, getDepartment as P, getExternalBankAccountAccess as F, getLocation as I, getPayables as L, getPayablesId as R, getPayablesIdHistory as z, getPayablesIdLineItems as B, getPaymentRecords as V, getUsers as H, listDepartments as U, listLocations as W, listRoles as G, manageBankAccountAccess as K, patchCounterpartsId as q, patchCounterpartsIdAddressesId as J, patchCounterpartsIdBankAccountsId as Y, patchMeasureUnitsId as X, patchPayablesId as Z, patchProductsId as Q, patchReceivablesId as $, patchTagsId as ee, postApprovalRequestsIdApprove as te, postApprovalRequestsIdReject as ne, postCounterparts as re, postCounterpartsIdAddresses as ie, postCounterpartsIdBankAccounts as ae, postCounterpartsIdBankAccountsIdMakeDefault as oe, postMeasureUnits as se, postPayables as ce, postPayablesIdApprovePaymentOperation as le, postPayablesIdAttachFile as ue, postPayablesIdCancel as de, postPayablesIdDuplicatesIdConfirm as fe, postPayablesIdDuplicatesIdDismiss as pe, postPayablesIdMarkAsPaid as me, postPayablesIdReject as he, postPayablesIdReopen as ge, postPayablesIdSchedulePayment as _e, postPayablesIdSubmitForApproval as ve, postPayablesIdValidate as ye, postPayablesUploadFromFile as be, postPaymentIntentsIdCancel as xe, postProducts as Se, postReceivables as Ce, postReceivablesIdAccept as we, postReceivablesIdCancel as Te, postReceivablesIdClone as Ee, postReceivablesIdDecline as De, postReceivablesIdIssue as Oe, postReceivablesIdMarkAsPaid as ke, postReceivablesIdMarkAsPartiallyPaid as Ae, postReceivablesIdMarkAsUncollectible as je, postReceivablesIdSend as Me, postTags as Ne, putPayablesIdLineItems as Pe, putReceivablesIdLineItems as Fe, updateDepartment as Ie, updateLocation as Le, updateUser as Re } from "./lib/rest/sdk.gen.js";
9
9
  import { fetchWidgetInit as ze } from "./lib/fetchWidgetInit.js";
10
10
  import { hasAnyScope as Be } from "./lib/hasAnyScope.js";
11
- import { activateCreditCardMutation as Ve, activateDebitCardMutation as He, connectExternalBankAccountMutation as Ue, createAchMoneyMovementMutation as We, createApplicationMutation as Ge, createBankAccountMutation as Ke, createBookTransferMutation as qe, createDebitCardMutation as Je, createVelocityControlMutation as Ye, deleteApprovalPoliciesIdMutation as Xe, deleteLedgerAccountsIdMutation as Ze, deleteReceiptsIdMutation as Qe, disableUserMutation as $e, getAnalyticsPayablesOptions as et, getAnalyticsReceivablesOptions as tt, getApplicationStatusOptions as nt, getApprovalPoliciesOptions as rt, getApprovalPoliciesQueryKey as it, getApprovalRequestsOptions as at, getApprovalRequestsQueryKey as ot, getBankAccountAccessQueryKey as st, getBankAccountOptions as ct, getBankAccountQueryKey as lt, getBankAccountTransactionsOptions as ut, getBankAccountTransfersOptions as dt, getBankAccountTransfersQueryKey as ft, getBankAccountsQueryKey as pt, getCounterpartsIdAddressesOptions as mt, getCounterpartsIdAddressesQueryKey as ht, getCounterpartsIdBankAccountsOptions as gt, getCounterpartsIdBankAccountsQueryKey as _t, getCounterpartsIdOptions as vt, getCounterpartsIdQueryKey as yt, getCounterpartsOptions as bt, getCounterpartsQueryKey as xt, getCreditCardByIdOptions as St, getCreditCardByIdQueryKey as Ct, getCreditCardsOptions as wt, getCreditCardsQueryKey as Tt, getDebitCardByIdOptions as Et, getDebitCardByIdQueryKey as Dt, getDebitCardCredentialsOptions as Ot, getDebitCardsOptions as kt, getDebitCardsQueryKey as At, getDepartmentOptions as jt, getDepartmentQueryKey as Mt, getEntitiesIdSettingsOptions as Nt, getEntitiesIdSettingsQueryKey as Pt, getEntitiesMeOptions as Ft, getEntityUsersMyEntityOptions as It, getEntityUsersOptions as Lt, getExternalBankAccountAccessQueryKey as Rt, getExternalBankAccountsOptions as zt, getExternalBankAccountsQueryKey as Bt, getLedgerAccountsQueryKey as Vt, getLocationOptions as Ht, getLocationQueryKey as Ut, getMeasureUnitsOptions as Wt, getMeasureUnitsQueryKey as Gt, getOrganizationOptions as Kt, getPayablesAnalyticsOptions as qt, getPayablesAnalyticsQueryKey as Jt, getPayablesIdHistoryOptions as Yt, getPayablesIdHistoryQueryKey as Xt, getPayablesIdLineItemsOptions as Zt, getPayablesIdLineItemsQueryKey as Qt, getPayablesIdOptions as $t, getPayablesIdQueryKey as en, getPayablesIdSuggestionsOptions as tn, getPayablesOptions as nn, getPayablesQueryKey as rn, getPaymentRecordsOptions as an, getPaymentRecordsQueryKey as on, getProductsIdOptions as sn, getProductsIdQueryKey as cn, getProductsOptions as ln, getProductsQueryKey as un, getReceiptsIdQueryKey as dn, getReceiptsOptions as fn, getReceiptsQueryKey as pn, getReceivablesIdHistoryOptions as mn, getReceivablesIdHistoryQueryKey as hn, getReceivablesIdMailsOptions as gn, getReceivablesIdMailsQueryKey as _n, getReceivablesIdOptions as vn, getReceivablesIdPdfLinkOptions as yn, getReceivablesIdPdfLinkQueryKey as bn, getReceivablesIdQueryKey as xn, getReceivablesOptions as Sn, getReceivablesQueryKey as Cn, getTagsOptions as wn, getTagsQueryKey as Tn, getTransactionsIdQueryKey as En, getTransactionsOptions as Dn, getTransactionsQueryKey as On, getTransactionsValidationsOptions as kn, getTransactionsValidationsQueryKey as An, getUsersOptions as jn, getUsersQueryKey as Mn, getVelocityControlsQueryKey as Nn, grantBankAccountAccessMutation as Pn, grantExternalBankAccountAccessMutation as Fn, linkExternalBankAccountMutation as In, listDepartmentsOptions as Ln, listDepartmentsQueryKey as Rn, listLocationsOptions as zn, listLocationsQueryKey as Bn, listRolesQueryKey as Vn, manageDebitCardAccessMutation as Hn, patchApprovalPoliciesIdMutation as Un, patchEntitiesIdSettingsMutation as Wn, patchLedgerAccountsIdMutation as Gn, patchReceiptsIdMutation as Kn, postApprovalPoliciesMutation as qn, postLedgerAccountsMutation as Jn, putTransactionsValidationsMutation as Yn, submitApplicationMutation as Xn, unlinkExternalBankAccountMutation as Zn, updateApplicationMutation as Qn, updateBankAccountMutation as $n, updateExternalBankAccountMutation as er, validateExternalBankAccountMutation as tr, verifyDebitCardMutation as nr } from "./lib/rest/@tanstack/react-query.gen.js";
11
+ import { activateCreditCardMutation as Ve, activateDebitCardMutation as He, connectExternalBankAccountMutation as Ue, createAchMoneyMovementMutation as We, createApplicationMutation as Ge, createBankAccountMutation as Ke, createBookTransferMutation as qe, createDebitCardMutation as Je, createVelocityControlMutation as Ye, deleteApprovalPoliciesIdMutation as Xe, deleteLedgerAccountsIdMutation as Ze, deleteReceiptsIdMutation as Qe, disableUserMutation as $e, getAnalyticsPayablesOptions as et, getAnalyticsReceivablesOptions as tt, getApplicationStatusOptions as nt, getApprovalPoliciesOptions as rt, getApprovalPoliciesQueryKey as it, getApprovalRequestsOptions as at, getApprovalRequestsQueryKey as ot, getBankAccountAccessQueryKey as st, getBankAccountOptions as ct, getBankAccountQueryKey as lt, getBankAccountTransactionsOptions as ut, getBankAccountTransfersOptions as dt, getBankAccountTransfersQueryKey as ft, getBankAccountsQueryKey as pt, getCounterpartsIdAddressesOptions as mt, getCounterpartsIdAddressesQueryKey as ht, getCounterpartsIdBankAccountsOptions as gt, getCounterpartsIdBankAccountsQueryKey as _t, getCounterpartsIdOptions as vt, getCounterpartsIdQueryKey as yt, getCounterpartsOptions as bt, getCounterpartsQueryKey as xt, getCreditCardByIdOptions as St, getCreditCardByIdQueryKey as Ct, getCreditCardsOptions as wt, getCreditCardsQueryKey as Tt, getDebitCardByIdOptions as Et, getDebitCardByIdQueryKey as Dt, getDebitCardCredentialsOptions as Ot, getDebitCardsOptions as kt, getDebitCardsQueryKey as At, getDepartmentOptions as jt, getDepartmentQueryKey as Mt, getEntitiesIdSettingsOptions as Nt, getEntitiesIdSettingsQueryKey as Pt, getEntitiesMeOptions as Ft, getEntityUsersMyEntityOptions as It, getEntityUsersOptions as Lt, getExternalBankAccountAccessQueryKey as Rt, getExternalBankAccountsOptions as zt, getExternalBankAccountsQueryKey as Bt, getLedgerAccountsQueryKey as Vt, getLocationOptions as Ht, getLocationQueryKey as Ut, getMeasureUnitsOptions as Wt, getMeasureUnitsQueryKey as Gt, getOrganizationOptions as Kt, getPayablesAnalyticsOptions as qt, getPayablesAnalyticsQueryKey as Jt, getPayablesIdHistoryOptions as Yt, getPayablesIdHistoryQueryKey as Xt, getPayablesIdLineItemsOptions as Zt, getPayablesIdLineItemsQueryKey as Qt, getPayablesIdOptions as $t, getPayablesIdQueryKey as en, getPayablesIdSuggestionsOptions as tn, getPayablesOptions as nn, getPayablesQueryKey as rn, getPaymentRecordsOptions as an, getPaymentRecordsQueryKey as on, getProductsIdOptions as sn, getProductsIdQueryKey as cn, getProductsOptions as ln, getProductsQueryKey as un, getReceiptsIdQueryKey as dn, getReceiptsOptions as fn, getReceiptsQueryKey as pn, getReceivablesIdHistoryOptions as mn, getReceivablesIdHistoryQueryKey as hn, getReceivablesIdMailsOptions as gn, getReceivablesIdMailsQueryKey as _n, getReceivablesIdOptions as vn, getReceivablesIdPdfLinkOptions as yn, getReceivablesIdPdfLinkQueryKey as bn, getReceivablesIdQueryKey as xn, getReceivablesOptions as Sn, getReceivablesQueryKey as Cn, getTagsOptions as wn, getTagsQueryKey as Tn, getTransactionsIdQueryKey as En, getTransactionsOptions as Dn, getTransactionsQueryKey as On, getTransactionsValidationsOptions as kn, getTransactionsValidationsQueryKey as An, getUsersOptions as jn, getUsersQueryKey as Mn, getVelocityControlsQueryKey as Nn, grantBankAccountAccessMutation as Pn, grantExternalBankAccountAccessMutation as Fn, linkExternalBankAccountMutation as In, listDepartmentsOptions as Ln, listDepartmentsQueryKey as Rn, listLocationsOptions as zn, listLocationsQueryKey as Bn, listRolesQueryKey as Vn, manageDebitCardAccessMutation as Hn, patchApprovalPoliciesIdMutation as Un, patchEntitiesIdSettingsMutation as Wn, patchLedgerAccountsIdMutation as Gn, patchReceiptsIdMutation as Kn, postApprovalPoliciesMutation as qn, postLedgerAccountsMutation as Jn, putTransactionsValidationsMutation as Yn, setDebitCardLockStatusMutation as Xn, submitApplicationMutation as Zn, unlinkExternalBankAccountMutation as Qn, updateApplicationMutation as $n, updateBankAccountMutation as er, updateDebitCardMutation as tr, updateExternalBankAccountMutation as nr, validateExternalBankAccountMutation as rr, verifyDebitCardMutation as ir } from "./lib/rest/@tanstack/react-query.gen.js";
12
12
  import "./lib/queryKeys.js";
13
- import { withAuthEpoch as rr } from "./lib/withAuthEpoch.js";
14
- import { useCurrentUserQuery as ir } from "./lib/useCurrentUserQuery.js";
13
+ import { withAuthEpoch as ar } from "./lib/withAuthEpoch.js";
14
+ import { useCurrentUserQuery as or } from "./lib/useCurrentUserQuery.js";
15
15
  import "./lib/apiErrorStatus.js";
16
- import { isApiConflictError as ar } from "./lib/isApiConflictError.js";
17
- import { isApiForbiddenError as or } from "./lib/isApiForbiddenError.js";
18
- import { isApiNotFoundError as sr } from "./lib/isApiNotFoundError.js";
19
- import { isApiUnprocessableError as cr } from "./lib/isApiUnprocessableError.js";
16
+ import { isApiConflictError as sr } from "./lib/isApiConflictError.js";
17
+ import { isApiForbiddenError as cr } from "./lib/isApiForbiddenError.js";
18
+ import { isApiNotFoundError as lr } from "./lib/isApiNotFoundError.js";
19
+ import { isApiUnprocessableError as ur } from "./lib/isApiUnprocessableError.js";
20
20
  import "./lib/isUserDataNotFoundError.js";
21
- import { useGetUserDataQuery as lr } from "./lib/useGetUserDataQuery.js";
22
- import { useUpsertUserDataMutation as ur } from "./lib/useUpsertUserDataMutation.js";
21
+ import { useGetUserDataQuery as dr } from "./lib/useGetUserDataQuery.js";
22
+ import { useUpsertUserDataMutation as fr } from "./lib/useUpsertUserDataMutation.js";
23
23
  import "./lib/rest/zod.gen.js";
24
- import { Scope as dr } from "./lib/scopes.js";
25
- import { getAllPagesNextPageParam as fr, getAllPagesNextPaginationTokenParam as pr, isAllPagesResolving as mr, useAutoFetchNextPage as hr } from "./lib/allPages.js";
26
- import { useAllBankAccountsQuery as gr } from "./lib/bank-account/useAllBankAccountsQuery.js";
27
- import { useAllExternalBankAccountsQuery as _r } from "./lib/external-bank-account/useAllExternalBankAccountsQuery.js";
28
- import { useAllMerchantCategoryGroupsQuery as vr } from "./lib/merchant-category-group/useAllMerchantCategoryGroupsQuery.js";
29
- import { useAllLedgerAccountsQuery as yr, useLedgerAccountsQuery as br } from "./lib/reference-data/useLedgerAccountsQuery.js";
30
- import { usePaymentTermsQuery as xr } from "./lib/reference-data/usePaymentTermsQuery.js";
31
- import { useAllOrganizationRolesQuery as Sr } from "./lib/role/useAllOrganizationRolesQuery.js";
32
- import { useRolePermissionsQueries as Cr } from "./lib/role/useRolePermissionsQueries.js";
33
- import { useAllOrganizationUsersQuery as wr } from "./lib/user/useAllOrganizationUsersQuery.js";
34
- import { useAcceptWidgetDisclosures as Tr } from "./lib/disclosures/useAcceptWidgetDisclosures.js";
35
- import { useDisclosuresQuery as Er } from "./lib/disclosures/useDisclosuresQuery.js";
36
- export { l as EmbedApiProvider, dr as Scope, Ve as activateCreditCardMutation, He as activateDebitCardMutation, p as bulkUpdateDepartmentMembers, m as bulkUpdateLocationMembers, h as bulkUpdateRoleMembers, e as cancelAllClients, o as cloneEmbeddedClient, Ue as connectExternalBankAccountMutation, We as createAchMoneyMovementMutation, Ge as createApplicationMutation, Ke as createBankAccountMutation, qe as createBookTransferMutation, Je as createDebitCardMutation, g as createDepartment, s as createEmbeddedClient, _ as createLocation, v as createUser, Ye as createVelocityControlMutation, y as deactivateDepartment, b as deactivateLocation, Xe as deleteApprovalPoliciesIdMutation, x as deleteCounterpartsId, S as deleteCounterpartsIdBankAccountsId, Ze as deleteLedgerAccountsIdMutation, C as deleteMeasureUnitsId, w as deletePayablesId, T as deletePayablesIdFile, E as deleteProductsId, Qe as deleteReceiptsIdMutation, D as deleteReceivablesId, O as deleteTagsId, $e as disableUserMutation, k as downloadBankAccountTransactions, ze as fetchWidgetInit, fr as getAllPagesNextPageParam, pr as getAllPagesNextPaginationTokenParam, et as getAnalyticsPayablesOptions, tt as getAnalyticsReceivablesOptions, A as getApplicationStatus, nt as getApplicationStatusOptions, j as getApprovalPolicies, rt as getApprovalPoliciesOptions, it as getApprovalPoliciesQueryKey, M as getApprovalRequests, at as getApprovalRequestsOptions, ot as getApprovalRequestsQueryKey, N as getBankAccountAccess, st as getBankAccountAccessQueryKey, ct as getBankAccountOptions, lt as getBankAccountQueryKey, ut as getBankAccountTransactionsOptions, dt as getBankAccountTransfersOptions, ft as getBankAccountTransfersQueryKey, pt as getBankAccountsQueryKey, mt as getCounterpartsIdAddressesOptions, ht as getCounterpartsIdAddressesQueryKey, gt as getCounterpartsIdBankAccountsOptions, _t as getCounterpartsIdBankAccountsQueryKey, vt as getCounterpartsIdOptions, yt as getCounterpartsIdQueryKey, bt as getCounterpartsOptions, xt as getCounterpartsQueryKey, St as getCreditCardByIdOptions, Ct as getCreditCardByIdQueryKey, wt as getCreditCardsOptions, Tt as getCreditCardsQueryKey, Et as getDebitCardByIdOptions, Dt as getDebitCardByIdQueryKey, Ot as getDebitCardCredentialsOptions, kt as getDebitCardsOptions, At as getDebitCardsQueryKey, P as getDepartment, jt as getDepartmentOptions, Mt as getDepartmentQueryKey, Nt as getEntitiesIdSettingsOptions, Pt as getEntitiesIdSettingsQueryKey, Ft as getEntitiesMeOptions, It as getEntityUsersMyEntityOptions, Lt as getEntityUsersOptions, F as getExternalBankAccountAccess, Rt as getExternalBankAccountAccessQueryKey, zt as getExternalBankAccountsOptions, Bt as getExternalBankAccountsQueryKey, Vt as getLedgerAccountsQueryKey, I as getLocation, Ht as getLocationOptions, Ut as getLocationQueryKey, Wt as getMeasureUnitsOptions, Gt as getMeasureUnitsQueryKey, Kt as getOrganizationOptions, L as getPayables, qt as getPayablesAnalyticsOptions, Jt as getPayablesAnalyticsQueryKey, R as getPayablesId, z as getPayablesIdHistory, Yt as getPayablesIdHistoryOptions, Xt as getPayablesIdHistoryQueryKey, B as getPayablesIdLineItems, Zt as getPayablesIdLineItemsOptions, Qt as getPayablesIdLineItemsQueryKey, $t as getPayablesIdOptions, en as getPayablesIdQueryKey, tn as getPayablesIdSuggestionsOptions, nn as getPayablesOptions, rn as getPayablesQueryKey, V as getPaymentRecords, an as getPaymentRecordsOptions, on as getPaymentRecordsQueryKey, sn as getProductsIdOptions, cn as getProductsIdQueryKey, ln as getProductsOptions, un as getProductsQueryKey, dn as getReceiptsIdQueryKey, fn as getReceiptsOptions, pn as getReceiptsQueryKey, mn as getReceivablesIdHistoryOptions, hn as getReceivablesIdHistoryQueryKey, gn as getReceivablesIdMailsOptions, _n as getReceivablesIdMailsQueryKey, vn as getReceivablesIdOptions, yn as getReceivablesIdPdfLinkOptions, bn as getReceivablesIdPdfLinkQueryKey, xn as getReceivablesIdQueryKey, Sn as getReceivablesOptions, Cn as getReceivablesQueryKey, wn as getTagsOptions, Tn as getTagsQueryKey, En as getTransactionsIdQueryKey, Dn as getTransactionsOptions, On as getTransactionsQueryKey, kn as getTransactionsValidationsOptions, An as getTransactionsValidationsQueryKey, H as getUsers, jn as getUsersOptions, Mn as getUsersQueryKey, Nn as getVelocityControlsQueryKey, Pn as grantBankAccountAccessMutation, Fn as grantExternalBankAccountAccessMutation, Be as hasAnyScope, t as invalidateAllClients, mr as isAllPagesResolving, ar as isApiConflictError, or as isApiForbiddenError, sr as isApiNotFoundError, cr as isApiUnprocessableError, c as isWidgetGatewayHost, In as linkExternalBankAccountMutation, U as listDepartments, Ln as listDepartmentsOptions, Rn as listDepartmentsQueryKey, W as listLocations, zn as listLocationsOptions, Bn as listLocationsQueryKey, G as listRoles, Vn as listRolesQueryKey, K as manageBankAccountAccess, Hn as manageDebitCardAccessMutation, d as optionalOrganizationHeaders, f as organizationHeaders, Un as patchApprovalPoliciesIdMutation, q as patchCounterpartsId, J as patchCounterpartsIdAddressesId, Y as patchCounterpartsIdBankAccountsId, Wn as patchEntitiesIdSettingsMutation, Gn as patchLedgerAccountsIdMutation, X as patchMeasureUnitsId, Z as patchPayablesId, Q as patchProductsId, Kn as patchReceiptsIdMutation, $ as patchReceivablesId, ee as patchTagsId, qn as postApprovalPoliciesMutation, te as postApprovalRequestsIdApprove, ne as postApprovalRequestsIdReject, re as postCounterparts, ie as postCounterpartsIdAddresses, ae as postCounterpartsIdBankAccounts, oe as postCounterpartsIdBankAccountsIdMakeDefault, Jn as postLedgerAccountsMutation, se as postMeasureUnits, ce as postPayables, le as postPayablesIdApprovePaymentOperation, ue as postPayablesIdAttachFile, de as postPayablesIdCancel, fe as postPayablesIdDuplicatesIdConfirm, pe as postPayablesIdDuplicatesIdDismiss, me as postPayablesIdMarkAsPaid, he as postPayablesIdReject, ge as postPayablesIdReopen, _e as postPayablesIdSchedulePayment, ve as postPayablesIdSubmitForApproval, ye as postPayablesIdValidate, be as postPayablesUploadFromFile, xe as postPaymentIntentsIdCancel, Se as postProducts, Ce as postReceivables, we as postReceivablesIdAccept, Te as postReceivablesIdCancel, Ee as postReceivablesIdClone, De as postReceivablesIdDecline, Oe as postReceivablesIdIssue, ke as postReceivablesIdMarkAsPaid, Ae as postReceivablesIdMarkAsPartiallyPaid, je as postReceivablesIdMarkAsUncollectible, Me as postReceivablesIdSend, Ne as postTags, Pe as putPayablesIdLineItems, Fe as putReceivablesIdLineItems, Yn as putTransactionsValidationsMutation, n as registerQueryClient, r as removeInactiveFromAllClients, i as setAllClientsQueriesData, Xn as submitApplicationMutation, Zn as unlinkExternalBankAccountMutation, a as unregisterQueryClient, Qn as updateApplicationMutation, $n as updateBankAccountMutation, Ie as updateDepartment, er as updateExternalBankAccountMutation, Le as updateLocation, Re as updateUser, Tr as useAcceptWidgetDisclosures, gr as useAllBankAccountsQuery, _r as useAllExternalBankAccountsQuery, yr as useAllLedgerAccountsQuery, vr as useAllMerchantCategoryGroupsQuery, Sr as useAllOrganizationRolesQuery, wr as useAllOrganizationUsersQuery, hr as useAutoFetchNextPage, ir as useCurrentUserQuery, Er as useDisclosuresQuery, u as useEmbedApi, lr as useGetUserDataQuery, br as useLedgerAccountsQuery, xr as usePaymentTermsQuery, Cr as useRolePermissionsQueries, ur as useUpsertUserDataMutation, tr as validateExternalBankAccountMutation, nr as verifyDebitCardMutation, rr as withAuthEpoch };
24
+ import { Scope as pr } from "./lib/scopes.js";
25
+ import { getAllPagesNextPageParam as mr, getAllPagesNextPaginationTokenParam as hr, isAllPagesResolving as gr, useAutoFetchNextPage as _r } from "./lib/allPages.js";
26
+ import { useAllBankAccountsQuery as vr } from "./lib/bank-account/useAllBankAccountsQuery.js";
27
+ import { useAllExternalBankAccountsQuery as yr } from "./lib/external-bank-account/useAllExternalBankAccountsQuery.js";
28
+ import { useAllMerchantCategoryGroupsQuery as br } from "./lib/merchant-category-group/useAllMerchantCategoryGroupsQuery.js";
29
+ import { useAllLedgerAccountsQuery as xr, useLedgerAccountsQuery as Sr } from "./lib/reference-data/useLedgerAccountsQuery.js";
30
+ import { usePaymentTermsQuery as Cr } from "./lib/reference-data/usePaymentTermsQuery.js";
31
+ import { useAllOrganizationRolesQuery as wr } from "./lib/role/useAllOrganizationRolesQuery.js";
32
+ import { useRolePermissionsQueries as Tr } from "./lib/role/useRolePermissionsQueries.js";
33
+ import { useAllOrganizationUsersQuery as Er } from "./lib/user/useAllOrganizationUsersQuery.js";
34
+ import { useAcceptWidgetDisclosures as Dr } from "./lib/disclosures/useAcceptWidgetDisclosures.js";
35
+ import { useDisclosuresQuery as Or } from "./lib/disclosures/useDisclosuresQuery.js";
36
+ export { l as EmbedApiProvider, pr as Scope, Ve as activateCreditCardMutation, He as activateDebitCardMutation, p as bulkUpdateDepartmentMembers, m as bulkUpdateLocationMembers, h as bulkUpdateRoleMembers, e as cancelAllClients, o as cloneEmbeddedClient, Ue as connectExternalBankAccountMutation, We as createAchMoneyMovementMutation, Ge as createApplicationMutation, Ke as createBankAccountMutation, qe as createBookTransferMutation, Je as createDebitCardMutation, g as createDepartment, s as createEmbeddedClient, _ as createLocation, v as createUser, Ye as createVelocityControlMutation, y as deactivateDepartment, b as deactivateLocation, Xe as deleteApprovalPoliciesIdMutation, x as deleteCounterpartsId, S as deleteCounterpartsIdBankAccountsId, Ze as deleteLedgerAccountsIdMutation, C as deleteMeasureUnitsId, w as deletePayablesId, T as deletePayablesIdFile, E as deleteProductsId, Qe as deleteReceiptsIdMutation, D as deleteReceivablesId, O as deleteTagsId, $e as disableUserMutation, k as downloadBankAccountTransactions, ze as fetchWidgetInit, mr as getAllPagesNextPageParam, hr as getAllPagesNextPaginationTokenParam, et as getAnalyticsPayablesOptions, tt as getAnalyticsReceivablesOptions, A as getApplicationStatus, nt as getApplicationStatusOptions, j as getApprovalPolicies, rt as getApprovalPoliciesOptions, it as getApprovalPoliciesQueryKey, M as getApprovalRequests, at as getApprovalRequestsOptions, ot as getApprovalRequestsQueryKey, N as getBankAccountAccess, st as getBankAccountAccessQueryKey, ct as getBankAccountOptions, lt as getBankAccountQueryKey, ut as getBankAccountTransactionsOptions, dt as getBankAccountTransfersOptions, ft as getBankAccountTransfersQueryKey, pt as getBankAccountsQueryKey, mt as getCounterpartsIdAddressesOptions, ht as getCounterpartsIdAddressesQueryKey, gt as getCounterpartsIdBankAccountsOptions, _t as getCounterpartsIdBankAccountsQueryKey, vt as getCounterpartsIdOptions, yt as getCounterpartsIdQueryKey, bt as getCounterpartsOptions, xt as getCounterpartsQueryKey, St as getCreditCardByIdOptions, Ct as getCreditCardByIdQueryKey, wt as getCreditCardsOptions, Tt as getCreditCardsQueryKey, Et as getDebitCardByIdOptions, Dt as getDebitCardByIdQueryKey, Ot as getDebitCardCredentialsOptions, kt as getDebitCardsOptions, At as getDebitCardsQueryKey, P as getDepartment, jt as getDepartmentOptions, Mt as getDepartmentQueryKey, Nt as getEntitiesIdSettingsOptions, Pt as getEntitiesIdSettingsQueryKey, Ft as getEntitiesMeOptions, It as getEntityUsersMyEntityOptions, Lt as getEntityUsersOptions, F as getExternalBankAccountAccess, Rt as getExternalBankAccountAccessQueryKey, zt as getExternalBankAccountsOptions, Bt as getExternalBankAccountsQueryKey, Vt as getLedgerAccountsQueryKey, I as getLocation, Ht as getLocationOptions, Ut as getLocationQueryKey, Wt as getMeasureUnitsOptions, Gt as getMeasureUnitsQueryKey, Kt as getOrganizationOptions, L as getPayables, qt as getPayablesAnalyticsOptions, Jt as getPayablesAnalyticsQueryKey, R as getPayablesId, z as getPayablesIdHistory, Yt as getPayablesIdHistoryOptions, Xt as getPayablesIdHistoryQueryKey, B as getPayablesIdLineItems, Zt as getPayablesIdLineItemsOptions, Qt as getPayablesIdLineItemsQueryKey, $t as getPayablesIdOptions, en as getPayablesIdQueryKey, tn as getPayablesIdSuggestionsOptions, nn as getPayablesOptions, rn as getPayablesQueryKey, V as getPaymentRecords, an as getPaymentRecordsOptions, on as getPaymentRecordsQueryKey, sn as getProductsIdOptions, cn as getProductsIdQueryKey, ln as getProductsOptions, un as getProductsQueryKey, dn as getReceiptsIdQueryKey, fn as getReceiptsOptions, pn as getReceiptsQueryKey, mn as getReceivablesIdHistoryOptions, hn as getReceivablesIdHistoryQueryKey, gn as getReceivablesIdMailsOptions, _n as getReceivablesIdMailsQueryKey, vn as getReceivablesIdOptions, yn as getReceivablesIdPdfLinkOptions, bn as getReceivablesIdPdfLinkQueryKey, xn as getReceivablesIdQueryKey, Sn as getReceivablesOptions, Cn as getReceivablesQueryKey, wn as getTagsOptions, Tn as getTagsQueryKey, En as getTransactionsIdQueryKey, Dn as getTransactionsOptions, On as getTransactionsQueryKey, kn as getTransactionsValidationsOptions, An as getTransactionsValidationsQueryKey, H as getUsers, jn as getUsersOptions, Mn as getUsersQueryKey, Nn as getVelocityControlsQueryKey, Pn as grantBankAccountAccessMutation, Fn as grantExternalBankAccountAccessMutation, Be as hasAnyScope, t as invalidateAllClients, gr as isAllPagesResolving, sr as isApiConflictError, cr as isApiForbiddenError, lr as isApiNotFoundError, ur as isApiUnprocessableError, c as isWidgetGatewayHost, In as linkExternalBankAccountMutation, U as listDepartments, Ln as listDepartmentsOptions, Rn as listDepartmentsQueryKey, W as listLocations, zn as listLocationsOptions, Bn as listLocationsQueryKey, G as listRoles, Vn as listRolesQueryKey, K as manageBankAccountAccess, Hn as manageDebitCardAccessMutation, d as optionalOrganizationHeaders, f as organizationHeaders, Un as patchApprovalPoliciesIdMutation, q as patchCounterpartsId, J as patchCounterpartsIdAddressesId, Y as patchCounterpartsIdBankAccountsId, Wn as patchEntitiesIdSettingsMutation, Gn as patchLedgerAccountsIdMutation, X as patchMeasureUnitsId, Z as patchPayablesId, Q as patchProductsId, Kn as patchReceiptsIdMutation, $ as patchReceivablesId, ee as patchTagsId, qn as postApprovalPoliciesMutation, te as postApprovalRequestsIdApprove, ne as postApprovalRequestsIdReject, re as postCounterparts, ie as postCounterpartsIdAddresses, ae as postCounterpartsIdBankAccounts, oe as postCounterpartsIdBankAccountsIdMakeDefault, Jn as postLedgerAccountsMutation, se as postMeasureUnits, ce as postPayables, le as postPayablesIdApprovePaymentOperation, ue as postPayablesIdAttachFile, de as postPayablesIdCancel, fe as postPayablesIdDuplicatesIdConfirm, pe as postPayablesIdDuplicatesIdDismiss, me as postPayablesIdMarkAsPaid, he as postPayablesIdReject, ge as postPayablesIdReopen, _e as postPayablesIdSchedulePayment, ve as postPayablesIdSubmitForApproval, ye as postPayablesIdValidate, be as postPayablesUploadFromFile, xe as postPaymentIntentsIdCancel, Se as postProducts, Ce as postReceivables, we as postReceivablesIdAccept, Te as postReceivablesIdCancel, Ee as postReceivablesIdClone, De as postReceivablesIdDecline, Oe as postReceivablesIdIssue, ke as postReceivablesIdMarkAsPaid, Ae as postReceivablesIdMarkAsPartiallyPaid, je as postReceivablesIdMarkAsUncollectible, Me as postReceivablesIdSend, Ne as postTags, Pe as putPayablesIdLineItems, Fe as putReceivablesIdLineItems, Yn as putTransactionsValidationsMutation, n as registerQueryClient, r as removeInactiveFromAllClients, i as setAllClientsQueriesData, Xn as setDebitCardLockStatusMutation, Zn as submitApplicationMutation, Qn as unlinkExternalBankAccountMutation, a as unregisterQueryClient, $n as updateApplicationMutation, er as updateBankAccountMutation, tr as updateDebitCardMutation, Ie as updateDepartment, nr as updateExternalBankAccountMutation, Le as updateLocation, Re as updateUser, Dr as useAcceptWidgetDisclosures, vr as useAllBankAccountsQuery, yr as useAllExternalBankAccountsQuery, xr as useAllLedgerAccountsQuery, br as useAllMerchantCategoryGroupsQuery, wr as useAllOrganizationRolesQuery, Er as useAllOrganizationUsersQuery, _r as useAutoFetchNextPage, or as useCurrentUserQuery, Or as useDisclosuresQuery, u as useEmbedApi, dr as useGetUserDataQuery, Sr as useLedgerAccountsQuery, Cr as usePaymentTermsQuery, Tr as useRolePermissionsQueries, fr as useUpsertUserDataMutation, rr as validateExternalBankAccountMutation, ir as verifyDebitCardMutation, ar as withAuthEpoch };