eve-esi-types 2.0.5-beta → 2.1.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.
@@ -0,0 +1,1756 @@
1
+ /*! body types */
2
+ /* post_characters_affiliation body type, name: characters */
3
+
4
+ /**
5
+ * characters array
6
+ *
7
+ * @minItems 1
8
+ * @maxItems 1000
9
+ */
10
+ type PostCharactersAffiliationCharacters = [
11
+ /**
12
+ * character integer
13
+ */
14
+ number,
15
+ ...number[]
16
+ ];
17
+
18
+ /* post_characters_character_id_assets_locations body type, name: item_ids */
19
+
20
+ /**
21
+ * item_ids array
22
+ *
23
+ * @minItems 1
24
+ * @maxItems 1000
25
+ */
26
+ type PostCharactersCharacterIdAssetsLocationsItemIds = [
27
+ /**
28
+ * item_id integer
29
+ */
30
+ number,
31
+ ...number[]
32
+ ];
33
+
34
+ /* post_characters_character_id_assets_names body type, name: item_ids */
35
+
36
+ /**
37
+ * item_ids array
38
+ *
39
+ * @minItems 1
40
+ * @maxItems 1000
41
+ */
42
+ type PostCharactersCharacterIdAssetsNamesItemIds = [
43
+ /**
44
+ * item_id integer
45
+ */
46
+ number,
47
+ ...number[]
48
+ ];
49
+
50
+ /* put_characters_character_id_calendar_event_id body type, name: response */
51
+
52
+ /**
53
+ * response string
54
+ */
55
+ type PutCharactersCharacterIdCalendarEventIdResponseResponse = "accepted" | "declined" | "tentative";
56
+
57
+ /**
58
+ * response object
59
+ */
60
+ interface PutCharactersCharacterIdCalendarEventIdResponse {
61
+ response: PutCharactersCharacterIdCalendarEventIdResponseResponse;
62
+ [k: string]: unknown | undefined;
63
+ }
64
+
65
+ /* post_characters_character_id_contacts body type, name: contact_ids */
66
+
67
+ /**
68
+ * contact_ids array
69
+ *
70
+ * @minItems 1
71
+ * @maxItems 100
72
+ */
73
+ type PostCharactersCharacterIdContactsContactIds = [
74
+ /**
75
+ * ID of the contact to edit
76
+ */
77
+ number,
78
+ ...number[]
79
+ ];
80
+
81
+ /* put_characters_character_id_contacts body type, name: contact_ids */
82
+
83
+ /**
84
+ * contact_ids array
85
+ *
86
+ * @minItems 1
87
+ * @maxItems 100
88
+ */
89
+ type PutCharactersCharacterIdContactsContactIds = [
90
+ /**
91
+ * ID of the contact to edit
92
+ */
93
+ number,
94
+ ...number[]
95
+ ];
96
+
97
+ /* post_characters_character_id_cspa body type, name: characters */
98
+
99
+ /**
100
+ * characters array
101
+ *
102
+ * @minItems 1
103
+ * @maxItems 100
104
+ */
105
+ type PostCharactersCharacterIdCspaCharacters = [
106
+ /**
107
+ * character integer
108
+ */
109
+ number,
110
+ ...number[]
111
+ ];
112
+
113
+ /* post_characters_character_id_fittings body type, name: fitting */
114
+
115
+ /**
116
+ * items array
117
+ *
118
+ * @minItems 1
119
+ * @maxItems 512
120
+ */
121
+ type PostCharactersCharacterIdFittingsItems = [
122
+ PostCharactersCharacterIdFittingsItem,
123
+ ...PostCharactersCharacterIdFittingsItem[]
124
+ ];
125
+ /**
126
+ * Fitting location for the item. Entries placed in 'Invalid' will be discarded. If this leaves the fitting with nothing, it will cause an error.
127
+ */
128
+ type PostCharactersCharacterIdFittingsFlag =
129
+ | "Cargo"
130
+ | "DroneBay"
131
+ | "FighterBay"
132
+ | "HiSlot0"
133
+ | "HiSlot1"
134
+ | "HiSlot2"
135
+ | "HiSlot3"
136
+ | "HiSlot4"
137
+ | "HiSlot5"
138
+ | "HiSlot6"
139
+ | "HiSlot7"
140
+ | "Invalid"
141
+ | "LoSlot0"
142
+ | "LoSlot1"
143
+ | "LoSlot2"
144
+ | "LoSlot3"
145
+ | "LoSlot4"
146
+ | "LoSlot5"
147
+ | "LoSlot6"
148
+ | "LoSlot7"
149
+ | "MedSlot0"
150
+ | "MedSlot1"
151
+ | "MedSlot2"
152
+ | "MedSlot3"
153
+ | "MedSlot4"
154
+ | "MedSlot5"
155
+ | "MedSlot6"
156
+ | "MedSlot7"
157
+ | "RigSlot0"
158
+ | "RigSlot1"
159
+ | "RigSlot2"
160
+ | "ServiceSlot0"
161
+ | "ServiceSlot1"
162
+ | "ServiceSlot2"
163
+ | "ServiceSlot3"
164
+ | "ServiceSlot4"
165
+ | "ServiceSlot5"
166
+ | "ServiceSlot6"
167
+ | "ServiceSlot7"
168
+ | "SubSystemSlot0"
169
+ | "SubSystemSlot1"
170
+ | "SubSystemSlot2"
171
+ | "SubSystemSlot3";
172
+
173
+ /**
174
+ * fitting object
175
+ */
176
+ interface PostCharactersCharacterIdFittingsFitting {
177
+ /**
178
+ * description string
179
+ */
180
+ description: string;
181
+ items: PostCharactersCharacterIdFittingsItems;
182
+ /**
183
+ * name string
184
+ */
185
+ name: string;
186
+ ship_type_id: number;
187
+ [k: string]: unknown | undefined;
188
+ }
189
+ /**
190
+ * item object
191
+ */
192
+ interface PostCharactersCharacterIdFittingsItem {
193
+ flag: PostCharactersCharacterIdFittingsFlag;
194
+ /**
195
+ * quantity integer
196
+ */
197
+ quantity: number;
198
+ type_id: number;
199
+ [k: string]: unknown | undefined;
200
+ }
201
+
202
+ /* post_characters_character_id_mail body type, name: mail */
203
+
204
+ /**
205
+ * recipients array
206
+ *
207
+ * @minItems 1
208
+ * @maxItems 50
209
+ */
210
+ type PostCharactersCharacterIdMailRecipients = [
211
+ PostCharactersCharacterIdMailRecipient,
212
+ ...PostCharactersCharacterIdMailRecipient[]
213
+ ];
214
+ /**
215
+ * recipient_type string
216
+ */
217
+ type PostCharactersCharacterIdMailRecipientType = "alliance" | "character" | "corporation" | "mailing_list";
218
+
219
+ /**
220
+ * mail object
221
+ */
222
+ interface PostCharactersCharacterIdMailMail {
223
+ /**
224
+ * approved_cost integer
225
+ */
226
+ approved_cost?: number;
227
+ /**
228
+ * body string
229
+ */
230
+ body: string;
231
+ recipients: PostCharactersCharacterIdMailRecipients;
232
+ /**
233
+ * subject string
234
+ */
235
+ subject: string;
236
+ [k: string]: unknown | undefined;
237
+ }
238
+ /**
239
+ * recipient object
240
+ */
241
+ interface PostCharactersCharacterIdMailRecipient {
242
+ /**
243
+ * recipient_id integer
244
+ */
245
+ recipient_id: number;
246
+ recipient_type: PostCharactersCharacterIdMailRecipientType;
247
+ [k: string]: unknown | undefined;
248
+ }
249
+
250
+ /* post_characters_character_id_mail_labels body type, name: label */
251
+
252
+ /**
253
+ * Hexadecimal string representing label color, in RGB format
254
+ */
255
+ type PostCharactersCharacterIdMailLabelsColor =
256
+ | "#0000fe"
257
+ | "#006634"
258
+ | "#0099ff"
259
+ | "#00ff33"
260
+ | "#01ffff"
261
+ | "#349800"
262
+ | "#660066"
263
+ | "#666666"
264
+ | "#999999"
265
+ | "#99ffff"
266
+ | "#9a0000"
267
+ | "#ccff9a"
268
+ | "#e6e6e6"
269
+ | "#fe0000"
270
+ | "#ff6600"
271
+ | "#ffff01"
272
+ | "#ffffcd"
273
+ | "#ffffff";
274
+
275
+ /**
276
+ * label object
277
+ */
278
+ interface PostCharactersCharacterIdMailLabelsLabel {
279
+ color?: PostCharactersCharacterIdMailLabelsColor;
280
+ /**
281
+ * name string
282
+ */
283
+ name: string;
284
+ [k: string]: unknown | undefined;
285
+ }
286
+
287
+ /* put_characters_character_id_mail_mail_id body type, name: contents */
288
+
289
+
290
+ /**
291
+ * contents object
292
+ */
293
+ interface PutCharactersCharacterIdMailMailIdContents {
294
+ /**
295
+ * Labels to assign to the mail. Pre-existing labels are unassigned.
296
+ *
297
+ * @maxItems 25
298
+ */
299
+ labels?: number[];
300
+ /**
301
+ * Whether the mail is flagged as read
302
+ */
303
+ read?: boolean;
304
+ [k: string]: unknown | undefined;
305
+ }
306
+
307
+ /* post_corporations_corporation_id_assets_locations body type, name: item_ids */
308
+
309
+ /**
310
+ * item_ids array
311
+ *
312
+ * @minItems 1
313
+ * @maxItems 1000
314
+ */
315
+ type PostCorporationsCorporationIdAssetsLocationsItemIds = [
316
+ /**
317
+ * item_id integer
318
+ */
319
+ number,
320
+ ...number[]
321
+ ];
322
+
323
+ /* post_corporations_corporation_id_assets_names body type, name: item_ids */
324
+
325
+ /**
326
+ * item_ids array
327
+ *
328
+ * @minItems 1
329
+ * @maxItems 1000
330
+ */
331
+ type PostCorporationsCorporationIdAssetsNamesItemIds = [
332
+ /**
333
+ * item_id integer
334
+ */
335
+ number,
336
+ ...number[]
337
+ ];
338
+
339
+ /* put_fleets_fleet_id body type, name: new_settings */
340
+
341
+
342
+ /**
343
+ * new_settings object
344
+ */
345
+ interface PutFleetsFleetIdNewSettings {
346
+ /**
347
+ * Should free-move be enabled in the fleet
348
+ */
349
+ is_free_move?: boolean;
350
+ /**
351
+ * New fleet MOTD in CCP flavoured HTML
352
+ */
353
+ motd?: string;
354
+ [k: string]: unknown | undefined;
355
+ }
356
+
357
+ /* post_fleets_fleet_id_members body type, name: invitation */
358
+
359
+ /**
360
+ * If a character is invited with the `fleet_commander` role, neither `wing_id` or `squad_id` should be specified. If a character is invited with the `wing_commander` role, only `wing_id` should be specified. If a character is invited with the `squad_commander` role, both `wing_id` and `squad_id` should be specified. If a character is invited with the `squad_member` role, `wing_id` and `squad_id` should either both be specified or not specified at all. If they aren’t specified, the invited character will join any squad with available positions.
361
+ */
362
+ type PostFleetsFleetIdMembersRole = "fleet_commander" | "wing_commander" | "squad_commander" | "squad_member";
363
+
364
+ /**
365
+ * invitation object
366
+ */
367
+ interface PostFleetsFleetIdMembersInvitation {
368
+ /**
369
+ * The character you want to invite
370
+ */
371
+ character_id: number;
372
+ role: PostFleetsFleetIdMembersRole;
373
+ /**
374
+ * squad_id integer
375
+ */
376
+ squad_id?: number;
377
+ /**
378
+ * wing_id integer
379
+ */
380
+ wing_id?: number;
381
+ [k: string]: unknown | undefined;
382
+ }
383
+
384
+ /* put_fleets_fleet_id_members_member_id body type, name: movement */
385
+
386
+ /**
387
+ * If a character is moved to the `fleet_commander` role, neither `wing_id` or `squad_id` should be specified. If a character is moved to the `wing_commander` role, only `wing_id` should be specified. If a character is moved to the `squad_commander` role, both `wing_id` and `squad_id` should be specified. If a character is moved to the `squad_member` role, both `wing_id` and `squad_id` should be specified.
388
+ */
389
+ type PutFleetsFleetIdMembersMemberIdRole =
390
+ | "fleet_commander"
391
+ | "wing_commander"
392
+ | "squad_commander"
393
+ | "squad_member";
394
+
395
+ /**
396
+ * movement object
397
+ */
398
+ interface PutFleetsFleetIdMembersMemberIdMovement {
399
+ role: PutFleetsFleetIdMembersMemberIdRole;
400
+ /**
401
+ * squad_id integer
402
+ */
403
+ squad_id?: number;
404
+ /**
405
+ * wing_id integer
406
+ */
407
+ wing_id?: number;
408
+ [k: string]: unknown | undefined;
409
+ }
410
+
411
+ /* put_fleets_fleet_id_squads_squad_id body type, name: naming */
412
+
413
+
414
+ /**
415
+ * naming object
416
+ */
417
+ interface PutFleetsFleetIdSquadsSquadIdNaming {
418
+ /**
419
+ * name string
420
+ */
421
+ name: string;
422
+ [k: string]: unknown | undefined;
423
+ }
424
+
425
+ /* put_fleets_fleet_id_wings_wing_id body type, name: naming */
426
+
427
+
428
+ /**
429
+ * naming object
430
+ */
431
+ interface PutFleetsFleetIdWingsWingIdNaming {
432
+ /**
433
+ * name string
434
+ */
435
+ name: string;
436
+ [k: string]: unknown | undefined;
437
+ }
438
+
439
+ /* post_ui_openwindow_newmail body type, name: new_mail */
440
+
441
+ /**
442
+ * recipients array
443
+ *
444
+ * @minItems 1
445
+ * @maxItems 50
446
+ */
447
+ type PostUiOpenwindowNewmailRecipients = [
448
+ /**
449
+ * recipient integer
450
+ */
451
+ number,
452
+ ...number[]
453
+ ];
454
+
455
+ /**
456
+ * new_mail object
457
+ */
458
+ interface PostUiOpenwindowNewmailNewMail {
459
+ /**
460
+ * body string
461
+ */
462
+ body: string;
463
+ recipients: PostUiOpenwindowNewmailRecipients;
464
+ /**
465
+ * subject string
466
+ */
467
+ subject: string;
468
+ /**
469
+ * to_corp_or_alliance_id integer
470
+ */
471
+ to_corp_or_alliance_id?: number;
472
+ /**
473
+ * Corporations, alliances and mailing lists are all types of mailing groups. You may only send to one mailing group, at a time, so you may fill out either this field or the to_corp_or_alliance_ids field
474
+ */
475
+ to_mailing_list_id?: number;
476
+ [k: string]: unknown | undefined;
477
+ }
478
+
479
+ /* post_universe_ids body type, name: names */
480
+
481
+ /**
482
+ * names array
483
+ *
484
+ * @minItems 1
485
+ * @maxItems 500
486
+ */
487
+ type PostUniverseIdsNames = [string /**
488
+ * name string
489
+ */
490
+ , ...string[]];
491
+
492
+ /* post_universe_names body type, name: ids */
493
+
494
+ /**
495
+ * ids array
496
+ *
497
+ * @minItems 1
498
+ * @maxItems 1000
499
+ */
500
+ type PostUniverseNamesIds = [number /**
501
+ * id integer
502
+ */
503
+ , ...number[]];
504
+
505
+
506
+ /*! query types */
507
+ /* get_characters_character_id_calendar, from_event query type */
508
+
509
+ /**
510
+ * The event ID to retrieve events from
511
+ */
512
+ type GetCharactersCharacterIdCalendarFromEvent = number;
513
+
514
+ /* delete_characters_character_id_contacts, contact_ids query type */
515
+
516
+ /**
517
+ * A list of contacts to delete
518
+ *
519
+ * @minItems 1
520
+ * @maxItems 20
521
+ */
522
+ type DeleteCharactersCharacterIdContactsContactIds =
523
+ | [number]
524
+ | [number, number]
525
+ | [number, number, number]
526
+ | [number, number, number, number]
527
+ | [number, number, number, number, number]
528
+ | [number, number, number, number, number, number]
529
+ | [number, number, number, number, number, number, number]
530
+ | [number, number, number, number, number, number, number, number]
531
+ | [number, number, number, number, number, number, number, number, number]
532
+ | [number, number, number, number, number, number, number, number, number, number]
533
+ | [number, number, number, number, number, number, number, number, number, number, number]
534
+ | [number, number, number, number, number, number, number, number, number, number, number, number]
535
+ | [number, number, number, number, number, number, number, number, number, number, number, number, number]
536
+ | [number, number, number, number, number, number, number, number, number, number, number, number, number, number]
537
+ | [
538
+ number,
539
+ number,
540
+ number,
541
+ number,
542
+ number,
543
+ number,
544
+ number,
545
+ number,
546
+ number,
547
+ number,
548
+ number,
549
+ number,
550
+ number,
551
+ number,
552
+ number
553
+ ]
554
+ | [
555
+ number,
556
+ number,
557
+ number,
558
+ number,
559
+ number,
560
+ number,
561
+ number,
562
+ number,
563
+ number,
564
+ number,
565
+ number,
566
+ number,
567
+ number,
568
+ number,
569
+ number,
570
+ number
571
+ ]
572
+ | [
573
+ number,
574
+ number,
575
+ number,
576
+ number,
577
+ number,
578
+ number,
579
+ number,
580
+ number,
581
+ number,
582
+ number,
583
+ number,
584
+ number,
585
+ number,
586
+ number,
587
+ number,
588
+ number,
589
+ number
590
+ ]
591
+ | [
592
+ number,
593
+ number,
594
+ number,
595
+ number,
596
+ number,
597
+ number,
598
+ number,
599
+ number,
600
+ number,
601
+ number,
602
+ number,
603
+ number,
604
+ number,
605
+ number,
606
+ number,
607
+ number,
608
+ number,
609
+ number
610
+ ]
611
+ | [
612
+ number,
613
+ number,
614
+ number,
615
+ number,
616
+ number,
617
+ number,
618
+ number,
619
+ number,
620
+ number,
621
+ number,
622
+ number,
623
+ number,
624
+ number,
625
+ number,
626
+ number,
627
+ number,
628
+ number,
629
+ number,
630
+ number
631
+ ]
632
+ | [
633
+ number,
634
+ number,
635
+ number,
636
+ number,
637
+ number,
638
+ number,
639
+ number,
640
+ number,
641
+ number,
642
+ number,
643
+ number,
644
+ number,
645
+ number,
646
+ number,
647
+ number,
648
+ number,
649
+ number,
650
+ number,
651
+ number,
652
+ number
653
+ ];
654
+
655
+ /* post_characters_character_id_contacts, label_ids query type */
656
+
657
+ /**
658
+ * Add custom labels to the new contact
659
+ *
660
+ * @maxItems 63
661
+ */
662
+ type PostCharactersCharacterIdContactsLabelIds = number[];
663
+
664
+ /* post_characters_character_id_contacts, standing query type */
665
+
666
+ /**
667
+ * Standing for the contact
668
+ */
669
+ type PostCharactersCharacterIdContactsStanding = number;
670
+
671
+ /* post_characters_character_id_contacts, watched query type */
672
+
673
+ /**
674
+ * Whether the contact should be watched, note this is only effective on characters
675
+ */
676
+ type PostCharactersCharacterIdContactsWatched = boolean;
677
+
678
+ /* put_characters_character_id_contacts, label_ids query type */
679
+
680
+ /**
681
+ * Add custom labels to the contact
682
+ *
683
+ * @maxItems 63
684
+ */
685
+ type PutCharactersCharacterIdContactsLabelIds = number[];
686
+
687
+ /* put_characters_character_id_contacts, standing query type */
688
+
689
+ /**
690
+ * Standing for the contact
691
+ */
692
+ type PutCharactersCharacterIdContactsStanding = number;
693
+
694
+ /* put_characters_character_id_contacts, watched query type */
695
+
696
+ /**
697
+ * Whether the contact should be watched, note this is only effective on characters
698
+ */
699
+ type PutCharactersCharacterIdContactsWatched = boolean;
700
+
701
+ /* get_characters_character_id_industry_jobs, include_completed query type */
702
+
703
+ /**
704
+ * Whether to retrieve completed character industry jobs. Only includes jobs from the past 90 days
705
+ */
706
+ type GetCharactersCharacterIdIndustryJobsIncludeCompleted = boolean;
707
+
708
+ /* get_characters_character_id_mail, labels query type */
709
+
710
+ /**
711
+ * Fetch only mails that match one or more of the given labels
712
+ *
713
+ * @minItems 1
714
+ * @maxItems 25
715
+ */
716
+ type GetCharactersCharacterIdMailLabels = [number, ...number[]];
717
+
718
+ /* get_characters_character_id_mail, last_mail_id query type */
719
+
720
+ /**
721
+ * List only mail with an ID lower than the given ID, if present
722
+ */
723
+ type GetCharactersCharacterIdMailLastMailId = number;
724
+
725
+ /* get_characters_character_id_search, categories query type */
726
+
727
+ /**
728
+ * Type of entities to search for
729
+ *
730
+ * @minItems 1
731
+ * @maxItems 11
732
+ */
733
+ type GetCharactersCharacterIdSearchCategories =
734
+ | [
735
+ | "agent"
736
+ | "alliance"
737
+ | "character"
738
+ | "constellation"
739
+ | "corporation"
740
+ | "faction"
741
+ | "inventory_type"
742
+ | "region"
743
+ | "solar_system"
744
+ | "station"
745
+ | "structure"
746
+ ]
747
+ | [
748
+ (
749
+ | "agent"
750
+ | "alliance"
751
+ | "character"
752
+ | "constellation"
753
+ | "corporation"
754
+ | "faction"
755
+ | "inventory_type"
756
+ | "region"
757
+ | "solar_system"
758
+ | "station"
759
+ | "structure"
760
+ ),
761
+ (
762
+ | "agent"
763
+ | "alliance"
764
+ | "character"
765
+ | "constellation"
766
+ | "corporation"
767
+ | "faction"
768
+ | "inventory_type"
769
+ | "region"
770
+ | "solar_system"
771
+ | "station"
772
+ | "structure"
773
+ )
774
+ ]
775
+ | [
776
+ (
777
+ | "agent"
778
+ | "alliance"
779
+ | "character"
780
+ | "constellation"
781
+ | "corporation"
782
+ | "faction"
783
+ | "inventory_type"
784
+ | "region"
785
+ | "solar_system"
786
+ | "station"
787
+ | "structure"
788
+ ),
789
+ (
790
+ | "agent"
791
+ | "alliance"
792
+ | "character"
793
+ | "constellation"
794
+ | "corporation"
795
+ | "faction"
796
+ | "inventory_type"
797
+ | "region"
798
+ | "solar_system"
799
+ | "station"
800
+ | "structure"
801
+ ),
802
+ (
803
+ | "agent"
804
+ | "alliance"
805
+ | "character"
806
+ | "constellation"
807
+ | "corporation"
808
+ | "faction"
809
+ | "inventory_type"
810
+ | "region"
811
+ | "solar_system"
812
+ | "station"
813
+ | "structure"
814
+ )
815
+ ]
816
+ | [
817
+ (
818
+ | "agent"
819
+ | "alliance"
820
+ | "character"
821
+ | "constellation"
822
+ | "corporation"
823
+ | "faction"
824
+ | "inventory_type"
825
+ | "region"
826
+ | "solar_system"
827
+ | "station"
828
+ | "structure"
829
+ ),
830
+ (
831
+ | "agent"
832
+ | "alliance"
833
+ | "character"
834
+ | "constellation"
835
+ | "corporation"
836
+ | "faction"
837
+ | "inventory_type"
838
+ | "region"
839
+ | "solar_system"
840
+ | "station"
841
+ | "structure"
842
+ ),
843
+ (
844
+ | "agent"
845
+ | "alliance"
846
+ | "character"
847
+ | "constellation"
848
+ | "corporation"
849
+ | "faction"
850
+ | "inventory_type"
851
+ | "region"
852
+ | "solar_system"
853
+ | "station"
854
+ | "structure"
855
+ ),
856
+ (
857
+ | "agent"
858
+ | "alliance"
859
+ | "character"
860
+ | "constellation"
861
+ | "corporation"
862
+ | "faction"
863
+ | "inventory_type"
864
+ | "region"
865
+ | "solar_system"
866
+ | "station"
867
+ | "structure"
868
+ )
869
+ ]
870
+ | [
871
+ (
872
+ | "agent"
873
+ | "alliance"
874
+ | "character"
875
+ | "constellation"
876
+ | "corporation"
877
+ | "faction"
878
+ | "inventory_type"
879
+ | "region"
880
+ | "solar_system"
881
+ | "station"
882
+ | "structure"
883
+ ),
884
+ (
885
+ | "agent"
886
+ | "alliance"
887
+ | "character"
888
+ | "constellation"
889
+ | "corporation"
890
+ | "faction"
891
+ | "inventory_type"
892
+ | "region"
893
+ | "solar_system"
894
+ | "station"
895
+ | "structure"
896
+ ),
897
+ (
898
+ | "agent"
899
+ | "alliance"
900
+ | "character"
901
+ | "constellation"
902
+ | "corporation"
903
+ | "faction"
904
+ | "inventory_type"
905
+ | "region"
906
+ | "solar_system"
907
+ | "station"
908
+ | "structure"
909
+ ),
910
+ (
911
+ | "agent"
912
+ | "alliance"
913
+ | "character"
914
+ | "constellation"
915
+ | "corporation"
916
+ | "faction"
917
+ | "inventory_type"
918
+ | "region"
919
+ | "solar_system"
920
+ | "station"
921
+ | "structure"
922
+ ),
923
+ (
924
+ | "agent"
925
+ | "alliance"
926
+ | "character"
927
+ | "constellation"
928
+ | "corporation"
929
+ | "faction"
930
+ | "inventory_type"
931
+ | "region"
932
+ | "solar_system"
933
+ | "station"
934
+ | "structure"
935
+ )
936
+ ]
937
+ | [
938
+ (
939
+ | "agent"
940
+ | "alliance"
941
+ | "character"
942
+ | "constellation"
943
+ | "corporation"
944
+ | "faction"
945
+ | "inventory_type"
946
+ | "region"
947
+ | "solar_system"
948
+ | "station"
949
+ | "structure"
950
+ ),
951
+ (
952
+ | "agent"
953
+ | "alliance"
954
+ | "character"
955
+ | "constellation"
956
+ | "corporation"
957
+ | "faction"
958
+ | "inventory_type"
959
+ | "region"
960
+ | "solar_system"
961
+ | "station"
962
+ | "structure"
963
+ ),
964
+ (
965
+ | "agent"
966
+ | "alliance"
967
+ | "character"
968
+ | "constellation"
969
+ | "corporation"
970
+ | "faction"
971
+ | "inventory_type"
972
+ | "region"
973
+ | "solar_system"
974
+ | "station"
975
+ | "structure"
976
+ ),
977
+ (
978
+ | "agent"
979
+ | "alliance"
980
+ | "character"
981
+ | "constellation"
982
+ | "corporation"
983
+ | "faction"
984
+ | "inventory_type"
985
+ | "region"
986
+ | "solar_system"
987
+ | "station"
988
+ | "structure"
989
+ ),
990
+ (
991
+ | "agent"
992
+ | "alliance"
993
+ | "character"
994
+ | "constellation"
995
+ | "corporation"
996
+ | "faction"
997
+ | "inventory_type"
998
+ | "region"
999
+ | "solar_system"
1000
+ | "station"
1001
+ | "structure"
1002
+ ),
1003
+ (
1004
+ | "agent"
1005
+ | "alliance"
1006
+ | "character"
1007
+ | "constellation"
1008
+ | "corporation"
1009
+ | "faction"
1010
+ | "inventory_type"
1011
+ | "region"
1012
+ | "solar_system"
1013
+ | "station"
1014
+ | "structure"
1015
+ )
1016
+ ]
1017
+ | [
1018
+ (
1019
+ | "agent"
1020
+ | "alliance"
1021
+ | "character"
1022
+ | "constellation"
1023
+ | "corporation"
1024
+ | "faction"
1025
+ | "inventory_type"
1026
+ | "region"
1027
+ | "solar_system"
1028
+ | "station"
1029
+ | "structure"
1030
+ ),
1031
+ (
1032
+ | "agent"
1033
+ | "alliance"
1034
+ | "character"
1035
+ | "constellation"
1036
+ | "corporation"
1037
+ | "faction"
1038
+ | "inventory_type"
1039
+ | "region"
1040
+ | "solar_system"
1041
+ | "station"
1042
+ | "structure"
1043
+ ),
1044
+ (
1045
+ | "agent"
1046
+ | "alliance"
1047
+ | "character"
1048
+ | "constellation"
1049
+ | "corporation"
1050
+ | "faction"
1051
+ | "inventory_type"
1052
+ | "region"
1053
+ | "solar_system"
1054
+ | "station"
1055
+ | "structure"
1056
+ ),
1057
+ (
1058
+ | "agent"
1059
+ | "alliance"
1060
+ | "character"
1061
+ | "constellation"
1062
+ | "corporation"
1063
+ | "faction"
1064
+ | "inventory_type"
1065
+ | "region"
1066
+ | "solar_system"
1067
+ | "station"
1068
+ | "structure"
1069
+ ),
1070
+ (
1071
+ | "agent"
1072
+ | "alliance"
1073
+ | "character"
1074
+ | "constellation"
1075
+ | "corporation"
1076
+ | "faction"
1077
+ | "inventory_type"
1078
+ | "region"
1079
+ | "solar_system"
1080
+ | "station"
1081
+ | "structure"
1082
+ ),
1083
+ (
1084
+ | "agent"
1085
+ | "alliance"
1086
+ | "character"
1087
+ | "constellation"
1088
+ | "corporation"
1089
+ | "faction"
1090
+ | "inventory_type"
1091
+ | "region"
1092
+ | "solar_system"
1093
+ | "station"
1094
+ | "structure"
1095
+ ),
1096
+ (
1097
+ | "agent"
1098
+ | "alliance"
1099
+ | "character"
1100
+ | "constellation"
1101
+ | "corporation"
1102
+ | "faction"
1103
+ | "inventory_type"
1104
+ | "region"
1105
+ | "solar_system"
1106
+ | "station"
1107
+ | "structure"
1108
+ )
1109
+ ]
1110
+ | [
1111
+ (
1112
+ | "agent"
1113
+ | "alliance"
1114
+ | "character"
1115
+ | "constellation"
1116
+ | "corporation"
1117
+ | "faction"
1118
+ | "inventory_type"
1119
+ | "region"
1120
+ | "solar_system"
1121
+ | "station"
1122
+ | "structure"
1123
+ ),
1124
+ (
1125
+ | "agent"
1126
+ | "alliance"
1127
+ | "character"
1128
+ | "constellation"
1129
+ | "corporation"
1130
+ | "faction"
1131
+ | "inventory_type"
1132
+ | "region"
1133
+ | "solar_system"
1134
+ | "station"
1135
+ | "structure"
1136
+ ),
1137
+ (
1138
+ | "agent"
1139
+ | "alliance"
1140
+ | "character"
1141
+ | "constellation"
1142
+ | "corporation"
1143
+ | "faction"
1144
+ | "inventory_type"
1145
+ | "region"
1146
+ | "solar_system"
1147
+ | "station"
1148
+ | "structure"
1149
+ ),
1150
+ (
1151
+ | "agent"
1152
+ | "alliance"
1153
+ | "character"
1154
+ | "constellation"
1155
+ | "corporation"
1156
+ | "faction"
1157
+ | "inventory_type"
1158
+ | "region"
1159
+ | "solar_system"
1160
+ | "station"
1161
+ | "structure"
1162
+ ),
1163
+ (
1164
+ | "agent"
1165
+ | "alliance"
1166
+ | "character"
1167
+ | "constellation"
1168
+ | "corporation"
1169
+ | "faction"
1170
+ | "inventory_type"
1171
+ | "region"
1172
+ | "solar_system"
1173
+ | "station"
1174
+ | "structure"
1175
+ ),
1176
+ (
1177
+ | "agent"
1178
+ | "alliance"
1179
+ | "character"
1180
+ | "constellation"
1181
+ | "corporation"
1182
+ | "faction"
1183
+ | "inventory_type"
1184
+ | "region"
1185
+ | "solar_system"
1186
+ | "station"
1187
+ | "structure"
1188
+ ),
1189
+ (
1190
+ | "agent"
1191
+ | "alliance"
1192
+ | "character"
1193
+ | "constellation"
1194
+ | "corporation"
1195
+ | "faction"
1196
+ | "inventory_type"
1197
+ | "region"
1198
+ | "solar_system"
1199
+ | "station"
1200
+ | "structure"
1201
+ ),
1202
+ (
1203
+ | "agent"
1204
+ | "alliance"
1205
+ | "character"
1206
+ | "constellation"
1207
+ | "corporation"
1208
+ | "faction"
1209
+ | "inventory_type"
1210
+ | "region"
1211
+ | "solar_system"
1212
+ | "station"
1213
+ | "structure"
1214
+ )
1215
+ ]
1216
+ | [
1217
+ (
1218
+ | "agent"
1219
+ | "alliance"
1220
+ | "character"
1221
+ | "constellation"
1222
+ | "corporation"
1223
+ | "faction"
1224
+ | "inventory_type"
1225
+ | "region"
1226
+ | "solar_system"
1227
+ | "station"
1228
+ | "structure"
1229
+ ),
1230
+ (
1231
+ | "agent"
1232
+ | "alliance"
1233
+ | "character"
1234
+ | "constellation"
1235
+ | "corporation"
1236
+ | "faction"
1237
+ | "inventory_type"
1238
+ | "region"
1239
+ | "solar_system"
1240
+ | "station"
1241
+ | "structure"
1242
+ ),
1243
+ (
1244
+ | "agent"
1245
+ | "alliance"
1246
+ | "character"
1247
+ | "constellation"
1248
+ | "corporation"
1249
+ | "faction"
1250
+ | "inventory_type"
1251
+ | "region"
1252
+ | "solar_system"
1253
+ | "station"
1254
+ | "structure"
1255
+ ),
1256
+ (
1257
+ | "agent"
1258
+ | "alliance"
1259
+ | "character"
1260
+ | "constellation"
1261
+ | "corporation"
1262
+ | "faction"
1263
+ | "inventory_type"
1264
+ | "region"
1265
+ | "solar_system"
1266
+ | "station"
1267
+ | "structure"
1268
+ ),
1269
+ (
1270
+ | "agent"
1271
+ | "alliance"
1272
+ | "character"
1273
+ | "constellation"
1274
+ | "corporation"
1275
+ | "faction"
1276
+ | "inventory_type"
1277
+ | "region"
1278
+ | "solar_system"
1279
+ | "station"
1280
+ | "structure"
1281
+ ),
1282
+ (
1283
+ | "agent"
1284
+ | "alliance"
1285
+ | "character"
1286
+ | "constellation"
1287
+ | "corporation"
1288
+ | "faction"
1289
+ | "inventory_type"
1290
+ | "region"
1291
+ | "solar_system"
1292
+ | "station"
1293
+ | "structure"
1294
+ ),
1295
+ (
1296
+ | "agent"
1297
+ | "alliance"
1298
+ | "character"
1299
+ | "constellation"
1300
+ | "corporation"
1301
+ | "faction"
1302
+ | "inventory_type"
1303
+ | "region"
1304
+ | "solar_system"
1305
+ | "station"
1306
+ | "structure"
1307
+ ),
1308
+ (
1309
+ | "agent"
1310
+ | "alliance"
1311
+ | "character"
1312
+ | "constellation"
1313
+ | "corporation"
1314
+ | "faction"
1315
+ | "inventory_type"
1316
+ | "region"
1317
+ | "solar_system"
1318
+ | "station"
1319
+ | "structure"
1320
+ ),
1321
+ (
1322
+ | "agent"
1323
+ | "alliance"
1324
+ | "character"
1325
+ | "constellation"
1326
+ | "corporation"
1327
+ | "faction"
1328
+ | "inventory_type"
1329
+ | "region"
1330
+ | "solar_system"
1331
+ | "station"
1332
+ | "structure"
1333
+ )
1334
+ ]
1335
+ | [
1336
+ (
1337
+ | "agent"
1338
+ | "alliance"
1339
+ | "character"
1340
+ | "constellation"
1341
+ | "corporation"
1342
+ | "faction"
1343
+ | "inventory_type"
1344
+ | "region"
1345
+ | "solar_system"
1346
+ | "station"
1347
+ | "structure"
1348
+ ),
1349
+ (
1350
+ | "agent"
1351
+ | "alliance"
1352
+ | "character"
1353
+ | "constellation"
1354
+ | "corporation"
1355
+ | "faction"
1356
+ | "inventory_type"
1357
+ | "region"
1358
+ | "solar_system"
1359
+ | "station"
1360
+ | "structure"
1361
+ ),
1362
+ (
1363
+ | "agent"
1364
+ | "alliance"
1365
+ | "character"
1366
+ | "constellation"
1367
+ | "corporation"
1368
+ | "faction"
1369
+ | "inventory_type"
1370
+ | "region"
1371
+ | "solar_system"
1372
+ | "station"
1373
+ | "structure"
1374
+ ),
1375
+ (
1376
+ | "agent"
1377
+ | "alliance"
1378
+ | "character"
1379
+ | "constellation"
1380
+ | "corporation"
1381
+ | "faction"
1382
+ | "inventory_type"
1383
+ | "region"
1384
+ | "solar_system"
1385
+ | "station"
1386
+ | "structure"
1387
+ ),
1388
+ (
1389
+ | "agent"
1390
+ | "alliance"
1391
+ | "character"
1392
+ | "constellation"
1393
+ | "corporation"
1394
+ | "faction"
1395
+ | "inventory_type"
1396
+ | "region"
1397
+ | "solar_system"
1398
+ | "station"
1399
+ | "structure"
1400
+ ),
1401
+ (
1402
+ | "agent"
1403
+ | "alliance"
1404
+ | "character"
1405
+ | "constellation"
1406
+ | "corporation"
1407
+ | "faction"
1408
+ | "inventory_type"
1409
+ | "region"
1410
+ | "solar_system"
1411
+ | "station"
1412
+ | "structure"
1413
+ ),
1414
+ (
1415
+ | "agent"
1416
+ | "alliance"
1417
+ | "character"
1418
+ | "constellation"
1419
+ | "corporation"
1420
+ | "faction"
1421
+ | "inventory_type"
1422
+ | "region"
1423
+ | "solar_system"
1424
+ | "station"
1425
+ | "structure"
1426
+ ),
1427
+ (
1428
+ | "agent"
1429
+ | "alliance"
1430
+ | "character"
1431
+ | "constellation"
1432
+ | "corporation"
1433
+ | "faction"
1434
+ | "inventory_type"
1435
+ | "region"
1436
+ | "solar_system"
1437
+ | "station"
1438
+ | "structure"
1439
+ ),
1440
+ (
1441
+ | "agent"
1442
+ | "alliance"
1443
+ | "character"
1444
+ | "constellation"
1445
+ | "corporation"
1446
+ | "faction"
1447
+ | "inventory_type"
1448
+ | "region"
1449
+ | "solar_system"
1450
+ | "station"
1451
+ | "structure"
1452
+ ),
1453
+ (
1454
+ | "agent"
1455
+ | "alliance"
1456
+ | "character"
1457
+ | "constellation"
1458
+ | "corporation"
1459
+ | "faction"
1460
+ | "inventory_type"
1461
+ | "region"
1462
+ | "solar_system"
1463
+ | "station"
1464
+ | "structure"
1465
+ )
1466
+ ]
1467
+ | [
1468
+ (
1469
+ | "agent"
1470
+ | "alliance"
1471
+ | "character"
1472
+ | "constellation"
1473
+ | "corporation"
1474
+ | "faction"
1475
+ | "inventory_type"
1476
+ | "region"
1477
+ | "solar_system"
1478
+ | "station"
1479
+ | "structure"
1480
+ ),
1481
+ (
1482
+ | "agent"
1483
+ | "alliance"
1484
+ | "character"
1485
+ | "constellation"
1486
+ | "corporation"
1487
+ | "faction"
1488
+ | "inventory_type"
1489
+ | "region"
1490
+ | "solar_system"
1491
+ | "station"
1492
+ | "structure"
1493
+ ),
1494
+ (
1495
+ | "agent"
1496
+ | "alliance"
1497
+ | "character"
1498
+ | "constellation"
1499
+ | "corporation"
1500
+ | "faction"
1501
+ | "inventory_type"
1502
+ | "region"
1503
+ | "solar_system"
1504
+ | "station"
1505
+ | "structure"
1506
+ ),
1507
+ (
1508
+ | "agent"
1509
+ | "alliance"
1510
+ | "character"
1511
+ | "constellation"
1512
+ | "corporation"
1513
+ | "faction"
1514
+ | "inventory_type"
1515
+ | "region"
1516
+ | "solar_system"
1517
+ | "station"
1518
+ | "structure"
1519
+ ),
1520
+ (
1521
+ | "agent"
1522
+ | "alliance"
1523
+ | "character"
1524
+ | "constellation"
1525
+ | "corporation"
1526
+ | "faction"
1527
+ | "inventory_type"
1528
+ | "region"
1529
+ | "solar_system"
1530
+ | "station"
1531
+ | "structure"
1532
+ ),
1533
+ (
1534
+ | "agent"
1535
+ | "alliance"
1536
+ | "character"
1537
+ | "constellation"
1538
+ | "corporation"
1539
+ | "faction"
1540
+ | "inventory_type"
1541
+ | "region"
1542
+ | "solar_system"
1543
+ | "station"
1544
+ | "structure"
1545
+ ),
1546
+ (
1547
+ | "agent"
1548
+ | "alliance"
1549
+ | "character"
1550
+ | "constellation"
1551
+ | "corporation"
1552
+ | "faction"
1553
+ | "inventory_type"
1554
+ | "region"
1555
+ | "solar_system"
1556
+ | "station"
1557
+ | "structure"
1558
+ ),
1559
+ (
1560
+ | "agent"
1561
+ | "alliance"
1562
+ | "character"
1563
+ | "constellation"
1564
+ | "corporation"
1565
+ | "faction"
1566
+ | "inventory_type"
1567
+ | "region"
1568
+ | "solar_system"
1569
+ | "station"
1570
+ | "structure"
1571
+ ),
1572
+ (
1573
+ | "agent"
1574
+ | "alliance"
1575
+ | "character"
1576
+ | "constellation"
1577
+ | "corporation"
1578
+ | "faction"
1579
+ | "inventory_type"
1580
+ | "region"
1581
+ | "solar_system"
1582
+ | "station"
1583
+ | "structure"
1584
+ ),
1585
+ (
1586
+ | "agent"
1587
+ | "alliance"
1588
+ | "character"
1589
+ | "constellation"
1590
+ | "corporation"
1591
+ | "faction"
1592
+ | "inventory_type"
1593
+ | "region"
1594
+ | "solar_system"
1595
+ | "station"
1596
+ | "structure"
1597
+ ),
1598
+ (
1599
+ | "agent"
1600
+ | "alliance"
1601
+ | "character"
1602
+ | "constellation"
1603
+ | "corporation"
1604
+ | "faction"
1605
+ | "inventory_type"
1606
+ | "region"
1607
+ | "solar_system"
1608
+ | "station"
1609
+ | "structure"
1610
+ )
1611
+ ];
1612
+
1613
+ /* get_characters_character_id_search, search query type */
1614
+
1615
+ /**
1616
+ * The string to search on
1617
+ */
1618
+ type GetCharactersCharacterIdSearchSearch = string;
1619
+
1620
+ /* get_characters_character_id_search, strict query type */
1621
+
1622
+ /**
1623
+ * Whether the search should be a strict match
1624
+ */
1625
+ type GetCharactersCharacterIdSearchStrict = boolean;
1626
+
1627
+ /* get_characters_character_id_wallet_transactions, from_id query type */
1628
+
1629
+ /**
1630
+ * Only show transactions happened before the one referenced by this id
1631
+ */
1632
+ type GetCharactersCharacterIdWalletTransactionsFromId = number;
1633
+
1634
+ /* get_corporations_corporation_id_industry_jobs, include_completed query type */
1635
+
1636
+ /**
1637
+ * Whether to retrieve completed corporation industry jobs. Only includes jobs from the past 90 days
1638
+ */
1639
+ type GetCorporationsCorporationIdIndustryJobsIncludeCompleted = boolean;
1640
+
1641
+ /* get_corporations_corporation_id_starbases_starbase_id, system_id query type */
1642
+
1643
+ /**
1644
+ * The solar system this starbase (POS) is located in,
1645
+ */
1646
+ type GetCorporationsCorporationIdStarbasesStarbaseIdSystemId = number;
1647
+
1648
+ /* get_corporations_corporation_id_wallets_division_transactions, from_id query type */
1649
+
1650
+ /**
1651
+ * Only show journal entries happened before the transaction referenced by this id
1652
+ */
1653
+ type GetCorporationsCorporationIdWalletsDivisionTransactionsFromId = number;
1654
+
1655
+ /* get_markets_region_id_history, type_id query type */
1656
+
1657
+ /**
1658
+ * Return statistics for this type
1659
+ */
1660
+ type GetMarketsRegionIdHistoryTypeId = number;
1661
+
1662
+ /* get_markets_region_id_orders, order_type query type */
1663
+
1664
+ /**
1665
+ * Filter buy/sell orders, return all orders by default. If you query without type_id, we always return both buy and sell orders
1666
+ */
1667
+ type GetMarketsRegionIdOrdersOrderType = "buy" | "sell" | "all";
1668
+
1669
+ /* get_markets_region_id_orders, type_id query type */
1670
+
1671
+ /**
1672
+ * Return orders only for this type
1673
+ */
1674
+ type GetMarketsRegionIdOrdersTypeId = number;
1675
+
1676
+ /* get_route_origin_destination, avoid query type */
1677
+
1678
+ /**
1679
+ * avoid solar system ID(s)
1680
+ *
1681
+ * @maxItems 100
1682
+ */
1683
+ type GetRouteOriginDestinationAvoid = number[];
1684
+
1685
+ /* get_route_origin_destination, connections query type */
1686
+
1687
+ /**
1688
+ * connected solar system pairs
1689
+ *
1690
+ * @maxItems 100
1691
+ */
1692
+ type GetRouteOriginDestinationConnections = [number, number][];
1693
+
1694
+ /* get_route_origin_destination, flag query type */
1695
+
1696
+ /**
1697
+ * route security preference
1698
+ */
1699
+ type GetRouteOriginDestinationFlag = "shortest" | "secure" | "insecure";
1700
+
1701
+ /* post_ui_autopilot_waypoint, add_to_beginning query type */
1702
+
1703
+ /**
1704
+ * Whether this solar system should be added to the beginning of all waypoints
1705
+ */
1706
+ type PostUiAutopilotWaypointAddToBeginning = boolean;
1707
+
1708
+ /* post_ui_autopilot_waypoint, clear_other_waypoints query type */
1709
+
1710
+ /**
1711
+ * Whether clean other waypoints beforing adding this one
1712
+ */
1713
+ type PostUiAutopilotWaypointClearOtherWaypoints = boolean;
1714
+
1715
+ /* post_ui_autopilot_waypoint, destination_id query type */
1716
+
1717
+ /**
1718
+ * The destination to travel to, can be solar system, station or structure's id
1719
+ */
1720
+ type PostUiAutopilotWaypointDestinationId = number;
1721
+
1722
+ /* post_ui_openwindow_contract, contract_id query type */
1723
+
1724
+ /**
1725
+ * The contract to open
1726
+ */
1727
+ type PostUiOpenwindowContractContractId = number;
1728
+
1729
+ /* post_ui_openwindow_information, target_id query type */
1730
+
1731
+ /**
1732
+ * The target to open
1733
+ */
1734
+ type PostUiOpenwindowInformationTargetId = number;
1735
+
1736
+ /* post_ui_openwindow_marketdetails, type_id query type */
1737
+
1738
+ /**
1739
+ * The item type to open in market window
1740
+ */
1741
+ type PostUiOpenwindowMarketdetailsTypeId = number;
1742
+
1743
+ /* get_universe_structures, filter query type */
1744
+
1745
+ /**
1746
+ * Only list public structures that have this service online
1747
+ */
1748
+ type GetUniverseStructuresFilter = "market" | "manufacturing_basic";
1749
+
1750
+ /* get_wars, max_war_id query type */
1751
+
1752
+ /**
1753
+ * Only return wars with ID smaller than this
1754
+ */
1755
+ type GetWarsMaxWarId = number;
1756
+