Skip to content

Commit

Permalink
Merge branch 'main' into fix/android-pagination-state
Browse files Browse the repository at this point in the history
  • Loading branch information
kschelonka authored Jan 7, 2025
2 parents 3758a43 + 4996cff commit b506c08
Show file tree
Hide file tree
Showing 441 changed files with 7,425 additions and 6,326 deletions.
4 changes: 2 additions & 2 deletions .syncpackrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"@aws-sdk/client-s3",
"@aws-sdk/**"
],
"pinVersion": "3.696.0",
"pinVersion": "3.716.0",
"label": "AWS SDK Dependencies should all have the same version (uses a specifc package as the first one for Renovate to latch to)"
},
{
"dependencies": [
"@sentry/node",
"@sentry/**"
],
"pinVersion": "8.41.0",
"pinVersion": "8.47.0",
"label": "Sentry Dependencies should all have the same version (uses a specifc package as the first one for Renovate to latch to)"
},
{
Expand Down
11 changes: 6 additions & 5 deletions infrastructure/account-data-deleter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"private": true,
"license": "MPL-2.0",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.ts",
"scripts": {
Expand All @@ -14,20 +15,20 @@
"watch": "tsc -w"
},
"dependencies": {
"@cdktf/provider-archive": "10.2.0",
"@cdktf/provider-aws": "19.43.0",
"@cdktf/provider-archive": "10.3.0",
"@cdktf/provider-aws": "19.48.1",
"@cdktf/provider-local": "10.1.1",
"@cdktf/provider-null": "10.0.1",
"@pocket-tools/terraform-modules": "workspace:*",
"cdktf": "0.20.10",
"cdktf-cli": "0.20.10",
"cdktf": "0.20.11",
"cdktf-cli": "0.20.11",
"constructs": "10.4.2"
},
"devDependencies": {
"@pocket-tools/eslint-config": "workspace:*",
"@types/node": "^22.8.2",
"ts-node": "10.9.2",
"tsconfig": "workspace:*",
"typescript": "5.5.4"
"typescript": "5.7.2"
}
}
2 changes: 1 addition & 1 deletion infrastructure/account-data-deleter/src/dataDeleterApp.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config } from './config';
import { config } from './config/index.ts';

import {
cloudwatchLogGroup,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config as stackConfig } from '../../config';
import { config as stackConfig } from '../../config/index.ts';

import { dataAwsSsmParameter } from '@cdktf/provider-aws';
import {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config, config as stackConfig } from '../config';
import { config, config as stackConfig } from '../config/index.ts';

import {
dataAwsSsmParameter,
Expand Down
6 changes: 3 additions & 3 deletions infrastructure/account-data-deleter/src/lambda/eventLambda.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { SqsLambda, SqsLambdaProps } from './base/sqsLambda';
import { config as stackConfig } from '../config';
import { SqsLambda, SqsLambdaProps } from './base/sqsLambda.ts';
import { config as stackConfig } from '../config/index.ts';

import { sqsQueue } from '@cdktf/provider-aws';
import { ApplicationSqsSnsTopicSubscription } from '@pocket-tools/terraform-modules/';
import { ApplicationSqsSnsTopicSubscription } from '@pocket-tools/terraform-modules';

import { Construct } from 'constructs';

Expand Down
8 changes: 4 additions & 4 deletions infrastructure/account-data-deleter/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { config } from './config';
import { DataDeleterApp, DataDeleterAppConfig } from './dataDeleterApp';
import { BatchDeleteLambdaResources } from './lambda/batchDeleteLambdaResources';
import { EventLambda } from './lambda/eventLambda';
import { config } from './config/index.ts';
import { DataDeleterApp, DataDeleterAppConfig } from './dataDeleterApp.ts';
import { BatchDeleteLambdaResources } from './lambda/batchDeleteLambdaResources.ts';
import { EventLambda } from './lambda/eventLambda.ts';

import { provider as archiveProvider } from '@cdktf/provider-archive';
import {
Expand Down
11 changes: 6 additions & 5 deletions infrastructure/account-delete-monitor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"private": true,
"license": "MPL-2.0",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.ts",
"scripts": {
Expand All @@ -14,20 +15,20 @@
"watch": "tsc -w"
},
"dependencies": {
"@cdktf/provider-archive": "10.2.0",
"@cdktf/provider-aws": "19.43.0",
"@cdktf/provider-archive": "10.3.0",
"@cdktf/provider-aws": "19.48.1",
"@cdktf/provider-local": "10.1.1",
"@cdktf/provider-null": "10.0.1",
"@pocket-tools/terraform-modules": "workspace:*",
"cdktf": "0.20.10",
"cdktf-cli": "0.20.10",
"cdktf": "0.20.11",
"cdktf-cli": "0.20.11",
"constructs": "10.4.2"
},
"devDependencies": {
"@pocket-tools/eslint-config": "workspace:*",
"@types/node": "^22.8.2",
"ts-node": "10.9.2",
"tsconfig": "workspace:*",
"typescript": "5.5.4"
"typescript": "5.7.2"
}
}
2 changes: 1 addition & 1 deletion infrastructure/account-delete-monitor/src/dynamodb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config } from './config';
import { config } from './config/index.ts';

import {
ApplicationDynamoDBTable,
Expand Down
6 changes: 3 additions & 3 deletions infrastructure/account-delete-monitor/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { config } from './config';
import { DynamoDB } from './dynamodb';
import { SQSEventLambda } from './sqsEventLambda';
import { config } from './config/index.ts';
import { DynamoDB } from './dynamodb.ts';
import { SQSEventLambda } from './sqsEventLambda.ts';

import { provider as archiveProvider } from '@cdktf/provider-archive';
import {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config as stackConfig } from './config';
import { config as stackConfig } from './config/index.ts';

import { dataAwsSsmParameter } from '@cdktf/provider-aws';
import {
Expand Down
11 changes: 6 additions & 5 deletions infrastructure/annotations-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"private": true,
"license": "MPL-2.0",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.ts",
"scripts": {
Expand All @@ -14,20 +15,20 @@
"watch": "tsc -w"
},
"dependencies": {
"@cdktf/provider-archive": "10.2.0",
"@cdktf/provider-aws": "19.43.0",
"@cdktf/provider-archive": "10.3.0",
"@cdktf/provider-aws": "19.48.1",
"@cdktf/provider-local": "10.1.1",
"@cdktf/provider-null": "10.0.1",
"@pocket-tools/terraform-modules": "workspace:*",
"cdktf": "0.20.10",
"cdktf-cli": "0.20.10",
"cdktf": "0.20.11",
"cdktf-cli": "0.20.11",
"constructs": "10.4.2"
},
"devDependencies": {
"@pocket-tools/eslint-config": "workspace:*",
"@types/node": "^22.8.2",
"ts-node": "10.9.2",
"tsconfig": "workspace:*",
"typescript": "5.5.4"
"typescript": "5.7.2"
}
}
2 changes: 1 addition & 1 deletion infrastructure/annotations-api/src/SqsLambda.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Construct } from 'constructs';
import { config } from './config';
import { config } from './config/index.ts';
import {
LAMBDA_RUNTIMES,
PocketPagerDuty,
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/annotations-api/src/dynamodb.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Construct } from 'constructs';
import { config } from './config';
import { config } from './config/index.ts';
import {
ApplicationDynamoDBTable,
ApplicationDynamoDBTableCapacityMode,
Expand Down
6 changes: 3 additions & 3 deletions infrastructure/annotations-api/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ import {
import { provider as localProvider } from '@cdktf/provider-local';
import { provider as nullProvider } from '@cdktf/provider-null';
import { provider as archiveProvider } from '@cdktf/provider-archive';
import { config } from './config';
import { config } from './config/index.ts';
import {
ApplicationSQSQueue,
PocketALBApplication,
PocketAwsSyntheticChecks,
PocketVPC,
ApplicationSqsSnsTopicSubscription,
} from '@pocket-tools/terraform-modules';
import { DynamoDB } from './dynamodb';
import { SqsLambda } from './SqsLambda';
import { DynamoDB } from './dynamodb.ts';
import { SqsLambda } from './SqsLambda.ts';

class AnnotationsAPI extends TerraformStack {
constructor(scope: Construct, name: string) {
Expand Down
11 changes: 6 additions & 5 deletions infrastructure/braze-content-proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"private": true,
"license": "MPL-2.0",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.ts",
"scripts": {
Expand All @@ -14,20 +15,20 @@
"watch": "tsc -w"
},
"dependencies": {
"@cdktf/provider-aws": "19.43.0",
"@cdktf/provider-aws": "19.48.1",
"@cdktf/provider-local": "10.1.1",
"@cdktf/provider-null": "10.0.1",
"@cdktf/provider-pagerduty": "13.14.1",
"@cdktf/provider-pagerduty": "13.14.3",
"@pocket-tools/terraform-modules": "workspace:*",
"cdktf": "0.20.10",
"cdktf-cli": "0.20.10",
"cdktf": "0.20.11",
"cdktf-cli": "0.20.11",
"constructs": "10.4.2"
},
"devDependencies": {
"@pocket-tools/eslint-config": "workspace:*",
"@types/node": "^22.8.2",
"ts-node": "10.9.2",
"tsconfig": "workspace:*",
"typescript": "5.5.4"
"typescript": "5.7.2"
}
}
2 changes: 1 addition & 1 deletion infrastructure/braze-content-proxy/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
wafv2WebAcl,
wafv2IpSet,
} from '@cdktf/provider-aws';
import { config } from './config';
import { config } from './config/index.ts';
import { PocketALBApplication } from '@pocket-tools/terraform-modules';
import { provider as localProvider } from '@cdktf/provider-local';
import { provider as nullProvider } from '@cdktf/provider-null';
Expand Down
9 changes: 5 additions & 4 deletions infrastructure/braze/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"private": true,
"license": "MPL-2.0",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.ts",
"scripts": {
Expand All @@ -14,17 +15,17 @@
"watch": "tsc -w"
},
"dependencies": {
"@cdktf/provider-aws": "19.43.0",
"@cdktf/provider-aws": "19.48.1",
"@pocket-tools/terraform-modules": "workspace:*",
"cdktf": "0.20.10",
"cdktf-cli": "0.20.10",
"cdktf": "0.20.11",
"cdktf-cli": "0.20.11",
"constructs": "10.4.2"
},
"devDependencies": {
"@pocket-tools/eslint-config": "workspace:*",
"@types/node": "^22.8.2",
"ts-node": "10.9.2",
"tsconfig": "workspace:*",
"typescript": "5.5.4"
"typescript": "5.7.2"
}
}
8 changes: 4 additions & 4 deletions infrastructure/braze/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Construct } from 'constructs';
import { App, S3Backend, TerraformStack } from 'cdktf';
import { provider as awsProvider } from '@cdktf/provider-aws';
import { config } from './config';
import { EmailSendDomain } from './emailSendDomain';
import { config } from './config/index.ts';
import { EmailSendDomain } from './emailSendDomain.ts';
import * as fs from 'fs';
import { ClickTrackingDomain } from './clickTrackingDomain';
import { DataExportBucket } from './dataExport';
import { ClickTrackingDomain } from './clickTrackingDomain.ts';
import { DataExportBucket } from './dataExport.ts';

class Braze extends TerraformStack {
constructor(scope: Construct, name: string) {
Expand Down
11 changes: 6 additions & 5 deletions infrastructure/client-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "client-api-cdk",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "dist/main.js",
"types": "src/main.ts",
"scripts": {
Expand All @@ -13,20 +14,20 @@
"watch": "tsc -w"
},
"dependencies": {
"@cdktf/provider-aws": "19.43.0",
"@cdktf/provider-aws": "19.48.1",
"@cdktf/provider-local": "10.1.1",
"@cdktf/provider-null": "10.0.1",
"@cdktf/provider-pagerduty": "13.14.1",
"@cdktf/provider-pagerduty": "13.14.3",
"@pocket-tools/terraform-modules": "workspace:*",
"cdktf": "0.20.10",
"cdktf-cli": "0.20.10",
"cdktf": "0.20.11",
"cdktf-cli": "0.20.11",
"constructs": "10.4.2"
},
"devDependencies": {
"@pocket-tools/eslint-config": "workspace:*",
"@types/node": "^22.8.2",
"ts-node": "10.9.2",
"tsconfig": "workspace:*",
"typescript": "5.5.4"
"typescript": "5.7.2"
}
}
2 changes: 1 addition & 1 deletion infrastructure/client-api/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config } from './config';
import { config } from './config/index.ts';

import {
provider as awsProvider,
Expand Down
9 changes: 5 additions & 4 deletions infrastructure/feature-flags/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "feature-flags-cdk",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "dist/main.js",
"types": "src/main.ts",
"scripts": {
Expand All @@ -13,19 +14,19 @@
"watch": "tsc -w"
},
"dependencies": {
"@cdktf/provider-aws": "19.43.0",
"@cdktf/provider-aws": "19.48.1",
"@cdktf/provider-local": "10.1.1",
"@cdktf/provider-null": "10.0.1",
"@pocket-tools/terraform-modules": "workspace:*",
"cdktf": "0.20.10",
"cdktf-cli": "0.20.10",
"cdktf": "0.20.11",
"cdktf-cli": "0.20.11",
"constructs": "10.4.2"
},
"devDependencies": {
"@pocket-tools/eslint-config": "workspace:*",
"@types/node": "^22.8.2",
"ts-node": "10.9.2",
"tsconfig": "workspace:*",
"typescript": "5.5.4"
"typescript": "5.7.2"
}
}
2 changes: 1 addition & 1 deletion infrastructure/feature-flags/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
import { Construct } from 'constructs';
import { App, S3Backend, TerraformStack } from 'cdktf';
import fs from 'fs';
import { config } from './config';
import { config } from './config/index.ts';

class FeatureFlags extends TerraformStack {
constructor(scope: Construct, name: string) {
Expand Down
Loading

0 comments on commit b506c08

Please sign in to comment.