eve_online 0.42.0 → 0.44.0

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,10 +1,7 @@
1
1
  # EveOnline ESI API
2
2
 
3
- [![CircleCI](https://circleci.com/gh/evemonk/eve_online.svg?style=svg)](https://circleci.com/gh/evemonk/eve_online)
4
3
  [![Gem Version](https://badge.fury.io/rb/eve_online.svg)](https://badge.fury.io/rb/eve_online)
5
4
  [![Gem Downloads](https://img.shields.io/gem/dt/eve_online.svg)](https://rubygems.org/gems/eve_online)
6
- [![Known Vulnerabilities](https://snyk.io/test/github/evemonk/eve_online/badge.svg)](https://snyk.io/test/github/evemonk/eve_online)
7
- [![security](https://hakiri.io/github/evemonk/eve_online/main.svg)](https://hakiri.io/github/evemonk/eve_online/main)
8
5
  [![DeepSource](https://static.deepsource.io/deepsource-badge-light-mini.svg)](https://deepsource.io/gh/evemonk/eve_online/?ref=repository-badge)
9
6
  [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/testdouble/standard)
10
7
 
@@ -50,16 +47,15 @@ gem install eve_online
50
47
 
51
48
  ## Supported ruby versions
52
49
 
53
- * MRI 2.6
54
- * MRI 2.7
55
50
  * MRI 3.0
51
+ * MRI 3.1
52
+ * MRI 3.2
56
53
 
57
54
  ## Supported rails versions
58
55
 
59
- * 5.2
60
- * 6.0
61
56
  * 6.1
62
- * Edge
57
+ * 7.0
58
+ * main
63
59
 
64
60
  ## Usage examples
65
61
 
@@ -75,8 +71,6 @@ alliances.scope # => nil
75
71
  alliances.alliance_ids.size # => 3028
76
72
 
77
73
  alliances.alliance_ids.first # => 1354830081
78
-
79
- alliances.etag # => "97f0c48679f2b200043cdbc3406291fc945bcd652ddc7fc11ccdc37a"
80
74
  ```
81
75
 
82
76
  #### Get alliance information
@@ -103,8 +97,6 @@ alliance.executor_corporation_id # => 98306624
103
97
  alliance.faction_id # => nil
104
98
  alliance.name # => "Kids With Guns Alliance"
105
99
  alliance.ticker # => "-KWG-"
106
-
107
- alliance.etag # => "6780e53a01c7d9715b5f445126c4f2c137da4be79e4debe541ce3ab2"
108
100
  ```
109
101
 
110
102
  #### List alliance's corporations
@@ -119,8 +111,6 @@ alliance_corporations.scope # => nil
119
111
  alliance_corporations.corporation_ids.size # => 70
120
112
 
121
113
  alliance_corporations.corporation_ids.first # => 98091533
122
-
123
- alliance_corporations.etag # => "9b6810d8ddbd9a13bb4ad09cf4bfefd9f29974bffd543eb30ce25132"
124
114
  ```
125
115
 
126
116
  #### Get alliance icon
@@ -137,8 +127,6 @@ alliance_icon.as_json # => {:icon_medium=>"https://images.evetech.net/alliances/
137
127
 
138
128
  alliance_icon.icon_medium # => "https://images.evetech.net/alliances/99005443/logo?tenant=tranquility&size=128"
139
129
  alliance_icon.icon_small # => "https://images.evetech.net/alliances/99005443/logo?tenant=tranquility&size=64"
140
-
141
- alliance_icon.etag # => "d067edb53a9019e0e05d99a2b1e7c7745433a982dda16667a14bff49"
142
130
  ```
143
131
 
144
132
  ### Assets
@@ -177,8 +165,6 @@ asset.location_id # => 1027847409779
177
165
  asset.location_type # => "other"
178
166
  asset.quantity # => 1
179
167
  asset.type_id # => 1010
180
-
181
- character_assets.etag # => "29da11b30974e55cd440a879199a629a8492a4c0a49894a2cd22f90b"
182
168
  ```
183
169
 
184
170
  #### Get character asset locations
@@ -205,8 +191,6 @@ asset_location.position.as_json # => {:x=>-928621543221.3319,
205
191
  asset_location.position.x # => -928621543221.3319
206
192
  asset_location.position.y # => 297645715142.40234
207
193
  asset_location.position.z # => -971212198300.4812
208
-
209
- character_assets_locations.etag # => NotImplementedError
210
194
  ```
211
195
 
212
196
  #### Get character asset names
@@ -227,8 +211,6 @@ asset_name.as_json # => {:item_id=>1001215602246,
227
211
 
228
212
  asset_name.item_id # => 1001215602246
229
213
  asset_name.name # => "HOLE"
230
-
231
- character_assets_names.etag # => NotImplementedError
232
214
  ```
233
215
 
234
216
  #### Get corporation assets
@@ -267,8 +249,6 @@ asset.location_id # => 1027847409779
267
249
  asset.location_type # => "other"
268
250
  asset.quantity # => 1
269
251
  asset.type_id # => 1010
270
-
271
- # TODO: corporation_assets.etag
272
252
  ```
273
253
 
274
254
  #### Get corporation asset locations
@@ -297,8 +277,6 @@ asset_location.position.as_json # => {:x=>-928621543221.3319,
297
277
  asset_location.position.x # => -928621543221.3319
298
278
  asset_location.position.y # => 297645715142.40234
299
279
  asset_location.position.z # => -971212198300.4812
300
-
301
- corporation_assets_locations.etag # => NotImplementedError
302
280
  ```
303
281
 
304
282
  #### Get corporation asset names
@@ -321,8 +299,6 @@ asset_name.as_json # => {:item_id=>1001215602246,
321
299
 
322
300
  asset_name.item_id # => 1001215602246
323
301
  asset_name.name # => "HOLE"
324
-
325
- corporation_assets_names.etag # => NotImplementedError
326
302
  ```
327
303
 
328
304
  ### Bookmarks
@@ -362,8 +338,6 @@ event.event_id # => 1635240
362
338
  event.event_response # => "not_responded"
363
339
  event.importance # => 0
364
340
  event.title # => "Moon extraction for 66-PMM - GoldMine-5-"
365
-
366
- # TODO: character_calendar.etag
367
341
  ```
368
342
 
369
343
  #### Get an event
@@ -414,7 +388,6 @@ character = EveOnline::ESI::Character.new(options)
414
388
  character.scope # => nil
415
389
 
416
390
  character.as_json # => {:alliance_id=>12345678,
417
- # :ancestry_id=>24,
418
391
  # :birthday=>Fri, 15 Jan 2010 15:26:00 UTC +00:00,
419
392
  # :bloodline_id=>4,
420
393
  # :corporation_id=>1000168,
@@ -427,7 +400,6 @@ character.as_json # => {:alliance_id=>12345678,
427
400
  # :title=>nil}
428
401
 
429
402
  character.alliance_id # => 12345678
430
- character.ancestry_id # => 24
431
403
  character.birthday # => Fri, 15 Jan 2010 15:26:00 UTC +00:00
432
404
  character.bloodline_id # => 4
433
405
  character.corporation_id # => 1000168
@@ -438,8 +410,6 @@ character.name # => "Green Black"
438
410
  character.race_id # => 2
439
411
  character.security_status # => 1.8694881661345457
440
412
  character.title # => nil
441
-
442
- character.etag # => "22c39689783a86032b8d43fa0b2e8f4809c4f38a585e39471035aa8b"
443
413
  ```
444
414
 
445
415
  #### Get agents research
@@ -478,8 +448,6 @@ blueprint.quantity # => -2
478
448
  blueprint.runs # => 300
479
449
  blueprint.time_efficiency # => 0
480
450
  blueprint.type_id # => 1010
481
-
482
- # TODO: character_blueprints.etag
483
451
  ```
484
452
 
485
453
  #### Get corporation history
@@ -504,8 +472,6 @@ entry.corporation_id # => 1000168
504
472
  entry.is_deleted # => nil
505
473
  entry.record_id # => 16785803
506
474
  entry.start_date # => Tue, 10 May 2011 10:23:00 UTC +00:00
507
-
508
- character_corporation_history.etag # => "f9497588fc2db18ca9a2ee06c48a16120e0c712fe9925bb29d7aaeeb"
509
475
  ```
510
476
 
511
477
  #### Calculate a CSPA charge cost
@@ -528,8 +494,6 @@ character_fatigue.last_jump_date # => nil
528
494
  character_fatigue.last_update_date # => nil
529
495
 
530
496
  # TODO: add real data here
531
-
532
- # TODO: character_fatigue.etag
533
497
  ```
534
498
 
535
499
  #### Get medals
@@ -562,8 +526,6 @@ notification.sender_type # => "corporation"
562
526
  notification.text # => "againstID: 99005443\ncost: 0\ndeclaredByID: 98442842\ndelayHours: 24\nhostileState: 0\n"
563
527
  notification.timestamp # => Thu, 01 Mar 2018 13:48:00 UTC +00:00
564
528
  notification.type # => "AllWarDeclaredMsg"
565
-
566
- # TODO: character_notifications.etag
567
529
  ```
568
530
 
569
531
  #### Get new contact notifications
@@ -586,8 +548,6 @@ character_portrait.medium # => "https://images.evetech.net/Character/1337512245_
586
548
  character_portrait.large # => "https://images.evetech.net/Character/1337512245_256.jpg"
587
549
  character_portrait.huge # => "https://images.evetech.net/Character/1337512245_512.jpg"
588
550
  character_portrait.small # => "https://images.evetech.net/Character/1337512245_64.jpg"
589
-
590
- character_portrait.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
591
551
  ```
592
552
 
593
553
  #### Get character corporation roles
@@ -612,8 +572,6 @@ standing.as_json # => {:from_id=>500001,
612
572
  standing.from_id # => 500001
613
573
  standing.from_type # => "faction"
614
574
  standing.standing # => 0.3303719111639991
615
-
616
- # TODO: character_standing.etag
617
575
  ```
618
576
 
619
577
  #### Yearly aggregate stats
@@ -655,8 +613,6 @@ jump_clone.implant_ids # => [22118]
655
613
  character_clones.last_clone_jump_date # => Fri, 27 Jul 2012 14:50:11 UTC +00:00
656
614
 
657
615
  character_clones.last_station_change_date # => Tue, 30 Jun 2015 21:51:13 UTC +00:00
658
-
659
- # TODO: character_clones.etag
660
616
  ```
661
617
 
662
618
  #### Get active implants
@@ -671,8 +627,6 @@ character_implants.scope # => "esi-clones.read_implants.v1"
671
627
  character_implants.implant_ids.size # => 5
672
628
 
673
629
  character_implants.implant_ids # => [9899, 9941, 9942, 9943, 9956]
674
-
675
- # TODO: character_implants.etag
676
630
  ```
677
631
 
678
632
  ### Contacts
@@ -755,8 +709,6 @@ contract.status # => "finished"
755
709
  contract.title # => ""
756
710
  contract.type # => "item_exchange"
757
711
  contract.volume # => 15000.0
758
-
759
- contracts.etag # => "6e18566a8f786f08aba678262360d0c74a783f9923aa43f8043133e4"
760
712
  ```
761
713
 
762
714
  #### Get contract bids
@@ -813,8 +765,6 @@ contract.start_location_id # => 60008494
813
765
  contract.title # => "Apostle Me10/Te16 Complete Bpc 10 Pack"
814
766
  contract.kind # => "item_exchange"
815
767
  contract.volume # => 100.0
816
-
817
- contracts.etag # => "3f7fdf9a69e35bb35d619b6cb5043a2766d11ca6306a8b5af369ce6e"
818
768
  ```
819
769
 
820
770
  #### Get public contract bids
@@ -853,8 +803,6 @@ item.record_id # => 3210378611
853
803
  item.runs # => 400
854
804
  item.time_efficiency # => 20
855
805
  item.type_id # => 29040
856
-
857
- contract.etag # => "d458c3f56c114882a9ecfe1aaf173837310b15b6e7cef86a019e700f"
858
806
  ```
859
807
 
860
808
  #### Get public contract items
@@ -905,8 +853,6 @@ corporation.tax_rate # => 0.1
905
853
  corporation.ticker # => "BUBIC"
906
854
  corporation.corporation_url # => "http://"
907
855
  corporation.war_eligible # => true
908
-
909
- corporation.etag # => "046430260be73e5d7ad3a9251954310bd547498eeb38f99e8d305796"
910
856
  ```
911
857
 
912
858
  #### Get alliance history
@@ -933,8 +879,6 @@ entry.alliance_id # => 99005874
933
879
  entry.is_deleted # => nil
934
880
  entry.record_id # => 1254640
935
881
  entry.start_date # => Mon, 03 Jun 2019 00:17:00 UTC +00:00
936
-
937
- corporation_alliance_history.etag # => "9a949294cfa5fcef345ea8d89a574defa09be39845b9b97f1fdddd41"
938
882
  ```
939
883
 
940
884
  #### Get corporation blueprints
@@ -973,8 +917,6 @@ blueprint.time_efficiency # => 20
973
917
  blueprint.type_id # => 31803
974
918
 
975
919
  corporation_blueprints.roles # => ["Director"]
976
-
977
- # TODO: corporation_blueprints.etag
978
920
  ```
979
921
 
980
922
  #### Get all corporation ALSC logs
@@ -1001,8 +943,6 @@ corporation_members.scope # => "esi-corporations.read_corporation_membership.v1"
1001
943
  corporation_members.character_ids.size # => 118
1002
944
 
1003
945
  corporation_members.character_ids.first # => 2114220544
1004
-
1005
- corporation_members.etag # => "6094aeb7f2c2754a7d1f210eed73f1f858042330852fac847a477a59"
1006
946
  ```
1007
947
 
1008
948
  #### Get corporation member limit
@@ -1037,8 +977,6 @@ corporation_npcs.scope # => nil
1037
977
  corporation_npcs.corporation_npc_ids.size # => 262
1038
978
 
1039
979
  corporation_npcs.corporation_npc_ids.first # => 1000001
1040
-
1041
- corporation_npcs.etag # => "085946820256a4f7be2e9926e9d1de9e420cca53ffb31f7547740a05"
1042
980
  ```
1043
981
 
1044
982
  ### Dogma
@@ -1053,8 +991,6 @@ dogma_attributes.scope # => nil
1053
991
  dogma_attributes.attribute_ids.size # => 2469
1054
992
 
1055
993
  dogma_attributes.attribute_ids.first # => 2
1056
-
1057
- dogma_attributes.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
1058
994
  ```
1059
995
 
1060
996
  #### Get attribute information
@@ -1087,8 +1023,6 @@ dogma_attribute.name # => "isOnline"
1087
1023
  dogma_attribute.published # => nil
1088
1024
  dogma_attribute.stackable # => true
1089
1025
  dogma_attribute.unit_id # => nil
1090
-
1091
- dogma_attribute.etag # => "acc1e563574a55f79ebe4a2a99845dd6c28f4e412e11fd084b8485fd"
1092
1026
  ```
1093
1027
 
1094
1028
  #### Get dynamic item information
@@ -1103,8 +1037,6 @@ dogma_effects.scope # => nil
1103
1037
  dogma_effects.effect_ids.size # => 4166
1104
1038
 
1105
1039
  dogma_effects.effect_ids.first # => 4
1106
-
1107
- dogma_effects.etag # => "5c9218218aca123ef8c106f6607bfe8e6e086d2fc2b972bbd8ff03d2"
1108
1040
  ```
1109
1041
 
1110
1042
  #### Get effect information
@@ -1175,8 +1107,6 @@ modifier.func # => "LocationRequiredSkillModifier"
1175
1107
  modifier.modified_attribute_id # => 73
1176
1108
  modifier.modifying_attribute_id # => 2458
1177
1109
  modifier.operator # => 6
1178
-
1179
- dogma_effect.etag # => "acc1e563574a55f79ebe4a2a99845dd6c28f4e412e11fd084b8485fd"
1180
1110
  ```
1181
1111
 
1182
1112
  ### Faction Warfare
@@ -1299,8 +1229,6 @@ job.start_date # => Sat, 18 Nov 2017 10:16:14 UTC +00:00
1299
1229
  job.station_id # => 1023579231924
1300
1230
  job.status # => "active"
1301
1231
  job.successful_runs # => nil
1302
-
1303
- # TODO: character_jobs.etag
1304
1232
  ```
1305
1233
 
1306
1234
  #### Character mining ledger
@@ -1375,8 +1303,6 @@ job.status # => "active"
1375
1303
  job.successful_runs # => nil
1376
1304
 
1377
1305
  corporation_jobs.roles # => ["Factory_Manager"]
1378
-
1379
- # TODO: corporation_jobs.etag
1380
1306
  ```
1381
1307
 
1382
1308
  #### List industry facilities
@@ -1411,8 +1337,6 @@ killmail.as_json # => {:killmail_hash=>"8f1450fca8ce97be9b10e106a1257088407ef387
1411
1337
 
1412
1338
  killmail.killmail_hash # => "8f1450fca8ce97be9b10e106a1257088407ef387"
1413
1339
  killmail.killmail_id # => 81646519
1414
-
1415
- character_killmails.etag # => "ba5068bc1b07db98d9efce93437295fbdb9d29b14b4ffbcbfa91ac0d"
1416
1340
  ```
1417
1341
 
1418
1342
  #### Get a corporation's recent kills and losses
@@ -1439,8 +1363,6 @@ killmail.killmail_hash # => "07f7ef1d7f6090e78d8e85b4a98e680f67b5e9d5"
1439
1363
  killmail.killmail_id # => 72410059
1440
1364
 
1441
1365
  corporation_killmails.roles # => ["Director"]
1442
-
1443
- # TODO: corporation_killmails.etag
1444
1366
  ```
1445
1367
 
1446
1368
  #### Get a single killmail
@@ -1471,8 +1393,6 @@ character_location.as_json # => {:solar_system_id=>30004971,
1471
1393
  character_location.solar_system_id # => 30004971
1472
1394
  character_location.station_id # => 60014689
1473
1395
  character_location.structure_id # => nil
1474
-
1475
- # TODO: character_location.etag
1476
1396
  ```
1477
1397
 
1478
1398
  #### Get character online
@@ -1493,8 +1413,6 @@ character_online.last_login # => Sun, 15 Jan 2017 11:39:24 UTC +00:00
1493
1413
  character_online.last_logout # => Sun, 15 Jan 2017 11:31:22 UTC +00:00
1494
1414
  character_online.logins # => 370
1495
1415
  character_online.online # => false
1496
-
1497
- character_online.etag # => "43c82cdefedc4275da30d7731200df96b905dc94b8486d55bedb5fe6"
1498
1416
  ```
1499
1417
 
1500
1418
  #### Get current ship
@@ -1513,8 +1431,6 @@ character_ship.as_json # => {:ship_item_id=>1002312158069,
1513
1431
  character_ship.ship_item_id # => 1002312158069
1514
1432
  character_ship.ship_name # => "Green Black's Velator"
1515
1433
  character_ship.ship_type_id # => 606
1516
-
1517
- # TODO: character_ship.etag
1518
1434
  ```
1519
1435
 
1520
1436
  ### Loyalty
@@ -1536,8 +1452,6 @@ loyalty_point.as_json # => {:corporation_id=>1000035, :loyalty_points=>14163}
1536
1452
 
1537
1453
  loyalty_point.corporation_id # => 1000035
1538
1454
  loyalty_point.loyalty_points # => 14163
1539
-
1540
- character_loyalty_points.etag # => "b6f4d03c84350052a2e95e3b098c41b1c50f938ffe3f6da7fc1c1698"
1541
1455
  ```
1542
1456
 
1543
1457
  #### List loyalty store offers
@@ -1575,8 +1489,6 @@ offer_required_item = offer.offer_required_items.first
1575
1489
 
1576
1490
  offer_required_item.quantity # => 5000
1577
1491
  offer_required_item.type_id # => 234
1578
-
1579
- corporation_loyalty_store_offers.etag # => "89211f42fde090e4d22621e9b97d7604ab87af95b3b6ffed7fe81bc0"
1580
1492
  ```
1581
1493
 
1582
1494
  ### Mail
@@ -1628,8 +1540,6 @@ recipient.as_json # => {:recipient_id=>98134807,
1628
1540
 
1629
1541
  recipient.recipient_id # => 98134807
1630
1542
  recipient.recipient_type # => "corporation"
1631
-
1632
- character_mail.etag # => "90dba7f7a6e60bfe8527b9f5112b9ca588c8f57d01415717be525a91"
1633
1543
  ```
1634
1544
 
1635
1545
  #### Update metadata about a mail
@@ -1661,8 +1571,6 @@ label.color # => "#ffffff"
1661
1571
  label.label_id # => 8
1662
1572
  label.name # => "[Alliance]"
1663
1573
  label.unread_count # => 227
1664
-
1665
- character_mail_labels.etag # => "265cfe7f2d7df2273342ed75c92b5047af6f76a3807dcc8353b5f379"
1666
1574
  ```
1667
1575
 
1668
1576
  #### Create a mail label
@@ -1713,8 +1621,6 @@ order.volume_remain
1713
1621
  order.volume_total
1714
1622
 
1715
1623
  # TODO: update example
1716
-
1717
- # TODO: character_orders.etag
1718
1624
  ```
1719
1625
 
1720
1626
  #### List historical orders by a character
@@ -1759,8 +1665,6 @@ order.wallet_division
1759
1665
  # TODO: update
1760
1666
 
1761
1667
  corporation_orders.roles # => ["Accountant", "Trader"]
1762
-
1763
- # TODO: corporation_orders.etag
1764
1668
  ```
1765
1669
 
1766
1670
  #### List historical orders from a corporation
@@ -1793,8 +1697,6 @@ stats_today.highest # => 620169950.0
1793
1697
  stats_today.lowest # => 579060022.71
1794
1698
  stats_today.order_count # => 44
1795
1699
  stats_today.volume # => 44
1796
-
1797
- market_history.etag # => "01636947a53db63a0369aab78bbc98bae94a49cd6aa3950c29d588ae"
1798
1700
  ```
1799
1701
 
1800
1702
  #### List orders in a region
@@ -1811,8 +1713,6 @@ market_groups.scope # => nil
1811
1713
  market_groups.market_group_ids.size # => 1872
1812
1714
 
1813
1715
  market_groups.market_group_ids.first # => 2
1814
-
1815
- market_groups.etag # => "bf7832bfc20f5f9fdeddc9cb0360b941067310e7e3a2a80315b45a43"
1816
1716
  ```
1817
1717
 
1818
1718
  #### Get item group information
@@ -1837,8 +1737,6 @@ market_group.parent_group_id # => 532
1837
1737
  market_group.type_ids.size # => 48
1838
1738
 
1839
1739
  market_group.type_ids.first # => 28802
1840
-
1841
- market_group.etag # => "bf7832bfc20f5f9fdeddc9cb0360b941067310e7e3a2a80315b45a43"
1842
1740
  ```
1843
1741
 
1844
1742
  #### List market prices
@@ -1860,8 +1758,6 @@ market_price.as_json # => {:adjusted_price=>923296.88,
1860
1758
  market_price.adjusted_price # => 923296.88
1861
1759
  market_price.average_price # => 1273871.6
1862
1760
  market_price.type_id # => 32772
1863
-
1864
- market_prices.etag # => "2d5acc3bd4555821bb91d787596f5ddad129f849739e83162e93c02f"
1865
1761
  ```
1866
1762
 
1867
1763
  #### List orders in a structure
@@ -1928,8 +1824,6 @@ search.region_ids # => []
1928
1824
  search.solar_system_ids # => [30000142]
1929
1825
  search.station_ids # => []
1930
1826
 
1931
- search.etag # => "b6602e595e8d8df37b5191b82e75faba91284281b6fe71965d09e2f1"
1932
-
1933
1827
  # strict search
1934
1828
 
1935
1829
  options = { search: "Jita", strict: true }
@@ -2001,8 +1895,6 @@ character_attributes.last_remap_date # => Sat, 07 May 2011 12:58:06 UTC +00:00
2001
1895
  character_attributes.memory # => 24
2002
1896
  character_attributes.perception # => 23
2003
1897
  character_attributes.willpower # => 23
2004
-
2005
- # TODO: character_attributes.etag
2006
1898
  ```
2007
1899
 
2008
1900
  #### Get character's skill queue
@@ -2035,8 +1927,6 @@ skill_queue_entry.queue_position # => 0
2035
1927
  skill_queue_entry.skill_id # => 12487
2036
1928
  skill_queue_entry.start_date # => Sun, 15 Jan 2017 11:38:25 UTC +00:00
2037
1929
  skill_queue_entry.training_start_sp # => 7263
2038
-
2039
- # TODO: character_skill_queue.etag
2040
1930
  ```
2041
1931
 
2042
1932
  #### Get character skills
@@ -2066,8 +1956,6 @@ skill.trained_skill_level # => 1
2066
1956
 
2067
1957
  character_skills.total_sp # => 50362576
2068
1958
  character_skills.unallocated_sp # => 656000
2069
-
2070
- # TODO: character_skills.etag
2071
1959
  ```
2072
1960
 
2073
1961
  ### Sovereignty
@@ -2096,8 +1984,6 @@ server_status.players # => 34545
2096
1984
  server_status.server_version # => "1135520"
2097
1985
  server_status.start_time # => Tue, 11 Apr 2017 11:05:35 UTC +00:00
2098
1986
  server_status.vip # => nil
2099
-
2100
- server_status.etag # => "005dd5b02fc9e032466c49b28ff7fcb4fa37c56e5c361a1e25ec6cfd"
2101
1987
  ```
2102
1988
 
2103
1989
  ### Universe
@@ -2128,8 +2014,6 @@ ancestry.icon_id # => 1664
2128
2014
  ancestry.ancestry_id # => 24
2129
2015
  ancestry.name # => "Slave Child"
2130
2016
  ancestry.short_description # => "Torn from the cold and brought to the warmth of a new life."
2131
-
2132
- ancestries.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2133
2017
  ```
2134
2018
 
2135
2019
  #### Get asteroid belt information
@@ -2154,8 +2038,6 @@ asteroid_belt.position.as_json # => {:x=>161967513600.0,
2154
2038
  asteroid_belt.position.x # => 161967513600.0
2155
2039
  asteroid_belt.position.y # => 21288837120.0
2156
2040
  asteroid_belt.position.z # => -73505464320.0
2157
-
2158
- asteroid_belt.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
2159
2041
  ```
2160
2042
 
2161
2043
  #### Get bloodlines
@@ -2194,8 +2076,6 @@ bloodline.perception # => 9
2194
2076
  bloodline.race_id # => 2
2195
2077
  bloodline.ship_type_id # => 588
2196
2078
  bloodline.willpower # => 7
2197
-
2198
- bloodlines.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2199
2079
  ```
2200
2080
 
2201
2081
  #### Get item categories
@@ -2208,8 +2088,6 @@ categories.scope # => nil
2208
2088
  categories.category_ids.size # => 43
2209
2089
 
2210
2090
  categories.category_ids.first # => 0
2211
-
2212
- categories.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
2213
2091
  ```
2214
2092
 
2215
2093
  #### Get item category information
@@ -2231,8 +2109,6 @@ category.published # => true
2231
2109
 
2232
2110
  category.group_ids.size # => 46
2233
2111
  category.group_ids.first # => 25
2234
-
2235
- category.etag # => "37a39e7a5f5ecc07b19a3128c319f1198d035aee10052d0a21ccdd94"
2236
2112
  ```
2237
2113
 
2238
2114
  #### Get constellations
@@ -2245,8 +2121,6 @@ constellations.scope # => nil
2245
2121
  constellations.constellation_ids.size # => 1146
2246
2122
 
2247
2123
  constellations.constellation_ids.first # => 20000001
2248
-
2249
- constellations.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
2250
2124
  ```
2251
2125
 
2252
2126
  #### Get constellation information
@@ -2275,8 +2149,6 @@ constellation.position.as_json # => {:x=>-9.404655970099134e+16,
2275
2149
  constellation.position.x # => -9.404655970099134e+16
2276
2150
  constellation.position.y # => 4.952015315379885e+16
2277
2151
  constellation.position.z # => -4.273873181840197e+16
2278
-
2279
- constellation.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
2280
2152
  ```
2281
2153
 
2282
2154
  #### Get factions
@@ -2313,8 +2185,6 @@ faction.size_factor # => 5.0
2313
2185
  faction.solar_system_id # => 30002544
2314
2186
  faction.station_count # => 570
2315
2187
  faction.station_system_count # => 291
2316
-
2317
- factions.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2318
2188
  ```
2319
2189
 
2320
2190
  #### Get graphics
@@ -2327,8 +2197,6 @@ graphics.scope # => nil
2327
2197
  graphics.graphic_ids.size # => 3702
2328
2198
 
2329
2199
  graphics.graphic_ids.first # => 20480
2330
-
2331
- graphics.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2332
2200
  ```
2333
2201
 
2334
2202
  #### Get graphic information
@@ -2357,8 +2225,6 @@ graphic.sof_dna # => "ai1_t1:tash-murkon:amarr"
2357
2225
  graphic.sof_fation_name # => "tash-murkon"
2358
2226
  graphic.sof_hull_name # => "ai1_t1"
2359
2227
  graphic.sof_race_name # => "amarr"
2360
-
2361
- graphic.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2362
2228
  ```
2363
2229
 
2364
2230
  #### Get item groups
@@ -2377,8 +2243,6 @@ groups.total_pages # => 2
2377
2243
  groups.group_ids.size # => 1000
2378
2244
 
2379
2245
  groups.group_ids.first # => 0
2380
-
2381
- groups.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2382
2246
  ```
2383
2247
 
2384
2248
  #### Get item group information
@@ -2400,8 +2264,6 @@ group.group_id # => 450
2400
2264
  group.name # => "Arkonor"
2401
2265
  group.published # => true
2402
2266
  group.type_ids # => [22, 17425, 17426, 26852, 28367, 28385, 28387, 28625, 46678, 46691]
2403
-
2404
- group.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2405
2267
  ```
2406
2268
 
2407
2269
  #### Bulk names to IDs
@@ -2430,8 +2292,6 @@ moon.position.as_json # => {:x=>162088094286.0,
2430
2292
  moon.position.x # => 162088094286.0
2431
2293
  moon.position.y # => 21314854783.0
2432
2294
  moon.position.z # => -73598621491.0
2433
-
2434
- moon.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2435
2295
  ```
2436
2296
 
2437
2297
  #### Get names and categories for a set of ID's
@@ -2462,8 +2322,6 @@ planet.position.as_json # => {:x=>161891117336.0,
2462
2322
  planet.position.x # => 161891117336.0
2463
2323
  planet.position.y # => 21288951986.0
2464
2324
  planet.position.z # => -73529712226.0
2465
-
2466
- planet.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2467
2325
  ```
2468
2326
 
2469
2327
  #### Get character races
@@ -2488,8 +2346,6 @@ race.faction_id # => 500002
2488
2346
  race.description # => "Once a thriving tribal civilization, the Minmatar..."
2489
2347
  race.name # => "Minmatar"
2490
2348
  race.race_id # => 2
2491
-
2492
- races.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2493
2349
  ```
2494
2350
 
2495
2351
  #### Get regions
@@ -2502,8 +2358,6 @@ regions.scope # => nil
2502
2358
  regions.universe_region_ids.size # => 106
2503
2359
 
2504
2360
  regions.universe_region_ids.first # => 10000001
2505
-
2506
- regions.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
2507
2361
  ```
2508
2362
 
2509
2363
  #### Get region information
@@ -2525,8 +2379,6 @@ region.region_id # => 10000001
2525
2379
 
2526
2380
  region.constellation_ids.size # => 16
2527
2381
  region.constellation_ids.first # => 20000001
2528
-
2529
- region.etag # => "2c8392581d493e06c015ca3d48d4076079bf4c976b1f776742592260"
2530
2382
  ```
2531
2383
 
2532
2384
  #### Get stargate information
@@ -2559,8 +2411,6 @@ stargate.position.as_json # => {:x=>331516354560.0,
2559
2411
  stargate.position.x # => 331516354560.0
2560
2412
  stargate.position.y # => 43597455360.0
2561
2413
  stargate.position.z # => -586353991680.0
2562
-
2563
- stargate.etag # => "2e28835f91024608719726b655591d531125a023e122859d174923d5"
2564
2414
  ```
2565
2415
 
2566
2416
  #### Get star information
@@ -2589,8 +2439,6 @@ star.solar_system_id # => 30000001
2589
2439
  star.spectral_class # => "K2 V"
2590
2440
  star.temperature # => 4567
2591
2441
  star.type_id # => 45041
2592
-
2593
- star.etag # => "2e28835f91024608719726b655591d531125a023e122859d174923d5"
2594
2442
  ```
2595
2443
 
2596
2444
  #### Get station information
@@ -2664,8 +2512,6 @@ station.position.as_json # => {:x=>-1106145239040.0,
2664
2512
  station.position.x # => -1106145239040.0
2665
2513
  station.position.y # => -145460060160.0
2666
2514
  station.position.z # => 182618726400.0
2667
-
2668
- station.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2669
2515
  ```
2670
2516
 
2671
2517
  #### List all public structures
@@ -2679,8 +2525,6 @@ structures.structure_ids.size # => 3654
2679
2525
 
2680
2526
  structures.structure_ids.first # => 1027528548355
2681
2527
 
2682
- structures.etag # => "1b64f9a8268bb3ba350acc7d7116bfd75dd9f88defb1bbc61771aec7"
2683
-
2684
2528
  # with filter (`filter` is enum with values: nil, `market` and `manufacturing_basic`)
2685
2529
 
2686
2530
  options = { filter: 'market' }
@@ -2690,8 +2534,6 @@ structures = EveOnline::ESI::UniverseStructures.new(options)
2690
2534
  structures.structure_ids.size # => 108
2691
2535
 
2692
2536
  structures.structure_ids.first # => 1030490622468
2693
-
2694
- structures.etag # => "2a825ab50413f1efe5f558b8d093e1299389b2f2ce3fa191907f7209"
2695
2537
  ```
2696
2538
 
2697
2539
  #### Get structure information
@@ -2711,8 +2553,6 @@ jump.as_json # => {:ship_jumps=>65, :system_id=>30002671}
2711
2553
 
2712
2554
  jump.ship_jumps # => 65
2713
2555
  jump.system_id # => 30002671
2714
-
2715
- system_jumps.etag # => "40d7cfcdb494669846bedf8adadc47002986d8f5529508e8d5f8f552"
2716
2556
  ```
2717
2557
 
2718
2558
  #### Get system kills
@@ -2735,8 +2575,6 @@ system_kill.npc_kills # => 89
2735
2575
  system_kill.pod_kills # => 0
2736
2576
  system_kill.ship_kills # => 5
2737
2577
  system_kill.system_id # => 30005327
2738
-
2739
- system_kills.etag # => "2075c203d2a11627ab68b039a61e1816b052e9c0016eca5f08b6a35e"
2740
2578
  ```
2741
2579
 
2742
2580
  #### Get solar systems
@@ -2749,8 +2587,6 @@ systems.scope # => nil
2749
2587
  systems.universe_system_ids.size # => 8285
2750
2588
 
2751
2589
  systems.universe_system_ids.first # => 30000001
2752
-
2753
- systems.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2754
2590
  ```
2755
2591
 
2756
2592
  #### Get solar system information
@@ -2799,8 +2635,6 @@ planet.moon_ids # => [40000004]
2799
2635
  system.stargate_ids # => [50000056, 50000057, 50000058]
2800
2636
 
2801
2637
  system.station_ids # => [60012526, 60014437]
2802
-
2803
- system.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2804
2638
  ```
2805
2639
 
2806
2640
  #### Get types
@@ -2819,8 +2653,6 @@ types.total_pages # => 36
2819
2653
  types.universe_type_ids.size # => 1000
2820
2654
 
2821
2655
  types.universe_type_ids.first # => 0
2822
-
2823
- types.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2824
2656
  ```
2825
2657
 
2826
2658
  #### Get type information
@@ -2881,8 +2713,6 @@ type_dogma_effect.as_json # => {:effect_id=>596,
2881
2713
 
2882
2714
  type_dogma_effect.effect_id # => 596
2883
2715
  type_dogma_effect.is_default # => false
2884
-
2885
- type.etag # => "e3f6a76b4a1287f54966c6253f8f5d6ac6460bc43d47570331b43e0b"
2886
2716
  ```
2887
2717
 
2888
2718
  ### User Interface
@@ -2911,8 +2741,6 @@ character_wallet.scope # => "esi-wallet.read_character_wallet.v1"
2911
2741
  character_wallet.as_json # => {:wallet=>409488252.49}
2912
2742
 
2913
2743
  character_wallet.wallet # => 409488252.49
2914
-
2915
- character_wallet.etag # => "482786a491138fdf393f42c457424b0cd3f3c3c7c2c9afb3f55c618a"
2916
2744
  ```
2917
2745
 
2918
2746
  #### Get character wallet journal
@@ -2959,8 +2787,6 @@ wallet_journal_entry.ref_type # => "bounty_prizes"
2959
2787
  wallet_journal_entry.second_party_id # => 1337512245
2960
2788
  wallet_journal_entry.tax # => nil
2961
2789
  wallet_journal_entry.tax_receiver_id # => nil
2962
-
2963
- character_wallet_journal.etag # => "b618a1a584f6aad53cb79c72d6de26d8c9210d0a18be1421d5355446"
2964
2790
  ```
2965
2791
 
2966
2792
  #### Get wallet transactions
@@ -2997,8 +2823,6 @@ wallet_transaction.quantity # => 1
2997
2823
  wallet_transaction.transaction_id # => 5296927639
2998
2824
  wallet_transaction.type_id # => 3538
2999
2825
  wallet_transaction.unit_price # => 99887.79
3000
-
3001
- wallet_transactions.etag # => "55d0fbe8b408d6a76dab70c0a709d4e7c5dd58d4e0b7bd785549e268"
3002
2826
  ```
3003
2827
 
3004
2828
  #### Returns a corporation's wallet balance
@@ -3029,8 +2853,6 @@ wars.war_ids.size # => 2000
3029
2853
 
3030
2854
  wars.war_ids.first # => 629019
3031
2855
 
3032
- wars.etag # => "1e90be747fd163e5d74ab7a949bf8ad3f1d6ecd365cac31c534ab046"
3033
-
3034
2856
  # with max_war_id
3035
2857
 
3036
2858
  options = { max_war_id: 10 }
@@ -3040,8 +2862,6 @@ wars = EveOnline::ESI::Wars.new(options)
3040
2862
  wars.war_ids.size # => 9
3041
2863
 
3042
2864
  wars.war_ids.first # => 9
3043
-
3044
- wars.etag # => "f1c28227847464613c1cb82dfc8a8c859b7b6857fad2c2a54c562812"
3045
2865
  ```
3046
2866
 
3047
2867
  #### Get war information
@@ -3102,8 +2922,6 @@ defender.alliance_id # => 99008228
3102
2922
  defender.corporation_id # => nil
3103
2923
  defender.isk_destroyed # => 0.0
3104
2924
  defender.ships_killed # => 0
3105
-
3106
- war.etag # => "3933b0baeaac259101f55fdad865c5590deeb9e1613fb2344b3db293"
3107
2925
  ```
3108
2926
 
3109
2927
  #### List kills for a war
@@ -3128,8 +2946,6 @@ killmail.as_json # => {:killmail_hash=>"07f7ef1d7f6090e78d8e85b4a98e680f67b5e9d5
3128
2946
 
3129
2947
  killmail.killmail_hash # => "07f7ef1d7f6090e78d8e85b4a98e680f67b5e9d5"
3130
2948
  killmail.killmail_id # => 72410059
3131
-
3132
- war_killmails.etag # => "12ee36a10ee0dbfb7f6691e1b27c8400fdca645f15e70ebc0a94b7ae"
3133
2949
  ```
3134
2950
 
3135
2951
  ## Exceptions
@@ -3151,7 +2967,6 @@ end
3151
2967
  List of exceptions:
3152
2968
 
3153
2969
  * `EveOnline::Exceptions::NoContent` when response returns status 204 without body.
3154
- * `EveOnline::Exceptions::NotModified` when response returns status 304 without body.
3155
2970
  * `EveOnline::Exceptions::BadRequest` when response returns status 400.
3156
2971
  * `EveOnline::Exceptions::Unauthorized` when response returns status 401.
3157
2972
  * `EveOnline::Exceptions::Forbidden` when response returns status 403.