@lumiastream/lumia-types 3.6.2 → 3.6.3

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.
@@ -56,6 +56,7 @@ export declare enum LumiaActivityCommandTypes {
56
56
  COMMUNITY_TEST = "community-test",
57
57
  UPDATE_VARIABLE_VALUE = "update-variable-value",
58
58
  GET_VARIABLE_VALUE = "get-variable-value",
59
+ SET_COUNTER_VALUE = "set-counter-value",
59
60
  SPOTIFY = "send-spotify-command",
60
61
  VLC = "send-vlc-command",
61
62
  TWITTER = "send-twitter-command",
@@ -65,6 +65,7 @@ var LumiaActivityCommandTypes;
65
65
  LumiaActivityCommandTypes["COMMUNITY_TEST"] = "community-test";
66
66
  LumiaActivityCommandTypes["UPDATE_VARIABLE_VALUE"] = "update-variable-value";
67
67
  LumiaActivityCommandTypes["GET_VARIABLE_VALUE"] = "get-variable-value";
68
+ LumiaActivityCommandTypes["SET_COUNTER_VALUE"] = "set-counter-value";
68
69
  LumiaActivityCommandTypes["SPOTIFY"] = "send-spotify-command";
69
70
  LumiaActivityCommandTypes["VLC"] = "send-vlc-command";
70
71
  LumiaActivityCommandTypes["TWITTER"] = "send-twitter-command";
@@ -1,6 +1,6 @@
1
1
  # Custom Overlays Examples
2
2
 
3
- > Need to inspect what an alert returns? Open the [alert explorer](/docs/variables#alert-explorer) on the Platform Variables page to browse `data.alert`, `data.extraSettings.*`, and the fields available for each alert. For full `Overlay.on(...)` payload types, see [Overlay Type Definitions](/docs/custom-overlays/types).
3
+ > Need to inspect what an alert returns? Open the [alert explorer](/docs/display-variables#alert-explorer) on the Platform Variables page to browse `data.alert`, `data.extraSettings.*`, and the fields available for each alert. For full `Overlay.on(...)` payload types, see [Overlay Type Definitions](/docs/custom-overlays/types).
4
4
 
5
5
  ## Index
6
6
 
@@ -2177,10 +2177,6 @@ export declare enum SystemVariables {
2177
2177
  RECENT_CHEERS = "recent_cheers",
2178
2178
  /** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
2179
2179
  RECENT_CHEERS_AMOUNT = "recent_cheers_amount",
2180
- /** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
2181
- RECENT_CHEER_PURCHASES = "recent_cheer_purchases",
2182
- /** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
2183
- RECENT_CHEER_PURCHASES_AMOUNT = "recent_cheer_purchases_amount",
2184
2180
  /** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
2185
2181
  RECENT_TIPS = "recent_tips",
2186
2182
  /** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
@@ -2177,10 +2177,6 @@ export declare enum SystemVariables {
2177
2177
  RECENT_CHEERS = "recent_cheers",
2178
2178
  /** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
2179
2179
  RECENT_CHEERS_AMOUNT = "recent_cheers_amount",
2180
- /** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
2181
- RECENT_CHEER_PURCHASES = "recent_cheer_purchases",
2182
- /** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
2183
- RECENT_CHEER_PURCHASES_AMOUNT = "recent_cheer_purchases_amount",
2184
2180
  /** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
2185
2181
  RECENT_TIPS = "recent_tips",
2186
2182
  /** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
@@ -62,6 +62,7 @@ export var LumiaActivityCommandTypes;
62
62
  LumiaActivityCommandTypes["COMMUNITY_TEST"] = "community-test";
63
63
  LumiaActivityCommandTypes["UPDATE_VARIABLE_VALUE"] = "update-variable-value";
64
64
  LumiaActivityCommandTypes["GET_VARIABLE_VALUE"] = "get-variable-value";
65
+ LumiaActivityCommandTypes["SET_COUNTER_VALUE"] = "set-counter-value";
65
66
  LumiaActivityCommandTypes["SPOTIFY"] = "send-spotify-command";
66
67
  LumiaActivityCommandTypes["VLC"] = "send-vlc-command";
67
68
  LumiaActivityCommandTypes["TWITTER"] = "send-twitter-command";
@@ -1142,10 +1142,6 @@ export var SystemVariables;
1142
1142
  SystemVariables["RECENT_CHEERS"] = "recent_cheers";
1143
1143
  /** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
1144
1144
  SystemVariables["RECENT_CHEERS_AMOUNT"] = "recent_cheers_amount";
1145
- /** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
1146
- SystemVariables["RECENT_CHEER_PURCHASES"] = "recent_cheer_purchases";
1147
- /** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
1148
- SystemVariables["RECENT_CHEER_PURCHASES_AMOUNT"] = "recent_cheer_purchases_amount";
1149
1145
  /** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
1150
1146
  SystemVariables["RECENT_TIPS"] = "recent_tips";
1151
1147
  /** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
@@ -1491,8 +1487,6 @@ export const AllVariables = {
1491
1487
  'recent_raiders_amount',
1492
1488
  'recent_cheers',
1493
1489
  'recent_cheers_amount',
1494
- 'recent_cheer_purchases',
1495
- 'recent_cheer_purchases_amount',
1496
1490
  'recent_tips',
1497
1491
  'recent_tips_amount',
1498
1492
  'recent_superchats',
@@ -1109,10 +1109,6 @@ export declare enum SystemVariables {
1109
1109
  RECENT_CHEERS = "recent_cheers",
1110
1110
  /** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
1111
1111
  RECENT_CHEERS_AMOUNT = "recent_cheers_amount",
1112
- /** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
1113
- RECENT_CHEER_PURCHASES = "recent_cheer_purchases",
1114
- /** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
1115
- RECENT_CHEER_PURCHASES_AMOUNT = "recent_cheer_purchases_amount",
1116
1112
  /** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
1117
1113
  RECENT_TIPS = "recent_tips",
1118
1114
  /** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
@@ -1147,10 +1147,6 @@ var SystemVariables;
1147
1147
  SystemVariables["RECENT_CHEERS"] = "recent_cheers";
1148
1148
  /** Parallel comma-separated bit amounts for RECENT_CHEERS. Use as {{recent_cheers_amount}}. */
1149
1149
  SystemVariables["RECENT_CHEERS_AMOUNT"] = "recent_cheers_amount";
1150
- /** Comma-separated list of recent cheer-purchasers. Use as {{recent_cheer_purchases}}. */
1151
- SystemVariables["RECENT_CHEER_PURCHASES"] = "recent_cheer_purchases";
1152
- /** Parallel comma-separated bit amounts for RECENT_CHEER_PURCHASES. Use as {{recent_cheer_purchases_amount}}. */
1153
- SystemVariables["RECENT_CHEER_PURCHASES_AMOUNT"] = "recent_cheer_purchases_amount";
1154
1150
  /** Comma-separated list of recent tippers. Use as {{recent_tips}}. */
1155
1151
  SystemVariables["RECENT_TIPS"] = "recent_tips";
1156
1152
  /** Parallel comma-separated tip amounts for RECENT_TIPS. Use as {{recent_tips_amount}}. */
@@ -1496,8 +1492,6 @@ exports.AllVariables = {
1496
1492
  'recent_raiders_amount',
1497
1493
  'recent_cheers',
1498
1494
  'recent_cheers_amount',
1499
- 'recent_cheer_purchases',
1500
- 'recent_cheer_purchases_amount',
1501
1495
  'recent_tips',
1502
1496
  'recent_tips_amount',
1503
1497
  'recent_superchats',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumiastream/lumia-types",
3
- "version": "3.6.2",
3
+ "version": "3.6.3",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/esm/index.js",