falconhub-apilibrary 1.3.1-dev.89 → 1.3.1-dev.94
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 +15 -14
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -500,19 +500,17 @@ interface UserAuthUpdateRequest {
|
|
|
500
500
|
* Interfaz que representa un tipo de usuario.
|
|
501
501
|
*/
|
|
502
502
|
interface UserType {
|
|
503
|
-
userTypeId: number;
|
|
504
503
|
userType: string;
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
updatedAt: string | null;
|
|
508
|
-
deleted: boolean;
|
|
504
|
+
key?: string;
|
|
505
|
+
description?: string;
|
|
509
506
|
}
|
|
510
507
|
/**
|
|
511
508
|
* Request para crear o actualizar un tipo de usuario.
|
|
512
509
|
*/
|
|
513
510
|
interface UserTypeRequest {
|
|
514
511
|
userType: string;
|
|
515
|
-
|
|
512
|
+
key?: string;
|
|
513
|
+
description?: string;
|
|
516
514
|
}
|
|
517
515
|
/**
|
|
518
516
|
* Filtros disponibles para buscar tipos de usuario.
|
|
@@ -522,6 +520,8 @@ interface UserTypesFilter {
|
|
|
522
520
|
Search?: string;
|
|
523
521
|
/** Filtro por tipo de usuario (búsqueda parcial) */
|
|
524
522
|
UserType?: string;
|
|
523
|
+
/** Filtro por key (búsqueda parcial) */
|
|
524
|
+
Key?: string;
|
|
525
525
|
/** Filtro por descripción (búsqueda parcial) */
|
|
526
526
|
Description?: string;
|
|
527
527
|
}
|
|
@@ -531,21 +531,20 @@ interface UserTypesFilter {
|
|
|
531
531
|
*/
|
|
532
532
|
interface Role {
|
|
533
533
|
roleId: number;
|
|
534
|
-
userTypeId: number | null;
|
|
535
534
|
role: string;
|
|
536
|
-
|
|
535
|
+
key?: string;
|
|
536
|
+
description?: string;
|
|
537
|
+
userTypeId: number;
|
|
537
538
|
isActive: boolean;
|
|
538
|
-
createdAt: string;
|
|
539
|
-
updatedAt: string | null;
|
|
540
|
-
deleted: boolean;
|
|
541
539
|
}
|
|
542
540
|
/**
|
|
543
541
|
* Request para crear o actualizar un rol.
|
|
544
542
|
*/
|
|
545
543
|
interface RoleRequest {
|
|
546
|
-
userTypeId?: number;
|
|
547
544
|
role: string;
|
|
548
|
-
|
|
545
|
+
userTypeId: number;
|
|
546
|
+
key?: string;
|
|
547
|
+
description?: string;
|
|
549
548
|
isActive?: boolean;
|
|
550
549
|
}
|
|
551
550
|
/**
|
|
@@ -2275,6 +2274,7 @@ declare class ProductService {
|
|
|
2275
2274
|
interface Gender {
|
|
2276
2275
|
genderId: number;
|
|
2277
2276
|
gender: string;
|
|
2277
|
+
key: string;
|
|
2278
2278
|
createdAt: string;
|
|
2279
2279
|
updatedAt: string | null;
|
|
2280
2280
|
deleted: boolean;
|
|
@@ -2284,6 +2284,7 @@ interface Gender {
|
|
|
2284
2284
|
*/
|
|
2285
2285
|
interface GenderRequest {
|
|
2286
2286
|
gender: string;
|
|
2287
|
+
key?: string;
|
|
2287
2288
|
}
|
|
2288
2289
|
/**
|
|
2289
2290
|
* Filtros disponibles para buscar géneros.
|
|
@@ -2315,7 +2316,7 @@ interface AreaCodeRequest {
|
|
|
2315
2316
|
countryCode: string;
|
|
2316
2317
|
iso: string;
|
|
2317
2318
|
countryName: string;
|
|
2318
|
-
isActive
|
|
2319
|
+
isActive: boolean;
|
|
2319
2320
|
}
|
|
2320
2321
|
/**
|
|
2321
2322
|
* Filtros disponibles para buscar códigos de área.
|