Compare commits

..

2 Commits

Author SHA1 Message Date
standardci
a7e528cdbb chore(release): publish new version
- @standardnotes/api-gateway@1.6.26
 - @standardnotes/auth-server@1.11.27
 - @standardnotes/domain-events-infra@1.7.25
 - @standardnotes/domain-events@2.50.1
 - @standardnotes/event-store@1.1.24
 - @standardnotes/files-server@1.5.24
 - @standardnotes/scheduler-server@1.5.22
 - @standardnotes/syncing-server@1.6.26
2022-07-15 08:19:36 +00:00
Karol Sójko
e23291359f fix(domain-events): add invoice numver to event payload 2022-07-15 10:18:04 +02:00
17 changed files with 43 additions and 8 deletions

View File

@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.6.26](https://github.com/standardnotes/api-gateway/compare/@standardnotes/api-gateway@1.6.25...@standardnotes/api-gateway@1.6.26) (2022-07-15)
**Note:** Version bump only for package @standardnotes/api-gateway
## [1.6.25](https://github.com/standardnotes/api-gateway/compare/@standardnotes/api-gateway@1.6.24...@standardnotes/api-gateway@1.6.25) (2022-07-15)
**Note:** Version bump only for package @standardnotes/api-gateway

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/api-gateway",
"version": "1.6.25",
"version": "1.6.26",
"engines": {
"node": ">=16.0.0 <17.0.0"
},

View File

@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.11.27](https://github.com/standardnotes/server/compare/@standardnotes/auth-server@1.11.26...@standardnotes/auth-server@1.11.27) (2022-07-15)
**Note:** Version bump only for package @standardnotes/auth-server
## [1.11.26](https://github.com/standardnotes/server/compare/@standardnotes/auth-server@1.11.25...@standardnotes/auth-server@1.11.26) (2022-07-15)
**Note:** Version bump only for package @standardnotes/auth-server

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/auth-server",
"version": "1.11.26",
"version": "1.11.27",
"engines": {
"node": ">=16.0.0 <17.0.0"
},

View File

@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.7.25](https://github.com/standardnotes/server/compare/@standardnotes/domain-events-infra@1.7.24...@standardnotes/domain-events-infra@1.7.25) (2022-07-15)
**Note:** Version bump only for package @standardnotes/domain-events-infra
## [1.7.24](https://github.com/standardnotes/server/compare/@standardnotes/domain-events-infra@1.7.23...@standardnotes/domain-events-infra@1.7.24) (2022-07-15)
**Note:** Version bump only for package @standardnotes/domain-events-infra

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/domain-events-infra",
"version": "1.7.24",
"version": "1.7.25",
"engines": {
"node": ">=16.0.0 <17.0.0"
},

View File

@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.50.1](https://github.com/standardnotes/server/compare/@standardnotes/domain-events@2.50.0...@standardnotes/domain-events@2.50.1) (2022-07-15)
### Bug Fixes
* **domain-events:** add invoice numver to event payload ([e232913](https://github.com/standardnotes/server/commit/e23291359f704b3d7d9ed23e3f951c35992ec760))
# [2.50.0](https://github.com/standardnotes/server/compare/@standardnotes/domain-events@2.49.0...@standardnotes/domain-events@2.50.0) (2022-07-15)
### Features

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/domain-events",
"version": "2.50.0",
"version": "2.50.1",
"engines": {
"node": ">=16.0.0 <17.0.0"
},

View File

@@ -1,5 +1,6 @@
export interface InvoiceGeneratedEventPayload {
userEmail: string
invoiceNumber: string
paymentDateFormatted: string
s3BucketName: string
s3InvoiceObjectKey: string

View File

@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.1.24](https://github.com/standardnotes/server/compare/@standardnotes/event-store@1.1.23...@standardnotes/event-store@1.1.24) (2022-07-15)
**Note:** Version bump only for package @standardnotes/event-store
## [1.1.23](https://github.com/standardnotes/server/compare/@standardnotes/event-store@1.1.22...@standardnotes/event-store@1.1.23) (2022-07-15)
**Note:** Version bump only for package @standardnotes/event-store

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/event-store",
"version": "1.1.23",
"version": "1.1.24",
"description": "Event Store Service",
"private": true,
"main": "dist/src/index.js",

View File

@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.5.24](https://github.com/standardnotes/files/compare/@standardnotes/files-server@1.5.23...@standardnotes/files-server@1.5.24) (2022-07-15)
**Note:** Version bump only for package @standardnotes/files-server
## [1.5.23](https://github.com/standardnotes/files/compare/@standardnotes/files-server@1.5.22...@standardnotes/files-server@1.5.23) (2022-07-15)
**Note:** Version bump only for package @standardnotes/files-server

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/files-server",
"version": "1.5.23",
"version": "1.5.24",
"engines": {
"node": ">=16.0.0 <17.0.0"
},

View File

@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.5.22](https://github.com/standardnotes/server/compare/@standardnotes/scheduler-server@1.5.21...@standardnotes/scheduler-server@1.5.22) (2022-07-15)
**Note:** Version bump only for package @standardnotes/scheduler-server
## [1.5.21](https://github.com/standardnotes/server/compare/@standardnotes/scheduler-server@1.5.20...@standardnotes/scheduler-server@1.5.21) (2022-07-15)
**Note:** Version bump only for package @standardnotes/scheduler-server

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/scheduler-server",
"version": "1.5.21",
"version": "1.5.22",
"engines": {
"node": ">=16.0.0 <17.0.0"
},

View File

@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.6.26](https://github.com/standardnotes/syncing-server-js/compare/@standardnotes/syncing-server@1.6.25...@standardnotes/syncing-server@1.6.26) (2022-07-15)
**Note:** Version bump only for package @standardnotes/syncing-server
## [1.6.25](https://github.com/standardnotes/syncing-server-js/compare/@standardnotes/syncing-server@1.6.24...@standardnotes/syncing-server@1.6.25) (2022-07-15)
**Note:** Version bump only for package @standardnotes/syncing-server

View File

@@ -1,6 +1,6 @@
{
"name": "@standardnotes/syncing-server",
"version": "1.6.25",
"version": "1.6.26",
"engines": {
"node": ">=16.0.0 <17.0.0"
},