feat(profile): add counterparty card with dadata search and cart gating

This commit is contained in:
Ruslan Bakiev
2026-04-02 16:47:27 +07:00
parent f4a4b41dd5
commit d72de0f8c3
10 changed files with 879 additions and 41 deletions

View File

@@ -0,0 +1,20 @@
query MyCounterpartyProfile {
myCounterpartyProfile {
id
companyName
companyFullName
inn
kpp
ogrn
legalAddress
bankName
bik
correspondentAccount
checkingAccount
signerFullName
signerPosition
signerBasis
isComplete
updatedAt
}
}

View File

@@ -0,0 +1,20 @@
mutation UpsertMyCounterpartyProfile($input: UpsertMyCounterpartyProfileInput!) {
upsertMyCounterpartyProfile(input: $input) {
id
companyName
companyFullName
inn
kpp
ogrn
legalAddress
bankName
bik
correspondentAccount
checkingAccount
signerFullName
signerPosition
signerBasis
isComplete
updatedAt
}
}