eve-esi-types 2.2.4 → 2.2.6
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/README.md +1 -1
- package/package.json +1 -1
- package/tsconfig.json +2 -1
- package/v2/extra-types.d.ts +0 -147
- package/v2/index.d.ts +3 -1151
- package/v2/response-map.d.ts +959 -0
- package/v2/types-index.d.ts +195 -0
- package/v2/get_characters_character_id_bookmarks_folders_ok.d.ts +0 -24
- package/v2/get_characters_character_id_bookmarks_ok.d.ts +0 -75
- package/v2/get_corporations_corporation_id_bookmarks_folders_ok.d.ts +0 -28
- package/v2/get_corporations_corporation_id_bookmarks_ok.d.ts +0 -75
package/README.md
CHANGED
|
@@ -26,8 +26,8 @@ $ node v2.mjs
|
|
|
26
26
|
export declare function fire<
|
|
27
27
|
M extends TESIEntryMethod,
|
|
28
28
|
EP extends keyof TESIResponseOKMap[M],
|
|
29
|
+
P2 extends IfParameterizedPath<EP, Opt>,
|
|
29
30
|
Opt extends IdentifyParameters<TESIResponseOKMap[M][EP], ESIRequestOptions>,
|
|
30
|
-
P2 extends IsParameterizedPath<EP, number | number[], Opt>,
|
|
31
31
|
R extends InferESIResponseResult<M, EP>
|
|
32
32
|
>(mthd: M, endp: EP, pathParams?: P2, opt?: Opt): Promise<R>;
|
|
33
33
|
```
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
package/v2/extra-types.d.ts
CHANGED
|
@@ -438,13 +438,6 @@ type PostUniverseNamesIds = number[];
|
|
|
438
438
|
|
|
439
439
|
|
|
440
440
|
/*! query types */
|
|
441
|
-
/* get_characters_character_id_calendar, from_event query type */
|
|
442
|
-
|
|
443
|
-
/**
|
|
444
|
-
* The event ID to retrieve events from
|
|
445
|
-
*/
|
|
446
|
-
type GetCharactersCharacterIdCalendarFromEvent = number;
|
|
447
|
-
|
|
448
441
|
/* delete_characters_character_id_contacts, contact_ids query type */
|
|
449
442
|
|
|
450
443
|
/**
|
|
@@ -464,20 +457,6 @@ type DeleteCharactersCharacterIdContactsContactIds = number[];
|
|
|
464
457
|
*/
|
|
465
458
|
type PostCharactersCharacterIdContactsLabelIds = number[];
|
|
466
459
|
|
|
467
|
-
/* post_characters_character_id_contacts, standing query type */
|
|
468
|
-
|
|
469
|
-
/**
|
|
470
|
-
* Standing for the contact
|
|
471
|
-
*/
|
|
472
|
-
type PostCharactersCharacterIdContactsStanding = number;
|
|
473
|
-
|
|
474
|
-
/* post_characters_character_id_contacts, watched query type */
|
|
475
|
-
|
|
476
|
-
/**
|
|
477
|
-
* Whether the contact should be watched, note this is only effective on characters
|
|
478
|
-
*/
|
|
479
|
-
type PostCharactersCharacterIdContactsWatched = boolean;
|
|
480
|
-
|
|
481
460
|
/* put_characters_character_id_contacts, label_ids query type */
|
|
482
461
|
|
|
483
462
|
/**
|
|
@@ -487,27 +466,6 @@ type PostCharactersCharacterIdContactsWatched = boolean;
|
|
|
487
466
|
*/
|
|
488
467
|
type PutCharactersCharacterIdContactsLabelIds = number[];
|
|
489
468
|
|
|
490
|
-
/* put_characters_character_id_contacts, standing query type */
|
|
491
|
-
|
|
492
|
-
/**
|
|
493
|
-
* Standing for the contact
|
|
494
|
-
*/
|
|
495
|
-
type PutCharactersCharacterIdContactsStanding = number;
|
|
496
|
-
|
|
497
|
-
/* put_characters_character_id_contacts, watched query type */
|
|
498
|
-
|
|
499
|
-
/**
|
|
500
|
-
* Whether the contact should be watched, note this is only effective on characters
|
|
501
|
-
*/
|
|
502
|
-
type PutCharactersCharacterIdContactsWatched = boolean;
|
|
503
|
-
|
|
504
|
-
/* get_characters_character_id_industry_jobs, include_completed query type */
|
|
505
|
-
|
|
506
|
-
/**
|
|
507
|
-
* Whether to retrieve completed character industry jobs. Only includes jobs from the past 90 days
|
|
508
|
-
*/
|
|
509
|
-
type GetCharactersCharacterIdIndustryJobsIncludeCompleted = boolean;
|
|
510
|
-
|
|
511
469
|
/* get_characters_character_id_mail, labels query type */
|
|
512
470
|
|
|
513
471
|
/**
|
|
@@ -518,13 +476,6 @@ type GetCharactersCharacterIdIndustryJobsIncludeCompleted = boolean;
|
|
|
518
476
|
*/
|
|
519
477
|
type GetCharactersCharacterIdMailLabels = [number, ...number[]];
|
|
520
478
|
|
|
521
|
-
/* get_characters_character_id_mail, last_mail_id query type */
|
|
522
|
-
|
|
523
|
-
/**
|
|
524
|
-
* List only mail with an ID lower than the given ID, if present
|
|
525
|
-
*/
|
|
526
|
-
type GetCharactersCharacterIdMailLastMailId = number;
|
|
527
|
-
|
|
528
479
|
/* get_characters_character_id_search, categories query type */
|
|
529
480
|
type GetCharactersCharacterIdSearchCategory =
|
|
530
481
|
| "agent"
|
|
@@ -555,48 +506,6 @@ type GetCharactersCharacterIdSearchCategories = GetCharactersCharacterIdSearchCa
|
|
|
555
506
|
*/
|
|
556
507
|
type GetCharactersCharacterIdSearchSearch = string;
|
|
557
508
|
|
|
558
|
-
/* get_characters_character_id_search, strict query type */
|
|
559
|
-
|
|
560
|
-
/**
|
|
561
|
-
* Whether the search should be a strict match
|
|
562
|
-
*/
|
|
563
|
-
type GetCharactersCharacterIdSearchStrict = boolean;
|
|
564
|
-
|
|
565
|
-
/* get_characters_character_id_wallet_transactions, from_id query type */
|
|
566
|
-
|
|
567
|
-
/**
|
|
568
|
-
* Only show transactions happened before the one referenced by this id
|
|
569
|
-
*/
|
|
570
|
-
type GetCharactersCharacterIdWalletTransactionsFromId = number;
|
|
571
|
-
|
|
572
|
-
/* get_corporations_corporation_id_industry_jobs, include_completed query type */
|
|
573
|
-
|
|
574
|
-
/**
|
|
575
|
-
* Whether to retrieve completed corporation industry jobs. Only includes jobs from the past 90 days
|
|
576
|
-
*/
|
|
577
|
-
type GetCorporationsCorporationIdIndustryJobsIncludeCompleted = boolean;
|
|
578
|
-
|
|
579
|
-
/* get_corporations_corporation_id_starbases_starbase_id, system_id query type */
|
|
580
|
-
|
|
581
|
-
/**
|
|
582
|
-
* The solar system this starbase (POS) is located in,
|
|
583
|
-
*/
|
|
584
|
-
type GetCorporationsCorporationIdStarbasesStarbaseIdSystemId = number;
|
|
585
|
-
|
|
586
|
-
/* get_corporations_corporation_id_wallets_division_transactions, from_id query type */
|
|
587
|
-
|
|
588
|
-
/**
|
|
589
|
-
* Only show journal entries happened before the transaction referenced by this id
|
|
590
|
-
*/
|
|
591
|
-
type GetCorporationsCorporationIdWalletsDivisionTransactionsFromId = number;
|
|
592
|
-
|
|
593
|
-
/* get_markets_region_id_history, type_id query type */
|
|
594
|
-
|
|
595
|
-
/**
|
|
596
|
-
* Return statistics for this type
|
|
597
|
-
*/
|
|
598
|
-
type GetMarketsRegionIdHistoryTypeId = number;
|
|
599
|
-
|
|
600
509
|
/* get_markets_region_id_orders, order_type query type */
|
|
601
510
|
|
|
602
511
|
/**
|
|
@@ -604,13 +513,6 @@ type GetMarketsRegionIdHistoryTypeId = number;
|
|
|
604
513
|
*/
|
|
605
514
|
type GetMarketsRegionIdOrdersOrderType = "buy" | "sell" | "all";
|
|
606
515
|
|
|
607
|
-
/* get_markets_region_id_orders, type_id query type */
|
|
608
|
-
|
|
609
|
-
/**
|
|
610
|
-
* Return orders only for this type
|
|
611
|
-
*/
|
|
612
|
-
type GetMarketsRegionIdOrdersTypeId = number;
|
|
613
|
-
|
|
614
516
|
/* get_route_origin_destination, avoid query type */
|
|
615
517
|
|
|
616
518
|
/**
|
|
@@ -636,58 +538,9 @@ type GetRouteOriginDestinationConnections = [number, number][];
|
|
|
636
538
|
*/
|
|
637
539
|
type GetRouteOriginDestinationFlag = "shortest" | "secure" | "insecure";
|
|
638
540
|
|
|
639
|
-
/* post_ui_autopilot_waypoint, add_to_beginning query type */
|
|
640
|
-
|
|
641
|
-
/**
|
|
642
|
-
* Whether this solar system should be added to the beginning of all waypoints
|
|
643
|
-
*/
|
|
644
|
-
type PostUiAutopilotWaypointAddToBeginning = boolean;
|
|
645
|
-
|
|
646
|
-
/* post_ui_autopilot_waypoint, clear_other_waypoints query type */
|
|
647
|
-
|
|
648
|
-
/**
|
|
649
|
-
* Whether clean other waypoints beforing adding this one
|
|
650
|
-
*/
|
|
651
|
-
type PostUiAutopilotWaypointClearOtherWaypoints = boolean;
|
|
652
|
-
|
|
653
|
-
/* post_ui_autopilot_waypoint, destination_id query type */
|
|
654
|
-
|
|
655
|
-
/**
|
|
656
|
-
* The destination to travel to, can be solar system, station or structure's id
|
|
657
|
-
*/
|
|
658
|
-
type PostUiAutopilotWaypointDestinationId = number;
|
|
659
|
-
|
|
660
|
-
/* post_ui_openwindow_contract, contract_id query type */
|
|
661
|
-
|
|
662
|
-
/**
|
|
663
|
-
* The contract to open
|
|
664
|
-
*/
|
|
665
|
-
type PostUiOpenwindowContractContractId = number;
|
|
666
|
-
|
|
667
|
-
/* post_ui_openwindow_information, target_id query type */
|
|
668
|
-
|
|
669
|
-
/**
|
|
670
|
-
* The target to open
|
|
671
|
-
*/
|
|
672
|
-
type PostUiOpenwindowInformationTargetId = number;
|
|
673
|
-
|
|
674
|
-
/* post_ui_openwindow_marketdetails, type_id query type */
|
|
675
|
-
|
|
676
|
-
/**
|
|
677
|
-
* The item type to open in market window
|
|
678
|
-
*/
|
|
679
|
-
type PostUiOpenwindowMarketdetailsTypeId = number;
|
|
680
|
-
|
|
681
541
|
/* get_universe_structures, filter query type */
|
|
682
542
|
|
|
683
543
|
/**
|
|
684
544
|
* Only list public structures that have this service online
|
|
685
545
|
*/
|
|
686
546
|
type GetUniverseStructuresFilter = "market" | "manufacturing_basic";
|
|
687
|
-
|
|
688
|
-
/* get_wars, max_war_id query type */
|
|
689
|
-
|
|
690
|
-
/**
|
|
691
|
-
* Only return wars with ID smaller than this
|
|
692
|
-
*/
|
|
693
|
-
type GetWarsMaxWarId = number;
|