Skip to content

Commit

Permalink
Merge branch 'main' into add-webinars-event-to-queue-handler
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPonchia authored Dec 5, 2024
2 parents edb84dc + d1dae75 commit 639b788
Show file tree
Hide file tree
Showing 21 changed files with 116 additions and 61 deletions.
5 changes: 0 additions & 5 deletions .changeset/dry-papayas-switch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/flat-walls-cough.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hungry-eels-stare.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-pens-grab.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silly-geese-shop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/six-yaks-obey.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-laws-do.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/soft-socks-build.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stale-wombats-cover.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-trains-grin.md

This file was deleted.

12 changes: 12 additions & 0 deletions apps/infrastructure/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# infrastructure

## 1.4.0

### Minor Changes

- e1f67d6: Implemented active campaign syncer infrastructure
- e623940: Langfuse infrastructure implemented

### Patch Changes

- bbe33fc: Fix img_src CSP directive to see also in Dev the images inserted using production's CMS
- 94ca22c: Added permissions to deploy the ac sync lambdas via GH actions

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/infrastructure/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "infrastructure",
"version": "1.3.0",
"version": "1.4.0",
"private": true
}
7 changes: 7 additions & 0 deletions apps/nextjs-website/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# nextjs-website

## 4.13.0

### Minor Changes

- 7ac487f: Fix related links and webinar codec
- fe61351: Add history to send query endpoint

## 4.12.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nextjs-website",
"version": "4.12.0",
"version": "4.13.0",
"private": true,
"scripts": {
"download-docs": "./scripts/fetch-docs.sh docs/from-gitbook",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export type OverviewPageProps = {
}[];
};
readonly relatedLinks?: {
readonly title: string;
readonly title?: string;
readonly links: {
text: string;
href: string;
Expand Down
2 changes: 1 addition & 1 deletion apps/nextjs-website/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ type EcosystemProps = {
};

type ComingSoonDocumentationProps = {
readonly title: string;
readonly title?: string;
readonly links: readonly {
readonly text: string;
readonly href: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import * as t from 'io-ts/lib';
import { LinkCodec } from './LinkCodec';
import { NullToUndefinedCodec } from './NullToUndefinedCodec';

export const RelatedLinksCodec = t.type({
title: t.string,
title: t.union([NullToUndefinedCodec, t.string]),
links: t.array(LinkCodec),
});
2 changes: 1 addition & 1 deletion apps/nextjs-website/src/lib/types/webinar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export type Webinar = {
}[];
};
readonly relatedLinks?: {
readonly title: string;
readonly title?: string;
readonly links: readonly {
readonly text: string;
readonly href: string;
Expand Down
Loading

0 comments on commit 639b788

Please sign in to comment.