mrs-toolbox-cli 0.0.129 → 0.0.131

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.
Files changed (49) hide show
  1. package/88b0986a7186d029-atomicfu-js-ir.js +19 -19
  2. package/clikt-clikt-mordant.js +245 -0
  3. package/clikt-clikt-mordant.js.map +1 -0
  4. package/clikt-clikt.js +3345 -3129
  5. package/clikt-clikt.js.map +1 -1
  6. package/colormath-root-colormath.js +806 -611
  7. package/colormath-root-colormath.js.map +1 -1
  8. package/com.mrs.platform.configuration.dto.js +6125 -5640
  9. package/com.mrs.platform.configuration.dto.js.map +1 -1
  10. package/kotlin-kotlin-stdlib.js +3750 -2808
  11. package/kotlin-kotlin-stdlib.js.map +1 -1
  12. package/kotlin-logging-js-ir.js +47 -47
  13. package/kotlin-node.js +1 -1
  14. package/kotlinx-serialization-kotlinx-serialization-core.js +2084 -2056
  15. package/kotlinx-serialization-kotlinx-serialization-core.js.map +1 -1
  16. package/kotlinx-serialization-kotlinx-serialization-json.js +1640 -1629
  17. package/kotlinx-serialization-kotlinx-serialization-json.js.map +1 -1
  18. package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +2124 -2101
  19. package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js.map +1 -1
  20. package/ktor-ktor-client-content-negotiation.js +223 -223
  21. package/ktor-ktor-client-content-negotiation.js.map +1 -1
  22. package/ktor-ktor-client-core.js +2531 -2532
  23. package/ktor-ktor-client-core.js.map +1 -1
  24. package/ktor-ktor-events.js +13 -13
  25. package/ktor-ktor-http.js +702 -703
  26. package/ktor-ktor-http.js.map +1 -1
  27. package/ktor-ktor-io.js +1583 -1583
  28. package/ktor-ktor-io.js.map +1 -1
  29. package/ktor-ktor-serialization-kotlinx-json.js +8 -8
  30. package/ktor-ktor-serialization-kotlinx.js +265 -265
  31. package/ktor-ktor-serialization.js +126 -126
  32. package/ktor-ktor-utils.js +519 -519
  33. package/ktor-ktor-utils.js.map +1 -1
  34. package/ktor-ktor-websockets.js +60 -60
  35. package/ktor-ktor-websockets.js.map +1 -1
  36. package/mordant-mordant-omnibus.js +8 -0
  37. package/mordant-mordant-omnibus.js.map +1 -0
  38. package/mordant-mordant.js +4442 -9011
  39. package/mordant-mordant.js.map +1 -1
  40. package/mrs-toolbox-cli.d.ts +43 -1
  41. package/mrs-toolbox-cli.js +1020 -145
  42. package/mrs-toolbox-cli.js.map +1 -1
  43. package/package.json +1 -1
  44. package/static/init/hooks.webpack.config.js +35 -0
  45. package/static/init/webpackRoot.config.js +35 -0
  46. package/toolbox.js +6193 -5547
  47. package/toolbox.js.map +1 -1
  48. package/markdown.js +0 -6644
  49. package/markdown.js.map +0 -1
@@ -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: dto.workflow.triggers.WorkflowBusType, credName?: string);
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;