@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.
@@ -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-shoporder"
148
+ KOFI_SHOPORDER = "kofi-shopOrder"
149
149
  }
150
150
  export declare const LumiaAlertFriendlyValues: {
151
151
  TWITCH_STREAM_LIVE: string;
@@ -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-shoporder";
159
+ LumiaAlertValues["KOFI_SHOPORDER"] = "kofi-shopOrder";
160
160
  })(LumiaAlertValues = exports.LumiaAlertValues || (exports.LumiaAlertValues = {}));
161
161
  exports.LumiaAlertFriendlyValues = {
162
162
  TWITCH_STREAM_LIVE: 'Twitch StreamLive',
@@ -1,4 +1,4 @@
1
- import { LumiaAlertValues } from './activity.types';
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
- [key: string]: Record<LumiaAlertValues | string, {
70
- message: string;
71
- acceptedVariables: string[];
72
- LumiavariationConditions: Array<{
73
- type: LumiaVariationConditions;
74
- selections?: Array<{
75
- label: string;
76
- message?: string;
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
+ }>;