@hapaul/api 0.1.22 → 0.1.24
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/dist/index.d.ts +23 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -786,7 +786,7 @@ interface components {
|
|
|
786
786
|
};
|
|
787
787
|
CreateUrinationDefecationParams: {
|
|
788
788
|
/** Format: uuid */
|
|
789
|
-
|
|
789
|
+
babyId: string;
|
|
790
790
|
kind: components["schemas"]["UrinationDefecationKind"];
|
|
791
791
|
color?: null | components["schemas"]["UrinationDefecationColor"];
|
|
792
792
|
quantity?: null | components["schemas"]["UrinationDefecationQuantity"];
|
|
@@ -819,11 +819,11 @@ interface components {
|
|
|
819
819
|
};
|
|
820
820
|
FeedingFilterParams: {
|
|
821
821
|
/** Format: uuid */
|
|
822
|
-
babyId
|
|
822
|
+
babyId?: string | null;
|
|
823
823
|
/** Format: date-time */
|
|
824
|
-
|
|
824
|
+
from?: string | null;
|
|
825
825
|
/** Format: date-time */
|
|
826
|
-
|
|
826
|
+
to?: string | null;
|
|
827
827
|
};
|
|
828
828
|
/** @enum {string} */
|
|
829
829
|
FeedingKind: "milkPowder" | "breastMilk" | "leftBreastMilk" | "rightBreastMilk";
|
|
@@ -840,7 +840,14 @@ interface components {
|
|
|
840
840
|
/** Format: date-time */
|
|
841
841
|
to?: string | null;
|
|
842
842
|
};
|
|
843
|
-
FilterUrinationDefecationParams:
|
|
843
|
+
FilterUrinationDefecationParams: {
|
|
844
|
+
/** Format: uuid */
|
|
845
|
+
babyId?: string | null;
|
|
846
|
+
/** Format: date-time */
|
|
847
|
+
from?: string | null;
|
|
848
|
+
/** Format: date-time */
|
|
849
|
+
to?: string | null;
|
|
850
|
+
};
|
|
844
851
|
/** @enum {string} */
|
|
845
852
|
Gender: "unknown" | "male" | "female";
|
|
846
853
|
HealthRecord: {
|
|
@@ -891,11 +898,11 @@ interface components {
|
|
|
891
898
|
pageSize?: number | null;
|
|
892
899
|
filters?: {
|
|
893
900
|
/** Format: uuid */
|
|
894
|
-
babyId
|
|
901
|
+
babyId?: string | null;
|
|
895
902
|
/** Format: date-time */
|
|
896
|
-
|
|
903
|
+
from?: string | null;
|
|
897
904
|
/** Format: date-time */
|
|
898
|
-
|
|
905
|
+
to?: string | null;
|
|
899
906
|
};
|
|
900
907
|
sorts?: components["schemas"]["QuerySortDto_String"][] | null;
|
|
901
908
|
};
|
|
@@ -931,7 +938,14 @@ interface components {
|
|
|
931
938
|
page?: number | null;
|
|
932
939
|
/** Format: int64 */
|
|
933
940
|
pageSize?: number | null;
|
|
934
|
-
filters?:
|
|
941
|
+
filters?: {
|
|
942
|
+
/** Format: uuid */
|
|
943
|
+
babyId?: string | null;
|
|
944
|
+
/** Format: date-time */
|
|
945
|
+
from?: string | null;
|
|
946
|
+
/** Format: date-time */
|
|
947
|
+
to?: string | null;
|
|
948
|
+
};
|
|
935
949
|
sorts?: components["schemas"]["QuerySortDto_String"][] | null;
|
|
936
950
|
};
|
|
937
951
|
PageableQueryDto_PermissionFilters_PermissionOrders: {
|