Skip to content

Commit

Permalink
chore(release): [ci skip] bump quickstart image to sha256@b2ceee03657…
Browse files Browse the repository at this point in the history
…d9785ade725619bc522b5fd025d0b34d8c6a5e4b447e40b1f5046
  • Loading branch information
galoybot authored and git committed May 1, 2024
1 parent 9361721 commit 7232e18
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 25 deletions.
1 change: 1 addition & 0 deletions quickstart/dev/config/apollo-federation/supergraph.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1778,6 +1778,7 @@ type StatefulNotification
deepLink: String
createdAt: Timestamp!
acknowledgedAt: Timestamp
addToBulletin: Boolean!
}

input StatefulNotificationAcknowledgeInput
Expand Down
8 changes: 4 additions & 4 deletions quickstart/docker-compose.tmpl.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#@ load("@ytt:data", "data")

#@ galoy_api_image_digest = "sha256@b3f2889577b0a901a148a938332448f1679d80042695fab040ca9e9f024a6d4a"
#@ galoy_trigger_image_digest = "sha256@2e837c52d35df017af11042a8845bfac2b9f7ffa0c00d01060967ec799b986c4"
#@ mongodb_migrate_image_digest = "sha256@6acee59a77e44ec14e07469372b4a4500c984d6350969fa7ded60bdb821e6b8e"
#@ galoy_notifications_image_digest = "sha256@a33b01baac8ddc40bb07fb51eabff9a589437650e88342cd01b4df79a75f3b57"
#@ galoy_api_image_digest = "sha256@b2ceee03657d9785ade725619bc522b5fd025d0b34d8c6a5e4b447e40b1f5046"
#@ galoy_trigger_image_digest = "sha256@e84598e26d9517a9b810948b7e7a1d00b53b31c1d083c4a73b54cadef4732f3f"
#@ mongodb_migrate_image_digest = "sha256@1edf0b4db8339892dc0985879c9e8504453a81ce1e29b2a91dad0b3ea7189c90"
#@ galoy_notifications_image_digest = "sha256@992211d24918d41a08e2e3b4791364fd8e231684487dcbe9fc11e5d8acbc2f01"

#@ core_env = [
#@ "HELMREVISION=dev",
Expand Down
8 changes: 4 additions & 4 deletions quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ services:
- POSTGRES_PASSWORD=secret
- POSTGRES_DB=hydra
galoy:
image: us.gcr.io/galoy-org/galoy-api@sha256:b3f2889577b0a901a148a938332448f1679d80042695fab040ca9e9f024a6d4a
image: us.gcr.io/galoy-org/galoy-api@sha256:b2ceee03657d9785ade725619bc522b5fd025d0b34d8c6a5e4b447e40b1f5046
environment:
- HELMREVISION=dev
- NETWORK=regtest
Expand Down Expand Up @@ -161,7 +161,7 @@ services:
aliases:
- bats-tests
trigger:
image: us.gcr.io/galoy-org/galoy-api-trigger@sha256:2e837c52d35df017af11042a8845bfac2b9f7ffa0c00d01060967ec799b986c4
image: us.gcr.io/galoy-org/galoy-api-trigger@sha256:e84598e26d9517a9b810948b7e7a1d00b53b31c1d083c4a73b54cadef4732f3f
environment:
- HELMREVISION=dev
- NETWORK=regtest
Expand Down Expand Up @@ -213,7 +213,7 @@ services:
- bria
- mongodb
notifications:
image: us.gcr.io/galoy-org/galoy-notifications@sha256:a33b01baac8ddc40bb07fb51eabff9a589437650e88342cd01b4df79a75f3b57
image: us.gcr.io/galoy-org/galoy-notifications@sha256:992211d24918d41a08e2e3b4791364fd8e231684487dcbe9fc11e5d8acbc2f01
environment:
- PG_CON=postgres://user:password@notifications-pg:5432/pg
- OTEL_EXPORTER_OTLP_ENDPOINT=http://otel-agent:4318
Expand Down Expand Up @@ -254,7 +254,7 @@ services:
environment:
- MONGO_INITDB_DATABASE=galoy
mongodb-migrate:
image: us.gcr.io/galoy-org/galoy-api-migrate@sha256:6acee59a77e44ec14e07469372b4a4500c984d6350969fa7ded60bdb821e6b8e
image: us.gcr.io/galoy-org/galoy-api-migrate@sha256:1edf0b4db8339892dc0985879c9e8504453a81ce1e29b2a91dad0b3ea7189c90
depends_on:
- mongodb
environment:
Expand Down
34 changes: 30 additions & 4 deletions quickstart/graphql/schemas/admin/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,34 @@ type Coordinates {
"""A CCA2 country code (ex US, FR, etc)"""
scalar CountryCode

enum DeepLink {
enum DeepLinkAction {
SET_DEFAULT_ACCOUNT_MODAL
SET_LN_ADDRESS_MODAL
UPGRADE_ACCOUNT_MODAL
}

enum DeepLinkScreen {
CHAT
CIRCLES
CONVERT
EARN
HOME
MAP
PEOPLE
PRICE
RECEIVE
SCAN_QR
SETTINGS
SETTINGS_2FA
SETTINGS_ACCOUNT
SETTINGS_DEFAULT_ACCOUNT
SETTINGS_DISPLAY_CURRENCY
SETTINGS_EMAIL
SETTINGS_LANGUAGE
SETTINGS_NOTIFICATIONS
SETTINGS_SECURITY
SETTINGS_THEME
SETTINGS_TX_LIMITS
}

"""Display currency of an account"""
Expand Down Expand Up @@ -267,16 +289,20 @@ enum LnPaymentStatus {

scalar LnPubkey

input LocalizedPushContentInput {
input LocalizedNotificationContentInput {
body: String!
language: Language!
title: String!
}

input MarketingNotificationTriggerInput {
deepLink: DeepLink
localizedPushContents: [LocalizedPushContentInput!]!
deepLinkAction: DeepLinkAction
deepLinkScreen: DeepLinkScreen
localizedNotificationContents: [LocalizedNotificationContentInput!]!
phoneCountryCodesFilter: [CountryCode!]
shouldAddToBulletin: Boolean!
shouldAddToHistory: Boolean!
shouldSendPush: Boolean!
userIdsFilter: [ID!]
}

Expand Down
18 changes: 9 additions & 9 deletions quickstart/vendir.lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ apiVersion: vendir.k14s.io/v1alpha1
directories:
- contents:
- git:
commitTitle: 'feat: reissue chatbotId when errored (#4387)...'
sha: 9f839cef0d284005d9bed0373ab597392ad4d775
commitTitle: 'chore(notifications): refactor marketing notification (#4357)...'
sha: 9f6bba22a68639556fc0c8656410b2a94142c685
tags:
- 0.20.175-2-g9f839cef0
- 0.20.176-2-g9f6bba22a
path: .
path: dev
- contents:
- git:
commitTitle: 'feat: reissue chatbotId when errored (#4387)...'
sha: 9f839cef0d284005d9bed0373ab597392ad4d775
commitTitle: 'chore(notifications): refactor marketing notification (#4357)...'
sha: 9f6bba22a68639556fc0c8656410b2a94142c685
tags:
- 0.20.175-2-g9f839cef0
- 0.20.176-2-g9f6bba22a
path: schemas
- git:
commitTitle: 'feat: reissue chatbotId when errored (#4387)...'
sha: 9f839cef0d284005d9bed0373ab597392ad4d775
commitTitle: 'chore(notifications): refactor marketing notification (#4357)...'
sha: 9f6bba22a68639556fc0c8656410b2a94142c685
tags:
- 0.20.175-2-g9f839cef0
- 0.20.176-2-g9f6bba22a
path: gql
path: graphql
kind: LockConfig
6 changes: 3 additions & 3 deletions quickstart/vendir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ directories:
- path: ./
git:
url: https://github.com/GaloyMoney/galoy.git
ref: 9f839cef0d284005d9bed0373ab597392ad4d775
ref: 9f6bba22a68639556fc0c8656410b2a94142c685
includePaths:
- dev/**/*
excludePaths:
Expand All @@ -18,15 +18,15 @@ directories:
- path: schemas/
git:
url: https://github.com/GaloyMoney/galoy.git
ref: 9f839cef0d284005d9bed0373ab597392ad4d775
ref: 9f6bba22a68639556fc0c8656410b2a94142c685
includePaths:
- core/api/src/graphql/public/schema.graphql
- core/api/src/graphql/admin/schema.graphql
newRootPath: core/api/src/graphql
- path: gql/
git:
url: https://github.com/GaloyMoney/galoy.git
ref: 9f839cef0d284005d9bed0373ab597392ad4d775
ref: 9f6bba22a68639556fc0c8656410b2a94142c685
includePaths:
- bats/gql/**/*
newRootPath: bats/gql
2 changes: 1 addition & 1 deletion quickstart/vendir/values.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#@data/values
---
galoy_git_ref: 9f839cef0d284005d9bed0373ab597392ad4d775
galoy_git_ref: 9f6bba22a68639556fc0c8656410b2a94142c685

0 comments on commit 7232e18

Please sign in to comment.