@lumiastream/lumia-types 0.2.4-beta.1 → 0.2.5
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/activity.types.d.ts +1 -1
- package/dist/activity.types.js +1 -1
- package/dist/alert.types.d.ts +11 -13
- package/dist/alert.types.js +975 -873
- package/dist/alert.types.js.map +1 -1
- package/dist/event.types.d.ts +1 -1
- package/package.json +1 -1
package/dist/activity.types.d.ts
CHANGED
|
@@ -145,7 +145,7 @@ export declare enum LumiaAlertValues {
|
|
|
145
145
|
KOFI_DONATION = "kofi-donation",
|
|
146
146
|
KOFI_SUBSCRIPTION = "kofi-subscription",
|
|
147
147
|
KOFI_COMMISSION = "kofi-commission",
|
|
148
|
-
KOFI_SHOPORDER = "kofi-
|
|
148
|
+
KOFI_SHOPORDER = "kofi-shopOrder"
|
|
149
149
|
}
|
|
150
150
|
export declare const LumiaAlertFriendlyValues: {
|
|
151
151
|
TWITCH_STREAM_LIVE: string;
|
package/dist/activity.types.js
CHANGED
|
@@ -156,7 +156,7 @@ var LumiaAlertValues;
|
|
|
156
156
|
LumiaAlertValues["KOFI_DONATION"] = "kofi-donation";
|
|
157
157
|
LumiaAlertValues["KOFI_SUBSCRIPTION"] = "kofi-subscription";
|
|
158
158
|
LumiaAlertValues["KOFI_COMMISSION"] = "kofi-commission";
|
|
159
|
-
LumiaAlertValues["KOFI_SHOPORDER"] = "kofi-
|
|
159
|
+
LumiaAlertValues["KOFI_SHOPORDER"] = "kofi-shopOrder";
|
|
160
160
|
})(LumiaAlertValues = exports.LumiaAlertValues || (exports.LumiaAlertValues = {}));
|
|
161
161
|
exports.LumiaAlertFriendlyValues = {
|
|
162
162
|
TWITCH_STREAM_LIVE: 'Twitch StreamLive',
|
package/dist/alert.types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { LumiaAlertValues } from
|
|
1
|
+
import { LumiaAlertValues } from "./activity.types";
|
|
2
2
|
export declare enum LumiaVariationConditions {
|
|
3
3
|
RANDOM = "RANDOM",
|
|
4
4
|
GREATER_NUMBER = "GREATER_NUMBER",
|
|
@@ -65,17 +65,15 @@ export declare const VariationCurrencySymbol: {
|
|
|
65
65
|
THB: string;
|
|
66
66
|
TRY: string;
|
|
67
67
|
};
|
|
68
|
-
export declare const LumiaAlertConfigs: {
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
value: string | number;
|
|
78
|
-
}>;
|
|
68
|
+
export declare const LumiaAlertConfigs: Record<LumiaAlertValues | string, {
|
|
69
|
+
message: string;
|
|
70
|
+
acceptedVariables: string[];
|
|
71
|
+
LumiavariationConditions: Array<{
|
|
72
|
+
type: LumiaVariationConditions;
|
|
73
|
+
selections?: Array<{
|
|
74
|
+
label: string;
|
|
75
|
+
message?: string;
|
|
76
|
+
value: string | number;
|
|
79
77
|
}>;
|
|
80
78
|
}>;
|
|
81
|
-
}
|
|
79
|
+
}>;
|