Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/flash/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: flash
description: A Helm chart for the Flash application backend
type: application
version: 0.1.0
appVersion: 0.7.20
appVersion: 0.7.23
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
Expand Down
12 changes: 9 additions & 3 deletions charts/flash/apollo-router/supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,19 @@ type AccountUpgradeRequest
email: String
fullName: String!

"""Whether an ID document is provided with the upgrade request"""
idDocument: Boolean!

"""ERPNext document name"""
name: String!
phoneNumber: String
requestedLevel: AccountLevel!

"""Workflow status of the upgrade request"""
"""Status of the upgrade request"""
status: String!

"""Whether a PoS terminal is requested with the upgrade"""
terminalRequested: Boolean!
username: String!
}

Expand Down Expand Up @@ -1308,7 +1314,7 @@ input OnChainUsdPaymentSendInput
type OnChainUsdTxFee
@join__type(graph: PUBLIC)
{
amount: CentAmount!
amount: FractionalCentAmount!
}

type OneDayAccountLimit implements AccountLimit
Expand Down Expand Up @@ -1505,7 +1511,7 @@ type Query
mobileVersions: [MobileVersions]
npubByUsername(username: Username!): npubByUsername
onChainTxFee(address: OnChainAddress!, amount: SatAmount!, speed: PayoutSpeed = FAST, walletId: WalletId!): OnChainTxFee!
onChainUsdTxFee(address: OnChainAddress!, amount: CentAmount!, speed: PayoutSpeed = FAST, walletId: WalletId!): OnChainUsdTxFee!
onChainUsdTxFee(address: OnChainAddress!, amount: FractionalCentAmount!, speed: PayoutSpeed = FAST, walletId: WalletId!): OnChainUsdTxFee!
onChainUsdTxFeeAsBtcDenominated(address: OnChainAddress!, amount: SatAmount!, speed: PayoutSpeed = FAST, walletId: WalletId!): OnChainUsdTxFee!
quizQuestions: [QuizQuestion] @deprecated(reason: "TODO: remove. we don't need a non authenticated version of this query. the users can only do the query while authenticated")

Expand Down
8 changes: 4 additions & 4 deletions charts/flash/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ galoy:
repository: lnflash/flash-app
imagePullPolicy: Always
# digests managed by flash-app pipeline in concourse
digest: sha256:95d1800337b5859a6f287fe9343db4f4b646a0bcdc84c191611f663084418dcc
git_ref: "8b6dfe7"
digest: sha256:4aed1ddb9cbcb834c133966c613dd315ef9c5c4ab0f34e1a7f02ab2a28c70234
git_ref: "2f7912e"
websocket:
repository: docker.io/lnflash/galoy-app-websocket
# digests managed by flash-app pipeline in concourse
digest: "sha256:fe27834bf208fb6d2b40ff0dbaeec107f2abcdc040ecacf2d934fc48f03d1d3d"
digest: "sha256:5a73af7da450585b013560ea0114825a048e4edeeff5df0f9983c7b9029d8159"
mongodbMigrate:
repository: docker.io/lnflash/galoy-app-migrate
# digests managed by flash-app pipeline in concourse
digest: "sha256:41c7f44fee0b5b25f5f182f35a0af73844295ae35408329c12c2556b196c7e91"
digest: "sha256:229ee1ee8c47035c558b5b10930d5c8d9445b8314c56c9d85218d6af6d40c6e8"
mongoBackup:
repository: us.gcr.io/galoy-org/mongo-backup
# Currently using Galoy's images. To make changes, see /images & /ci in this repo
Expand Down
Loading