gemi 0.3.3 → 0.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29461,9 +29461,9 @@ function generateImageProps(src, width, container = defaultContainer, screen = d
29461
29461
  return {
29462
29462
  srcSet: [
29463
29463
  ...screen.map((size, i) => {
29464
- return `/__gemi__/image?url=${baseUrl}&q=${quality}&w=${widths[i]} ${size}${isNaN(Number(size)) ? "" : "w"}`;
29464
+ return `/__gemi/image?url=${baseUrl}&q=${quality}&w=${widths[i]} ${size}${isNaN(Number(size)) ? "" : "w"}`;
29465
29465
  }),
29466
- `/__gemi__/image?url=${baseUrl}&q=${quality}&w=${width * 2} 2x`
29466
+ `/__gemi/image?url=${baseUrl}&q=${quality}&w=${width * 2} 2x`
29467
29467
  ].join(", "),
29468
29468
  sources: [
29469
29469
  ...container.map((c, i) => {
@@ -5,4 +5,5 @@ export { ValidationError, AuthenticationError } from "./Router";
5
5
  export { HttpRequest } from "./HttpRequest";
6
6
  export { Middleware } from "./Middleware";
7
7
  export { getCookies } from "./getCookies";
8
+ export { RequestBreakerError } from "./Error";
8
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../http/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAChE,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../http/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAChE,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC"}
@@ -383,6 +383,7 @@ export {
383
383
  getCookies,
384
384
  ViewRouter,
385
385
  ValidationError,
386
+ RequestBreakerError,
386
387
  Middleware,
387
388
  HttpRequest,
388
389
  Controller,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemi",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "devDependencies": {
5
5
  "@repo/eslint-config": "*",
6
6
  "@repo/typescript-config": "*",