@@ -42,31 +42,37 @@ const Products = () => {
4242 transformData = { transformPaymentData }
4343 />
4444 ) }
45- < Endpoint
46- endpoint = "auth"
47- name = "Auth"
48- categories = { authCategories }
49- schema = "/auth/get/"
50- description = "Retrieve account and routing numbers for checking and savings accounts."
51- transformData = { transformAuthData }
52- />
53- < Endpoint
54- endpoint = "transactions"
55- name = "Transactions"
56- categories = { transactionsCategories }
57- schema = "/transactions/sync/"
58- description = "Retrieve transactions or incremental updates for credit and depository accounts."
59- transformData = { transformTransactionsData }
60- />
61- < Endpoint
62- endpoint = "identity"
63- name = "Identity"
64- categories = { identityCategories }
65- schema = "/identity/get/"
66- description = "Retrieve Identity information on file with the bank. Reduce
67- fraud by comparing user-submitted data to validate identity."
68- transformData = { transformIdentityData }
69- />
45+ { products . includes ( "auth" ) && (
46+ < Endpoint
47+ endpoint = "auth"
48+ name = "Auth"
49+ categories = { authCategories }
50+ schema = "/auth/get/"
51+ description = "Retrieve account and routing numbers for checking and savings accounts."
52+ transformData = { transformAuthData }
53+ />
54+ ) }
55+ { products . includes ( "transactions" ) && (
56+ < Endpoint
57+ endpoint = "transactions"
58+ name = "Transactions"
59+ categories = { transactionsCategories }
60+ schema = "/transactions/sync/"
61+ description = "Retrieve transactions or incremental updates for credit and depository accounts."
62+ transformData = { transformTransactionsData }
63+ />
64+ ) }
65+ { products . includes ( "identity" ) && (
66+ < Endpoint
67+ endpoint = "identity"
68+ name = "Identity"
69+ categories = { identityCategories }
70+ schema = "/identity/get/"
71+ description = "Retrieve Identity information on file with the bank. Reduce
72+ fraud by comparing user-submitted data to validate identity."
73+ transformData = { transformIdentityData }
74+ />
75+ ) }
7076 { products . includes ( "assets" ) && (
7177 < Endpoint
7278 endpoint = "assets"
@@ -77,15 +83,17 @@ const Products = () => {
7783 transformData = { transformAssetsData }
7884 />
7985 ) }
80- < Endpoint
81- endpoint = "balance"
82- name = "Balance"
83- categories = { balanceCategories }
84- schema = "/accounts/balance/get/"
85- description = "Check balances in real time to prevent non-sufficient funds
86+ { ! products . includes ( "payment_initiation" ) && (
87+ < Endpoint
88+ endpoint = "balance"
89+ name = "Balance"
90+ categories = { balanceCategories }
91+ schema = "/accounts/balance/get/"
92+ description = "Check balances in real time to prevent non-sufficient funds
8693 fees."
87- transformData = { transformBalanceData }
88- />
94+ transformData = { transformBalanceData }
95+ />
96+ ) }
8997 { products . includes ( "investments" ) && (
9098 < >
9199 < Endpoint
0 commit comments