camstreamerlib 4.0.23 → 4.0.24
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/cjs/PlaneTrackerAPI.d.ts
CHANGED
|
@@ -179,11 +179,11 @@ export declare class PlaneTrackerAPI<Client extends IClient<TResponse, any>> ext
|
|
|
179
179
|
importAppSettings(dataType: TImportDataType, formData: Parameters<Client['post']>[0]['data'], options?: THttpRequestOptions): Promise<void>;
|
|
180
180
|
getDomainList(options?: THttpRequestOptions): Promise<Partial<Record<"adsb" | "remoteId", {
|
|
181
181
|
uiName: string;
|
|
182
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
182
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
183
183
|
categoryList: {
|
|
184
184
|
categoryId: string;
|
|
185
185
|
uiName: string;
|
|
186
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
186
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
187
187
|
}[];
|
|
188
188
|
}>>>;
|
|
189
189
|
fetchFlightInfo(targetId: string, options?: THttpRequestOptions): Promise<{
|
|
@@ -1145,87 +1145,87 @@ export declare const zonesSchema: z.ZodObject<{
|
|
|
1145
1145
|
export type TZones = z.infer<typeof zonesSchema>;
|
|
1146
1146
|
export declare const domainIdSchema: z.ZodEnum<["adsb", "remoteId"]>;
|
|
1147
1147
|
export type TDomainId = z.infer<typeof domainIdSchema>;
|
|
1148
|
-
declare const categoryIconSchema: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1148
|
+
declare const categoryIconSchema: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1149
1149
|
export type TCategoryIcon = z.infer<typeof categoryIconSchema>;
|
|
1150
1150
|
declare const categoryDescriptorSchema: z.ZodObject<{
|
|
1151
1151
|
categoryId: z.ZodString;
|
|
1152
1152
|
uiName: z.ZodString;
|
|
1153
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1153
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1154
1154
|
}, "strip", z.ZodTypeAny, {
|
|
1155
1155
|
categoryId: string;
|
|
1156
1156
|
uiName: string;
|
|
1157
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1157
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1158
1158
|
}, {
|
|
1159
1159
|
categoryId: string;
|
|
1160
1160
|
uiName: string;
|
|
1161
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1161
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1162
1162
|
}>;
|
|
1163
1163
|
export type TCategoryDescriptor = z.infer<typeof categoryDescriptorSchema>;
|
|
1164
1164
|
declare const domainDescriptorSchema: z.ZodObject<{
|
|
1165
1165
|
uiName: z.ZodString;
|
|
1166
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1166
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1167
1167
|
categoryList: z.ZodArray<z.ZodObject<{
|
|
1168
1168
|
categoryId: z.ZodString;
|
|
1169
1169
|
uiName: z.ZodString;
|
|
1170
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1170
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1171
1171
|
}, "strip", z.ZodTypeAny, {
|
|
1172
1172
|
categoryId: string;
|
|
1173
1173
|
uiName: string;
|
|
1174
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1174
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1175
1175
|
}, {
|
|
1176
1176
|
categoryId: string;
|
|
1177
1177
|
uiName: string;
|
|
1178
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1178
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1179
1179
|
}>, "many">;
|
|
1180
1180
|
}, "strip", z.ZodTypeAny, {
|
|
1181
1181
|
uiName: string;
|
|
1182
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1182
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1183
1183
|
categoryList: {
|
|
1184
1184
|
categoryId: string;
|
|
1185
1185
|
uiName: string;
|
|
1186
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1186
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1187
1187
|
}[];
|
|
1188
1188
|
}, {
|
|
1189
1189
|
uiName: string;
|
|
1190
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1190
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1191
1191
|
categoryList: {
|
|
1192
1192
|
categoryId: string;
|
|
1193
1193
|
uiName: string;
|
|
1194
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1194
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1195
1195
|
}[];
|
|
1196
1196
|
}>;
|
|
1197
1197
|
export type TDomainDescriptor = z.infer<typeof domainDescriptorSchema>;
|
|
1198
1198
|
export declare const domainListSchema: z.ZodRecord<z.ZodEnum<["adsb", "remoteId"]>, z.ZodObject<{
|
|
1199
1199
|
uiName: z.ZodString;
|
|
1200
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1200
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1201
1201
|
categoryList: z.ZodArray<z.ZodObject<{
|
|
1202
1202
|
categoryId: z.ZodString;
|
|
1203
1203
|
uiName: z.ZodString;
|
|
1204
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1204
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1205
1205
|
}, "strip", z.ZodTypeAny, {
|
|
1206
1206
|
categoryId: string;
|
|
1207
1207
|
uiName: string;
|
|
1208
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1208
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1209
1209
|
}, {
|
|
1210
1210
|
categoryId: string;
|
|
1211
1211
|
uiName: string;
|
|
1212
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1212
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1213
1213
|
}>, "many">;
|
|
1214
1214
|
}, "strip", z.ZodTypeAny, {
|
|
1215
1215
|
uiName: string;
|
|
1216
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1216
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1217
1217
|
categoryList: {
|
|
1218
1218
|
categoryId: string;
|
|
1219
1219
|
uiName: string;
|
|
1220
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1220
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1221
1221
|
}[];
|
|
1222
1222
|
}, {
|
|
1223
1223
|
uiName: string;
|
|
1224
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1224
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1225
1225
|
categoryList: {
|
|
1226
1226
|
categoryId: string;
|
|
1227
1227
|
uiName: string;
|
|
1228
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1228
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1229
1229
|
}[];
|
|
1230
1230
|
}>>;
|
|
1231
1231
|
export type TDomainList = z.infer<typeof domainListSchema>;
|
|
@@ -369,7 +369,7 @@ exports.zonesSchema = zod_1.z.object({
|
|
|
369
369
|
.default([]),
|
|
370
370
|
});
|
|
371
371
|
exports.domainIdSchema = zod_1.z.enum(['adsb', 'remoteId']);
|
|
372
|
-
const categoryIconSchema = zod_1.z.enum(['small', 'large', 'heavy', 'helicopter', 'drone', 'operator', 'unknown']);
|
|
372
|
+
const categoryIconSchema = zod_1.z.enum(['small', 'large', 'heavy', 'helicopter', 'drone', 'operator', 'vehicle', 'unknown']);
|
|
373
373
|
const categoryDescriptorSchema = zod_1.z.object({
|
|
374
374
|
categoryId: zod_1.z.string(),
|
|
375
375
|
uiName: zod_1.z.string(),
|
|
@@ -366,7 +366,7 @@ export const zonesSchema = z.object({
|
|
|
366
366
|
.default([]),
|
|
367
367
|
});
|
|
368
368
|
export const domainIdSchema = z.enum(['adsb', 'remoteId']);
|
|
369
|
-
const categoryIconSchema = z.enum(['small', 'large', 'heavy', 'helicopter', 'drone', 'operator', 'unknown']);
|
|
369
|
+
const categoryIconSchema = z.enum(['small', 'large', 'heavy', 'helicopter', 'drone', 'operator', 'vehicle', 'unknown']);
|
|
370
370
|
const categoryDescriptorSchema = z.object({
|
|
371
371
|
categoryId: z.string(),
|
|
372
372
|
uiName: z.string(),
|
package/package.json
CHANGED
|
@@ -179,11 +179,11 @@ export declare class PlaneTrackerAPI<Client extends IClient<TResponse, any>> ext
|
|
|
179
179
|
importAppSettings(dataType: TImportDataType, formData: Parameters<Client['post']>[0]['data'], options?: THttpRequestOptions): Promise<void>;
|
|
180
180
|
getDomainList(options?: THttpRequestOptions): Promise<Partial<Record<"adsb" | "remoteId", {
|
|
181
181
|
uiName: string;
|
|
182
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
182
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
183
183
|
categoryList: {
|
|
184
184
|
categoryId: string;
|
|
185
185
|
uiName: string;
|
|
186
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
186
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
187
187
|
}[];
|
|
188
188
|
}>>>;
|
|
189
189
|
fetchFlightInfo(targetId: string, options?: THttpRequestOptions): Promise<{
|
|
@@ -1145,87 +1145,87 @@ export declare const zonesSchema: z.ZodObject<{
|
|
|
1145
1145
|
export type TZones = z.infer<typeof zonesSchema>;
|
|
1146
1146
|
export declare const domainIdSchema: z.ZodEnum<["adsb", "remoteId"]>;
|
|
1147
1147
|
export type TDomainId = z.infer<typeof domainIdSchema>;
|
|
1148
|
-
declare const categoryIconSchema: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1148
|
+
declare const categoryIconSchema: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1149
1149
|
export type TCategoryIcon = z.infer<typeof categoryIconSchema>;
|
|
1150
1150
|
declare const categoryDescriptorSchema: z.ZodObject<{
|
|
1151
1151
|
categoryId: z.ZodString;
|
|
1152
1152
|
uiName: z.ZodString;
|
|
1153
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1153
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1154
1154
|
}, "strip", z.ZodTypeAny, {
|
|
1155
1155
|
categoryId: string;
|
|
1156
1156
|
uiName: string;
|
|
1157
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1157
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1158
1158
|
}, {
|
|
1159
1159
|
categoryId: string;
|
|
1160
1160
|
uiName: string;
|
|
1161
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1161
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1162
1162
|
}>;
|
|
1163
1163
|
export type TCategoryDescriptor = z.infer<typeof categoryDescriptorSchema>;
|
|
1164
1164
|
declare const domainDescriptorSchema: z.ZodObject<{
|
|
1165
1165
|
uiName: z.ZodString;
|
|
1166
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1166
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1167
1167
|
categoryList: z.ZodArray<z.ZodObject<{
|
|
1168
1168
|
categoryId: z.ZodString;
|
|
1169
1169
|
uiName: z.ZodString;
|
|
1170
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1170
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1171
1171
|
}, "strip", z.ZodTypeAny, {
|
|
1172
1172
|
categoryId: string;
|
|
1173
1173
|
uiName: string;
|
|
1174
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1174
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1175
1175
|
}, {
|
|
1176
1176
|
categoryId: string;
|
|
1177
1177
|
uiName: string;
|
|
1178
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1178
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1179
1179
|
}>, "many">;
|
|
1180
1180
|
}, "strip", z.ZodTypeAny, {
|
|
1181
1181
|
uiName: string;
|
|
1182
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1182
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1183
1183
|
categoryList: {
|
|
1184
1184
|
categoryId: string;
|
|
1185
1185
|
uiName: string;
|
|
1186
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1186
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1187
1187
|
}[];
|
|
1188
1188
|
}, {
|
|
1189
1189
|
uiName: string;
|
|
1190
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1190
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1191
1191
|
categoryList: {
|
|
1192
1192
|
categoryId: string;
|
|
1193
1193
|
uiName: string;
|
|
1194
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1194
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1195
1195
|
}[];
|
|
1196
1196
|
}>;
|
|
1197
1197
|
export type TDomainDescriptor = z.infer<typeof domainDescriptorSchema>;
|
|
1198
1198
|
export declare const domainListSchema: z.ZodRecord<z.ZodEnum<["adsb", "remoteId"]>, z.ZodObject<{
|
|
1199
1199
|
uiName: z.ZodString;
|
|
1200
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1200
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1201
1201
|
categoryList: z.ZodArray<z.ZodObject<{
|
|
1202
1202
|
categoryId: z.ZodString;
|
|
1203
1203
|
uiName: z.ZodString;
|
|
1204
|
-
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "unknown"]>;
|
|
1204
|
+
icon: z.ZodEnum<["small", "large", "heavy", "helicopter", "drone", "operator", "vehicle", "unknown"]>;
|
|
1205
1205
|
}, "strip", z.ZodTypeAny, {
|
|
1206
1206
|
categoryId: string;
|
|
1207
1207
|
uiName: string;
|
|
1208
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1208
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1209
1209
|
}, {
|
|
1210
1210
|
categoryId: string;
|
|
1211
1211
|
uiName: string;
|
|
1212
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1212
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1213
1213
|
}>, "many">;
|
|
1214
1214
|
}, "strip", z.ZodTypeAny, {
|
|
1215
1215
|
uiName: string;
|
|
1216
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1216
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1217
1217
|
categoryList: {
|
|
1218
1218
|
categoryId: string;
|
|
1219
1219
|
uiName: string;
|
|
1220
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1220
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1221
1221
|
}[];
|
|
1222
1222
|
}, {
|
|
1223
1223
|
uiName: string;
|
|
1224
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1224
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1225
1225
|
categoryList: {
|
|
1226
1226
|
categoryId: string;
|
|
1227
1227
|
uiName: string;
|
|
1228
|
-
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator";
|
|
1228
|
+
icon: "unknown" | "small" | "large" | "heavy" | "helicopter" | "drone" | "operator" | "vehicle";
|
|
1229
1229
|
}[];
|
|
1230
1230
|
}>>;
|
|
1231
1231
|
export type TDomainList = z.infer<typeof domainListSchema>;
|