falconhub-apilibrary 1.6.7-dev.148 → 1.6.7-dev.149
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.mts +9 -24
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1182,34 +1182,19 @@ interface EndpointRequest {
|
|
|
1182
1182
|
/**
|
|
1183
1183
|
* Métodos HTTP disponibles para endpoints.
|
|
1184
1184
|
*/
|
|
1185
|
-
type HttpMethodType =
|
|
1185
|
+
type HttpMethodType = "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
|
|
1186
1186
|
/**
|
|
1187
1187
|
* Filtros disponibles para buscar endpoints.
|
|
1188
|
-
* Todos los campos son opcionales.
|
|
1189
1188
|
*/
|
|
1190
1189
|
interface EndpointsFilter {
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
/** Filtro por path (búsqueda parcial) */
|
|
1200
|
-
Path?: string;
|
|
1201
|
-
/** Filtro por descripción (búsqueda parcial) */
|
|
1202
|
-
Description?: string;
|
|
1203
|
-
/** Filtro por endpoints que requieren autenticación */
|
|
1204
|
-
RequiresAuth?: boolean;
|
|
1205
|
-
/** Filtro por endpoints que requieren validación de permisos */
|
|
1206
|
-
RequiresPermission?: boolean;
|
|
1207
|
-
/** Filtro por endpoints que requieren firma */
|
|
1208
|
-
RequiresSignature?: boolean;
|
|
1209
|
-
/** Filtro por endpoints que requieren header específico */
|
|
1210
|
-
RequiresHeader?: boolean;
|
|
1211
|
-
/** Filtro por estado activo/inactivo */
|
|
1212
|
-
IsActive?: boolean;
|
|
1190
|
+
search?: string;
|
|
1191
|
+
module?: string;
|
|
1192
|
+
path?: string;
|
|
1193
|
+
requiresAuth?: boolean;
|
|
1194
|
+
requiresPermission?: boolean;
|
|
1195
|
+
requiresSignature?: boolean;
|
|
1196
|
+
requiresHeader?: boolean;
|
|
1197
|
+
isActive?: boolean;
|
|
1213
1198
|
}
|
|
1214
1199
|
|
|
1215
1200
|
/**
|