Skip to content

Commit 1d8426b

Browse files
committed
yay
1 parent 9843f72 commit 1d8426b

File tree

30 files changed

+762
-798
lines changed

30 files changed

+762
-798
lines changed

epicshop/epic-me/package-lock.json

Lines changed: 246 additions & 230 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

epicshop/epic-me/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,22 @@
2929
"zod": "^3.25.67"
3030
},
3131
"devDependencies": {
32-
"@cloudflare/vite-plugin": "^1.12.0",
32+
"@cloudflare/vite-plugin": "^1.12.2",
3333
"@epic-web/config": "^1.21.3",
3434
"@react-router/dev": "^7.8.2",
3535
"@tailwindcss/vite": "^4.1.12",
3636
"@types/node": "^24",
37-
"@types/react": "^19.1.11",
38-
"@types/react-dom": "^19.1.8",
37+
"@types/react": "^19.1.12",
38+
"@types/react-dom": "^19.1.9",
3939
"eslint": "^9.34.0",
4040
"prettier": "^3.6.2",
4141
"prettier-plugin-tailwindcss": "^0.6.14",
4242
"tailwindcss": "^4.1.12",
4343
"typescript": "^5.9.2",
44-
"vite": "^7.1.3",
44+
"vite": "^7.1.4",
4545
"vite-plugin-devtools-json": "^1.0.0",
4646
"vite-tsconfig-paths": "^5.1.4",
47-
"wrangler": "^4.33.0"
47+
"wrangler": "^4.33.2"
4848
},
4949
"prettier": "@epic-web/config/prettier"
5050
}

epicshop/epic-me/types/worker-configuration.d.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable */
22
// Generated by Wrangler by running `wrangler types ./types/worker-configuration.d.ts` (hash: 2ba4d49d5cf176d71f4422a91ce53bd4)
3-
// Runtime types generated with workerd@1.20250823.0 2025-04-04
3+
// Runtime types generated with workerd@1.20250829.0 2025-04-04
44
declare namespace Cloudflare {
55
interface Env {
66
OAUTH_KV: KVNamespace;
@@ -5539,6 +5539,12 @@ interface BasicImageTransformations {
55395539
* breaks aspect ratio
55405540
*/
55415541
fit?: "scale-down" | "contain" | "cover" | "crop" | "pad" | "squeeze";
5542+
/**
5543+
* Image segmentation using artificial intelligence models. Sets pixels not
5544+
* within selected segment area to transparent e.g "foreground" sets every
5545+
* background pixel as transparent.
5546+
*/
5547+
segment?: "foreground";
55425548
/**
55435549
* When cropping with fit: "cover", this defines the side or point that should
55445550
* be left uncropped. The value is either a string
@@ -5551,7 +5557,7 @@ interface BasicImageTransformations {
55515557
* preserve as much as possible around a point at 20% of the height of the
55525558
* source image.
55535559
*/
5554-
gravity?: 'left' | 'right' | 'top' | 'bottom' | 'center' | 'auto' | 'entropy' | BasicImageTransformationsGravityCoordinates;
5560+
gravity?: 'face' | 'left' | 'right' | 'top' | 'bottom' | 'center' | 'auto' | 'entropy' | BasicImageTransformationsGravityCoordinates;
55555561
/**
55565562
* Background color to add underneath the image. Applies only to images with
55575563
* transparency (such as PNG). Accepts any CSS color (#RRGGBB, rgba(…),
@@ -6487,7 +6493,8 @@ type ImageTransform = {
64876493
fit?: 'scale-down' | 'contain' | 'pad' | 'squeeze' | 'cover' | 'crop';
64886494
flip?: 'h' | 'v' | 'hv';
64896495
gamma?: number;
6490-
gravity?: 'left' | 'right' | 'top' | 'bottom' | 'center' | 'auto' | 'entropy' | {
6496+
segment?: 'foreground';
6497+
gravity?: 'face' | 'left' | 'right' | 'top' | 'bottom' | 'center' | 'auto' | 'entropy' | {
64916498
x?: number;
64926499
y?: number;
64936500
mode: 'remainder' | 'box-center';
@@ -6975,6 +6982,7 @@ declare namespace TailStream {
69756982
}
69766983
interface Onset {
69776984
readonly type: "onset";
6985+
readonly attributes: Attribute[];
69786986
readonly dispatchNamespace?: string;
69796987
readonly entrypoint?: string;
69806988
readonly executionModel: string;

0 commit comments

Comments
 (0)