mrs-toolbox-cli 0.0.136 → 0.1.6
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/88b0986a7186d029-atomicfu-js-ir.js.map +1 -1
- package/clikt-clikt-mordant.js +17 -17
- package/clikt-clikt-mordant.js.map +1 -1
- package/clikt-clikt.js +1259 -1259
- package/clikt-clikt.js.map +1 -1
- package/colormath-root-colormath.js +430 -430
- package/colormath-root-colormath.js.map +1 -1
- package/com.mrs.platform.configuration.dto.js +1692 -1886
- package/com.mrs.platform.configuration.dto.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +18 -18
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-logging-js-ir.js +34 -34
- package/kotlin-logging-js-ir.js.map +1 -1
- package/kotlin-node.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.js.map +1 -1
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +8 -8
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
- package/ktor-ktor-client-content-negotiation.js +125 -125
- package/ktor-ktor-client-content-negotiation.js.map +1 -1
- package/ktor-ktor-client-core.js +1411 -1411
- package/ktor-ktor-client-core.js.map +1 -1
- package/ktor-ktor-events.js +4 -4
- package/ktor-ktor-events.js.map +1 -1
- package/ktor-ktor-http.js.map +1 -1
- package/ktor-ktor-io.js.map +1 -1
- package/ktor-ktor-serialization-kotlinx-json.js.map +1 -1
- package/ktor-ktor-serialization-kotlinx.js.map +1 -1
- package/ktor-ktor-serialization.js.map +1 -1
- package/ktor-ktor-utils.js.map +1 -1
- package/ktor-ktor-websockets.js.map +1 -1
- package/mordant-mordant.js +561 -561
- package/mordant-mordant.js.map +1 -1
- package/mrs-toolbox-cli.d.ts +1 -16
- package/mrs-toolbox-cli.js +206 -206
- package/mrs-toolbox-cli.js.map +1 -1
- package/package.json +1 -1
- package/toolbox.js +2973 -3306
- package/toolbox.js.map +1 -1
package/mrs-toolbox-cli.d.ts
CHANGED
|
@@ -893,16 +893,6 @@ 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
|
-
}
|
|
906
896
|
export declare namespace dto.manifest {
|
|
907
897
|
class ManifestApp {
|
|
908
898
|
constructor();
|
|
@@ -1849,11 +1839,9 @@ export declare namespace dto.view {
|
|
|
1849
1839
|
}
|
|
1850
1840
|
export declare namespace dto.view {
|
|
1851
1841
|
class ViewDTO implements dto.view.Query, dto.WithName {
|
|
1852
|
-
constructor(viewType: dto.view.ViewType,
|
|
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);
|
|
1853
1843
|
get viewType(): dto.view.ViewType;
|
|
1854
1844
|
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> */);
|
|
1857
1845
|
get settings(): Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */;
|
|
1858
1846
|
set settings(value: Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */);
|
|
1859
1847
|
get forCreate(): Nullable<dto.view.creation.ForCreate>;
|
|
@@ -1868,12 +1856,9 @@ export declare namespace dto.view {
|
|
|
1868
1856
|
set filters(value: Array<dto.view.filters.Filter>);
|
|
1869
1857
|
get queries(): Array<dto.view.QueryItem>;
|
|
1870
1858
|
set queries(value: Array<dto.view.QueryItem>);
|
|
1871
|
-
get hooks(): Array<dto.hook.ViewHook>;
|
|
1872
|
-
set hooks(value: Array<dto.hook.ViewHook>);
|
|
1873
1859
|
get autoSort(): boolean;
|
|
1874
1860
|
set autoSort(value: boolean);
|
|
1875
1861
|
getSettings(): Nullable<string>;
|
|
1876
|
-
getActions(): Nullable<string>;
|
|
1877
1862
|
readonly __doNotUseOrImplementIt: dto.view.Query["__doNotUseOrImplementIt"] & dto.WithName["__doNotUseOrImplementIt"];
|
|
1878
1863
|
static get Companion(): {
|
|
1879
1864
|
};
|