Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump-flash-image- #55

Closed
wants to merge 1 commit into from
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.40
appVersion: 0.6.10
appVersion: 0.6.12
dependencies:
- name: redis
repository: https://charts.bitnami.com/bitnami
Expand Down
32 changes: 32 additions & 0 deletions charts/flash/apollo-router/supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1012,6 +1012,7 @@ type Mutation
userTotpRegistrationInitiate(input: UserTotpRegistrationInitiateInput!): UserTotpRegistrationInitiatePayload!
userTotpRegistrationValidate(input: UserTotpRegistrationValidateInput!): UserTotpRegistrationValidatePayload!
userUpdateLanguage(input: UserUpdateLanguageInput!): UserUpdateLanguagePayload!
userUpdateNpub(input: UserUpdateNpubInput!): UserUpdateNpubPayload!
userUpdateUsername(input: UserUpdateUsernameInput!): UserUpdateUsernamePayload! @deprecated(reason: "Username will be moved to @Handle in Accounts. Also SetUsername naming should be used instead of UpdateUsername to reflect the idempotency of Handles")
}

Expand Down Expand Up @@ -1054,6 +1055,20 @@ type NotificationSettings
push: NotificationChannelSettings!
}

"""Nostr Identity public key"""
scalar npub
@join__type(graph: PUBLIC)

type npubByUsername
@join__type(graph: PUBLIC)
{
"""Nostr public key"""
npub: npub

"""Optional immutable user friendly identifier."""
username: Username @deprecated(reason: "will be moved to @Handle in Account and Wallet")
}

"""An address for an on-chain bitcoin destination"""
scalar OnChainAddress
@join__type(graph: PUBLIC)
Expand Down Expand Up @@ -1332,6 +1347,7 @@ type Query
lnInvoicePaymentStatus(input: LnInvoicePaymentStatusInput!): LnInvoicePaymentStatusPayload!
me: User
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!
onChainUsdTxFeeAsBtcDenominated(address: OnChainAddress!, amount: SatAmount!, speed: PayoutSpeed = FAST, walletId: WalletId!): OnChainUsdTxFee!
Expand Down Expand Up @@ -1663,6 +1679,9 @@ type User
"""
language: Language!

"""Nostr public key"""
npub: npub

"""Phone number with international calling code."""
phone: Phone

Expand Down Expand Up @@ -1891,6 +1910,19 @@ type UserUpdateLanguagePayload
user: User
}

input UserUpdateNpubInput
@join__type(graph: PUBLIC)
{
npub: npub!
}

type UserUpdateNpubPayload
@join__type(graph: PUBLIC)
{
errors: [Error!]!
user: User
}

input UserUpdateUsernameInput
@join__type(graph: PUBLIC)
{
Expand Down
8 changes: 4 additions & 4 deletions charts/flash/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ galoy:
repository: lnflash/flash-app:edge
imagePullPolicy: Always
# digests managed by flash-app pipeline in concourse
digest: sha256:43f5c185dae08fdc4b2b12fc69e89daa355fbd1e18a8df668de088e8be780581
git_ref: "a1362fd"
digest: sha256:d6a7e06fabf6e52fe112d63392721139ea1b0f00fca715bd015684d930a5d03c
git_ref: "c21d48e"
websocket:
repository: docker.io/lnflash/galoy-app-websocket
# digests managed by flash-app pipeline in concourse
digest: "sha256:b2c0eede55c76f2460a037ab46e51cc5e104b446b2772dbda1001dbaf2b7db19"
digest: "sha256:2c944d04cab1d2c1c3c37822d43e5b0e2dfbf6f2a3efad4b7cef74e0d644dd0f"
mongodbMigrate:
repository: docker.io/lnflash/galoy-app-migrate
# digests managed by flash-app pipeline in concourse
digest: "sha256:9c4589e1c922f9fc234e0a5e93dfcc1aaf01d3ed572090400b18982e7ca55b3a"
digest: "sha256:cd886ae79d5000210a490b133dd47be670e24c040c0df1a8105a2435eae5345f"
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