wenum 1.94.0 → 2.1.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.
package/package.json CHANGED
@@ -1,19 +1,24 @@
1
1
  {
2
2
  "name": "wenum",
3
- "version": "1.94.0",
4
- "main": "dist/index.js",
3
+ "version": "2.1.0",
4
+ "main": "dist/index.cjs",
5
5
  "module": "dist/index.mjs",
6
- "types": "dist/index.d.ts",
6
+ "types": "dist/index.d.cts",
7
7
  "exports": {
8
8
  ".": {
9
- "import": "./dist/index.mjs",
10
- "require": "./dist/index.js",
11
- "types": "./dist/index.d.ts"
9
+ "import": {
10
+ "types": "./dist/index.d.mts",
11
+ "default": "./dist/index.mjs"
12
+ },
13
+ "require": {
14
+ "types": "./dist/index.d.cts",
15
+ "default": "./dist/index.cjs"
16
+ }
12
17
  }
13
18
  },
14
19
  "scripts": {
15
- "build": "tsup src/index.ts --dts --format cjs,esm",
16
- "dev": "tsup src/index.ts --watch",
20
+ "build": "tsdown src/index.ts --dts --format cjs,esm",
21
+ "dev": "tsdown src/index.ts --watch",
17
22
  "deploy": "npm run build && npm publish",
18
23
  "test": "jest"
19
24
  },
@@ -27,7 +32,7 @@
27
32
  "eslint-config-prettier": "^10.1.8",
28
33
  "jest": "^29.7.0",
29
34
  "prettier": "^3.5.3",
30
- "tsup": "^8.5.0",
31
- "typescript": "^5.8.3"
35
+ "tsdown": "^0.22.7",
36
+ "typescript": "^7.0.2"
32
37
  }
33
38
  }
package/src/index.ts CHANGED
@@ -8,4 +8,5 @@ export * from './common';
8
8
  export * from './notification';
9
9
  export * from './meta';
10
10
  export * from './reaction';
11
- export * from './r2';
11
+ export * from './r2';
12
+ export * from './userViolation';
@@ -0,0 +1,25 @@
1
+ export type UserViolationType = 'spam' | 'harassment' | 'hate_speech' | 'nudity' | 'violence' | 'false_info' | 'other';
2
+
3
+ export const USER_VIOLATION_OPTIONS: { key: UserViolationType; label: string }[] = [{
4
+ key: 'spam',
5
+ label: 'Spam',
6
+ }, {
7
+ key: 'harassment',
8
+ label: 'Harassment or bullying',
9
+ }, {
10
+ key: 'hate_speech',
11
+ label: 'Hate speech',
12
+ }, {
13
+ key: 'nudity',
14
+ label: 'Nudity or sexual content',
15
+ }, {
16
+ key: 'violence',
17
+ label: 'Violence or dangerous content',
18
+ }, {
19
+ key: 'false_info',
20
+ label: 'False information',
21
+ }, {
22
+ key: 'other',
23
+ label: 'Other',
24
+ }] as const;
25
+
package/tsconfig.json CHANGED
@@ -28,8 +28,7 @@
28
28
  /* Modules */
29
29
  "module": "commonjs", /* Specify what module code is generated. */
30
30
  // "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
31
- "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
32
- // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
31
+ "paths": { "*": ["./*"] }, /* Specify a set of entries that re-map imports to additional lookup locations. */
33
32
  // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
34
33
  // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
35
34
  // "types": [], /* Specify type package names to be included without being referenced in a source file. */
package/dist/index.js DELETED
@@ -1,537 +0,0 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
-
20
- // src/index.ts
21
- var index_exports = {};
22
- __export(index_exports, {
23
- ALL_CARDGAMES_INTERESTS: () => ALL_CARDGAMES_INTERESTS,
24
- ALL_INTEREST_CATEGORIES: () => ALL_INTEREST_CATEGORIES,
25
- ALL_LEISURE_INTERESTS: () => ALL_LEISURE_INTERESTS,
26
- ALL_MUSIC_INTERESTS: () => ALL_MUSIC_INTERESTS,
27
- ALL_PETS_INTERESTS: () => ALL_PETS_INTERESTS,
28
- ALL_SPORTS_INTERESTS: () => ALL_SPORTS_INTERESTS,
29
- ALL_TRAVEL_INTERESTS: () => ALL_TRAVEL_INTERESTS,
30
- AdminAccountStatus: () => AdminAccountStatus,
31
- AttachmentType: () => AttachmentType,
32
- AttendanceStatus: () => AttendanceStatus,
33
- BasketballPosition: () => BasketballPosition,
34
- COLLECTION_ATTRIBUTE_LABEL: () => COLLECTION_ATTRIBUTE_LABEL,
35
- COLLECTION_PETS_ATTRIBUTE_LABEL: () => COLLECTION_PETS_ATTRIBUTE_LABEL,
36
- COMMON_ATTRIBUTE_LABEL: () => COMMON_ATTRIBUTE_LABEL,
37
- ChallengeStatus: () => ChallengeStatus,
38
- FollowingStatus: () => FollowingStatus,
39
- INTERESTS_BY_CATEGORY: () => INTERESTS_BY_CATEGORY,
40
- PID_LENGTH: () => PID_LENGTH,
41
- PID_PREFIX_LENGTH: () => PID_PREFIX_LENGTH,
42
- ReactionType: () => ReactionType,
43
- UOI_ATTRIBUTE_LABEL: () => UOI_ATTRIBUTE_LABEL,
44
- UOI_SPORTS_ATTRIBUTE_LABEL: () => UOI_SPORTS_ATTRIBUTE_LABEL,
45
- UOI_SPORTS_BASKETBALL_ATTRIBUTE_LABEL: () => UOI_SPORTS_BASKETBALL_ATTRIBUTE_LABEL,
46
- UOI_SPORTS_TENNIS_ATTRIBUTE_LABEL: () => UOI_SPORTS_TENNIS_ATTRIBUTE_LABEL,
47
- ZeroCollectionMeta: () => ZeroCollectionMeta,
48
- ZeroGameMeta: () => ZeroGameMeta,
49
- ZeroMarketOption: () => ZeroMarketOption,
50
- getAvatarR2CdnUrl: () => getAvatarR2CdnUrl,
51
- getAvatarR2FolderByEntityType: () => getAvatarR2FolderByEntityType,
52
- getCollectionAttributeLabel: () => getCollectionAttributeLabel,
53
- getCommonAttributeLabel: () => getCommonAttributeLabel,
54
- getEntityTypeByPID: () => getEntityTypeByPID,
55
- getNearbyIndex: () => getNearbyIndex,
56
- getPIDPrefixByEntityType: () => getPIDPrefixByEntityType,
57
- getPIDPrefixByProfileType: () => getPIDPrefixByProfileType,
58
- getPageR2CdnUrl: () => getPageR2CdnUrl,
59
- getProfileTypeByPID: () => getProfileTypeByPID,
60
- getSubjectR2CdnUrl: () => getSubjectR2CdnUrl,
61
- getUoiAttributeLabel: () => getUoiAttributeLabel,
62
- isGamePID: () => isGamePID,
63
- isLeaderboardPID: () => isLeaderboardPID,
64
- isTeamPID: () => isTeamPID,
65
- isUoiPID: () => isUoiPID
66
- });
67
- module.exports = __toCommonJS(index_exports);
68
-
69
- // src/page/profile/profile.ts
70
- var ChallengeStatus = /* @__PURE__ */ ((ChallengeStatus2) => {
71
- ChallengeStatus2[ChallengeStatus2["None"] = 0] = "None";
72
- ChallengeStatus2[ChallengeStatus2["Open"] = 1] = "Open";
73
- ChallengeStatus2[ChallengeStatus2["Closed"] = 2] = "Closed";
74
- return ChallengeStatus2;
75
- })(ChallengeStatus || {});
76
-
77
- // src/page/profile/market/type/index.ts
78
- var ZeroMarketOption = {
79
- label: "",
80
- marketType: ""
81
- };
82
-
83
- // src/page/profile/event.ts
84
- var AttendanceStatus = /* @__PURE__ */ ((AttendanceStatus2) => {
85
- AttendanceStatus2[AttendanceStatus2["None"] = 0] = "None";
86
- AttendanceStatus2[AttendanceStatus2["Pending"] = 1] = "Pending";
87
- AttendanceStatus2[AttendanceStatus2["OnTime"] = 2] = "OnTime";
88
- AttendanceStatus2[AttendanceStatus2["Late"] = 3] = "Late";
89
- AttendanceStatus2[AttendanceStatus2["CheckedIn"] = 4] = "CheckedIn";
90
- AttendanceStatus2[AttendanceStatus2["Left"] = 5] = "Left";
91
- return AttendanceStatus2;
92
- })(AttendanceStatus || {});
93
-
94
- // src/page/profile/game/index.ts
95
- var ZeroGameMeta = {
96
- gameType: "other",
97
- label: ""
98
- };
99
-
100
- // src/page/pid.ts
101
- var PID_LENGTH = 9;
102
- var PID_PREFIX_LENGTH = 3;
103
- var PID_ALPHANUMERIC_REGEX = /^[A-Za-z0-9]+$/;
104
- var isValidPID = (pid) => {
105
- if (pid.length !== PID_LENGTH) {
106
- return false;
107
- }
108
- return PID_ALPHANUMERIC_REGEX.test(pid);
109
- };
110
- var getPIDPrefix = (pid) => {
111
- if (!isValidPID(pid)) {
112
- return "";
113
- }
114
- return pid.slice(0, PID_PREFIX_LENGTH);
115
- };
116
- function getProfileTypeByPID(pid) {
117
- const prefix = getPIDPrefix(pid);
118
- switch (prefix) {
119
- case "usr":
120
- return "user";
121
- case "uoi":
122
- return "uoi";
123
- case "tms":
124
- return "team";
125
- case "arn":
126
- return "arena";
127
- case "evt":
128
- return "event";
129
- case "org":
130
- return "organization";
131
- case "lbd":
132
- return "leaderboard";
133
- case "gme":
134
- return "game";
135
- case "mkt":
136
- return "market";
137
- default:
138
- return "none";
139
- }
140
- }
141
- function getEntityTypeByPID(pid) {
142
- const prefix = getPIDPrefix(pid);
143
- switch (prefix) {
144
- case "lbd":
145
- return "leaderboard";
146
- case "tms":
147
- return "team";
148
- case "col":
149
- return "collection";
150
- case "uoi":
151
- return "uoi";
152
- default:
153
- return void 0;
154
- }
155
- }
156
- var getPIDPrefixByProfileType = (profileType) => {
157
- switch (profileType) {
158
- case "user":
159
- return "usr";
160
- case "uoi":
161
- return "uoi";
162
- case "team":
163
- return "tms";
164
- case "arena":
165
- return "arn";
166
- case "event":
167
- return "evt";
168
- case "organization":
169
- return "org";
170
- case "leaderboard":
171
- return "lbd";
172
- case "game":
173
- return "gme";
174
- default:
175
- return "";
176
- }
177
- };
178
- function isTeamPID(pid) {
179
- return getPIDPrefix(pid) === "tms";
180
- }
181
- function isUoiPID(pid) {
182
- return getPIDPrefix(pid) === "uoi";
183
- }
184
- function isGamePID(pid) {
185
- return getPIDPrefix(pid) === "gme";
186
- }
187
- function isLeaderboardPID(pid) {
188
- return getPIDPrefix(pid) === "lbd";
189
- }
190
-
191
- // src/page/collection/other.ts
192
- var ZeroCollectionMeta = {
193
- collectionType: "zzzother",
194
- label: ""
195
- };
196
-
197
- // src/page/nearby.ts
198
- var getNearbyIndex = (h3Cell, interestID) => `${h3Cell}_${interestID}`;
199
-
200
- // src/page/attachment.ts
201
- var AttachmentType = /* @__PURE__ */ ((AttachmentType2) => {
202
- AttachmentType2[AttachmentType2["None"] = 0] = "None";
203
- AttachmentType2[AttachmentType2["Image"] = 1] = "Image";
204
- AttachmentType2[AttachmentType2["Video"] = 2] = "Video";
205
- AttachmentType2[AttachmentType2["Poll"] = 4] = "Poll";
206
- return AttachmentType2;
207
- })(AttachmentType || {});
208
-
209
- // src/page/entity.ts
210
- function getPIDPrefixByEntityType(entityType) {
211
- switch (entityType) {
212
- case "uoi":
213
- return "uoi";
214
- case "team":
215
- return "tms";
216
- case "leaderboard":
217
- return "lbd";
218
- case "collection":
219
- return "col";
220
- default:
221
- return "";
222
- }
223
- }
224
-
225
- // src/auth.ts
226
- var AdminAccountStatus = /* @__PURE__ */ ((AdminAccountStatus2) => {
227
- AdminAccountStatus2[AdminAccountStatus2["None"] = 0] = "None";
228
- AdminAccountStatus2[AdminAccountStatus2["Active"] = 1] = "Active";
229
- AdminAccountStatus2[AdminAccountStatus2["Inactive"] = 2] = "Inactive";
230
- return AdminAccountStatus2;
231
- })(AdminAccountStatus || {});
232
-
233
- // src/connection.ts
234
- var FollowingStatus = /* @__PURE__ */ ((FollowingStatus2) => {
235
- FollowingStatus2[FollowingStatus2["None"] = 0] = "None";
236
- FollowingStatus2[FollowingStatus2["Pending"] = 1] = "Pending";
237
- FollowingStatus2[FollowingStatus2["Approved"] = 2] = "Approved";
238
- FollowingStatus2[FollowingStatus2["Blocked"] = 3] = "Blocked";
239
- FollowingStatus2[FollowingStatus2["Withdrawn"] = 4] = "Withdrawn";
240
- FollowingStatus2[FollowingStatus2["Unfollowed"] = 5] = "Unfollowed";
241
- return FollowingStatus2;
242
- })(FollowingStatus || {});
243
-
244
- // src/attribute/uoi/sports/basketball.ts
245
- var BasketballPosition = /* @__PURE__ */ ((BasketballPosition2) => {
246
- BasketballPosition2[BasketballPosition2["None"] = 0] = "None";
247
- BasketballPosition2[BasketballPosition2["SG"] = 1] = "SG";
248
- BasketballPosition2[BasketballPosition2["PG"] = 2] = "PG";
249
- BasketballPosition2[BasketballPosition2["C"] = 4] = "C";
250
- BasketballPosition2[BasketballPosition2["SF"] = 8] = "SF";
251
- BasketballPosition2[BasketballPosition2["PF"] = 16] = "PF";
252
- return BasketballPosition2;
253
- })(BasketballPosition || {});
254
-
255
- // src/interest/category.ts
256
- var ALL_INTEREST_CATEGORIES = [
257
- "1_sports",
258
- "2_pets",
259
- "3_cardgames",
260
- "4_music",
261
- "5_travel",
262
- "6_leisure"
263
- ];
264
-
265
- // src/interest/interestByCategory/cardgames.ts
266
- var ALL_CARDGAMES_INTERESTS = [
267
- "texasholdem",
268
- "omaha",
269
- "blackjack"
270
- ];
271
-
272
- // src/interest/interestByCategory/music.ts
273
- var ALL_MUSIC_INTERESTS = [
274
- "singing",
275
- "guitar",
276
- "piano",
277
- "violin",
278
- "cello",
279
- "bass",
280
- "drum",
281
- "saxophone",
282
- "flute",
283
- "harp",
284
- "keytar",
285
- "trombone",
286
- "tuba",
287
- "clarinet"
288
- ];
289
-
290
- // src/interest/interestByCategory/pets.ts
291
- var ALL_PETS_INTERESTS = [
292
- "dog",
293
- "cat"
294
- ];
295
-
296
- // src/interest/interestByCategory/sports.ts
297
- var ALL_SPORTS_INTERESTS = [
298
- "tennis",
299
- "pickleball",
300
- "basketball",
301
- "golf",
302
- "hiking",
303
- "running",
304
- "gym",
305
- "baseball",
306
- "biking",
307
- "yoga",
308
- "tabletennis",
309
- "football",
310
- "soccer",
311
- "badminton",
312
- "skiing",
313
- "surfing",
314
- "swimming",
315
- "hockey"
316
- ];
317
-
318
- // src/interest/interestByCategory/travel.ts
319
- var ALL_TRAVEL_INTERESTS = [
320
- "landmark",
321
- "nationalpark",
322
- "beach",
323
- "museum",
324
- "garden",
325
- "zoo",
326
- "food",
327
- "drinks",
328
- "entertainment",
329
- "cruise",
330
- "culture",
331
- "heritage",
332
- "island",
333
- "lake",
334
- "river",
335
- "waterfall",
336
- "cave",
337
- "desert",
338
- "mountain",
339
- "forest",
340
- "wellness",
341
- "wildlife",
342
- "technology"
343
- ];
344
-
345
- // src/interest/interestByCategory/leisure.ts
346
- var ALL_LEISURE_INTERESTS = [
347
- "walking",
348
- "movie",
349
- "concert",
350
- "dining",
351
- "camping",
352
- "shopping",
353
- "picnic",
354
- "show"
355
- ];
356
-
357
- // src/interest/interestByCategory/interest.ts
358
- var INTERESTS_BY_CATEGORY = {
359
- "1_sports": ALL_SPORTS_INTERESTS,
360
- "2_pets": ALL_PETS_INTERESTS,
361
- "3_cardgames": ALL_CARDGAMES_INTERESTS,
362
- "4_music": ALL_MUSIC_INTERESTS,
363
- "5_travel": ALL_TRAVEL_INTERESTS,
364
- "6_leisure": ALL_LEISURE_INTERESTS
365
- };
366
-
367
- // src/meta/common/label.ts
368
- var COMMON_ATTRIBUTE_LABEL = {
369
- handedness: "Handedness",
370
- gender: "Gender",
371
- dob: "Date of Birth"
372
- };
373
-
374
- // src/meta/common/util.ts
375
- var getCommonAttributeLabel = ({
376
- attributeType
377
- }) => {
378
- return COMMON_ATTRIBUTE_LABEL[attributeType] || "";
379
- };
380
-
381
- // src/meta/uoi/sports/tennis/label.ts
382
- var UOI_SPORTS_TENNIS_ATTRIBUTE_LABEL = {
383
- level: "Level",
384
- backhand: "Backhand",
385
- handedness: "Handedness"
386
- };
387
-
388
- // src/meta/uoi/sports/basketball/label.ts
389
- var UOI_SPORTS_BASKETBALL_ATTRIBUTE_LABEL = {
390
- positions: "Positions"
391
- };
392
-
393
- // src/meta/uoi/sports/label.ts
394
- var UOI_SPORTS_ATTRIBUTE_LABEL = {
395
- tennis: UOI_SPORTS_TENNIS_ATTRIBUTE_LABEL,
396
- basketball: UOI_SPORTS_BASKETBALL_ATTRIBUTE_LABEL
397
- };
398
-
399
- // src/meta/uoi/label.ts
400
- var UOI_ATTRIBUTE_LABEL = {
401
- "1_sports": UOI_SPORTS_ATTRIBUTE_LABEL
402
- };
403
-
404
- // src/meta/uoi/util.ts
405
- var getUoiAttributeLabel = ({
406
- categoryType,
407
- interestType,
408
- attributeType
409
- }) => {
410
- let labels = UOI_ATTRIBUTE_LABEL;
411
- if (categoryType) {
412
- labels = (labels == null ? void 0 : labels[categoryType]) || {};
413
- }
414
- if (interestType) {
415
- labels = (labels == null ? void 0 : labels[interestType]) || {};
416
- }
417
- return (labels == null ? void 0 : labels[attributeType]) || "";
418
- };
419
-
420
- // src/meta/collection/pets/label.ts
421
- var COLLECTION_PETS_ATTRIBUTE_LABEL = {
422
- breed: "Breed",
423
- father: "Father",
424
- mother: "Mother",
425
- gender: "Gender",
426
- height: "Height",
427
- weight: "Weight",
428
- children: "Children",
429
- dob: "Date of Birth"
430
- };
431
-
432
- // src/meta/collection/label.ts
433
- var COLLECTION_ATTRIBUTE_LABEL = {
434
- "2_pets": COLLECTION_PETS_ATTRIBUTE_LABEL
435
- };
436
-
437
- // src/meta/collection/util.ts
438
- var getCollectionAttributeLabel = ({
439
- categoryType,
440
- interestType,
441
- attributeType
442
- }) => {
443
- let labels = COLLECTION_ATTRIBUTE_LABEL;
444
- if (categoryType) {
445
- labels = (labels == null ? void 0 : labels[categoryType]) || {};
446
- }
447
- if (interestType) {
448
- labels = (labels == null ? void 0 : labels[interestType]) || {};
449
- }
450
- return (labels == null ? void 0 : labels[attributeType]) || "";
451
- };
452
-
453
- // src/reaction.ts
454
- var ReactionType = /* @__PURE__ */ ((ReactionType2) => {
455
- ReactionType2[ReactionType2["None"] = 0] = "None";
456
- ReactionType2[ReactionType2["Like"] = 1] = "Like";
457
- return ReactionType2;
458
- })(ReactionType || {});
459
-
460
- // src/r2/subjectR2Folder.ts
461
- function getSubjectR2CdnUrl(folder, imageFID, size) {
462
- if (!imageFID) return "";
463
- return `https://subject.buddiesnearby.com/${folder}/${imageFID}/${size}.webp`;
464
- }
465
-
466
- // src/r2/pageR2Folder.ts
467
- function getPageR2CdnUrl(folder, pageID, imageID, size) {
468
- if (!imageID) return "";
469
- return `https://page.buddiesnearby.com/${folder}/${pageID}/${imageID}/${size}.webp`;
470
- }
471
-
472
- // src/r2/avatarR2Folder.ts
473
- var entityTypeToAvatarR2Folder = {
474
- user: "user",
475
- uoi: "user",
476
- team: "team",
477
- arena: "arena",
478
- event: "event",
479
- market: "market",
480
- leaderboard: "leaderboard",
481
- game: "game",
482
- collection: "collection"
483
- };
484
- function getAvatarR2FolderByEntityType(entityType) {
485
- var _a;
486
- return (_a = entityTypeToAvatarR2Folder[entityType]) != null ? _a : "";
487
- }
488
- function getAvatarR2CdnUrl(folder, pageID, imageID, size) {
489
- if (!imageID) return "";
490
- return `https://avatar.buddiesnearby.com/${folder}/${pageID}/${imageID}/${size}.webp`;
491
- }
492
- // Annotate the CommonJS export names for ESM import in node:
493
- 0 && (module.exports = {
494
- ALL_CARDGAMES_INTERESTS,
495
- ALL_INTEREST_CATEGORIES,
496
- ALL_LEISURE_INTERESTS,
497
- ALL_MUSIC_INTERESTS,
498
- ALL_PETS_INTERESTS,
499
- ALL_SPORTS_INTERESTS,
500
- ALL_TRAVEL_INTERESTS,
501
- AdminAccountStatus,
502
- AttachmentType,
503
- AttendanceStatus,
504
- BasketballPosition,
505
- COLLECTION_ATTRIBUTE_LABEL,
506
- COLLECTION_PETS_ATTRIBUTE_LABEL,
507
- COMMON_ATTRIBUTE_LABEL,
508
- ChallengeStatus,
509
- FollowingStatus,
510
- INTERESTS_BY_CATEGORY,
511
- PID_LENGTH,
512
- PID_PREFIX_LENGTH,
513
- ReactionType,
514
- UOI_ATTRIBUTE_LABEL,
515
- UOI_SPORTS_ATTRIBUTE_LABEL,
516
- UOI_SPORTS_BASKETBALL_ATTRIBUTE_LABEL,
517
- UOI_SPORTS_TENNIS_ATTRIBUTE_LABEL,
518
- ZeroCollectionMeta,
519
- ZeroGameMeta,
520
- ZeroMarketOption,
521
- getAvatarR2CdnUrl,
522
- getAvatarR2FolderByEntityType,
523
- getCollectionAttributeLabel,
524
- getCommonAttributeLabel,
525
- getEntityTypeByPID,
526
- getNearbyIndex,
527
- getPIDPrefixByEntityType,
528
- getPIDPrefixByProfileType,
529
- getPageR2CdnUrl,
530
- getProfileTypeByPID,
531
- getSubjectR2CdnUrl,
532
- getUoiAttributeLabel,
533
- isGamePID,
534
- isLeaderboardPID,
535
- isTeamPID,
536
- isUoiPID
537
- });