@widy/sdk 1.0.16 → 1.0.17
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 +3 -2
- package/dist/enums.js +2 -1
- package/dist/types.d.ts +6 -0
- package/package.json +1 -1
package/dist/enums.d.ts
CHANGED
|
@@ -123,7 +123,6 @@ export declare enum GoalProgressLayout {
|
|
|
123
123
|
CurrentAmountRemainingAmountPercent = "CurrentAmountRemainingAmountPercent"
|
|
124
124
|
}
|
|
125
125
|
export declare enum ServiceType {
|
|
126
|
-
TributeBot = "TributeBot",
|
|
127
126
|
Streamelements = "Streamelements",
|
|
128
127
|
Twitch = "Twitch",
|
|
129
128
|
WidySol = "WidySol",
|
|
@@ -132,7 +131,9 @@ export declare enum ServiceType {
|
|
|
132
131
|
StreamLabs = "StreamLabs",
|
|
133
132
|
Donatello = "Donatello",
|
|
134
133
|
Donatik = "Donatik",
|
|
135
|
-
DonatePay = "DonatePay"
|
|
134
|
+
DonatePay = "DonatePay",
|
|
135
|
+
Destream = "Destream",
|
|
136
|
+
Tribute = "Tribute"
|
|
136
137
|
}
|
|
137
138
|
export declare enum StreamElementsEventType {
|
|
138
139
|
tip = "tip"
|
package/dist/enums.js
CHANGED
|
@@ -135,7 +135,6 @@ export var GoalProgressLayout;
|
|
|
135
135
|
})(GoalProgressLayout || (GoalProgressLayout = {}));
|
|
136
136
|
export var ServiceType;
|
|
137
137
|
(function (ServiceType) {
|
|
138
|
-
ServiceType["TributeBot"] = "TributeBot";
|
|
139
138
|
ServiceType["Streamelements"] = "Streamelements";
|
|
140
139
|
ServiceType["Twitch"] = "Twitch";
|
|
141
140
|
ServiceType["WidySol"] = "WidySol";
|
|
@@ -145,6 +144,8 @@ export var ServiceType;
|
|
|
145
144
|
ServiceType["Donatello"] = "Donatello";
|
|
146
145
|
ServiceType["Donatik"] = "Donatik";
|
|
147
146
|
ServiceType["DonatePay"] = "DonatePay";
|
|
147
|
+
ServiceType["Destream"] = "Destream";
|
|
148
|
+
ServiceType["Tribute"] = "Tribute";
|
|
148
149
|
})(ServiceType || (ServiceType = {}));
|
|
149
150
|
export var StreamElementsEventType;
|
|
150
151
|
(function (StreamElementsEventType) {
|
package/dist/types.d.ts
CHANGED
|
@@ -258,6 +258,12 @@ export interface IStreamElementsAuth {
|
|
|
258
258
|
export interface IDonationAlertsAuth {
|
|
259
259
|
token: string;
|
|
260
260
|
}
|
|
261
|
+
export interface IDestreamAuth {
|
|
262
|
+
overlayid: string;
|
|
263
|
+
}
|
|
264
|
+
export interface ITributeAuth {
|
|
265
|
+
api_key: string;
|
|
266
|
+
}
|
|
261
267
|
export interface IDonatePayAuth {
|
|
262
268
|
access_token: string;
|
|
263
269
|
}
|