@anduril-industries/lattice-sdk 1.8.0 → 1.9.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anduril-industries/lattice-sdk",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "The Lattice SDK vended in Javascript",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "repository": {
@@ -252,49 +252,40 @@ export enum Template {
252
252
  INVALID = 0,
253
253
 
254
254
  /**
255
- * additional track required components:
256
- * * location
257
- * * mil_view
255
+ * Refers to any detected object.
256
+ * Requires setting the location, and mil_view components.
258
257
  *
259
258
  * @generated from enum value: TEMPLATE_TRACK = 1;
260
259
  */
261
260
  TRACK = 1,
262
261
 
263
262
  /**
264
- * additional SPI required components:
265
- * * location
266
- * * mil_view
267
- * * produced_by
263
+ * Refers to any sensors detected at a specific location.
264
+ * Requires setting location, and mil_view.
268
265
  *
269
266
  * @generated from enum value: TEMPLATE_SENSOR_POINT_OF_INTEREST = 2;
270
267
  */
271
268
  SENSOR_POINT_OF_INTEREST = 2,
272
269
 
273
270
  /**
274
- * additional asset required components:
275
- * * location
276
- * * mil_view
277
- * * ontology
271
+ * Refers to a taskable entity under the control of friendly forces.
272
+ * Requires setting location, and mil_view, and ontology.
278
273
  *
279
274
  * @generated from enum value: TEMPLATE_ASSET = 3;
280
275
  */
281
276
  ASSET = 3,
282
277
 
283
278
  /**
284
- * additional geo required components:
285
- * * geo_shape
286
- * * geo_details
279
+ * Refers to shapes or points of interest drawn on the map.
280
+ * Requires setting geo_shape and geo_details.
287
281
  *
288
282
  * @generated from enum value: TEMPLATE_GEO = 4;
289
283
  */
290
284
  GEO = 4,
291
285
 
292
286
  /**
293
- * additional SOI required components:
294
- * * signal
295
- * * location field should be populated if there is a fix.
296
- * * mil_view
297
- * * ontology
287
+ * Refers to signal detection with characteristics such as emitter notation, frequency, or lines of bearing.
288
+ * Requires setting signal, and mil_view, and ontology. Requies setting location, if the signal.fixed component is populated.
298
289
  *
299
290
  * @generated from enum value: TEMPLATE_SIGNAL_OF_INTEREST = 5;
300
291
  */