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