Skip to content
Merged
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
4 changes: 2 additions & 2 deletions charts/flash/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2 # https://helm.sh/docs/topics/charts/#the-apiversion-field
name: flash
description: A Helm chart for the Flash application backend
type: application
version: 3.2.0
appVersion: 0.7.41
version: 3.2.1
appVersion: 0.7.44
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
Expand Down
6 changes: 5 additions & 1 deletion charts/flash/apollo-router/supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ type AccountLimits
withdrawal: [AccountLimit!]!
}

"""Bank account number. Accepts String or Int and coerces to String."""
scalar AccountNumber
@join__type(graph: PUBLIC)

input AccountUpdateDefaultWalletIdInput
@join__type(graph: PUBLIC)
{
Expand Down Expand Up @@ -213,7 +217,7 @@ type BankAccount
input BankAccountInput
@join__type(graph: PUBLIC)
{
accountNumber: String!
accountNumber: AccountNumber!
accountType: String!
bankBranch: String!
bankName: String!
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:00c41394b51d4eabfcdf1eb73120fa6812a2e08653085654c07da9fd69b155de
git_ref: "7a4af8a"
digest: sha256:091a6a5cb10b74de81784a3163bb6439aec4ff2c170bf61ff4ba42f97d42020b
git_ref: "8109e5d"
websocket:
repository: docker.io/lnflash/galoy-app-websocket
# digests managed by flash-app pipeline in concourse
digest: "sha256:3965d7513519fe821ec960d10b3ef24cb9b7adb88eefb33d46e9345c4c6e21fd"
digest: "sha256:3ccdb840101e1aca058dbaa2e1c04b28cbcd3ddb092ce10d1e4c37fd9ac4950e"
mongodbMigrate:
repository: docker.io/lnflash/galoy-app-migrate
# digests managed by flash-app pipeline in concourse
digest: "sha256:31b8c69983fd08d068d457f12e942af0716174b0e972e899d028ee9c7bed80d9"
digest: "sha256:9447bafdb0b41d03d0fd9679320987dcdb0f7bb9afc6df7794119afc855bdcaf"
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