Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into add-ssm-to-ac-client
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoPonchia committed Dec 5, 2024
2 parents 07e802c + b9003b6 commit fcc2baa
Show file tree
Hide file tree
Showing 24 changed files with 49 additions and 66 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: 5 additions & 0 deletions .changeset/modern-hairs-train.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"active-campaign-client": minor
---

Add SSM client to mange secrets
5 changes: 0 additions & 5 deletions .changeset/plenty-parrots-attend.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
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/active-campaign-client/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ AWS_USER_POOL_ID="region_DFWF81fRa"
COGNITO_USER_ID=66ae52a0-f051-7080-04a1-465b3a4f44cc
LIST_NAME=test-webinar-1732097286071
AC_BASE_URL_PARAM='/ac/base_url'
AC_API_KEY_PARAM='/ac/api_key'
AC_API_KEY_PARAM='/ac/api_key'
13 changes: 13 additions & 0 deletions packages/active-campaign-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# active-campaign-client

## 0.2.0

### Minor Changes

- 3239223: Add handler for updating and deleting contact
- 07703f2: Add package setup and the lambda function to add user to Active Campaign
- 3197206: Add handlers for create list and delete list on Active Campaign
- c6a3f41: Refactor active campaign pacakge and create index file

### Patch Changes

- e725bb1: Removed axios, removed .env except than for the test, create new main handler to execute function in aws lambda

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/active-campaign-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "active-campaign-client",
"version": "0.1.1",
"version": "0.2.0",
"description": "Implements ActiveCampaign API to add, update and delete Accounts and to add and update lists",
"scripts": {
"lint": "eslint src",
Expand Down

0 comments on commit fcc2baa

Please sign in to comment.