@widy/sdk 1.0.18 → 1.0.19
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/enums.d.ts +6 -3
- package/dist/enums.js +3 -0
- package/package.json +1 -1
package/dist/enums.d.ts
CHANGED
|
@@ -135,10 +135,12 @@ export declare enum ServiceType {
|
|
|
135
135
|
Donatik = "Donatik",
|
|
136
136
|
DonatePay = "DonatePay",
|
|
137
137
|
Destream = "Destream",
|
|
138
|
-
Tribute = "Tribute"
|
|
138
|
+
Tribute = "Tribute",
|
|
139
|
+
Kick = "Kick"
|
|
139
140
|
}
|
|
140
141
|
export declare enum Platform {
|
|
141
|
-
Twitch = "Twitch"
|
|
142
|
+
Twitch = "Twitch",
|
|
143
|
+
Kick = "Kick"
|
|
142
144
|
}
|
|
143
145
|
export declare enum StreamElementsEventType {
|
|
144
146
|
tip = "tip"
|
|
@@ -153,7 +155,8 @@ export declare enum MessageType {
|
|
|
153
155
|
export declare enum GoalType {
|
|
154
156
|
Donation = "Donation",
|
|
155
157
|
TwitchSubscription = "TwitchSubscription",
|
|
156
|
-
TwitchFollow = "TwitchFollow"
|
|
158
|
+
TwitchFollow = "TwitchFollow",
|
|
159
|
+
KickSubscription = "KickSubscription"
|
|
157
160
|
}
|
|
158
161
|
export declare enum WidyNetwork {
|
|
159
162
|
Sol = "sol",
|
package/dist/enums.js
CHANGED
|
@@ -148,10 +148,12 @@ export var ServiceType;
|
|
|
148
148
|
ServiceType["DonatePay"] = "DonatePay";
|
|
149
149
|
ServiceType["Destream"] = "Destream";
|
|
150
150
|
ServiceType["Tribute"] = "Tribute";
|
|
151
|
+
ServiceType["Kick"] = "Kick";
|
|
151
152
|
})(ServiceType || (ServiceType = {}));
|
|
152
153
|
export var Platform;
|
|
153
154
|
(function (Platform) {
|
|
154
155
|
Platform["Twitch"] = "Twitch";
|
|
156
|
+
Platform["Kick"] = "Kick";
|
|
155
157
|
})(Platform || (Platform = {}));
|
|
156
158
|
export var StreamElementsEventType;
|
|
157
159
|
(function (StreamElementsEventType) {
|
|
@@ -170,6 +172,7 @@ export var GoalType;
|
|
|
170
172
|
GoalType["Donation"] = "Donation";
|
|
171
173
|
GoalType["TwitchSubscription"] = "TwitchSubscription";
|
|
172
174
|
GoalType["TwitchFollow"] = "TwitchFollow";
|
|
175
|
+
GoalType["KickSubscription"] = "KickSubscription";
|
|
173
176
|
})(GoalType || (GoalType = {}));
|
|
174
177
|
export var WidyNetwork;
|
|
175
178
|
(function (WidyNetwork) {
|