@hapaul/api 0.1.26 → 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 +19 -19
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -734,7 +734,7 @@ interface components {
|
|
|
734
734
|
name: string;
|
|
735
735
|
gender?: null | components["schemas"]["Gender"];
|
|
736
736
|
/** Format: date-time */
|
|
737
|
-
|
|
737
|
+
birth: string;
|
|
738
738
|
/** Format: uuid */
|
|
739
739
|
createdBy: string;
|
|
740
740
|
/** Format: date-time */
|
|
@@ -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
|
};
|
|
@@ -1041,7 +1041,7 @@ interface components {
|
|
|
1041
1041
|
name: string;
|
|
1042
1042
|
gender?: null | components["schemas"]["Gender"];
|
|
1043
1043
|
/** Format: date-time */
|
|
1044
|
-
|
|
1044
|
+
birth: string;
|
|
1045
1045
|
/** Format: uuid */
|
|
1046
1046
|
createdBy: string;
|
|
1047
1047
|
/** Format: date-time */
|
|
@@ -1189,7 +1189,7 @@ interface components {
|
|
|
1189
1189
|
name: string;
|
|
1190
1190
|
gender?: null | components["schemas"]["Gender"];
|
|
1191
1191
|
/** Format: date-time */
|
|
1192
|
-
|
|
1192
|
+
birth: string;
|
|
1193
1193
|
/** Format: uuid */
|
|
1194
1194
|
createdBy: string;
|
|
1195
1195
|
/** Format: date-time */
|
|
@@ -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: {
|