@mateosuarezdev/brpc 1.0.75 → 1.0.77

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.
@@ -81,7 +81,6 @@ type StorageObject = {
81
81
  thumbnail: string | null;
82
82
  alt: string | null;
83
83
  colorPalette: string[] | null;
84
- referenceCount: number;
85
84
  variants: Partial<Record<string, StorageObjectVariant>>;
86
85
  };
87
86
  type StorageObjectVariant = {
@@ -90,7 +89,7 @@ type StorageObjectVariant = {
90
89
  name: string | null;
91
90
  metadata: StorageObjectVariantMetadata;
92
91
  };
93
- type InsertStorageObject = Omit<StorageObject, "id" | "createdAt" | "updatedAt" | "referenceCount">;
92
+ type InsertStorageObject = Omit<StorageObject, "id" | "createdAt" | "updatedAt">;
94
93
  type RawUploadResult = {
95
94
  uploadedBy: string | null;
96
95
  key: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mateosuarezdev/brpc",
3
- "version": "1.0.75",
3
+ "version": "1.0.77",
4
4
  "description": "A Type-Safe, Flexible Web application framework for Bun",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",