@hapaul/api 0.1.24 → 0.1.25
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 +10 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1120,15 +1120,17 @@ interface components {
|
|
|
1120
1120
|
/** Format: uuid */
|
|
1121
1121
|
id: string;
|
|
1122
1122
|
/** Format: uuid */
|
|
1123
|
-
|
|
1123
|
+
babyId: string;
|
|
1124
1124
|
kind: components["schemas"]["UrinationDefecationKind"];
|
|
1125
1125
|
color?: null | components["schemas"]["UrinationDefecationColor"];
|
|
1126
1126
|
quantity?: null | components["schemas"]["UrinationDefecationQuantity"];
|
|
1127
1127
|
viscosity?: null | components["schemas"]["UrinationDefecationViscosity"];
|
|
1128
1128
|
/** Format: date-time */
|
|
1129
|
-
|
|
1129
|
+
datetime: string;
|
|
1130
1130
|
/** Format: date-time */
|
|
1131
|
-
|
|
1131
|
+
createdAt: string;
|
|
1132
|
+
/** Format: date-time */
|
|
1133
|
+
updatedAt: string;
|
|
1132
1134
|
}[];
|
|
1133
1135
|
/** Format: int64 */
|
|
1134
1136
|
total: number;
|
|
@@ -1312,15 +1314,17 @@ interface components {
|
|
|
1312
1314
|
/** Format: uuid */
|
|
1313
1315
|
id: string;
|
|
1314
1316
|
/** Format: uuid */
|
|
1315
|
-
|
|
1317
|
+
babyId: string;
|
|
1316
1318
|
kind: components["schemas"]["UrinationDefecationKind"];
|
|
1317
1319
|
color?: null | components["schemas"]["UrinationDefecationColor"];
|
|
1318
1320
|
quantity?: null | components["schemas"]["UrinationDefecationQuantity"];
|
|
1319
1321
|
viscosity?: null | components["schemas"]["UrinationDefecationViscosity"];
|
|
1320
1322
|
/** Format: date-time */
|
|
1321
|
-
|
|
1323
|
+
datetime: string;
|
|
1322
1324
|
/** Format: date-time */
|
|
1323
|
-
|
|
1325
|
+
createdAt: string;
|
|
1326
|
+
/** Format: date-time */
|
|
1327
|
+
updatedAt: string;
|
|
1324
1328
|
};
|
|
1325
1329
|
/** @enum {string} */
|
|
1326
1330
|
UrinationDefecationColor: "darkGreen" | "goldenYellow" | "yellow" | "brown" | "black" | "red";
|