@kalutskii/foundation 0.7.1 → 0.7.2

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.
package/README.md CHANGED
@@ -288,4 +288,6 @@ bun run lint
288
288
  bun run test
289
289
  bun run typecheck
290
290
  bun run build
291
+
292
+ just quality-assurance
291
293
  ```
package/dist/index.d.ts CHANGED
@@ -72,7 +72,7 @@ declare function respond<T extends object = Record<string, never>, S extends Suc
72
72
  */
73
73
  declare function fileRespond<S extends SuccessStatusCode>(c: Context, options: {
74
74
  status: S;
75
- content: ArrayBuffer;
75
+ content: Uint8Array<ArrayBuffer>;
76
76
  filename: string;
77
77
  contentType?: string;
78
78
  }): Response;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kalutskii/foundation",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Typescript collection of most common utilities, schemas and functions among private projects.",
5
5
  "type": "module",
6
6
  "repository": {