@takosjp/yurucommu-core 3.4.4 → 3.4.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.
|
@@ -38,7 +38,7 @@ class CloudflareStorage implements IObjectStorage {
|
|
|
38
38
|
|
|
39
39
|
async put(
|
|
40
40
|
key: string,
|
|
41
|
-
value: ReadableStream | ArrayBuffer | string,
|
|
41
|
+
value: Blob | ReadableStream | ArrayBuffer | string,
|
|
42
42
|
options?: {
|
|
43
43
|
httpMetadata?: ObjectMetadata["httpMetadata"];
|
|
44
44
|
customMetadata?: Record<string, string>;
|
|
@@ -334,7 +334,7 @@ class ManagedRuntimeObjectStorage implements IObjectStorage {
|
|
|
334
334
|
|
|
335
335
|
async put(
|
|
336
336
|
key: string,
|
|
337
|
-
value: ReadableStream | ArrayBuffer | string,
|
|
337
|
+
value: Blob | ReadableStream | ArrayBuffer | string,
|
|
338
338
|
options?: {
|
|
339
339
|
httpMetadata?: ObjectMetadata["httpMetadata"];
|
|
340
340
|
customMetadata?: Record<string, string>;
|
|
@@ -115,7 +115,7 @@ export interface ListObjectsResult {
|
|
|
115
115
|
export interface IObjectStorage {
|
|
116
116
|
put(
|
|
117
117
|
key: string,
|
|
118
|
-
value: ReadableStream | ArrayBuffer | string,
|
|
118
|
+
value: Blob | ReadableStream | ArrayBuffer | string,
|
|
119
119
|
options?: {
|
|
120
120
|
httpMetadata?: ObjectMetadata["httpMetadata"];
|
|
121
121
|
customMetadata?: Record<string, string>;
|