1client.entitlementCreateCommand({2 name: "Entitlement Create",3 channel: "$channelId",4 code: `5 $log[$newEntitlementData[userId] just purchased a new entitlement!]6 `7});
1module.exports = {2 name: "Entitlement Create",3 channel: "$channelId",4 type: "entitlementCreate",5 code: `6 $log[$newEntitlementData[userId] just purchased a new entitlement!]7 `8};