falconhub-apilibrary 1.3.1-dev.96 → 1.3.1-dev.97
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 +12 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1094,10 +1094,13 @@ interface Location {
|
|
|
1094
1094
|
areaCodeId: number;
|
|
1095
1095
|
contactPhone: string;
|
|
1096
1096
|
contactEmail: string;
|
|
1097
|
-
|
|
1098
|
-
|
|
1097
|
+
url: string;
|
|
1098
|
+
apiKey: string;
|
|
1099
|
+
parentLocationId: number | null;
|
|
1100
|
+
isPhysical: boolean;
|
|
1101
|
+
isActive: boolean;
|
|
1102
|
+
createdAt: string;
|
|
1099
1103
|
updatedAt: string | null;
|
|
1100
|
-
deleted: boolean | null;
|
|
1101
1104
|
}
|
|
1102
1105
|
interface LocationsRequest {
|
|
1103
1106
|
locationName: string;
|
|
@@ -1112,6 +1115,12 @@ interface LocationsRequest {
|
|
|
1112
1115
|
contactPhone: string;
|
|
1113
1116
|
contactEmail: string;
|
|
1114
1117
|
isActive?: boolean;
|
|
1118
|
+
isPhysical: boolean;
|
|
1119
|
+
parentLocationId?: number;
|
|
1120
|
+
/** URL requerida cuando isPhysical = true */
|
|
1121
|
+
url?: string;
|
|
1122
|
+
/** ApiKey requerida cuando isPhysical = true. Se almacena cifrada (AES-256) en el servidor. */
|
|
1123
|
+
apiKey?: string;
|
|
1115
1124
|
}
|
|
1116
1125
|
interface LocationsFilter {
|
|
1117
1126
|
Search?: string;
|