@hapaul/api 0.1.24 → 0.1.26
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 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -733,6 +733,8 @@ interface components {
|
|
|
733
733
|
id: string;
|
|
734
734
|
name: string;
|
|
735
735
|
gender?: null | components["schemas"]["Gender"];
|
|
736
|
+
/** Format: date-time */
|
|
737
|
+
bitrh: string;
|
|
736
738
|
/** Format: uuid */
|
|
737
739
|
createdBy: string;
|
|
738
740
|
/** Format: date-time */
|
|
@@ -1038,6 +1040,8 @@ interface components {
|
|
|
1038
1040
|
id: string;
|
|
1039
1041
|
name: string;
|
|
1040
1042
|
gender?: null | components["schemas"]["Gender"];
|
|
1043
|
+
/** Format: date-time */
|
|
1044
|
+
bitrh: string;
|
|
1041
1045
|
/** Format: uuid */
|
|
1042
1046
|
createdBy: string;
|
|
1043
1047
|
/** Format: date-time */
|
|
@@ -1120,15 +1124,17 @@ interface components {
|
|
|
1120
1124
|
/** Format: uuid */
|
|
1121
1125
|
id: string;
|
|
1122
1126
|
/** Format: uuid */
|
|
1123
|
-
|
|
1127
|
+
babyId: string;
|
|
1124
1128
|
kind: components["schemas"]["UrinationDefecationKind"];
|
|
1125
1129
|
color?: null | components["schemas"]["UrinationDefecationColor"];
|
|
1126
1130
|
quantity?: null | components["schemas"]["UrinationDefecationQuantity"];
|
|
1127
1131
|
viscosity?: null | components["schemas"]["UrinationDefecationViscosity"];
|
|
1128
1132
|
/** Format: date-time */
|
|
1129
|
-
|
|
1133
|
+
datetime: string;
|
|
1130
1134
|
/** Format: date-time */
|
|
1131
|
-
|
|
1135
|
+
createdAt: string;
|
|
1136
|
+
/** Format: date-time */
|
|
1137
|
+
updatedAt: string;
|
|
1132
1138
|
}[];
|
|
1133
1139
|
/** Format: int64 */
|
|
1134
1140
|
total: number;
|
|
@@ -1182,6 +1188,8 @@ interface components {
|
|
|
1182
1188
|
id: string;
|
|
1183
1189
|
name: string;
|
|
1184
1190
|
gender?: null | components["schemas"]["Gender"];
|
|
1191
|
+
/** Format: date-time */
|
|
1192
|
+
bitrh: string;
|
|
1185
1193
|
/** Format: uuid */
|
|
1186
1194
|
createdBy: string;
|
|
1187
1195
|
/** Format: date-time */
|
|
@@ -1312,15 +1320,17 @@ interface components {
|
|
|
1312
1320
|
/** Format: uuid */
|
|
1313
1321
|
id: string;
|
|
1314
1322
|
/** Format: uuid */
|
|
1315
|
-
|
|
1323
|
+
babyId: string;
|
|
1316
1324
|
kind: components["schemas"]["UrinationDefecationKind"];
|
|
1317
1325
|
color?: null | components["schemas"]["UrinationDefecationColor"];
|
|
1318
1326
|
quantity?: null | components["schemas"]["UrinationDefecationQuantity"];
|
|
1319
1327
|
viscosity?: null | components["schemas"]["UrinationDefecationViscosity"];
|
|
1320
1328
|
/** Format: date-time */
|
|
1321
|
-
|
|
1329
|
+
datetime: string;
|
|
1322
1330
|
/** Format: date-time */
|
|
1323
|
-
|
|
1331
|
+
createdAt: string;
|
|
1332
|
+
/** Format: date-time */
|
|
1333
|
+
updatedAt: string;
|
|
1324
1334
|
};
|
|
1325
1335
|
/** @enum {string} */
|
|
1326
1336
|
UrinationDefecationColor: "darkGreen" | "goldenYellow" | "yellow" | "brown" | "black" | "red";
|