@taskeren/bungie-api-ts 5.10.2 → 5.10.3
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/app/interfaces.d.ts +20 -17
- package/app/interfaces.js +3 -3
- package/common.d.ts +925 -923
- package/common.js +2 -2
- package/content/interfaces.d.ts +19 -17
- package/content/interfaces.js +1 -1
- package/core/interfaces.d.ts +12 -10
- package/core/interfaces.js +2 -2
- package/destiny2/interfaces.d.ts +1170 -1003
- package/destiny2/interfaces.js +109 -102
- package/fireteam/interfaces.d.ts +40 -33
- package/fireteam/interfaces.js +5 -5
- package/forum/interfaces.d.ts +75 -61
- package/forum/interfaces.js +9 -9
- package/groupv2/interfaces.d.ts +122 -100
- package/groupv2/interfaces.js +16 -16
- package/package.json +1 -1
- package/platform.d.ts +10 -9
- package/platform.js +1 -1
- package/social/interfaces.d.ts +28 -22
- package/social/interfaces.js +4 -4
- package/tokens/interfaces.d.ts +6 -5
- package/tokens/interfaces.js +1 -1
- package/trending/interfaces.d.ts +15 -14
- package/trending/interfaces.js +1 -1
- package/user/interfaces.d.ts +30 -28
- package/user/interfaces.js +2 -2
package/common.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export
|
|
1
|
+
export const PlatformErrorCodes = {
|
|
2
2
|
None: 0,
|
|
3
3
|
Success: 1,
|
|
4
4
|
TransportException: 2,
|
|
@@ -908,7 +908,7 @@ export var PlatformErrorCodes = {
|
|
|
908
908
|
MarathonThrottledByGameServer: 5006,
|
|
909
909
|
MarathonErrorDeserializationFailure: 5007
|
|
910
910
|
};
|
|
911
|
-
export
|
|
911
|
+
export const BungieMembershipType = {
|
|
912
912
|
None: 0,
|
|
913
913
|
TigerXbox: 1,
|
|
914
914
|
TigerPsn: 2,
|
package/content/interfaces.d.ts
CHANGED
|
@@ -84,23 +84,25 @@ export interface ContentTypeProperty {
|
|
|
84
84
|
readonly isVideo: boolean;
|
|
85
85
|
readonly isImage: boolean;
|
|
86
86
|
}
|
|
87
|
-
export declare const
|
|
88
|
-
None
|
|
89
|
-
Plaintext
|
|
90
|
-
Html
|
|
91
|
-
Dropdown
|
|
92
|
-
List
|
|
93
|
-
Json
|
|
94
|
-
Content
|
|
95
|
-
Representation
|
|
96
|
-
Set
|
|
97
|
-
File
|
|
98
|
-
FolderSet
|
|
99
|
-
Date
|
|
100
|
-
MultilinePlaintext
|
|
101
|
-
DestinyContent
|
|
102
|
-
Color
|
|
103
|
-
}
|
|
87
|
+
export declare const ContentPropertyDataTypeEnum: {
|
|
88
|
+
readonly None: 0;
|
|
89
|
+
readonly Plaintext: 1;
|
|
90
|
+
readonly Html: 2;
|
|
91
|
+
readonly Dropdown: 3;
|
|
92
|
+
readonly List: 4;
|
|
93
|
+
readonly Json: 5;
|
|
94
|
+
readonly Content: 6;
|
|
95
|
+
readonly Representation: 7;
|
|
96
|
+
readonly Set: 8;
|
|
97
|
+
readonly File: 9;
|
|
98
|
+
readonly FolderSet: 10;
|
|
99
|
+
readonly Date: 11;
|
|
100
|
+
readonly MultilinePlaintext: 12;
|
|
101
|
+
readonly DestinyContent: 13;
|
|
102
|
+
readonly Color: 14;
|
|
103
|
+
};
|
|
104
|
+
export type ContentPropertyDataTypeEnum =
|
|
105
|
+
(typeof ContentPropertyDataTypeEnum)[keyof typeof ContentPropertyDataTypeEnum];
|
|
104
106
|
export interface ContentTypeDefaultValue {
|
|
105
107
|
readonly whenClause: string;
|
|
106
108
|
readonly whenValue: string;
|
package/content/interfaces.js
CHANGED
package/core/interfaces.d.ts
CHANGED
|
@@ -129,16 +129,18 @@ export interface GlobalAlert {
|
|
|
129
129
|
readonly AlertType: GlobalAlertType;
|
|
130
130
|
readonly StreamInfo: StreamInfo;
|
|
131
131
|
}
|
|
132
|
-
export declare const
|
|
133
|
-
Unknown
|
|
134
|
-
Blue
|
|
135
|
-
Yellow
|
|
136
|
-
Red
|
|
137
|
-
}
|
|
138
|
-
export
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
132
|
+
export declare const GlobalAlertLevel: {
|
|
133
|
+
readonly Unknown: 0;
|
|
134
|
+
readonly Blue: 1;
|
|
135
|
+
readonly Yellow: 2;
|
|
136
|
+
readonly Red: 3;
|
|
137
|
+
};
|
|
138
|
+
export type GlobalAlertLevel = (typeof GlobalAlertLevel)[keyof typeof GlobalAlertLevel];
|
|
139
|
+
export declare const GlobalAlertType: {
|
|
140
|
+
readonly GlobalAlert: 0;
|
|
141
|
+
readonly StreamingAlert: 1;
|
|
142
|
+
};
|
|
143
|
+
export type GlobalAlertType = (typeof GlobalAlertType)[keyof typeof GlobalAlertType];
|
|
142
144
|
export interface StreamInfo {
|
|
143
145
|
readonly ChannelName: string;
|
|
144
146
|
}
|
package/core/interfaces.js
CHANGED