@crowbartools/firebot-types 5.67.0-alpha1.2 → 5.67.0-alpha2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crowbartools/firebot-types",
3
- "version": "5.67.0-alpha1.2",
3
+ "version": "5.67.0-alpha2",
4
4
  "description": "Type definitions and script API for Firebot custom scripts and plugins.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -384,7 +384,7 @@ type FirebotParamCategory<ParamConfig extends Record<string, unknown>> = {
384
384
  settings: ParametersConfig<ParamConfig>;
385
385
  };
386
386
 
387
- export type FirebotParams = Record<string, Record<string, unknown>>;
387
+ export type FirebotParams = Record<string, unknown>;
388
388
 
389
389
  export type FirebotParameterCategories<Config extends FirebotParams> = {
390
390
  [Category in keyof Config]: FirebotParamCategory<Config[Category]>;