@hapaul/api 0.1.19 → 0.1.20
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 +13 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1129,6 +1129,18 @@ interface components {
|
|
|
1129
1129
|
/** Format: date-time */
|
|
1130
1130
|
updatedAt: string;
|
|
1131
1131
|
};
|
|
1132
|
+
ResponseJson_Vec_Baby: {
|
|
1133
|
+
/** Format: uuid */
|
|
1134
|
+
id: string;
|
|
1135
|
+
name: string;
|
|
1136
|
+
gender?: null | components["schemas"]["Gender"];
|
|
1137
|
+
/** Format: uuid */
|
|
1138
|
+
createdBy: string;
|
|
1139
|
+
/** Format: date-time */
|
|
1140
|
+
createdAt: string;
|
|
1141
|
+
/** Format: date-time */
|
|
1142
|
+
updatedAt: string;
|
|
1143
|
+
}[];
|
|
1132
1144
|
ResponseJson_Vec_SessionDto: {
|
|
1133
1145
|
/** Format: uuid */
|
|
1134
1146
|
id: string;
|
|
@@ -1974,7 +1986,7 @@ interface operations {
|
|
|
1974
1986
|
[name: string]: unknown;
|
|
1975
1987
|
};
|
|
1976
1988
|
content: {
|
|
1977
|
-
"application/json": components["schemas"]["
|
|
1989
|
+
"application/json": components["schemas"]["ResponseJson_Vec_Baby"];
|
|
1978
1990
|
};
|
|
1979
1991
|
};
|
|
1980
1992
|
};
|