mrs-toolbox-cli 0.0.133 → 0.0.136

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.
@@ -893,6 +893,16 @@ export declare namespace dto.hook {
893
893
  };
894
894
  }
895
895
  }
896
+ export declare namespace dto.hook {
897
+ /* @ts-ignore: https://github.com/microsoft/TypeScript/issues/4628 */
898
+ class ViewHook extends dto.hook.Hook {
899
+ constructor();
900
+ get view(): string;
901
+ set view(value: string);
902
+ static get Companion(): {
903
+ };
904
+ }
905
+ }
896
906
  export declare namespace dto.manifest {
897
907
  class ManifestApp {
898
908
  constructor();
@@ -1839,9 +1849,11 @@ export declare namespace dto.view {
1839
1849
  }
1840
1850
  export declare namespace dto.view {
1841
1851
  class ViewDTO implements dto.view.Query, dto.WithName {
1842
- constructor(viewType: dto.view.ViewType, settings: Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */ | undefined, forCreate: Nullable<dto.view.creation.ForCreate> | undefined, creationList: Nullable<Array<dto.view.creation.CreationItem>> | undefined, title: Nullable<string> | undefined, name: string, filters?: Array<dto.view.filters.Filter>, queries?: Array<dto.view.QueryItem>, autoSort?: boolean);
1852
+ constructor(viewType: dto.view.ViewType, actions: Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */ | undefined, settings: Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */ | undefined, forCreate: Nullable<dto.view.creation.ForCreate> | undefined, creationList: Nullable<Array<dto.view.creation.CreationItem>> | undefined, title: Nullable<string> | undefined, name: string, filters?: Array<dto.view.filters.Filter>, queries?: Array<dto.view.QueryItem>, hooks?: Array<dto.hook.ViewHook>, autoSort?: boolean);
1843
1853
  get viewType(): dto.view.ViewType;
1844
1854
  set viewType(value: dto.view.ViewType);
1855
+ get actions(): Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */;
1856
+ set actions(value: Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */);
1845
1857
  get settings(): Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */;
1846
1858
  set settings(value: Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */);
1847
1859
  get forCreate(): Nullable<dto.view.creation.ForCreate>;
@@ -1856,9 +1868,12 @@ export declare namespace dto.view {
1856
1868
  set filters(value: Array<dto.view.filters.Filter>);
1857
1869
  get queries(): Array<dto.view.QueryItem>;
1858
1870
  set queries(value: Array<dto.view.QueryItem>);
1871
+ get hooks(): Array<dto.hook.ViewHook>;
1872
+ set hooks(value: Array<dto.hook.ViewHook>);
1859
1873
  get autoSort(): boolean;
1860
1874
  set autoSort(value: boolean);
1861
1875
  getSettings(): Nullable<string>;
1876
+ getActions(): Nullable<string>;
1862
1877
  readonly __doNotUseOrImplementIt: dto.view.Query["__doNotUseOrImplementIt"] & dto.WithName["__doNotUseOrImplementIt"];
1863
1878
  static get Companion(): {
1864
1879
  };
@@ -2446,32 +2461,6 @@ export declare namespace types {
2446
2461
  } & dto.WithId["__doNotUseOrImplementIt"];
2447
2462
  }
2448
2463
  }
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
- }
2475
2464
  export declare namespace types.internal {
2476
2465
  class Manifest {
2477
2466
  constructor(app?: dto.manifest.ManifestApp, build?: dto.manifest.ManifestBuild);