Skip to content

Commit

Permalink
Merge pull request midday-ai#169 from midday-ai/feature/dependencies-v31
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
pontusab authored Jun 25, 2024
2 parents 560d421 + 3a8120f commit 9983034
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 28 deletions.
13 changes: 6 additions & 7 deletions apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/mistral": "^0.0.17",
"@ai-sdk/openai": "^0.0.29",
"@ai-sdk/openai": "^0.0.33",
"@baselime/node-opentelemetry": "^0.5.8",
"@date-fns/utc": "^1.2.0",
"@hookform/resolvers": "^3.6.0",
Expand All @@ -40,16 +39,16 @@
"@upstash/ratelimit": "^1.2.1",
"@vercel/speed-insights": "^1.0.12",
"@zip.js/zip.js": "2.7.45",
"ai": "^3.1.36",
"ai": "^3.2.8",
"change-case": "^5.4.4",
"dub": "^0.29.18",
"framer-motion": "^11.2.10",
"framer-motion": "^11.2.11",
"geist": "^1.3.0",
"headless-currency-input": "^1.1.0",
"loops": "1.0.1",
"lottie-react": "^2.4.0",
"ms": "^2.1.3",
"next": "14.2.1",
"next": "14.2.4",
"next-international": "1.2.4",
"next-safe-action": "6.2.0",
"next-themes": "^0.3.0",
Expand Down Expand Up @@ -79,9 +78,9 @@
"@next/bundle-analyzer": "^14.2.4",
"@t3-oss/env-nextjs": "^0.10.1",
"@todesktop/tailwind-variants": "^1.0.1",
"@types/node": "^20.14.2",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"typescript": "^5.4.5"
"typescript": "^5.5.2"
}
}
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"generate:engine": "bunx @mintlify/scraping@latest openapi-file http://localhost:3002/openapi -o api-reference/engine/endpoint"
},
"devDependencies": {
"mintlify": "^4.0.170"
"mintlify": "^4.0.174"
}
}
6 changes: 3 additions & 3 deletions apps/engine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
"check:types": "tsc --noEmit"
},
"dependencies": {
"@hono/swagger-ui": "^0.2.2",
"@hono/swagger-ui": "^0.3.0",
"@hono/zod-openapi": "^0.14.5",
"@hono/zod-validator": "^0.2.2",
"hono": "^4.4.7",
"hono": "^4.4.8",
"xior": "^0.5.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240614.0",
"@cloudflare/workers-types": "^4.20240620.0",
"wrangler": "^3.61.0"
}
}
5 changes: 4 additions & 1 deletion apps/engine/src/providers/plaid/plaid-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ export class PlaidApi {

const data: GetStatusResponse = await response.json();

return data.status.indicator === "none";
return (
data.status.indicator === "none" ||
data.status.indicator === "maintenance"
);
} catch {
return false;
}
Expand Down
14 changes: 7 additions & 7 deletions apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
"@midday/ui": "workspace:*",
"@openpanel/nextjs": "^0.0.10-beta",
"@openstatus/react": "^0.0.3",
"@splinetool/react-spline": "2.2.6",
"@splinetool/runtime": "1.3.8",
"@team-plain/typescript-sdk": "4.5.0",
"@splinetool/react-spline": "4.0.0",
"@splinetool/runtime": "1.7.7",
"@team-plain/typescript-sdk": "4.6.1",
"@uidotdev/usehooks": "^2.4.1",
"d3": "^7.9.0",
"date-fns": "^3.6.0",
"framer-motion": "^11.2.10",
"framer-motion": "^11.2.11",
"geist": "^1.3.0",
"next": "14.2.1",
"next": "14.2.4",
"next-mdx-remote": "^5.0.0",
"next-safe-action": "6.2.0",
"next-themes": "^0.3.0",
Expand All @@ -35,11 +35,11 @@
"react-use-draggable-scroll": "^0.4.7",
"server-only": "^0.0.1",
"sharp": "^0.33.4",
"sugar-high": "^0.6.1"
"sugar-high": "^0.7.0"
},
"devDependencies": {
"@midday/tsconfig": "workspace:*",
"@types/node": "^20.14.2",
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0"
}
Expand Down
7 changes: 1 addition & 6 deletions apps/website/src/components/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,11 @@

import { Button } from "@midday/ui/button";
import { cn } from "@midday/ui/cn";
import Spline from "@splinetool/react-spline";
import { motion } from "framer-motion";
import dynamic from "next/dynamic";
import Link from "next/link";
import { useEffect, useState } from "react";

const Spline = dynamic(() => import("@splinetool/react-spline"), {
ssr: false,
loading: () => null,
});

export function Hero() {
const [isPlaying, setPlaying] = useState(false);

Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"dependencies": {
"@biomejs/biome": "1.8.2",
"@manypkg/cli": "^0.21.4",
"turbo": "2.0.4",
"turbo": "2.0.5",
"typescript": "^5.5.2"
},
"packageManager": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions packages/supabase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"db:generate": "supabase gen types typescript --project-id $PROJECT_ID --schema public > src/types/db.ts"
},
"dependencies": {
"@supabase/ssr": "^0.3.0",
"@supabase/ssr": "^0.4.0",
"react": "^18.3.1",
"server-only": "^0.0.1",
"supabase": "^1.178.2"
},
"devDependencies": {
"@supabase/supabase-js": "^2.43.5",
"@supabase/supabase-js": "^2.43.6",
"typescript": "^5.5.2"
},
"exports": {
Expand Down

0 comments on commit 9983034

Please sign in to comment.