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.24
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:a1771392af50c2cd8cb288e4c242571d27aa2a0f95687982ed6acf6bcffb1642
git_ref: "89f72a8"
websocket:
repository: docker.io/lnflash/galoy-app-websocket
# digests managed by flash-app pipeline in concourse
digest: "sha256:fe27834bf208fb6d2b40ff0dbaeec107f2abcdc040ecacf2d934fc48f03d1d3d"
digest: "sha256:f1025b416ba601a5c8375ee92c6370335fe4ab3d304dde345c478ce165f3c51b"
mongodbMigrate:
repository: docker.io/lnflash/galoy-app-migrate
# digests managed by flash-app pipeline in concourse
digest: "sha256:41c7f44fee0b5b25f5f182f35a0af73844295ae35408329c12c2556b196c7e91"
digest: "sha256:93097f040ae93f17bd35be403c55ff326504bdcfd7fc9669ea1a158b28629b92"
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