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.0.86
appVersion: 0.7.14
appVersion: 0.7.16
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
Expand Down
46 changes: 46 additions & 0 deletions charts/flash/apollo-router/supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,32 @@ type AccountUpdateNotificationSettingsPayload
errors: [Error!]!
}

type AccountUpgradeRequest
@join__type(graph: PUBLIC)
{
businessAddress: String
businessName: String
currentLevel: AccountLevel!
email: String
fullName: String!

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

"""Workflow status of the upgrade request"""
status: String!
username: String!
}

type AccountUpgradeRequestPayload
@join__type(graph: PUBLIC)
{
errors: [Error!]!
upgradeRequest: AccountUpgradeRequest
}

"""An Opaque Bearer token"""
scalar AuthToken
@join__type(graph: PUBLIC)
Expand Down Expand Up @@ -224,6 +250,24 @@ type BuildInformation
helmRevision: Int
}

input BusinessAccountUpgradeRequestInput
@join__type(graph: PUBLIC)
{
accountNumber: Int
accountType: String
bankBranch: String
bankName: String
businessAddress: String
businessName: String
currency: String
email: String
fullName: String!
idDocument: String
level: AccountLevel!
phoneNumber: String
terminalRequested: Boolean
}

type CallbackEndpoint
@join__type(graph: PUBLIC)
{
Expand Down Expand Up @@ -966,6 +1010,7 @@ type Mutation
accountEnableNotificationChannel(input: AccountEnableNotificationChannelInput!): AccountUpdateNotificationSettingsPayload!
accountUpdateDefaultWalletId(input: AccountUpdateDefaultWalletIdInput!): AccountUpdateDefaultWalletIdPayload!
accountUpdateDisplayCurrency(input: AccountUpdateDisplayCurrencyInput!): AccountUpdateDisplayCurrencyPayload!
businessAccountUpgradeRequest(input: BusinessAccountUpgradeRequestInput!): SuccessPayload!
callbackEndpointAdd(input: CallbackEndpointAddInput!): CallbackEndpointAddPayload!
callbackEndpointDelete(input: CallbackEndpointDeleteInput!): SuccessPayload!
captchaCreateChallenge: CaptchaCreateChallengePayload!
Expand Down Expand Up @@ -1419,6 +1464,7 @@ type Query
@join__type(graph: PUBLIC)
{
accountDefaultWallet(username: Username!, walletCurrency: WalletCurrency): PublicWallet!
accountUpgradeRequest: AccountUpgradeRequestPayload!
btcPrice(currency: DisplayCurrency! = "USD"): Price @deprecated(reason: "Deprecated in favor of realtimePrice")
btcPriceList(range: PriceGraphRange!): [PricePoint]
businessMapMarkers: [MapMarker!]!
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:79481ab16b38617664bade9c54c4f5c858fd469c4634f94e96e5c31bd2d1673c
git_ref: "37679e5"
digest: sha256:cc840b2f49b08d64369849b1971e4f08a3ecc0ec86c6a57254f11adf608addc9
git_ref: "4dfeed0"
websocket:
repository: docker.io/lnflash/galoy-app-websocket
# digests managed by flash-app pipeline in concourse
digest: "sha256:dd07e0441fd732ac8aae5562950da4b54697238cd44ab7aae4b6c77e0defc60a"
digest: "sha256:e00b6d9c0266603a47e0c1d5ecd3a6e829922053f8a594e46d5ed7b0cb115e33"
mongodbMigrate:
repository: docker.io/lnflash/galoy-app-migrate
# digests managed by flash-app pipeline in concourse
digest: "sha256:00522da73c991183ccd7026f6be99e4afb5c055596a4b3d6a775a0850d086c59"
digest: "sha256:2a93085b931cc9a6e6916126b905f1e74e62e36c9a4ed42b41e483baa06c81d9"
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