mrs-toolbox-cli 0.0.129 → 0.0.130
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 +19 -19
- package/clikt-clikt-mordant.js +245 -0
- package/clikt-clikt-mordant.js.map +1 -0
- package/clikt-clikt.js +3345 -3129
- package/clikt-clikt.js.map +1 -1
- package/colormath-root-colormath.js +806 -611
- package/colormath-root-colormath.js.map +1 -1
- package/com.mrs.platform.configuration.dto.js +6125 -5640
- package/com.mrs.platform.configuration.dto.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +3749 -2808
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlin-logging-js-ir.js +47 -47
- package/kotlin-node.js +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core.js +2084 -2056
- package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json.js +1640 -1629
- package/kotlinx-serialization-kotlinx-serialization-json.js.map +1 -1
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +2119 -2096
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
- package/ktor-ktor-client-content-negotiation.js +223 -223
- package/ktor-ktor-client-content-negotiation.js.map +1 -1
- package/ktor-ktor-client-core.js +2531 -2532
- package/ktor-ktor-client-core.js.map +1 -1
- package/ktor-ktor-events.js +13 -13
- package/ktor-ktor-http.js +702 -703
- package/ktor-ktor-http.js.map +1 -1
- package/ktor-ktor-io.js +1583 -1583
- package/ktor-ktor-io.js.map +1 -1
- package/ktor-ktor-serialization-kotlinx-json.js +8 -8
- package/ktor-ktor-serialization-kotlinx.js +265 -265
- package/ktor-ktor-serialization.js +126 -126
- package/ktor-ktor-utils.js +519 -519
- package/ktor-ktor-utils.js.map +1 -1
- package/ktor-ktor-websockets.js +60 -60
- package/ktor-ktor-websockets.js.map +1 -1
- package/mordant-mordant-omnibus.js +8 -0
- package/mordant-mordant-omnibus.js.map +1 -0
- package/mordant-mordant.js +4442 -9011
- package/mordant-mordant.js.map +1 -1
- package/mrs-toolbox-cli.d.ts +43 -1
- package/mrs-toolbox-cli.js +1020 -145
- package/mrs-toolbox-cli.js.map +1 -1
- package/package.json +1 -1
- package/static/init/hooks.webpack.config.js +35 -0
- package/static/init/webpackRoot.config.js +35 -0
- package/toolbox.js +6163 -5544
- package/toolbox.js.map +1 -1
- package/markdown.js +0 -6644
- package/markdown.js.map +0 -1
package/mrs-toolbox-cli.d.ts
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
type Nullable<T> = T | null | undefined
|
|
2
2
|
export declare namespace kotlin.collections {
|
|
3
|
+
interface KtList<E> /* extends kotlin.collections.Collection<E> */ {
|
|
4
|
+
asJsReadonlyArrayView(): ReadonlyArray<E>;
|
|
5
|
+
readonly __doNotUseOrImplementIt: {
|
|
6
|
+
readonly "kotlin.collections.KtList": unique symbol;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
3
9
|
interface KtMap<K, V> {
|
|
4
10
|
asJsReadonlyMapView(): ReadonlyMap<K, V>;
|
|
5
11
|
readonly __doNotUseOrImplementIt: {
|
|
@@ -1769,6 +1775,40 @@ export declare namespace dto.relations {
|
|
|
1769
1775
|
};
|
|
1770
1776
|
}
|
|
1771
1777
|
}
|
|
1778
|
+
export declare namespace dto.users {
|
|
1779
|
+
class User {
|
|
1780
|
+
constructor(username?: Nullable<string>, password?: Nullable<string>, firstName?: Nullable<string>, lastName?: Nullable<string>, email?: Nullable<string>, groups?: Nullable<kotlin.collections.KtList<string>>);
|
|
1781
|
+
get username(): Nullable<string>;
|
|
1782
|
+
set username(value: Nullable<string>);
|
|
1783
|
+
get password(): Nullable<string>;
|
|
1784
|
+
set password(value: Nullable<string>);
|
|
1785
|
+
get firstName(): Nullable<string>;
|
|
1786
|
+
set firstName(value: Nullable<string>);
|
|
1787
|
+
get lastName(): Nullable<string>;
|
|
1788
|
+
set lastName(value: Nullable<string>);
|
|
1789
|
+
get email(): Nullable<string>;
|
|
1790
|
+
set email(value: Nullable<string>);
|
|
1791
|
+
get groups(): Nullable<kotlin.collections.KtList<string>>;
|
|
1792
|
+
set groups(value: Nullable<kotlin.collections.KtList<string>>);
|
|
1793
|
+
copy(username?: Nullable<string>, password?: Nullable<string>, firstName?: Nullable<string>, lastName?: Nullable<string>, email?: Nullable<string>, groups?: Nullable<kotlin.collections.KtList<string>>): dto.users.User;
|
|
1794
|
+
toString(): string;
|
|
1795
|
+
hashCode(): number;
|
|
1796
|
+
equals(other: Nullable<any>): boolean;
|
|
1797
|
+
static get Companion(): {
|
|
1798
|
+
};
|
|
1799
|
+
}
|
|
1800
|
+
}
|
|
1801
|
+
export declare namespace dto.users {
|
|
1802
|
+
class UserGroup {
|
|
1803
|
+
constructor();
|
|
1804
|
+
get name(): Nullable<string>;
|
|
1805
|
+
set name(value: Nullable<string>);
|
|
1806
|
+
get attributes(): Nullable<kotlin.collections.KtList<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>/* kotlinx.serialization.json.JsonObject */>>;
|
|
1807
|
+
set attributes(value: Nullable<kotlin.collections.KtList<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>/* kotlinx.serialization.json.JsonObject */>>);
|
|
1808
|
+
static get Companion(): {
|
|
1809
|
+
};
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1772
1812
|
export declare namespace dto.view {
|
|
1773
1813
|
interface Query {
|
|
1774
1814
|
filters: Array<dto.view.filters.Filter>;
|
|
@@ -2118,6 +2158,8 @@ export declare namespace dto.workflow {
|
|
|
2118
2158
|
set timeout(value: Nullable<number>);
|
|
2119
2159
|
get triggers(): Array<dto.workflow.triggers.WorkflowTrigger>;
|
|
2120
2160
|
set triggers(value: Array<dto.workflow.triggers.WorkflowTrigger>);
|
|
2161
|
+
get absolutePath(): Nullable<string>;
|
|
2162
|
+
set absolutePath(value: Nullable<string>);
|
|
2121
2163
|
readonly __doNotUseOrImplementIt: dto.WithName["__doNotUseOrImplementIt"];
|
|
2122
2164
|
static get Companion(): {
|
|
2123
2165
|
};
|
|
@@ -2170,7 +2212,7 @@ export declare namespace dto.workflow.triggers {
|
|
|
2170
2212
|
export declare namespace dto.workflow.triggers {
|
|
2171
2213
|
/* @ts-ignore: https://github.com/microsoft/TypeScript/issues/4628 */
|
|
2172
2214
|
class WorkflowEvent extends dto.workflow.triggers.WorkflowTrigger {
|
|
2173
|
-
constructor(type: dto.workflow.triggers.WorkflowTriggerType | undefined, regex: string, busType
|
|
2215
|
+
constructor(type: dto.workflow.triggers.WorkflowTriggerType | undefined, regex: string, busType?: dto.workflow.triggers.WorkflowBusType, credName?: string);
|
|
2174
2216
|
get type(): dto.workflow.triggers.WorkflowTriggerType;
|
|
2175
2217
|
get regex(): string;
|
|
2176
2218
|
get busType(): dto.workflow.triggers.WorkflowBusType;
|