@pushwoosh/rpc-v2-http-api-data 0.2.42 → 0.2.43
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 +3 -0
- package/media_files.d.ts +5 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -14857,6 +14857,9 @@ export const data = {
|
|
|
14857
14857
|
"parentUuid": {
|
|
14858
14858
|
"type": "string",
|
|
14859
14859
|
"optional": true
|
|
14860
|
+
},
|
|
14861
|
+
"searchByName": {
|
|
14862
|
+
"type": "string"
|
|
14860
14863
|
}
|
|
14861
14864
|
}
|
|
14862
14865
|
},
|
package/media_files.d.ts
CHANGED
|
@@ -67,6 +67,11 @@ export type ListMediaFilesRequest = {
|
|
|
67
67
|
* original image; when empty, returns only originals (no variants).
|
|
68
68
|
*/
|
|
69
69
|
parentUuid?: string;
|
|
70
|
+
/**
|
|
71
|
+
* search_by_name filters the listing to files whose filename contains this
|
|
72
|
+
* substring (case-insensitive, like %search_by_name%). Empty means no filter.
|
|
73
|
+
*/
|
|
74
|
+
searchByName?: string;
|
|
70
75
|
};
|
|
71
76
|
export type ListMediaFilesResponse = {
|
|
72
77
|
files: MediaFile[];
|