@taskeren/bungie-api-ts 5.10.0

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.
Files changed (164) hide show
  1. package/.babelrc +4 -0
  2. package/.gitattributes +2 -0
  3. package/.github/workflows/pr-build.yml +50 -0
  4. package/.github/workflows/publish.yml +48 -0
  5. package/.github/workflows/update.yml +55 -0
  6. package/.gitmodules +3 -0
  7. package/.nvmrc +1 -0
  8. package/.prettierrc +10 -0
  9. package/.vscode/extensions.json +8 -0
  10. package/.vscode/settings.json +7 -0
  11. package/LICENSE.md +21 -0
  12. package/README.md +97 -0
  13. package/api-src/.github/workflows/close-inactive.yml +24 -0
  14. package/api-src/CHANGELOG.md +271 -0
  15. package/api-src/CONTRIBUTING.md +19 -0
  16. package/api-src/LICENSE +28 -0
  17. package/api-src/README.md +378 -0
  18. package/api-src/openapi-2.json +44518 -0
  19. package/api-src/openapi.json +46467 -0
  20. package/build.sh +30 -0
  21. package/bungie-api-LICENSE +29 -0
  22. package/generated-src/app/api.ts +50 -0
  23. package/generated-src/app/index.ts +17 -0
  24. package/generated-src/app/interfaces.ts +119 -0
  25. package/generated-src/common.ts +985 -0
  26. package/generated-src/communitycontent/api.ts +36 -0
  27. package/generated-src/communitycontent/index.ts +16 -0
  28. package/generated-src/content/api.ts +142 -0
  29. package/generated-src/content/index.ts +17 -0
  30. package/generated-src/content/interfaces.ts +225 -0
  31. package/generated-src/core/api.ts +57 -0
  32. package/generated-src/core/index.ts +17 -0
  33. package/generated-src/core/interfaces.ts +151 -0
  34. package/generated-src/destiny2/api.ts +821 -0
  35. package/generated-src/destiny2/index.ts +17 -0
  36. package/generated-src/destiny2/interfaces.ts +15714 -0
  37. package/generated-src/destiny2/manifest.ts +341 -0
  38. package/generated-src/fireteam/api.ts +151 -0
  39. package/generated-src/fireteam/index.ts +17 -0
  40. package/generated-src/fireteam/interfaces.ts +183 -0
  41. package/generated-src/forum/api.ts +197 -0
  42. package/generated-src/forum/index.ts +17 -0
  43. package/generated-src/forum/interfaces.ts +171 -0
  44. package/generated-src/groupv2/api.ts +515 -0
  45. package/generated-src/groupv2/index.ts +17 -0
  46. package/generated-src/groupv2/interfaces.ts +773 -0
  47. package/generated-src/http.ts +52 -0
  48. package/generated-src/index.ts +37 -0
  49. package/generated-src/package.json.notyet +99 -0
  50. package/generated-src/platform.ts +39 -0
  51. package/generated-src/social/api.ts +115 -0
  52. package/generated-src/social/index.ts +17 -0
  53. package/generated-src/social/interfaces.ts +89 -0
  54. package/generated-src/tokens/api.ts +126 -0
  55. package/generated-src/tokens/index.ts +17 -0
  56. package/generated-src/tokens/interfaces.ts +102 -0
  57. package/generated-src/trending/api.ts +62 -0
  58. package/generated-src/trending/index.ts +17 -0
  59. package/generated-src/trending/interfaces.ts +188 -0
  60. package/generated-src/user/api.ts +130 -0
  61. package/generated-src/user/index.ts +17 -0
  62. package/generated-src/user/interfaces.ts +338 -0
  63. package/generator/generate-api.ts +254 -0
  64. package/generator/generate-common.ts +123 -0
  65. package/generator/generate-index.ts +45 -0
  66. package/generator/generate-interfaces.ts +173 -0
  67. package/generator/generate-manifest.ts +217 -0
  68. package/generator/generate-package-json.ts +45 -0
  69. package/generator/generate.ts +54 -0
  70. package/generator/http.ts +52 -0
  71. package/generator/missing-props.ts +11 -0
  72. package/generator/type-index.ts +184 -0
  73. package/generator/util.ts +131 -0
  74. package/lib/README.md +97 -0
  75. package/lib/app/api.d.ts +36 -0
  76. package/lib/app/api.js +15 -0
  77. package/lib/app/index.d.ts +16 -0
  78. package/lib/app/index.js +5 -0
  79. package/lib/app/interfaces.d.ts +108 -0
  80. package/lib/app/interfaces.js +17 -0
  81. package/lib/bungie-api-LICENSE +29 -0
  82. package/lib/common.d.ts +979 -0
  83. package/lib/common.js +923 -0
  84. package/lib/communitycontent/api.d.ts +31 -0
  85. package/lib/communitycontent/api.js +7 -0
  86. package/lib/communitycontent/index.d.ts +15 -0
  87. package/lib/communitycontent/index.js +4 -0
  88. package/lib/content/api.d.ts +111 -0
  89. package/lib/content/api.js +75 -0
  90. package/lib/content/index.d.ts +16 -0
  91. package/lib/content/index.js +5 -0
  92. package/lib/content/interfaces.d.ts +214 -0
  93. package/lib/content/interfaces.js +17 -0
  94. package/lib/core/api.d.ts +45 -0
  95. package/lib/core/api.js +18 -0
  96. package/lib/core/index.d.ts +16 -0
  97. package/lib/core/index.js +5 -0
  98. package/lib/core/interfaces.d.ts +144 -0
  99. package/lib/core/interfaces.js +10 -0
  100. package/lib/destiny2/api.d.ts +765 -0
  101. package/lib/destiny2/api.js +295 -0
  102. package/lib/destiny2/index.d.ts +16 -0
  103. package/lib/destiny2/index.js +5 -0
  104. package/lib/destiny2/interfaces.d.ts +15340 -0
  105. package/lib/destiny2/interfaces.js +826 -0
  106. package/lib/destiny2/manifest.d.ts +465 -0
  107. package/lib/destiny2/manifest.js +56 -0
  108. package/lib/fireteam/api.d.ts +131 -0
  109. package/lib/fireteam/api.js +50 -0
  110. package/lib/fireteam/index.d.ts +16 -0
  111. package/lib/fireteam/index.js +5 -0
  112. package/lib/fireteam/interfaces.d.ts +166 -0
  113. package/lib/fireteam/interfaces.js +33 -0
  114. package/lib/forum/api.d.ts +165 -0
  115. package/lib/forum/api.js +79 -0
  116. package/lib/forum/index.d.ts +16 -0
  117. package/lib/forum/index.js +5 -0
  118. package/lib/forum/interfaces.d.ts +147 -0
  119. package/lib/forum/interfaces.js +61 -0
  120. package/lib/groupv2/api.d.ts +484 -0
  121. package/lib/groupv2/api.js +154 -0
  122. package/lib/groupv2/index.d.ts +16 -0
  123. package/lib/groupv2/index.js +5 -0
  124. package/lib/groupv2/interfaces.d.ts +718 -0
  125. package/lib/groupv2/interfaces.js +100 -0
  126. package/lib/http.d.ts +18 -0
  127. package/lib/http.js +20 -0
  128. package/lib/index.d.ts +35 -0
  129. package/lib/index.js +24 -0
  130. package/lib/package.json +99 -0
  131. package/lib/platform.d.ts +36 -0
  132. package/lib/platform.js +9 -0
  133. package/lib/social/api.d.ts +101 -0
  134. package/lib/social/api.js +26 -0
  135. package/lib/social/index.d.ts +16 -0
  136. package/lib/social/index.js +5 -0
  137. package/lib/social/interfaces.d.ts +75 -0
  138. package/lib/social/interfaces.js +22 -0
  139. package/lib/tokens/api.d.ts +120 -0
  140. package/lib/tokens/api.js +38 -0
  141. package/lib/tokens/index.d.ts +16 -0
  142. package/lib/tokens/index.js +5 -0
  143. package/lib/tokens/interfaces.d.ts +88 -0
  144. package/lib/tokens/interfaces.js +5 -0
  145. package/lib/trending/api.d.ts +53 -0
  146. package/lib/trending/api.js +11 -0
  147. package/lib/trending/index.d.ts +16 -0
  148. package/lib/trending/index.js +5 -0
  149. package/lib/trending/interfaces.d.ts +171 -0
  150. package/lib/trending/interfaces.js +14 -0
  151. package/lib/user/api.d.ts +117 -0
  152. package/lib/user/api.js +35 -0
  153. package/lib/user/index.d.ts +16 -0
  154. package/lib/user/index.js +5 -0
  155. package/lib/user/interfaces.d.ts +320 -0
  156. package/lib/user/interfaces.js +28 -0
  157. package/package.json +60 -0
  158. package/test-consumer.ts +5 -0
  159. package/tests/__snapshots__/config-builders.test.ts.snap +343 -0
  160. package/tests/config-builders.test.ts +145 -0
  161. package/tests/manifest-fetcher.test.ts +43 -0
  162. package/tests/test-manifest.js +69 -0
  163. package/tsconfig-package.json +14 -0
  164. package/tsconfig.json +17 -0
package/lib/common.js ADDED
@@ -0,0 +1,923 @@
1
+ export var PlatformErrorCodes = {
2
+ None: 0,
3
+ Success: 1,
4
+ TransportException: 2,
5
+ UnhandledException: 3,
6
+ NotImplemented: 4,
7
+ SystemDisabled: 5,
8
+ FailedToLoadAvailableLocalesConfiguration: 6,
9
+ ParameterParseFailure: 7,
10
+ ParameterInvalidRange: 8,
11
+ BadRequest: 9,
12
+ AuthenticationInvalid: 10,
13
+ DataNotFound: 11,
14
+ InsufficientPrivileges: 12,
15
+ Duplicate: 13,
16
+ UnknownSqlResult: 14,
17
+ ValidationError: 15,
18
+ ValidationMissingFieldError: 16,
19
+ ValidationInvalidInputError: 17,
20
+ InvalidParameters: 18,
21
+ ParameterNotFound: 19,
22
+ UnhandledHttpException: 20,
23
+ NotFound: 21,
24
+ WebAuthModuleAsyncFailed: 22,
25
+ InvalidReturnValue: 23,
26
+ UserBanned: 24,
27
+ InvalidPostBody: 25,
28
+ MissingPostBody: 26,
29
+ ExternalServiceTimeout: 27,
30
+ ValidationLengthError: 28,
31
+ ValidationRangeError: 29,
32
+ JsonDeserializationError: 30,
33
+ ThrottleLimitExceeded: 31,
34
+ ValidationTagError: 32,
35
+ ValidationProfanityError: 33,
36
+ ValidationUrlFormatError: 34,
37
+ ThrottleLimitExceededMinutes: 35,
38
+ ThrottleLimitExceededMomentarily: 36,
39
+ ThrottleLimitExceededSeconds: 37,
40
+ ExternalServiceUnknown: 38,
41
+ ValidationWordLengthError: 39,
42
+ ValidationInvisibleUnicode: 40,
43
+ ValidationBadNames: 41,
44
+ ExternalServiceFailed: 42,
45
+ ServiceRetired: 43,
46
+ UnknownSqlException: 44,
47
+ UnsupportedLocale: 45,
48
+ InvalidPageNumber: 46,
49
+ MaximumPageSizeExceeded: 47,
50
+ ServiceUnsupported: 48,
51
+ ValidationMaximumUnicodeCombiningCharacters: 49,
52
+ ValidationMaximumSequentialCarriageReturns: 50,
53
+ PerEndpointRequestThrottleExceeded: 51,
54
+ AuthContextCacheAssertion: 52,
55
+ ExPlatformStringValidationError: 53,
56
+ PerApplicationThrottleExceeded: 54,
57
+ PerApplicationAnonymousThrottleExceeded: 55,
58
+ PerApplicationAuthenticatedThrottleExceeded: 56,
59
+ PerUserThrottleExceeded: 57,
60
+ PayloadSignatureVerificationFailure: 58,
61
+ InvalidServiceAuthContext: 59,
62
+ FailedMinimumAgeCheck: 60,
63
+ ObsoleteCredentialType: 89,
64
+ UnableToUnPairMobileApp: 90,
65
+ UnableToPairMobileApp: 91,
66
+ CannotUseMobileAuthWithNonMobileProvider: 92,
67
+ MissingDeviceCookie: 93,
68
+ FacebookTokenExpired: 94,
69
+ AuthTicketRequired: 95,
70
+ CookieContextRequired: 96,
71
+ UnknownAuthenticationError: 97,
72
+ BungieNetAccountCreationRequired: 98,
73
+ WebAuthRequired: 99,
74
+ ContentUnknownSqlResult: 100,
75
+ ContentNeedUniquePath: 101,
76
+ ContentSqlException: 102,
77
+ ContentNotFound: 103,
78
+ ContentSuccessWithTagAddFail: 104,
79
+ ContentSearchMissingParameters: 105,
80
+ ContentInvalidId: 106,
81
+ ContentPhysicalFileDeletionError: 107,
82
+ ContentPhysicalFileCreationError: 108,
83
+ ContentPerforceSubmissionError: 109,
84
+ ContentPerforceInitializationError: 110,
85
+ ContentDeploymentPackageNotReadyError: 111,
86
+ ContentUploadFailed: 112,
87
+ ContentTooManyResults: 113,
88
+ ContentInvalidState: 115,
89
+ ContentNavigationParentNotFound: 116,
90
+ ContentNavigationParentUpdateError: 117,
91
+ DeploymentPackageNotEditable: 118,
92
+ ContentValidationError: 119,
93
+ ContentPropertiesValidationError: 120,
94
+ ContentTypeNotFound: 121,
95
+ DeploymentPackageNotFound: 122,
96
+ ContentSearchInvalidParameters: 123,
97
+ ContentItemPropertyAggregationError: 124,
98
+ DeploymentPackageFileNotFound: 125,
99
+ ContentPerforceFileHistoryNotFound: 126,
100
+ ContentAssetZipCreationFailure: 127,
101
+ ContentAssetZipCreationBusy: 128,
102
+ ContentProjectNotFound: 129,
103
+ ContentFolderNotFound: 130,
104
+ ContentPackagesInconsistent: 131,
105
+ ContentPackagesInvalidState: 132,
106
+ ContentPackagesInconsistentType: 133,
107
+ ContentCannotDeletePackage: 134,
108
+ ContentLockedForChanges: 135,
109
+ ContentFileUploadFailed: 136,
110
+ ContentNotReviewed: 137,
111
+ ContentPermissionDenied: 138,
112
+ ContentInvalidExternalUrl: 139,
113
+ ContentExternalFileCannotBeImportedLocally: 140,
114
+ ContentTagSaveFailure: 141,
115
+ ContentPerforceUnmatchedFileError: 142,
116
+ ContentPerforceChangelistResultNotFound: 143,
117
+ ContentPerforceChangelistFileItemsNotFound: 144,
118
+ ContentPerforceInvalidRevisionError: 145,
119
+ ContentUnloadedSaveResult: 146,
120
+ ContentPropertyInvalidNumber: 147,
121
+ ContentPropertyInvalidUrl: 148,
122
+ ContentPropertyInvalidDate: 149,
123
+ ContentPropertyInvalidSet: 150,
124
+ ContentPropertyCannotDeserialize: 151,
125
+ ContentRegexValidationFailOnProperty: 152,
126
+ ContentMaxLengthFailOnProperty: 153,
127
+ ContentPropertyUnexpectedDeserializationError: 154,
128
+ ContentPropertyRequired: 155,
129
+ ContentCannotCreateFile: 156,
130
+ ContentInvalidMigrationFile: 157,
131
+ ContentMigrationAlteringProcessedItem: 158,
132
+ ContentPropertyDefinitionNotFound: 159,
133
+ ContentReviewDataChanged: 160,
134
+ ContentRollbackRevisionNotInPackage: 161,
135
+ ContentItemNotBasedOnLatestRevision: 162,
136
+ ContentUnauthorized: 163,
137
+ ContentCannotCreateDeploymentPackage: 164,
138
+ ContentUserNotFound: 165,
139
+ ContentLocalePermissionDenied: 166,
140
+ ContentInvalidLinkToInternalEnvironment: 167,
141
+ ContentInvalidBlacklistedContent: 168,
142
+ ContentMacroMalformedNoContentId: 169,
143
+ ContentMacroMalformedNoTemplateType: 170,
144
+ ContentIllegalBNetMembershipId: 171,
145
+ ContentLocaleDidNotMatchExpected: 172,
146
+ ContentBabelCallFailed: 173,
147
+ ContentEnglishPostLiveForbidden: 174,
148
+ ContentLocaleEditPermissionDenied: 175,
149
+ ContentStackUnknownError: 176,
150
+ ContentStackNotFound: 177,
151
+ ContentStackRateLimited: 178,
152
+ ContentStackTimeout: 179,
153
+ ContentStackServiceError: 180,
154
+ ContentStackDeserializationFailure: 181,
155
+ UserNonUniqueName: 200,
156
+ UserManualLinkingStepRequired: 201,
157
+ UserCreateUnknownSqlResult: 202,
158
+ UserCreateUnknownSqlException: 203,
159
+ UserMalformedMembershipId: 204,
160
+ UserCannotFindRequestedUser: 205,
161
+ UserCannotLoadAccountCredentialLinkInfo: 206,
162
+ UserInvalidMobileAppType: 207,
163
+ UserMissingMobilePairingInfo: 208,
164
+ UserCannotGenerateMobileKeyWhileUsingMobileCredential: 209,
165
+ UserGenerateMobileKeyExistingSlotCollision: 210,
166
+ UserDisplayNameMissingOrInvalid: 211,
167
+ UserCannotLoadAccountProfileData: 212,
168
+ UserCannotSaveUserProfileData: 213,
169
+ UserEmailMissingOrInvalid: 214,
170
+ UserTermsOfUseRequired: 215,
171
+ UserCannotCreateNewAccountWhileLoggedIn: 216,
172
+ UserCannotResolveCentralAccount: 217,
173
+ UserInvalidAvatar: 218,
174
+ UserMissingCreatedUserResult: 219,
175
+ UserCannotChangeUniqueNameYet: 220,
176
+ UserCannotChangeDisplayNameYet: 221,
177
+ UserCannotChangeEmail: 222,
178
+ UserUniqueNameMustStartWithLetter: 223,
179
+ UserNoLinkedAccountsSupportFriendListings: 224,
180
+ UserAcknowledgmentTableFull: 225,
181
+ UserCreationDestinyMembershipRequired: 226,
182
+ UserFriendsTokenNeedsRefresh: 227,
183
+ UserEmailValidationUnknown: 228,
184
+ UserEmailValidationLimit: 229,
185
+ TransactionEmailSendFailure: 230,
186
+ MailHookPermissionFailure: 231,
187
+ MailServiceRateLimit: 232,
188
+ UserEmailMustBeVerified: 233,
189
+ UserMustAllowCustomerServiceEmails: 234,
190
+ NonTransactionalEmailSendFailure: 235,
191
+ UnknownErrorSettingGlobalDisplayName: 236,
192
+ DuplicateGlobalDisplayName: 237,
193
+ ErrorRunningNameValidationChecks: 238,
194
+ ErrorDatabaseGlobalName: 239,
195
+ ErrorNoAvailableNameChanges: 240,
196
+ ErrorNameAlreadySetToInput: 241,
197
+ UserDisplayNameLessThanMinLength: 242,
198
+ UserDisplayNameGreaterThanMaxLength: 243,
199
+ UserDisplayNameContainsUnacceptableOrInvalidContent: 244,
200
+ EmailValidationOffline: 245,
201
+ EmailValidationFailOldCode: 246,
202
+ EmailValidationFailBadLink: 247,
203
+ EmailUnsubscribeFail: 248,
204
+ EmailUnsubscribeFailNew: 249,
205
+ MessagingUnknownError: 300,
206
+ MessagingSelfError: 301,
207
+ MessagingSendThrottle: 302,
208
+ MessagingNoBody: 303,
209
+ MessagingTooManyUsers: 304,
210
+ MessagingCanNotLeaveConversation: 305,
211
+ MessagingUnableToSend: 306,
212
+ MessagingDeletedUserForbidden: 307,
213
+ MessagingCannotDeleteExternalConversation: 308,
214
+ MessagingGroupChatDisabled: 309,
215
+ MessagingMustIncludeSelfInPrivateMessage: 310,
216
+ MessagingSenderIsBanned: 311,
217
+ MessagingGroupOptionalChatExceededMaximum: 312,
218
+ PrivateMessagingRequiresDestinyMembership: 313,
219
+ MessagingSendDailyThrottle: 314,
220
+ AddSurveyAnswersUnknownSqlException: 400,
221
+ ForumBodyCannotBeEmpty: 500,
222
+ ForumSubjectCannotBeEmptyOnTopicPost: 501,
223
+ ForumCannotLocateParentPost: 502,
224
+ ForumThreadLockedForReplies: 503,
225
+ ForumUnknownSqlResultDuringCreatePost: 504,
226
+ ForumUnknownTagCreationError: 505,
227
+ ForumUnknownSqlResultDuringTagItem: 506,
228
+ ForumUnknownExceptionCreatePost: 507,
229
+ ForumQuestionMustBeTopicPost: 508,
230
+ ForumExceptionDuringTagSearch: 509,
231
+ ForumExceptionDuringTopicRetrieval: 510,
232
+ ForumAliasedTagError: 511,
233
+ ForumCannotLocateThread: 512,
234
+ ForumUnknownExceptionEditPost: 513,
235
+ ForumCannotLocatePost: 514,
236
+ ForumUnknownExceptionGetOrCreateTags: 515,
237
+ ForumEditPermissionDenied: 516,
238
+ ForumUnknownSqlResultDuringTagIdRetrieval: 517,
239
+ ForumCannotGetRating: 518,
240
+ ForumUnknownExceptionGetRating: 519,
241
+ ForumRatingsAccessError: 520,
242
+ ForumRelatedPostAccessError: 521,
243
+ ForumLatestReplyAccessError: 522,
244
+ ForumUserStatusAccessError: 523,
245
+ ForumAuthorAccessError: 524,
246
+ ForumGroupAccessError: 525,
247
+ ForumUrlExpectedButMissing: 526,
248
+ ForumRepliesCannotBeEmpty: 527,
249
+ ForumRepliesCannotBeInDifferentGroups: 528,
250
+ ForumSubTopicCannotBeCreatedAtThisThreadLevel: 529,
251
+ ForumCannotCreateContentTopic: 530,
252
+ ForumTopicDoesNotExist: 531,
253
+ ForumContentCommentsNotAllowed: 532,
254
+ ForumUnknownSqlResultDuringEditPost: 533,
255
+ ForumUnknownSqlResultDuringGetPost: 534,
256
+ ForumPostValidationBadUrl: 535,
257
+ ForumBodyTooLong: 536,
258
+ ForumSubjectTooLong: 537,
259
+ ForumAnnouncementNotAllowed: 538,
260
+ ForumCannotShareOwnPost: 539,
261
+ ForumEditNoOp: 540,
262
+ ForumUnknownDatabaseErrorDuringGetPost: 541,
263
+ ForumExceeedMaximumRowLimit: 542,
264
+ ForumCannotSharePrivatePost: 543,
265
+ ForumCannotCrossPostBetweenGroups: 544,
266
+ ForumIncompatibleCategories: 555,
267
+ ForumCannotUseTheseCategoriesOnNonTopicPost: 556,
268
+ ForumCanOnlyDeleteTopics: 557,
269
+ ForumDeleteSqlException: 558,
270
+ ForumDeleteSqlUnknownResult: 559,
271
+ ForumTooManyTags: 560,
272
+ ForumCanOnlyRateTopics: 561,
273
+ ForumBannedPostsCannotBeEdited: 562,
274
+ ForumThreadRootIsBanned: 563,
275
+ ForumCannotUseOfficialTagCategoryAsTag: 564,
276
+ ForumAnswerCannotBeMadeOnCreatePost: 565,
277
+ ForumAnswerCannotBeMadeOnEditPost: 566,
278
+ ForumAnswerPostIdIsNotADirectReplyOfQuestion: 567,
279
+ ForumAnswerTopicIdIsNotAQuestion: 568,
280
+ ForumUnknownExceptionDuringMarkAnswer: 569,
281
+ ForumUnknownSqlResultDuringMarkAnswer: 570,
282
+ ForumCannotRateYourOwnPosts: 571,
283
+ ForumPollsMustBeTheFirstPostInTopic: 572,
284
+ ForumInvalidPollInput: 573,
285
+ ForumGroupAdminEditNonMember: 574,
286
+ ForumCannotEditModeratorEditedPost: 575,
287
+ ForumRequiresDestinyMembership: 576,
288
+ ForumUnexpectedError: 577,
289
+ ForumAgeLock: 578,
290
+ ForumMaxPages: 579,
291
+ ForumMaxPagesOldestFirst: 580,
292
+ ForumCannotApplyForumIdWithoutTags: 581,
293
+ ForumCannotApplyForumIdToNonTopics: 582,
294
+ ForumCannotDownvoteCommunityCreations: 583,
295
+ ForumTopicsMustHaveOfficialCategory: 584,
296
+ ForumRecruitmentTopicMalformed: 585,
297
+ ForumRecruitmentTopicNotFound: 586,
298
+ ForumRecruitmentTopicNoSlotsRemaining: 587,
299
+ ForumRecruitmentTopicKickBan: 588,
300
+ ForumRecruitmentTopicRequirementsNotMet: 589,
301
+ ForumRecruitmentTopicNoPlayers: 590,
302
+ ForumRecruitmentApproveFailMessageBan: 591,
303
+ ForumRecruitmentGlobalBan: 592,
304
+ ForumUserBannedFromThisTopic: 593,
305
+ ForumRecruitmentFireteamMembersOnly: 594,
306
+ ForumRequiresDestiny2Progress: 595,
307
+ ForumRequiresDestiny2EntitlementPurchase: 596,
308
+ GroupMembershipApplicationAlreadyResolved: 601,
309
+ GroupMembershipAlreadyApplied: 602,
310
+ GroupMembershipInsufficientPrivileges: 603,
311
+ GroupIdNotReturnedFromCreation: 604,
312
+ GroupSearchInvalidParameters: 605,
313
+ GroupMembershipPendingApplicationNotFound: 606,
314
+ GroupInvalidId: 607,
315
+ GroupInvalidMembershipId: 608,
316
+ GroupInvalidMembershipType: 609,
317
+ GroupMissingTags: 610,
318
+ GroupMembershipNotFound: 611,
319
+ GroupInvalidRating: 612,
320
+ GroupUserFollowingAccessError: 613,
321
+ GroupUserMembershipAccessError: 614,
322
+ GroupCreatorAccessError: 615,
323
+ GroupAdminAccessError: 616,
324
+ GroupPrivatePostNotViewable: 617,
325
+ GroupMembershipNotLoggedIn: 618,
326
+ GroupNotDeleted: 619,
327
+ GroupUnknownErrorUndeletingGroup: 620,
328
+ GroupDeleted: 621,
329
+ GroupNotFound: 622,
330
+ GroupMemberBanned: 623,
331
+ GroupMembershipClosed: 624,
332
+ GroupPrivatePostOverrideError: 625,
333
+ GroupNameTaken: 626,
334
+ GroupDeletionGracePeriodExpired: 627,
335
+ GroupCannotCheckBanStatus: 628,
336
+ GroupMaximumMembershipCountReached: 629,
337
+ NoDestinyAccountForClanPlatform: 630,
338
+ AlreadyRequestingMembershipForClanPlatform: 631,
339
+ AlreadyClanMemberOnPlatform: 632,
340
+ GroupJoinedCannotSetClanName: 633,
341
+ GroupLeftCannotClearClanName: 634,
342
+ GroupRelationshipRequestPending: 635,
343
+ GroupRelationshipRequestBlocked: 636,
344
+ GroupRelationshipRequestNotFound: 637,
345
+ GroupRelationshipBlockNotFound: 638,
346
+ GroupRelationshipNotFound: 639,
347
+ GroupAlreadyAllied: 641,
348
+ GroupAlreadyMember: 642,
349
+ GroupRelationshipAlreadyExists: 643,
350
+ InvalidGroupTypesForRelationshipRequest: 644,
351
+ GroupAtMaximumAlliances: 646,
352
+ GroupCannotSetClanOnlySettings: 647,
353
+ ClanCannotSetTwoDefaultPostTypes: 648,
354
+ GroupMemberInvalidMemberType: 649,
355
+ GroupInvalidPlatformType: 650,
356
+ GroupMemberInvalidSort: 651,
357
+ GroupInvalidResolveState: 652,
358
+ ClanAlreadyEnabledForPlatform: 653,
359
+ ClanNotEnabledForPlatform: 654,
360
+ ClanEnabledButCouldNotJoinNoAccount: 655,
361
+ ClanEnabledButCouldNotJoinAlreadyMember: 656,
362
+ ClanCannotJoinNoCredential: 657,
363
+ NoClanMembershipForPlatform: 658,
364
+ GroupToGroupFollowLimitReached: 659,
365
+ ChildGroupAlreadyInAlliance: 660,
366
+ OwnerGroupAlreadyInAlliance: 661,
367
+ AllianceOwnerCannotJoinAlliance: 662,
368
+ GroupNotInAlliance: 663,
369
+ ChildGroupCannotInviteToAlliance: 664,
370
+ GroupToGroupAlreadyFollowed: 665,
371
+ GroupToGroupNotFollowing: 666,
372
+ ClanMaximumMembershipReached: 667,
373
+ ClanNameNotValid: 668,
374
+ ClanNameNotValidError: 669,
375
+ AllianceOwnerNotDefined: 670,
376
+ AllianceChildNotDefined: 671,
377
+ ClanCultureIllegalCharacters: 672,
378
+ ClanTagIllegalCharacters: 673,
379
+ ClanRequiresInvitation: 674,
380
+ ClanMembershipClosed: 675,
381
+ ClanInviteAlreadyMember: 676,
382
+ GroupInviteAlreadyMember: 677,
383
+ GroupJoinApprovalRequired: 678,
384
+ ClanTagRequired: 679,
385
+ GroupNameCannotStartOrEndWithWhiteSpace: 680,
386
+ ClanCallsignCannotStartOrEndWithWhiteSpace: 681,
387
+ ClanMigrationFailed: 682,
388
+ ClanNotEnabledAlreadyMemberOfAnotherClan: 683,
389
+ GroupModerationNotPermittedOnNonMembers: 684,
390
+ ClanCreationInWorldServerFailed: 685,
391
+ ClanNotFound: 686,
392
+ ClanMembershipLevelDoesNotPermitThatAction: 687,
393
+ ClanMemberNotFound: 688,
394
+ ClanMissingMembershipApprovers: 689,
395
+ ClanInWrongStateForRequestedAction: 690,
396
+ ClanNameAlreadyUsed: 691,
397
+ ClanTooFewMembers: 692,
398
+ ClanInfoCannotBeWhitespace: 693,
399
+ GroupCultureThrottle: 694,
400
+ ClanTargetDisallowsInvites: 695,
401
+ ClanInvalidOperation: 696,
402
+ ClanFounderCannotLeaveWithoutAbdication: 697,
403
+ ClanNameReserved: 698,
404
+ ClanApplicantInClanSoNowInvited: 699,
405
+ ActivitiesUnknownException: 701,
406
+ ActivitiesParameterNull: 702,
407
+ ActivityCountsDiabled: 703,
408
+ ActivitySearchInvalidParameters: 704,
409
+ ActivityPermissionDenied: 705,
410
+ ShareAlreadyShared: 706,
411
+ ActivityLoggingDisabled: 707,
412
+ ClanRequiresExistingDestinyAccount: 750,
413
+ ClanNameRestricted: 751,
414
+ ClanCreationBan: 752,
415
+ ClanCreationTenureRequirementsNotMet: 753,
416
+ ClanFieldContainsReservedTerms: 754,
417
+ ClanFieldContainsInappropriateContent: 755,
418
+ ItemAlreadyFollowed: 801,
419
+ ItemNotFollowed: 802,
420
+ CannotFollowSelf: 803,
421
+ GroupFollowLimitExceeded: 804,
422
+ TagFollowLimitExceeded: 805,
423
+ UserFollowLimitExceeded: 806,
424
+ FollowUnsupportedEntityType: 807,
425
+ NoValidTagsInList: 900,
426
+ BelowMinimumSuggestionLength: 901,
427
+ CannotGetSuggestionsOnMultipleTagsSimultaneously: 902,
428
+ NotAValidPartialTag: 903,
429
+ TagSuggestionsUnknownSqlResult: 904,
430
+ TagsUnableToLoadPopularTagsFromDatabase: 905,
431
+ TagInvalid: 906,
432
+ TagNotFound: 907,
433
+ SingleTagExpected: 908,
434
+ TagsExceededMaximumPerItem: 909,
435
+ IgnoreInvalidParameters: 1000,
436
+ IgnoreSqlException: 1001,
437
+ IgnoreErrorRetrievingGroupPermissions: 1002,
438
+ IgnoreErrorInsufficientPermission: 1003,
439
+ IgnoreErrorRetrievingItem: 1004,
440
+ IgnoreCannotIgnoreSelf: 1005,
441
+ IgnoreIllegalType: 1006,
442
+ IgnoreNotFound: 1007,
443
+ IgnoreUserGloballyIgnored: 1008,
444
+ IgnoreUserIgnored: 1009,
445
+ TargetUserIgnored: 1010,
446
+ NotificationSettingInvalid: 1100,
447
+ PsnApiExpiredAccessToken: 1204,
448
+ PSNExForbidden: 1205,
449
+ PSNExSystemDisabled: 1218,
450
+ PsnApiErrorCodeUnknown: 1223,
451
+ PsnApiErrorWebException: 1224,
452
+ PsnApiBadRequest: 1225,
453
+ PsnApiAccessTokenRequired: 1226,
454
+ PsnApiInvalidAccessToken: 1227,
455
+ PsnApiBannedUser: 1229,
456
+ PsnApiAccountUpgradeRequired: 1230,
457
+ PsnApiServiceTemporarilyUnavailable: 1231,
458
+ PsnApiServerBusy: 1232,
459
+ PsnApiUnderMaintenance: 1233,
460
+ PsnApiProfileUserNotFound: 1234,
461
+ PsnApiProfilePrivacyRestriction: 1235,
462
+ PsnApiProfileUnderMaintenance: 1236,
463
+ PsnApiAccountAttributeMissing: 1237,
464
+ PsnApiNoPermission: 1238,
465
+ PsnApiTargetUserBlocked: 1239,
466
+ PsnApiJwksMissing: 1240,
467
+ PsnApiJwtMalformedHeader: 1241,
468
+ PsnApiJwtMalformedPayload: 1242,
469
+ XblExSystemDisabled: 1300,
470
+ XblExUnknownError: 1301,
471
+ XblApiErrorWebException: 1302,
472
+ XblStsTokenInvalid: 1303,
473
+ XblStsMissingToken: 1304,
474
+ XblStsExpiredToken: 1305,
475
+ XblAccessToTheSandboxDenied: 1306,
476
+ XblMsaResponseMissing: 1307,
477
+ XblMsaAccessTokenExpired: 1308,
478
+ XblMsaInvalidRequest: 1309,
479
+ XblMsaFriendsRequireSignIn: 1310,
480
+ XblUserActionRequired: 1311,
481
+ XblParentalControls: 1312,
482
+ XblDeveloperAccount: 1313,
483
+ XblUserTokenExpired: 1314,
484
+ XblUserTokenInvalid: 1315,
485
+ XblOffline: 1316,
486
+ XblUnknownErrorCode: 1317,
487
+ XblMsaInvalidGrant: 1318,
488
+ ReportNotYetResolved: 1400,
489
+ ReportOverturnDoesNotChangeDecision: 1401,
490
+ ReportNotFound: 1402,
491
+ ReportAlreadyReported: 1403,
492
+ ReportInvalidResolution: 1404,
493
+ ReportNotAssignedToYou: 1405,
494
+ LegacyGameStatsSystemDisabled: 1500,
495
+ LegacyGameStatsUnknownError: 1501,
496
+ LegacyGameStatsMalformedSneakerNetCode: 1502,
497
+ DestinyAccountAcquisitionFailure: 1600,
498
+ DestinyAccountNotFound: 1601,
499
+ DestinyBuildStatsDatabaseError: 1602,
500
+ DestinyCharacterStatsDatabaseError: 1603,
501
+ DestinyPvPStatsDatabaseError: 1604,
502
+ DestinyPvEStatsDatabaseError: 1605,
503
+ DestinyGrimoireStatsDatabaseError: 1606,
504
+ DestinyStatsParameterMembershipTypeParseError: 1607,
505
+ DestinyStatsParameterMembershipIdParseError: 1608,
506
+ DestinyStatsParameterRangeParseError: 1609,
507
+ DestinyStringItemHashNotFound: 1610,
508
+ DestinyStringSetNotFound: 1611,
509
+ DestinyContentLookupNotFoundForKey: 1612,
510
+ DestinyContentItemNotFound: 1613,
511
+ DestinyContentSectionNotFound: 1614,
512
+ DestinyContentPropertyNotFound: 1615,
513
+ DestinyContentConfigNotFound: 1616,
514
+ DestinyContentPropertyBucketValueNotFound: 1617,
515
+ DestinyUnexpectedError: 1618,
516
+ DestinyInvalidAction: 1619,
517
+ DestinyCharacterNotFound: 1620,
518
+ DestinyInvalidFlag: 1621,
519
+ DestinyInvalidRequest: 1622,
520
+ DestinyItemNotFound: 1623,
521
+ DestinyInvalidCustomizationChoices: 1624,
522
+ DestinyVendorItemNotFound: 1625,
523
+ DestinyInternalError: 1626,
524
+ DestinyVendorNotFound: 1627,
525
+ DestinyRecentActivitiesDatabaseError: 1628,
526
+ DestinyItemBucketNotFound: 1629,
527
+ DestinyInvalidMembershipType: 1630,
528
+ DestinyVersionIncompatibility: 1631,
529
+ DestinyItemAlreadyInInventory: 1632,
530
+ DestinyBucketNotFound: 1633,
531
+ DestinyCharacterNotInTower: 1634,
532
+ DestinyCharacterNotLoggedIn: 1635,
533
+ DestinyDefinitionsNotLoaded: 1636,
534
+ DestinyInventoryFull: 1637,
535
+ DestinyItemFailedLevelCheck: 1638,
536
+ DestinyItemFailedUnlockCheck: 1639,
537
+ DestinyItemUnequippable: 1640,
538
+ DestinyItemUniqueEquipRestricted: 1641,
539
+ DestinyNoRoomInDestination: 1642,
540
+ DestinyServiceFailure: 1643,
541
+ DestinyServiceRetired: 1644,
542
+ DestinyTransferFailed: 1645,
543
+ DestinyTransferNotFoundForSourceBucket: 1646,
544
+ DestinyUnexpectedResultInVendorTransferCheck: 1647,
545
+ DestinyUniquenessViolation: 1648,
546
+ DestinyErrorDeserializationFailure: 1649,
547
+ DestinyValidAccountTicketRequired: 1650,
548
+ DestinyShardRelayClientTimeout: 1651,
549
+ DestinyShardRelayProxyTimeout: 1652,
550
+ DestinyPGCRNotFound: 1653,
551
+ DestinyAccountMustBeOffline: 1654,
552
+ DestinyCanOnlyEquipInGame: 1655,
553
+ DestinyCannotPerformActionOnEquippedItem: 1656,
554
+ DestinyQuestAlreadyCompleted: 1657,
555
+ DestinyQuestAlreadyTracked: 1658,
556
+ DestinyTrackableQuestsFull: 1659,
557
+ DestinyItemNotTransferrable: 1660,
558
+ DestinyVendorPurchaseNotAllowed: 1661,
559
+ DestinyContentVersionMismatch: 1662,
560
+ DestinyItemActionForbidden: 1663,
561
+ DestinyRefundInvalid: 1664,
562
+ DestinyPrivacyRestriction: 1665,
563
+ DestinyActionInsufficientPrivileges: 1666,
564
+ DestinyInvalidClaimException: 1667,
565
+ DestinyLegacyPlatformRestricted: 1668,
566
+ DestinyLegacyPlatformInUse: 1669,
567
+ DestinyLegacyPlatformInaccessible: 1670,
568
+ DestinyCannotPerformActionAtThisLocation: 1671,
569
+ DestinyThrottledByGameServer: 1672,
570
+ DestinyItemNotTransferrableHasSideEffects: 1673,
571
+ DestinyItemLocked: 1674,
572
+ DestinyCannotAffordMaterialRequirements: 1675,
573
+ DestinyFailedPlugInsertionRules: 1676,
574
+ DestinySocketNotFound: 1677,
575
+ DestinySocketActionNotAllowed: 1678,
576
+ DestinySocketAlreadyHasPlug: 1679,
577
+ DestinyPlugItemNotAvailable: 1680,
578
+ DestinyCharacterLoggedInNotAllowed: 1681,
579
+ DestinyPublicAccountNotAccessible: 1682,
580
+ DestinyClaimsItemAlreadyClaimed: 1683,
581
+ DestinyClaimsNoInventorySpace: 1684,
582
+ DestinyClaimsRequiredLevelNotMet: 1685,
583
+ DestinyClaimsInvalidState: 1686,
584
+ DestinyNotEnoughRoomForMultipleRewards: 1687,
585
+ DestinyDirectBabelClientTimeout: 1688,
586
+ FbInvalidRequest: 1800,
587
+ FbRedirectMismatch: 1801,
588
+ FbAccessDenied: 1802,
589
+ FbUnsupportedResponseType: 1803,
590
+ FbInvalidScope: 1804,
591
+ FbUnsupportedGrantType: 1805,
592
+ FbInvalidGrant: 1806,
593
+ InvitationExpired: 1900,
594
+ InvitationUnknownType: 1901,
595
+ InvitationInvalidResponseStatus: 1902,
596
+ InvitationInvalidType: 1903,
597
+ InvitationAlreadyPending: 1904,
598
+ InvitationInsufficientPermission: 1905,
599
+ InvitationInvalidCode: 1906,
600
+ InvitationInvalidTargetState: 1907,
601
+ InvitationCannotBeReactivated: 1908,
602
+ InvitationNoRecipients: 1910,
603
+ InvitationGroupCannotSendToSelf: 1911,
604
+ InvitationTooManyRecipients: 1912,
605
+ InvitationInvalid: 1913,
606
+ InvitationNotFound: 1914,
607
+ TokenInvalid: 2000,
608
+ TokenBadFormat: 2001,
609
+ TokenAlreadyClaimed: 2002,
610
+ TokenAlreadyClaimedSelf: 2003,
611
+ TokenThrottling: 2004,
612
+ TokenUnknownRedemptionFailure: 2005,
613
+ TokenPurchaseClaimFailedAfterTokenClaimed: 2006,
614
+ TokenUserAlreadyOwnsOffer: 2007,
615
+ TokenInvalidOfferKey: 2008,
616
+ TokenEmailNotValidated: 2009,
617
+ TokenProvisioningBadVendorOrOffer: 2010,
618
+ TokenPurchaseHistoryUnknownError: 2011,
619
+ TokenThrottleStateUnknownError: 2012,
620
+ TokenUserAgeNotVerified: 2013,
621
+ TokenExceededOfferMaximum: 2014,
622
+ TokenNoAvailableUnlocks: 2015,
623
+ TokenMarketplaceInvalidPlatform: 2016,
624
+ TokenNoMarketplaceCodesFound: 2017,
625
+ TokenOfferNotAvailableForRedemption: 2018,
626
+ TokenUnlockPartialFailure: 2019,
627
+ TokenMarketplaceInvalidRegion: 2020,
628
+ TokenOfferExpired: 2021,
629
+ RAFExceededMaximumReferrals: 2022,
630
+ RAFDuplicateBond: 2023,
631
+ RAFNoValidVeteranDestinyMembershipsFound: 2024,
632
+ RAFNotAValidVeteranUser: 2025,
633
+ RAFCodeAlreadyClaimedOrNotFound: 2026,
634
+ RAFMismatchedDestinyMembershipType: 2027,
635
+ RAFUnableToAccessPurchaseHistory: 2028,
636
+ RAFUnableToCreateBond: 2029,
637
+ RAFUnableToFindBond: 2030,
638
+ RAFUnableToRemoveBond: 2031,
639
+ RAFCannotBondToSelf: 2032,
640
+ RAFInvalidPlatform: 2033,
641
+ RAFGenerateThrottled: 2034,
642
+ RAFUnableToCreateBondVersionMismatch: 2035,
643
+ RAFUnableToRemoveBondVersionMismatch: 2036,
644
+ RAFRedeemThrottled: 2037,
645
+ NoAvailableDiscountCode: 2038,
646
+ DiscountAlreadyClaimed: 2039,
647
+ DiscountClaimFailure: 2040,
648
+ DiscountConfigurationFailure: 2041,
649
+ DiscountGenerationFailure: 2042,
650
+ DiscountAlreadyExists: 2043,
651
+ TokenRequiresCredentialXuid: 2044,
652
+ TokenRequiresCredentialPsnid: 2045,
653
+ OfferRequired: 2046,
654
+ UnknownEververseHistoryError: 2047,
655
+ MissingEververseHistoryError: 2048,
656
+ BungieRewardEmailStateInvalid: 2049,
657
+ BungieRewardNotYetClaimable: 2050,
658
+ MissingOfferConfig: 2051,
659
+ RAFQuestEntitlementRequiresBnet: 2052,
660
+ RAFQuestEntitlementTransportFailure: 2053,
661
+ RAFQuestEntitlementUnknownFailure: 2054,
662
+ RAFVeteranRewardUnknownFailure: 2055,
663
+ RAFTooEarlyToCancelBond: 2056,
664
+ LoyaltyRewardAlreadyRedeemed: 2057,
665
+ UnclaimedLoyaltyRewardEntryNotFound: 2058,
666
+ PartnerOfferPartialFailure: 2059,
667
+ PartnerOfferAlreadyClaimed: 2060,
668
+ PartnerOfferSkuNotFound: 2061,
669
+ PartnerOfferSkuExpired: 2062,
670
+ PartnerOfferPermissionFailure: 2063,
671
+ PartnerOfferNoDestinyAccount: 2064,
672
+ PartnerOfferApplyDataNotFound: 2065,
673
+ ApiExceededMaxKeys: 2100,
674
+ ApiInvalidOrExpiredKey: 2101,
675
+ ApiKeyMissingFromRequest: 2102,
676
+ ApplicationDisabled: 2103,
677
+ ApplicationExceededMax: 2104,
678
+ ApplicationDisallowedByScope: 2105,
679
+ AuthorizationCodeInvalid: 2106,
680
+ OriginHeaderDoesNotMatchKey: 2107,
681
+ AccessNotPermittedByApplicationScope: 2108,
682
+ ApplicationNameIsTaken: 2109,
683
+ RefreshTokenNotYetValid: 2110,
684
+ AccessTokenHasExpired: 2111,
685
+ ApplicationTokenFormatNotValid: 2112,
686
+ ApplicationNotConfiguredForBungieAuth: 2113,
687
+ ApplicationNotConfiguredForOAuth: 2114,
688
+ OAuthAccessTokenExpired: 2115,
689
+ ApplicationTokenKeyIdDoesNotExist: 2116,
690
+ ProvidedTokenNotValidRefreshToken: 2117,
691
+ RefreshTokenExpired: 2118,
692
+ AuthorizationRecordInvalid: 2119,
693
+ TokenPreviouslyRevoked: 2120,
694
+ TokenInvalidMembership: 2121,
695
+ AuthorizationCodeStale: 2122,
696
+ AuthorizationRecordExpired: 2123,
697
+ AuthorizationRecordRevoked: 2124,
698
+ AuthorizationRecordInactiveApiKey: 2125,
699
+ AuthorizationRecordApiKeyMatching: 2126,
700
+ PartnershipInvalidType: 2200,
701
+ PartnershipValidationError: 2201,
702
+ PartnershipValidationTimeout: 2202,
703
+ PartnershipAccessFailure: 2203,
704
+ PartnershipAccountInvalid: 2204,
705
+ PartnershipGetAccountInfoFailure: 2205,
706
+ PartnershipDisabled: 2206,
707
+ PartnershipAlreadyExists: 2207,
708
+ CommunityStreamingUnavailable: 2300,
709
+ TwitchNotLinked: 2500,
710
+ TwitchAccountNotFound: 2501,
711
+ TwitchCouldNotLoadDestinyInfo: 2502,
712
+ TwitchCouldNotRegisterUser: 2503,
713
+ TwitchCouldNotUnregisterUser: 2504,
714
+ TwitchRequiresRelinking: 2505,
715
+ TwitchNoPlatformChosen: 2506,
716
+ TwitchDropHistoryPermissionFailure: 2507,
717
+ TwitchDropsRepairPartialFailure: 2508,
718
+ TwitchNotAuthorized: 2509,
719
+ TwitchUnknownAuthorizationFailure: 2510,
720
+ TrendingCategoryNotFound: 2600,
721
+ TrendingEntryTypeNotSupported: 2601,
722
+ ReportOffenderNotInPgcr: 2700,
723
+ ReportRequestorNotInPgcr: 2701,
724
+ ReportSubmissionFailed: 2702,
725
+ ReportCannotReportSelf: 2703,
726
+ AwaTypeDisabled: 2800,
727
+ AwaTooManyPendingRequests: 2801,
728
+ AwaTheFeatureRequiresARegisteredDevice: 2802,
729
+ AwaRequestWasUnansweredForTooLong: 2803,
730
+ AwaWriteRequestMissingOrInvalidToken: 2804,
731
+ AwaWriteRequestTokenExpired: 2805,
732
+ AwaWriteRequestTokenUsageLimitReached: 2806,
733
+ SteamWebApiError: 2900,
734
+ SteamWebNullResponseError: 2901,
735
+ SteamAccountRequired: 2902,
736
+ SteamNotAuthorized: 2903,
737
+ ClanFireteamNotFound: 3000,
738
+ ClanFireteamAddNoAlternatesForImmediate: 3001,
739
+ ClanFireteamFull: 3002,
740
+ ClanFireteamAltFull: 3003,
741
+ ClanFireteamBlocked: 3004,
742
+ ClanFireteamPlayerEntryNotFound: 3005,
743
+ ClanFireteamPermissions: 3006,
744
+ ClanFireteamInvalidPlatform: 3007,
745
+ ClanFireteamCannotAdjustSlotCount: 3008,
746
+ ClanFireteamInvalidPlayerPlatform: 3009,
747
+ ClanFireteamNotReadyForInvitesNotEnoughPlayers: 3010,
748
+ ClanFireteamGameInvitesNotSupportForPlatform: 3011,
749
+ ClanFireteamPlatformInvitePreqFailure: 3012,
750
+ ClanFireteamInvalidAuthContext: 3013,
751
+ ClanFireteamInvalidAuthProviderPsn: 3014,
752
+ ClanFireteamPs4SessionFull: 3015,
753
+ ClanFireteamInvalidAuthToken: 3016,
754
+ ClanFireteamScheduledFireteamsDisabled: 3017,
755
+ ClanFireteamNotReadyForInvitesNotScheduledYet: 3018,
756
+ ClanFireteamNotReadyForInvitesClosed: 3019,
757
+ ClanFireteamScheduledFireteamsRequireAdminPermissions: 3020,
758
+ ClanFireteamNonPublicMustHaveClan: 3021,
759
+ ClanFireteamPublicCreationRestriction: 3022,
760
+ ClanFireteamAlreadyJoined: 3023,
761
+ ClanFireteamScheduledFireteamsRange: 3024,
762
+ ClanFireteamPublicCreationRestrictionExtended: 3025,
763
+ ClanFireteamExpired: 3026,
764
+ ClanFireteamInvalidAuthProvider: 3027,
765
+ ClanFireteamInvalidAuthProviderXuid: 3028,
766
+ ClanFireteamThrottle: 3029,
767
+ ClanFireteamTooManyOpenScheduledFireteams: 3030,
768
+ ClanFireteamCannotReopenScheduledFireteams: 3031,
769
+ ClanFireteamJoinNoAccountSpecified: 3032,
770
+ ClanFireteamMinDestiny2ProgressForCreation: 3033,
771
+ ClanFireteamMinDestiny2ProgressForJoin: 3034,
772
+ ClanFireteamSMSOrPurchaseRequiredCreate: 3035,
773
+ ClanFireteamPurchaseRequiredCreate: 3036,
774
+ ClanFireteamSMSOrPurchaseRequiredJoin: 3037,
775
+ ClanFireteamPurchaseRequiredJoin: 3038,
776
+ FireteamFinderInvalidMembershipType: 3100,
777
+ FireteamFinderInvalidMembershipId: 3101,
778
+ FireteamFinderInvalidCharacterId: 3102,
779
+ FireteamFinderInvalidListingOptions: 3103,
780
+ FireteamFinderInvalidRequestData: 3104,
781
+ FireteamFinderListingApplicationFailed: 3105,
782
+ FireteamFinderListingAutoJoinFailed: 3106,
783
+ FireteamFinderPlayerApplicationsParsingFailed: 3107,
784
+ FireteamFinderJoinLobbyHostFailed: 3108,
785
+ FireteamFinderPlayerNotInGame: 3109,
786
+ FireteamFinderActivationFailed: 3110,
787
+ FireteamFinderApplicationNotFound: 3111,
788
+ FireteamFinderUserAlreadyAppliedToListing: 3112,
789
+ FireteamFinderApplicationClosedForUpdates: 3113,
790
+ FireteamFinderListingAtMaxOpenApplicationsLimit: 3114,
791
+ FireteamFinderUserNotInApplication: 3115,
792
+ FireteamFinderApplicationUserAlreadyListingOwner: 3116,
793
+ FireteamFinderOfferNotFound: 3117,
794
+ FireteamFinderOfferClosedForUpdates: 3118,
795
+ FireteamFinderOfferUserNotTarget: 3119,
796
+ FireteamFinderLobbyNotFound: 3120,
797
+ FireteamFinderListingNotFound: 3121,
798
+ FireteamFinderLobbyFull: 3122,
799
+ FireteamFinderUserNotListingOwner: 3123,
800
+ FireteamFinderUserNotLobbyOwner: 3124,
801
+ FireteamFinderLobbyClosedForUpdates: 3125,
802
+ FireteamFinderUserNotInLobby: 3126,
803
+ FireteamFinderDisabledSettingsValue: 3127,
804
+ FireteamFinderOwnerInActiveLobby: 3128,
805
+ FireteamFinderApplicationClosedToOfflinePlayers: 3129,
806
+ FireteamFinderUserNotApplicationOwner: 3130,
807
+ FireteamFinderInviteValidationFailed: 3131,
808
+ FireteamFinderOwnerNotInGame: 3132,
809
+ FireteamFinderPlayerAtMaxLobbyLimit: 3133,
810
+ FireteamFinderLobbyTooFarInTheFuture: 3134,
811
+ FireteamFinderApplicantNotInGame: 3135,
812
+ FireteamFinderResponseUndefined: 3150,
813
+ FireteamFinderResponseMoved: 3151,
814
+ FireteamFinderResponseLoggingIn: 3152,
815
+ FireteamFinderResponseBadRequest: 3153,
816
+ FireteamFinderResponseUnauthorized: 3154,
817
+ FireteamFinderResponseForbidden: 3155,
818
+ FireteamFinderResponseNotFound: 3156,
819
+ FireteamFinderInternalServerError: 3157,
820
+ FireteamFinderServiceUnavailable: 3158,
821
+ FireteamFinderInternalServerErrorNonFatal: 3159,
822
+ CrossSaveOverriddenAccountNotFound: 3200,
823
+ CrossSaveTooManyOverriddenPlatforms: 3201,
824
+ CrossSaveNoOverriddenPlatforms: 3202,
825
+ CrossSavePrimaryAccountNotFound: 3203,
826
+ CrossSaveRequestInvalid: 3204,
827
+ CrossSaveBungieAccountValidationFailure: 3206,
828
+ CrossSaveOverriddenPlatformNotAllowed: 3207,
829
+ CrossSaveThresholdExceeded: 3208,
830
+ CrossSaveIncompatibleMembershipType: 3209,
831
+ CrossSaveCouldNotFindLinkedAccountForMembershipType: 3210,
832
+ CrossSaveCouldNotCreateDestinyProfileForMembershipType: 3211,
833
+ CrossSaveErrorCreatingDestinyProfileForMembershipType: 3212,
834
+ CrossSaveCannotOverrideSelf: 3213,
835
+ CrossSaveRecentSilverPurchase: 3214,
836
+ CrossSaveSilverBalanceNegative: 3215,
837
+ CrossSaveAccountNotAuthenticated: 3216,
838
+ ErrorOneAccountAlreadyActive: 3217,
839
+ ErrorOneAccountDestinyRestriction: 3218,
840
+ CrossSaveMustMigrateToSteam: 3219,
841
+ CrossSaveSteamAlreadyPaired: 3220,
842
+ CrossSaveCannotPairJustSteamAndBlizzard: 3221,
843
+ CrossSaveCannotPairSteamAloneBeforeShadowkeep: 3222,
844
+ AuthVerificationNotLinkedToAccount: 3300,
845
+ PCMigrationMissingBlizzard: 3400,
846
+ PCMigrationMissingSteam: 3401,
847
+ PCMigrationInvalidBlizzard: 3402,
848
+ PCMigrationInvalidSteam: 3403,
849
+ PCMigrationUnknownFailure: 3404,
850
+ PCMigrationUnknownException: 3405,
851
+ PCMigrationNotLinked: 3406,
852
+ PCMigrationAccountsAlreadyUsed: 3407,
853
+ PCMigrationStepFailed: 3408,
854
+ PCMigrationInvalidBlizzardCrossSaveState: 3409,
855
+ PCMigrationDestinationBanned: 3410,
856
+ PCMigrationDestinyFailure: 3411,
857
+ PCMigrationSilverTransferFailed: 3412,
858
+ PCMigrationEntitlementTransferFailed: 3413,
859
+ PCMigrationCannotStompClanFounder: 3414,
860
+ UnsupportedBrowser: 3500,
861
+ StadiaAccountRequired: 3600,
862
+ ErrorPhoneValidationTooManyUses: 3702,
863
+ ErrorPhoneValidationNoAssociatedPhone: 3703,
864
+ ErrorPhoneValidationCodeInvalid: 3705,
865
+ ErrorPhoneValidationBanned: 3706,
866
+ ErrorPhoneValidationCodeTooRecentlySent: 3707,
867
+ ErrorPhoneValidationCodeExpired: 3708,
868
+ ErrorPhoneValidationInvalidNumberType: 3709,
869
+ ErrorPhoneValidationCodeTooRecentlyChecked: 3710,
870
+ ErrorPhoneValidationRecentlyPlayedDestiny2AccountRequired: 3711,
871
+ ApplePushErrorUnknown: 3800,
872
+ ApplePushErrorNull: 3801,
873
+ ApplePushErrorTimeout: 3802,
874
+ ApplePushBadRequest: 3803,
875
+ ApplePushFailedAuth: 3804,
876
+ ApplePushThrottled: 3805,
877
+ ApplePushServiceUnavailable: 3806,
878
+ NotAnImageOrVideo: 3807,
879
+ ErrorBungieFriendsBlockFailed: 3900,
880
+ ErrorBungieFriendsAutoReject: 3901,
881
+ ErrorBungieFriendsNoRequestFound: 3902,
882
+ ErrorBungieFriendsAlreadyFriends: 3903,
883
+ ErrorBungieFriendsUnableToRemoveRequest: 3904,
884
+ ErrorBungieFriendsUnableToRemove: 3905,
885
+ ErrorBungieFriendsIdenticalSourceTarget: 3906,
886
+ ErrorBungieFriendsSelf: 3907,
887
+ ErrorBungieBlockSelf: 3908,
888
+ ErrorBungieFriendsListFull: 3910,
889
+ ErrorBungieBlockListFull: 3911,
890
+ ErrorBungieFriendNotFound: 3912,
891
+ ErrorBungieFriendInvalidMembershipType: 3913,
892
+ ErrorEgsUnknown: 4000,
893
+ ErrorEgsBadRequest: 4001,
894
+ ErrorEgsNotAuthorized: 4002,
895
+ ErrorEgsForbidden: 4003,
896
+ ErrorEgsAccountNotFound: 4004,
897
+ ErrorEgsWebException: 4005,
898
+ ErrorEgsUnavailable: 4006,
899
+ ErrorEgsJwksMissing: 4007,
900
+ ErrorEgsJwtMalformedHeader: 4008,
901
+ ErrorEgsJwtMalformedPayload: 4009,
902
+ MarathonInternalError: 5000,
903
+ MarathonBabelConnectionTimeout: 5001,
904
+ MarathonServiceFailure: 5002,
905
+ MarathonInvalidRequest: 5003,
906
+ MarathonUnexpectedError: 5004,
907
+ MarathonAccountNotFound: 5005,
908
+ MarathonThrottledByGameServer: 5006,
909
+ MarathonErrorDeserializationFailure: 5007
910
+ };
911
+ export var BungieMembershipType = {
912
+ None: 0,
913
+ TigerXbox: 1,
914
+ TigerPsn: 2,
915
+ TigerSteam: 3,
916
+ TigerBlizzard: 4,
917
+ TigerStadia: 5,
918
+ TigerEgs: 6,
919
+ TigerDemon: 10,
920
+ GoliathGame: 20,
921
+ BungieNext: 254,
922
+ All: -1
923
+ };