repzo 1.0.166 → 1.0.167
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 +3 -0
- package/package.json +1 -1
- package/src/types/index.ts +3 -0
package/lib/types/index.d.ts
CHANGED
|
@@ -1771,6 +1771,9 @@ 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;
|
|
1774
1777
|
sortBy?: {
|
|
1775
1778
|
field: "_id";
|
|
1776
1779
|
type: "asc" | "desc";
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -2108,6 +2108,9 @@ 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;
|
|
2111
2114
|
sortBy?: {
|
|
2112
2115
|
field: "_id";
|
|
2113
2116
|
type: "asc" | "desc";
|