mrs-toolbox-cli 0.0.130 → 0.0.133

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.
@@ -2446,6 +2446,32 @@ export declare namespace types {
2446
2446
  } & dto.WithId["__doNotUseOrImplementIt"];
2447
2447
  }
2448
2448
  }
2449
+ export declare namespace types.internal {
2450
+ class DashboardsManifest {
2451
+ constructor(dictionaries?: kotlin.collections.KtList<types.internal.DashboardDictionary>);
2452
+ get dictionaries(): kotlin.collections.KtList<types.internal.DashboardDictionary>;
2453
+ set dictionaries(value: kotlin.collections.KtList<types.internal.DashboardDictionary>);
2454
+ copy(dictionaries?: kotlin.collections.KtList<types.internal.DashboardDictionary>): types.internal.DashboardsManifest;
2455
+ toString(): string;
2456
+ hashCode(): number;
2457
+ equals(other: Nullable<any>): boolean;
2458
+ static get Companion(): {
2459
+ };
2460
+ }
2461
+ class DashboardDictionary {
2462
+ constructor(name?: string, dashboards?: kotlin.collections.KtList<string>);
2463
+ get name(): string;
2464
+ set name(value: string);
2465
+ get dashboards(): kotlin.collections.KtList<string>;
2466
+ set dashboards(value: kotlin.collections.KtList<string>);
2467
+ copy(name?: string, dashboards?: kotlin.collections.KtList<string>): types.internal.DashboardDictionary;
2468
+ toString(): string;
2469
+ hashCode(): number;
2470
+ equals(other: Nullable<any>): boolean;
2471
+ static get Companion(): {
2472
+ };
2473
+ }
2474
+ }
2449
2475
  export declare namespace types.internal {
2450
2476
  class Manifest {
2451
2477
  constructor(app?: dto.manifest.ManifestApp, build?: dto.manifest.ManifestBuild);