ADDED Ko-Fi, Fourthwall, TipeeeStream and Patreon

This commit is contained in:
Rodrigo Emanuel
2025-05-14 17:58:19 -03:00
committed by GitHub
parent ad95369878
commit e103df9e3f
17 changed files with 953 additions and 21 deletions

View File

@@ -216,7 +216,8 @@ function generateMockEvent() {
'kick-follow', 'kick-sub',
'kick-giftsub', 'kick-giftbomb', 'kick-raid',
'patreon-membership', 'tipeeestream-tip',
'streamlabs-tip', 'streamelements-tip',
];
@@ -723,6 +724,52 @@ function generateMockEvent() {
case 'patreon-membership' :
var data = {
attributes: {
full_name: user.name,
will_pay_amount_cents: Math.floor(Math.random() * (10000 - 1000)) + 1000
}
};
patreonMemberships(data);
break;
case 'tipeeestream-tip' :
var data = {
user: user.name,
amount: Math.floor(Math.random() * 2000) + 1,
currency: 'USD',
message: messagetext
};
tipeeeStreamDonation(data);
break;
case 'streamlabs-tip' :
var data = {