glitch-javascript-sdk 2.4.8 → 2.5.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/dist/cjs/index.js +183 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Raffles.d.ts +92 -0
- package/dist/esm/api/Scheduler.d.ts +15 -0
- package/dist/esm/api/index.d.ts +2 -0
- package/dist/esm/index.d.ts +2 -0
- package/dist/esm/index.js +183 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/routes/RafflesRoute.d.ts +7 -0
- package/dist/index.d.ts +106 -0
- package/package.json +1 -1
- package/src/api/Raffles.ts +149 -0
- package/src/api/Scheduler.ts +24 -0
- package/src/api/index.ts +3 -1
- package/src/index.ts +2 -0
- package/src/routes/RafflesRoute.ts +35 -0
- package/src/routes/SchedulerRoute.ts +4 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import Response from "../util/Response";
|
|
2
|
+
import { AxiosPromise } from "axios";
|
|
3
|
+
declare class Raffles {
|
|
4
|
+
/**
|
|
5
|
+
* List all raffles.
|
|
6
|
+
* @param params Filter by title_id, community_id, or status.
|
|
7
|
+
*/
|
|
8
|
+
static list<T>(params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
9
|
+
/**
|
|
10
|
+
* Create a new raffle for a specific title.
|
|
11
|
+
*/
|
|
12
|
+
static create<T>(data: object): AxiosPromise<Response<T>>;
|
|
13
|
+
/**
|
|
14
|
+
* Get full details of a raffle.
|
|
15
|
+
*/
|
|
16
|
+
static view<T>(raffle_id: string): AxiosPromise<Response<T>>;
|
|
17
|
+
/**
|
|
18
|
+
* Update raffle settings (Draft/Active status, dates, etc).
|
|
19
|
+
*/
|
|
20
|
+
static update<T>(raffle_id: string, data: object): AxiosPromise<Response<T>>;
|
|
21
|
+
/**
|
|
22
|
+
* Delete a raffle.
|
|
23
|
+
*/
|
|
24
|
+
static delete<T>(raffle_id: string): AxiosPromise<Response<T>>;
|
|
25
|
+
/**
|
|
26
|
+
* Enter the authenticated user into the raffle.
|
|
27
|
+
* @param data { referral_code?, device_fingerprint? }
|
|
28
|
+
*/
|
|
29
|
+
static enter<T>(raffle_id: string, data?: object): AxiosPromise<Response<T>>;
|
|
30
|
+
/**
|
|
31
|
+
* Record a viral action (Steam Wishlist, Social Share) to earn more tickets.
|
|
32
|
+
* @param data { action_type: 'steam_wishlist'|'social_share', platform?, reference_id? }
|
|
33
|
+
*/
|
|
34
|
+
static performAction<T>(raffle_id: string, data: object): AxiosPromise<Response<T>>;
|
|
35
|
+
/**
|
|
36
|
+
* Get the authenticated user's specific entry status for this raffle.
|
|
37
|
+
*/
|
|
38
|
+
static me<T>(raffle_id: string): AxiosPromise<Response<T>>;
|
|
39
|
+
/**
|
|
40
|
+
* Submit shipping address for a winning entry.
|
|
41
|
+
* @param entry_id The UUID of the RaffleEntry.
|
|
42
|
+
*/
|
|
43
|
+
static updateAddress<T>(entry_id: string, data: object): AxiosPromise<Response<T>>;
|
|
44
|
+
/**
|
|
45
|
+
* Invite a friend via email to join the raffle.
|
|
46
|
+
*/
|
|
47
|
+
static inviteFriend<T>(raffle_id: string, data: {
|
|
48
|
+
email: string;
|
|
49
|
+
}): AxiosPromise<Response<T>>;
|
|
50
|
+
/**
|
|
51
|
+
* Get the public list of winners (only available if raffle is completed).
|
|
52
|
+
*/
|
|
53
|
+
static winners<T>(raffle_id: string): AxiosPromise<Response<T>>;
|
|
54
|
+
/**
|
|
55
|
+
* Add a prize tier (quantity, value, description) to the raffle.
|
|
56
|
+
*/
|
|
57
|
+
static addPrize<T>(raffle_id: string, data: object): AxiosPromise<Response<T>>;
|
|
58
|
+
/**
|
|
59
|
+
* Randomly draw winners for all prize tiers based on ticket weights.
|
|
60
|
+
*/
|
|
61
|
+
static drawWinners<T>(raffle_id: string): AxiosPromise<Response<T>>;
|
|
62
|
+
/**
|
|
63
|
+
* Manually assign a specific user to a specific prize (Live Event Mode).
|
|
64
|
+
* @param data { entry_id, prize_id }
|
|
65
|
+
*/
|
|
66
|
+
static pickWinner<T>(raffle_id: string, data: object): AxiosPromise<Response<T>>;
|
|
67
|
+
/**
|
|
68
|
+
* Provide shipping/tracking info for a prize fulfillment.
|
|
69
|
+
* @param entry_id The UUID of the RaffleEntry.
|
|
70
|
+
*/
|
|
71
|
+
static fulfillPrize<T>(entry_id: string, data: object): AxiosPromise<Response<T>>;
|
|
72
|
+
/**
|
|
73
|
+
* Disqualify an entry for fraud or rule violations.
|
|
74
|
+
*/
|
|
75
|
+
static disqualify<T>(raffle_id: string, entry_id: string, data: {
|
|
76
|
+
reason: string;
|
|
77
|
+
}): AxiosPromise<Response<T>>;
|
|
78
|
+
/**
|
|
79
|
+
* List all participants/entries for management.
|
|
80
|
+
* @param params { opt_in_playtesting?, page?, per_page? }
|
|
81
|
+
*/
|
|
82
|
+
static listParticipants<T>(raffle_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
83
|
+
/**
|
|
84
|
+
* Check if the raffle is fully funded in the community ledger.
|
|
85
|
+
*/
|
|
86
|
+
static escrowStatus<T>(raffle_id: string): AxiosPromise<Response<T>>;
|
|
87
|
+
/**
|
|
88
|
+
* Get viral loop analytics (K-factor, Cost Per Entry).
|
|
89
|
+
*/
|
|
90
|
+
static analytics<T>(raffle_id: string): AxiosPromise<Response<T>>;
|
|
91
|
+
}
|
|
92
|
+
export default Raffles;
|
|
@@ -561,5 +561,20 @@ declare class Scheduler {
|
|
|
561
561
|
* @param scheduler_id The ID of the promotion schedule.
|
|
562
562
|
*/
|
|
563
563
|
static getTikTokMusic<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
564
|
+
/**
|
|
565
|
+
* Get TikTok Music List with advanced filtering (Keyword, Recommendations, Liked).
|
|
566
|
+
* @param params { music_scene: 'CREATIVE_ASSET'|'CAROUSEL_ADS', search_type: string, filtering: object }
|
|
567
|
+
*/
|
|
568
|
+
static getTikTokMusicList<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
569
|
+
/**
|
|
570
|
+
* Get the top 200 trending hashtags on TikTok.
|
|
571
|
+
* @param params { country_code: string, category_name: string, date_range: string }
|
|
572
|
+
*/
|
|
573
|
+
static getTikTokTrendingHashtags<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
574
|
+
/**
|
|
575
|
+
* Get trending search keywords on TikTok.
|
|
576
|
+
* @param params { is_personalized: boolean }
|
|
577
|
+
*/
|
|
578
|
+
static getTikTokTrendingKeywords<T>(scheduler_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
564
579
|
}
|
|
565
580
|
export default Scheduler;
|
package/dist/esm/api/index.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ import ShortLinks from "./ShortLinks";
|
|
|
38
38
|
import AIUsage from "./AIUsage";
|
|
39
39
|
import MarketingAgencies from "./MarketingAgencies";
|
|
40
40
|
import TwitchReporting from "./TwitchReporting";
|
|
41
|
+
import Raffles from "./Raffles";
|
|
41
42
|
export { Ads };
|
|
42
43
|
export { AccessKeys };
|
|
43
44
|
export { Auth };
|
|
@@ -78,3 +79,4 @@ export { ShortLinks };
|
|
|
78
79
|
export { AIUsage };
|
|
79
80
|
export { MarketingAgencies };
|
|
80
81
|
export { TwitchReporting };
|
|
82
|
+
export { Raffles };
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -38,6 +38,7 @@ import { ShortLinks } from "./api";
|
|
|
38
38
|
import { AIUsage } from "./api";
|
|
39
39
|
import { MarketingAgencies } from "./api";
|
|
40
40
|
import { TwitchReporting } from './api';
|
|
41
|
+
import { Raffles } from './api';
|
|
41
42
|
import Requests from "./util/Requests";
|
|
42
43
|
import Parser from "./util/Parser";
|
|
43
44
|
import Session from "./util/Session";
|
|
@@ -97,6 +98,7 @@ declare class Glitch {
|
|
|
97
98
|
AIUsage: typeof AIUsage;
|
|
98
99
|
MarketingAgencies: typeof MarketingAgencies;
|
|
99
100
|
TwitchReporting: typeof TwitchReporting;
|
|
101
|
+
Raffles: typeof Raffles;
|
|
100
102
|
};
|
|
101
103
|
static util: {
|
|
102
104
|
Requests: typeof Requests;
|
package/dist/esm/index.js
CHANGED
|
@@ -14372,6 +14372,10 @@ var SchedulerRoute = /** @class */ (function () {
|
|
|
14372
14372
|
},
|
|
14373
14373
|
getTikTokHashtags: { url: '/schedulers/{scheduler_id}/tiktok/discovery/hashtags', method: HTTP_METHODS.GET },
|
|
14374
14374
|
getTikTokMusic: { url: '/schedulers/{scheduler_id}/tiktok/discovery/music', method: HTTP_METHODS.GET },
|
|
14375
|
+
getTikTokMusicList: { url: '/schedulers/{scheduler_id}/tiktok/music', method: HTTP_METHODS.GET },
|
|
14376
|
+
getTikTokTrendingHashtags: { url: '/schedulers/{scheduler_id}/tiktok/discovery/hashtags/trending', method: HTTP_METHODS.GET },
|
|
14377
|
+
getTikTokHashtagDetail: { url: '/schedulers/{scheduler_id}/tiktok/discovery/hashtags/detail', method: HTTP_METHODS.GET },
|
|
14378
|
+
getTikTokTrendingKeywords: { url: '/schedulers/{scheduler_id}/tiktok/discovery/search-keywords', method: HTTP_METHODS.GET },
|
|
14375
14379
|
};
|
|
14376
14380
|
return SchedulerRoute;
|
|
14377
14381
|
}());
|
|
@@ -15079,6 +15083,27 @@ var Scheduler = /** @class */ (function () {
|
|
|
15079
15083
|
Scheduler.getTikTokMusic = function (scheduler_id, params) {
|
|
15080
15084
|
return Requests.processRoute(SchedulerRoute.routes.getTikTokMusic, {}, { scheduler_id: scheduler_id }, params);
|
|
15081
15085
|
};
|
|
15086
|
+
/**
|
|
15087
|
+
* Get TikTok Music List with advanced filtering (Keyword, Recommendations, Liked).
|
|
15088
|
+
* @param params { music_scene: 'CREATIVE_ASSET'|'CAROUSEL_ADS', search_type: string, filtering: object }
|
|
15089
|
+
*/
|
|
15090
|
+
Scheduler.getTikTokMusicList = function (scheduler_id, params) {
|
|
15091
|
+
return Requests.processRoute(SchedulerRoute.routes.getTikTokMusicList, {}, { scheduler_id: scheduler_id }, params);
|
|
15092
|
+
};
|
|
15093
|
+
/**
|
|
15094
|
+
* Get the top 200 trending hashtags on TikTok.
|
|
15095
|
+
* @param params { country_code: string, category_name: string, date_range: string }
|
|
15096
|
+
*/
|
|
15097
|
+
Scheduler.getTikTokTrendingHashtags = function (scheduler_id, params) {
|
|
15098
|
+
return Requests.processRoute(SchedulerRoute.routes.getTikTokTrendingHashtags, {}, { scheduler_id: scheduler_id }, params);
|
|
15099
|
+
};
|
|
15100
|
+
/**
|
|
15101
|
+
* Get trending search keywords on TikTok.
|
|
15102
|
+
* @param params { is_personalized: boolean }
|
|
15103
|
+
*/
|
|
15104
|
+
Scheduler.getTikTokTrendingKeywords = function (scheduler_id, params) {
|
|
15105
|
+
return Requests.processRoute(SchedulerRoute.routes.getTikTokTrendingKeywords, {}, { scheduler_id: scheduler_id }, params);
|
|
15106
|
+
};
|
|
15082
15107
|
return Scheduler;
|
|
15083
15108
|
}());
|
|
15084
15109
|
|
|
@@ -16162,6 +16187,163 @@ var TwitchReporting = /** @class */ (function () {
|
|
|
16162
16187
|
return TwitchReporting;
|
|
16163
16188
|
}());
|
|
16164
16189
|
|
|
16190
|
+
var RafflesRoute = /** @class */ (function () {
|
|
16191
|
+
function RafflesRoute() {
|
|
16192
|
+
}
|
|
16193
|
+
RafflesRoute.routes = {
|
|
16194
|
+
// CRUD
|
|
16195
|
+
list: { url: '/raffles', method: HTTP_METHODS.GET },
|
|
16196
|
+
create: { url: '/raffles', method: HTTP_METHODS.POST },
|
|
16197
|
+
view: { url: '/raffles/{raffle_id}', method: HTTP_METHODS.GET },
|
|
16198
|
+
update: { url: '/raffles/{raffle_id}', method: HTTP_METHODS.PUT },
|
|
16199
|
+
delete: { url: '/raffles/{raffle_id}', method: HTTP_METHODS.DELETE },
|
|
16200
|
+
// User/Player Actions
|
|
16201
|
+
enter: { url: '/raffles/{raffle_id}/enter', method: HTTP_METHODS.POST },
|
|
16202
|
+
performAction: { url: '/raffles/{raffle_id}/actions', method: HTTP_METHODS.POST },
|
|
16203
|
+
me: { url: '/raffles/{raffle_id}/me', method: HTTP_METHODS.GET },
|
|
16204
|
+
updateAddress: { url: '/raffles/entries/{entry_id}/address', method: HTTP_METHODS.PUT },
|
|
16205
|
+
inviteFriend: { url: '/raffles/{raffle_id}/invite-friend', method: HTTP_METHODS.POST },
|
|
16206
|
+
winners: { url: '/raffles/{raffle_id}/winners', method: HTTP_METHODS.GET },
|
|
16207
|
+
// Admin/Developer Actions
|
|
16208
|
+
addPrize: { url: '/raffles/{raffle_id}/prizes', method: HTTP_METHODS.POST },
|
|
16209
|
+
drawWinners: { url: '/raffles/{raffle_id}/draw', method: HTTP_METHODS.POST },
|
|
16210
|
+
pickWinner: { url: '/raffles/{raffle_id}/pick-winner', method: HTTP_METHODS.POST },
|
|
16211
|
+
fulfillPrize: { url: '/raffles/entries/{entry_id}/fulfill', method: HTTP_METHODS.PUT },
|
|
16212
|
+
disqualify: { url: '/raffles/{raffle_id}/disqualify/{entry_id}', method: HTTP_METHODS.POST },
|
|
16213
|
+
participants: { url: '/raffles/{raffle_id}/participants', method: HTTP_METHODS.GET },
|
|
16214
|
+
escrowStatus: { url: '/raffles/{raffle_id}/escrow', method: HTTP_METHODS.GET },
|
|
16215
|
+
analytics: { url: '/raffles/{raffle_id}/analytics', method: HTTP_METHODS.GET },
|
|
16216
|
+
};
|
|
16217
|
+
return RafflesRoute;
|
|
16218
|
+
}());
|
|
16219
|
+
|
|
16220
|
+
var Raffles = /** @class */ (function () {
|
|
16221
|
+
function Raffles() {
|
|
16222
|
+
}
|
|
16223
|
+
/**
|
|
16224
|
+
* List all raffles.
|
|
16225
|
+
* @param params Filter by title_id, community_id, or status.
|
|
16226
|
+
*/
|
|
16227
|
+
Raffles.list = function (params) {
|
|
16228
|
+
return Requests.processRoute(RafflesRoute.routes.list, undefined, undefined, params);
|
|
16229
|
+
};
|
|
16230
|
+
/**
|
|
16231
|
+
* Create a new raffle for a specific title.
|
|
16232
|
+
*/
|
|
16233
|
+
Raffles.create = function (data) {
|
|
16234
|
+
return Requests.processRoute(RafflesRoute.routes.create, data);
|
|
16235
|
+
};
|
|
16236
|
+
/**
|
|
16237
|
+
* Get full details of a raffle.
|
|
16238
|
+
*/
|
|
16239
|
+
Raffles.view = function (raffle_id) {
|
|
16240
|
+
return Requests.processRoute(RafflesRoute.routes.view, {}, { raffle_id: raffle_id });
|
|
16241
|
+
};
|
|
16242
|
+
/**
|
|
16243
|
+
* Update raffle settings (Draft/Active status, dates, etc).
|
|
16244
|
+
*/
|
|
16245
|
+
Raffles.update = function (raffle_id, data) {
|
|
16246
|
+
return Requests.processRoute(RafflesRoute.routes.update, data, { raffle_id: raffle_id });
|
|
16247
|
+
};
|
|
16248
|
+
/**
|
|
16249
|
+
* Delete a raffle.
|
|
16250
|
+
*/
|
|
16251
|
+
Raffles.delete = function (raffle_id) {
|
|
16252
|
+
return Requests.processRoute(RafflesRoute.routes.delete, {}, { raffle_id: raffle_id });
|
|
16253
|
+
};
|
|
16254
|
+
/**
|
|
16255
|
+
* Enter the authenticated user into the raffle.
|
|
16256
|
+
* @param data { referral_code?, device_fingerprint? }
|
|
16257
|
+
*/
|
|
16258
|
+
Raffles.enter = function (raffle_id, data) {
|
|
16259
|
+
return Requests.processRoute(RafflesRoute.routes.enter, data, { raffle_id: raffle_id });
|
|
16260
|
+
};
|
|
16261
|
+
/**
|
|
16262
|
+
* Record a viral action (Steam Wishlist, Social Share) to earn more tickets.
|
|
16263
|
+
* @param data { action_type: 'steam_wishlist'|'social_share', platform?, reference_id? }
|
|
16264
|
+
*/
|
|
16265
|
+
Raffles.performAction = function (raffle_id, data) {
|
|
16266
|
+
return Requests.processRoute(RafflesRoute.routes.performAction, data, { raffle_id: raffle_id });
|
|
16267
|
+
};
|
|
16268
|
+
/**
|
|
16269
|
+
* Get the authenticated user's specific entry status for this raffle.
|
|
16270
|
+
*/
|
|
16271
|
+
Raffles.me = function (raffle_id) {
|
|
16272
|
+
return Requests.processRoute(RafflesRoute.routes.me, {}, { raffle_id: raffle_id });
|
|
16273
|
+
};
|
|
16274
|
+
/**
|
|
16275
|
+
* Submit shipping address for a winning entry.
|
|
16276
|
+
* @param entry_id The UUID of the RaffleEntry.
|
|
16277
|
+
*/
|
|
16278
|
+
Raffles.updateAddress = function (entry_id, data) {
|
|
16279
|
+
return Requests.processRoute(RafflesRoute.routes.updateAddress, data, { entry_id: entry_id });
|
|
16280
|
+
};
|
|
16281
|
+
/**
|
|
16282
|
+
* Invite a friend via email to join the raffle.
|
|
16283
|
+
*/
|
|
16284
|
+
Raffles.inviteFriend = function (raffle_id, data) {
|
|
16285
|
+
return Requests.processRoute(RafflesRoute.routes.inviteFriend, data, { raffle_id: raffle_id });
|
|
16286
|
+
};
|
|
16287
|
+
/**
|
|
16288
|
+
* Get the public list of winners (only available if raffle is completed).
|
|
16289
|
+
*/
|
|
16290
|
+
Raffles.winners = function (raffle_id) {
|
|
16291
|
+
return Requests.processRoute(RafflesRoute.routes.winners, {}, { raffle_id: raffle_id });
|
|
16292
|
+
};
|
|
16293
|
+
/**
|
|
16294
|
+
* Add a prize tier (quantity, value, description) to the raffle.
|
|
16295
|
+
*/
|
|
16296
|
+
Raffles.addPrize = function (raffle_id, data) {
|
|
16297
|
+
return Requests.processRoute(RafflesRoute.routes.addPrize, data, { raffle_id: raffle_id });
|
|
16298
|
+
};
|
|
16299
|
+
/**
|
|
16300
|
+
* Randomly draw winners for all prize tiers based on ticket weights.
|
|
16301
|
+
*/
|
|
16302
|
+
Raffles.drawWinners = function (raffle_id) {
|
|
16303
|
+
return Requests.processRoute(RafflesRoute.routes.drawWinners, {}, { raffle_id: raffle_id });
|
|
16304
|
+
};
|
|
16305
|
+
/**
|
|
16306
|
+
* Manually assign a specific user to a specific prize (Live Event Mode).
|
|
16307
|
+
* @param data { entry_id, prize_id }
|
|
16308
|
+
*/
|
|
16309
|
+
Raffles.pickWinner = function (raffle_id, data) {
|
|
16310
|
+
return Requests.processRoute(RafflesRoute.routes.pickWinner, data, { raffle_id: raffle_id });
|
|
16311
|
+
};
|
|
16312
|
+
/**
|
|
16313
|
+
* Provide shipping/tracking info for a prize fulfillment.
|
|
16314
|
+
* @param entry_id The UUID of the RaffleEntry.
|
|
16315
|
+
*/
|
|
16316
|
+
Raffles.fulfillPrize = function (entry_id, data) {
|
|
16317
|
+
return Requests.processRoute(RafflesRoute.routes.fulfillPrize, data, { entry_id: entry_id });
|
|
16318
|
+
};
|
|
16319
|
+
/**
|
|
16320
|
+
* Disqualify an entry for fraud or rule violations.
|
|
16321
|
+
*/
|
|
16322
|
+
Raffles.disqualify = function (raffle_id, entry_id, data) {
|
|
16323
|
+
return Requests.processRoute(RafflesRoute.routes.disqualify, data, { raffle_id: raffle_id, entry_id: entry_id });
|
|
16324
|
+
};
|
|
16325
|
+
/**
|
|
16326
|
+
* List all participants/entries for management.
|
|
16327
|
+
* @param params { opt_in_playtesting?, page?, per_page? }
|
|
16328
|
+
*/
|
|
16329
|
+
Raffles.listParticipants = function (raffle_id, params) {
|
|
16330
|
+
return Requests.processRoute(RafflesRoute.routes.participants, {}, { raffle_id: raffle_id }, params);
|
|
16331
|
+
};
|
|
16332
|
+
/**
|
|
16333
|
+
* Check if the raffle is fully funded in the community ledger.
|
|
16334
|
+
*/
|
|
16335
|
+
Raffles.escrowStatus = function (raffle_id) {
|
|
16336
|
+
return Requests.processRoute(RafflesRoute.routes.escrowStatus, {}, { raffle_id: raffle_id });
|
|
16337
|
+
};
|
|
16338
|
+
/**
|
|
16339
|
+
* Get viral loop analytics (K-factor, Cost Per Entry).
|
|
16340
|
+
*/
|
|
16341
|
+
Raffles.analytics = function (raffle_id) {
|
|
16342
|
+
return Requests.processRoute(RafflesRoute.routes.analytics, {}, { raffle_id: raffle_id });
|
|
16343
|
+
};
|
|
16344
|
+
return Raffles;
|
|
16345
|
+
}());
|
|
16346
|
+
|
|
16165
16347
|
var Parser = /** @class */ (function () {
|
|
16166
16348
|
function Parser() {
|
|
16167
16349
|
}
|
|
@@ -16690,6 +16872,7 @@ var Glitch = /** @class */ (function () {
|
|
|
16690
16872
|
AIUsage: AIUsage,
|
|
16691
16873
|
MarketingAgencies: MarketingAgencies,
|
|
16692
16874
|
TwitchReporting: TwitchReporting,
|
|
16875
|
+
Raffles: Raffles,
|
|
16693
16876
|
};
|
|
16694
16877
|
Glitch.util = {
|
|
16695
16878
|
Requests: Requests,
|