@dendotdev/grunt 1.0.8 → 1.0.9
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/index.d.mts +695 -695
- package/dist/index.d.ts +695 -695
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -226,7 +226,7 @@ interface RawResponse {
|
|
|
226
226
|
* const result = await client.stats.getMatchStats('match-id');
|
|
227
227
|
* if (isSuccess(result)) {
|
|
228
228
|
* // TypeScript now knows result.result is non-null
|
|
229
|
-
* console.log(result.result.
|
|
229
|
+
* console.log(result.result.MatchId);
|
|
230
230
|
* }
|
|
231
231
|
* ```
|
|
232
232
|
*/
|
|
@@ -711,22 +711,22 @@ declare abstract class ModuleBase {
|
|
|
711
711
|
*/
|
|
712
712
|
interface BanResult {
|
|
713
713
|
/** Player identifier */
|
|
714
|
-
|
|
714
|
+
PlayerId?: string;
|
|
715
715
|
/** Whether player is banned */
|
|
716
|
-
|
|
716
|
+
IsBanned?: boolean;
|
|
717
717
|
/** Ban reason */
|
|
718
|
-
|
|
718
|
+
Reason?: string;
|
|
719
719
|
/** Ban expiration (ISO 8601) */
|
|
720
|
-
|
|
720
|
+
ExpiresAt?: string;
|
|
721
721
|
/** Severity level */
|
|
722
|
-
|
|
722
|
+
Severity?: string;
|
|
723
723
|
}
|
|
724
724
|
/**
|
|
725
725
|
* Container for ban query results.
|
|
726
726
|
*/
|
|
727
727
|
interface BansSummaryQueryResult {
|
|
728
728
|
/** List of ban results */
|
|
729
|
-
|
|
729
|
+
Results?: BanResult[];
|
|
730
730
|
}
|
|
731
731
|
|
|
732
732
|
/**
|
|
@@ -734,75 +734,75 @@ interface BansSummaryQueryResult {
|
|
|
734
734
|
*/
|
|
735
735
|
interface Server {
|
|
736
736
|
/** Server region */
|
|
737
|
-
|
|
737
|
+
Region?: string;
|
|
738
738
|
/** Server address */
|
|
739
|
-
|
|
739
|
+
Address?: string;
|
|
740
740
|
/** Server port */
|
|
741
|
-
|
|
741
|
+
Port?: number;
|
|
742
742
|
/** Server name */
|
|
743
|
-
|
|
743
|
+
Name?: string;
|
|
744
744
|
/** Whether server is available */
|
|
745
|
-
|
|
745
|
+
Available?: boolean;
|
|
746
746
|
}
|
|
747
747
|
/**
|
|
748
748
|
* Lobby presence request.
|
|
749
749
|
*/
|
|
750
750
|
interface LobbyPresenceRequest {
|
|
751
751
|
/** Player identifier */
|
|
752
|
-
|
|
752
|
+
PlayerId?: string;
|
|
753
753
|
/** Session ID */
|
|
754
|
-
|
|
754
|
+
SessionId?: string;
|
|
755
755
|
}
|
|
756
756
|
/**
|
|
757
757
|
* Container for lobby presence requests.
|
|
758
758
|
*/
|
|
759
759
|
interface LobbyPresenceRequestContainer {
|
|
760
760
|
/** List of presence requests */
|
|
761
|
-
|
|
761
|
+
Requests?: LobbyPresenceRequest[];
|
|
762
762
|
}
|
|
763
763
|
/**
|
|
764
764
|
* Lobby presence result.
|
|
765
765
|
*/
|
|
766
766
|
interface LobbyPresenceResult {
|
|
767
767
|
/** Player identifier */
|
|
768
|
-
|
|
768
|
+
PlayerId?: string;
|
|
769
769
|
/** Session ID */
|
|
770
|
-
|
|
770
|
+
SessionId?: string;
|
|
771
771
|
/** Lobby ID */
|
|
772
|
-
|
|
772
|
+
LobbyId?: string;
|
|
773
773
|
/** Whether player is in lobby */
|
|
774
|
-
|
|
774
|
+
InLobby?: boolean;
|
|
775
775
|
}
|
|
776
776
|
/**
|
|
777
777
|
* Container for lobby presence results.
|
|
778
778
|
*/
|
|
779
779
|
interface LobbyPresenceContainer {
|
|
780
780
|
/** List of presence results */
|
|
781
|
-
|
|
781
|
+
Results?: LobbyPresenceResult[];
|
|
782
782
|
}
|
|
783
783
|
/**
|
|
784
784
|
* Lobby join handle.
|
|
785
785
|
*/
|
|
786
786
|
interface LobbyJoinHandle {
|
|
787
787
|
/** Handle identifier */
|
|
788
|
-
|
|
788
|
+
HandleId?: string;
|
|
789
789
|
/** Lobby ID */
|
|
790
|
-
|
|
790
|
+
LobbyId?: string;
|
|
791
791
|
/** Handle value */
|
|
792
|
-
|
|
792
|
+
Handle?: string;
|
|
793
793
|
/** Expiration time (ISO 8601) */
|
|
794
|
-
|
|
794
|
+
ExpiresAt?: string;
|
|
795
795
|
}
|
|
796
796
|
/**
|
|
797
797
|
* Response when joining a lobby.
|
|
798
798
|
*/
|
|
799
799
|
interface JoinLobbyResponse {
|
|
800
800
|
/** Success status */
|
|
801
|
-
|
|
801
|
+
Success?: boolean;
|
|
802
802
|
/** Lobby ID */
|
|
803
|
-
|
|
803
|
+
LobbyId?: string;
|
|
804
804
|
/** Session details */
|
|
805
|
-
|
|
805
|
+
Session?: Record<string, unknown>;
|
|
806
806
|
}
|
|
807
807
|
|
|
808
808
|
/**
|
|
@@ -810,86 +810,86 @@ interface JoinLobbyResponse {
|
|
|
810
810
|
*/
|
|
811
811
|
interface PlayerItem {
|
|
812
812
|
/** Item path identifier */
|
|
813
|
-
|
|
813
|
+
ItemPath?: string;
|
|
814
814
|
/** Item type */
|
|
815
|
-
|
|
815
|
+
ItemType?: string;
|
|
816
816
|
/** Quantity owned */
|
|
817
|
-
|
|
817
|
+
Amount?: number;
|
|
818
818
|
/** When first acquired (ISO 8601) */
|
|
819
|
-
|
|
819
|
+
FirstAcquiredDate?: string;
|
|
820
820
|
/** Source of acquisition */
|
|
821
|
-
|
|
821
|
+
Source?: string;
|
|
822
822
|
}
|
|
823
823
|
/**
|
|
824
824
|
* Player inventory response.
|
|
825
825
|
*/
|
|
826
826
|
interface PlayerInventory {
|
|
827
827
|
/** List of inventory items */
|
|
828
|
-
|
|
828
|
+
Items?: PlayerItem[];
|
|
829
829
|
}
|
|
830
830
|
/**
|
|
831
831
|
* Currency balance.
|
|
832
832
|
*/
|
|
833
833
|
interface CurrencyAmount {
|
|
834
834
|
/** Currency identifier */
|
|
835
|
-
|
|
835
|
+
CurrencyId?: string;
|
|
836
836
|
/** Current balance */
|
|
837
|
-
|
|
837
|
+
Amount?: number;
|
|
838
838
|
}
|
|
839
839
|
/**
|
|
840
840
|
* Currency snapshot containing all balances.
|
|
841
841
|
*/
|
|
842
842
|
interface CurrencySnapshot {
|
|
843
843
|
/** List of currency balances */
|
|
844
|
-
|
|
844
|
+
Currencies?: CurrencyAmount[];
|
|
845
845
|
}
|
|
846
846
|
/**
|
|
847
847
|
* Currency definition from CMS.
|
|
848
848
|
*/
|
|
849
849
|
interface CurrencyDefinition {
|
|
850
850
|
/** Currency identifier */
|
|
851
|
-
|
|
851
|
+
CurrencyId?: string;
|
|
852
852
|
/** Display title */
|
|
853
|
-
|
|
853
|
+
Title?: DisplayString;
|
|
854
854
|
/** Description */
|
|
855
|
-
|
|
855
|
+
Description?: DisplayString;
|
|
856
856
|
/** Image path */
|
|
857
|
-
|
|
857
|
+
Image?: string;
|
|
858
858
|
/** Icon type */
|
|
859
|
-
|
|
859
|
+
IconType?: string;
|
|
860
860
|
}
|
|
861
861
|
/**
|
|
862
862
|
* Localized display string.
|
|
863
863
|
*/
|
|
864
864
|
interface DisplayString {
|
|
865
865
|
/** Status of the localization */
|
|
866
|
-
|
|
866
|
+
Status?: string;
|
|
867
867
|
/** Default/fallback value */
|
|
868
|
-
|
|
868
|
+
Value?: string;
|
|
869
869
|
/** Translations by locale code */
|
|
870
|
-
|
|
870
|
+
Translations?: Record<string, string>;
|
|
871
871
|
}
|
|
872
872
|
/**
|
|
873
873
|
* Inventory amount with details.
|
|
874
874
|
*/
|
|
875
875
|
interface InventoryAmount {
|
|
876
876
|
/** Item path */
|
|
877
|
-
|
|
877
|
+
ItemPath?: string;
|
|
878
878
|
/** Quantity */
|
|
879
|
-
|
|
879
|
+
Amount?: number;
|
|
880
880
|
/** Item type */
|
|
881
|
-
|
|
881
|
+
ItemType?: string;
|
|
882
882
|
}
|
|
883
883
|
/**
|
|
884
884
|
* Transaction result after currency operation.
|
|
885
885
|
*/
|
|
886
886
|
interface TransactionSnapshot {
|
|
887
887
|
/** Transaction identifier */
|
|
888
|
-
|
|
888
|
+
TransactionId?: string;
|
|
889
889
|
/** New balance after transaction */
|
|
890
|
-
|
|
890
|
+
NewBalance?: CurrencyAmount[];
|
|
891
891
|
/** Transaction timestamp (ISO 8601) */
|
|
892
|
-
|
|
892
|
+
Timestamp?: string;
|
|
893
893
|
}
|
|
894
894
|
|
|
895
895
|
/**
|
|
@@ -897,45 +897,45 @@ interface TransactionSnapshot {
|
|
|
897
897
|
*/
|
|
898
898
|
interface Medal {
|
|
899
899
|
/** Medal name identifier */
|
|
900
|
-
|
|
900
|
+
NameId?: number;
|
|
901
901
|
/** Display name */
|
|
902
|
-
|
|
902
|
+
Name?: DisplayString;
|
|
903
903
|
/** Description */
|
|
904
|
-
|
|
904
|
+
Description?: DisplayString;
|
|
905
905
|
/** Sprite index */
|
|
906
|
-
|
|
906
|
+
SpriteIndex?: number;
|
|
907
907
|
/** Medal type */
|
|
908
|
-
|
|
908
|
+
Type?: string;
|
|
909
909
|
/** Difficulty level */
|
|
910
|
-
|
|
910
|
+
Difficulty?: string;
|
|
911
911
|
/** Personal score awarded */
|
|
912
|
-
|
|
912
|
+
PersonalScore?: number;
|
|
913
913
|
/** Sorting weight */
|
|
914
|
-
|
|
914
|
+
SortingWeight?: number;
|
|
915
915
|
}
|
|
916
916
|
/**
|
|
917
917
|
* Medal metadata collection.
|
|
918
918
|
*/
|
|
919
919
|
interface MedalMetadata {
|
|
920
920
|
/** List of medals */
|
|
921
|
-
|
|
921
|
+
Medals?: Medal[];
|
|
922
922
|
/** Sprite sheet information */
|
|
923
|
-
|
|
923
|
+
SpriteSheet?: SpriteSheet;
|
|
924
924
|
}
|
|
925
925
|
/**
|
|
926
926
|
* Sprite sheet information.
|
|
927
927
|
*/
|
|
928
928
|
interface SpriteSheet {
|
|
929
929
|
/** Path to sprite sheet image */
|
|
930
|
-
|
|
930
|
+
Path?: string;
|
|
931
931
|
/** Sprite width */
|
|
932
|
-
|
|
932
|
+
SpriteWidth?: number;
|
|
933
933
|
/** Sprite height */
|
|
934
|
-
|
|
934
|
+
SpriteHeight?: number;
|
|
935
935
|
/** Number of columns */
|
|
936
|
-
|
|
936
|
+
Columns?: number;
|
|
937
937
|
/** Number of rows */
|
|
938
|
-
|
|
938
|
+
Rows?: number;
|
|
939
939
|
}
|
|
940
940
|
|
|
941
941
|
/**
|
|
@@ -943,116 +943,116 @@ interface SpriteSheet {
|
|
|
943
943
|
*/
|
|
944
944
|
interface AcademyClientManifest {
|
|
945
945
|
/** List of categories */
|
|
946
|
-
|
|
946
|
+
Categories?: AcademyCategory[];
|
|
947
947
|
/** Version */
|
|
948
|
-
|
|
948
|
+
Version?: string;
|
|
949
949
|
}
|
|
950
950
|
/**
|
|
951
951
|
* Academy category.
|
|
952
952
|
*/
|
|
953
953
|
interface AcademyCategory {
|
|
954
954
|
/** Category identifier */
|
|
955
|
-
|
|
955
|
+
Id?: string;
|
|
956
956
|
/** Category title */
|
|
957
|
-
|
|
957
|
+
Title?: DisplayString;
|
|
958
958
|
/** Category description */
|
|
959
|
-
|
|
959
|
+
Description?: DisplayString;
|
|
960
960
|
/** Image path */
|
|
961
|
-
|
|
961
|
+
ImagePath?: string;
|
|
962
962
|
/** Series in this category */
|
|
963
|
-
|
|
963
|
+
Series?: AcademySeries[];
|
|
964
964
|
}
|
|
965
965
|
/**
|
|
966
966
|
* Academy series (collection of drills).
|
|
967
967
|
*/
|
|
968
968
|
interface AcademySeries {
|
|
969
969
|
/** Series identifier */
|
|
970
|
-
|
|
970
|
+
Id?: string;
|
|
971
971
|
/** Series title */
|
|
972
|
-
|
|
972
|
+
Title?: DisplayString;
|
|
973
973
|
/** Description */
|
|
974
|
-
|
|
974
|
+
Description?: DisplayString;
|
|
975
975
|
/** Image path */
|
|
976
|
-
|
|
976
|
+
ImagePath?: string;
|
|
977
977
|
/** Drills in this series */
|
|
978
|
-
|
|
978
|
+
Drills?: AcademyDrill[];
|
|
979
979
|
}
|
|
980
980
|
/**
|
|
981
981
|
* Academy drill.
|
|
982
982
|
*/
|
|
983
983
|
interface AcademyDrill {
|
|
984
984
|
/** Drill identifier */
|
|
985
|
-
|
|
985
|
+
Id?: string;
|
|
986
986
|
/** Drill title */
|
|
987
|
-
|
|
987
|
+
Title?: DisplayString;
|
|
988
988
|
/** Description */
|
|
989
|
-
|
|
989
|
+
Description?: DisplayString;
|
|
990
990
|
/** Image path */
|
|
991
|
-
|
|
991
|
+
ImagePath?: string;
|
|
992
992
|
/** Difficulty level */
|
|
993
|
-
|
|
993
|
+
Difficulty?: string;
|
|
994
994
|
/** Weapon path */
|
|
995
|
-
|
|
995
|
+
WeaponPath?: string;
|
|
996
996
|
/** Map asset ID */
|
|
997
|
-
|
|
997
|
+
MapAssetId?: string;
|
|
998
998
|
/** Game variant asset ID */
|
|
999
|
-
|
|
999
|
+
GameVariantAssetId?: string;
|
|
1000
1000
|
}
|
|
1001
1001
|
/**
|
|
1002
1002
|
* Academy star definitions.
|
|
1003
1003
|
*/
|
|
1004
1004
|
interface AcademyStarDefinitions {
|
|
1005
1005
|
/** Star definitions by drill */
|
|
1006
|
-
|
|
1006
|
+
Definitions?: Record<string, AcademyStarDefinition>;
|
|
1007
1007
|
}
|
|
1008
1008
|
/**
|
|
1009
1009
|
* Star thresholds for a drill.
|
|
1010
1010
|
*/
|
|
1011
1011
|
interface AcademyStarDefinition {
|
|
1012
1012
|
/** One star threshold */
|
|
1013
|
-
|
|
1013
|
+
OneStar?: number;
|
|
1014
1014
|
/** Two stars threshold */
|
|
1015
|
-
|
|
1015
|
+
TwoStars?: number;
|
|
1016
1016
|
/** Three stars threshold */
|
|
1017
|
-
|
|
1017
|
+
ThreeStars?: number;
|
|
1018
1018
|
}
|
|
1019
1019
|
/**
|
|
1020
1020
|
* Bot customization data.
|
|
1021
1021
|
*/
|
|
1022
1022
|
interface BotCustomizationData {
|
|
1023
1023
|
/** Available bot difficulty levels */
|
|
1024
|
-
|
|
1024
|
+
Difficulties?: BotDifficulty[];
|
|
1025
1025
|
/** Bot appearance options */
|
|
1026
|
-
|
|
1026
|
+
Appearances?: BotAppearance[];
|
|
1027
1027
|
}
|
|
1028
1028
|
/**
|
|
1029
1029
|
* Bot difficulty level.
|
|
1030
1030
|
*/
|
|
1031
1031
|
interface BotDifficulty {
|
|
1032
1032
|
/** Difficulty identifier */
|
|
1033
|
-
|
|
1033
|
+
Id?: string;
|
|
1034
1034
|
/** Display name */
|
|
1035
|
-
|
|
1035
|
+
Name?: DisplayString;
|
|
1036
1036
|
/** Description */
|
|
1037
|
-
|
|
1037
|
+
Description?: DisplayString;
|
|
1038
1038
|
}
|
|
1039
1039
|
/**
|
|
1040
1040
|
* Bot appearance option.
|
|
1041
1041
|
*/
|
|
1042
1042
|
interface BotAppearance {
|
|
1043
1043
|
/** Appearance identifier */
|
|
1044
|
-
|
|
1044
|
+
Id?: string;
|
|
1045
1045
|
/** Display name */
|
|
1046
|
-
|
|
1046
|
+
Name?: DisplayString;
|
|
1047
1047
|
/** Appearance path */
|
|
1048
|
-
|
|
1048
|
+
Path?: string;
|
|
1049
1049
|
}
|
|
1050
1050
|
/**
|
|
1051
1051
|
* Test academy client manifest (for flighted content).
|
|
1052
1052
|
*/
|
|
1053
1053
|
interface TestAcademyClientManifest extends AcademyClientManifest {
|
|
1054
1054
|
/** Flight identifier */
|
|
1055
|
-
|
|
1055
|
+
FlightId?: string;
|
|
1056
1056
|
}
|
|
1057
1057
|
|
|
1058
1058
|
/**
|
|
@@ -1060,114 +1060,114 @@ interface TestAcademyClientManifest extends AcademyClientManifest {
|
|
|
1060
1060
|
*/
|
|
1061
1061
|
interface Configuration {
|
|
1062
1062
|
/** Authority definitions */
|
|
1063
|
-
|
|
1063
|
+
Authorities?: Record<string, Authority>;
|
|
1064
1064
|
/** Retry policy definitions */
|
|
1065
|
-
|
|
1065
|
+
RetryPolicies?: Record<string, RetryPolicyConfig>;
|
|
1066
1066
|
/** Settings values */
|
|
1067
|
-
|
|
1067
|
+
Settings?: SettingsConfig;
|
|
1068
1068
|
/** Endpoint definitions */
|
|
1069
|
-
|
|
1069
|
+
Endpoints?: Record<string, OnlineUriReference>;
|
|
1070
1070
|
}
|
|
1071
1071
|
/**
|
|
1072
1072
|
* Authority (API service) definition.
|
|
1073
1073
|
*/
|
|
1074
1074
|
interface Authority {
|
|
1075
1075
|
/** Authority identifier */
|
|
1076
|
-
|
|
1076
|
+
AuthorityId?: string;
|
|
1077
1077
|
/** URL scheme (1 = http, 2 = https) */
|
|
1078
|
-
|
|
1078
|
+
Scheme?: number;
|
|
1079
1079
|
/** Hostname */
|
|
1080
|
-
|
|
1080
|
+
Hostname?: string;
|
|
1081
1081
|
/** Port number */
|
|
1082
|
-
|
|
1082
|
+
Port?: number;
|
|
1083
1083
|
/** Authentication methods */
|
|
1084
|
-
|
|
1084
|
+
AuthenticationMethods?: number[];
|
|
1085
1085
|
}
|
|
1086
1086
|
/**
|
|
1087
1087
|
* Retry policy configuration.
|
|
1088
1088
|
*/
|
|
1089
1089
|
interface RetryPolicyConfig {
|
|
1090
1090
|
/** Policy identifier */
|
|
1091
|
-
|
|
1091
|
+
RetryPolicyId?: string;
|
|
1092
1092
|
/** Timeout in milliseconds */
|
|
1093
|
-
|
|
1093
|
+
TimeoutMs?: number;
|
|
1094
1094
|
/** Retry options */
|
|
1095
|
-
|
|
1095
|
+
RetryOptions?: RetryOptionsConfig;
|
|
1096
1096
|
}
|
|
1097
1097
|
/**
|
|
1098
1098
|
* Retry options.
|
|
1099
1099
|
*/
|
|
1100
1100
|
interface RetryOptionsConfig {
|
|
1101
1101
|
/** Maximum retry count */
|
|
1102
|
-
|
|
1102
|
+
MaxRetryCount?: number;
|
|
1103
1103
|
/** Initial retry delay in milliseconds */
|
|
1104
|
-
|
|
1104
|
+
RetryDelayMs?: number;
|
|
1105
1105
|
/** Retry delay growth factor */
|
|
1106
|
-
|
|
1106
|
+
RetryGrowth?: number;
|
|
1107
1107
|
/** Random jitter to add in milliseconds */
|
|
1108
|
-
|
|
1108
|
+
RetryJitterMs?: number;
|
|
1109
1109
|
/** Whether to retry on 404 */
|
|
1110
|
-
|
|
1110
|
+
RetryIfNotFound?: boolean;
|
|
1111
1111
|
}
|
|
1112
1112
|
/**
|
|
1113
1113
|
* Online URI reference (endpoint definition).
|
|
1114
1114
|
*/
|
|
1115
1115
|
interface OnlineUriReference {
|
|
1116
1116
|
/** Endpoint identifier */
|
|
1117
|
-
|
|
1117
|
+
EndpointId?: string;
|
|
1118
1118
|
/** Authority identifier */
|
|
1119
|
-
|
|
1119
|
+
AuthorityId?: string;
|
|
1120
1120
|
/** Path template */
|
|
1121
|
-
|
|
1121
|
+
Path?: string;
|
|
1122
1122
|
/** Query string template */
|
|
1123
|
-
|
|
1123
|
+
QueryString?: string;
|
|
1124
1124
|
/** Retry policy identifier */
|
|
1125
|
-
|
|
1125
|
+
RetryPolicyId?: string;
|
|
1126
1126
|
/** Topic name */
|
|
1127
|
-
|
|
1127
|
+
TopicName?: string;
|
|
1128
1128
|
/** Acknowledgement type */
|
|
1129
|
-
|
|
1129
|
+
AcknowledgementTypeId?: number;
|
|
1130
1130
|
/** Whether auth lifetime extension is supported */
|
|
1131
|
-
|
|
1131
|
+
AuthenticationLifetimeExtensionSupported?: boolean;
|
|
1132
1132
|
/** Whether endpoint is clearance-aware */
|
|
1133
|
-
|
|
1133
|
+
ClearanceAware?: boolean;
|
|
1134
1134
|
}
|
|
1135
1135
|
/**
|
|
1136
1136
|
* Settings configuration.
|
|
1137
1137
|
*/
|
|
1138
1138
|
interface SettingsConfig {
|
|
1139
1139
|
/** CELL config */
|
|
1140
|
-
|
|
1140
|
+
CellConfig?: string;
|
|
1141
1141
|
/** Client QoS timeout */
|
|
1142
|
-
|
|
1142
|
+
ClientQoSTimeoutMs?: string;
|
|
1143
1143
|
/** Clearance audience */
|
|
1144
|
-
|
|
1144
|
+
ClearanceAudience?: string;
|
|
1145
1145
|
/** Playfab title ID */
|
|
1146
|
-
|
|
1146
|
+
PlayfabTitleId?: string;
|
|
1147
1147
|
/** Title ID list */
|
|
1148
|
-
|
|
1148
|
+
TitleIdList?: string;
|
|
1149
1149
|
/** XSTS audience URI */
|
|
1150
|
-
|
|
1150
|
+
HaloXSTSAudienceUri?: string;
|
|
1151
1151
|
/** Product access list */
|
|
1152
|
-
|
|
1152
|
+
ProductAccessList?: string;
|
|
1153
1153
|
}
|
|
1154
1154
|
/**
|
|
1155
1155
|
* Flight feature flags.
|
|
1156
1156
|
*/
|
|
1157
1157
|
interface FlightedFeatureFlags {
|
|
1158
1158
|
/** Flight identifier */
|
|
1159
|
-
|
|
1159
|
+
FlightId?: string;
|
|
1160
1160
|
/** Clearance identifier */
|
|
1161
|
-
|
|
1161
|
+
ClearanceId?: string;
|
|
1162
1162
|
/** Feature flags */
|
|
1163
|
-
|
|
1163
|
+
Flags?: Record<string, boolean>;
|
|
1164
1164
|
}
|
|
1165
1165
|
/**
|
|
1166
1166
|
* Player clearance/flight configuration ID.
|
|
1167
1167
|
*/
|
|
1168
1168
|
interface PlayerClearance {
|
|
1169
1169
|
/** Flight configuration identifier */
|
|
1170
|
-
|
|
1170
|
+
FlightConfigurationId?: string;
|
|
1171
1171
|
}
|
|
1172
1172
|
|
|
1173
1173
|
/**
|
|
@@ -1175,118 +1175,118 @@ interface PlayerClearance {
|
|
|
1175
1175
|
*/
|
|
1176
1176
|
interface NewsArticle {
|
|
1177
1177
|
/** Article identifier */
|
|
1178
|
-
|
|
1178
|
+
Id?: number;
|
|
1179
1179
|
/** Featured image URL */
|
|
1180
|
-
|
|
1180
|
+
FeaturedImageUri?: string;
|
|
1181
1181
|
/** Featured image alt text */
|
|
1182
|
-
|
|
1182
|
+
FeaturedImageAlt?: string;
|
|
1183
1183
|
/** Article title */
|
|
1184
|
-
|
|
1184
|
+
Title?: string;
|
|
1185
1185
|
/** Article subtitle */
|
|
1186
|
-
|
|
1186
|
+
Subtitle?: string;
|
|
1187
1187
|
/** Article content (HTML) */
|
|
1188
|
-
|
|
1188
|
+
Content?: string;
|
|
1189
1189
|
/** Short excerpt */
|
|
1190
|
-
|
|
1190
|
+
Excerpt?: string;
|
|
1191
1191
|
/** URL slug */
|
|
1192
|
-
|
|
1192
|
+
Slug?: string;
|
|
1193
1193
|
/** Creator slug */
|
|
1194
|
-
|
|
1194
|
+
CreatorSlug?: string;
|
|
1195
1195
|
/** Creator title */
|
|
1196
|
-
|
|
1196
|
+
CreatorTitle?: string;
|
|
1197
1197
|
/** Category IDs */
|
|
1198
|
-
|
|
1198
|
+
Categories?: number[];
|
|
1199
1199
|
/** Tags */
|
|
1200
|
-
|
|
1200
|
+
Tags?: string[];
|
|
1201
1201
|
/** Publish date (ISO 8601) */
|
|
1202
|
-
|
|
1202
|
+
PublishDate?: string;
|
|
1203
1203
|
/** Medium image URL */
|
|
1204
|
-
|
|
1204
|
+
FeaturedImageUriMedium?: string;
|
|
1205
1205
|
/** Medium image alt */
|
|
1206
|
-
|
|
1206
|
+
FeaturedImageAltMedium?: string;
|
|
1207
1207
|
/** Small image URL */
|
|
1208
|
-
|
|
1208
|
+
FeaturedImageUriSmall?: string;
|
|
1209
1209
|
/** Small image alt */
|
|
1210
|
-
|
|
1210
|
+
FeaturedImageAltSmall?: string;
|
|
1211
1211
|
}
|
|
1212
1212
|
/**
|
|
1213
1213
|
* News collection.
|
|
1214
1214
|
*/
|
|
1215
1215
|
interface News {
|
|
1216
1216
|
/** List of articles */
|
|
1217
|
-
|
|
1217
|
+
Articles?: NewsArticle[];
|
|
1218
1218
|
/** Total count */
|
|
1219
|
-
|
|
1219
|
+
Total?: number;
|
|
1220
1220
|
}
|
|
1221
1221
|
/**
|
|
1222
1222
|
* Season calendar entry.
|
|
1223
1223
|
*/
|
|
1224
1224
|
interface SeasonCalendarEntry {
|
|
1225
1225
|
/** Season identifier */
|
|
1226
|
-
|
|
1226
|
+
SeasonId?: string;
|
|
1227
1227
|
/** Season name */
|
|
1228
|
-
|
|
1228
|
+
Name?: DisplayString;
|
|
1229
1229
|
/** Start date (ISO 8601) */
|
|
1230
|
-
|
|
1230
|
+
StartDate?: string;
|
|
1231
1231
|
/** End date (ISO 8601) */
|
|
1232
|
-
|
|
1232
|
+
EndDate?: string;
|
|
1233
1233
|
/** CSR season identifier */
|
|
1234
|
-
|
|
1234
|
+
CsrSeasonId?: string;
|
|
1235
1235
|
}
|
|
1236
1236
|
/**
|
|
1237
1237
|
* Season calendar.
|
|
1238
1238
|
*/
|
|
1239
1239
|
interface SeasonCalendar {
|
|
1240
1240
|
/** List of seasons */
|
|
1241
|
-
|
|
1241
|
+
Seasons?: SeasonCalendarEntry[];
|
|
1242
1242
|
/** Current season */
|
|
1243
|
-
|
|
1243
|
+
CurrentSeason?: string;
|
|
1244
1244
|
}
|
|
1245
1245
|
/**
|
|
1246
1246
|
* Matches privacy settings.
|
|
1247
1247
|
*/
|
|
1248
1248
|
interface MatchesPrivacy {
|
|
1249
1249
|
/** Player identifier */
|
|
1250
|
-
|
|
1250
|
+
PlayerId?: string;
|
|
1251
1251
|
/** Privacy setting */
|
|
1252
|
-
|
|
1252
|
+
PrivacySetting?: string;
|
|
1253
1253
|
/** Whether matches are public */
|
|
1254
|
-
|
|
1254
|
+
MatchesPublic?: boolean;
|
|
1255
1255
|
}
|
|
1256
1256
|
/**
|
|
1257
1257
|
* Player daily custom experience.
|
|
1258
1258
|
*/
|
|
1259
1259
|
interface PlayerDailyCustomExperience {
|
|
1260
1260
|
/** Player identifier */
|
|
1261
|
-
|
|
1261
|
+
PlayerId?: string;
|
|
1262
1262
|
/** Custom XP remaining */
|
|
1263
|
-
|
|
1263
|
+
RemainingXp?: number;
|
|
1264
1264
|
/** Custom XP earned today */
|
|
1265
|
-
|
|
1265
|
+
EarnedToday?: number;
|
|
1266
1266
|
/** Daily limit */
|
|
1267
|
-
|
|
1267
|
+
DailyLimit?: number;
|
|
1268
1268
|
/** Reset time (ISO 8601) */
|
|
1269
|
-
|
|
1269
|
+
ResetTime?: string;
|
|
1270
1270
|
}
|
|
1271
1271
|
/**
|
|
1272
1272
|
* Giveaway rewards.
|
|
1273
1273
|
*/
|
|
1274
1274
|
interface PlayerGiveaways {
|
|
1275
1275
|
/** List of pending giveaways */
|
|
1276
|
-
|
|
1276
|
+
Giveaways?: GiveawayReward[];
|
|
1277
1277
|
}
|
|
1278
1278
|
/**
|
|
1279
1279
|
* Individual giveaway reward.
|
|
1280
1280
|
*/
|
|
1281
1281
|
interface GiveawayReward {
|
|
1282
1282
|
/** Giveaway identifier */
|
|
1283
|
-
|
|
1283
|
+
Id?: string;
|
|
1284
1284
|
/** Title */
|
|
1285
|
-
|
|
1285
|
+
Title?: DisplayString;
|
|
1286
1286
|
/** Items included */
|
|
1287
|
-
|
|
1287
|
+
Items?: InventoryAmount[];
|
|
1288
1288
|
/** Claim deadline (ISO 8601) */
|
|
1289
|
-
|
|
1289
|
+
ClaimDeadline?: string;
|
|
1290
1290
|
}
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
@@ -1383,94 +1383,94 @@ declare class ConfigurationModule extends ModuleBase {
|
|
|
1383
1383
|
*/
|
|
1384
1384
|
interface StoreOffering {
|
|
1385
1385
|
/** Offering identifier */
|
|
1386
|
-
|
|
1386
|
+
OfferingId?: string;
|
|
1387
1387
|
/** Display title */
|
|
1388
|
-
|
|
1388
|
+
Title?: DisplayString;
|
|
1389
1389
|
/** Description */
|
|
1390
|
-
|
|
1390
|
+
Description?: DisplayString;
|
|
1391
1391
|
/** Image path */
|
|
1392
|
-
|
|
1392
|
+
ImagePath?: string;
|
|
1393
1393
|
/** Price in each currency */
|
|
1394
|
-
|
|
1394
|
+
Prices?: StorePrice[];
|
|
1395
1395
|
/** Items included */
|
|
1396
|
-
|
|
1396
|
+
IncludedItems?: InventoryAmount[];
|
|
1397
1397
|
/** Offering type */
|
|
1398
|
-
|
|
1398
|
+
OfferingType?: string;
|
|
1399
1399
|
/** Start time (ISO 8601) */
|
|
1400
|
-
|
|
1400
|
+
StartDate?: string;
|
|
1401
1401
|
/** End time (ISO 8601) */
|
|
1402
|
-
|
|
1402
|
+
EndDate?: string;
|
|
1403
1403
|
/** Whether this is a bundle */
|
|
1404
|
-
|
|
1404
|
+
IsBundle?: boolean;
|
|
1405
1405
|
/** Whether player owns this */
|
|
1406
|
-
|
|
1406
|
+
IsOwned?: boolean;
|
|
1407
1407
|
/** Quality tier */
|
|
1408
|
-
|
|
1408
|
+
Quality?: string;
|
|
1409
1409
|
}
|
|
1410
1410
|
/**
|
|
1411
1411
|
* Price in a specific currency.
|
|
1412
1412
|
*/
|
|
1413
1413
|
interface StorePrice {
|
|
1414
1414
|
/** Currency identifier */
|
|
1415
|
-
|
|
1415
|
+
CurrencyId?: string;
|
|
1416
1416
|
/** Cost amount */
|
|
1417
|
-
|
|
1417
|
+
Cost?: number;
|
|
1418
1418
|
/** Original cost (before discount) */
|
|
1419
|
-
|
|
1419
|
+
OriginalCost?: number;
|
|
1420
1420
|
/** Discount percentage */
|
|
1421
|
-
|
|
1421
|
+
DiscountPercent?: number;
|
|
1422
1422
|
}
|
|
1423
1423
|
/**
|
|
1424
1424
|
* Store item container (multiple offerings).
|
|
1425
1425
|
*/
|
|
1426
1426
|
interface StoreItem {
|
|
1427
1427
|
/** Store identifier */
|
|
1428
|
-
|
|
1428
|
+
StoreId?: string;
|
|
1429
1429
|
/** Display name */
|
|
1430
|
-
|
|
1430
|
+
StoreName?: string;
|
|
1431
1431
|
/** List of offerings */
|
|
1432
|
-
|
|
1432
|
+
Offerings?: StoreOffering[];
|
|
1433
1433
|
/** Store refresh time (ISO 8601) */
|
|
1434
|
-
|
|
1434
|
+
RefreshTime?: string;
|
|
1435
1435
|
/** Store expiration time (ISO 8601) */
|
|
1436
|
-
|
|
1436
|
+
ExpirationTime?: string;
|
|
1437
1437
|
}
|
|
1438
1438
|
/**
|
|
1439
1439
|
* Active boost information.
|
|
1440
1440
|
*/
|
|
1441
1441
|
interface ActiveBoost {
|
|
1442
1442
|
/** Boost identifier */
|
|
1443
|
-
|
|
1443
|
+
BoostId?: string;
|
|
1444
1444
|
/** Boost type */
|
|
1445
|
-
|
|
1445
|
+
BoostType?: string;
|
|
1446
1446
|
/** Multiplier value */
|
|
1447
|
-
|
|
1447
|
+
Multiplier?: number;
|
|
1448
1448
|
/** Remaining uses */
|
|
1449
|
-
|
|
1449
|
+
RemainingUses?: number;
|
|
1450
1450
|
/** Expiration time (ISO 8601) */
|
|
1451
|
-
|
|
1451
|
+
ExpirationTime?: string;
|
|
1452
1452
|
}
|
|
1453
1453
|
/**
|
|
1454
1454
|
* Container for active boosts.
|
|
1455
1455
|
*/
|
|
1456
1456
|
interface ActiveBoostsContainer {
|
|
1457
1457
|
/** List of active boosts */
|
|
1458
|
-
|
|
1458
|
+
Boosts?: ActiveBoost[];
|
|
1459
1459
|
}
|
|
1460
1460
|
/**
|
|
1461
1461
|
* Reward snapshot.
|
|
1462
1462
|
*/
|
|
1463
1463
|
interface RewardSnapshot {
|
|
1464
1464
|
/** Reward identifier */
|
|
1465
|
-
|
|
1465
|
+
RewardId?: string;
|
|
1466
1466
|
/** Items awarded */
|
|
1467
|
-
|
|
1467
|
+
Items?: InventoryAmount[];
|
|
1468
1468
|
/** Currency awarded */
|
|
1469
|
-
|
|
1469
|
+
Currencies?: CurrencyAmount[];
|
|
1470
1470
|
/** XP awarded */
|
|
1471
|
-
|
|
1471
|
+
XpAwarded?: number;
|
|
1472
1472
|
/** Claimed status */
|
|
1473
|
-
|
|
1473
|
+
Claimed?: boolean;
|
|
1474
1474
|
}
|
|
1475
1475
|
|
|
1476
1476
|
/**
|
|
@@ -1478,150 +1478,150 @@ interface RewardSnapshot {
|
|
|
1478
1478
|
*/
|
|
1479
1479
|
interface CoreBase {
|
|
1480
1480
|
/** Path to the core definition */
|
|
1481
|
-
|
|
1481
|
+
CorePath?: string;
|
|
1482
1482
|
/** Whether this core is currently equipped */
|
|
1483
|
-
|
|
1483
|
+
IsEquipped?: boolean;
|
|
1484
1484
|
/** Unique core identifier */
|
|
1485
|
-
|
|
1485
|
+
CoreId?: string;
|
|
1486
1486
|
/** Type of core */
|
|
1487
|
-
|
|
1487
|
+
CoreType?: string;
|
|
1488
1488
|
/** When the core was first acquired (ISO 8601) */
|
|
1489
|
-
|
|
1489
|
+
FirstAcquiredDate?: string;
|
|
1490
1490
|
}
|
|
1491
1491
|
/**
|
|
1492
1492
|
* Base properties shared by all themes.
|
|
1493
1493
|
*/
|
|
1494
1494
|
interface ThemeBase {
|
|
1495
1495
|
/** When first modified (ISO 8601) */
|
|
1496
|
-
|
|
1496
|
+
FirstModifiedDateUtc?: string;
|
|
1497
1497
|
/** When last modified (ISO 8601) */
|
|
1498
|
-
|
|
1498
|
+
LastModifiedDateUtc?: string;
|
|
1499
1499
|
/** Whether this theme is currently equipped */
|
|
1500
|
-
|
|
1500
|
+
IsEquipped?: boolean;
|
|
1501
1501
|
/** Whether this is the default theme */
|
|
1502
|
-
|
|
1502
|
+
IsDefault?: boolean;
|
|
1503
1503
|
/** Path to the theme definition */
|
|
1504
|
-
|
|
1504
|
+
ThemePath?: string;
|
|
1505
1505
|
}
|
|
1506
1506
|
/**
|
|
1507
1507
|
* Armor core with themes.
|
|
1508
1508
|
*/
|
|
1509
1509
|
interface ArmorCore extends CoreBase {
|
|
1510
1510
|
/** Available themes for this core */
|
|
1511
|
-
|
|
1511
|
+
Themes?: ArmorCoreTheme[];
|
|
1512
1512
|
}
|
|
1513
1513
|
/**
|
|
1514
1514
|
* Armor core theme configuration.
|
|
1515
1515
|
*/
|
|
1516
1516
|
interface ArmorCoreTheme extends ThemeBase {
|
|
1517
1517
|
/** Helmet item path */
|
|
1518
|
-
|
|
1518
|
+
HelmetPath?: string;
|
|
1519
1519
|
/** Visor item path */
|
|
1520
|
-
|
|
1520
|
+
VisorPath?: string;
|
|
1521
1521
|
/** Coating item path */
|
|
1522
|
-
|
|
1522
|
+
CoatingPath?: string;
|
|
1523
1523
|
/** Left shoulder pad path */
|
|
1524
|
-
|
|
1524
|
+
LeftShoulderPadPath?: string;
|
|
1525
1525
|
/** Right shoulder pad path */
|
|
1526
|
-
|
|
1526
|
+
RightShoulderPadPath?: string;
|
|
1527
1527
|
/** Gloves path */
|
|
1528
|
-
|
|
1528
|
+
GlovesPath?: string;
|
|
1529
1529
|
/** Chest attachment path */
|
|
1530
|
-
|
|
1530
|
+
ChestAttachmentPath?: string;
|
|
1531
1531
|
/** Knee pads path */
|
|
1532
|
-
|
|
1532
|
+
KneePadsPath?: string;
|
|
1533
1533
|
/** Wrist attachment path */
|
|
1534
|
-
|
|
1534
|
+
WristAttachmentPath?: string;
|
|
1535
1535
|
/** Hip attachment path */
|
|
1536
|
-
|
|
1536
|
+
HipAttachmentPath?: string;
|
|
1537
1537
|
/** Armor effect path */
|
|
1538
|
-
|
|
1538
|
+
ArmorEffectPath?: string;
|
|
1539
1539
|
/** Mythic effect path */
|
|
1540
|
-
|
|
1540
|
+
MythicEffectPath?: string;
|
|
1541
1541
|
}
|
|
1542
1542
|
/**
|
|
1543
1543
|
* Weapon core with themes.
|
|
1544
1544
|
*/
|
|
1545
1545
|
interface WeaponCore extends CoreBase {
|
|
1546
1546
|
/** Available themes for this core */
|
|
1547
|
-
|
|
1547
|
+
Themes?: WeaponCoreTheme[];
|
|
1548
1548
|
}
|
|
1549
1549
|
/**
|
|
1550
1550
|
* Weapon core theme configuration.
|
|
1551
1551
|
*/
|
|
1552
1552
|
interface WeaponCoreTheme extends ThemeBase {
|
|
1553
1553
|
/** Coating item path */
|
|
1554
|
-
|
|
1554
|
+
CoatingPath?: string;
|
|
1555
1555
|
/** Charm item path */
|
|
1556
|
-
|
|
1556
|
+
CharmPath?: string;
|
|
1557
1557
|
/** Death FX path */
|
|
1558
|
-
|
|
1558
|
+
DeathFxPath?: string;
|
|
1559
1559
|
/** Emblem path */
|
|
1560
|
-
|
|
1560
|
+
EmblemPath?: string;
|
|
1561
1561
|
}
|
|
1562
1562
|
/**
|
|
1563
1563
|
* Vehicle core with themes.
|
|
1564
1564
|
*/
|
|
1565
1565
|
interface VehicleCore extends CoreBase {
|
|
1566
1566
|
/** Available themes for this core */
|
|
1567
|
-
|
|
1567
|
+
Themes?: VehicleCoreTheme[];
|
|
1568
1568
|
}
|
|
1569
1569
|
/**
|
|
1570
1570
|
* Vehicle core theme configuration.
|
|
1571
1571
|
*/
|
|
1572
1572
|
interface VehicleCoreTheme extends ThemeBase {
|
|
1573
1573
|
/** Coating item path */
|
|
1574
|
-
|
|
1574
|
+
CoatingPath?: string;
|
|
1575
1575
|
/** Emblem path */
|
|
1576
|
-
|
|
1576
|
+
EmblemPath?: string;
|
|
1577
1577
|
/** Vehicle effect path */
|
|
1578
|
-
|
|
1578
|
+
VehicleEffectPath?: string;
|
|
1579
1579
|
}
|
|
1580
1580
|
/**
|
|
1581
1581
|
* AI core with themes.
|
|
1582
1582
|
*/
|
|
1583
1583
|
interface AiCore extends CoreBase {
|
|
1584
1584
|
/** Available themes for this core */
|
|
1585
|
-
|
|
1585
|
+
Themes?: AiCoreTheme[];
|
|
1586
1586
|
}
|
|
1587
1587
|
/**
|
|
1588
1588
|
* AI core theme configuration.
|
|
1589
1589
|
*/
|
|
1590
1590
|
interface AiCoreTheme extends ThemeBase {
|
|
1591
1591
|
/** AI model path */
|
|
1592
|
-
|
|
1592
|
+
ModelPath?: string;
|
|
1593
1593
|
/** Color primary path */
|
|
1594
|
-
|
|
1594
|
+
ColorPrimaryPath?: string;
|
|
1595
1595
|
/** Color secondary path */
|
|
1596
|
-
|
|
1596
|
+
ColorSecondaryPath?: string;
|
|
1597
1597
|
}
|
|
1598
1598
|
/**
|
|
1599
1599
|
* Collection of armor cores.
|
|
1600
1600
|
*/
|
|
1601
1601
|
interface ArmorCoreCollection {
|
|
1602
1602
|
/** List of armor cores */
|
|
1603
|
-
|
|
1603
|
+
ArmorCores?: ArmorCore[];
|
|
1604
1604
|
}
|
|
1605
1605
|
/**
|
|
1606
1606
|
* Collection of weapon cores.
|
|
1607
1607
|
*/
|
|
1608
1608
|
interface WeaponCoreCollection {
|
|
1609
1609
|
/** List of weapon cores */
|
|
1610
|
-
|
|
1610
|
+
WeaponCores?: WeaponCore[];
|
|
1611
1611
|
}
|
|
1612
1612
|
/**
|
|
1613
1613
|
* Collection of vehicle cores.
|
|
1614
1614
|
*/
|
|
1615
1615
|
interface VehicleCoreCollection {
|
|
1616
1616
|
/** List of vehicle cores */
|
|
1617
|
-
|
|
1617
|
+
VehicleCores?: VehicleCore[];
|
|
1618
1618
|
}
|
|
1619
1619
|
/**
|
|
1620
1620
|
* Collection of AI cores.
|
|
1621
1621
|
*/
|
|
1622
1622
|
interface AiCoreContainer {
|
|
1623
1623
|
/** List of AI cores */
|
|
1624
|
-
|
|
1624
|
+
AiCores?: AiCore[];
|
|
1625
1625
|
}
|
|
1626
1626
|
|
|
1627
1627
|
/**
|
|
@@ -1629,77 +1629,77 @@ interface AiCoreContainer {
|
|
|
1629
1629
|
*/
|
|
1630
1630
|
interface SpartanBody {
|
|
1631
1631
|
/** When last modified (ISO 8601) */
|
|
1632
|
-
|
|
1632
|
+
LastModifiedDateUtc?: string;
|
|
1633
1633
|
/** Left arm prosthetic path */
|
|
1634
|
-
|
|
1634
|
+
LeftArm?: string;
|
|
1635
1635
|
/** Right arm prosthetic path */
|
|
1636
|
-
|
|
1636
|
+
RightArm?: string;
|
|
1637
1637
|
/** Left leg prosthetic path */
|
|
1638
|
-
|
|
1638
|
+
LeftLeg?: string;
|
|
1639
1639
|
/** Right leg prosthetic path */
|
|
1640
|
-
|
|
1640
|
+
RightLeg?: string;
|
|
1641
1641
|
/** Body type identifier */
|
|
1642
|
-
|
|
1642
|
+
BodyType?: string;
|
|
1643
1643
|
/** Voice number */
|
|
1644
|
-
|
|
1644
|
+
Voice?: number;
|
|
1645
1645
|
/** Voice path */
|
|
1646
|
-
|
|
1646
|
+
VoicePath?: string;
|
|
1647
1647
|
}
|
|
1648
1648
|
/**
|
|
1649
1649
|
* Player appearance configuration.
|
|
1650
1650
|
*/
|
|
1651
1651
|
interface Appearance {
|
|
1652
1652
|
/** When last modified (ISO 8601) */
|
|
1653
|
-
|
|
1653
|
+
LastModifiedDateUtc?: string;
|
|
1654
1654
|
/** Service tag (4 characters) */
|
|
1655
|
-
|
|
1655
|
+
ServiceTag?: string;
|
|
1656
1656
|
/** Intro gesture path */
|
|
1657
|
-
|
|
1657
|
+
IntroGesturePath?: string;
|
|
1658
1658
|
/** Outro gesture path */
|
|
1659
|
-
|
|
1659
|
+
OutroGesturePath?: string;
|
|
1660
1660
|
/** Stance path */
|
|
1661
|
-
|
|
1661
|
+
StancePath?: string;
|
|
1662
1662
|
/** Emblem configuration */
|
|
1663
|
-
|
|
1663
|
+
Emblem?: EmblemConfiguration;
|
|
1664
1664
|
/** Backdrop path */
|
|
1665
|
-
|
|
1665
|
+
BackdropPath?: string;
|
|
1666
1666
|
/** Action pose path */
|
|
1667
|
-
|
|
1667
|
+
ActionPosePath?: string;
|
|
1668
1668
|
}
|
|
1669
1669
|
/**
|
|
1670
1670
|
* Emblem configuration.
|
|
1671
1671
|
*/
|
|
1672
1672
|
interface EmblemConfiguration {
|
|
1673
1673
|
/** Emblem path */
|
|
1674
|
-
|
|
1674
|
+
EmblemPath?: string;
|
|
1675
1675
|
/** Emblem configuration ID */
|
|
1676
|
-
|
|
1676
|
+
ConfigurationId?: number;
|
|
1677
1677
|
}
|
|
1678
1678
|
/**
|
|
1679
1679
|
* Complete player customization data.
|
|
1680
1680
|
*/
|
|
1681
1681
|
interface CustomizationData {
|
|
1682
1682
|
/** Spartan body configuration */
|
|
1683
|
-
|
|
1683
|
+
SpartanBody?: SpartanBody;
|
|
1684
1684
|
/** Appearance settings */
|
|
1685
|
-
|
|
1685
|
+
Appearance?: Appearance;
|
|
1686
1686
|
/** Armor cores */
|
|
1687
|
-
|
|
1687
|
+
ArmorCores?: ArmorCoreCollection;
|
|
1688
1688
|
/** Weapon cores */
|
|
1689
|
-
|
|
1689
|
+
WeaponCores?: WeaponCoreCollection;
|
|
1690
1690
|
/** Vehicle cores */
|
|
1691
|
-
|
|
1691
|
+
VehicleCores?: VehicleCoreCollection;
|
|
1692
1692
|
/** AI cores */
|
|
1693
|
-
|
|
1693
|
+
AiCores?: AiCoreContainer;
|
|
1694
1694
|
}
|
|
1695
1695
|
/**
|
|
1696
1696
|
* Appearance customization container.
|
|
1697
1697
|
*/
|
|
1698
1698
|
interface AppearanceCustomization {
|
|
1699
1699
|
/** Service tag */
|
|
1700
|
-
|
|
1700
|
+
ServiceTag?: string;
|
|
1701
1701
|
/** Appearance configuration */
|
|
1702
|
-
|
|
1702
|
+
Appearance?: Appearance;
|
|
1703
1703
|
}
|
|
1704
1704
|
|
|
1705
1705
|
/**
|
|
@@ -1707,95 +1707,95 @@ interface AppearanceCustomization {
|
|
|
1707
1707
|
*/
|
|
1708
1708
|
interface Reward {
|
|
1709
1709
|
/** Event XP awarded */
|
|
1710
|
-
|
|
1710
|
+
EventXp?: number;
|
|
1711
1711
|
/** Operation XP awarded */
|
|
1712
|
-
|
|
1712
|
+
OperationXp?: number;
|
|
1713
1713
|
/** Operation experience */
|
|
1714
|
-
|
|
1714
|
+
OperationExperience?: number;
|
|
1715
1715
|
/** Soft experience (Spartan Points) */
|
|
1716
|
-
|
|
1716
|
+
SoftExperience?: number;
|
|
1717
1717
|
/** Inventory items rewarded */
|
|
1718
|
-
|
|
1718
|
+
InventoryRewards?: InventoryAmount[];
|
|
1719
1719
|
/** Inventory items */
|
|
1720
|
-
|
|
1720
|
+
InventoryItems?: unknown[];
|
|
1721
1721
|
/** Tracking identifier */
|
|
1722
|
-
|
|
1722
|
+
TrackingId?: string;
|
|
1723
1723
|
/** Currencies awarded */
|
|
1724
|
-
|
|
1724
|
+
Currencies?: unknown[];
|
|
1725
1725
|
/** Reward track progression */
|
|
1726
|
-
|
|
1726
|
+
RewardTrackProgression?: RewardTrack[];
|
|
1727
1727
|
}
|
|
1728
1728
|
/**
|
|
1729
1729
|
* Challenge definition.
|
|
1730
1730
|
*/
|
|
1731
1731
|
interface Challenge {
|
|
1732
1732
|
/** Challenge description */
|
|
1733
|
-
|
|
1733
|
+
Description?: DisplayString;
|
|
1734
1734
|
/** Difficulty level */
|
|
1735
|
-
|
|
1735
|
+
Difficulty?: string;
|
|
1736
1736
|
/** Challenge category */
|
|
1737
|
-
|
|
1737
|
+
Category?: string;
|
|
1738
1738
|
/** Primary reward */
|
|
1739
|
-
|
|
1739
|
+
Reward?: Reward;
|
|
1740
1740
|
/** Secondary reward */
|
|
1741
|
-
|
|
1741
|
+
SecondaryReward?: Reward;
|
|
1742
1742
|
/** Threshold for success */
|
|
1743
|
-
|
|
1743
|
+
ThresholdForSuccess?: number;
|
|
1744
1744
|
/** Challenge title */
|
|
1745
|
-
|
|
1745
|
+
Title?: DisplayString;
|
|
1746
1746
|
/** Type icon path */
|
|
1747
|
-
|
|
1747
|
+
TypeIconPath?: string;
|
|
1748
1748
|
/** Whether this is a user event challenge */
|
|
1749
|
-
|
|
1749
|
+
IsUserEvent?: boolean;
|
|
1750
1750
|
/** Challenge path */
|
|
1751
|
-
|
|
1751
|
+
Path?: string;
|
|
1752
1752
|
/** Current progress */
|
|
1753
|
-
|
|
1753
|
+
Progress?: number;
|
|
1754
1754
|
/** Challenge identifier */
|
|
1755
|
-
|
|
1755
|
+
Id?: string;
|
|
1756
1756
|
/** Whether the challenge can be rerolled */
|
|
1757
|
-
|
|
1757
|
+
CanReroll?: boolean;
|
|
1758
1758
|
}
|
|
1759
1759
|
/**
|
|
1760
1760
|
* Challenge deck (collection of challenges).
|
|
1761
1761
|
*/
|
|
1762
1762
|
interface ChallengeDeck {
|
|
1763
1763
|
/** Deck identifier */
|
|
1764
|
-
|
|
1764
|
+
Id?: string;
|
|
1765
1765
|
/** Path to the deck */
|
|
1766
|
-
|
|
1766
|
+
Path?: string;
|
|
1767
1767
|
/** Deck title */
|
|
1768
|
-
|
|
1768
|
+
Title?: DisplayString;
|
|
1769
1769
|
/** Description */
|
|
1770
|
-
|
|
1770
|
+
Description?: DisplayString;
|
|
1771
1771
|
/** Challenges in this deck */
|
|
1772
|
-
|
|
1772
|
+
Challenges?: Challenge[];
|
|
1773
1773
|
}
|
|
1774
1774
|
/**
|
|
1775
1775
|
* Challenge deck definition from CMS.
|
|
1776
1776
|
*/
|
|
1777
1777
|
interface ChallengeDeckDefinition {
|
|
1778
1778
|
/** Deck identifier */
|
|
1779
|
-
|
|
1779
|
+
Id?: string;
|
|
1780
1780
|
/** Deck path */
|
|
1781
|
-
|
|
1781
|
+
Path?: string;
|
|
1782
1782
|
/** Deck title */
|
|
1783
|
-
|
|
1783
|
+
Title?: DisplayString;
|
|
1784
1784
|
/** Description */
|
|
1785
|
-
|
|
1785
|
+
Description?: DisplayString;
|
|
1786
1786
|
/** Image path */
|
|
1787
|
-
|
|
1787
|
+
ImagePath?: string;
|
|
1788
1788
|
/** Whether deck is visible */
|
|
1789
|
-
|
|
1789
|
+
IsVisible?: boolean;
|
|
1790
1790
|
}
|
|
1791
1791
|
/**
|
|
1792
1792
|
* Response for challenge decks query.
|
|
1793
1793
|
*/
|
|
1794
1794
|
interface ChallengeDecksResponse {
|
|
1795
1795
|
/** Active challenge decks */
|
|
1796
|
-
|
|
1796
|
+
ActiveDecks?: ChallengeDeck[];
|
|
1797
1797
|
/** Upcoming decks */
|
|
1798
|
-
|
|
1798
|
+
UpcomingDecks?: ChallengeDeck[];
|
|
1799
1799
|
}
|
|
1800
1800
|
/**
|
|
1801
1801
|
* Reward track progress measurement.
|
|
@@ -1836,36 +1836,36 @@ interface RewardTrack {
|
|
|
1836
1836
|
*/
|
|
1837
1837
|
interface RewardTrackMetadata {
|
|
1838
1838
|
/** Track identifier */
|
|
1839
|
-
|
|
1839
|
+
TrackId?: string;
|
|
1840
1840
|
/** Track path */
|
|
1841
|
-
|
|
1841
|
+
Path?: string;
|
|
1842
1842
|
/** Display title */
|
|
1843
|
-
|
|
1843
|
+
Title?: DisplayString;
|
|
1844
1844
|
/** Description */
|
|
1845
|
-
|
|
1845
|
+
Description?: DisplayString;
|
|
1846
1846
|
/** Image path */
|
|
1847
|
-
|
|
1847
|
+
ImagePath?: string;
|
|
1848
1848
|
/** Track type */
|
|
1849
|
-
|
|
1849
|
+
Type?: string;
|
|
1850
1850
|
/** Start date (ISO 8601) */
|
|
1851
|
-
|
|
1851
|
+
StartDate?: string;
|
|
1852
1852
|
/** End date (ISO 8601) */
|
|
1853
|
-
|
|
1853
|
+
EndDate?: string;
|
|
1854
1854
|
}
|
|
1855
1855
|
/**
|
|
1856
1856
|
* Operation reward track snapshot.
|
|
1857
1857
|
*/
|
|
1858
1858
|
interface OperationRewardTrackSnapshot {
|
|
1859
1859
|
/** Track identifier */
|
|
1860
|
-
|
|
1860
|
+
TrackId?: string;
|
|
1861
1861
|
/** Current rank */
|
|
1862
|
-
|
|
1862
|
+
Rank?: number;
|
|
1863
1863
|
/** Current XP */
|
|
1864
|
-
|
|
1864
|
+
Xp?: number;
|
|
1865
1865
|
/** Total XP earned */
|
|
1866
|
-
|
|
1866
|
+
TotalXpEarned?: number;
|
|
1867
1867
|
/** Premium status */
|
|
1868
|
-
|
|
1868
|
+
IsPremium?: boolean;
|
|
1869
1869
|
}
|
|
1870
1870
|
|
|
1871
1871
|
/**
|
|
@@ -1873,114 +1873,114 @@ interface OperationRewardTrackSnapshot {
|
|
|
1873
1873
|
*/
|
|
1874
1874
|
interface CareerRank {
|
|
1875
1875
|
/** Rank number */
|
|
1876
|
-
|
|
1876
|
+
Rank?: number;
|
|
1877
1877
|
/** Title of the rank */
|
|
1878
|
-
|
|
1878
|
+
Title?: DisplayString;
|
|
1879
1879
|
/** Subtitle */
|
|
1880
|
-
|
|
1880
|
+
Subtitle?: DisplayString;
|
|
1881
1881
|
/** Large icon path */
|
|
1882
|
-
|
|
1882
|
+
LargeIconPath?: string;
|
|
1883
1883
|
/** Small icon path */
|
|
1884
|
-
|
|
1884
|
+
SmallIconPath?: string;
|
|
1885
1885
|
/** Adornment icon path */
|
|
1886
|
-
|
|
1886
|
+
AdornmentIconPath?: string;
|
|
1887
1887
|
/** XP required to reach this rank */
|
|
1888
|
-
|
|
1888
|
+
XpRequired?: number;
|
|
1889
1889
|
/** Cumulative XP at this rank */
|
|
1890
|
-
|
|
1890
|
+
CumulativeXp?: number;
|
|
1891
1891
|
/** Grade within the rank */
|
|
1892
|
-
|
|
1892
|
+
Grade?: number;
|
|
1893
1893
|
/** Tier within the rank */
|
|
1894
|
-
|
|
1894
|
+
Tier?: number;
|
|
1895
1895
|
}
|
|
1896
1896
|
/**
|
|
1897
1897
|
* Container for career ranks.
|
|
1898
1898
|
*/
|
|
1899
1899
|
interface CareerTrackContainer {
|
|
1900
1900
|
/** Career path identifier */
|
|
1901
|
-
|
|
1901
|
+
CareerPathId?: string;
|
|
1902
1902
|
/** List of career ranks */
|
|
1903
|
-
|
|
1903
|
+
Ranks?: CareerRank[];
|
|
1904
1904
|
/** Maximum rank */
|
|
1905
|
-
|
|
1905
|
+
MaxRank?: number;
|
|
1906
1906
|
}
|
|
1907
1907
|
/**
|
|
1908
1908
|
* Player's career rank result.
|
|
1909
1909
|
*/
|
|
1910
1910
|
interface PlayerCareerRankResult {
|
|
1911
1911
|
/** Player identifier */
|
|
1912
|
-
|
|
1912
|
+
PlayerId?: string;
|
|
1913
1913
|
/** Current career rank */
|
|
1914
|
-
|
|
1914
|
+
CurrentRank?: number;
|
|
1915
1915
|
/** Current XP */
|
|
1916
|
-
|
|
1916
|
+
CurrentXp?: number;
|
|
1917
1917
|
/** XP to next rank */
|
|
1918
|
-
|
|
1918
|
+
XpToNextRank?: number;
|
|
1919
1919
|
/** Result code */
|
|
1920
|
-
|
|
1920
|
+
ResultCode?: number;
|
|
1921
1921
|
}
|
|
1922
1922
|
/**
|
|
1923
1923
|
* Container for player career rank results.
|
|
1924
1924
|
*/
|
|
1925
1925
|
interface RewardTrackResultContainer {
|
|
1926
1926
|
/** Career path identifier */
|
|
1927
|
-
|
|
1927
|
+
CareerPathId?: string;
|
|
1928
1928
|
/** Results for each player */
|
|
1929
|
-
|
|
1929
|
+
Value?: PlayerCareerRankResult[];
|
|
1930
1930
|
}
|
|
1931
1931
|
/**
|
|
1932
1932
|
* Match progression (post-game rewards).
|
|
1933
1933
|
*/
|
|
1934
1934
|
interface MatchProgression {
|
|
1935
1935
|
/** Player identifier */
|
|
1936
|
-
|
|
1936
|
+
PlayerId?: string;
|
|
1937
1937
|
/** Match identifier */
|
|
1938
|
-
|
|
1938
|
+
MatchId?: string;
|
|
1939
1939
|
/** Challenges progressed */
|
|
1940
|
-
|
|
1940
|
+
ChallengeProgress?: ChallengeProgress[];
|
|
1941
1941
|
/** XP earned breakdown */
|
|
1942
|
-
|
|
1942
|
+
XpBreakdown?: XpBreakdown;
|
|
1943
1943
|
/** Career rank progression */
|
|
1944
|
-
|
|
1944
|
+
CareerRankProgress?: CareerRankProgress;
|
|
1945
1945
|
}
|
|
1946
1946
|
/**
|
|
1947
1947
|
* Challenge progress from a match.
|
|
1948
1948
|
*/
|
|
1949
1949
|
interface ChallengeProgress {
|
|
1950
1950
|
/** Challenge identifier */
|
|
1951
|
-
|
|
1951
|
+
ChallengeId?: string;
|
|
1952
1952
|
/** Progress made */
|
|
1953
|
-
|
|
1953
|
+
Progress?: number;
|
|
1954
1954
|
/** Whether challenge was completed */
|
|
1955
|
-
|
|
1955
|
+
Completed?: boolean;
|
|
1956
1956
|
}
|
|
1957
1957
|
/**
|
|
1958
1958
|
* XP breakdown from a match.
|
|
1959
1959
|
*/
|
|
1960
1960
|
interface XpBreakdown {
|
|
1961
1961
|
/** Base XP from match */
|
|
1962
|
-
|
|
1962
|
+
MatchXp?: number;
|
|
1963
1963
|
/** XP from medals */
|
|
1964
|
-
|
|
1964
|
+
MedalXp?: number;
|
|
1965
1965
|
/** XP from challenges */
|
|
1966
|
-
|
|
1966
|
+
ChallengeXp?: number;
|
|
1967
1967
|
/** Boost XP */
|
|
1968
|
-
|
|
1968
|
+
BoostXp?: number;
|
|
1969
1969
|
/** Total XP */
|
|
1970
|
-
|
|
1970
|
+
TotalXp?: number;
|
|
1971
1971
|
}
|
|
1972
1972
|
/**
|
|
1973
1973
|
* Career rank progress from a match.
|
|
1974
1974
|
*/
|
|
1975
1975
|
interface CareerRankProgress {
|
|
1976
1976
|
/** Rank before match */
|
|
1977
|
-
|
|
1977
|
+
PreviousRank?: number;
|
|
1978
1978
|
/** Rank after match */
|
|
1979
|
-
|
|
1979
|
+
CurrentRank?: number;
|
|
1980
1980
|
/** XP earned */
|
|
1981
|
-
|
|
1981
|
+
XpEarned?: number;
|
|
1982
1982
|
/** Whether player ranked up */
|
|
1983
|
-
|
|
1983
|
+
RankedUp?: boolean;
|
|
1984
1984
|
}
|
|
1985
1985
|
|
|
1986
1986
|
/**
|
|
@@ -2759,73 +2759,73 @@ declare class SettingsModule extends ModuleBase {
|
|
|
2759
2759
|
*/
|
|
2760
2760
|
interface Csr {
|
|
2761
2761
|
/** Current CSR value */
|
|
2762
|
-
|
|
2762
|
+
Value?: number;
|
|
2763
2763
|
/** Measurement matches remaining before placement */
|
|
2764
|
-
|
|
2764
|
+
MeasurementMatchesRemaining?: number;
|
|
2765
2765
|
/** Current tier name (e.g., "Diamond", "Onyx") */
|
|
2766
|
-
|
|
2766
|
+
Tier?: string;
|
|
2767
2767
|
/** CSR value at start of current tier */
|
|
2768
|
-
|
|
2768
|
+
TierStart?: number;
|
|
2769
2769
|
/** Current sub-tier within the tier (1-6) */
|
|
2770
|
-
|
|
2770
|
+
SubTier?: number;
|
|
2771
2771
|
/** Next tier name */
|
|
2772
|
-
|
|
2772
|
+
NextTier?: string;
|
|
2773
2773
|
/** CSR value at start of next tier */
|
|
2774
|
-
|
|
2774
|
+
NextTierStart?: number;
|
|
2775
2775
|
/** Next sub-tier */
|
|
2776
|
-
|
|
2776
|
+
NextSubTier?: number;
|
|
2777
2777
|
/** Initial number of placement matches required */
|
|
2778
|
-
|
|
2778
|
+
InitialMeasurementMatches?: number;
|
|
2779
2779
|
/** Initial demotion protection matches */
|
|
2780
|
-
|
|
2780
|
+
InitialDemotionProtectionMatches?: number;
|
|
2781
2781
|
/** Remaining demotion protection matches */
|
|
2782
|
-
|
|
2782
|
+
DemotionProtectionMatchesRemaining?: number;
|
|
2783
2783
|
}
|
|
2784
2784
|
/**
|
|
2785
2785
|
* Match skill information for a single player.
|
|
2786
2786
|
*/
|
|
2787
2787
|
interface PlayerMatchSkill {
|
|
2788
2788
|
/** Player identifier */
|
|
2789
|
-
|
|
2789
|
+
Id?: string;
|
|
2790
2790
|
/** CSR before the match */
|
|
2791
|
-
|
|
2791
|
+
PreMatchCsr?: Csr;
|
|
2792
2792
|
/** CSR after the match */
|
|
2793
|
-
|
|
2793
|
+
PostMatchCsr?: Csr;
|
|
2794
2794
|
/** Expected CSR at ranking */
|
|
2795
|
-
|
|
2795
|
+
ExpectedRankCsr?: Csr;
|
|
2796
2796
|
/** Result code */
|
|
2797
|
-
|
|
2797
|
+
ResultCode?: number;
|
|
2798
2798
|
}
|
|
2799
2799
|
/**
|
|
2800
2800
|
* Container for match skill results.
|
|
2801
2801
|
*/
|
|
2802
2802
|
interface MatchSkillInfo {
|
|
2803
2803
|
/** Match identifier */
|
|
2804
|
-
|
|
2804
|
+
MatchId?: string;
|
|
2805
2805
|
/** Skill results for each player */
|
|
2806
|
-
|
|
2806
|
+
Value?: PlayerMatchSkill[];
|
|
2807
2807
|
}
|
|
2808
2808
|
/**
|
|
2809
2809
|
* Playlist CSR result for a single player.
|
|
2810
2810
|
*/
|
|
2811
2811
|
interface PlayerPlaylistCsr {
|
|
2812
2812
|
/** Player identifier */
|
|
2813
|
-
|
|
2813
|
+
Id?: string;
|
|
2814
2814
|
/** Current CSR for this playlist */
|
|
2815
|
-
|
|
2815
|
+
Csr?: Csr;
|
|
2816
2816
|
/** Result code */
|
|
2817
|
-
|
|
2817
|
+
ResultCode?: number;
|
|
2818
2818
|
}
|
|
2819
2819
|
/**
|
|
2820
2820
|
* Container for playlist CSR results.
|
|
2821
2821
|
*/
|
|
2822
2822
|
interface PlaylistCsrResultContainer {
|
|
2823
2823
|
/** Playlist identifier */
|
|
2824
|
-
|
|
2824
|
+
PlaylistId?: string;
|
|
2825
2825
|
/** Season identifier (if applicable) */
|
|
2826
|
-
|
|
2826
|
+
SeasonId?: string;
|
|
2827
2827
|
/** CSR results for each player */
|
|
2828
|
-
|
|
2828
|
+
Value?: PlayerPlaylistCsr[];
|
|
2829
2829
|
}
|
|
2830
2830
|
|
|
2831
2831
|
/**
|
|
@@ -2908,38 +2908,38 @@ type LifecycleMode = (typeof LifecycleMode)[keyof typeof LifecycleMode];
|
|
|
2908
2908
|
*/
|
|
2909
2909
|
interface GenericAsset {
|
|
2910
2910
|
/** Unique asset identifier */
|
|
2911
|
-
|
|
2911
|
+
AssetId?: string;
|
|
2912
2912
|
/** Version identifier */
|
|
2913
|
-
|
|
2913
|
+
VersionId?: string;
|
|
2914
2914
|
/** Combined asset version identifier */
|
|
2915
|
-
|
|
2915
|
+
AssetVersionId?: string;
|
|
2916
2916
|
/** Display name */
|
|
2917
|
-
|
|
2917
|
+
PublicName?: string;
|
|
2918
2918
|
}
|
|
2919
2919
|
/**
|
|
2920
2920
|
* UGC game variant information in match context.
|
|
2921
2921
|
*/
|
|
2922
2922
|
interface UgcGameVariant {
|
|
2923
2923
|
/** Asset identifier */
|
|
2924
|
-
|
|
2924
|
+
AssetId?: string;
|
|
2925
2925
|
/** Version identifier */
|
|
2926
|
-
|
|
2926
|
+
VersionId?: string;
|
|
2927
2927
|
/** Display name */
|
|
2928
|
-
|
|
2928
|
+
PublicName?: string;
|
|
2929
2929
|
}
|
|
2930
2930
|
/**
|
|
2931
2931
|
* Playlist experience tracking.
|
|
2932
2932
|
*/
|
|
2933
2933
|
interface PlaylistExperience {
|
|
2934
2934
|
/** Experience value */
|
|
2935
|
-
|
|
2935
|
+
Value?: number;
|
|
2936
2936
|
}
|
|
2937
2937
|
/**
|
|
2938
2938
|
* Gameplay interaction type.
|
|
2939
2939
|
*/
|
|
2940
2940
|
interface GameplayInteraction {
|
|
2941
2941
|
/** Interaction type identifier */
|
|
2942
|
-
|
|
2942
|
+
Value?: number;
|
|
2943
2943
|
}
|
|
2944
2944
|
/**
|
|
2945
2945
|
* General information about a match.
|
|
@@ -2948,39 +2948,39 @@ interface GameplayInteraction {
|
|
|
2948
2948
|
*/
|
|
2949
2949
|
interface MatchInfo {
|
|
2950
2950
|
/** Match start time (ISO 8601) */
|
|
2951
|
-
|
|
2951
|
+
StartTime?: string;
|
|
2952
2952
|
/** Match end time (ISO 8601) */
|
|
2953
|
-
|
|
2953
|
+
EndTime?: string;
|
|
2954
2954
|
/** Match duration as ISO 8601 duration string (e.g., "PT10M30S") */
|
|
2955
|
-
|
|
2955
|
+
Duration?: string;
|
|
2956
2956
|
/** Lifecycle mode (matchmade, custom, local) */
|
|
2957
|
-
|
|
2957
|
+
LifecycleMode?: LifecycleMode;
|
|
2958
2958
|
/** Game variant category */
|
|
2959
|
-
|
|
2959
|
+
GameVariantCategory?: number;
|
|
2960
2960
|
/** Map/level identifier */
|
|
2961
|
-
|
|
2961
|
+
LevelId?: string;
|
|
2962
2962
|
/** Map variant information */
|
|
2963
|
-
|
|
2963
|
+
MapVariant?: GenericAsset;
|
|
2964
2964
|
/** UGC game variant (for custom games) */
|
|
2965
|
-
|
|
2965
|
+
UgcGameVariant?: UgcGameVariant;
|
|
2966
2966
|
/** Clearance ID used for the match */
|
|
2967
|
-
|
|
2967
|
+
ClearanceId?: string;
|
|
2968
2968
|
/** Playlist information */
|
|
2969
|
-
|
|
2969
|
+
Playlist?: GenericAsset;
|
|
2970
2970
|
/** Playlist experience info */
|
|
2971
|
-
|
|
2971
|
+
PlaylistExperience?: PlaylistExperience;
|
|
2972
2972
|
/** Map-mode pair info */
|
|
2973
|
-
|
|
2973
|
+
PlaylistMapModePair?: GenericAsset;
|
|
2974
2974
|
/** Season identifier */
|
|
2975
|
-
|
|
2975
|
+
SeasonId?: string;
|
|
2976
2976
|
/** Playable duration */
|
|
2977
|
-
|
|
2977
|
+
PlayableDuration?: string;
|
|
2978
2978
|
/** Whether teams were enabled */
|
|
2979
|
-
|
|
2979
|
+
TeamsEnabled?: boolean;
|
|
2980
2980
|
/** Whether team scoring was enabled */
|
|
2981
|
-
|
|
2981
|
+
TeamScoringEnabled?: boolean;
|
|
2982
2982
|
/** Gameplay interaction type */
|
|
2983
|
-
|
|
2983
|
+
GameplayInteraction?: GameplayInteraction;
|
|
2984
2984
|
}
|
|
2985
2985
|
|
|
2986
2986
|
/**
|
|
@@ -2988,305 +2988,305 @@ interface MatchInfo {
|
|
|
2988
2988
|
*/
|
|
2989
2989
|
interface CoreStats {
|
|
2990
2990
|
/** Total score earned */
|
|
2991
|
-
|
|
2991
|
+
Score?: number;
|
|
2992
2992
|
/** Personal score (individual contribution) */
|
|
2993
|
-
|
|
2993
|
+
PersonalScore?: number;
|
|
2994
2994
|
/** Number of rounds won */
|
|
2995
|
-
|
|
2995
|
+
RoundsWon?: number;
|
|
2996
2996
|
/** Number of rounds lost */
|
|
2997
|
-
|
|
2997
|
+
RoundsLost?: number;
|
|
2998
2998
|
/** Number of rounds tied */
|
|
2999
|
-
|
|
2999
|
+
RoundsTied?: number;
|
|
3000
3000
|
/** Total kills */
|
|
3001
|
-
|
|
3001
|
+
Kills?: number;
|
|
3002
3002
|
/** Total deaths */
|
|
3003
|
-
|
|
3003
|
+
Deaths?: number;
|
|
3004
3004
|
/** Total assists */
|
|
3005
|
-
|
|
3005
|
+
Assists?: number;
|
|
3006
3006
|
/** Kill/Death/Assist ratio */
|
|
3007
|
-
|
|
3007
|
+
Kda?: number;
|
|
3008
3008
|
/** Total suicides */
|
|
3009
|
-
|
|
3009
|
+
Suicides?: number;
|
|
3010
3010
|
/** Total betrayals (team kills) */
|
|
3011
|
-
|
|
3011
|
+
Betrayals?: number;
|
|
3012
3012
|
/** Average life duration in seconds */
|
|
3013
|
-
|
|
3013
|
+
AverageLifeDuration?: string;
|
|
3014
3014
|
/** Grenade kills */
|
|
3015
|
-
|
|
3015
|
+
GrenadeKills?: number;
|
|
3016
3016
|
/** Headshot kills */
|
|
3017
|
-
|
|
3017
|
+
HeadshotKills?: number;
|
|
3018
3018
|
/** Melee kills */
|
|
3019
|
-
|
|
3019
|
+
MeleeKills?: number;
|
|
3020
3020
|
/** Power weapon kills */
|
|
3021
|
-
|
|
3021
|
+
PowerWeaponKills?: number;
|
|
3022
3022
|
/** Shots fired */
|
|
3023
|
-
|
|
3023
|
+
ShotsFired?: number;
|
|
3024
3024
|
/** Shots hit */
|
|
3025
|
-
|
|
3025
|
+
ShotsHit?: number;
|
|
3026
3026
|
/** Accuracy percentage */
|
|
3027
|
-
|
|
3027
|
+
Accuracy?: number;
|
|
3028
3028
|
/** Damage dealt */
|
|
3029
|
-
|
|
3029
|
+
DamageDealt?: number;
|
|
3030
3030
|
/** Damage taken */
|
|
3031
|
-
|
|
3031
|
+
DamageTaken?: number;
|
|
3032
3032
|
/** Callout assists */
|
|
3033
|
-
|
|
3033
|
+
CalloutAssists?: number;
|
|
3034
3034
|
/** Vehicle destroys */
|
|
3035
|
-
|
|
3035
|
+
VehicleDestroys?: number;
|
|
3036
3036
|
/** Driver assists */
|
|
3037
|
-
|
|
3037
|
+
DriverAssists?: number;
|
|
3038
3038
|
/** Hijacks */
|
|
3039
|
-
|
|
3039
|
+
Hijacks?: number;
|
|
3040
3040
|
/** EMP assists */
|
|
3041
|
-
|
|
3041
|
+
EmpAssists?: number;
|
|
3042
3042
|
/** Maximum killing spree */
|
|
3043
|
-
|
|
3043
|
+
MaxKillingSpree?: number;
|
|
3044
3044
|
/** Medals earned */
|
|
3045
|
-
|
|
3045
|
+
Medals?: MedalCount[];
|
|
3046
3046
|
/** Personal scores breakdown */
|
|
3047
|
-
|
|
3047
|
+
PersonalScores?: PersonalScoreEntry[];
|
|
3048
3048
|
/** Deprecated Spartan Rank */
|
|
3049
|
-
|
|
3049
|
+
DeprecatedDamageDealt?: number;
|
|
3050
3050
|
/** Deprecated Spartan Rank */
|
|
3051
|
-
|
|
3051
|
+
DeprecatedDamageTaken?: number;
|
|
3052
3052
|
/** Spawns */
|
|
3053
|
-
|
|
3053
|
+
Spawns?: number;
|
|
3054
3054
|
/** Objectives completed */
|
|
3055
|
-
|
|
3055
|
+
ObjectivesCompleted?: number;
|
|
3056
3056
|
}
|
|
3057
3057
|
/**
|
|
3058
3058
|
* Medal count entry.
|
|
3059
3059
|
*/
|
|
3060
3060
|
interface MedalCount {
|
|
3061
3061
|
/** Medal name identifier */
|
|
3062
|
-
|
|
3062
|
+
NameId?: number;
|
|
3063
3063
|
/** Number of times earned */
|
|
3064
|
-
|
|
3064
|
+
Count?: number;
|
|
3065
3065
|
/** Total personal score from this medal */
|
|
3066
|
-
|
|
3066
|
+
TotalPersonalScoreAwarded?: number;
|
|
3067
3067
|
}
|
|
3068
3068
|
/**
|
|
3069
3069
|
* Personal score breakdown entry.
|
|
3070
3070
|
*/
|
|
3071
3071
|
interface PersonalScoreEntry {
|
|
3072
3072
|
/** Score type name identifier */
|
|
3073
|
-
|
|
3073
|
+
NameId?: number;
|
|
3074
3074
|
/** Number of times earned */
|
|
3075
|
-
|
|
3075
|
+
Count?: number;
|
|
3076
3076
|
/** Total score from this type */
|
|
3077
|
-
|
|
3077
|
+
TotalPersonalScoreAwarded?: number;
|
|
3078
3078
|
}
|
|
3079
3079
|
/**
|
|
3080
3080
|
* Bomb game mode stats (Assault).
|
|
3081
3081
|
*/
|
|
3082
3082
|
interface BombStats {
|
|
3083
3083
|
/** Bombs planted */
|
|
3084
|
-
|
|
3084
|
+
BombsPlanted?: number;
|
|
3085
3085
|
/** Bombs defused */
|
|
3086
|
-
|
|
3086
|
+
BombsDefused?: number;
|
|
3087
3087
|
/** Bomb carriers killed */
|
|
3088
|
-
|
|
3088
|
+
BombCarriersKilled?: number;
|
|
3089
3089
|
/** Time as bomb carrier */
|
|
3090
|
-
|
|
3090
|
+
TimeAsBombCarrier?: string;
|
|
3091
3091
|
}
|
|
3092
3092
|
/**
|
|
3093
3093
|
* Capture the Flag game mode stats.
|
|
3094
3094
|
*/
|
|
3095
3095
|
interface CaptureTheFlagStats {
|
|
3096
3096
|
/** Flag captures */
|
|
3097
|
-
|
|
3097
|
+
FlagCaptures?: number;
|
|
3098
3098
|
/** Flag capture assists */
|
|
3099
|
-
|
|
3099
|
+
FlagCaptureAssists?: number;
|
|
3100
3100
|
/** Flag carriers killed */
|
|
3101
|
-
|
|
3101
|
+
FlagCarriersKilled?: number;
|
|
3102
3102
|
/** Flag grabs */
|
|
3103
|
-
|
|
3103
|
+
FlagGrabs?: number;
|
|
3104
3104
|
/** Flags returned */
|
|
3105
|
-
|
|
3105
|
+
FlagsReturned?: number;
|
|
3106
3106
|
/** Flags stolen */
|
|
3107
|
-
|
|
3107
|
+
FlagsStolen?: number;
|
|
3108
3108
|
/** Time as flag carrier */
|
|
3109
|
-
|
|
3109
|
+
TimeAsFlagCarrier?: string;
|
|
3110
3110
|
/** Kills as flag carrier */
|
|
3111
|
-
|
|
3111
|
+
KillsAsFlagCarrier?: number;
|
|
3112
3112
|
}
|
|
3113
3113
|
/**
|
|
3114
3114
|
* Elimination game mode stats.
|
|
3115
3115
|
*/
|
|
3116
3116
|
interface EliminationStats {
|
|
3117
3117
|
/** Allies revived */
|
|
3118
|
-
|
|
3118
|
+
AlliesRevived?: number;
|
|
3119
3119
|
/** Revives denied */
|
|
3120
|
-
|
|
3120
|
+
RevivesDenied?: number;
|
|
3121
3121
|
/** Eliminations */
|
|
3122
|
-
|
|
3122
|
+
Eliminations?: number;
|
|
3123
3123
|
/** Elimination assists */
|
|
3124
|
-
|
|
3124
|
+
EliminationAssists?: number;
|
|
3125
3125
|
/** Times revived */
|
|
3126
|
-
|
|
3126
|
+
TimesRevived?: number;
|
|
3127
3127
|
/** Rounds survived */
|
|
3128
|
-
|
|
3128
|
+
RoundsSurvived?: number;
|
|
3129
3129
|
/** Executions */
|
|
3130
|
-
|
|
3130
|
+
Executions?: number;
|
|
3131
3131
|
/** Last spartans standing */
|
|
3132
|
-
|
|
3132
|
+
LastSpartansStanding?: number;
|
|
3133
3133
|
}
|
|
3134
3134
|
/**
|
|
3135
3135
|
* Extraction game mode stats.
|
|
3136
3136
|
*/
|
|
3137
3137
|
interface ExtractionStats {
|
|
3138
3138
|
/** Extractions initiated */
|
|
3139
|
-
|
|
3139
|
+
ExtractionInitiated?: number;
|
|
3140
3140
|
/** Extractions completed */
|
|
3141
|
-
|
|
3141
|
+
ExtractionCompleted?: number;
|
|
3142
3142
|
/** Extractions converted */
|
|
3143
|
-
|
|
3143
|
+
ExtractionConverted?: number;
|
|
3144
3144
|
/** Extractions denied */
|
|
3145
|
-
|
|
3145
|
+
ExtractionDenied?: number;
|
|
3146
3146
|
/** Successful extractions */
|
|
3147
|
-
|
|
3147
|
+
SuccessfulExtractions?: number;
|
|
3148
3148
|
/** Seconds converting */
|
|
3149
|
-
|
|
3149
|
+
SecondsConverting?: number;
|
|
3150
3150
|
}
|
|
3151
3151
|
/**
|
|
3152
3152
|
* Infection game mode stats.
|
|
3153
3153
|
*/
|
|
3154
3154
|
interface InfectionStats {
|
|
3155
3155
|
/** Infected killed */
|
|
3156
|
-
|
|
3156
|
+
InfectedKilled?: number;
|
|
3157
3157
|
/** Spartans infected */
|
|
3158
|
-
|
|
3158
|
+
SpartansInfected?: number;
|
|
3159
3159
|
/** Spartans infected as last spartan */
|
|
3160
|
-
|
|
3160
|
+
SpartansInfectedAsLastSpartan?: number;
|
|
3161
3161
|
/** Infected killed as last spartan */
|
|
3162
|
-
|
|
3162
|
+
InfectedKilledAsLastSpartan?: number;
|
|
3163
3163
|
/** Time as last spartan */
|
|
3164
|
-
|
|
3164
|
+
TimeAsLastSpartan?: string;
|
|
3165
3165
|
/** Time as survivor */
|
|
3166
|
-
|
|
3166
|
+
TimeAsSurvivor?: string;
|
|
3167
3167
|
/** Rounds as survivor */
|
|
3168
|
-
|
|
3168
|
+
RoundsAsSurvivor?: number;
|
|
3169
3169
|
/** Rounds as infected */
|
|
3170
|
-
|
|
3170
|
+
RoundsAsInfected?: number;
|
|
3171
3171
|
/** Rounds survived as spartan */
|
|
3172
|
-
|
|
3172
|
+
RoundsSurvivedAsSpartan?: number;
|
|
3173
3173
|
/** Rounds survived as last spartan */
|
|
3174
|
-
|
|
3174
|
+
RoundsSurvivedAsLastSpartan?: number;
|
|
3175
3175
|
/** Kills as last spartan */
|
|
3176
|
-
|
|
3176
|
+
KillsAsLastSpartan?: number;
|
|
3177
3177
|
/** Alpha infections */
|
|
3178
|
-
|
|
3178
|
+
AlphaInfections?: number;
|
|
3179
3179
|
}
|
|
3180
3180
|
/**
|
|
3181
3181
|
* Oddball game mode stats.
|
|
3182
3182
|
*/
|
|
3183
3183
|
interface OddballStats {
|
|
3184
3184
|
/** Time with ball */
|
|
3185
|
-
|
|
3185
|
+
TimeWithBall?: string;
|
|
3186
3186
|
/** Ball carriers killed */
|
|
3187
|
-
|
|
3187
|
+
BallCarriersKilled?: number;
|
|
3188
3188
|
/** Kills as ball carrier */
|
|
3189
|
-
|
|
3189
|
+
KillsAsBallCarrier?: number;
|
|
3190
3190
|
/** Ball grabs */
|
|
3191
|
-
|
|
3191
|
+
BallGrabs?: number;
|
|
3192
3192
|
/** Longest time with ball */
|
|
3193
|
-
|
|
3193
|
+
LongestTimeWithBall?: string;
|
|
3194
3194
|
}
|
|
3195
3195
|
/**
|
|
3196
3196
|
* Zones game mode stats (Land Grab, Strongholds, etc.).
|
|
3197
3197
|
*/
|
|
3198
3198
|
interface ZonesStats {
|
|
3199
3199
|
/** Zones captured */
|
|
3200
|
-
|
|
3200
|
+
ZoneCaptures?: number;
|
|
3201
3201
|
/** Zone defensive kills */
|
|
3202
|
-
|
|
3202
|
+
ZoneDefensiveKills?: number;
|
|
3203
3203
|
/** Zone offensive kills */
|
|
3204
|
-
|
|
3204
|
+
ZoneOffensiveKills?: number;
|
|
3205
3205
|
/** Zone securing kills */
|
|
3206
|
-
|
|
3206
|
+
ZoneSecuringKills?: number;
|
|
3207
3207
|
/** Zone occupation time */
|
|
3208
|
-
|
|
3208
|
+
ZoneOccupationTime?: string;
|
|
3209
3209
|
/** Zones scored */
|
|
3210
|
-
|
|
3210
|
+
ZonesScored?: number;
|
|
3211
3211
|
/** Zone scoring ticks */
|
|
3212
|
-
|
|
3212
|
+
ZoneScoringTicks?: number;
|
|
3213
3213
|
}
|
|
3214
3214
|
/**
|
|
3215
3215
|
* Stockpile game mode stats.
|
|
3216
3216
|
*/
|
|
3217
3217
|
interface StockpileStats {
|
|
3218
3218
|
/** Power seeds deposited */
|
|
3219
|
-
|
|
3219
|
+
PowerSeedsDeposited?: number;
|
|
3220
3220
|
/** Power seeds stolen */
|
|
3221
|
-
|
|
3221
|
+
PowerSeedsStolen?: number;
|
|
3222
3222
|
/** Kill as power seed carrier */
|
|
3223
|
-
|
|
3223
|
+
KillsAsPowerSeedCarrier?: number;
|
|
3224
3224
|
/** Power seed carriers killed */
|
|
3225
|
-
|
|
3225
|
+
PowerSeedCarriersKilled?: number;
|
|
3226
3226
|
/** Time as power seed carrier */
|
|
3227
|
-
|
|
3227
|
+
TimeAsPowerSeedCarrier?: string;
|
|
3228
3228
|
}
|
|
3229
3229
|
/**
|
|
3230
3230
|
* VIP game mode stats.
|
|
3231
3231
|
*/
|
|
3232
3232
|
interface VipStats {
|
|
3233
3233
|
/** VIP kills */
|
|
3234
|
-
|
|
3234
|
+
VipKills?: number;
|
|
3235
3235
|
/** Kills as VIP */
|
|
3236
|
-
|
|
3236
|
+
KillsAsVip?: number;
|
|
3237
3237
|
/** Time as VIP */
|
|
3238
|
-
|
|
3238
|
+
TimeAsVip?: string;
|
|
3239
3239
|
}
|
|
3240
3240
|
/**
|
|
3241
3241
|
* PvE (Firefight) stats.
|
|
3242
3242
|
*/
|
|
3243
3243
|
interface PveStats {
|
|
3244
3244
|
/** Boss kills */
|
|
3245
|
-
|
|
3245
|
+
BossKills?: number;
|
|
3246
3246
|
/** Emplacement kills */
|
|
3247
|
-
|
|
3247
|
+
EmplacementKills?: number;
|
|
3248
3248
|
/** Enemy vehicle kills */
|
|
3249
|
-
|
|
3249
|
+
EnemyVehicleKills?: number;
|
|
3250
3250
|
/** Wave survived */
|
|
3251
|
-
|
|
3251
|
+
WavesSurvived?: number;
|
|
3252
3252
|
/** Last spartan standing */
|
|
3253
|
-
|
|
3253
|
+
LastSpartanStanding?: boolean;
|
|
3254
3254
|
}
|
|
3255
3255
|
/**
|
|
3256
3256
|
* PvP stats (used in some game modes).
|
|
3257
3257
|
*/
|
|
3258
3258
|
interface PvpStats {
|
|
3259
3259
|
/** Spartan kills */
|
|
3260
|
-
|
|
3260
|
+
SpartanKills?: number;
|
|
3261
3261
|
}
|
|
3262
3262
|
/**
|
|
3263
3263
|
* Container for all mode-specific stats.
|
|
3264
3264
|
*/
|
|
3265
3265
|
interface Stats {
|
|
3266
3266
|
/** Core stats (applies to all modes) */
|
|
3267
|
-
|
|
3267
|
+
CoreStats?: CoreStats;
|
|
3268
3268
|
/** Bomb stats */
|
|
3269
|
-
|
|
3269
|
+
BombStats?: BombStats;
|
|
3270
3270
|
/** CTF stats */
|
|
3271
|
-
|
|
3271
|
+
CaptureTheFlagStats?: CaptureTheFlagStats;
|
|
3272
3272
|
/** Elimination stats */
|
|
3273
|
-
|
|
3273
|
+
EliminationStats?: EliminationStats;
|
|
3274
3274
|
/** Extraction stats */
|
|
3275
|
-
|
|
3275
|
+
ExtractionStats?: ExtractionStats;
|
|
3276
3276
|
/** Infection stats */
|
|
3277
|
-
|
|
3277
|
+
InfectionStats?: InfectionStats;
|
|
3278
3278
|
/** Oddball stats */
|
|
3279
|
-
|
|
3279
|
+
OddballStats?: OddballStats;
|
|
3280
3280
|
/** Zones stats */
|
|
3281
|
-
|
|
3281
|
+
ZonesStats?: ZonesStats;
|
|
3282
3282
|
/** Stockpile stats */
|
|
3283
|
-
|
|
3283
|
+
StockpileStats?: StockpileStats;
|
|
3284
3284
|
/** VIP stats */
|
|
3285
|
-
|
|
3285
|
+
VipStats?: VipStats;
|
|
3286
3286
|
/** PvE stats */
|
|
3287
|
-
|
|
3287
|
+
PveStats?: PveStats;
|
|
3288
3288
|
/** PvP stats */
|
|
3289
|
-
|
|
3289
|
+
PvpStats?: PvpStats;
|
|
3290
3290
|
}
|
|
3291
3291
|
|
|
3292
3292
|
/**
|
|
@@ -3326,77 +3326,77 @@ type Outcome = (typeof Outcome)[keyof typeof Outcome];
|
|
|
3326
3326
|
*/
|
|
3327
3327
|
interface BotAttributes {
|
|
3328
3328
|
/** Bot difficulty */
|
|
3329
|
-
|
|
3329
|
+
Difficulty?: number;
|
|
3330
3330
|
/** Bot skill level */
|
|
3331
|
-
|
|
3331
|
+
SkillLevel?: number;
|
|
3332
3332
|
}
|
|
3333
3333
|
/**
|
|
3334
3334
|
* Participation information for a player.
|
|
3335
3335
|
*/
|
|
3336
3336
|
interface ParticipationInfo {
|
|
3337
3337
|
/** Time played (ISO 8601 duration) */
|
|
3338
|
-
|
|
3338
|
+
TimePlayed?: string;
|
|
3339
3339
|
/** Whether player was present at start */
|
|
3340
|
-
|
|
3340
|
+
PresentAtStart?: boolean;
|
|
3341
3341
|
/** Whether player was present at end */
|
|
3342
|
-
|
|
3342
|
+
PresentAtEnd?: boolean;
|
|
3343
3343
|
/** Whether player joined mid-match */
|
|
3344
|
-
|
|
3344
|
+
JoinedInProgress?: boolean;
|
|
3345
3345
|
/** When player joined (ISO 8601) */
|
|
3346
|
-
|
|
3346
|
+
JoinedAt?: string;
|
|
3347
3347
|
/** When player left (ISO 8601, if applicable) */
|
|
3348
|
-
|
|
3348
|
+
LeftAt?: string;
|
|
3349
3349
|
/** First joined time (ISO 8601) */
|
|
3350
|
-
|
|
3350
|
+
FirstJoinedTime?: string;
|
|
3351
3351
|
/** Last joined time (ISO 8601) */
|
|
3352
|
-
|
|
3352
|
+
LastJoinedTime?: string;
|
|
3353
3353
|
/** Whether player left before completion */
|
|
3354
|
-
|
|
3354
|
+
LeftInProgress?: boolean;
|
|
3355
3355
|
/** Confirmed participation */
|
|
3356
|
-
|
|
3356
|
+
ConfirmedParticipation?: boolean;
|
|
3357
3357
|
}
|
|
3358
3358
|
/**
|
|
3359
3359
|
* Player's stats for a specific team.
|
|
3360
3360
|
*/
|
|
3361
3361
|
interface PlayerTeamStat {
|
|
3362
3362
|
/** Team identifier */
|
|
3363
|
-
|
|
3363
|
+
TeamId?: number;
|
|
3364
3364
|
/** Stats for this team */
|
|
3365
|
-
|
|
3365
|
+
Stats?: Stats;
|
|
3366
3366
|
}
|
|
3367
3367
|
/**
|
|
3368
3368
|
* Player information from a match.
|
|
3369
3369
|
*/
|
|
3370
3370
|
interface Player {
|
|
3371
3371
|
/** Player identifier (format: "xuid(XUID)") */
|
|
3372
|
-
|
|
3372
|
+
PlayerId?: string;
|
|
3373
3373
|
/** Type of player (Human or Bot) */
|
|
3374
|
-
|
|
3374
|
+
PlayerType?: PlayerType;
|
|
3375
3375
|
/** Bot attributes (only if playerType is Bot) */
|
|
3376
|
-
|
|
3376
|
+
BotAttributes?: BotAttributes;
|
|
3377
3377
|
/** Last team the player was on */
|
|
3378
|
-
|
|
3378
|
+
LastTeamId?: number;
|
|
3379
3379
|
/** Match outcome for this player */
|
|
3380
|
-
|
|
3380
|
+
Outcome?: Outcome;
|
|
3381
3381
|
/** Final rank/placement */
|
|
3382
|
-
|
|
3382
|
+
Rank?: number;
|
|
3383
3383
|
/** Participation details */
|
|
3384
|
-
|
|
3384
|
+
ParticipationInfo?: ParticipationInfo;
|
|
3385
3385
|
/** Stats broken down by team */
|
|
3386
|
-
|
|
3386
|
+
PlayerTeamStats?: PlayerTeamStat[];
|
|
3387
3387
|
}
|
|
3388
3388
|
/**
|
|
3389
3389
|
* Team information from a match.
|
|
3390
3390
|
*/
|
|
3391
3391
|
interface Team {
|
|
3392
3392
|
/** Team identifier */
|
|
3393
|
-
|
|
3393
|
+
TeamId?: number;
|
|
3394
3394
|
/** Match outcome for this team */
|
|
3395
|
-
|
|
3395
|
+
Outcome?: number;
|
|
3396
3396
|
/** Final rank/placement */
|
|
3397
|
-
|
|
3397
|
+
Rank?: number;
|
|
3398
3398
|
/** Team stats */
|
|
3399
|
-
|
|
3399
|
+
Stats?: Stats;
|
|
3400
3400
|
}
|
|
3401
3401
|
|
|
3402
3402
|
/**
|
|
@@ -3407,13 +3407,13 @@ interface Team {
|
|
|
3407
3407
|
*/
|
|
3408
3408
|
interface MatchStats {
|
|
3409
3409
|
/** Unique match identifier */
|
|
3410
|
-
|
|
3410
|
+
MatchId?: string;
|
|
3411
3411
|
/** General match information */
|
|
3412
|
-
|
|
3412
|
+
MatchInfo?: MatchInfo;
|
|
3413
3413
|
/** List of teams in the match */
|
|
3414
|
-
|
|
3414
|
+
Teams?: Team[];
|
|
3415
3415
|
/** List of players in the match */
|
|
3416
|
-
|
|
3416
|
+
Players?: Player[];
|
|
3417
3417
|
}
|
|
3418
3418
|
|
|
3419
3419
|
/**
|
|
@@ -3421,56 +3421,56 @@ interface MatchStats {
|
|
|
3421
3421
|
*/
|
|
3422
3422
|
interface MatchLinks {
|
|
3423
3423
|
/** Link to next page of results */
|
|
3424
|
-
|
|
3424
|
+
Next?: string;
|
|
3425
3425
|
/** Link to previous page of results */
|
|
3426
|
-
|
|
3426
|
+
Prev?: string;
|
|
3427
3427
|
}
|
|
3428
3428
|
/**
|
|
3429
3429
|
* Individual match record in match history.
|
|
3430
3430
|
*/
|
|
3431
3431
|
interface PlayerMatchHistoryRecord {
|
|
3432
3432
|
/** Unique match identifier */
|
|
3433
|
-
|
|
3433
|
+
MatchId?: string;
|
|
3434
3434
|
/** Match information */
|
|
3435
|
-
|
|
3435
|
+
MatchInfo?: MatchInfo;
|
|
3436
3436
|
/** Last team the player was on */
|
|
3437
|
-
|
|
3437
|
+
LastTeamId?: number;
|
|
3438
3438
|
/** Match outcome for this player */
|
|
3439
|
-
|
|
3439
|
+
Outcome?: number;
|
|
3440
3440
|
/** Final rank/placement */
|
|
3441
|
-
|
|
3441
|
+
Rank?: number;
|
|
3442
3442
|
/** Whether player was present at end */
|
|
3443
|
-
|
|
3443
|
+
PresentAtEnd?: boolean;
|
|
3444
3444
|
/** Player-specific data for this match */
|
|
3445
|
-
|
|
3445
|
+
Player?: Player;
|
|
3446
3446
|
}
|
|
3447
3447
|
/**
|
|
3448
3448
|
* Response container for match history queries.
|
|
3449
3449
|
*/
|
|
3450
3450
|
interface MatchHistoryResponse {
|
|
3451
3451
|
/** Starting index of results */
|
|
3452
|
-
|
|
3452
|
+
Start?: number;
|
|
3453
3453
|
/** Number of results requested */
|
|
3454
|
-
|
|
3454
|
+
Count?: number;
|
|
3455
3455
|
/** Number of results returned */
|
|
3456
|
-
|
|
3456
|
+
ResultCount?: number;
|
|
3457
3457
|
/** List of match records */
|
|
3458
|
-
|
|
3458
|
+
Results?: PlayerMatchHistoryRecord[];
|
|
3459
3459
|
/** Pagination links */
|
|
3460
|
-
|
|
3460
|
+
Links?: MatchLinks;
|
|
3461
3461
|
}
|
|
3462
3462
|
/**
|
|
3463
3463
|
* Player match count summary.
|
|
3464
3464
|
*/
|
|
3465
3465
|
interface PlayerMatchCount {
|
|
3466
3466
|
/** Player identifier */
|
|
3467
|
-
|
|
3467
|
+
PlayerId?: string;
|
|
3468
3468
|
/** Total custom game count */
|
|
3469
|
-
|
|
3469
|
+
CustomMatchesPlayedCount?: number;
|
|
3470
3470
|
/** Total matchmade games count */
|
|
3471
|
-
|
|
3471
|
+
MatchmadeMatchesPlayedCount?: number;
|
|
3472
3472
|
/** Total local games count */
|
|
3473
|
-
|
|
3473
|
+
LocalMatchesPlayedCount?: number;
|
|
3474
3474
|
}
|
|
3475
3475
|
|
|
3476
3476
|
/**
|
|
@@ -3478,71 +3478,71 @@ interface PlayerMatchCount {
|
|
|
3478
3478
|
*/
|
|
3479
3479
|
interface ServiceRecordSubqueries {
|
|
3480
3480
|
/** Seasonal breakdown of stats */
|
|
3481
|
-
|
|
3481
|
+
Seasons?: SeasonServiceRecord[];
|
|
3482
3482
|
/** Map breakdown of stats */
|
|
3483
|
-
|
|
3483
|
+
Maps?: MapServiceRecord[];
|
|
3484
3484
|
/** Game variant breakdown */
|
|
3485
|
-
|
|
3485
|
+
GameVariants?: GameVariantServiceRecord[];
|
|
3486
3486
|
/** Playlist breakdown */
|
|
3487
|
-
|
|
3487
|
+
Playlists?: PlaylistServiceRecord[];
|
|
3488
3488
|
}
|
|
3489
3489
|
/**
|
|
3490
3490
|
* Season-specific service record.
|
|
3491
3491
|
*/
|
|
3492
3492
|
interface SeasonServiceRecord {
|
|
3493
3493
|
/** Season identifier */
|
|
3494
|
-
|
|
3494
|
+
SeasonId?: string;
|
|
3495
3495
|
/** Stats for this season */
|
|
3496
|
-
|
|
3496
|
+
Stats?: Stats;
|
|
3497
3497
|
}
|
|
3498
3498
|
/**
|
|
3499
3499
|
* Map-specific service record.
|
|
3500
3500
|
*/
|
|
3501
3501
|
interface MapServiceRecord {
|
|
3502
3502
|
/** Map asset identifier */
|
|
3503
|
-
|
|
3503
|
+
AssetId?: string;
|
|
3504
3504
|
/** Stats for this map */
|
|
3505
|
-
|
|
3505
|
+
Stats?: Stats;
|
|
3506
3506
|
}
|
|
3507
3507
|
/**
|
|
3508
3508
|
* Game variant-specific service record.
|
|
3509
3509
|
*/
|
|
3510
3510
|
interface GameVariantServiceRecord {
|
|
3511
3511
|
/** Game variant category */
|
|
3512
|
-
|
|
3512
|
+
GameVariantCategory?: number;
|
|
3513
3513
|
/** Stats for this game variant */
|
|
3514
|
-
|
|
3514
|
+
Stats?: Stats;
|
|
3515
3515
|
}
|
|
3516
3516
|
/**
|
|
3517
3517
|
* Playlist-specific service record.
|
|
3518
3518
|
*/
|
|
3519
3519
|
interface PlaylistServiceRecord {
|
|
3520
3520
|
/** Playlist asset identifier */
|
|
3521
|
-
|
|
3521
|
+
AssetId?: string;
|
|
3522
3522
|
/** Stats for this playlist */
|
|
3523
|
-
|
|
3523
|
+
Stats?: Stats;
|
|
3524
3524
|
}
|
|
3525
3525
|
/**
|
|
3526
3526
|
* Time played breakdown.
|
|
3527
3527
|
*/
|
|
3528
3528
|
interface TimePlayed {
|
|
3529
3529
|
/** Total seconds played */
|
|
3530
|
-
|
|
3530
|
+
Seconds?: number;
|
|
3531
3531
|
/** Human-readable duration */
|
|
3532
|
-
|
|
3532
|
+
Human?: string;
|
|
3533
3533
|
}
|
|
3534
3534
|
/**
|
|
3535
3535
|
* Win-loss record.
|
|
3536
3536
|
*/
|
|
3537
3537
|
interface WinLossRecord {
|
|
3538
3538
|
/** Number of wins */
|
|
3539
|
-
|
|
3539
|
+
Wins?: number;
|
|
3540
3540
|
/** Number of losses */
|
|
3541
|
-
|
|
3541
|
+
Losses?: number;
|
|
3542
3542
|
/** Number of ties */
|
|
3543
|
-
|
|
3543
|
+
Ties?: number;
|
|
3544
3544
|
/** Number of games left early */
|
|
3545
|
-
|
|
3545
|
+
Left?: number;
|
|
3546
3546
|
}
|
|
3547
3547
|
/**
|
|
3548
3548
|
* Player service record (career stats).
|
|
@@ -3551,17 +3551,17 @@ interface WinLossRecord {
|
|
|
3551
3551
|
*/
|
|
3552
3552
|
interface PlayerServiceRecord {
|
|
3553
3553
|
/** Player identifier */
|
|
3554
|
-
|
|
3554
|
+
PlayerId?: string;
|
|
3555
3555
|
/** Core aggregate stats */
|
|
3556
|
-
|
|
3556
|
+
Stats?: Stats;
|
|
3557
3557
|
/** Time played breakdown */
|
|
3558
|
-
|
|
3558
|
+
TimePlayed?: TimePlayed;
|
|
3559
3559
|
/** Win/loss/tie record */
|
|
3560
|
-
|
|
3560
|
+
WinLossRecord?: WinLossRecord;
|
|
3561
3561
|
/** Matches played */
|
|
3562
|
-
|
|
3562
|
+
MatchesPlayed?: number;
|
|
3563
3563
|
/** Subquery breakdowns (by season, map, etc.) */
|
|
3564
|
-
|
|
3564
|
+
Subqueries?: ServiceRecordSubqueries;
|
|
3565
3565
|
}
|
|
3566
3566
|
|
|
3567
3567
|
/**
|
|
@@ -3766,195 +3766,195 @@ type AssetKind = (typeof AssetKind)[keyof typeof AssetKind];
|
|
|
3766
3766
|
*/
|
|
3767
3767
|
interface AssetVersionFile {
|
|
3768
3768
|
/** Prefix for file URLs */
|
|
3769
|
-
|
|
3769
|
+
Prefix?: string;
|
|
3770
3770
|
/** List of file paths */
|
|
3771
|
-
|
|
3771
|
+
FileRelativePaths?: string[];
|
|
3772
3772
|
}
|
|
3773
3773
|
/**
|
|
3774
3774
|
* Asset play statistics.
|
|
3775
3775
|
*/
|
|
3776
3776
|
interface PlayAssetStats {
|
|
3777
3777
|
/** Number of plays */
|
|
3778
|
-
|
|
3778
|
+
PlaysRecent?: number;
|
|
3779
3779
|
/** All-time plays */
|
|
3780
|
-
|
|
3780
|
+
PlaysAllTime?: number;
|
|
3781
3781
|
/** Favorites count */
|
|
3782
|
-
|
|
3782
|
+
Favorites?: number;
|
|
3783
3783
|
/** Average rating */
|
|
3784
|
-
|
|
3784
|
+
AverageRating?: number;
|
|
3785
3785
|
/** Number of ratings */
|
|
3786
|
-
|
|
3786
|
+
NumberOfRatings?: number;
|
|
3787
3787
|
/** Parent asset ID (if this is a variant) */
|
|
3788
|
-
|
|
3788
|
+
ParentAssetId?: string;
|
|
3789
3789
|
}
|
|
3790
3790
|
/**
|
|
3791
3791
|
* Base asset properties.
|
|
3792
3792
|
*/
|
|
3793
3793
|
interface AssetBase {
|
|
3794
3794
|
/** Asset unique identifier */
|
|
3795
|
-
|
|
3795
|
+
AssetId?: string;
|
|
3796
3796
|
/** Version identifier */
|
|
3797
|
-
|
|
3797
|
+
VersionId?: string;
|
|
3798
3798
|
/** Combined asset version ID */
|
|
3799
|
-
|
|
3799
|
+
AssetVersionId?: string;
|
|
3800
3800
|
/** Public display name */
|
|
3801
|
-
|
|
3801
|
+
PublicName?: string;
|
|
3802
3802
|
/** Internal name */
|
|
3803
|
-
|
|
3803
|
+
Name?: string;
|
|
3804
3804
|
/** Description */
|
|
3805
|
-
|
|
3805
|
+
Description?: string;
|
|
3806
3806
|
/** Inspection result code */
|
|
3807
|
-
|
|
3807
|
+
InspectionResult?: number;
|
|
3808
3808
|
/** Clone behavior setting */
|
|
3809
|
-
|
|
3809
|
+
CloneBehavior?: number;
|
|
3810
3810
|
/** Asset home (where it's stored) */
|
|
3811
|
-
|
|
3811
|
+
AssetHome?: number;
|
|
3812
3812
|
/** Descriptive tags */
|
|
3813
|
-
|
|
3813
|
+
Tags?: string[];
|
|
3814
3814
|
/** Contributors (XUIDs) */
|
|
3815
|
-
|
|
3815
|
+
Contributors?: string[];
|
|
3816
3816
|
/** File information */
|
|
3817
|
-
|
|
3817
|
+
Files?: AssetVersionFile;
|
|
3818
3818
|
/** Type of asset */
|
|
3819
|
-
|
|
3819
|
+
AssetKind?: AssetKind;
|
|
3820
3820
|
/** Display order */
|
|
3821
|
-
|
|
3821
|
+
Order?: number;
|
|
3822
3822
|
/** Play statistics */
|
|
3823
|
-
|
|
3823
|
+
AssetStats?: PlayAssetStats;
|
|
3824
3824
|
/** When published (ISO 8601) */
|
|
3825
|
-
|
|
3825
|
+
PublishedDate?: string;
|
|
3826
3826
|
/** Version number */
|
|
3827
|
-
|
|
3827
|
+
VersionNumber?: number;
|
|
3828
3828
|
/** Admin XUID */
|
|
3829
|
-
|
|
3829
|
+
Admin?: string;
|
|
3830
3830
|
/** Display owner override */
|
|
3831
|
-
|
|
3831
|
+
DisplayOwnerOverride?: string;
|
|
3832
3832
|
}
|
|
3833
3833
|
/**
|
|
3834
3834
|
* UGC authoring asset.
|
|
3835
3835
|
*/
|
|
3836
3836
|
interface AuthoringAsset extends AssetBase {
|
|
3837
3837
|
/** Original author XUID */
|
|
3838
|
-
|
|
3838
|
+
OriginalAuthor?: string;
|
|
3839
3839
|
/** Whether it's readonly */
|
|
3840
|
-
|
|
3840
|
+
Readonly?: boolean;
|
|
3841
3841
|
/** Custom data for the asset type */
|
|
3842
|
-
|
|
3842
|
+
CustomData?: Record<string, unknown>;
|
|
3843
3843
|
/** Creation time (ISO 8601) */
|
|
3844
|
-
|
|
3844
|
+
CreatedAt?: string;
|
|
3845
3845
|
/** Last modification time (ISO 8601) */
|
|
3846
|
-
|
|
3846
|
+
UpdatedAt?: string;
|
|
3847
3847
|
}
|
|
3848
3848
|
/**
|
|
3849
3849
|
* Authoring asset version.
|
|
3850
3850
|
*/
|
|
3851
3851
|
interface AuthoringAssetVersion extends AssetBase {
|
|
3852
3852
|
/** Readonly status */
|
|
3853
|
-
|
|
3853
|
+
Readonly?: boolean;
|
|
3854
3854
|
/** Custom data */
|
|
3855
|
-
|
|
3855
|
+
CustomData?: Record<string, unknown>;
|
|
3856
3856
|
}
|
|
3857
3857
|
/**
|
|
3858
3858
|
* Container for multiple authoring assets.
|
|
3859
3859
|
*/
|
|
3860
3860
|
interface AuthoringAssetContainer {
|
|
3861
3861
|
/** Asset count */
|
|
3862
|
-
|
|
3862
|
+
Count?: number;
|
|
3863
3863
|
/** Total available */
|
|
3864
|
-
|
|
3864
|
+
Total?: number;
|
|
3865
3865
|
/** List of assets */
|
|
3866
|
-
|
|
3866
|
+
Results?: AuthoringAsset[];
|
|
3867
3867
|
/** Pagination links */
|
|
3868
|
-
|
|
3868
|
+
Links?: AssetLinks;
|
|
3869
3869
|
}
|
|
3870
3870
|
/**
|
|
3871
3871
|
* Container for asset versions.
|
|
3872
3872
|
*/
|
|
3873
3873
|
interface AuthoringAssetVersionContainer {
|
|
3874
3874
|
/** List of versions */
|
|
3875
|
-
|
|
3875
|
+
Results?: AuthoringAssetVersion[];
|
|
3876
3876
|
}
|
|
3877
3877
|
/**
|
|
3878
3878
|
* Pagination links.
|
|
3879
3879
|
*/
|
|
3880
3880
|
interface AssetLinks {
|
|
3881
3881
|
/** Link to current page */
|
|
3882
|
-
|
|
3882
|
+
Self?: string;
|
|
3883
3883
|
/** Link to next page */
|
|
3884
|
-
|
|
3884
|
+
Next?: string;
|
|
3885
3885
|
/** Link to previous page */
|
|
3886
|
-
|
|
3886
|
+
Prev?: string;
|
|
3887
3887
|
}
|
|
3888
3888
|
/**
|
|
3889
3889
|
* Asset rating.
|
|
3890
3890
|
*/
|
|
3891
3891
|
interface AuthoringAssetRating {
|
|
3892
3892
|
/** User's rating value (1-5) */
|
|
3893
|
-
|
|
3893
|
+
Rating?: number;
|
|
3894
3894
|
/** When rated (ISO 8601) */
|
|
3895
|
-
|
|
3895
|
+
Timestamp?: string;
|
|
3896
3896
|
}
|
|
3897
3897
|
/**
|
|
3898
3898
|
* Favorite asset reference.
|
|
3899
3899
|
*/
|
|
3900
3900
|
interface FavoriteAsset {
|
|
3901
3901
|
/** Asset ID */
|
|
3902
|
-
|
|
3902
|
+
AssetId?: string;
|
|
3903
3903
|
/** Asset kind */
|
|
3904
|
-
|
|
3904
|
+
AssetKind?: AssetKind;
|
|
3905
3905
|
/** When favorited (ISO 8601) */
|
|
3906
|
-
|
|
3906
|
+
FavoritedAt?: string;
|
|
3907
3907
|
}
|
|
3908
3908
|
/**
|
|
3909
3909
|
* Container for favorite assets.
|
|
3910
3910
|
*/
|
|
3911
3911
|
interface AuthoringFavoritesContainer {
|
|
3912
3912
|
/** List of favorites */
|
|
3913
|
-
|
|
3913
|
+
Results?: FavoriteAsset[];
|
|
3914
3914
|
/** Total count */
|
|
3915
|
-
|
|
3915
|
+
Total?: number;
|
|
3916
3916
|
}
|
|
3917
3917
|
/**
|
|
3918
3918
|
* Permission for an asset.
|
|
3919
3919
|
*/
|
|
3920
3920
|
interface Permission {
|
|
3921
3921
|
/** Player XUID */
|
|
3922
|
-
|
|
3922
|
+
Player?: string;
|
|
3923
3923
|
/** Permission type */
|
|
3924
|
-
|
|
3924
|
+
PermissionType?: string;
|
|
3925
3925
|
/** Whether permission is granted */
|
|
3926
|
-
|
|
3926
|
+
Granted?: boolean;
|
|
3927
3927
|
}
|
|
3928
3928
|
/**
|
|
3929
3929
|
* Asset report for moderation.
|
|
3930
3930
|
*/
|
|
3931
3931
|
interface AssetReport {
|
|
3932
3932
|
/** Report reason */
|
|
3933
|
-
|
|
3933
|
+
Reason?: string;
|
|
3934
3934
|
/** Additional details */
|
|
3935
|
-
|
|
3935
|
+
Details?: string;
|
|
3936
3936
|
/** When reported (ISO 8601) */
|
|
3937
|
-
|
|
3937
|
+
Timestamp?: string;
|
|
3938
3938
|
}
|
|
3939
3939
|
/**
|
|
3940
3940
|
* Authoring session for asset editing.
|
|
3941
3941
|
*/
|
|
3942
3942
|
interface AssetAuthoringSession {
|
|
3943
3943
|
/** Session identifier */
|
|
3944
|
-
|
|
3944
|
+
SessionId?: string;
|
|
3945
3945
|
/** Session expiration (ISO 8601) */
|
|
3946
|
-
|
|
3946
|
+
ExpiresAt?: string;
|
|
3947
3947
|
/** Container SAS URL for uploads */
|
|
3948
|
-
|
|
3948
|
+
ContainerSas?: string;
|
|
3949
3949
|
}
|
|
3950
3950
|
/**
|
|
3951
3951
|
* Session starter for creating new versions.
|
|
3952
3952
|
*/
|
|
3953
3953
|
interface AuthoringSessionSourceStarter {
|
|
3954
3954
|
/** Source asset ID (to clone from) */
|
|
3955
|
-
|
|
3955
|
+
SourceAssetId?: string;
|
|
3956
3956
|
/** Source version ID */
|
|
3957
|
-
|
|
3957
|
+
SourceVersionId?: string;
|
|
3958
3958
|
}
|
|
3959
3959
|
|
|
3960
3960
|
/**
|
|
@@ -3976,129 +3976,129 @@ type ResultOrder = (typeof ResultOrder)[keyof typeof ResultOrder];
|
|
|
3976
3976
|
*/
|
|
3977
3977
|
interface UgcSearchParams {
|
|
3978
3978
|
/** Search term */
|
|
3979
|
-
|
|
3979
|
+
Term?: string;
|
|
3980
3980
|
/** Asset kinds to include */
|
|
3981
|
-
|
|
3981
|
+
AssetKinds?: AssetKind[];
|
|
3982
3982
|
/** Tags to filter by */
|
|
3983
|
-
|
|
3983
|
+
Tags?: string[];
|
|
3984
3984
|
/** Author XUID */
|
|
3985
|
-
|
|
3985
|
+
Author?: string;
|
|
3986
3986
|
/** Sort field */
|
|
3987
|
-
|
|
3987
|
+
Sort?: string;
|
|
3988
3988
|
/** Sort order */
|
|
3989
|
-
|
|
3989
|
+
Order?: ResultOrder;
|
|
3990
3990
|
/** Number of results to return */
|
|
3991
|
-
|
|
3991
|
+
Count?: number;
|
|
3992
3992
|
/** Starting offset */
|
|
3993
|
-
|
|
3993
|
+
Start?: number;
|
|
3994
3994
|
}
|
|
3995
3995
|
/**
|
|
3996
3996
|
* Search result container.
|
|
3997
3997
|
*/
|
|
3998
3998
|
interface UgcSearchResult {
|
|
3999
3999
|
/** Search results */
|
|
4000
|
-
|
|
4000
|
+
Results?: AuthoringAsset[];
|
|
4001
4001
|
/** Total matching results */
|
|
4002
|
-
|
|
4002
|
+
TotalCount?: number;
|
|
4003
4003
|
/** Returned count */
|
|
4004
|
-
|
|
4004
|
+
Count?: number;
|
|
4005
4005
|
/** Starting offset */
|
|
4006
|
-
|
|
4006
|
+
Start?: number;
|
|
4007
4007
|
/** Pagination links */
|
|
4008
|
-
|
|
4008
|
+
Links?: SearchLinks;
|
|
4009
4009
|
}
|
|
4010
4010
|
/**
|
|
4011
4011
|
* Search pagination links.
|
|
4012
4012
|
*/
|
|
4013
4013
|
interface SearchLinks {
|
|
4014
4014
|
/** Current page */
|
|
4015
|
-
|
|
4015
|
+
Self?: string;
|
|
4016
4016
|
/** Next page */
|
|
4017
|
-
|
|
4017
|
+
Next?: string;
|
|
4018
4018
|
/** Previous page */
|
|
4019
|
-
|
|
4019
|
+
Prev?: string;
|
|
4020
4020
|
}
|
|
4021
4021
|
/**
|
|
4022
4022
|
* Map variant asset.
|
|
4023
4023
|
*/
|
|
4024
|
-
interface MapAsset extends Omit<AuthoringAsset, '
|
|
4024
|
+
interface MapAsset extends Omit<AuthoringAsset, 'CustomData'> {
|
|
4025
4025
|
/** Map-specific custom data */
|
|
4026
|
-
|
|
4026
|
+
CustomData?: MapCustomData;
|
|
4027
4027
|
}
|
|
4028
4028
|
/**
|
|
4029
4029
|
* Map custom data.
|
|
4030
4030
|
*/
|
|
4031
4031
|
interface MapCustomData {
|
|
4032
4032
|
/** Number of supported players */
|
|
4033
|
-
|
|
4033
|
+
SupportedPlayerCount?: number;
|
|
4034
4034
|
/** Recommended player count */
|
|
4035
|
-
|
|
4035
|
+
RecommendedPlayerCount?: number;
|
|
4036
4036
|
/** Budget usage */
|
|
4037
|
-
|
|
4037
|
+
BudgetUsed?: number;
|
|
4038
4038
|
/** Object count */
|
|
4039
|
-
|
|
4039
|
+
ObjectCount?: number;
|
|
4040
4040
|
/** Has lightmap */
|
|
4041
|
-
|
|
4041
|
+
HasLightmap?: boolean;
|
|
4042
4042
|
}
|
|
4043
4043
|
/**
|
|
4044
4044
|
* Game variant asset.
|
|
4045
4045
|
*/
|
|
4046
|
-
interface UgcGameVariantAsset extends Omit<AuthoringAsset, '
|
|
4046
|
+
interface UgcGameVariantAsset extends Omit<AuthoringAsset, 'CustomData'> {
|
|
4047
4047
|
/** Game variant custom data */
|
|
4048
|
-
|
|
4048
|
+
CustomData?: GameVariantCustomData;
|
|
4049
4049
|
}
|
|
4050
4050
|
/**
|
|
4051
4051
|
* Game variant custom data.
|
|
4052
4052
|
*/
|
|
4053
4053
|
interface GameVariantCustomData {
|
|
4054
4054
|
/** Game variant category */
|
|
4055
|
-
|
|
4055
|
+
Category?: number;
|
|
4056
4056
|
/** Score to win */
|
|
4057
|
-
|
|
4057
|
+
ScoreToWin?: number;
|
|
4058
4058
|
/** Time limit */
|
|
4059
|
-
|
|
4059
|
+
TimeLimit?: number;
|
|
4060
4060
|
/** Rounds to win */
|
|
4061
|
-
|
|
4061
|
+
RoundsToWin?: number;
|
|
4062
4062
|
/** Max players */
|
|
4063
|
-
|
|
4063
|
+
MaxPlayers?: number;
|
|
4064
4064
|
/** Min players */
|
|
4065
|
-
|
|
4065
|
+
MinPlayers?: number;
|
|
4066
4066
|
}
|
|
4067
4067
|
/**
|
|
4068
4068
|
* Film asset (theater recording).
|
|
4069
4069
|
*/
|
|
4070
|
-
interface FilmAsset extends Omit<AuthoringAsset, '
|
|
4070
|
+
interface FilmAsset extends Omit<AuthoringAsset, 'CustomData'> {
|
|
4071
4071
|
/** Film custom data */
|
|
4072
|
-
|
|
4072
|
+
CustomData?: FilmCustomData;
|
|
4073
4073
|
}
|
|
4074
4074
|
/**
|
|
4075
4075
|
* Film custom data.
|
|
4076
4076
|
*/
|
|
4077
4077
|
interface FilmCustomData {
|
|
4078
4078
|
/** Match ID this film is from */
|
|
4079
|
-
|
|
4079
|
+
MatchId?: string;
|
|
4080
4080
|
/** Duration of the film */
|
|
4081
|
-
|
|
4081
|
+
Duration?: string;
|
|
4082
4082
|
/** Map asset ID */
|
|
4083
|
-
|
|
4083
|
+
MapAssetId?: string;
|
|
4084
4084
|
/** Game variant asset ID */
|
|
4085
|
-
|
|
4085
|
+
GameVariantAssetId?: string;
|
|
4086
4086
|
}
|
|
4087
4087
|
/**
|
|
4088
4088
|
* Prefab asset.
|
|
4089
4089
|
*/
|
|
4090
|
-
interface PrefabAsset extends Omit<AuthoringAsset, '
|
|
4090
|
+
interface PrefabAsset extends Omit<AuthoringAsset, 'CustomData'> {
|
|
4091
4091
|
/** Prefab custom data */
|
|
4092
|
-
|
|
4092
|
+
CustomData?: PrefabCustomData;
|
|
4093
4093
|
}
|
|
4094
4094
|
/**
|
|
4095
4095
|
* Prefab custom data.
|
|
4096
4096
|
*/
|
|
4097
4097
|
interface PrefabCustomData {
|
|
4098
4098
|
/** Object count */
|
|
4099
|
-
|
|
4099
|
+
ObjectCount?: number;
|
|
4100
4100
|
/** Budget usage */
|
|
4101
|
-
|
|
4101
|
+
BudgetUsed?: number;
|
|
4102
4102
|
}
|
|
4103
4103
|
|
|
4104
4104
|
/**
|