@hapaul/api 0.1.51 → 0.1.53
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 +12 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1010,6 +1010,7 @@ interface components {
|
|
|
1010
1010
|
/** Format: uuid */
|
|
1011
1011
|
babyId: string;
|
|
1012
1012
|
medicationType: components["schemas"]["MedicationType"];
|
|
1013
|
+
name: string;
|
|
1013
1014
|
description?: string | null;
|
|
1014
1015
|
/** Format: int32 */
|
|
1015
1016
|
quantity: number;
|
|
@@ -1218,8 +1219,9 @@ interface components {
|
|
|
1218
1219
|
/** Format: uuid */
|
|
1219
1220
|
id: string;
|
|
1220
1221
|
/** Format: uuid */
|
|
1221
|
-
|
|
1222
|
-
|
|
1222
|
+
babyId: string;
|
|
1223
|
+
medicationType: components["schemas"]["MedicationType"];
|
|
1224
|
+
name: string;
|
|
1223
1225
|
description?: string | null;
|
|
1224
1226
|
/** Format: int32 */
|
|
1225
1227
|
quantity: number;
|
|
@@ -1227,9 +1229,9 @@ interface components {
|
|
|
1227
1229
|
/** Format: date-time */
|
|
1228
1230
|
datetime: string;
|
|
1229
1231
|
/** Format: date-time */
|
|
1230
|
-
|
|
1232
|
+
createdAt: string;
|
|
1231
1233
|
/** Format: date-time */
|
|
1232
|
-
|
|
1234
|
+
updatedAt: string;
|
|
1233
1235
|
};
|
|
1234
1236
|
/** @enum {string} */
|
|
1235
1237
|
MedicationType: "health" | "prescription";
|
|
@@ -1517,8 +1519,9 @@ interface components {
|
|
|
1517
1519
|
/** Format: uuid */
|
|
1518
1520
|
id: string;
|
|
1519
1521
|
/** Format: uuid */
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
+
babyId: string;
|
|
1523
|
+
medicationType: components["schemas"]["MedicationType"];
|
|
1524
|
+
name: string;
|
|
1522
1525
|
description?: string | null;
|
|
1523
1526
|
/** Format: int32 */
|
|
1524
1527
|
quantity: number;
|
|
@@ -1526,9 +1529,9 @@ interface components {
|
|
|
1526
1529
|
/** Format: date-time */
|
|
1527
1530
|
datetime: string;
|
|
1528
1531
|
/** Format: date-time */
|
|
1529
|
-
|
|
1532
|
+
createdAt: string;
|
|
1530
1533
|
/** Format: date-time */
|
|
1531
|
-
|
|
1534
|
+
updatedAt: string;
|
|
1532
1535
|
}[];
|
|
1533
1536
|
/** Format: int64 */
|
|
1534
1537
|
total: number;
|
|
@@ -1734,6 +1737,7 @@ interface components {
|
|
|
1734
1737
|
/** Format: uuid */
|
|
1735
1738
|
id: string;
|
|
1736
1739
|
medicationType?: null | components["schemas"]["MedicationType"];
|
|
1740
|
+
name?: string | null;
|
|
1737
1741
|
description?: string | null;
|
|
1738
1742
|
/** Format: int32 */
|
|
1739
1743
|
quantity?: number | null;
|