repzo 1.0.167 → 1.0.168
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/lib/types/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/types/index.ts +2 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -1774,6 +1774,8 @@ export declare namespace Service {
|
|
|
1774
1774
|
from_time?: number;
|
|
1775
1775
|
to_time?: number;
|
|
1776
1776
|
parentDocumentId?: string[] | string;
|
|
1777
|
+
type_name?: "FileAttachment" | "ImageAttachment";
|
|
1778
|
+
media_type?: MediaType | MediaType[];
|
|
1777
1779
|
sortBy?: {
|
|
1778
1780
|
field: "_id";
|
|
1779
1781
|
type: "asc" | "desc";
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -2111,6 +2111,8 @@ export namespace Service {
|
|
|
2111
2111
|
from_time?: number;
|
|
2112
2112
|
to_time?: number;
|
|
2113
2113
|
parentDocumentId?: string[] | string;
|
|
2114
|
+
type_name?: "FileAttachment" | "ImageAttachment";
|
|
2115
|
+
media_type?: MediaType | MediaType[];
|
|
2114
2116
|
sortBy?: {
|
|
2115
2117
|
field: "_id";
|
|
2116
2118
|
type: "asc" | "desc";
|