mrs-toolbox-cli 0.0.128 → 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 +6171 -5650
- package/com.mrs.platform.configuration.dto.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +3751 -2810
- 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 +4441 -9010
- package/mordant-mordant.js.map +1 -1
- package/mrs-toolbox-cli.d.ts +52 -10
- 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: {
|
|
@@ -1571,6 +1577,8 @@ export declare namespace dto.query {
|
|
|
1571
1577
|
constructor();
|
|
1572
1578
|
get type(): dto.query.QueryType;
|
|
1573
1579
|
set type(value: dto.query.QueryType);
|
|
1580
|
+
get name(): string;
|
|
1581
|
+
set name(value: string);
|
|
1574
1582
|
get query(): Array<dto.query.RealmQuery>;
|
|
1575
1583
|
set query(value: Array<dto.query.RealmQuery>);
|
|
1576
1584
|
get pagination(): Nullable<dto.query.Pagination>;
|
|
@@ -1586,20 +1594,16 @@ export declare namespace dto.query {
|
|
|
1586
1594
|
export declare namespace dto.query {
|
|
1587
1595
|
abstract class QueryType {
|
|
1588
1596
|
private constructor();
|
|
1589
|
-
static get user(): dto.query.QueryType & {
|
|
1590
|
-
get name(): "user";
|
|
1591
|
-
get ordinal(): 0;
|
|
1592
|
-
};
|
|
1593
1597
|
static get formInstance(): dto.query.QueryType & {
|
|
1594
1598
|
get name(): "formInstance";
|
|
1595
|
-
get ordinal():
|
|
1599
|
+
get ordinal(): 0;
|
|
1596
1600
|
};
|
|
1597
1601
|
static get dictionary(): dto.query.QueryType & {
|
|
1598
1602
|
get name(): "dictionary";
|
|
1599
|
-
get ordinal():
|
|
1603
|
+
get ordinal(): 1;
|
|
1600
1604
|
};
|
|
1601
|
-
get name(): "
|
|
1602
|
-
get ordinal(): 0 | 1
|
|
1605
|
+
get name(): "formInstance" | "dictionary";
|
|
1606
|
+
get ordinal(): 0 | 1;
|
|
1603
1607
|
get code(): string;
|
|
1604
1608
|
static values(): Array<dto.query.QueryType>;
|
|
1605
1609
|
static valueOf(value: string): dto.query.QueryType;
|
|
@@ -1771,6 +1775,40 @@ export declare namespace dto.relations {
|
|
|
1771
1775
|
};
|
|
1772
1776
|
}
|
|
1773
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
|
+
}
|
|
1774
1812
|
export declare namespace dto.view {
|
|
1775
1813
|
interface Query {
|
|
1776
1814
|
filters: Array<dto.view.filters.Filter>;
|
|
@@ -1801,7 +1839,7 @@ export declare namespace dto.view {
|
|
|
1801
1839
|
}
|
|
1802
1840
|
export declare namespace dto.view {
|
|
1803
1841
|
class ViewDTO implements dto.view.Query, dto.WithName {
|
|
1804
|
-
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
|
|
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);
|
|
1805
1843
|
get viewType(): dto.view.ViewType;
|
|
1806
1844
|
set viewType(value: dto.view.ViewType);
|
|
1807
1845
|
get settings(): Nullable<kotlin.collections.KtMap<string, any/* kotlinx.serialization.json.JsonElement */>>/* Nullable<kotlinx.serialization.json.JsonObject> */;
|
|
@@ -1818,6 +1856,8 @@ export declare namespace dto.view {
|
|
|
1818
1856
|
set filters(value: Array<dto.view.filters.Filter>);
|
|
1819
1857
|
get queries(): Array<dto.view.QueryItem>;
|
|
1820
1858
|
set queries(value: Array<dto.view.QueryItem>);
|
|
1859
|
+
get autoSort(): boolean;
|
|
1860
|
+
set autoSort(value: boolean);
|
|
1821
1861
|
getSettings(): Nullable<string>;
|
|
1822
1862
|
readonly __doNotUseOrImplementIt: dto.view.Query["__doNotUseOrImplementIt"] & dto.WithName["__doNotUseOrImplementIt"];
|
|
1823
1863
|
static get Companion(): {
|
|
@@ -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;
|