@hapaul/api 0.1.27 → 0.1.28
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 +16 -16
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -819,7 +819,13 @@ interface components {
|
|
|
819
819
|
/** Format: date-time */
|
|
820
820
|
updated_at: string;
|
|
821
821
|
};
|
|
822
|
-
|
|
822
|
+
/** @enum {string} */
|
|
823
|
+
FeedingKind: "milkPowder" | "breastMilk" | "leftBreastMilk" | "rightBreastMilk";
|
|
824
|
+
FilterBabiesParams: {
|
|
825
|
+
/** Format: uuid */
|
|
826
|
+
createdBy?: string | null;
|
|
827
|
+
};
|
|
828
|
+
FilterFeedingParams: {
|
|
823
829
|
/** Format: uuid */
|
|
824
830
|
babyId?: string | null;
|
|
825
831
|
/** Format: date-time */
|
|
@@ -827,12 +833,6 @@ interface components {
|
|
|
827
833
|
/** Format: date-time */
|
|
828
834
|
to?: string | null;
|
|
829
835
|
};
|
|
830
|
-
/** @enum {string} */
|
|
831
|
-
FeedingKind: "milkPowder" | "breastMilk" | "leftBreastMilk" | "rightBreastMilk";
|
|
832
|
-
FilterBabiesParams: {
|
|
833
|
-
/** Format: uuid */
|
|
834
|
-
createdBy?: string | null;
|
|
835
|
-
};
|
|
836
836
|
FilterHealthRecordsParams: {
|
|
837
837
|
/** Format: uuid */
|
|
838
838
|
babyId?: string | null;
|
|
@@ -893,29 +893,29 @@ interface components {
|
|
|
893
893
|
};
|
|
894
894
|
/** @default null */
|
|
895
895
|
Null: unknown;
|
|
896
|
-
|
|
896
|
+
PageableQueryDto_FilterBabiesParams: {
|
|
897
897
|
/** Format: int64 */
|
|
898
898
|
page?: number | null;
|
|
899
899
|
/** Format: int64 */
|
|
900
900
|
pageSize?: number | null;
|
|
901
901
|
filters?: {
|
|
902
902
|
/** Format: uuid */
|
|
903
|
-
|
|
904
|
-
/** Format: date-time */
|
|
905
|
-
from?: string | null;
|
|
906
|
-
/** Format: date-time */
|
|
907
|
-
to?: string | null;
|
|
903
|
+
createdBy?: string | null;
|
|
908
904
|
};
|
|
909
905
|
sorts?: components["schemas"]["QuerySortDto_String"][] | null;
|
|
910
906
|
};
|
|
911
|
-
|
|
907
|
+
PageableQueryDto_FilterFeedingParams: {
|
|
912
908
|
/** Format: int64 */
|
|
913
909
|
page?: number | null;
|
|
914
910
|
/** Format: int64 */
|
|
915
911
|
pageSize?: number | null;
|
|
916
912
|
filters?: {
|
|
917
913
|
/** Format: uuid */
|
|
918
|
-
|
|
914
|
+
babyId?: string | null;
|
|
915
|
+
/** Format: date-time */
|
|
916
|
+
from?: string | null;
|
|
917
|
+
/** Format: date-time */
|
|
918
|
+
to?: string | null;
|
|
919
919
|
};
|
|
920
920
|
sorts?: components["schemas"]["QuerySortDto_String"][] | null;
|
|
921
921
|
};
|
|
@@ -2128,7 +2128,7 @@ interface operations {
|
|
|
2128
2128
|
};
|
|
2129
2129
|
requestBody: {
|
|
2130
2130
|
content: {
|
|
2131
|
-
"application/json": components["schemas"]["
|
|
2131
|
+
"application/json": components["schemas"]["PageableQueryDto_FilterFeedingParams"];
|
|
2132
2132
|
};
|
|
2133
2133
|
};
|
|
2134
2134
|
responses: {
|