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