@hasagi/types 15.22.1 → 16.1.1
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/dist/lcu-endpoints.d.ts +86 -10
- package/dist/lcu-events.d.ts +17 -398
- package/dist/lcu-types.d.ts +1328 -293
- package/package.json +3 -3
package/dist/lcu-types.d.ts
CHANGED
|
@@ -482,6 +482,7 @@ export interface ChemtechShoppe_DropsMultiRollResultsDto {
|
|
|
482
482
|
|
|
483
483
|
export interface ChemtechShoppe_DropsRollResultsDto {
|
|
484
484
|
fulfillments: unknown[]
|
|
485
|
+
rolledFulfillments: ChemtechShoppe_RolledFulfillmentWrapperDto[]
|
|
485
486
|
}
|
|
486
487
|
|
|
487
488
|
export interface ChemtechShoppe_FinalPurchaseUnitDto {
|
|
@@ -636,6 +637,12 @@ export interface ChemtechShoppe_RefundResponseDto {
|
|
|
636
637
|
notes: string[]
|
|
637
638
|
}
|
|
638
639
|
|
|
640
|
+
export interface ChemtechShoppe_RolledFulfillmentWrapperDto {
|
|
641
|
+
nodeId: string
|
|
642
|
+
nodeName: string
|
|
643
|
+
fulfillment: unknown
|
|
644
|
+
}
|
|
645
|
+
|
|
639
646
|
export interface ChemtechShoppe_RotatingStoreMetadataDto {
|
|
640
647
|
slots: ChemtechShoppe_RotatingStoreSlotMetadataDto[]
|
|
641
648
|
currRotationStartTime: string
|
|
@@ -709,200 +716,588 @@ export interface ChemtechShoppe_VelocityLimitDeltaDto {
|
|
|
709
716
|
remaining: number
|
|
710
717
|
}
|
|
711
718
|
|
|
712
|
-
export interface
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
tournamentName: string
|
|
718
|
-
tier: string
|
|
719
|
-
/** @format int64 */
|
|
720
|
-
bracket: number
|
|
721
|
-
/** @format int32 */
|
|
722
|
-
seasonId: number
|
|
723
|
-
theme: string
|
|
724
|
-
/** @format int64 */
|
|
725
|
-
rosterId: number
|
|
726
|
-
teamName: string
|
|
727
|
-
teamShortName: string
|
|
728
|
-
teamLogoName: string
|
|
729
|
-
teamLogoChromaId: string
|
|
730
|
-
playerUUIDs: string[]
|
|
731
|
-
rewardSpec: ClashRewardSpec
|
|
719
|
+
export interface ChemtechShoppeV2_BulkPurchaseRequestDto {
|
|
720
|
+
bulkPurchaseId: string
|
|
721
|
+
purchaserId: string
|
|
722
|
+
source: string
|
|
723
|
+
subPurchaseRequests: ChemtechShoppeV2_SubPurchaseRequestDto[]
|
|
732
724
|
}
|
|
733
725
|
|
|
734
|
-
export interface
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
reason: string
|
|
738
|
-
metaData: Record<string, string>
|
|
726
|
+
export interface ChemtechShoppeV2_BulkPurchaseResponseDto {
|
|
727
|
+
bulkPurchaseId: string
|
|
728
|
+
purchases: ChemtechShoppeV2_PurchaseDto[]
|
|
739
729
|
}
|
|
740
730
|
|
|
741
|
-
export interface
|
|
731
|
+
export interface ChemtechShoppeV2_CatalogEntryDto {
|
|
732
|
+
id: string
|
|
742
733
|
name: string
|
|
743
|
-
|
|
744
|
-
|
|
734
|
+
productId: string
|
|
735
|
+
purchaseUnits: ChemtechShoppeV2_PurchaseUnitDto[]
|
|
736
|
+
displayMetadata: unknown
|
|
737
|
+
prerequisites: ChemtechShoppeV2_PrerequisiteDto[]
|
|
738
|
+
purchaseVisibility: string
|
|
739
|
+
refundRule: string
|
|
740
|
+
giftRule: string
|
|
741
|
+
purchaseLimits: ChemtechShoppeV2_VelocityLimitDeltaDto[]
|
|
742
|
+
refundLimits: ChemtechShoppeV2_VelocityLimitDeltaDto[]
|
|
743
|
+
endTime: string
|
|
745
744
|
}
|
|
746
745
|
|
|
747
|
-
export interface
|
|
748
|
-
|
|
749
|
-
|
|
746
|
+
export interface ChemtechShoppeV2_DropTableOddsTreeDto {
|
|
747
|
+
nodeHierarchy: Record<string, ChemtechShoppeV2_DropTableOddsTreeHierarchyDto>
|
|
748
|
+
nodes: Record<string, ChemtechShoppeV2_DropTableOddsTreeNodeDto>
|
|
749
|
+
nodeTraKeys: Record<string, ChemtechShoppeV2_NodeTraKeyDto>
|
|
750
|
+
rootNodeId: string
|
|
751
|
+
templateName: string
|
|
750
752
|
}
|
|
751
753
|
|
|
752
|
-
export interface
|
|
753
|
-
|
|
754
|
-
rewardSpec: ClashRewardSpec
|
|
754
|
+
export interface ChemtechShoppeV2_DropTableOddsTreeHierarchyDto {
|
|
755
|
+
edges: ChemtechShoppeV2_DropTableOddsTreeHierarchyEdgeDto[]
|
|
755
756
|
}
|
|
756
757
|
|
|
757
|
-
export
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
grant: ClashRewardTime
|
|
763
|
-
show: ClashRewardTime
|
|
758
|
+
export interface ChemtechShoppeV2_DropTableOddsTreeHierarchyEdgeDto {
|
|
759
|
+
targetNodeId: string
|
|
760
|
+
/** @format double */
|
|
761
|
+
odds: number
|
|
762
|
+
type: string
|
|
764
763
|
}
|
|
765
764
|
|
|
766
|
-
export interface
|
|
767
|
-
|
|
768
|
-
cup: string
|
|
769
|
-
gem: string
|
|
770
|
-
tier: string
|
|
771
|
-
bracket: string
|
|
772
|
-
theme: string
|
|
773
|
-
level: string
|
|
774
|
-
seasonId: string
|
|
765
|
+
export interface ChemtechShoppeV2_DropTableOddsTreeNodeDto {
|
|
766
|
+
id: string
|
|
775
767
|
name: string
|
|
776
|
-
quantity: string
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
export type ClashRewardTime = "EOT" | "EOB" | "EOG" | "NONE"
|
|
780
|
-
|
|
781
|
-
export type ClashRewardType = "TOC" | "VP" | "LOOT" | "LOGO" | "FRAME" | "FLAG" | "TROPHY"
|
|
782
|
-
|
|
783
|
-
export interface ClashSeasonRewardResult {
|
|
784
|
-
/** @format uint64 */
|
|
785
|
-
playerId: number
|
|
786
|
-
/** @format int32 */
|
|
787
|
-
seasonId: number
|
|
788
768
|
/** @format int32 */
|
|
789
|
-
|
|
790
|
-
|
|
769
|
+
displayPriority: number
|
|
770
|
+
sourceId: string
|
|
791
771
|
/** @format int32 */
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
rewards: ClashRewardDefinition[]
|
|
772
|
+
rewardQuantity: number
|
|
773
|
+
type: string
|
|
795
774
|
}
|
|
796
775
|
|
|
797
|
-
export
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
subscribed: boolean
|
|
803
|
-
authToken: string
|
|
776
|
+
export interface ChemtechShoppeV2_DropTableOddsTreeResponseDto {
|
|
777
|
+
data: ChemtechShoppeV2_DropTableOddsTreeDto
|
|
778
|
+
paging: ChemtechShoppeV2_PagingDto
|
|
779
|
+
stats: ChemtechShoppeV2_StatsDto
|
|
780
|
+
notes: string[]
|
|
804
781
|
}
|
|
805
782
|
|
|
806
|
-
export interface
|
|
807
|
-
|
|
808
|
-
contentBuildId: number
|
|
809
|
-
/** @format int32 */
|
|
810
|
-
codeBuildId: number
|
|
811
|
-
/** @format int32 */
|
|
812
|
-
gameDataBuildId: number
|
|
813
|
-
branch: string
|
|
814
|
-
branchFull: string
|
|
815
|
-
gameBranch: string
|
|
816
|
-
gameBranchFull: string
|
|
817
|
-
patchline: string
|
|
818
|
-
version: string
|
|
819
|
-
patchlineVisibleName: string
|
|
783
|
+
export interface ChemtechShoppeV2_DropsMultiRollResultsDto {
|
|
784
|
+
rolls: ChemtechShoppeV2_DropsRollResultsDto[]
|
|
820
785
|
}
|
|
821
786
|
|
|
822
|
-
export interface
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
/** @format int64 */
|
|
826
|
-
updateTime: number
|
|
787
|
+
export interface ChemtechShoppeV2_DropsRollResultsDto {
|
|
788
|
+
fulfillments: unknown[]
|
|
789
|
+
rolledFulfillments: ChemtechShoppeV2_RolledFulfillmentWrapperDto[]
|
|
827
790
|
}
|
|
828
791
|
|
|
829
|
-
export interface
|
|
830
|
-
|
|
831
|
-
|
|
792
|
+
export interface ChemtechShoppeV2_FinalPurchaseUnitDto {
|
|
793
|
+
payments: ChemtechShoppeV2_PaymentDto[]
|
|
794
|
+
fulfillment: ChemtechShoppeV2_FulfillmentDto
|
|
832
795
|
}
|
|
833
796
|
|
|
834
|
-
export interface
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
797
|
+
export interface ChemtechShoppeV2_FulfillmentDto {
|
|
798
|
+
/** @format int64 */
|
|
799
|
+
delta: number
|
|
800
|
+
/** @format int64 */
|
|
801
|
+
finalDelta: number
|
|
802
|
+
name: string
|
|
803
|
+
ownershipCompensationMode: string
|
|
804
|
+
/** @format int64 */
|
|
805
|
+
maxQuantity: number
|
|
806
|
+
/** @format int64 */
|
|
807
|
+
ownedQuantity: number
|
|
808
|
+
counterId: string
|
|
809
|
+
displayMetadata: unknown
|
|
810
|
+
dropTableId: string
|
|
811
|
+
results: ChemtechShoppeV2_DropsMultiRollResultsDto
|
|
812
|
+
itemTypeId: string
|
|
813
|
+
itemId: string
|
|
814
|
+
itemPayload: Record<string, unknown>
|
|
815
|
+
itemInstanceId: string
|
|
816
|
+
tierTypeId: string
|
|
817
|
+
progressionCounterId: string
|
|
818
|
+
currencyId: string
|
|
819
|
+
subCurrencyDeltas: Record<string, number>
|
|
820
|
+
location: string
|
|
821
|
+
payload: unknown
|
|
822
|
+
target: string
|
|
841
823
|
}
|
|
842
824
|
|
|
843
|
-
export
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
825
|
+
export interface ChemtechShoppeV2_GiftDto {
|
|
826
|
+
id: string
|
|
827
|
+
idempotencyId: string
|
|
828
|
+
productId: string
|
|
829
|
+
purchaserId: string
|
|
830
|
+
recipientId: string
|
|
831
|
+
storeId: string
|
|
832
|
+
storeName: string
|
|
833
|
+
catalogEntryId: string
|
|
834
|
+
catalogEntryName: string
|
|
835
|
+
purchaseUnits: ChemtechShoppeV2_FinalPurchaseUnitDto[]
|
|
836
|
+
purchaserTransactionId: string
|
|
837
|
+
createdTime: string
|
|
838
|
+
state: string
|
|
839
|
+
source: string
|
|
840
|
+
refundRule: string
|
|
841
|
+
messageToRecipient: string
|
|
842
|
+
catalogEntry: ChemtechShoppeV2_CatalogEntryDto
|
|
843
|
+
recipientTransactionId: string
|
|
844
|
+
expiryTime: string
|
|
845
|
+
completedTime: string
|
|
846
|
+
refund: ChemtechShoppeV2_GiftRefundDto
|
|
847
|
+
recipientMailId: string
|
|
848
|
+
purchaserMailId: string
|
|
849
|
+
/** @format int32 */
|
|
850
|
+
quantity: number
|
|
849
851
|
}
|
|
850
852
|
|
|
851
|
-
export
|
|
853
|
+
export interface ChemtechShoppeV2_GiftPurchaserEligibilityV2ResponseDto {
|
|
854
|
+
validationFailures: string[]
|
|
855
|
+
}
|
|
852
856
|
|
|
853
|
-
export interface
|
|
854
|
-
|
|
855
|
-
configRoot: string
|
|
856
|
-
dataRoot: string
|
|
857
|
-
localSettingsPath: string
|
|
858
|
-
privateSettingsPath: string
|
|
857
|
+
export interface ChemtechShoppeV2_GiftPurchaserRecipientEligibilityRequestV2Dto {
|
|
858
|
+
catalogEntryIds: unknown
|
|
859
859
|
}
|
|
860
860
|
|
|
861
|
-
export interface
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
entitlements: string[]
|
|
861
|
+
export interface ChemtechShoppeV2_GiftPurchaserRecipientEligibilityResponseV2Dto {
|
|
862
|
+
purchaserValidationFailures: string[]
|
|
863
|
+
recipientValidationFailures: string[]
|
|
864
|
+
catalogEntryValidationFailures: unknown
|
|
865
|
+
finalizedCatalogEntries: unknown
|
|
867
866
|
}
|
|
868
867
|
|
|
869
|
-
export interface
|
|
870
|
-
|
|
871
|
-
|
|
868
|
+
export interface ChemtechShoppeV2_GiftRecipientsEligibilityV2ResponseDto {
|
|
869
|
+
validRecipientIds: string[]
|
|
870
|
+
invalidRecipients: ChemtechShoppeV2_InvalidGiftRecipientDto[]
|
|
872
871
|
}
|
|
873
872
|
|
|
874
|
-
export
|
|
873
|
+
export interface ChemtechShoppeV2_GiftRefundDto {
|
|
874
|
+
id: string
|
|
875
|
+
giftId: string
|
|
876
|
+
createdTime: string
|
|
877
|
+
state: string
|
|
878
|
+
source: string
|
|
879
|
+
refundReason: string
|
|
880
|
+
completedTime: string
|
|
881
|
+
}
|
|
875
882
|
|
|
876
|
-
export interface
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
883
|
+
export interface ChemtechShoppeV2_GiftRequestDto {
|
|
884
|
+
storeId: string
|
|
885
|
+
catalogEntryId: string
|
|
886
|
+
paymentOptionsKeys: string[]
|
|
887
|
+
purchaserId: string
|
|
888
|
+
recipientId: string
|
|
889
|
+
idempotencyId: string
|
|
890
|
+
/** @format int64 */
|
|
891
|
+
quantity: number
|
|
892
|
+
messageToRecipient: string
|
|
893
|
+
source: string
|
|
894
|
+
customInventoryLocation: string
|
|
882
895
|
}
|
|
883
896
|
|
|
884
|
-
export interface
|
|
885
|
-
|
|
886
|
-
|
|
897
|
+
export interface ChemtechShoppeV2_InvalidGiftRecipientDto {
|
|
898
|
+
puuid: string
|
|
899
|
+
validationFailures: string[]
|
|
887
900
|
}
|
|
888
901
|
|
|
889
|
-
export interface
|
|
890
|
-
|
|
891
|
-
patchlineId: string
|
|
892
|
-
version: string
|
|
893
|
-
isInternal: boolean
|
|
894
|
-
connections: ClientConfigAuthenticatedConnection[]
|
|
902
|
+
export interface ChemtechShoppeV2_NodeTraKeyDto {
|
|
903
|
+
nameTraKey: string
|
|
895
904
|
}
|
|
896
905
|
|
|
897
|
-
export
|
|
906
|
+
export interface ChemtechShoppeV2_PagingDto {
|
|
907
|
+
/** @format int32 */
|
|
908
|
+
offset: number
|
|
909
|
+
/** @format int32 */
|
|
910
|
+
limit: number
|
|
911
|
+
/** @format int32 */
|
|
912
|
+
maxLimit: number
|
|
913
|
+
/** @format int32 */
|
|
914
|
+
total: number
|
|
915
|
+
previous: string
|
|
916
|
+
next: string
|
|
917
|
+
}
|
|
898
918
|
|
|
899
|
-
export interface
|
|
900
|
-
|
|
901
|
-
delta:
|
|
902
|
-
|
|
919
|
+
export interface ChemtechShoppeV2_PaymentDto {
|
|
920
|
+
/** @format int64 */
|
|
921
|
+
delta: number
|
|
922
|
+
/** @format int64 */
|
|
923
|
+
finalDelta: number
|
|
924
|
+
name: string
|
|
925
|
+
/** @format int64 */
|
|
926
|
+
discountedDelta: number
|
|
927
|
+
itemTypeId: string
|
|
928
|
+
itemId: string
|
|
929
|
+
currencyId: string
|
|
930
|
+
/** @format double */
|
|
931
|
+
discountPercent: number
|
|
903
932
|
}
|
|
904
933
|
|
|
905
|
-
export
|
|
934
|
+
export interface ChemtechShoppeV2_PaymentOptionDto {
|
|
935
|
+
key: string
|
|
936
|
+
payments: ChemtechShoppeV2_PaymentDto[]
|
|
937
|
+
}
|
|
938
|
+
|
|
939
|
+
export interface ChemtechShoppeV2_PrerequisiteDto {
|
|
940
|
+
status: string
|
|
941
|
+
itemTypeId: string
|
|
942
|
+
itemId: string
|
|
943
|
+
/** @format int64 */
|
|
944
|
+
requiredQuantity: number
|
|
945
|
+
/** @format int64 */
|
|
946
|
+
ownedQuantity: number
|
|
947
|
+
catalogEntry: unknown
|
|
948
|
+
milestoneId: string
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
export interface ChemtechShoppeV2_PurchaseDto {
|
|
952
|
+
id: string
|
|
953
|
+
idempotencyId: string
|
|
954
|
+
productId: string
|
|
955
|
+
purchaserId: string
|
|
956
|
+
recipientId: string
|
|
957
|
+
storeId: string
|
|
958
|
+
storeName: string
|
|
959
|
+
catalogEntryId: string
|
|
960
|
+
catalogEntryName: string
|
|
961
|
+
purchaseUnits: ChemtechShoppeV2_FinalPurchaseUnitDto[]
|
|
962
|
+
createdTime: string
|
|
963
|
+
purchaseState: string
|
|
964
|
+
source: string
|
|
965
|
+
purchaseVisibility: string
|
|
966
|
+
refundRule: string
|
|
967
|
+
completedTime: string
|
|
968
|
+
refund: ChemtechShoppeV2_RefundDto
|
|
969
|
+
/** @format int32 */
|
|
970
|
+
quantity: number
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
export interface ChemtechShoppeV2_PurchaseRequestDto {
|
|
974
|
+
storeId: string
|
|
975
|
+
catalogEntryId: string
|
|
976
|
+
paymentOptionsKeys: string[]
|
|
977
|
+
idempotencyId: string
|
|
978
|
+
/** @format int64 */
|
|
979
|
+
quantity: number
|
|
980
|
+
customInventoryLocation: string
|
|
981
|
+
purchaserId: string
|
|
982
|
+
source: string
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
export interface ChemtechShoppeV2_PurchaseResponseDto {
|
|
986
|
+
data: ChemtechShoppeV2_PurchaseDto
|
|
987
|
+
paging: ChemtechShoppeV2_PagingDto
|
|
988
|
+
stats: ChemtechShoppeV2_StatsDto
|
|
989
|
+
notes: string[]
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
export interface ChemtechShoppeV2_PurchaseUnitDto {
|
|
993
|
+
paymentOptions: ChemtechShoppeV2_PaymentOptionDto[]
|
|
994
|
+
fulfillment: ChemtechShoppeV2_FulfillmentDto
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
export interface ChemtechShoppeV2_PurchasesResponseDto {
|
|
998
|
+
data: ChemtechShoppeV2_PurchaseDto[]
|
|
999
|
+
paging: ChemtechShoppeV2_PagingDto
|
|
1000
|
+
stats: ChemtechShoppeV2_StatsDto
|
|
1001
|
+
notes: string[]
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
export interface ChemtechShoppeV2_RefundDto {
|
|
1005
|
+
id: string
|
|
1006
|
+
purchaseId: string
|
|
1007
|
+
createdTime: string
|
|
1008
|
+
state: string
|
|
1009
|
+
completedTime: string
|
|
1010
|
+
source: string
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
export interface ChemtechShoppeV2_RefundRequestDto {
|
|
1014
|
+
purchaseId: string
|
|
1015
|
+
source: string
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
export interface ChemtechShoppeV2_RefundResponseDto {
|
|
1019
|
+
data: ChemtechShoppeV2_RefundDto
|
|
1020
|
+
paging: ChemtechShoppeV2_PagingDto
|
|
1021
|
+
stats: ChemtechShoppeV2_StatsDto
|
|
1022
|
+
notes: string[]
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
export interface ChemtechShoppeV2_RolledFulfillmentWrapperDto {
|
|
1026
|
+
nodeId: string
|
|
1027
|
+
nodeName: string
|
|
1028
|
+
fulfillment: unknown
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
export interface ChemtechShoppeV2_RotatingStoreMetadataDto {
|
|
1032
|
+
slots: ChemtechShoppeV2_RotatingStoreSlotMetadataDto[]
|
|
1033
|
+
currRotationStartTime: string
|
|
1034
|
+
nextRotationStartTime: string
|
|
1035
|
+
rotationCadence: string
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
export interface ChemtechShoppeV2_RotatingStoreSlotMetadataDto {
|
|
1039
|
+
/** @format int64 */
|
|
1040
|
+
selectionCount: number
|
|
1041
|
+
catalogEntryIds: string[]
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
export interface ChemtechShoppeV2_StatsDto {
|
|
1045
|
+
/** @format int64 */
|
|
1046
|
+
durationMs: number
|
|
1047
|
+
}
|
|
1048
|
+
|
|
1049
|
+
export interface ChemtechShoppeV2_StoreDigestDto {
|
|
1050
|
+
id: string
|
|
1051
|
+
productId: string
|
|
1052
|
+
name: string
|
|
1053
|
+
displayMetaData: unknown
|
|
1054
|
+
startTime: string
|
|
1055
|
+
endTime: string
|
|
1056
|
+
rotatingStoreMetadata: ChemtechShoppeV2_RotatingStoreMetadataDto
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
export interface ChemtechShoppeV2_StoreDigestsDto {
|
|
1060
|
+
digests: ChemtechShoppeV2_StoreDigestDto[]
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
export interface ChemtechShoppeV2_StoreDigestsResponseDto {
|
|
1064
|
+
data: ChemtechShoppeV2_StoreDigestsDto
|
|
1065
|
+
paging: ChemtechShoppeV2_PagingDto
|
|
1066
|
+
stats: ChemtechShoppeV2_StatsDto
|
|
1067
|
+
notes: string[]
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
export interface ChemtechShoppeV2_StoreDto {
|
|
1071
|
+
id: string
|
|
1072
|
+
type: string
|
|
1073
|
+
productId: string
|
|
1074
|
+
name: string
|
|
1075
|
+
catalogEntries: ChemtechShoppeV2_CatalogEntryDto[]
|
|
1076
|
+
displayMetadata: unknown
|
|
1077
|
+
startTime: string
|
|
1078
|
+
endTime: string
|
|
1079
|
+
rotatingStoreMetadata: ChemtechShoppeV2_RotatingStoreMetadataDto
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
export interface ChemtechShoppeV2_StoresResponseDto {
|
|
1083
|
+
data: ChemtechShoppeV2_StoreDto[]
|
|
1084
|
+
paging: ChemtechShoppeV2_PagingDto
|
|
1085
|
+
stats: ChemtechShoppeV2_StatsDto
|
|
1086
|
+
notes: string[]
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
export interface ChemtechShoppeV2_SubPurchaseRequestDto {
|
|
1090
|
+
storeId: string
|
|
1091
|
+
catalogEntryId: string
|
|
1092
|
+
paymentOptionsKeys: string[]
|
|
1093
|
+
idempotencyId: string
|
|
1094
|
+
/** @format int64 */
|
|
1095
|
+
quantity: number
|
|
1096
|
+
customInventoryLocation: string
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
export interface ChemtechShoppeV2_VelocityLimitDeltaDto {
|
|
1100
|
+
ruleId: string
|
|
1101
|
+
/** @format int64 */
|
|
1102
|
+
delta: number
|
|
1103
|
+
/** @format int64 */
|
|
1104
|
+
remaining: number
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
export interface ClashEventData {
|
|
1108
|
+
earnedDate: string
|
|
1109
|
+
rewardType: string
|
|
1110
|
+
/** @format int64 */
|
|
1111
|
+
tournamentId: number
|
|
1112
|
+
tournamentName: string
|
|
1113
|
+
tier: string
|
|
1114
|
+
/** @format int64 */
|
|
1115
|
+
bracket: number
|
|
1116
|
+
/** @format int32 */
|
|
1117
|
+
seasonId: number
|
|
1118
|
+
theme: string
|
|
1119
|
+
/** @format int64 */
|
|
1120
|
+
rosterId: number
|
|
1121
|
+
teamName: string
|
|
1122
|
+
teamShortName: string
|
|
1123
|
+
teamLogoName: string
|
|
1124
|
+
teamLogoChromaId: string
|
|
1125
|
+
playerUUIDs: string[]
|
|
1126
|
+
rewardSpec: ClashRewardSpec
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
export interface ClashOfflineNotification {
|
|
1130
|
+
/** @format int64 */
|
|
1131
|
+
tournamentId: number
|
|
1132
|
+
reason: string
|
|
1133
|
+
metaData: Record<string, string>
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
export interface ClashRewardConfigClient {
|
|
1137
|
+
name: string
|
|
1138
|
+
keyDef: ClashRewardKeyType[]
|
|
1139
|
+
entries: ClashRewardConfigEntry[]
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
export interface ClashRewardConfigEntry {
|
|
1143
|
+
key: string
|
|
1144
|
+
vals: ClashRewardOutput[]
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
export interface ClashRewardDefinition {
|
|
1148
|
+
rewardType: ClashRewardType
|
|
1149
|
+
rewardSpec: ClashRewardSpec
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
export type ClashRewardKeyType = "TOC_STATE" | "SEASON_FLAG_COUNT" | "SEASON_VP" | "THEME_VP" | "POINTS" | "WINS" | "TOURNAMENT_WIN_POS" | "LOWEST_POSITION" | "TICKET_TYPE" | "TICKET_COUNT" | "CUP" | "TIER"
|
|
1153
|
+
|
|
1154
|
+
export interface ClashRewardOutput {
|
|
1155
|
+
primary: ClashRewardDefinition
|
|
1156
|
+
alternative: ClashRewardDefinition
|
|
1157
|
+
grant: ClashRewardTime
|
|
1158
|
+
show: ClashRewardTime
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
export interface ClashRewardSpec {
|
|
1162
|
+
pedestal: string
|
|
1163
|
+
cup: string
|
|
1164
|
+
gem: string
|
|
1165
|
+
tier: string
|
|
1166
|
+
bracket: string
|
|
1167
|
+
theme: string
|
|
1168
|
+
level: string
|
|
1169
|
+
seasonId: string
|
|
1170
|
+
name: string
|
|
1171
|
+
quantity: string
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
export type ClashRewardTime = "EOT" | "EOB" | "EOG" | "NONE"
|
|
1175
|
+
|
|
1176
|
+
export type ClashRewardType = "TOC" | "VP" | "LOOT" | "LOGO" | "FRAME" | "FLAG" | "TROPHY"
|
|
1177
|
+
|
|
1178
|
+
export interface ClashSeasonRewardResult {
|
|
1179
|
+
/** @format uint64 */
|
|
1180
|
+
playerId: number
|
|
1181
|
+
/** @format int32 */
|
|
1182
|
+
seasonId: number
|
|
1183
|
+
/** @format int32 */
|
|
1184
|
+
seasonVp: number
|
|
1185
|
+
banned: boolean
|
|
1186
|
+
/** @format int32 */
|
|
1187
|
+
honorLevel: number
|
|
1188
|
+
eligible: boolean
|
|
1189
|
+
rewards: ClashRewardDefinition[]
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
export type ClientBracketMatchStatus = "COMPLETED" | "STARTED" | "UPCOMING"
|
|
1193
|
+
|
|
1194
|
+
export interface ClientConfigAuthenticatedConnection {
|
|
1195
|
+
/** @format uint32 */
|
|
1196
|
+
connectionId: number
|
|
1197
|
+
subscribed: boolean
|
|
1198
|
+
authToken: string
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
export interface ClientConfigBuildInfo {
|
|
1202
|
+
/** @format int32 */
|
|
1203
|
+
contentBuildId: number
|
|
1204
|
+
/** @format int32 */
|
|
1205
|
+
codeBuildId: number
|
|
1206
|
+
/** @format int32 */
|
|
1207
|
+
gameDataBuildId: number
|
|
1208
|
+
branch: string
|
|
1209
|
+
branchFull: string
|
|
1210
|
+
gameBranch: string
|
|
1211
|
+
gameBranchFull: string
|
|
1212
|
+
patchline: string
|
|
1213
|
+
version: string
|
|
1214
|
+
patchlineVisibleName: string
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1217
|
+
export interface ClientConfigClientConfig {
|
|
1218
|
+
params: ClientConfigConfigParams
|
|
1219
|
+
data: Record<string, unknown>
|
|
1220
|
+
/** @format int64 */
|
|
1221
|
+
updateTime: number
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
export interface ClientConfigConfigNamespaceUpdate {
|
|
1225
|
+
public: string[]
|
|
1226
|
+
player: string[]
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
export interface ClientConfigConfigParams {
|
|
1230
|
+
type: ClientConfigConfigType
|
|
1231
|
+
appName: string
|
|
1232
|
+
version: string
|
|
1233
|
+
patchline: string
|
|
1234
|
+
region: string
|
|
1235
|
+
namespace: string
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
export type ClientConfigConfigReadinessEnum = "Disabled" | "Ready" | "NotReady"
|
|
1239
|
+
|
|
1240
|
+
export interface ClientConfigConfigStatus {
|
|
1241
|
+
readiness: ClientConfigConfigReadinessEnum
|
|
1242
|
+
/** @format uint64 */
|
|
1243
|
+
updateId: number
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
export type ClientConfigConfigType = "player" | "public"
|
|
1247
|
+
|
|
1248
|
+
export interface ClientConfigDataPaths {
|
|
1249
|
+
userDataRoot: string
|
|
1250
|
+
configRoot: string
|
|
1251
|
+
dataRoot: string
|
|
1252
|
+
localSettingsPath: string
|
|
1253
|
+
privateSettingsPath: string
|
|
1254
|
+
}
|
|
1255
|
+
|
|
1256
|
+
export interface ClientConfigDepInjectorEntitlements {
|
|
1257
|
+
accessToken: string
|
|
1258
|
+
token: string
|
|
1259
|
+
subject: string
|
|
1260
|
+
issuer: string
|
|
1261
|
+
entitlements: string[]
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
export interface ClientConfigDepInjectorEntitlementsUpdate {
|
|
1265
|
+
EntitlementsUpdateType: ClientConfigDepInjectorEntitlementsUpdateType
|
|
1266
|
+
EntitlementsTokenResource: ClientConfigDepInjectorEntitlements
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
export type ClientConfigDepInjectorEntitlementsUpdateType = "Delete" | "Update" | "Create"
|
|
1270
|
+
|
|
1271
|
+
export interface ClientConfigEntitlements {
|
|
1272
|
+
accessToken: string
|
|
1273
|
+
token: string
|
|
1274
|
+
subject: string
|
|
1275
|
+
issuer: string
|
|
1276
|
+
entitlements: string[]
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
export interface ClientConfigEntitlementsUpdate {
|
|
1280
|
+
UpdateType: ClientConfigUpdateType
|
|
1281
|
+
EntitlementsTokenResource: ClientConfigEntitlements
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1284
|
+
export interface ClientConfigSession {
|
|
1285
|
+
productId: string
|
|
1286
|
+
patchlineId: string
|
|
1287
|
+
version: string
|
|
1288
|
+
isInternal: boolean
|
|
1289
|
+
connections: ClientConfigAuthenticatedConnection[]
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
export type ClientConfigUpdateType = "Delete" | "Update" | "Create"
|
|
1293
|
+
|
|
1294
|
+
export interface ClientDynamicConfig {
|
|
1295
|
+
configs: string
|
|
1296
|
+
delta: boolean
|
|
1297
|
+
compressed: boolean
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
export type ClientRequestError = "WITHDRAW_LOCKOUT" | "WITHDRAW_CANCEL_NOT_ALLOWED" | "WITHDRAW_NOT_ALLOWED" | "VOICE_NOT_AVAILABLE" | "TICKET_NOT_SET" | "TICKET_OFFER_INVALID_COUNT" | "TICKET_OFFER_NOT_EXIST" | "TICKET_ALREADY_SET" | "SMS_NOT_VERIFIED" | "SUMMONER_LEVEL_REQUIREMENT_NOT_MET" | "SUGGEST_INVITEE_NOT_EXIST" | "ROSTER_DISBAND_NOT_ALLOWED" | "ROSTER_ELIMINATED" | "PHASE_FULL" | "PHASE_CANCELLED" | "PENDING_ROSTER_CLOSE" | "PENDING_ROSTER_FULL" | "PENDING_ROSTER_NOT_READY" | "OVER_INVITE" | "OVER_SUGGESTION_INVITE" | "NO_MORE_RECOMMEND" | "NO_PERMISSION" | "NOT_ALLOWED_DELETE_TOURNAMENT_REWARD_CONFIG" | "NOT_ALLOWED_DELETE_TOURNAMENT" | "NOT_ENOUGH_TICKETS" | "NOT_SEED_INTO_LEAGUE" | "NOT_INVITEE" | "NOT_MEMBER" | "NOT_CAPTAIN" | "NO_AVAILABLE_PHASE" | "NO_SAME_PLAYER" | "MAX_ROSTER_FETCHSIZE" | "MAX_INVITED" | "INVALID_SEASON" | "INVALID_REWARD_CONFIG_NAME" | "INVALID_MATCHSTATUS_FORGAMEEND" | "INVALID_WITHDRAW" | "INVALID_Tier" | "INVALID_PLAYER" | "INVALID_MATCHID" | "INVALID_BRACKET" | "INVALID_CHECKELIGIBILITY_SIZE" | "INVALID_SHORTNAME" | "INVALID_NAME" | "INVALID_LOGOCOLOR" | "INVALID_LOGO" | "INVALID_POSITION" | "INVALID_ROSTER_MEMBER_SIZE" | "INVALID_INVITEE" | "INVALID_PHASE" | "INVALID_TOURNAMENT" | "INVALID_BUY_BACK" | "INVALID_ROSTER" | "INTERNAL_ERROR" | "INACTIVE_PHASE" | "INACTIVE_REGISTRATION" | "IN_OTHER_PHASE_OF_PERIOD" | "IN_OTHER_PENDINGROSTER" | "IN_OTHER_ROSTER" | "LOGOCOLOR_NOT_ALLOWED" | "LOGO_NOT_ALLOWED" | "HONOR_INELIGIBILITY" | "FAIL_SUGGESTINVITE" | "FAIL_INVITE" | "ELIGIBILITY_SERVER_ERROR" | "CLASH_BANNED_INVITEE" | "CLASH_BANNED" | "CAPTAIN_NOT_ALLOWED" | "ALREADY_IN_PHASE" | "ALREADY_VOTE_WITHDRAW" | "ALREADY_DECLINED" | "ALREADY_DECLINE_WITHDRAW" | "ALREADY_SUGGESTED" | "ALREADY_INVITED" | "ALREADY_MEMBER" | "ALREADY_IN_GAME"
|
|
906
1301
|
|
|
907
1302
|
export interface CollectionsLcdsChampionDTO {
|
|
908
1303
|
/** @format uint64 */
|
|
@@ -1299,6 +1694,7 @@ export interface GameflowLcdsPlayerCredentialsDto {
|
|
|
1299
1694
|
summonerId: number
|
|
1300
1695
|
packetCopMetadata: string
|
|
1301
1696
|
spectatorKey: string
|
|
1697
|
+
puuid: string
|
|
1302
1698
|
}
|
|
1303
1699
|
|
|
1304
1700
|
export interface GameflowLcdsReconnectInfoDto {
|
|
@@ -3571,6 +3967,12 @@ export interface LolChampionsLoyaltyStatusNotification {
|
|
|
3571
3967
|
reloadInventory: boolean
|
|
3572
3968
|
}
|
|
3573
3969
|
|
|
3970
|
+
export interface LolChampionsMatchmakingQueue {
|
|
3971
|
+
/** @format int64 */
|
|
3972
|
+
id: number
|
|
3973
|
+
viableChampionRoster: number[]
|
|
3974
|
+
}
|
|
3975
|
+
|
|
3574
3976
|
export interface LolChampionsPlayerNotification {
|
|
3575
3977
|
backgroundUrl: string
|
|
3576
3978
|
critical: boolean
|
|
@@ -3600,12 +4002,6 @@ export interface LolChampionsSummoner {
|
|
|
3600
4002
|
summonerLevel: number
|
|
3601
4003
|
}
|
|
3602
4004
|
|
|
3603
|
-
export interface LolChampionsTeamBuilderDirect_MatchmakingQueue {
|
|
3604
|
-
/** @format int64 */
|
|
3605
|
-
id: number
|
|
3606
|
-
viableChampionRoster: number[]
|
|
3607
|
-
}
|
|
3608
|
-
|
|
3609
4005
|
export type LolChatAccountState = "dnd" | "chat" | "away" | "mobile" | "offline"
|
|
3610
4006
|
|
|
3611
4007
|
export interface LolChatActiveConversationResource {
|
|
@@ -3804,10 +4200,12 @@ export interface LolChatConversationMessageResource {
|
|
|
3804
4200
|
type: string
|
|
3805
4201
|
/** @format uint64 */
|
|
3806
4202
|
fromSummonerId: number
|
|
4203
|
+
fromPuuid: string
|
|
3807
4204
|
fromId: string
|
|
3808
4205
|
fromPid: string
|
|
3809
4206
|
/** @format uint64 */
|
|
3810
4207
|
fromObfuscatedSummonerId: number
|
|
4208
|
+
fromObfuscatedPuuid: string
|
|
3811
4209
|
body: string
|
|
3812
4210
|
timestamp: string
|
|
3813
4211
|
isHistorical: boolean
|
|
@@ -3896,8 +4294,7 @@ export interface LolChatErrorList {
|
|
|
3896
4294
|
}
|
|
3897
4295
|
|
|
3898
4296
|
export interface LolChatErrorResource {
|
|
3899
|
-
|
|
3900
|
-
id: number
|
|
4297
|
+
id: string
|
|
3901
4298
|
from: string
|
|
3902
4299
|
/** @format uint64 */
|
|
3903
4300
|
code: number
|
|
@@ -4038,6 +4435,8 @@ export interface LolChatFriendResource {
|
|
|
4038
4435
|
displayGroupName: string
|
|
4039
4436
|
lol: Record<string, string>
|
|
4040
4437
|
discordInfo?: LolChatSocialV4DiscordInfo
|
|
4438
|
+
discordOnlineStatus?: string
|
|
4439
|
+
discordId?: string
|
|
4041
4440
|
}
|
|
4042
4441
|
|
|
4043
4442
|
export type LolChatFriendSubscriptionType = "pending_in" | "pending_out"
|
|
@@ -4471,6 +4870,7 @@ export interface LolChatSocialV4DiscordInfo {
|
|
|
4471
4870
|
onlineStatus: string
|
|
4472
4871
|
isPlayingSameTitle: boolean
|
|
4473
4872
|
relationship: string
|
|
4873
|
+
discordId: string
|
|
4474
4874
|
}
|
|
4475
4875
|
|
|
4476
4876
|
export interface LolChatSocialV4Friend {
|
|
@@ -7264,7 +7664,7 @@ export interface LolEndOfGameGameDataTftTrait {
|
|
|
7264
7664
|
|
|
7265
7665
|
export interface LolEndOfGameGameStateUpdate {
|
|
7266
7666
|
/** @format uint64 */
|
|
7267
|
-
|
|
7667
|
+
id: number
|
|
7268
7668
|
gameState: string
|
|
7269
7669
|
gameType: string
|
|
7270
7670
|
errorMessage: string
|
|
@@ -7335,6 +7735,7 @@ export interface LolEndOfGameQueue {
|
|
|
7335
7735
|
/** @format int32 */
|
|
7336
7736
|
id: number
|
|
7337
7737
|
type: string
|
|
7738
|
+
gameMode: string
|
|
7338
7739
|
isRanked: boolean
|
|
7339
7740
|
}
|
|
7340
7741
|
|
|
@@ -7980,6 +8381,7 @@ export interface LolEventHubEventDetailsUIData {
|
|
|
7980
8381
|
memoryBookBackgroundImage: string
|
|
7981
8382
|
/** @format uint32 */
|
|
7982
8383
|
spotlightSkinId: number
|
|
8384
|
+
actBackgroundImage: string
|
|
7983
8385
|
}
|
|
7984
8386
|
|
|
7985
8387
|
export interface LolEventHubEventHubError {
|
|
@@ -8382,6 +8784,8 @@ export interface LolEventHubItemDefinition {
|
|
|
8382
8784
|
bundledItemPrice?: LolEventHubBundledItemPricingInfo
|
|
8383
8785
|
loyaltyUnlocked: boolean
|
|
8384
8786
|
hasVisibleLootOdds: boolean
|
|
8787
|
+
/** @format uint64 */
|
|
8788
|
+
inactiveDate: number
|
|
8385
8789
|
}
|
|
8386
8790
|
|
|
8387
8791
|
export interface LolEventHubItemDetails {
|
|
@@ -8392,9 +8796,10 @@ export interface LolEventHubItemDetails {
|
|
|
8392
8796
|
}
|
|
8393
8797
|
|
|
8394
8798
|
export interface LolEventHubItemKey {
|
|
8395
|
-
inventoryType: string
|
|
8396
8799
|
/** @format int32 */
|
|
8397
8800
|
itemId: number
|
|
8801
|
+
inventoryType: string
|
|
8802
|
+
subInventoryType: string
|
|
8398
8803
|
}
|
|
8399
8804
|
|
|
8400
8805
|
export interface LolEventHubItemMetadataEntry {
|
|
@@ -8424,6 +8829,8 @@ export interface LolEventHubItemPrice {
|
|
|
8424
8829
|
currencyType: string
|
|
8425
8830
|
/** @format int32 */
|
|
8426
8831
|
price: number
|
|
8832
|
+
/** @format int32 */
|
|
8833
|
+
originalPrice: number
|
|
8427
8834
|
purchasable: boolean
|
|
8428
8835
|
}
|
|
8429
8836
|
|
|
@@ -9031,6 +9438,7 @@ export interface LolEventHubSeasonPass {
|
|
|
9031
9438
|
localizedSeasonLogo: string
|
|
9032
9439
|
localizedShortName: string
|
|
9033
9440
|
chapters: LolEventHubChapter[]
|
|
9441
|
+
actBackgroundImage: string
|
|
9034
9442
|
}
|
|
9035
9443
|
|
|
9036
9444
|
export type LolEventHubSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
@@ -9444,6 +9852,7 @@ export interface LolGameClientChatConversationMessageResource {
|
|
|
9444
9852
|
type: string
|
|
9445
9853
|
/** @format uint64 */
|
|
9446
9854
|
fromSummonerId: number
|
|
9855
|
+
fromPuuid: string
|
|
9447
9856
|
fromId: string
|
|
9448
9857
|
body: string
|
|
9449
9858
|
timestamp: string
|
|
@@ -9563,6 +9972,7 @@ export interface LolGameQueuesQueue {
|
|
|
9563
9972
|
areFreeChampionsAllowed: boolean
|
|
9564
9973
|
isTeamBuilderManaged: boolean
|
|
9565
9974
|
queueAvailability: LolGameQueuesQueueAvailability
|
|
9975
|
+
isEnabled: boolean
|
|
9566
9976
|
isVisible: boolean
|
|
9567
9977
|
queueRewards: LolGameQueuesQueueReward
|
|
9568
9978
|
spectatorEnabled: boolean
|
|
@@ -9680,6 +10090,7 @@ export interface LolGameQueuesQueueTranslation {
|
|
|
9680
10090
|
isSkillTreeQueue: boolean
|
|
9681
10091
|
isBotHonoringAllowed: boolean
|
|
9682
10092
|
hidePlayerPosition: boolean
|
|
10093
|
+
viableChampionRoster: number[]
|
|
9683
10094
|
}
|
|
9684
10095
|
|
|
9685
10096
|
export interface LolGameSettingsLoginSession {
|
|
@@ -10305,6 +10716,8 @@ export interface LolHovercardFriendResult {
|
|
|
10305
10716
|
productName: string
|
|
10306
10717
|
statusMessage: string
|
|
10307
10718
|
lol: Record<string, string>
|
|
10719
|
+
discordOnlineStatus?: string
|
|
10720
|
+
discordId?: string
|
|
10308
10721
|
}
|
|
10309
10722
|
|
|
10310
10723
|
export interface LolHovercardHovercardUserInfo {
|
|
@@ -10340,6 +10753,8 @@ export interface LolHovercardHovercardUserInfo {
|
|
|
10340
10753
|
remoteProductBackdropUrl: string
|
|
10341
10754
|
partySummoners: string[]
|
|
10342
10755
|
lol: Record<string, string>
|
|
10756
|
+
discordOnlineStatus?: string
|
|
10757
|
+
discordId?: string
|
|
10343
10758
|
}
|
|
10344
10759
|
|
|
10345
10760
|
export interface LolHovercardPartyInfo {
|
|
@@ -11117,6 +11532,7 @@ export interface LolLoadoutsItemKey {
|
|
|
11117
11532
|
contentId: string
|
|
11118
11533
|
/** @format int32 */
|
|
11119
11534
|
itemId: number
|
|
11535
|
+
data: Record<string, string>
|
|
11120
11536
|
}
|
|
11121
11537
|
|
|
11122
11538
|
export interface LolLoadoutsLoadout {
|
|
@@ -11194,6 +11610,7 @@ export interface LolLobbyAutoFillQueueDto {
|
|
|
11194
11610
|
autoFillEligible: boolean
|
|
11195
11611
|
autoFillProtectedForStreaking: boolean
|
|
11196
11612
|
autoFillProtectedForPromos: boolean
|
|
11613
|
+
overridePositionSelectionsWithFill: boolean
|
|
11197
11614
|
autoFillProtectedForRemedy: boolean
|
|
11198
11615
|
}
|
|
11199
11616
|
|
|
@@ -11329,6 +11746,7 @@ export interface LolLobbyEligibilityRestriction {
|
|
|
11329
11746
|
summonerIds: number[]
|
|
11330
11747
|
summonerIdsString: string
|
|
11331
11748
|
puuids: string[]
|
|
11749
|
+
puuidsString: string
|
|
11332
11750
|
}
|
|
11333
11751
|
|
|
11334
11752
|
export type LolLobbyEligibilityRestrictionCode = "FullPartyUnranked" | "PlayerNoRankedUpdatesDueToRankDisparity" | "MmrStandardDeviationTooLarge" | "UserInfoNotAvailable" | "InventoryQueuesInfoNotAvailable" | "InventoryChampsInfoNotAvailable" | "LeaguesInfoNotAvailable" | "SummonerInfoNotAvailable" | "MinorInfoNotAvailable" | "BanInfoNotAvailable" | "TooManyIncompleteSubteamsRestriction" | "QPInsufficientPlayerChampionCoveragePopularChampion" | "QPScarcePositionsNotAvailableRestriction" | "QPNonUniquePrimarySlotRestriction" | "QPInvalidChampionSelectionRestriction" | "QPInvalidPositionSelectionRestriction" | "QPInvalidNumberOfPlayerSlotsRestriction" | "QPPlayerChampionCoverageRestriction" | "QPPartyChampionCoverageRestriction" | "QPPlayerPositionCoverageRestriction" | "QPPartyPositionCoverageRestriction" | "QPPlayerScarcePositionCoverageRestriction" | "UnknownRestriction" | "PlayerQueueSuspendedRestriction" | "SeasonVersionLockout" | "MinNormalGamesForRankedRestriction" | "LOLNewPlayerRestriction" | "TFTNewPlayerRestriction" | "QueueEntryNotEntitledRestriction" | "GameVersionNotSupported" | "GameVersionMissing" | "GameVersionMismatch" | "PrerequisiteQueuesNotPlayedRestriction" | "TeamSizeRestriction" | "TeamHighMMRMaxSizeRestriction" | "PlayerRankedSuspensionRestriction" | "PlayerRankSoloOnlyRestriction" | "PlayerTimePlayedRestriction" | "PlayerMinorRestriction" | "PlayerMinLevelRestriction" | "PlayerMaxLevelRestriction" | "PlayerTimeBasedRankRestriction" | "PlayerGameBasedRankRestriction" | "PlayerLeaverTaintedWarningRestriction" | "PlayerLeaverQueueLockoutRestriction" | "PlayerLeaverBustedRestriction" | "PlayerInGameRestriction" | "PlayerDisruptiveGameplayLockoutRestriction" | "PlayerReadyCheckFailRestriction" | "PlayerDodgeRestriction" | "PlayerBingeRestriction" | "TeamMinSizeRestriction" | "TeamMaxSizeRestriction" | "TeamSkillRestriction" | "TeamDivisionRestriction" | "PlayerAvailableChampionRestriction" | "PlayerBannedRestriction" | "PlayerTimedRestriction" | "PlayerLevelRestriction" | "QueueUnsupported" | "QueueDisabled"
|
|
@@ -11455,6 +11873,8 @@ export interface LolLobbyInventoryItem {
|
|
|
11455
11873
|
|
|
11456
11874
|
export type LolLobbyInvitationType = "party" | "lobby" | "invalid"
|
|
11457
11875
|
|
|
11876
|
+
export type LolLobbyInviteContext = "RIOT" | "DISCORD" | "LOL"
|
|
11877
|
+
|
|
11458
11878
|
export interface LolLobbyJoinPartyAnalytics {
|
|
11459
11879
|
partyId: string
|
|
11460
11880
|
platformId: string
|
|
@@ -11549,7 +11969,6 @@ export interface LolLobbyLobbyBotParams {
|
|
|
11549
11969
|
export interface LolLobbyLobbyChangeGameDto {
|
|
11550
11970
|
/** @format int32 */
|
|
11551
11971
|
queueId: number
|
|
11552
|
-
isCustom: boolean
|
|
11553
11972
|
customGameLobby?: LolLobbyLobbyCustomGameLobby
|
|
11554
11973
|
gameCustomization?: Record<string, string>
|
|
11555
11974
|
}
|
|
@@ -11890,6 +12309,14 @@ export interface LolLobbyMucJwtDto {
|
|
|
11890
12309
|
targetRegion: string
|
|
11891
12310
|
}
|
|
11892
12311
|
|
|
12312
|
+
export interface LolLobbyMultiProductRegistrationDto {
|
|
12313
|
+
simpleInventoryToken?: string
|
|
12314
|
+
inventoryTokens?: string[]
|
|
12315
|
+
playerTokens?: Record<string, string>
|
|
12316
|
+
experiments?: Record<string, string>
|
|
12317
|
+
productRegistrations: Record<string, LolLobbyProductRegistration>
|
|
12318
|
+
}
|
|
12319
|
+
|
|
11893
12320
|
export interface LolLobbyOpenPartyToggleAnalytics {
|
|
11894
12321
|
partyId: string
|
|
11895
12322
|
platformId: string
|
|
@@ -12018,6 +12445,7 @@ export interface LolLobbyPartyPresenceData {
|
|
|
12018
12445
|
/** @format int32 */
|
|
12019
12446
|
queueId: number
|
|
12020
12447
|
summoners: number[]
|
|
12448
|
+
summonerPuuids: string[]
|
|
12021
12449
|
/** @format uint64 */
|
|
12022
12450
|
maxPlayers: number
|
|
12023
12451
|
}
|
|
@@ -12066,6 +12494,11 @@ export interface LolLobbyPlayerDto {
|
|
|
12066
12494
|
version: number
|
|
12067
12495
|
}
|
|
12068
12496
|
|
|
12497
|
+
export interface LolLobbyPlayerInviteDto {
|
|
12498
|
+
puuid: string
|
|
12499
|
+
inviteContext: LolLobbyInviteContext
|
|
12500
|
+
}
|
|
12501
|
+
|
|
12069
12502
|
export interface LolLobbyPlayerStatus {
|
|
12070
12503
|
currentLobbyStatus?: LolLobbyLobbyStatus
|
|
12071
12504
|
lastQueuedLobbyStatus?: LolLobbyLobbyStatus
|
|
@@ -12104,6 +12537,11 @@ export interface LolLobbyPremadeRelationshipAnalytics {
|
|
|
12104
12537
|
friendPlayers: string[]
|
|
12105
12538
|
}
|
|
12106
12539
|
|
|
12540
|
+
export interface LolLobbyProductRegistration {
|
|
12541
|
+
gameClientVersion?: string
|
|
12542
|
+
meetsMinSpec?: boolean
|
|
12543
|
+
}
|
|
12544
|
+
|
|
12107
12545
|
export interface LolLobbyProductStateDto {
|
|
12108
12546
|
isUpToDate: boolean
|
|
12109
12547
|
}
|
|
@@ -12372,6 +12810,8 @@ export interface LolLobbyTeamBuilderMatchmakingSearch {
|
|
|
12372
12810
|
|
|
12373
12811
|
export type LolLobbyTeamBuilderMatchmakingSearchState = "ServiceShutdown" | "ServiceError" | "Error" | "Found" | "Searching" | "Canceled" | "AbandonedLowPriorityQueue" | "Invalid"
|
|
12374
12812
|
|
|
12813
|
+
export type LolLobbyTeamBuilderRiotMessagingServiceState = "Connected" | "SwitchingServers" | "Connecting" | "DisconnectRequested" | "Disconnected" | "Disconnecting"
|
|
12814
|
+
|
|
12375
12815
|
export interface LolLobbyUserInfoToken {
|
|
12376
12816
|
userInfo: string
|
|
12377
12817
|
}
|
|
@@ -14357,6 +14797,8 @@ export interface LolMatchHistoryMatchHistoryParticipantStatistics {
|
|
|
14357
14797
|
playerSubteamId: number
|
|
14358
14798
|
/** @format int32 */
|
|
14359
14799
|
subteamPlacement: number
|
|
14800
|
+
/** @format int32 */
|
|
14801
|
+
roleBoundItem: number
|
|
14360
14802
|
}
|
|
14361
14803
|
|
|
14362
14804
|
export interface LolMatchHistoryMatchHistoryPosition {
|
|
@@ -14394,192 +14836,546 @@ export interface LolMatchHistoryMatchHistoryTeam {
|
|
|
14394
14836
|
bans: LolMatchHistoryMatchHistoryTeamBan[]
|
|
14395
14837
|
}
|
|
14396
14838
|
|
|
14397
|
-
export interface LolMatchHistoryMatchHistoryTeamBan {
|
|
14839
|
+
export interface LolMatchHistoryMatchHistoryTeamBan {
|
|
14840
|
+
/** @format int32 */
|
|
14841
|
+
championId: number
|
|
14842
|
+
/** @format uint16 */
|
|
14843
|
+
pickTurn: number
|
|
14844
|
+
}
|
|
14845
|
+
|
|
14846
|
+
export interface LolMatchHistoryMatchHistoryTimeline {
|
|
14847
|
+
/** @format uint16 */
|
|
14848
|
+
participantId: number
|
|
14849
|
+
role: string
|
|
14850
|
+
lane: string
|
|
14851
|
+
creepsPerMinDeltas: Record<string, number>
|
|
14852
|
+
xpPerMinDeltas: Record<string, number>
|
|
14853
|
+
goldPerMinDeltas: Record<string, number>
|
|
14854
|
+
csDiffPerMinDeltas: Record<string, number>
|
|
14855
|
+
xpDiffPerMinDeltas: Record<string, number>
|
|
14856
|
+
damageTakenPerMinDeltas: Record<string, number>
|
|
14857
|
+
damageTakenDiffPerMinDeltas: Record<string, number>
|
|
14858
|
+
}
|
|
14859
|
+
|
|
14860
|
+
export interface LolMatchHistoryMatchHistoryTimelineFrame {
|
|
14861
|
+
participantFrames: Record<string, LolMatchHistoryMatchHistoryParticipantFrame>
|
|
14862
|
+
events: LolMatchHistoryMatchHistoryEvent[]
|
|
14863
|
+
/** @format uint64 */
|
|
14864
|
+
timestamp: number
|
|
14865
|
+
}
|
|
14866
|
+
|
|
14867
|
+
export interface LolMatchHistoryMatchHistoryTimelineFrames {
|
|
14868
|
+
frames: LolMatchHistoryMatchHistoryTimelineFrame[]
|
|
14869
|
+
}
|
|
14870
|
+
|
|
14871
|
+
export interface LolMatchHistoryRecentlyPlayedSummoner {
|
|
14872
|
+
/** @format uint64 */
|
|
14873
|
+
summonerId: number
|
|
14874
|
+
summonerName: string
|
|
14875
|
+
gameName: string
|
|
14876
|
+
tagLine: string
|
|
14877
|
+
/** @format uint64 */
|
|
14878
|
+
gameId: number
|
|
14879
|
+
gameCreationDate: string
|
|
14880
|
+
/** @format uint64 */
|
|
14881
|
+
championId: number
|
|
14882
|
+
/** @format uint64 */
|
|
14883
|
+
teamId: number
|
|
14884
|
+
puuid: string
|
|
14885
|
+
}
|
|
14886
|
+
|
|
14887
|
+
export interface LolMatchHistorySummoner {
|
|
14888
|
+
/** @format uint64 */
|
|
14889
|
+
summonerId: number
|
|
14890
|
+
/** @format uint64 */
|
|
14891
|
+
accountId: number
|
|
14892
|
+
displayName: string
|
|
14893
|
+
gameName: string
|
|
14894
|
+
tagLine: string
|
|
14895
|
+
puuid: string
|
|
14896
|
+
}
|
|
14897
|
+
|
|
14898
|
+
export interface LolMatchmakingGameflowGameData {
|
|
14899
|
+
queue: LolMatchmakingGameflowQueue
|
|
14900
|
+
}
|
|
14901
|
+
|
|
14902
|
+
export interface LolMatchmakingGameflowGameDodge {
|
|
14903
|
+
state: LolMatchmakingMatchmakingDodgeState
|
|
14904
|
+
dodgeIds: number[]
|
|
14905
|
+
}
|
|
14906
|
+
|
|
14907
|
+
export interface LolMatchmakingGameflowGameTypeConfig {
|
|
14908
|
+
reroll: boolean
|
|
14909
|
+
}
|
|
14910
|
+
|
|
14911
|
+
export type LolMatchmakingGameflowPhase = "TerminatedInError" | "EndOfGame" | "PreEndOfGame" | "WaitingForStats" | "Reconnect" | "InProgress" | "FailedToLaunch" | "GameStart" | "ChampSelect" | "ReadyCheck" | "CheckedIntoTournament" | "Matchmaking" | "Lobby" | "None"
|
|
14912
|
+
|
|
14913
|
+
export interface LolMatchmakingGameflowQueue {
|
|
14914
|
+
gameTypeConfig: LolMatchmakingGameflowGameTypeConfig
|
|
14915
|
+
}
|
|
14916
|
+
|
|
14917
|
+
export interface LolMatchmakingGameflowSession {
|
|
14918
|
+
phase: LolMatchmakingGameflowPhase
|
|
14919
|
+
gameData: LolMatchmakingGameflowGameData
|
|
14920
|
+
gameDodge: LolMatchmakingGameflowGameDodge
|
|
14921
|
+
}
|
|
14922
|
+
|
|
14923
|
+
export interface LolMatchmakingLcdsConnection {
|
|
14924
|
+
stableConnection: boolean
|
|
14925
|
+
}
|
|
14926
|
+
|
|
14927
|
+
export interface LolMatchmakingLobbyStatus {
|
|
14928
|
+
/** @format int32 */
|
|
14929
|
+
queueId: number
|
|
14930
|
+
isCustom: boolean
|
|
14931
|
+
isLeader: boolean
|
|
14932
|
+
isSpectator: boolean
|
|
14933
|
+
allowedPlayAgain: boolean
|
|
14934
|
+
memberSummonerIds: number[]
|
|
14935
|
+
lobbyId?: string
|
|
14936
|
+
customSpectatorPolicy: LolMatchmakingQueueCustomGameSpectatorPolicy
|
|
14937
|
+
}
|
|
14938
|
+
|
|
14939
|
+
export interface LolMatchmakingLoginSession {
|
|
14940
|
+
state: LolMatchmakingLoginSessionState
|
|
14941
|
+
/** @format uint64 */
|
|
14942
|
+
summonerId: number
|
|
14943
|
+
/** @format uint64 */
|
|
14944
|
+
accountId: number
|
|
14945
|
+
connected: boolean
|
|
14946
|
+
}
|
|
14947
|
+
|
|
14948
|
+
export type LolMatchmakingLoginSessionState = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
14949
|
+
|
|
14950
|
+
export interface LolMatchmakingMatchmakingDodgeData {
|
|
14951
|
+
state: LolMatchmakingMatchmakingDodgeState
|
|
14952
|
+
/** @format uint64 */
|
|
14953
|
+
dodgerId: number
|
|
14954
|
+
}
|
|
14955
|
+
|
|
14956
|
+
export type LolMatchmakingMatchmakingDodgeState = "TournamentDodged" | "StrangerDodged" | "PartyDodged" | "Invalid"
|
|
14957
|
+
|
|
14958
|
+
export type LolMatchmakingMatchmakingDodgeWarning = "ConnectionWarning" | "Penalty" | "Warning" | "None"
|
|
14959
|
+
|
|
14960
|
+
export interface LolMatchmakingMatchmakingLowPriorityData {
|
|
14961
|
+
penalizedSummonerIds: number[]
|
|
14962
|
+
/** @format double */
|
|
14963
|
+
penaltyTime: number
|
|
14964
|
+
/** @format double */
|
|
14965
|
+
penaltyTimeRemaining: number
|
|
14966
|
+
bustedLeaverAccessToken: string
|
|
14967
|
+
reason: string
|
|
14968
|
+
}
|
|
14969
|
+
|
|
14970
|
+
export interface LolMatchmakingMatchmakingReadyCheckResource {
|
|
14971
|
+
state: LolMatchmakingMatchmakingReadyCheckState
|
|
14972
|
+
playerResponse: LolMatchmakingMatchmakingReadyCheckResponse
|
|
14973
|
+
dodgeWarning: LolMatchmakingMatchmakingDodgeWarning
|
|
14974
|
+
/** @format float */
|
|
14975
|
+
timer: number
|
|
14976
|
+
declinerIds: number[]
|
|
14977
|
+
suppressUx: boolean
|
|
14978
|
+
}
|
|
14979
|
+
|
|
14980
|
+
export type LolMatchmakingMatchmakingReadyCheckResponse = "Declined" | "Accepted" | "None"
|
|
14981
|
+
|
|
14982
|
+
export type LolMatchmakingMatchmakingReadyCheckState = "Error" | "PartyNotReady" | "StrangerNotReady" | "EveryoneReady" | "InProgress" | "Invalid"
|
|
14983
|
+
|
|
14984
|
+
export interface LolMatchmakingMatchmakingSearchErrorResource {
|
|
14985
|
+
/** @format int32 */
|
|
14986
|
+
id: number
|
|
14987
|
+
errorType: string
|
|
14988
|
+
/** @format uint64 */
|
|
14989
|
+
penalizedSummonerId: number
|
|
14990
|
+
/** @format double */
|
|
14991
|
+
penaltyTimeRemaining: number
|
|
14992
|
+
message: string
|
|
14993
|
+
}
|
|
14994
|
+
|
|
14995
|
+
export interface LolMatchmakingMatchmakingSearchResource {
|
|
14996
|
+
/** @format int32 */
|
|
14997
|
+
queueId: number
|
|
14998
|
+
isCurrentlyInQueue: boolean
|
|
14999
|
+
lobbyId: string
|
|
15000
|
+
searchState: LolMatchmakingMatchmakingSearchState
|
|
15001
|
+
/** @format float */
|
|
15002
|
+
timeInQueue: number
|
|
15003
|
+
/** @format float */
|
|
15004
|
+
estimatedQueueTime: number
|
|
15005
|
+
readyCheck: LolMatchmakingMatchmakingReadyCheckResource
|
|
15006
|
+
dodgeData: LolMatchmakingMatchmakingDodgeData
|
|
15007
|
+
lowPriorityData: LolMatchmakingMatchmakingLowPriorityData
|
|
15008
|
+
errors: LolMatchmakingMatchmakingSearchErrorResource[]
|
|
15009
|
+
}
|
|
15010
|
+
|
|
15011
|
+
export type LolMatchmakingMatchmakingSearchState = "ServiceShutdown" | "ServiceError" | "Error" | "Found" | "Searching" | "Canceled" | "AbandonedLowPriorityQueue" | "Invalid"
|
|
15012
|
+
|
|
15013
|
+
export interface LolMatchmakingPlayerStatus {
|
|
15014
|
+
currentLobbyStatus?: LolMatchmakingLobbyStatus
|
|
15015
|
+
lastQueuedLobbyStatus?: LolMatchmakingLobbyStatus
|
|
15016
|
+
}
|
|
15017
|
+
|
|
15018
|
+
export interface LolMatchmakingQueue {
|
|
15019
|
+
/** @format int32 */
|
|
15020
|
+
id: number
|
|
15021
|
+
isTeamBuilderManaged: boolean
|
|
15022
|
+
}
|
|
15023
|
+
|
|
15024
|
+
export type LolMatchmakingQueueCustomGameSpectatorPolicy = "AllAllowed" | "FriendsAllowed" | "LobbyAllowed" | "NotAllowed"
|
|
15025
|
+
|
|
15026
|
+
export interface LolMetagamesAccessTokenResource {
|
|
15027
|
+
token: string
|
|
15028
|
+
scopes: string[]
|
|
15029
|
+
/** @format uint64 */
|
|
15030
|
+
expiry: number
|
|
15031
|
+
}
|
|
15032
|
+
|
|
15033
|
+
export interface LolMetagamesBulkPurchaseRequest {
|
|
15034
|
+
purchaseItems: LolMetagamesPurchaseRequest[]
|
|
15035
|
+
/** @format uint32 */
|
|
15036
|
+
purchaseTimeOut: number
|
|
15037
|
+
}
|
|
15038
|
+
|
|
15039
|
+
export interface LolMetagamesCatalogItem {
|
|
15040
|
+
/** @format int32 */
|
|
15041
|
+
itemId: number
|
|
15042
|
+
inventoryType: string
|
|
15043
|
+
itemInstanceId?: string
|
|
15044
|
+
}
|
|
15045
|
+
|
|
15046
|
+
export interface LolMetagamesClientCacheClearMessageDTO {
|
|
15047
|
+
regions: string[]
|
|
15048
|
+
clearAll: boolean
|
|
15049
|
+
inventoryTypes: string[]
|
|
15050
|
+
}
|
|
15051
|
+
|
|
15052
|
+
export interface LolMetagamesCurrencyDTO {
|
|
14398
15053
|
/** @format int32 */
|
|
14399
|
-
|
|
14400
|
-
|
|
14401
|
-
pickTurn: number
|
|
15054
|
+
amount: number
|
|
15055
|
+
subCurrencies: Record<string, number>
|
|
14402
15056
|
}
|
|
14403
15057
|
|
|
14404
|
-
export interface
|
|
14405
|
-
/** @format
|
|
14406
|
-
|
|
14407
|
-
role: string
|
|
14408
|
-
lane: string
|
|
14409
|
-
creepsPerMinDeltas: Record<string, number>
|
|
14410
|
-
xpPerMinDeltas: Record<string, number>
|
|
14411
|
-
goldPerMinDeltas: Record<string, number>
|
|
14412
|
-
csDiffPerMinDeltas: Record<string, number>
|
|
14413
|
-
xpDiffPerMinDeltas: Record<string, number>
|
|
14414
|
-
damageTakenPerMinDeltas: Record<string, number>
|
|
14415
|
-
damageTakenDiffPerMinDeltas: Record<string, number>
|
|
15058
|
+
export interface LolMetagamesEndOfGameXp {
|
|
15059
|
+
/** @format uint32 */
|
|
15060
|
+
PER_WIN: number
|
|
14416
15061
|
}
|
|
14417
15062
|
|
|
14418
|
-
export interface
|
|
14419
|
-
|
|
14420
|
-
events: LolMatchHistoryMatchHistoryEvent[]
|
|
14421
|
-
/** @format uint64 */
|
|
14422
|
-
timestamp: number
|
|
15063
|
+
export interface LolMetagamesEndOfGameXpNotification {
|
|
15064
|
+
xp: LolMetagamesEndOfGameXp
|
|
14423
15065
|
}
|
|
14424
15066
|
|
|
14425
|
-
export interface
|
|
14426
|
-
|
|
15067
|
+
export interface LolMetagamesInventoryCacheEntry {
|
|
15068
|
+
signedInventoryJwt: string
|
|
15069
|
+
/** @format uint64 */
|
|
15070
|
+
expirationMS: number
|
|
15071
|
+
/** @format uint64 */
|
|
15072
|
+
issuedAtMS: number
|
|
15073
|
+
/** @format uint64 */
|
|
15074
|
+
receivedAtMS: number
|
|
15075
|
+
valid: boolean
|
|
14427
15076
|
}
|
|
14428
15077
|
|
|
14429
|
-
export interface
|
|
15078
|
+
export interface LolMetagamesInventoryDTO {
|
|
15079
|
+
puuid: string
|
|
15080
|
+
/** @format uint64 */
|
|
15081
|
+
accountId: number
|
|
14430
15082
|
/** @format uint64 */
|
|
14431
15083
|
summonerId: number
|
|
14432
|
-
|
|
14433
|
-
|
|
14434
|
-
|
|
15084
|
+
items: Record<string, unknown>
|
|
15085
|
+
expires: string
|
|
15086
|
+
itemsJwt: string
|
|
15087
|
+
}
|
|
15088
|
+
|
|
15089
|
+
export interface LolMetagamesInventoryItem {
|
|
15090
|
+
uuid: string
|
|
15091
|
+
/** @format int32 */
|
|
15092
|
+
itemId: number
|
|
15093
|
+
inventoryType: string
|
|
15094
|
+
purchaseDate: string
|
|
14435
15095
|
/** @format uint64 */
|
|
14436
|
-
|
|
14437
|
-
|
|
15096
|
+
quantity: number
|
|
15097
|
+
ownershipType: LolMetagamesItemOwnershipType
|
|
15098
|
+
usedInGameDate: string
|
|
15099
|
+
expirationDate: string
|
|
14438
15100
|
/** @format uint64 */
|
|
14439
|
-
|
|
15101
|
+
wins: number
|
|
15102
|
+
}
|
|
15103
|
+
|
|
15104
|
+
export interface LolMetagamesInventoryItemDTO {
|
|
15105
|
+
/** @format int32 */
|
|
15106
|
+
itemId: number
|
|
15107
|
+
inventoryType: string
|
|
15108
|
+
expirationDate: string
|
|
15109
|
+
purchaseDate: string
|
|
14440
15110
|
/** @format uint64 */
|
|
14441
|
-
|
|
14442
|
-
|
|
15111
|
+
quantity: number
|
|
15112
|
+
/** @format uint64 */
|
|
15113
|
+
ownedQuantity: number
|
|
15114
|
+
usedInGameDate: string
|
|
15115
|
+
entitlementId: string
|
|
15116
|
+
entitlementTypeId: string
|
|
15117
|
+
instanceId: string
|
|
15118
|
+
instanceTypeId: string
|
|
15119
|
+
payload: unknown
|
|
15120
|
+
"f2p": boolean
|
|
15121
|
+
rental: boolean
|
|
15122
|
+
loyalty: boolean
|
|
15123
|
+
loyaltySources: string[]
|
|
15124
|
+
lsb: boolean
|
|
15125
|
+
/** @format uint64 */
|
|
15126
|
+
wins: number
|
|
14443
15127
|
}
|
|
14444
15128
|
|
|
14445
|
-
export interface
|
|
15129
|
+
export interface LolMetagamesInventoryItemWithPayload {
|
|
15130
|
+
uuid: string
|
|
15131
|
+
/** @format int32 */
|
|
15132
|
+
itemId: number
|
|
15133
|
+
inventoryType: string
|
|
15134
|
+
purchaseDate: string
|
|
14446
15135
|
/** @format uint64 */
|
|
14447
|
-
|
|
15136
|
+
quantity: number
|
|
15137
|
+
ownershipType: LolMetagamesItemOwnershipType
|
|
15138
|
+
usedInGameDate: string
|
|
15139
|
+
expirationDate: string
|
|
15140
|
+
"f2p": boolean
|
|
15141
|
+
rental: boolean
|
|
15142
|
+
loyalty: boolean
|
|
15143
|
+
loyaltySources: string[]
|
|
15144
|
+
owned: boolean
|
|
14448
15145
|
/** @format uint64 */
|
|
14449
|
-
|
|
14450
|
-
|
|
14451
|
-
gameName: string
|
|
14452
|
-
tagLine: string
|
|
14453
|
-
puuid: string
|
|
15146
|
+
wins: number
|
|
15147
|
+
payload: unknown
|
|
14454
15148
|
}
|
|
14455
15149
|
|
|
14456
|
-
export interface
|
|
14457
|
-
|
|
15150
|
+
export interface LolMetagamesInventoryNotification {
|
|
15151
|
+
/** @format int64 */
|
|
15152
|
+
id: number
|
|
15153
|
+
/** @format int32 */
|
|
15154
|
+
itemId: number
|
|
15155
|
+
inventoryType: string
|
|
15156
|
+
type: string
|
|
15157
|
+
acknowledged: boolean
|
|
14458
15158
|
}
|
|
14459
15159
|
|
|
14460
|
-
export interface
|
|
14461
|
-
|
|
14462
|
-
dodgeIds: number[]
|
|
15160
|
+
export interface LolMetagamesInventoryResponseDTO {
|
|
15161
|
+
data: LolMetagamesInventoryDTO
|
|
14463
15162
|
}
|
|
14464
15163
|
|
|
14465
|
-
export interface
|
|
14466
|
-
|
|
15164
|
+
export interface LolMetagamesItemKey {
|
|
15165
|
+
inventoryType: string
|
|
15166
|
+
/** @format int32 */
|
|
15167
|
+
itemId: number
|
|
14467
15168
|
}
|
|
14468
15169
|
|
|
14469
|
-
export type
|
|
15170
|
+
export type LolMetagamesItemOwnershipType = "F2P" | "LOYALTY" | "RENTED" | "OWNED"
|
|
14470
15171
|
|
|
14471
|
-
export interface
|
|
14472
|
-
|
|
15172
|
+
export interface LolMetagamesLoginSession {
|
|
15173
|
+
state: LolMetagamesLoginSessionStates
|
|
15174
|
+
/** @format uint64 */
|
|
15175
|
+
summonerId: number
|
|
15176
|
+
puuid: string
|
|
15177
|
+
connected: boolean
|
|
14473
15178
|
}
|
|
14474
15179
|
|
|
14475
|
-
export
|
|
14476
|
-
|
|
14477
|
-
|
|
14478
|
-
|
|
15180
|
+
export type LolMetagamesLoginSessionStates = "ERROR" | "LOGGING_OUT" | "SUCCEEDED" | "IN_PROGRESS"
|
|
15181
|
+
|
|
15182
|
+
export interface LolMetagamesLolInventoryType {
|
|
15183
|
+
inventoryTypeId: string
|
|
15184
|
+
capInventoryTypeId: string
|
|
14479
15185
|
}
|
|
14480
15186
|
|
|
14481
|
-
export interface
|
|
14482
|
-
|
|
15187
|
+
export interface LolMetagamesLoyaltyRewards {
|
|
15188
|
+
/** @format int32 */
|
|
15189
|
+
freeRewardedChampionsCount: number
|
|
15190
|
+
championIds: number[]
|
|
15191
|
+
/** @format int32 */
|
|
15192
|
+
freeRewardedSkinsCount: number
|
|
15193
|
+
skinIds: number[]
|
|
15194
|
+
/** @format int32 */
|
|
15195
|
+
ipBoost: number
|
|
15196
|
+
xpBoost: Record<string, number>
|
|
15197
|
+
/** @format int32 */
|
|
15198
|
+
loyaltyTFTMapSkinCount: number
|
|
15199
|
+
/** @format int32 */
|
|
15200
|
+
loyaltyTFTCompanionCount: number
|
|
15201
|
+
/** @format int32 */
|
|
15202
|
+
loyaltyTFTDamageSkinCount: number
|
|
15203
|
+
loyaltySources: Record<string, boolean>
|
|
14483
15204
|
}
|
|
14484
15205
|
|
|
14485
|
-
export interface
|
|
15206
|
+
export interface LolMetagamesLoyaltyRewardsSimplified {
|
|
14486
15207
|
/** @format int32 */
|
|
14487
|
-
|
|
14488
|
-
|
|
14489
|
-
|
|
14490
|
-
|
|
14491
|
-
|
|
14492
|
-
|
|
14493
|
-
|
|
14494
|
-
|
|
15208
|
+
freeRewardedChampionsCount: number
|
|
15209
|
+
championIds: number[]
|
|
15210
|
+
/** @format int32 */
|
|
15211
|
+
freeRewardedSkinsCount: number
|
|
15212
|
+
skinIds: number[]
|
|
15213
|
+
/** @format int32 */
|
|
15214
|
+
ipBoost: number
|
|
15215
|
+
/** @format int32 */
|
|
15216
|
+
xpBoost: number
|
|
15217
|
+
/** @format int32 */
|
|
15218
|
+
loyaltyTFTMapSkinCount: number
|
|
15219
|
+
/** @format int32 */
|
|
15220
|
+
loyaltyTFTCompanionCount: number
|
|
15221
|
+
/** @format int32 */
|
|
15222
|
+
loyaltyTFTDamageSkinCount: number
|
|
15223
|
+
loyaltySources: Record<string, boolean>
|
|
14495
15224
|
}
|
|
14496
15225
|
|
|
14497
|
-
export
|
|
14498
|
-
|
|
14499
|
-
|
|
14500
|
-
|
|
14501
|
-
|
|
14502
|
-
|
|
14503
|
-
connected: boolean
|
|
15226
|
+
export type LolMetagamesLoyaltyStatus = "DISABLED" | "REVOKE" | "CHANGE" | "EXPIRY" | "REWARDS_GRANT" | "LEGACY"
|
|
15227
|
+
|
|
15228
|
+
export interface LolMetagamesLoyaltyStatusNotification {
|
|
15229
|
+
status: LolMetagamesLoyaltyStatus
|
|
15230
|
+
rewards: LolMetagamesLoyaltyRewardsSimplified
|
|
15231
|
+
reloadInventory: boolean
|
|
14504
15232
|
}
|
|
14505
15233
|
|
|
14506
|
-
export
|
|
15234
|
+
export interface LolMetagamesMetagamePurchaseCatalogItemRequest {
|
|
15235
|
+
storeId: string
|
|
15236
|
+
catalogEntryId: string
|
|
15237
|
+
/** @format uint32 */
|
|
15238
|
+
quantity: number
|
|
15239
|
+
paymentOptions: string[]
|
|
15240
|
+
customInventoryLocation: string
|
|
15241
|
+
}
|
|
14507
15242
|
|
|
14508
|
-
export interface
|
|
14509
|
-
|
|
14510
|
-
|
|
14511
|
-
|
|
15243
|
+
export interface LolMetagamesPlayerNotification {
|
|
15244
|
+
critical: boolean
|
|
15245
|
+
detailKey: string
|
|
15246
|
+
source: string
|
|
15247
|
+
state: string
|
|
15248
|
+
titleKey: string
|
|
15249
|
+
type: string
|
|
15250
|
+
iconUrl: string
|
|
14512
15251
|
}
|
|
14513
15252
|
|
|
14514
|
-
export
|
|
15253
|
+
export interface LolMetagamesPurchaseRequest {
|
|
15254
|
+
storeId: string
|
|
15255
|
+
catalogEntryId: string
|
|
15256
|
+
/** @format uint32 */
|
|
15257
|
+
quantity: number
|
|
15258
|
+
paymentOptions: string[]
|
|
15259
|
+
/** @format uint32 */
|
|
15260
|
+
purchaseTimeOut: number
|
|
15261
|
+
}
|
|
14515
15262
|
|
|
14516
|
-
export
|
|
15263
|
+
export interface LolMetagamesPurchaseResponse {
|
|
15264
|
+
idempotencyId: string
|
|
15265
|
+
status: LolMetagamesPurchaseResponseStatus
|
|
15266
|
+
/** @format uint8 */
|
|
15267
|
+
numberOfPendingPurchases: number
|
|
15268
|
+
errorMessage: string
|
|
15269
|
+
}
|
|
14517
15270
|
|
|
14518
|
-
export
|
|
14519
|
-
|
|
14520
|
-
|
|
14521
|
-
|
|
14522
|
-
|
|
14523
|
-
|
|
14524
|
-
|
|
14525
|
-
|
|
15271
|
+
export type LolMetagamesPurchaseResponseStatus = "Failure" | "Success" | "Pending" | "None"
|
|
15272
|
+
|
|
15273
|
+
export interface LolMetagamesRiotMessagingServiceMessage {
|
|
15274
|
+
resource: string
|
|
15275
|
+
service: string
|
|
15276
|
+
version: string
|
|
15277
|
+
/** @format int64 */
|
|
15278
|
+
timestamp: number
|
|
15279
|
+
payload: string
|
|
15280
|
+
}
|
|
15281
|
+
|
|
15282
|
+
export interface LolMetagamesRmsEntitlementPayload {
|
|
15283
|
+
itemId: string
|
|
15284
|
+
itemTypeId: string
|
|
15285
|
+
tiers: string
|
|
15286
|
+
entitlementTypeId: string
|
|
15287
|
+
resourceOperation: string
|
|
15288
|
+
}
|
|
15289
|
+
|
|
15290
|
+
export interface LolMetagamesRmsStoreEntitlementItem {
|
|
15291
|
+
inventoryType: string
|
|
15292
|
+
itemId: string
|
|
15293
|
+
}
|
|
15294
|
+
|
|
15295
|
+
export interface LolMetagamesRmsStoreEntitlementPayload {
|
|
15296
|
+
transactionId: string
|
|
15297
|
+
items: LolMetagamesRmsStoreEntitlementItem[]
|
|
14526
15298
|
}
|
|
14527
15299
|
|
|
14528
|
-
export interface
|
|
14529
|
-
|
|
14530
|
-
playerResponse: LolMatchmakingMatchmakingReadyCheckResponse
|
|
14531
|
-
dodgeWarning: LolMatchmakingMatchmakingDodgeWarning
|
|
14532
|
-
/** @format float */
|
|
14533
|
-
timer: number
|
|
14534
|
-
declinerIds: number[]
|
|
14535
|
-
suppressUx: boolean
|
|
15300
|
+
export interface LolMetagamesRmsWalletPayload {
|
|
15301
|
+
[key: string | number]: any
|
|
14536
15302
|
}
|
|
14537
15303
|
|
|
14538
|
-
export
|
|
15304
|
+
export interface LolMetagamesRmsXboxSubscriptionChange {
|
|
15305
|
+
puuid: string
|
|
15306
|
+
subscriptionId: string
|
|
15307
|
+
active: string
|
|
15308
|
+
identityProvider: string[]
|
|
15309
|
+
}
|
|
14539
15310
|
|
|
14540
|
-
export
|
|
15311
|
+
export interface LolMetagamesSimpleInventoryDTO {
|
|
15312
|
+
items: Record<string, unknown>
|
|
15313
|
+
itemsJwt: string
|
|
15314
|
+
expires: string
|
|
15315
|
+
}
|
|
14541
15316
|
|
|
14542
|
-
export interface
|
|
15317
|
+
export interface LolMetagamesSimpleInventoryResponseDTO {
|
|
15318
|
+
data: LolMetagamesSimpleInventoryDTO
|
|
15319
|
+
}
|
|
15320
|
+
|
|
15321
|
+
export interface LolMetagamesSummonerIcon {
|
|
14543
15322
|
/** @format int32 */
|
|
14544
|
-
|
|
14545
|
-
|
|
15323
|
+
itemId: number
|
|
15324
|
+
}
|
|
15325
|
+
|
|
15326
|
+
export interface LolMetagamesWallet {
|
|
15327
|
+
/** @format int64 */
|
|
15328
|
+
ip: number
|
|
15329
|
+
/** @format int64 */
|
|
15330
|
+
rp: number
|
|
15331
|
+
}
|
|
15332
|
+
|
|
15333
|
+
export interface LolMetagamesWalletCacheEntry {
|
|
15334
|
+
signedBalancesJwt: string
|
|
14546
15335
|
/** @format uint64 */
|
|
14547
|
-
|
|
14548
|
-
/** @format
|
|
14549
|
-
|
|
14550
|
-
|
|
15336
|
+
expirationMS: number
|
|
15337
|
+
/** @format uint64 */
|
|
15338
|
+
issuedAtMS: number
|
|
15339
|
+
/** @format uint64 */
|
|
15340
|
+
receivedAtMS: number
|
|
15341
|
+
valid: boolean
|
|
14551
15342
|
}
|
|
14552
15343
|
|
|
14553
|
-
export interface
|
|
14554
|
-
|
|
14555
|
-
|
|
14556
|
-
|
|
14557
|
-
|
|
14558
|
-
|
|
14559
|
-
|
|
14560
|
-
timeInQueue: number
|
|
14561
|
-
/** @format float */
|
|
14562
|
-
estimatedQueueTime: number
|
|
14563
|
-
readyCheck: LolMatchmakingMatchmakingReadyCheckResource
|
|
14564
|
-
dodgeData: LolMatchmakingMatchmakingDodgeData
|
|
14565
|
-
lowPriorityData: LolMatchmakingMatchmakingLowPriorityData
|
|
14566
|
-
errors: LolMatchmakingMatchmakingSearchErrorResource[]
|
|
15344
|
+
export interface LolMetagamesWalletDTO {
|
|
15345
|
+
puuid: string
|
|
15346
|
+
/** @format int64 */
|
|
15347
|
+
accountId: number
|
|
15348
|
+
expires: string
|
|
15349
|
+
balances: Record<string, number>
|
|
15350
|
+
balancesJwt: string
|
|
14567
15351
|
}
|
|
14568
15352
|
|
|
14569
|
-
export
|
|
15353
|
+
export interface LolMetagamesWalletResponseDTO {
|
|
15354
|
+
data: LolMetagamesWalletDTO
|
|
15355
|
+
}
|
|
14570
15356
|
|
|
14571
|
-
export interface
|
|
14572
|
-
|
|
14573
|
-
|
|
15357
|
+
export interface LolMetagamesXboxSubscriptionStatus {
|
|
15358
|
+
active: string
|
|
15359
|
+
subscriptionId: string
|
|
14574
15360
|
}
|
|
14575
15361
|
|
|
14576
|
-
export interface
|
|
14577
|
-
|
|
14578
|
-
id: number
|
|
14579
|
-
isTeamBuilderManaged: boolean
|
|
15362
|
+
export interface LolMetagamesplayerEventDTO {
|
|
15363
|
+
playerGameData: unknown
|
|
14580
15364
|
}
|
|
14581
15365
|
|
|
14582
|
-
export
|
|
15366
|
+
export interface LolMetagamesplayerEventPayload {
|
|
15367
|
+
playerGameData: unknown
|
|
15368
|
+
inventoryTypes: string[]
|
|
15369
|
+
currencyTypes: string[]
|
|
15370
|
+
storeId: string
|
|
15371
|
+
paymentOption: string
|
|
15372
|
+
}
|
|
15373
|
+
|
|
15374
|
+
export interface LolMetagamesplayerEventResponseDTO {
|
|
15375
|
+
playerGameData: unknown
|
|
15376
|
+
attemptedPurchase: boolean
|
|
15377
|
+
purchaseIdToObserve: string
|
|
15378
|
+
}
|
|
14583
15379
|
|
|
14584
15380
|
export interface LolMissionsCAPMission {
|
|
14585
15381
|
missionId: string
|
|
@@ -17870,6 +18666,8 @@ export interface LolPurchaseWidgetItemDefinition {
|
|
|
17870
18666
|
bundledItemPrice?: LolPurchaseWidgetBundledItemPricingInfo
|
|
17871
18667
|
loyaltyUnlocked: boolean
|
|
17872
18668
|
hasVisibleLootOdds: boolean
|
|
18669
|
+
/** @format uint64 */
|
|
18670
|
+
inactiveDate: number
|
|
17873
18671
|
}
|
|
17874
18672
|
|
|
17875
18673
|
export interface LolPurchaseWidgetItemDetails {
|
|
@@ -17880,9 +18678,10 @@ export interface LolPurchaseWidgetItemDetails {
|
|
|
17880
18678
|
}
|
|
17881
18679
|
|
|
17882
18680
|
export interface LolPurchaseWidgetItemKey {
|
|
17883
|
-
inventoryType: string
|
|
17884
18681
|
/** @format int32 */
|
|
17885
18682
|
itemId: number
|
|
18683
|
+
inventoryType: string
|
|
18684
|
+
subInventoryType: string
|
|
17886
18685
|
}
|
|
17887
18686
|
|
|
17888
18687
|
export interface LolPurchaseWidgetItemMetadataEntry {
|
|
@@ -17912,6 +18711,8 @@ export interface LolPurchaseWidgetItemPrice {
|
|
|
17912
18711
|
currencyType: string
|
|
17913
18712
|
/** @format int32 */
|
|
17914
18713
|
price: number
|
|
18714
|
+
/** @format int32 */
|
|
18715
|
+
originalPrice: number
|
|
17915
18716
|
purchasable: boolean
|
|
17916
18717
|
}
|
|
17917
18718
|
|
|
@@ -18295,7 +19096,8 @@ export interface LolRankedLcuLeagueNotification {
|
|
|
18295
19096
|
wins: number
|
|
18296
19097
|
/** @format int32 */
|
|
18297
19098
|
losses: number
|
|
18298
|
-
|
|
19099
|
+
lpBonusAppliedReason: string
|
|
19100
|
+
leaguePointDeltaBreakdown: Record<string, number>
|
|
18299
19101
|
}
|
|
18300
19102
|
|
|
18301
19103
|
export type LolRankedLeagueDivision = "NA" | "V" | "IV" | "III" | "II" | "I"
|
|
@@ -18381,9 +19183,6 @@ export interface LolRankedLeagueNotification {
|
|
|
18381
19183
|
leaguePoints: number
|
|
18382
19184
|
/** @format int32 */
|
|
18383
19185
|
leaguePointsDelta: number
|
|
18384
|
-
/** @format int32 */
|
|
18385
|
-
splitPoints: number
|
|
18386
|
-
splitPointsBreakdown: Record<string, number>
|
|
18387
19186
|
ratedTier: string
|
|
18388
19187
|
/** @format int32 */
|
|
18389
19188
|
ratedRating: number
|
|
@@ -18405,7 +19204,7 @@ export interface LolRankedLeagueNotification {
|
|
|
18405
19204
|
wins: number
|
|
18406
19205
|
/** @format int32 */
|
|
18407
19206
|
losses: number
|
|
18408
|
-
|
|
19207
|
+
leaguePointDeltaBreakdown: Record<string, number>
|
|
18409
19208
|
}
|
|
18410
19209
|
|
|
18411
19210
|
export interface LolRankedLeagueNotifications {
|
|
@@ -18544,6 +19343,7 @@ export interface LolRankedRankedQueueStats {
|
|
|
18544
19343
|
previousSeasonEndDivision: LolRankedLeagueDivision
|
|
18545
19344
|
previousSeasonHighestTier: string
|
|
18546
19345
|
previousSeasonHighestDivision: LolRankedLeagueDivision
|
|
19346
|
+
climbingIndicatorActive: boolean
|
|
18547
19347
|
warnings?: LolRankedRankedQueueWarnings
|
|
18548
19348
|
}
|
|
18549
19349
|
|
|
@@ -18575,6 +19375,7 @@ export interface LolRankedRankedQueueStatsDTO {
|
|
|
18575
19375
|
previousSeasonEndRank: string
|
|
18576
19376
|
previousSeasonHighestTier: string
|
|
18577
19377
|
previousSeasonHighestRank: string
|
|
19378
|
+
climbingIndicatorActive: boolean
|
|
18578
19379
|
warnings?: LolRankedRankedQueueWarningsDTO
|
|
18579
19380
|
}
|
|
18580
19381
|
|
|
@@ -18954,6 +19755,11 @@ export interface LolRegaliaSummonerProfileUpdate {
|
|
|
18954
19755
|
value: string
|
|
18955
19756
|
}
|
|
18956
19757
|
|
|
19758
|
+
export interface LolRemedyHostageDetectedNotification {
|
|
19759
|
+
offenderPuuid: string
|
|
19760
|
+
wasGameTerminated: boolean
|
|
19761
|
+
}
|
|
19762
|
+
|
|
18957
19763
|
export interface LolRemedyMail {
|
|
18958
19764
|
mailId: string
|
|
18959
19765
|
message: string
|
|
@@ -20199,6 +21005,181 @@ export interface LolRsoAuthUserInfo {
|
|
|
20199
21005
|
userInfo: string
|
|
20200
21006
|
}
|
|
20201
21007
|
|
|
21008
|
+
export interface LolSanctumBannerOddsInfo {
|
|
21009
|
+
bannerId: string
|
|
21010
|
+
sTierRewards: LolSanctumSanctumTierDrops
|
|
21011
|
+
aTierRewards: LolSanctumSanctumTierDrops
|
|
21012
|
+
bTierRewards: LolSanctumSanctumTierDrops
|
|
21013
|
+
nodeIdToDropDetailsMap: Record<string, LolSanctumSanctumDropDetails>
|
|
21014
|
+
}
|
|
21015
|
+
|
|
21016
|
+
export interface LolSanctumBannerStoreDisplayMetadata {
|
|
21017
|
+
startDate: string
|
|
21018
|
+
endDate: string
|
|
21019
|
+
sanctum: LolSanctumSanctumMetadataDetails
|
|
21020
|
+
}
|
|
21021
|
+
|
|
21022
|
+
export interface LolSanctumCapCounterData {
|
|
21023
|
+
/** @format uint32 */
|
|
21024
|
+
amount: number
|
|
21025
|
+
/** @format uint32 */
|
|
21026
|
+
version: number
|
|
21027
|
+
active: boolean
|
|
21028
|
+
lastModifiedDate: string
|
|
21029
|
+
}
|
|
21030
|
+
|
|
21031
|
+
export interface LolSanctumGameDataBannerSkin {
|
|
21032
|
+
/** @format uint32 */
|
|
21033
|
+
id: number
|
|
21034
|
+
name: string
|
|
21035
|
+
rarity: string
|
|
21036
|
+
}
|
|
21037
|
+
|
|
21038
|
+
export interface LolSanctumGameDataPityCounter {
|
|
21039
|
+
id: string
|
|
21040
|
+
name: string
|
|
21041
|
+
}
|
|
21042
|
+
|
|
21043
|
+
export interface LolSanctumGameDataSanctumBanner {
|
|
21044
|
+
id: string
|
|
21045
|
+
chasePityCounter: LolSanctumGameDataPityCounter
|
|
21046
|
+
/** @format uint32 */
|
|
21047
|
+
chasePityThreshold: number
|
|
21048
|
+
/** @format uint32 */
|
|
21049
|
+
highlightPityThreshold: number
|
|
21050
|
+
bannerBackgroundTexture: string
|
|
21051
|
+
bannerBackgroundParallax: string
|
|
21052
|
+
bannerChaseAnimationWebmPath: string
|
|
21053
|
+
bannerChaseAnimationParallax: string
|
|
21054
|
+
rollVignetteSkinIntroWebmPath: string
|
|
21055
|
+
rollVignetteSkinIntroSfxPath: string
|
|
21056
|
+
chaseCelebrationIntroWebmPath: string
|
|
21057
|
+
chaseCelebrationVo: LolSanctumGameDataSanctumBannerVo
|
|
21058
|
+
hubIntroVo: LolSanctumGameDataSanctumBannerVo
|
|
21059
|
+
rollVignette: LolSanctumSanctumVignette
|
|
21060
|
+
bannerSkin: LolSanctumGameDataBannerSkin
|
|
21061
|
+
bannerCurrency: LolSanctumGameDataSanctumCurrency
|
|
21062
|
+
}
|
|
21063
|
+
|
|
21064
|
+
export interface LolSanctumGameDataSanctumBannerVo {
|
|
21065
|
+
path: string
|
|
21066
|
+
/** @format uint32 */
|
|
21067
|
+
defaultDelayMillis: number
|
|
21068
|
+
localeOverrides: LolSanctumGameDataSanctumBannerVoOverrideOptions[]
|
|
21069
|
+
}
|
|
21070
|
+
|
|
21071
|
+
export interface LolSanctumGameDataSanctumBannerVoOverrideOptions {
|
|
21072
|
+
locale: string
|
|
21073
|
+
/** @format uint32 */
|
|
21074
|
+
delayMillis: number
|
|
21075
|
+
}
|
|
21076
|
+
|
|
21077
|
+
export interface LolSanctumGameDataSanctumCurrency {
|
|
21078
|
+
id: string
|
|
21079
|
+
name: string
|
|
21080
|
+
currencyId: string
|
|
21081
|
+
capCatalogEntryId: string
|
|
21082
|
+
}
|
|
21083
|
+
|
|
21084
|
+
export interface LolSanctumGipItem {
|
|
21085
|
+
/** @format uint32 */
|
|
21086
|
+
gipItemId: number
|
|
21087
|
+
}
|
|
21088
|
+
|
|
21089
|
+
export interface LolSanctumSanctumBannerResponse {
|
|
21090
|
+
id: string
|
|
21091
|
+
bannerBackgroundTexture: string
|
|
21092
|
+
bannerBackgroundParallax: string
|
|
21093
|
+
bannerChaseAnimationWebmPath: string
|
|
21094
|
+
bannerChaseAnimationParallax: string
|
|
21095
|
+
chasePityCounter: LolSanctumGameDataPityCounter
|
|
21096
|
+
/** @format uint32 */
|
|
21097
|
+
chasePityThreshold: number
|
|
21098
|
+
/** @format uint32 */
|
|
21099
|
+
highlightPityThreshold: number
|
|
21100
|
+
skinIntroAnimationPath: string
|
|
21101
|
+
skinIntroSfxPath: string
|
|
21102
|
+
chaseCelebrationIntroAnimationPath: string
|
|
21103
|
+
chaseCelebrationVo: LolSanctumGameDataSanctumBannerVo
|
|
21104
|
+
hubIntroVo: LolSanctumGameDataSanctumBannerVo
|
|
21105
|
+
sanctumRollVideos: LolSanctumSanctumVignette
|
|
21106
|
+
bannerSkin: LolSanctumGameDataBannerSkin
|
|
21107
|
+
bannerCurrency: LolSanctumGameDataSanctumCurrency
|
|
21108
|
+
capCatalogStoreId: string
|
|
21109
|
+
dropTableCatalogEntryId: string
|
|
21110
|
+
pityCounter: LolSanctumCapCounterData
|
|
21111
|
+
/** @format int64 */
|
|
21112
|
+
startDate: number
|
|
21113
|
+
/** @format int64 */
|
|
21114
|
+
endDate: number
|
|
21115
|
+
}
|
|
21116
|
+
|
|
21117
|
+
export interface LolSanctumSanctumCatalogPurchaseRequest {
|
|
21118
|
+
bannerId: string
|
|
21119
|
+
storeId: string
|
|
21120
|
+
catalogEntryId: string
|
|
21121
|
+
/** @format uint32 */
|
|
21122
|
+
quantity: number
|
|
21123
|
+
paymentOptions: string[]
|
|
21124
|
+
customInventoryLocation: string
|
|
21125
|
+
}
|
|
21126
|
+
|
|
21127
|
+
export interface LolSanctumSanctumDropDetails {
|
|
21128
|
+
/** @format double */
|
|
21129
|
+
odds: number
|
|
21130
|
+
itemInstanceId: string
|
|
21131
|
+
nodeId: string
|
|
21132
|
+
type: string
|
|
21133
|
+
parentId: string
|
|
21134
|
+
/** @format uint32 */
|
|
21135
|
+
tier: number
|
|
21136
|
+
isChaseItem: boolean
|
|
21137
|
+
/** @format uint32 */
|
|
21138
|
+
quantity: number
|
|
21139
|
+
bundledCurrencyNodeIds: string[]
|
|
21140
|
+
bundleParentNodeId: string
|
|
21141
|
+
}
|
|
21142
|
+
|
|
21143
|
+
export interface LolSanctumSanctumMetadataDetails {
|
|
21144
|
+
bannerId: string
|
|
21145
|
+
}
|
|
21146
|
+
|
|
21147
|
+
export interface LolSanctumSanctumPurchaseRequest {
|
|
21148
|
+
bannerId: string
|
|
21149
|
+
/** @format uint32 */
|
|
21150
|
+
quantity: number
|
|
21151
|
+
}
|
|
21152
|
+
|
|
21153
|
+
export interface LolSanctumSanctumPurchaseResponse {
|
|
21154
|
+
id: string
|
|
21155
|
+
status: LolSanctumSanctumPurchaseResponseStatus
|
|
21156
|
+
rollResultNodeIds: string[]
|
|
21157
|
+
}
|
|
21158
|
+
|
|
21159
|
+
export type LolSanctumSanctumPurchaseResponseStatus = "Failure" | "Success" | "Pending" | "None"
|
|
21160
|
+
|
|
21161
|
+
export interface LolSanctumSanctumTierDrops {
|
|
21162
|
+
/** @format uint32 */
|
|
21163
|
+
tier: number
|
|
21164
|
+
/** @format double */
|
|
21165
|
+
odds: number
|
|
21166
|
+
mainDrops: LolSanctumSanctumDropDetails[]
|
|
21167
|
+
fallbackDrops: LolSanctumSanctumDropDetails[]
|
|
21168
|
+
}
|
|
21169
|
+
|
|
21170
|
+
export interface LolSanctumSanctumVignette {
|
|
21171
|
+
introTierOneWebmPath: string
|
|
21172
|
+
introTierOneMultiWebmPath: string
|
|
21173
|
+
introTierTwoWebmPath: string
|
|
21174
|
+
introTierTwoMultiWebmPath: string
|
|
21175
|
+
introTierThreeWebmPath: string
|
|
21176
|
+
introTierThreeMultiWebmPath: string
|
|
21177
|
+
}
|
|
21178
|
+
|
|
21179
|
+
export interface LolSanctumSetSelectedBannerIdRequest {
|
|
21180
|
+
bannerId: string
|
|
21181
|
+
}
|
|
21182
|
+
|
|
20202
21183
|
export interface LolSeasonsAllProductSeasonQuery {
|
|
20203
21184
|
/** @format uint16 */
|
|
20204
21185
|
lastNYears: number
|
|
@@ -21459,6 +22440,7 @@ export interface LolSummonerAutoFillQueueDto {
|
|
|
21459
22440
|
autoFillEligible: boolean
|
|
21460
22441
|
autoFillProtectedForStreaking: boolean
|
|
21461
22442
|
autoFillProtectedForPromos: boolean
|
|
22443
|
+
overridePositionSelectionsWithFill: boolean
|
|
21462
22444
|
autoFillProtectedForRemedy: boolean
|
|
21463
22445
|
}
|
|
21464
22446
|
|
|
@@ -21471,6 +22453,11 @@ export interface LolSummonerGameloopPlayerInfoV2 {
|
|
|
21471
22453
|
rerollDataBags: LolSummonerRerollDataBagForClientV1[]
|
|
21472
22454
|
}
|
|
21473
22455
|
|
|
22456
|
+
export interface LolSummonerGameloopPlayerInfoV2Response {
|
|
22457
|
+
payload?: LolSummonerGameloopPlayerInfoV2
|
|
22458
|
+
status: string
|
|
22459
|
+
}
|
|
22460
|
+
|
|
21474
22461
|
export interface LolSummonerLevelField {
|
|
21475
22462
|
/** @format uint32 */
|
|
21476
22463
|
initialLevel: number
|
|
@@ -21545,7 +22532,11 @@ export interface LolSummonerProfilesHonorView {
|
|
|
21545
22532
|
}
|
|
21546
22533
|
|
|
21547
22534
|
export interface LolSummonerProfilesLolEosRewardView {
|
|
22535
|
+
/** @format int32 */
|
|
22536
|
+
seasonId: number
|
|
21548
22537
|
rewardIds: string[]
|
|
22538
|
+
highestRankPerQueueId: Record<string, LolSummonerProfilesRank>
|
|
22539
|
+
eligibility: LolSummonerProfilesRewardsEligibility
|
|
21549
22540
|
}
|
|
21550
22541
|
|
|
21551
22542
|
export interface LolSummonerProfilesPrivacyView {
|
|
@@ -21557,6 +22548,11 @@ export interface LolSummonerProfilesPuuidAndViews {
|
|
|
21557
22548
|
payload: Record<string, LolSummonerProfilesViews>
|
|
21558
22549
|
}
|
|
21559
22550
|
|
|
22551
|
+
export interface LolSummonerProfilesRank {
|
|
22552
|
+
tier: string
|
|
22553
|
+
division: string
|
|
22554
|
+
}
|
|
22555
|
+
|
|
21560
22556
|
export interface LolSummonerProfilesRedemption {
|
|
21561
22557
|
/** @format int32 */
|
|
21562
22558
|
required: number
|
|
@@ -21565,6 +22561,38 @@ export interface LolSummonerProfilesRedemption {
|
|
|
21565
22561
|
eventType: string
|
|
21566
22562
|
}
|
|
21567
22563
|
|
|
22564
|
+
export interface LolSummonerProfilesRestriction {
|
|
22565
|
+
restrictionType: string
|
|
22566
|
+
restrictionReason: string
|
|
22567
|
+
expirationData: LolSummonerProfilesRestrictionExpiration
|
|
22568
|
+
}
|
|
22569
|
+
|
|
22570
|
+
export interface LolSummonerProfilesRestrictionExpiration {
|
|
22571
|
+
/** @format int64 */
|
|
22572
|
+
expirationMillis: number
|
|
22573
|
+
redemptions: LolSummonerProfilesRestrictionRedemption[]
|
|
22574
|
+
}
|
|
22575
|
+
|
|
22576
|
+
export interface LolSummonerProfilesRestrictionRedemption {
|
|
22577
|
+
redemptionEventType: string
|
|
22578
|
+
/** @format int32 */
|
|
22579
|
+
redemptionCountRemaining: number
|
|
22580
|
+
/** @format int32 */
|
|
22581
|
+
redemptionCountRequired: number
|
|
22582
|
+
}
|
|
22583
|
+
|
|
22584
|
+
export interface LolSummonerProfilesRestrictionsView {
|
|
22585
|
+
restrictions: LolSummonerProfilesRestriction[]
|
|
22586
|
+
}
|
|
22587
|
+
|
|
22588
|
+
export interface LolSummonerProfilesRewardsEligibility {
|
|
22589
|
+
honorRequirementEnabled: boolean
|
|
22590
|
+
/** @format int32 */
|
|
22591
|
+
minHonorLevelForRewards: number
|
|
22592
|
+
/** @format int32 */
|
|
22593
|
+
honorLevel?: number
|
|
22594
|
+
}
|
|
22595
|
+
|
|
21568
22596
|
export interface LolSummonerProfilesSummonerLevel {
|
|
21569
22597
|
puuid: string
|
|
21570
22598
|
/** @format uint32 */
|
|
@@ -22271,6 +23299,7 @@ export interface LolTftEventPveItemKey {
|
|
|
22271
23299
|
contentId: string
|
|
22272
23300
|
/** @format int32 */
|
|
22273
23301
|
itemId: number
|
|
23302
|
+
data: Record<string, string>
|
|
22274
23303
|
}
|
|
22275
23304
|
|
|
22276
23305
|
export type LolTftEventPveItemOwnershipType = "F2P" | "LOYALTY" | "RENTED" | "OWNED"
|
|
@@ -23147,6 +24176,7 @@ export interface LolTftPassEventDetailsUIData {
|
|
|
23147
24176
|
memoryBookBackgroundImage: string
|
|
23148
24177
|
/** @format uint32 */
|
|
23149
24178
|
spotlightSkinId: number
|
|
24179
|
+
actBackgroundImage: string
|
|
23150
24180
|
}
|
|
23151
24181
|
|
|
23152
24182
|
export type LolTftPassEventHubType = "ActivityCenterMilestones" | "SeasonPass" | "HallOfLegends" | "EventShop"
|
|
@@ -23896,6 +24926,7 @@ export interface LolTftPassSeasonPass {
|
|
|
23896
24926
|
localizedSeasonLogo: string
|
|
23897
24927
|
localizedShortName: string
|
|
23898
24928
|
chapters: LolTftPassChapter[]
|
|
24929
|
+
actBackgroundImage: string
|
|
23899
24930
|
}
|
|
23900
24931
|
|
|
23901
24932
|
export type LolTftPassSelectGrantStatusResponse = "FAILED" | "SELECTED"
|
|
@@ -24353,6 +25384,7 @@ export interface LolTftSkillTreeItemKey {
|
|
|
24353
25384
|
contentId: string
|
|
24354
25385
|
/** @format int32 */
|
|
24355
25386
|
itemId: number
|
|
25387
|
+
data: Record<string, string>
|
|
24356
25388
|
}
|
|
24357
25389
|
|
|
24358
25390
|
export interface LolTftSkillTreeLoadout {
|
|
@@ -25357,6 +26389,7 @@ export interface LolTftTrovesTrovePurchaseResponse {
|
|
|
25357
26389
|
export interface LolTftTrovesTroves {
|
|
25358
26390
|
enabled: boolean
|
|
25359
26391
|
capCatalogEnabled: boolean
|
|
26392
|
+
shoppeOddsTreeEnabled: boolean
|
|
25360
26393
|
bannerList?: LolTftTrovesTrovesActiveBanner[]
|
|
25361
26394
|
}
|
|
25362
26395
|
|
|
@@ -27819,6 +28852,7 @@ export interface TeamBuilderDirect_ChampSelectPinDropSummoner {
|
|
|
27819
28852
|
lanePosition: number
|
|
27820
28853
|
isLocalSummoner: boolean
|
|
27821
28854
|
isPlaceholder: boolean
|
|
28855
|
+
isAutofilled: boolean
|
|
27822
28856
|
}
|
|
27823
28857
|
|
|
27824
28858
|
export interface TeamBuilderDirect_ChampSelectPlayerSelection {
|
|
@@ -28750,6 +29784,7 @@ export interface TeambuilderEdge_AutoFillDataBagForClientV1 {
|
|
|
28750
29784
|
autoFillProtectedForStreaking: boolean
|
|
28751
29785
|
autoFillProtectedForPromos: boolean
|
|
28752
29786
|
autoFillProtectedForRemedy: boolean
|
|
29787
|
+
overridePositionSelectionsWithFill: boolean
|
|
28753
29788
|
}
|
|
28754
29789
|
|
|
28755
29790
|
export interface TeambuilderEdge_BattleBoostStateV1 {
|
|
@@ -28774,6 +29809,7 @@ export interface TeambuilderEdge_CellV1 {
|
|
|
28774
29809
|
gameName: string
|
|
28775
29810
|
tagLine: string
|
|
28776
29811
|
isHumanoid: boolean
|
|
29812
|
+
isAutofilled: boolean
|
|
28777
29813
|
/** @format int64 */
|
|
28778
29814
|
summonerId: number
|
|
28779
29815
|
/** @format int32 */
|
|
@@ -28788,7 +29824,6 @@ export interface TeambuilderEdge_CellV1 {
|
|
|
28788
29824
|
/** @format int32 */
|
|
28789
29825
|
skinId: number
|
|
28790
29826
|
nameVisibilityType: string
|
|
28791
|
-
isAutofilled: boolean
|
|
28792
29827
|
}
|
|
28793
29828
|
|
|
28794
29829
|
export interface TeambuilderEdge_CellsV1 {
|
|
@@ -28963,9 +29998,9 @@ export interface TeambuilderEdge_RerollDataBagForClientV1 {
|
|
|
28963
29998
|
/** @format int32 */
|
|
28964
29999
|
totalPoints: number
|
|
28965
30000
|
/** @format int32 */
|
|
28966
|
-
pointCostOfReroll: number
|
|
28967
|
-
/** @format int32 */
|
|
28968
30001
|
maximumRerolls: number
|
|
30002
|
+
/** @format int32 */
|
|
30003
|
+
pointCostOfReroll: number
|
|
28969
30004
|
}
|
|
28970
30005
|
|
|
28971
30006
|
export interface TeambuilderEdge_RerollStateV1 {
|