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
11 changes: 0 additions & 11 deletions .changeset/result-ok-void-overload.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/authentication/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @rineex/auth-core

## 1.1.1

### Patch Changes

- Updated dependencies
[[`4647008`](https://github.com/rineex/core/commit/46470084132b8408ea22759e817d74cdd152b8dc)]:
- @rineex/ddd@6.1.0

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rineex/auth-core",
"version": "1.1.0",
"version": "1.1.1",
"description": "Authentication Core package for Rineex core modules",
"author": "Rineex Team",
"main": "./dist/index.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/authentication/methods/otp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @rineex/authentication-method-otp

## 1.1.1

### Patch Changes

- Updated dependencies
[[`4647008`](https://github.com/rineex/core/commit/46470084132b8408ea22759e817d74cdd152b8dc)]:
- @rineex/ddd@6.1.0
- @rineex/auth-core@1.1.1

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/methods/otp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rineex/authentication-method-otp",
"version": "1.1.0",
"version": "1.1.1",
"description": "OTP authentication method for Rineex authentication system",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
9 changes: 9 additions & 0 deletions packages/authentication/methods/passwordless/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @rineex/authentication-method-passwordless

## 0.2.1

### Patch Changes

- Updated dependencies
[[`4647008`](https://github.com/rineex/core/commit/46470084132b8408ea22759e817d74cdd152b8dc)]:
- @rineex/ddd@6.1.0
- @rineex/auth-core@1.1.1

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/methods/passwordless/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rineex/authentication-method-passwordless",
"version": "0.2.0",
"version": "0.2.1",
"description": "Passwordless authentication method for Rineex authentication system",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
12 changes: 12 additions & 0 deletions packages/ddd/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @rineex/ddd

## 6.1.0

### Minor Changes

- Add `Result.ok()` void overload for command use cases that succeed without a
([#68](https://github.com/rineex/core/pull/68)) value.
- `Result.ok()` returns `Ok<void>`; `Result.ok(value)` returns `Ok<T>` as
before
- `Ok<T>` and `Result<T, E>` default type parameters to `void` and
`UseCaseError`
- `flatMap` widened to allow distinct error types in chained operations

## 6.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ddd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rineex/ddd",
"version": "6.0.0",
"version": "6.1.0",
"description": "Domain Driven Design package for Rineex core modules",
"author": "Rineex Team",
"main": "./dist/index.js",
Expand Down
Loading