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
6 changes: 3 additions & 3 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
speakeasyVersion: 1.790.1
speakeasyVersion: 1.791.1
sources:
stacks-source:
sourceNamespace: stacks-source
sourceRevisionDigest: sha256:29bcc13579975f77dd3c03533a712fe17b643af1c516b86f4a499f42856f32b7
sourceBlobDigest: sha256:78f47f273db89d72d6e74f2f284483f751ee4449fb7f46efadc4525882a6f955
sourceRevisionDigest: sha256:6c3c89b43c0d8a0f2fecf34ff86937fc61d691088dc23ac99c12b455daefb396
sourceBlobDigest: sha256:13724b4f3a2771b9912c10beaaecd2e73b3ca8203d7f7b40cadaca7014f45994
tags:
- latest
- SDK_VERSION
Expand Down
14 changes: 7 additions & 7 deletions Justfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Component versions
LEDGER_VERSION := "v2.4.6"
LEDGER_VERSION := "v2.4.12"
PAYMENTS_VERSION := "v3.4.0"
WALLETS_VERSION := "v2.1.5"
WEBHOOKS_VERSION := "v2.3.2"
AUTH_VERSION := "v2.4.3"
WALLETS_VERSION := "v2.2.0"
WEBHOOKS_VERSION := "v2.5.0"
AUTH_VERSION := "v2.5.0"
SEARCH_VERSION := "v2.1.0"
ORCHESTRATION_VERSION := "v2.6.0"
RECONCILIATION_VERSION := "v2.2.2"
GATEWAY_VERSION := "v2.2.0"
RECONCILIATION_VERSION := "v2.4.0"
GATEWAY_VERSION := "v2.3.1"

# Download all component OpenAPI specs from GitHub releases
download-specs:
mkdir -p components
wget -q https://github.com/formancehq/ledger/releases/download/{{ LEDGER_VERSION }}/openapi.yaml -O components/ledger.openapi.yaml
wget -q https://github.com/formancehq/payments/releases/download/{{ PAYMENTS_VERSION }}/openapi.yaml -O components/payments.openapi.yaml
wget -q https://github.com/formancehq/gateway/releases/download/{{ GATEWAY_VERSION }}/openapi.yaml -O components/gateway.openapi.yaml
wget -q https://raw.githubusercontent.com/formancehq/gateway/{{ GATEWAY_VERSION }}/openapi.yaml -O components/gateway.openapi.yaml
wget -q https://github.com/formancehq/auth/releases/download/{{ AUTH_VERSION }}/openapi.yaml -O components/auth.openapi.yaml
wget -q https://github.com/formancehq/search/releases/download/{{ SEARCH_VERSION }}/openapi.yaml -O components/search.openapi.yaml
wget -q https://github.com/formancehq/webhooks/releases/download/{{ WEBHOOKS_VERSION }}/openapi.yaml -O components/webhooks.openapi.yaml
Expand Down
Loading