@osdk/gotham.targetworkbench 0.1.0 → 0.3.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/CHANGELOG.md +22 -0
- package/build/browser/_components.d.ts +561 -1
- package/build/browser/_components.d.ts.map +1 -1
- package/build/browser/_errors.d.ts +236 -2
- package/build/browser/_errors.d.ts.map +1 -1
- package/build/browser/index.d.ts +4 -2
- package/build/browser/index.d.ts.map +1 -1
- package/build/browser/index.js +2 -0
- package/build/browser/index.js.map +1 -1
- package/build/browser/public/HighPriorityTargetList.d.ts +49 -0
- package/build/browser/public/HighPriorityTargetList.d.ts.map +1 -0
- package/build/browser/public/HighPriorityTargetList.js +58 -0
- package/build/browser/public/HighPriorityTargetList.js.map +1 -0
- package/build/browser/public/Target.d.ts +105 -0
- package/build/browser/public/Target.d.ts.map +1 -0
- package/build/browser/public/Target.js +122 -0
- package/build/browser/public/Target.js.map +1 -0
- package/build/browser/public/TargetBoard.d.ts +1 -0
- package/build/browser/public/TargetBoard.d.ts.map +1 -1
- package/build/browser/public/TargetBoard.js +1 -0
- package/build/browser/public/TargetBoard.js.map +1 -1
- package/build/esm/_components.d.ts +561 -1
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/_errors.d.ts +236 -2
- package/build/esm/_errors.d.ts.map +1 -1
- package/build/esm/index.d.ts +4 -2
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/index.js +2 -0
- package/build/esm/index.js.map +1 -1
- package/build/esm/public/HighPriorityTargetList.d.ts +49 -0
- package/build/esm/public/HighPriorityTargetList.d.ts.map +1 -0
- package/build/esm/public/HighPriorityTargetList.js +58 -0
- package/build/esm/public/HighPriorityTargetList.js.map +1 -0
- package/build/esm/public/Target.d.ts +105 -0
- package/build/esm/public/Target.d.ts.map +1 -0
- package/build/esm/public/Target.js +122 -0
- package/build/esm/public/Target.js.map +1 -0
- package/build/esm/public/TargetBoard.d.ts +1 -0
- package/build/esm/public/TargetBoard.d.ts.map +1 -1
- package/build/esm/public/TargetBoard.js +1 -0
- package/build/esm/public/TargetBoard.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @osdk/gotham.targetworkbench
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 763137d: Regenerate Platform SDKs
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [763137d]
|
|
12
|
+
- @osdk/gotham.core@0.3.0
|
|
13
|
+
|
|
14
|
+
## 0.2.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 365da44: Bump platform SDK to 1.1281.0
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [365da44]
|
|
23
|
+
- @osdk/gotham.core@0.2.0
|
|
24
|
+
|
|
3
25
|
## 0.1.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
+
import type * as _Core from "@osdk/gotham.core";
|
|
1
2
|
export type LooselyBrandedString<T extends string> = string & {
|
|
2
3
|
__LOOSE_BRAND?: T;
|
|
3
4
|
};
|
|
5
|
+
/**
|
|
6
|
+
* If an auto detection algorithm utilized artificial intelligence or LLMs, this field enables
|
|
7
|
+
storage of additional model information and debug logs.
|
|
8
|
+
*
|
|
9
|
+
* Log Safety: UNSAFE
|
|
10
|
+
*/
|
|
11
|
+
export interface AiReasoning {
|
|
12
|
+
debugLogs?: string;
|
|
13
|
+
model?: string;
|
|
14
|
+
systemPrompt?: string;
|
|
15
|
+
taskPrompt?: string;
|
|
16
|
+
}
|
|
4
17
|
/**
|
|
5
18
|
* Security settings for board content
|
|
6
19
|
*
|
|
@@ -11,7 +24,7 @@ export interface ArtifactSecurity {
|
|
|
11
24
|
spaceRid?: SpaceRid;
|
|
12
25
|
}
|
|
13
26
|
/**
|
|
14
|
-
* The current version of the
|
|
27
|
+
* The current version of the artifact to be modified.
|
|
15
28
|
The archive operation will be transformed against any concurrent operations
|
|
16
29
|
made since this version. If there are any conflicting edits that result in changes to
|
|
17
30
|
these operations when they're applied, that will be noted in the response.
|
|
@@ -19,12 +32,32 @@ these operations when they're applied, that will be noted in the response.
|
|
|
19
32
|
* Log Safety: UNSAFE
|
|
20
33
|
*/
|
|
21
34
|
export type BaseRevisionId = LooselyBrandedString<"BaseRevisionId">;
|
|
35
|
+
/**
|
|
36
|
+
* Log Safety: UNSAFE
|
|
37
|
+
*/
|
|
38
|
+
export interface ChatMessageId {
|
|
39
|
+
chatChannelGid: ObjectPrimaryKey;
|
|
40
|
+
matrixEventId: string;
|
|
41
|
+
}
|
|
22
42
|
/**
|
|
23
43
|
* Color options for target board columns
|
|
24
44
|
*
|
|
25
45
|
* Log Safety: SAFE
|
|
26
46
|
*/
|
|
27
47
|
export type ColumnColor = "RED" | "BLUE" | "GREEN" | "YELLOW" | "ORANGE" | "PURPLE";
|
|
48
|
+
/**
|
|
49
|
+
* Log Safety: UNSAFE
|
|
50
|
+
*/
|
|
51
|
+
export interface CreateHighPriorityTargetListRequest {
|
|
52
|
+
targetBoard?: TargetBoardRid;
|
|
53
|
+
targetAois?: Array<HptlTargetAoi>;
|
|
54
|
+
security: ArtifactSecurity;
|
|
55
|
+
areaGeo?: GeoPolygon;
|
|
56
|
+
areaObjectRid?: ObjectPrimaryKey;
|
|
57
|
+
name: HighPriorityTargetListName;
|
|
58
|
+
description?: string;
|
|
59
|
+
targets?: Array<HighPriorityTargetListTarget>;
|
|
60
|
+
}
|
|
28
61
|
/**
|
|
29
62
|
* Log Safety: UNSAFE
|
|
30
63
|
*/
|
|
@@ -35,12 +68,94 @@ export interface CreateTargetBoardRequest {
|
|
|
35
68
|
name: TargetBoardName;
|
|
36
69
|
description?: string;
|
|
37
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* Log Safety: UNSAFE
|
|
73
|
+
*/
|
|
74
|
+
export interface CreateTargetIntelTargetRequest {
|
|
75
|
+
id: IntelId;
|
|
76
|
+
name: string;
|
|
77
|
+
description?: string;
|
|
78
|
+
domain: IntelDomain;
|
|
79
|
+
validTime: string;
|
|
80
|
+
location?: GeoCircle;
|
|
81
|
+
confidence?: number;
|
|
82
|
+
intelType: IntelUnion;
|
|
83
|
+
source?: string;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Log Safety: UNSAFE
|
|
87
|
+
*/
|
|
88
|
+
export interface CreateTargetRequest {
|
|
89
|
+
sidc?: string;
|
|
90
|
+
highPriorityTargetListTargetSubtype?: HptlTargetSubtype;
|
|
91
|
+
column: TargetBoardColumnId;
|
|
92
|
+
description?: string;
|
|
93
|
+
targetType?: string;
|
|
94
|
+
targetBoard: TargetBoardRid;
|
|
95
|
+
entityRid?: ObjectPrimaryKey;
|
|
96
|
+
targetIdentifier?: TargetIdentifier;
|
|
97
|
+
security: ArtifactSecurity;
|
|
98
|
+
aimpoints: Array<TargetAimpointV2>;
|
|
99
|
+
detectionReasoning?: DetectionReasoning;
|
|
100
|
+
name: TargetName;
|
|
101
|
+
location?: LocationSource;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* Custom identifier for targets.
|
|
105
|
+
*
|
|
106
|
+
* Log Safety: UNSAFE
|
|
107
|
+
*/
|
|
108
|
+
export type CustomTargetIdentifier = LooselyBrandedString<"CustomTargetIdentifier">;
|
|
109
|
+
/**
|
|
110
|
+
* Log Safety: UNSAFE
|
|
111
|
+
*/
|
|
112
|
+
export interface DetectionReasoning {
|
|
113
|
+
algorithmName?: string;
|
|
114
|
+
aiReasoning?: AiReasoning;
|
|
115
|
+
configurationObjectRid?: FoundryObjectRid;
|
|
116
|
+
detectionType?: DetectionType;
|
|
117
|
+
location?: Location3dWithError;
|
|
118
|
+
reasoning?: string;
|
|
119
|
+
timestamp?: string;
|
|
120
|
+
agentVersion?: string;
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* AI_AUTO_DETECTION: This type should be set whenever a target is nominated through the use of a LLM or other artificial intelligence based algorithm.
|
|
124
|
+
DEFAULT_AUTO_DETECTION: This type should be set whenever a target is auto discovered, but not through the involvement of any artificial intelligence.
|
|
125
|
+
*
|
|
126
|
+
* Log Safety: SAFE
|
|
127
|
+
*/
|
|
128
|
+
export type DetectionType = "AI_AUTO_DETECTION" | "DEFAULT_AUTO_DETECTION";
|
|
129
|
+
/**
|
|
130
|
+
* An object including the elevation and the linear error, both in meters.
|
|
131
|
+
*
|
|
132
|
+
* Log Safety: UNSAFE
|
|
133
|
+
*/
|
|
134
|
+
export interface ElevationWithError {
|
|
135
|
+
elevationInMeters: number;
|
|
136
|
+
linearErrorInMeters?: number;
|
|
137
|
+
}
|
|
38
138
|
/**
|
|
39
139
|
* An empty response object indicating the request was successful.
|
|
40
140
|
*
|
|
41
141
|
* Log Safety: SAFE
|
|
42
142
|
*/
|
|
43
143
|
export type EmptySuccessResponse = any;
|
|
144
|
+
/**
|
|
145
|
+
* A unique identifier of a Foundry object type.
|
|
146
|
+
*
|
|
147
|
+
* Log Safety: SAFE
|
|
148
|
+
*/
|
|
149
|
+
export type FoundryObjectRid = LooselyBrandedString<"FoundryObjectRid">;
|
|
150
|
+
/**
|
|
151
|
+
* A circle representing the area a target is located.
|
|
152
|
+
*
|
|
153
|
+
* Log Safety: UNSAFE
|
|
154
|
+
*/
|
|
155
|
+
export interface GeoCircle {
|
|
156
|
+
center: _Core.GeoPoint;
|
|
157
|
+
radius: number;
|
|
158
|
+
}
|
|
44
159
|
/**
|
|
45
160
|
* Geographic coordinates
|
|
46
161
|
*
|
|
@@ -50,12 +165,279 @@ export interface GeoLocation {
|
|
|
50
165
|
longitude: number;
|
|
51
166
|
latitude: number;
|
|
52
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* Log Safety: UNSAFE
|
|
170
|
+
*/
|
|
171
|
+
export interface GeoPoint {
|
|
172
|
+
elevation?: number;
|
|
173
|
+
latitude: number;
|
|
174
|
+
longitude: number;
|
|
175
|
+
}
|
|
176
|
+
/**
|
|
177
|
+
* A Polygon representing the area where this High Priority Target List is applicable. If areaObjectRid exists, that field/area will be used and this field will be ignored.
|
|
178
|
+
*
|
|
179
|
+
* Log Safety: UNSAFE
|
|
180
|
+
*/
|
|
181
|
+
export interface GeoPolygon {
|
|
182
|
+
points?: Array<_Core.GeoPoint>;
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* A resource identifier (RID) of a Geotime Track tracking the target.
|
|
186
|
+
*
|
|
187
|
+
* Log Safety: UNSAFE
|
|
188
|
+
*/
|
|
189
|
+
export type GeotimeTrackRid = LooselyBrandedString<"GeotimeTrackRid">;
|
|
190
|
+
/**
|
|
191
|
+
* Log Safety: UNSAFE
|
|
192
|
+
*/
|
|
193
|
+
export interface HighPriorityTargetList {
|
|
194
|
+
rid: HighPriorityTargetListRid;
|
|
195
|
+
name: HighPriorityTargetListName;
|
|
196
|
+
description?: string;
|
|
197
|
+
targetBoard?: TargetBoardRid;
|
|
198
|
+
targets?: Array<HighPriorityTargetListTarget>;
|
|
199
|
+
areaObjectRid?: ObjectPrimaryKey;
|
|
200
|
+
areaGeo?: GeoPolygon;
|
|
201
|
+
targetAois?: Array<HptlTargetAoi>;
|
|
202
|
+
security: ArtifactSecurity;
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* The Attack Guidance Matrix (AGM) on a Target on a High Priority Target List.
|
|
206
|
+
*
|
|
207
|
+
* Log Safety: UNSAFE
|
|
208
|
+
*/
|
|
209
|
+
export interface HighPriorityTargetListAgm {
|
|
210
|
+
agmId: HighPriorityTargetListAgmId;
|
|
211
|
+
effectorType?: HighPriorityTargetListEffectType;
|
|
212
|
+
effector?: string;
|
|
213
|
+
effectorPriority?: number;
|
|
214
|
+
timelinessInMinutes?: number;
|
|
215
|
+
accuracyInMeters?: number;
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* Identifier of the Attack Guidance Matrix (AGM) associated with the High Priority Target List (HPTL).
|
|
219
|
+
*
|
|
220
|
+
* Log Safety: UNSAFE
|
|
221
|
+
*/
|
|
222
|
+
export type HighPriorityTargetListAgmId = LooselyBrandedString<"HighPriorityTargetListAgmId">;
|
|
223
|
+
/**
|
|
224
|
+
* The action that should be taken on a Target in a High Priority Target List.
|
|
225
|
+
*
|
|
226
|
+
* Log Safety: SAFE
|
|
227
|
+
*/
|
|
228
|
+
export type HighPriorityTargetListEffectType = "DESTROY" | "JAMMING" | "NEUTRALIZE" | "SUPPRESS" | "K_KILL" | "COG_KILL" | "F_KILL" | "G_KILL" | "MSN_KILL" | "M_KILL" | "M_SLASH_F_KILL" | "M_SLASH_MSN_KILL" | "M_SLASH_P_KILL" | "P_KILL" | "PM_KILL" | "PTO_KILL" | "TOA_KILL";
|
|
229
|
+
/**
|
|
230
|
+
* Log Safety: UNSAFE
|
|
231
|
+
*/
|
|
232
|
+
export type HighPriorityTargetListName = LooselyBrandedString<"HighPriorityTargetListName">;
|
|
53
233
|
/**
|
|
54
234
|
* The unique identifier for a High Priority Target List
|
|
55
235
|
*
|
|
56
236
|
* Log Safety: SAFE
|
|
57
237
|
*/
|
|
58
238
|
export type HighPriorityTargetListRid = LooselyBrandedString<"HighPriorityTargetListRid">;
|
|
239
|
+
/**
|
|
240
|
+
* The target on a High Priority Target List.
|
|
241
|
+
*
|
|
242
|
+
* Log Safety: UNSAFE
|
|
243
|
+
*/
|
|
244
|
+
export interface HighPriorityTargetListTarget {
|
|
245
|
+
highPriorityTargetListTargetId: HighPriorityTargetListTargetId;
|
|
246
|
+
aoiId?: HptlTargetAoiId;
|
|
247
|
+
targetType: string;
|
|
248
|
+
targetSubtypes?: Array<HptlTargetSubtype>;
|
|
249
|
+
priority: number;
|
|
250
|
+
subPriority?: number;
|
|
251
|
+
category?: string;
|
|
252
|
+
elnots?: Array<HptlTargetElnot>;
|
|
253
|
+
when: HighPriorityTargetListWhen;
|
|
254
|
+
agm?: Record<HighPriorityTargetListAgmId, HighPriorityTargetListAgm>;
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* Log Safety: UNSAFE
|
|
258
|
+
*/
|
|
259
|
+
export type HighPriorityTargetListTargetId = LooselyBrandedString<"HighPriorityTargetListTargetId">;
|
|
260
|
+
/**
|
|
261
|
+
* A category representing when to action the Target on a High Priority Target List.
|
|
262
|
+
*
|
|
263
|
+
* Log Safety: SAFE
|
|
264
|
+
*/
|
|
265
|
+
export type HighPriorityTargetListWhen = "ACQUIRED" | "IMMEDIATE" | "PLANNED" | "NONE";
|
|
266
|
+
/**
|
|
267
|
+
* The current version of the retrieved HighPriorityTargetList.
|
|
268
|
+
Any modifying operations should be accompanied by this version to avoid concurrent operations
|
|
269
|
+
made since this version. If there are any conflicting edits that result in changes to
|
|
270
|
+
these operations when they are applied, it will be noted in the response.
|
|
271
|
+
*
|
|
272
|
+
* Log Safety: SAFE
|
|
273
|
+
*/
|
|
274
|
+
export type HptlBaseRevisionId = number;
|
|
275
|
+
/**
|
|
276
|
+
* An AOI referenced by the defined HptlTarget
|
|
277
|
+
*
|
|
278
|
+
* Log Safety: UNSAFE
|
|
279
|
+
*/
|
|
280
|
+
export interface HptlTargetAoi {
|
|
281
|
+
id: HptlTargetAoiId;
|
|
282
|
+
name?: string;
|
|
283
|
+
data: HptlTargetAoiUnion;
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* Identifier of the High Priority Target List Target (HPTLTarget) Area of Interest (AOI).
|
|
287
|
+
*
|
|
288
|
+
* Log Safety: SAFE
|
|
289
|
+
*/
|
|
290
|
+
export type HptlTargetAoiId = string;
|
|
291
|
+
/**
|
|
292
|
+
* Log Safety: UNSAFE
|
|
293
|
+
*/
|
|
294
|
+
export type HptlTargetAoiUnion = ({
|
|
295
|
+
type: "geo";
|
|
296
|
+
} & HptlTargetGeoAoi) | ({
|
|
297
|
+
type: "entity";
|
|
298
|
+
} & HptlTargetEntityAoi);
|
|
299
|
+
/**
|
|
300
|
+
* ELINT Notations (ELNOTs) associated with the HPTL target.
|
|
301
|
+
*
|
|
302
|
+
* Log Safety: UNSAFE
|
|
303
|
+
*/
|
|
304
|
+
export type HptlTargetElnot = LooselyBrandedString<"HptlTargetElnot">;
|
|
305
|
+
/**
|
|
306
|
+
* Log Safety: UNSAFE
|
|
307
|
+
*/
|
|
308
|
+
export interface HptlTargetEntityAoi {
|
|
309
|
+
entity: ObjectPrimaryKey;
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* Log Safety: UNSAFE
|
|
313
|
+
*/
|
|
314
|
+
export interface HptlTargetGeoAoi {
|
|
315
|
+
geo: GeoPolygon;
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* This subtype will be matched against the subType stored on High Priority Target List Target (HPTLTarget) in order to determine a target's
|
|
319
|
+
subPriority, in addition to priority and Attack Guidance Matrix (AGM).
|
|
320
|
+
*
|
|
321
|
+
* Log Safety: UNSAFE
|
|
322
|
+
*/
|
|
323
|
+
export type HptlTargetSubtype = LooselyBrandedString<"HptlTargetSubtype">;
|
|
324
|
+
/**
|
|
325
|
+
* Log Safety: UNSAFE
|
|
326
|
+
*/
|
|
327
|
+
export interface Intel {
|
|
328
|
+
id: IntelId;
|
|
329
|
+
name: string;
|
|
330
|
+
description?: string;
|
|
331
|
+
domain: IntelDomain;
|
|
332
|
+
validTime: string;
|
|
333
|
+
location?: GeoCircle;
|
|
334
|
+
confidence?: number;
|
|
335
|
+
intelType: IntelUnion;
|
|
336
|
+
source?: string;
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* Log Safety: UNSAFE
|
|
340
|
+
*/
|
|
341
|
+
export interface IntelChatMessage {
|
|
342
|
+
chatMessageId: ChatMessageId;
|
|
343
|
+
}
|
|
344
|
+
/**
|
|
345
|
+
* Log Safety: SAFE
|
|
346
|
+
*/
|
|
347
|
+
export type IntelDomain = "SIGINT" | "OSINT" | "IMINT" | "ELINT" | "HUMINT" | "OTHER" | "ALL_SOURCE" | "GEOINT" | "OPIR" | "FMV" | "COMINT";
|
|
348
|
+
/**
|
|
349
|
+
* Log Safety: UNSAFE
|
|
350
|
+
*/
|
|
351
|
+
export interface IntelDossier {
|
|
352
|
+
dossierGid: ObjectPrimaryKey;
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* Log Safety: SAFE
|
|
356
|
+
*/
|
|
357
|
+
export interface IntelFoundryObject {
|
|
358
|
+
foundryObjectRid: FoundryObjectRid;
|
|
359
|
+
}
|
|
360
|
+
/**
|
|
361
|
+
* Freetext is stored in the Intel description field.
|
|
362
|
+
*
|
|
363
|
+
* Log Safety: SAFE
|
|
364
|
+
*/
|
|
365
|
+
export interface IntelFreeText {
|
|
366
|
+
}
|
|
367
|
+
/**
|
|
368
|
+
* Log Safety: UNSAFE
|
|
369
|
+
*/
|
|
370
|
+
export interface IntelGeotimeObservation {
|
|
371
|
+
geotimeTrack: GeotimeTrackRid;
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* Log Safety: UNSAFE
|
|
375
|
+
*/
|
|
376
|
+
export type IntelId = LooselyBrandedString<"IntelId">;
|
|
377
|
+
/**
|
|
378
|
+
* Log Safety: UNSAFE
|
|
379
|
+
*/
|
|
380
|
+
export interface IntelMedia {
|
|
381
|
+
fileGid: ObjectPrimaryKey;
|
|
382
|
+
}
|
|
383
|
+
/**
|
|
384
|
+
* Log Safety: UNSAFE
|
|
385
|
+
*/
|
|
386
|
+
export interface IntelPgObject {
|
|
387
|
+
objectRid: ObjectPrimaryKey;
|
|
388
|
+
}
|
|
389
|
+
/**
|
|
390
|
+
* Log Safety: UNSAFE
|
|
391
|
+
*/
|
|
392
|
+
export type IntelUnion = ({
|
|
393
|
+
type: "geotimeObservation";
|
|
394
|
+
} & IntelGeotimeObservation) | ({
|
|
395
|
+
type: "foundryObject";
|
|
396
|
+
} & IntelFoundryObject) | ({
|
|
397
|
+
type: "freetext";
|
|
398
|
+
} & IntelFreeText) | ({
|
|
399
|
+
type: "dossier";
|
|
400
|
+
} & IntelDossier) | ({
|
|
401
|
+
type: "media";
|
|
402
|
+
} & IntelMedia) | ({
|
|
403
|
+
type: "pgObject";
|
|
404
|
+
} & IntelPgObject) | ({
|
|
405
|
+
type: "chatMessage";
|
|
406
|
+
} & IntelChatMessage);
|
|
407
|
+
/**
|
|
408
|
+
* Log Safety: UNSAFE
|
|
409
|
+
*/
|
|
410
|
+
export type JpdiId = LooselyBrandedString<"JpdiId">;
|
|
411
|
+
/**
|
|
412
|
+
* The High Priority Target List object.
|
|
413
|
+
*
|
|
414
|
+
* Log Safety: UNSAFE
|
|
415
|
+
*/
|
|
416
|
+
export interface LoadedHighPriorityTargetList {
|
|
417
|
+
rid: HighPriorityTargetListRid;
|
|
418
|
+
description?: string;
|
|
419
|
+
targets?: Array<HighPriorityTargetListTarget>;
|
|
420
|
+
targetAois?: Array<HptlTargetAoi>;
|
|
421
|
+
areaObjectId?: ObjectPrimaryKey;
|
|
422
|
+
areaGeo?: GeoPolygon;
|
|
423
|
+
}
|
|
424
|
+
/**
|
|
425
|
+
* Log Safety: UNSAFE
|
|
426
|
+
*/
|
|
427
|
+
export interface LoadedTarget {
|
|
428
|
+
rid: TargetRid;
|
|
429
|
+
name: string;
|
|
430
|
+
description?: string;
|
|
431
|
+
targetBoards?: Array<TargetBoardRid>;
|
|
432
|
+
targetType?: string;
|
|
433
|
+
entityRid?: ObjectPrimaryKey;
|
|
434
|
+
sidc?: string;
|
|
435
|
+
targetIdentifier?: TargetIdentifier;
|
|
436
|
+
location?: LocationSource;
|
|
437
|
+
highPriorityTargetListTargetSubtype?: HptlTargetSubtype;
|
|
438
|
+
aimpoints: Array<TargetAimpointV2>;
|
|
439
|
+
intel?: Array<Intel>;
|
|
440
|
+
}
|
|
59
441
|
/**
|
|
60
442
|
* Log Safety: UNSAFE
|
|
61
443
|
*/
|
|
@@ -68,6 +450,15 @@ export interface LoadedTargetBoard {
|
|
|
68
450
|
targets?: Array<TargetBranchId>;
|
|
69
451
|
targetColumnIds?: Record<TargetBranchId, TargetDetails>;
|
|
70
452
|
}
|
|
453
|
+
/**
|
|
454
|
+
* Success response with the requested Target Board.
|
|
455
|
+
*
|
|
456
|
+
* Log Safety: UNSAFE
|
|
457
|
+
*/
|
|
458
|
+
export interface LoadHighPriorityTargetListResponse {
|
|
459
|
+
highPriorityTargetList: LoadedHighPriorityTargetList;
|
|
460
|
+
baseRevisionId: HptlBaseRevisionId;
|
|
461
|
+
}
|
|
71
462
|
/**
|
|
72
463
|
* Types of information to load for target pucks
|
|
73
464
|
*
|
|
@@ -83,6 +474,51 @@ export interface LoadTargetBoardResponse {
|
|
|
83
474
|
targetBoard: LoadedTargetBoard;
|
|
84
475
|
baseRevisionId: BaseRevisionId;
|
|
85
476
|
}
|
|
477
|
+
/**
|
|
478
|
+
* Success response with the requested Target. The objectRid is the RID of the object being targeted.
|
|
479
|
+
*
|
|
480
|
+
* Log Safety: UNSAFE
|
|
481
|
+
*/
|
|
482
|
+
export interface LoadTargetResponse {
|
|
483
|
+
target: LoadedTarget;
|
|
484
|
+
baseRevisionId: BaseRevisionId;
|
|
485
|
+
}
|
|
486
|
+
/**
|
|
487
|
+
* Location object that contains the latitude, longitude, and elevation.
|
|
488
|
+
*
|
|
489
|
+
* Log Safety: UNSAFE
|
|
490
|
+
*/
|
|
491
|
+
export interface Location3dWithError {
|
|
492
|
+
lat: number;
|
|
493
|
+
lng: number;
|
|
494
|
+
circularErrorInMeters?: number;
|
|
495
|
+
hae?: ElevationWithError;
|
|
496
|
+
msl?: ElevationWithError;
|
|
497
|
+
agl?: ElevationWithError;
|
|
498
|
+
}
|
|
499
|
+
/**
|
|
500
|
+
* An object containing the location source for a target.
|
|
501
|
+
This can either be a manual location, a geotimeTrack, and/or a geotrackable entity providing location updates.
|
|
502
|
+
The entity, if present, is always the same as the backing entity of the target.
|
|
503
|
+
*
|
|
504
|
+
* Log Safety: UNSAFE
|
|
505
|
+
*/
|
|
506
|
+
export interface LocationSource {
|
|
507
|
+
manualLocation?: Location3dWithError;
|
|
508
|
+
geotimeTrack?: GeotimeTrackRid;
|
|
509
|
+
geotrackableEntity?: ObjectPrimaryKey;
|
|
510
|
+
}
|
|
511
|
+
/**
|
|
512
|
+
* Log Safety: UNSAFE
|
|
513
|
+
*/
|
|
514
|
+
export interface ModifyHighPriorityTargetListRequest {
|
|
515
|
+
targetBoard?: TargetBoardRid;
|
|
516
|
+
targets?: Array<HighPriorityTargetListTarget>;
|
|
517
|
+
areaObjectRid?: ObjectPrimaryKey;
|
|
518
|
+
areaGeo?: GeoPolygon;
|
|
519
|
+
targetAois?: Array<HptlTargetAoi>;
|
|
520
|
+
baseRevisionId: HptlBaseRevisionId;
|
|
521
|
+
}
|
|
86
522
|
/**
|
|
87
523
|
* Log Safety: UNSAFE
|
|
88
524
|
*/
|
|
@@ -93,6 +529,58 @@ export interface ModifyTargetBoardRequest {
|
|
|
93
529
|
configuration?: TargetBoardConfiguration;
|
|
94
530
|
baseRevisionId: BaseRevisionId;
|
|
95
531
|
}
|
|
532
|
+
/**
|
|
533
|
+
* Modifiable fields in Target Intel.
|
|
534
|
+
*
|
|
535
|
+
* Log Safety: UNSAFE
|
|
536
|
+
*/
|
|
537
|
+
export interface ModifyTargetIntelData {
|
|
538
|
+
id: IntelId;
|
|
539
|
+
name: string;
|
|
540
|
+
description?: string;
|
|
541
|
+
domain: IntelDomain;
|
|
542
|
+
validTime: string;
|
|
543
|
+
location?: GeoCircle;
|
|
544
|
+
confidence?: number;
|
|
545
|
+
intelType: IntelUnion;
|
|
546
|
+
source?: string;
|
|
547
|
+
}
|
|
548
|
+
/**
|
|
549
|
+
* The response body returned when modifying intel attached to a target.
|
|
550
|
+
*
|
|
551
|
+
* Log Safety: UNSAFE
|
|
552
|
+
*/
|
|
553
|
+
export interface ModifyTargetIntelResponse {
|
|
554
|
+
updatedIntelIds: Array<IntelId>;
|
|
555
|
+
}
|
|
556
|
+
/**
|
|
557
|
+
* Log Safety: UNSAFE
|
|
558
|
+
*/
|
|
559
|
+
export interface ModifyTargetIntelTargetRequest {
|
|
560
|
+
intel: Array<ModifyTargetIntelData>;
|
|
561
|
+
}
|
|
562
|
+
/**
|
|
563
|
+
* Log Safety: UNSAFE
|
|
564
|
+
*/
|
|
565
|
+
export interface ModifyTargetRequest {
|
|
566
|
+
name: string;
|
|
567
|
+
description?: string;
|
|
568
|
+
targetType?: string;
|
|
569
|
+
entityRid?: ObjectPrimaryKey;
|
|
570
|
+
sidc?: string;
|
|
571
|
+
targetIdentifier?: TargetIdentifier;
|
|
572
|
+
location?: LocationSource;
|
|
573
|
+
highPriorityTargetListTargetSubtype?: HptlTargetSubtype;
|
|
574
|
+
aimpoints: Array<TargetAimpointV2>;
|
|
575
|
+
baseRevisionId: BaseRevisionId;
|
|
576
|
+
clientId?: string;
|
|
577
|
+
}
|
|
578
|
+
/**
|
|
579
|
+
* The primary key/unique identifier of an object, useful for interacting with Gotham APIs to load and mutate objects.
|
|
580
|
+
*
|
|
581
|
+
* Log Safety: UNSAFE
|
|
582
|
+
*/
|
|
583
|
+
export type ObjectPrimaryKey = LooselyBrandedString<"ObjectPrimaryKey">;
|
|
96
584
|
/**
|
|
97
585
|
* Security markings represent the level of access control that applies to a specific piece of information (e.g., object property, object title).
|
|
98
586
|
Security markings are required upon creating a new object, and upon adding a new property to an existing object.
|
|
@@ -106,12 +594,65 @@ Contact your Palantir administrator for more information on the markings that yo
|
|
|
106
594
|
* Log Safety: UNSAFE
|
|
107
595
|
*/
|
|
108
596
|
export type PortionMarking = LooselyBrandedString<"PortionMarking">;
|
|
597
|
+
/**
|
|
598
|
+
* Log Safety: UNSAFE
|
|
599
|
+
*/
|
|
600
|
+
export interface RemoveTargetIntelTargetRequest {
|
|
601
|
+
id: IntelId;
|
|
602
|
+
}
|
|
603
|
+
/**
|
|
604
|
+
* Log Safety: UNSAFE
|
|
605
|
+
*/
|
|
606
|
+
export interface SetTargetColumnTargetRequest {
|
|
607
|
+
boardRid: TargetBoardRid;
|
|
608
|
+
newColumnId: TargetBoardColumnId;
|
|
609
|
+
baseRevisionId: BaseRevisionId;
|
|
610
|
+
clientId?: string;
|
|
611
|
+
}
|
|
109
612
|
/**
|
|
110
613
|
* The unique identifier for a Foundry space
|
|
111
614
|
*
|
|
112
615
|
* Log Safety: SAFE
|
|
113
616
|
*/
|
|
114
617
|
export type SpaceRid = LooselyBrandedString<"SpaceRid">;
|
|
618
|
+
/**
|
|
619
|
+
* Log Safety: UNSAFE
|
|
620
|
+
*/
|
|
621
|
+
export interface Target {
|
|
622
|
+
rid: TargetRid;
|
|
623
|
+
name: TargetName;
|
|
624
|
+
description?: string;
|
|
625
|
+
targetBoard: TargetBoardRid;
|
|
626
|
+
column: TargetBoardColumnId;
|
|
627
|
+
targetType?: string;
|
|
628
|
+
entityRid?: ObjectPrimaryKey;
|
|
629
|
+
sidc?: string;
|
|
630
|
+
targetIdentifier?: TargetIdentifier;
|
|
631
|
+
location?: LocationSource;
|
|
632
|
+
highPriorityTargetListTargetSubtype?: HptlTargetSubtype;
|
|
633
|
+
aimpoints: Array<TargetAimpointV2>;
|
|
634
|
+
security: ArtifactSecurity;
|
|
635
|
+
detectionReasoning?: DetectionReasoning;
|
|
636
|
+
}
|
|
637
|
+
/**
|
|
638
|
+
* A global unique id of a Target Aimpoint.
|
|
639
|
+
*
|
|
640
|
+
* Log Safety: UNSAFE
|
|
641
|
+
*/
|
|
642
|
+
export type TargetAimpointId = LooselyBrandedString<"TargetAimpointId">;
|
|
643
|
+
/**
|
|
644
|
+
* An aimpoint of a Target if there are multiple locations associated with a Target.
|
|
645
|
+
*
|
|
646
|
+
* Log Safety: UNSAFE
|
|
647
|
+
*/
|
|
648
|
+
export interface TargetAimpointV2 {
|
|
649
|
+
id: TargetAimpointId;
|
|
650
|
+
name?: string;
|
|
651
|
+
location?: Location3dWithError;
|
|
652
|
+
geotimeTrack?: GeotimeTrackRid;
|
|
653
|
+
entityRid?: ObjectPrimaryKey;
|
|
654
|
+
jpdiId?: JpdiId;
|
|
655
|
+
}
|
|
115
656
|
/**
|
|
116
657
|
* Log Safety: UNSAFE
|
|
117
658
|
*/
|
|
@@ -139,6 +680,13 @@ export interface TargetBoardColumnConfiguration {
|
|
|
139
680
|
* Log Safety: SAFE
|
|
140
681
|
*/
|
|
141
682
|
export type TargetBoardColumnConfigurationId = LooselyBrandedString<"TargetBoardColumnConfigurationId">;
|
|
683
|
+
/**
|
|
684
|
+
* Equivalent to a collection column ID. The ID of a TargetCollectionColumn, default values are:
|
|
685
|
+
DRAFT (Identified target), PLAN_DEVELOPMENT (Prioritized target), PLANNED (In coordination), EXECUTION (In execution), CLOSED (Complete).
|
|
686
|
+
*
|
|
687
|
+
* Log Safety: SAFE
|
|
688
|
+
*/
|
|
689
|
+
export type TargetBoardColumnId = LooselyBrandedString<"TargetBoardColumnId">;
|
|
142
690
|
/**
|
|
143
691
|
* Configuration for a target board
|
|
144
692
|
*
|
|
@@ -182,6 +730,14 @@ export interface TargetColumnStatus {
|
|
|
182
730
|
export interface TargetDetails {
|
|
183
731
|
columnId?: string;
|
|
184
732
|
}
|
|
733
|
+
/**
|
|
734
|
+
* Target identifier object for different identifier types.
|
|
735
|
+
*
|
|
736
|
+
* Log Safety: UNSAFE
|
|
737
|
+
*/
|
|
738
|
+
export interface TargetIdentifier {
|
|
739
|
+
customTargetIdentifier?: CustomTargetIdentifier;
|
|
740
|
+
}
|
|
185
741
|
/**
|
|
186
742
|
* Types of target identifiers
|
|
187
743
|
*
|
|
@@ -198,6 +754,10 @@ export interface TargetLocation {
|
|
|
198
754
|
timestamp: string;
|
|
199
755
|
latestLocation: GeoLocation;
|
|
200
756
|
}
|
|
757
|
+
/**
|
|
758
|
+
* Log Safety: UNSAFE
|
|
759
|
+
*/
|
|
760
|
+
export type TargetName = LooselyBrandedString<"TargetName">;
|
|
201
761
|
/**
|
|
202
762
|
* The unique identifier for a Target
|
|
203
763
|
*
|