Skip to content
Open
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/core": "0.4.0",
"packages/payments": "1.1.1"
"packages/core": "0.4.1",
"packages/payments": "1.2.0"
}
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.4.1](https://github.com/AmbossTech/sdk/compare/core-v0.4.0...core-v0.4.1) (2026-09-14)


### Bug Fixes

* **core:** default baseUrl to app.amboss.tech ([#52](https://github.com/AmbossTech/sdk/issues/52)) ([050a08e](https://github.com/AmbossTech/sdk/commit/050a08ec0fd58575f5dd6cdbd13b479f2e31fb50))

## [0.4.0](https://github.com/AmbossTech/sdk/compare/core-v0.3.0...core-v0.4.0) (2026-08-20)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ambosstech/core",
"version": "0.4.0",
"version": "0.4.1",
"description": "Shared client and HTTP/GraphQL transport for Amboss SDKs",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { ClientConfig, FetchLike, ResolvedClientConfig } from './types.js';

const DEFAULT_BASE_URL = 'https://app.amboss.tech/graphql';
const DEFAULT_TIMEOUT_MS = 30_000;
const SDK_VERSION = '0.4.0'; // x-release-please-version
const SDK_VERSION = '0.4.1'; // x-release-please-version

export class AmbossClient {
protected readonly config: ResolvedClientConfig;
Expand Down
12 changes: 12 additions & 0 deletions packages/payments/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [1.2.0](https://github.com/AmbossTech/sdk/compare/payments-v1.1.1...payments-v1.2.0) (2026-09-14)


### Features

* add Transactions findOne/findMany [AMB-2992] ([#49](https://github.com/AmbossTech/sdk/issues/49)) ([8947588](https://github.com/AmbossTech/sdk/commit/8947588ca1ed007625137ba0a684142fa43ee48d))


### Bug Fixes

* **core:** default baseUrl to app.amboss.tech ([#52](https://github.com/AmbossTech/sdk/issues/52)) ([050a08e](https://github.com/AmbossTech/sdk/commit/050a08ec0fd58575f5dd6cdbd13b479f2e31fb50))

## [1.1.1](https://github.com/AmbossTech/sdk/compare/payments-v1.1.0...payments-v1.1.1) (2026-08-20)


Expand Down
2 changes: 1 addition & 1 deletion packages/payments/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ambosstech/payments",
"version": "1.1.1",
"version": "1.2.0",
"description": "Amboss Payments SDK: webhook verification, environments, wallets, transactions",
"license": "MIT",
"repository": {
Expand Down
Loading