@hapaul/api 0.1.54 → 0.1.56
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 +4 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1257,7 +1257,7 @@ interface components {
|
|
|
1257
1257
|
FilterTagParams: {
|
|
1258
1258
|
/** Format: uuid */
|
|
1259
1259
|
babyId?: string | null;
|
|
1260
|
-
tagType?:
|
|
1260
|
+
tagType?: null | components["schemas"]["CacheTagType"];
|
|
1261
1261
|
};
|
|
1262
1262
|
FilterUrinationDefecationParams: {
|
|
1263
1263
|
/** Format: uuid */
|
|
@@ -1432,7 +1432,7 @@ interface components {
|
|
|
1432
1432
|
filters?: {
|
|
1433
1433
|
/** Format: uuid */
|
|
1434
1434
|
babyId?: string | null;
|
|
1435
|
-
tagType?:
|
|
1435
|
+
tagType?: null | components["schemas"]["CacheTagType"];
|
|
1436
1436
|
};
|
|
1437
1437
|
sorts?: components["schemas"]["QuerySortDto_SortTagParams"][] | null;
|
|
1438
1438
|
};
|
|
@@ -1559,7 +1559,7 @@ interface components {
|
|
|
1559
1559
|
};
|
|
1560
1560
|
QuerySortDto_SortTagParams: {
|
|
1561
1561
|
/** @enum {string} */
|
|
1562
|
-
field: "createdAt" | "label";
|
|
1562
|
+
field: "createdAt" | "label" | "lastUsedAt";
|
|
1563
1563
|
order: components["schemas"]["QueryOrder"];
|
|
1564
1564
|
};
|
|
1565
1565
|
QuerySortDto_SortUrinationDefecationParams: {
|
|
@@ -1858,7 +1858,7 @@ interface components {
|
|
|
1858
1858
|
/** @enum {string} */
|
|
1859
1859
|
SortMedicationParams: "datetime";
|
|
1860
1860
|
/** @enum {string} */
|
|
1861
|
-
SortTagParams: "createdAt" | "label";
|
|
1861
|
+
SortTagParams: "createdAt" | "label" | "lastUsedAt";
|
|
1862
1862
|
/** @enum {string} */
|
|
1863
1863
|
SortUrinationDefecationParams: "datetime";
|
|
1864
1864
|
/** @enum {string} */
|
|
@@ -1901,7 +1901,6 @@ interface components {
|
|
|
1901
1901
|
UpdateMedicationParams: {
|
|
1902
1902
|
/** Format: uuid */
|
|
1903
1903
|
id: string;
|
|
1904
|
-
medicationType?: null | components["schemas"]["MedicationType"];
|
|
1905
1904
|
name?: string | null;
|
|
1906
1905
|
description?: string | null;
|
|
1907
1906
|
/** Format: int32 */
|