@pushwoosh/rpc-v2-http-api-data 0.1.889 → 0.1.890
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/data.js +8 -0
- package/media_files.d.ts +2 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -12389,6 +12389,10 @@ export const data = {
|
|
|
12389
12389
|
},
|
|
12390
12390
|
"mimeType": {
|
|
12391
12391
|
"type": "string"
|
|
12392
|
+
},
|
|
12393
|
+
"description": {
|
|
12394
|
+
"type": "string",
|
|
12395
|
+
"optional": true
|
|
12392
12396
|
}
|
|
12393
12397
|
}
|
|
12394
12398
|
},
|
|
@@ -12473,6 +12477,10 @@ export const data = {
|
|
|
12473
12477
|
"createdAt": {
|
|
12474
12478
|
"type": "Date"
|
|
12475
12479
|
},
|
|
12480
|
+
"description": {
|
|
12481
|
+
"type": "string",
|
|
12482
|
+
"optional": true
|
|
12483
|
+
},
|
|
12476
12484
|
"imageMeta": {
|
|
12477
12485
|
"type": "pushwoosh.rpc_v2.media_files.MediaFile.ImageMeta"
|
|
12478
12486
|
}
|
package/media_files.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export type UploadMediaFileRequest = {
|
|
|
8
8
|
filename: string;
|
|
9
9
|
data: string;
|
|
10
10
|
mimeType: string;
|
|
11
|
+
description?: string;
|
|
11
12
|
};
|
|
12
13
|
export type UploadMediaFileResponse = {
|
|
13
14
|
file: MediaFile;
|
|
@@ -42,5 +43,6 @@ export type MediaFile = {
|
|
|
42
43
|
fileSize: number;
|
|
43
44
|
mimeType: string;
|
|
44
45
|
createdAt: Date;
|
|
46
|
+
description?: string;
|
|
45
47
|
meta: MediaFile_meta;
|
|
46
48
|
};
|