Add KYC profile integration and SupplierInfoBlock component
Some checks failed
Build Docker Image / build (push) Failing after 2m51s

This commit is contained in:
Ruslan Bakiev
2026-01-21 09:19:44 +07:00
parent d8befc8b9f
commit ace458ed7e
10 changed files with 159 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ query GetSupplierProfile($uuid: String!) {
getSupplierProfile(uuid: $uuid) {
uuid
teamUuid
kycProfileUuid
name
description
country

View File

@@ -0,0 +1,14 @@
query GetSupplierProfileByTeam($teamUuid: String!) {
getSupplierProfileByTeam(teamUuid: $teamUuid) {
uuid
teamUuid
kycProfileUuid
name
description
country
logoUrl
isVerified
isActive
offersCount
}
}

View File

@@ -0,0 +1,16 @@
query GetKycProfileFull($profileUuid: String!) {
companyFullByProfile(profileUuid: $profileUuid) {
inn
ogrn
name
companyType
registrationYear
isActive
address
director
capital
activities
sources
lastUpdated
}
}

View File

@@ -0,0 +1,8 @@
query GetKycProfileTeaser($profileUuid: String!) {
companyTeaserByProfile(profileUuid: $profileUuid) {
companyType
registrationYear
isActive
sourcesCount
}
}