tickera-angular-components 0.0.1-dev.202 → 0.0.1-dev.203
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/index.d.ts
CHANGED
|
@@ -1171,9 +1171,11 @@ interface PedagogicZoneAvailability {
|
|
|
1171
1171
|
occupied: number;
|
|
1172
1172
|
}
|
|
1173
1173
|
interface PedagogicAvailabilityResponse {
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1174
|
+
data: {
|
|
1175
|
+
zones: PedagogicZoneAvailability[];
|
|
1176
|
+
total_available: number;
|
|
1177
|
+
total_occupied: number;
|
|
1178
|
+
};
|
|
1177
1179
|
}
|
|
1178
1180
|
|
|
1179
1181
|
interface CreatePedagogicOrderPayload {
|
|
@@ -2264,7 +2266,6 @@ declare class PerformanceService {
|
|
|
2264
2266
|
updateOne(id: number, data: any): Observable<PerformanceResponse>;
|
|
2265
2267
|
deleteOne(id: number): Observable<any>;
|
|
2266
2268
|
deleteMany(ids: number[]): Observable<any>;
|
|
2267
|
-
/** "Funciones pedagógicas" — see plan-funciones-privadas-pedagogicas.md */
|
|
2268
2269
|
fetchPedagogicPerformances(params?: {
|
|
2269
2270
|
page?: number;
|
|
2270
2271
|
limit?: number;
|