mrs-toolbox-cli 0.0.133 → 0.0.137

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
  };