mrs-toolbox-cli 0.0.72 → 0.0.73

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.
@@ -1 +1 @@
1
- 847921b31a14d1c55db429e98be2db31
1
+ fd6c80a2f809da862b52fefa8bc6e536
@@ -32,7 +32,7 @@
32
32
  function KotlinLogging() {
33
33
  KotlinLogging_instance = this;
34
34
  }
35
- protoOf(KotlinLogging).x57 = function (func) {
35
+ protoOf(KotlinLogging).z57 = function (func) {
36
36
  var tmp$ret$0;
37
37
  $l$block: {
38
38
  // Inline function 'io.github.oshai.kotlinlogging.internal.KLoggerNameResolver.name' call
@@ -52,9 +52,9 @@
52
52
  }
53
53
  tmp$ret$0 = '';
54
54
  }
55
- return this.y57(tmp$ret$0);
55
+ return this.a58(tmp$ret$0);
56
56
  };
57
- protoOf(KotlinLogging).y57 = function (name) {
57
+ protoOf(KotlinLogging).a58 = function (name) {
58
58
  var tmp$ret$0;
59
59
  // Inline function 'io.github.oshai.kotlinlogging.internal.KLoggerFactory.logger' call
60
60
  var tmp0_logger = KLoggerFactory_getInstance();
@@ -93,20 +93,20 @@
93
93
  }
94
94
  function Level(name, ordinal, levelInt, levelStr) {
95
95
  Enum.call(this, name, ordinal);
96
- this.b58_1 = levelInt;
97
- this.c58_1 = levelStr;
96
+ this.d58_1 = levelInt;
97
+ this.e58_1 = levelStr;
98
98
  }
99
99
  protoOf(Level).toString = function () {
100
- return this.c58_1;
100
+ return this.e58_1;
101
101
  };
102
102
  function Levels() {
103
103
  Levels_instance = this;
104
- this.d58_1 = 0;
105
- this.e58_1 = 10;
106
- this.f58_1 = 20;
107
- this.g58_1 = 30;
108
- this.h58_1 = 40;
109
- this.i58_1 = 50;
104
+ this.f58_1 = 0;
105
+ this.g58_1 = 10;
106
+ this.h58_1 = 20;
107
+ this.i58_1 = 30;
108
+ this.j58_1 = 40;
109
+ this.k58_1 = 50;
110
110
  }
111
111
  var Levels_instance;
112
112
  function Levels_getInstance() {
@@ -141,7 +141,7 @@
141
141
  function DefaultErrorMessageProducer() {
142
142
  DefaultErrorMessageProducer_instance = this;
143
143
  }
144
- protoOf(DefaultErrorMessageProducer).j58 = function (e) {
144
+ protoOf(DefaultErrorMessageProducer).l58 = function (e) {
145
145
  return 'Log message invocation failed: ' + e;
146
146
  };
147
147
  var DefaultErrorMessageProducer_instance;
@@ -153,13 +153,10 @@
153
153
  function ConsoleOutputAppender() {
154
154
  ConsoleOutputAppender_instance = this;
155
155
  }
156
- protoOf(ConsoleOutputAppender).k58 = function (message) {
156
+ protoOf(ConsoleOutputAppender).m58 = function (message) {
157
157
  return console.info(message);
158
158
  };
159
- protoOf(ConsoleOutputAppender).l58 = function (message) {
160
- return console.warn(message);
161
- };
162
- protoOf(ConsoleOutputAppender).m58 = function (message) {
159
+ protoOf(ConsoleOutputAppender).n58 = function (message) {
163
160
  return console.error(message);
164
161
  };
165
162
  var ConsoleOutputAppender_instance;
@@ -171,7 +168,7 @@
171
168
  function DefaultMessageFormatter() {
172
169
  DefaultMessageFormatter_instance = this;
173
170
  }
174
- protoOf(DefaultMessageFormatter).n58 = function (level, loggerName, msg) {
171
+ protoOf(DefaultMessageFormatter).o58 = function (level, loggerName, msg) {
175
172
  var tmp$ret$0;
176
173
  // Inline function 'io.github.oshai.kotlinlogging.internal.toStringSafe' call
177
174
  var tmp;
@@ -181,7 +178,7 @@
181
178
  var tmp_0;
182
179
  if ($p instanceof Exception) {
183
180
  var e = $p;
184
- tmp_0 = DefaultErrorMessageProducer_getInstance().j58(e);
181
+ tmp_0 = DefaultErrorMessageProducer_getInstance().l58(e);
185
182
  } else {
186
183
  throw $p;
187
184
  }
@@ -198,9 +195,9 @@
198
195
  }
199
196
  function KotlinLoggingConfiguration() {
200
197
  KotlinLoggingConfiguration_instance = this;
201
- this.o58_1 = Level_INFO_getInstance();
202
- this.p58_1 = ConsoleOutputAppender_getInstance();
203
- this.q58_1 = DefaultMessageFormatter_getInstance();
198
+ this.p58_1 = Level_INFO_getInstance();
199
+ this.q58_1 = ConsoleOutputAppender_getInstance();
200
+ this.r58_1 = DefaultMessageFormatter_getInstance();
204
201
  }
205
202
  var KotlinLoggingConfiguration_instance;
206
203
  function KotlinLoggingConfiguration_getInstance() {
@@ -209,7 +206,7 @@
209
206
  return KotlinLoggingConfiguration_instance;
210
207
  }
211
208
  function isLoggingEnabled(_this__u8e3s4) {
212
- return _this__u8e3s4.x6_1 >= KotlinLoggingConfiguration_getInstance().o58_1.x6_1;
209
+ return _this__u8e3s4.x6_1 >= KotlinLoggingConfiguration_getInstance().p58_1.x6_1;
213
210
  }
214
211
  function KLoggerFactory() {
215
212
  KLoggerFactory_instance = this;
@@ -222,53 +219,41 @@
222
219
  }
223
220
  function logIfEnabled(_this__u8e3s4, $this, loggerName, msg, logFunction) {
224
221
  if (isLoggingEnabled(_this__u8e3s4)) {
225
- logFunction(KotlinLoggingConfiguration_getInstance().q58_1.n58(_this__u8e3s4, loggerName, msg));
222
+ logFunction(KotlinLoggingConfiguration_getInstance().r58_1.o58(_this__u8e3s4, loggerName, msg));
226
223
  }
227
224
  }
228
225
  function Appender$info$ref($boundThis) {
229
226
  var l = function (p0) {
230
- $boundThis.k58(p0);
227
+ $boundThis.m58(p0);
231
228
  return Unit_getInstance();
232
229
  };
233
230
  l.callableName = 'info';
234
231
  return l;
235
232
  }
236
- function Appender$warn$ref($boundThis) {
237
- var l = function (p0) {
238
- $boundThis.l58(p0);
239
- return Unit_getInstance();
240
- };
241
- l.callableName = 'warn';
242
- return l;
243
- }
244
233
  function Appender$error$ref($boundThis) {
245
234
  var l = function (p0) {
246
- $boundThis.m58(p0);
235
+ $boundThis.n58(p0);
247
236
  return Unit_getInstance();
248
237
  };
249
238
  l.callableName = 'error';
250
239
  return l;
251
240
  }
252
241
  function KLoggerJS(name) {
253
- this.r58_1 = name;
254
- this.s58_1 = isLoggingEnabled(Level_TRACE_getInstance());
255
- this.t58_1 = isLoggingEnabled(Level_DEBUG_getInstance());
256
- this.u58_1 = isLoggingEnabled(Level_INFO_getInstance());
257
- this.v58_1 = isLoggingEnabled(Level_WARN_getInstance());
258
- this.w58_1 = isLoggingEnabled(Level_ERROR_getInstance());
259
- this.x58_1 = isLoggingEnabled(Level_OFF_getInstance());
242
+ this.s58_1 = name;
243
+ this.t58_1 = isLoggingEnabled(Level_TRACE_getInstance());
244
+ this.u58_1 = isLoggingEnabled(Level_DEBUG_getInstance());
245
+ this.v58_1 = isLoggingEnabled(Level_INFO_getInstance());
246
+ this.w58_1 = isLoggingEnabled(Level_WARN_getInstance());
247
+ this.x58_1 = isLoggingEnabled(Level_ERROR_getInstance());
248
+ this.y58_1 = isLoggingEnabled(Level_OFF_getInstance());
260
249
  }
261
- protoOf(KLoggerJS).y58 = function (msg) {
262
- var tmp = Level_INFO_getInstance();
263
- return logIfEnabled(tmp, this, this.r58_1, msg, Appender$info$ref(KotlinLoggingConfiguration_getInstance().p58_1));
264
- };
265
250
  protoOf(KLoggerJS).z58 = function (msg) {
266
- var tmp = Level_WARN_getInstance();
267
- return logIfEnabled(tmp, this, this.r58_1, msg, Appender$warn$ref(KotlinLoggingConfiguration_getInstance().p58_1));
251
+ var tmp = Level_INFO_getInstance();
252
+ return logIfEnabled(tmp, this, this.s58_1, msg, Appender$info$ref(KotlinLoggingConfiguration_getInstance().q58_1));
268
253
  };
269
254
  protoOf(KLoggerJS).a59 = function (msg) {
270
255
  var tmp = Level_ERROR_getInstance();
271
- return logIfEnabled(tmp, this, this.r58_1, msg, Appender$error$ref(KotlinLoggingConfiguration_getInstance().p58_1));
256
+ return logIfEnabled(tmp, this, this.s58_1, msg, Appender$error$ref(KotlinLoggingConfiguration_getInstance().q58_1));
272
257
  };
273
258
  function KLoggerNameResolver() {
274
259
  KLoggerNameResolver_instance = this;
@@ -1 +1 @@
1
- 910d25d8107c8d12dc869cb33509c603
1
+ ee6f32c76f7a6c99a29e051d28368608
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/commonMain/kotlin/io/github/oshai/kotlinlogging/KotlinLogging.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/internal/KLoggerFactory.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/commonMain/kotlin/io/github/oshai/kotlinlogging/Level.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/commonMain/kotlin/io/github/oshai/kotlinlogging/internal/MessageInvoker.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/ConsoleOutputAppender.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/DefaultMessageFormatter.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/KotlinLoggingLevel.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/internal/KLoggerJS.kt"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null],"names":["<init>","logger","func","found","exception","line","name","levelInt","levelStr","toString","getErrorLog","e","info","message","warn","error","formatMessage","level","loggerName","msg","isLoggingEnabled","<this>","logIfEnabled","logFunction","Appender$info$ref","Appender$info$ref$lambda","Appender$warn$ref","Appender$warn$ref$lambda","Appender$error$ref","Appender$error$ref$lambda"],"mappings":"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"}
1
+ {"version":3,"sources":["../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/commonMain/kotlin/io/github/oshai/kotlinlogging/KotlinLogging.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/internal/KLoggerFactory.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/commonMain/kotlin/io/github/oshai/kotlinlogging/Level.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/commonMain/kotlin/io/github/oshai/kotlinlogging/internal/MessageInvoker.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/ConsoleOutputAppender.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/DefaultMessageFormatter.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/KotlinLoggingLevel.kt","../../../../../../../../../Users/runner/work/kotlin-logging/kotlin-logging/src/jsMain/kotlin/io/github/oshai/kotlinlogging/internal/KLoggerJS.kt"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null],"names":["<init>","logger","func","found","exception","line","name","levelInt","levelStr","toString","getErrorLog","e","info","message","error","formatMessage","level","loggerName","msg","isLoggingEnabled","<this>","logIfEnabled","logFunction","Appender$info$ref","Appender$info$ref$lambda","Appender$error$ref","Appender$error$ref$lambda"],"mappings":"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"}
@@ -1 +1 @@
1
- a9b2701f4e5c605327b994bc97e82bf0
1
+ b6fb7f81591b5ac850623b7e0097cb17
@@ -2048,7 +2048,9 @@ export declare namespace dto.view.settings {
2048
2048
  get emptyList(): Nullable<dto.view.settings.EmptyList>;
2049
2049
  set emptyList(value: Nullable<dto.view.settings.EmptyList>);
2050
2050
  get type(): Nullable<dto.view.settings.SettingsType>;
2051
- static Settings_init_$Create$(seen1: number, columns: Nullable<Array<dto.view.settings.Column>>, height: Nullable<number>, dashboardUiConfig: Nullable<dto.view.settings.UiConfigType>, emptyList: Nullable<dto.view.settings.EmptyList>, type: Nullable<dto.view.settings.SettingsType>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.view.settings.Settings;
2051
+ get selectChildren(): Nullable<boolean>;
2052
+ get folderEmptyText(): Nullable<string>;
2053
+ static Settings_init_$Create$(seen1: number, columns: Nullable<Array<dto.view.settings.Column>>, height: Nullable<number>, dashboardUiConfig: Nullable<dto.view.settings.UiConfigType>, emptyList: Nullable<dto.view.settings.EmptyList>, type: Nullable<dto.view.settings.SettingsType>, selectChildren: Nullable<boolean>, folderEmptyText: Nullable<string>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.view.settings.Settings;
2052
2054
  static get Companion(): {
2053
2055
  serializer(): any/* kotlinx.serialization.KSerializer<dto.view.settings.Settings> */;
2054
2056
  };
@@ -2317,18 +2319,16 @@ export declare namespace types.internal {
2317
2319
  } & any/* kotlinx.serialization.internal.GeneratedSerializer<types.internal.Manifest> */;
2318
2320
  }
2319
2321
  class ManifestBuild {
2320
- constructor(version?: Nullable<string>, name?: Nullable<string>, modularViews?: Array<string>);
2322
+ constructor(version?: Nullable<string>, name?: Nullable<string>);
2321
2323
  get version(): Nullable<string>;
2322
2324
  set version(value: Nullable<string>);
2323
2325
  get name(): Nullable<string>;
2324
2326
  set name(value: Nullable<string>);
2325
- get modularViews(): Array<string>;
2326
- set modularViews(value: Array<string>);
2327
- copy(version?: Nullable<string>, name?: Nullable<string>, modularViews?: Array<string>): types.internal.ManifestBuild;
2327
+ copy(version?: Nullable<string>, name?: Nullable<string>): types.internal.ManifestBuild;
2328
2328
  toString(): string;
2329
2329
  hashCode(): number;
2330
2330
  equals(other: Nullable<any>): boolean;
2331
- static ManifestBuild_init_$Create$(seen1: number, version: Nullable<string>, name: Nullable<string>, modularViews: Nullable<Array<string>>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): types.internal.ManifestBuild;
2331
+ static ManifestBuild_init_$Create$(seen1: number, version: Nullable<string>, name: Nullable<string>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): types.internal.ManifestBuild;
2332
2332
  static get Companion(): {
2333
2333
  serializer(): any/* kotlinx.serialization.KSerializer<types.internal.ManifestBuild> */;
2334
2334
  };
@@ -1 +1 @@
1
- 7feced0ea1127c91cd61811cdcca674d
1
+ 740abbdc2b50e9d9c4a1bb9b402353ef
@@ -51,7 +51,7 @@
51
51
  var tmp$ret$1;
52
52
  // Inline function 'Auth.email$delegate.<anonymous>.<anonymous>' call
53
53
  tmp$ret$1 = "Email can't be empty!";
54
- $this$validate.b57(tmp$ret$1);
54
+ $this$validate.d57(tmp$ret$1);
55
55
  }
56
56
  return Unit_getInstance();
57
57
  }
@@ -65,7 +65,7 @@
65
65
  var tmp$ret$1;
66
66
  // Inline function 'Auth.password$delegate.<anonymous>.<anonymous>' call
67
67
  tmp$ret$1 = "Password can't be empty!";
68
- $this$validate.b57(tmp$ret$1);
68
+ $this$validate.d57(tmp$ret$1);
69
69
  }
70
70
  return Unit_getInstance();
71
71
  }
@@ -73,95 +73,95 @@
73
73
  CliktCommand.call(this, 'Auth to strapi');
74
74
  var tmp = this;
75
75
  var tmp_0 = prompt(option(this, ['-e', '--email'], 'Email for log in'));
76
- tmp.d67_1 = validate(tmp_0, Auth$email$delegate$lambda).y55(this, email$factory());
76
+ tmp.v65_1 = validate(tmp_0, Auth$email$delegate$lambda).a56(this, email$factory());
77
77
  var tmp_1 = this;
78
78
  var tmp_2 = prompt(option(this, ['-p', '--password'], 'Password for log in'));
79
- tmp_1.e67_1 = validate(tmp_2, Auth$password$delegate$lambda).y55(this, password$factory());
80
- this.f67_1 = optional(argument(this, VOID, 'Url to strapi server')).o54(this, url$factory());
81
- this.g67_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory());
82
- this.h67_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().a63()).y55(this, cwd$factory());
79
+ tmp_1.w65_1 = validate(tmp_2, Auth$password$delegate$lambda).a56(this, password$factory());
80
+ this.x65_1 = optional(argument(this, VOID, 'Url to strapi server')).q54(this, url$factory());
81
+ this.y65_1 = option(this, ['-c', '--config'], 'Config file name').a56(this, config$factory());
82
+ this.z65_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().h62()).a56(this, cwd$factory());
83
83
  }
84
- protoOf(Auth).i67 = function () {
85
- return this.d67_1.n54(this, email$factory_0());
84
+ protoOf(Auth).a66 = function () {
85
+ return this.v65_1.p54(this, email$factory_0());
86
86
  };
87
87
  protoOf(Auth).o20 = function () {
88
- return this.e67_1.n54(this, password$factory_0());
88
+ return this.w65_1.p54(this, password$factory_0());
89
89
  };
90
90
  protoOf(Auth).w29 = function () {
91
- return this.f67_1.n54(this, url$factory_0());
91
+ return this.x65_1.p54(this, url$factory_0());
92
92
  };
93
93
  protoOf(Auth).x27 = function () {
94
- return this.g67_1.n54(this, config$factory_0());
94
+ return this.y65_1.p54(this, config$factory_0());
95
95
  };
96
- protoOf(Auth).t63 = function () {
97
- return this.h67_1.n54(this, cwd$factory_0());
96
+ protoOf(Auth).a63 = function () {
97
+ return this.z65_1.p54(this, cwd$factory_0());
98
98
  };
99
99
  protoOf(Auth).wq = function () {
100
- CommandExecutor_getInstance().auth(this.i67(), this.o20(), this.w29(), this.t63(), this.x27());
100
+ CommandExecutor_getInstance().auth(this.a66(), this.o20(), this.w29(), this.a63(), this.x27());
101
101
  };
102
102
  function Test() {
103
103
  CliktCommand.call(this, 'Test hooks');
104
- this.a68_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_1());
105
- this.b68_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().a63()).y55(this, cwd$factory_1());
104
+ this.s66_1 = option(this, ['-c', '--config'], 'Config file name').a56(this, config$factory_1());
105
+ this.t66_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().h62()).a56(this, cwd$factory_1());
106
106
  }
107
107
  protoOf(Test).x27 = function () {
108
- return this.a68_1.n54(this, config$factory_2());
108
+ return this.s66_1.p54(this, config$factory_2());
109
109
  };
110
- protoOf(Test).t63 = function () {
111
- return this.b68_1.n54(this, cwd$factory_2());
110
+ protoOf(Test).a63 = function () {
111
+ return this.t66_1.p54(this, cwd$factory_2());
112
112
  };
113
113
  protoOf(Test).wq = function () {
114
- CommandExecutor_getInstance().test(this.t63(), this.x27());
114
+ CommandExecutor_getInstance().test(this.a63(), this.x27());
115
115
  };
116
116
  function Prepare() {
117
117
  CliktCommand.call(this, 'Prepare workspace');
118
- this.t68_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_3());
119
- this.u68_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().a63()).y55(this, cwd$factory_3());
118
+ this.l67_1 = option(this, ['-c', '--config'], 'Config file name').a56(this, config$factory_3());
119
+ this.m67_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().h62()).a56(this, cwd$factory_3());
120
120
  }
121
121
  protoOf(Prepare).x27 = function () {
122
- return this.t68_1.n54(this, config$factory_4());
122
+ return this.l67_1.p54(this, config$factory_4());
123
123
  };
124
- protoOf(Prepare).t63 = function () {
125
- return this.u68_1.n54(this, cwd$factory_4());
124
+ protoOf(Prepare).a63 = function () {
125
+ return this.m67_1.p54(this, cwd$factory_4());
126
126
  };
127
127
  protoOf(Prepare).wq = function () {
128
- CommandExecutor_getInstance().prepare(this.t63(), this.x27());
128
+ CommandExecutor_getInstance().prepare(this.a63(), this.x27());
129
129
  };
130
130
  function Export() {
131
131
  CliktCommand.call(this, 'Create export config for s3');
132
- this.m69_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_5());
133
- this.n69_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().a63()).y55(this, cwd$factory_5());
134
- this.o69_1 = flag(option(this, ['--autoUpdate'], 'Autoupdate config in s3 storage', VOID, true), [], false).y55(this, autoUpdate$factory());
135
- this.p69_1 = option(this, ['-v', '--version'], 'Version for build').y55(this, version$factory());
132
+ this.e68_1 = option(this, ['-c', '--config'], 'Config file name').a56(this, config$factory_5());
133
+ this.f68_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().h62()).a56(this, cwd$factory_5());
134
+ this.g68_1 = flag(option(this, ['--autoUpdate'], 'Autoupdate config in s3 storage', VOID, true), [], false).a56(this, autoUpdate$factory());
135
+ this.h68_1 = option(this, ['-v', '--version'], 'Version for build').a56(this, version$factory());
136
136
  }
137
137
  protoOf(Export).x27 = function () {
138
- return this.m69_1.n54(this, config$factory_6());
138
+ return this.e68_1.p54(this, config$factory_6());
139
139
  };
140
- protoOf(Export).t63 = function () {
141
- return this.n69_1.n54(this, cwd$factory_6());
140
+ protoOf(Export).a63 = function () {
141
+ return this.f68_1.p54(this, cwd$factory_6());
142
142
  };
143
143
  protoOf(Export).p4h = function () {
144
- return this.o69_1.n54(this, autoUpdate$factory_0());
144
+ return this.g68_1.p54(this, autoUpdate$factory_0());
145
145
  };
146
146
  protoOf(Export).d2b = function () {
147
- return this.p69_1.n54(this, version$factory_0());
147
+ return this.h68_1.p54(this, version$factory_0());
148
148
  };
149
149
  protoOf(Export).wq = function () {
150
- CommandExecutor_getInstance().export(this.p4h(), this.t63(), this.x27(), this.d2b());
150
+ CommandExecutor_getInstance().export(this.p4h(), this.a63(), this.x27(), this.d2b());
151
151
  };
152
152
  function Upload() {
153
153
  CliktCommand.call(this, 'Upload exportConfig to s3');
154
- this.h6a_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_7());
155
- this.i6a_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().a63()).y55(this, cwd$factory_7());
154
+ this.z68_1 = option(this, ['-c', '--config'], 'Config file name').a56(this, config$factory_7());
155
+ this.a69_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().h62()).a56(this, cwd$factory_7());
156
156
  }
157
157
  protoOf(Upload).x27 = function () {
158
- return this.h6a_1.n54(this, config$factory_8());
158
+ return this.z68_1.p54(this, config$factory_8());
159
159
  };
160
- protoOf(Upload).t63 = function () {
161
- return this.i6a_1.n54(this, cwd$factory_8());
160
+ protoOf(Upload).a63 = function () {
161
+ return this.a69_1.p54(this, cwd$factory_8());
162
162
  };
163
163
  protoOf(Upload).wq = function () {
164
- CommandExecutor_getInstance().upload(this.t63(), this.x27());
164
+ CommandExecutor_getInstance().upload(this.a63(), this.x27());
165
165
  };
166
166
  function Version() {
167
167
  CliktCommand.call(this, 'Get toolbox version');
@@ -171,21 +171,21 @@
171
171
  };
172
172
  function PullReferences() {
173
173
  CliktCommand.call(this, 'Pull references from Directus');
174
- this.r6b_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_9());
175
- this.s6b_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().a63()).y55(this, cwd$factory_9());
174
+ this.j6a_1 = option(this, ['-c', '--config'], 'Config file name').a56(this, config$factory_9());
175
+ this.k6a_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().h62()).a56(this, cwd$factory_9());
176
176
  }
177
177
  protoOf(PullReferences).x27 = function () {
178
- return this.r6b_1.n54(this, config$factory_10());
178
+ return this.j6a_1.p54(this, config$factory_10());
179
179
  };
180
- protoOf(PullReferences).t63 = function () {
181
- return this.s6b_1.n54(this, cwd$factory_10());
180
+ protoOf(PullReferences).a63 = function () {
181
+ return this.k6a_1.p54(this, cwd$factory_10());
182
182
  };
183
183
  protoOf(PullReferences).wq = function () {
184
- CommandExecutor_getInstance().pullReferences(this.t63(), this.x27());
184
+ CommandExecutor_getInstance().pullReferences(this.a63(), this.x27());
185
185
  };
186
186
  function email$factory() {
187
187
  return getPropertyCallableRef('email', 1, KProperty1, function (receiver) {
188
- return receiver.i67();
188
+ return receiver.a66();
189
189
  }, null);
190
190
  }
191
191
  function password$factory() {
@@ -205,12 +205,12 @@
205
205
  }
206
206
  function cwd$factory() {
207
207
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
208
- return receiver.t63();
208
+ return receiver.a63();
209
209
  }, null);
210
210
  }
211
211
  function email$factory_0() {
212
212
  return getPropertyCallableRef('email', 1, KProperty1, function (receiver) {
213
- return receiver.i67();
213
+ return receiver.a66();
214
214
  }, null);
215
215
  }
216
216
  function password$factory_0() {
@@ -230,7 +230,7 @@
230
230
  }
231
231
  function cwd$factory_0() {
232
232
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
233
- return receiver.t63();
233
+ return receiver.a63();
234
234
  }, null);
235
235
  }
236
236
  function config$factory_1() {
@@ -240,7 +240,7 @@
240
240
  }
241
241
  function cwd$factory_1() {
242
242
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
243
- return receiver.t63();
243
+ return receiver.a63();
244
244
  }, null);
245
245
  }
246
246
  function config$factory_2() {
@@ -250,7 +250,7 @@
250
250
  }
251
251
  function cwd$factory_2() {
252
252
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
253
- return receiver.t63();
253
+ return receiver.a63();
254
254
  }, null);
255
255
  }
256
256
  function config$factory_3() {
@@ -260,7 +260,7 @@
260
260
  }
261
261
  function cwd$factory_3() {
262
262
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
263
- return receiver.t63();
263
+ return receiver.a63();
264
264
  }, null);
265
265
  }
266
266
  function config$factory_4() {
@@ -270,7 +270,7 @@
270
270
  }
271
271
  function cwd$factory_4() {
272
272
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
273
- return receiver.t63();
273
+ return receiver.a63();
274
274
  }, null);
275
275
  }
276
276
  function config$factory_5() {
@@ -280,7 +280,7 @@
280
280
  }
281
281
  function cwd$factory_5() {
282
282
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
283
- return receiver.t63();
283
+ return receiver.a63();
284
284
  }, null);
285
285
  }
286
286
  function autoUpdate$factory() {
@@ -300,7 +300,7 @@
300
300
  }
301
301
  function cwd$factory_6() {
302
302
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
303
- return receiver.t63();
303
+ return receiver.a63();
304
304
  }, null);
305
305
  }
306
306
  function autoUpdate$factory_0() {
@@ -320,7 +320,7 @@
320
320
  }
321
321
  function cwd$factory_7() {
322
322
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
323
- return receiver.t63();
323
+ return receiver.a63();
324
324
  }, null);
325
325
  }
326
326
  function config$factory_8() {
@@ -330,7 +330,7 @@
330
330
  }
331
331
  function cwd$factory_8() {
332
332
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
333
- return receiver.t63();
333
+ return receiver.a63();
334
334
  }, null);
335
335
  }
336
336
  function config$factory_9() {
@@ -340,7 +340,7 @@
340
340
  }
341
341
  function cwd$factory_9() {
342
342
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
343
- return receiver.t63();
343
+ return receiver.a63();
344
344
  }, null);
345
345
  }
346
346
  function config$factory_10() {
@@ -350,7 +350,7 @@
350
350
  }
351
351
  function cwd$factory_10() {
352
352
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
353
- return receiver.t63();
353
+ return receiver.a63();
354
354
  }, null);
355
355
  }
356
356
  function main(args) {
@@ -358,7 +358,7 @@
358
358
  var argv = (!(tmp == null) ? isArray(tmp) : false) ? tmp : THROW_CCE();
359
359
  println(split(argv[0], [' ']));
360
360
  try {
361
- subcommands(new Mrsc(), [new Auth(), new Test(), new Prepare(), new Export(), new Upload(), new Version(), new PullReferences()]).d4x(split(argv[0], [' ']));
361
+ subcommands(new Mrsc(), [new Auth(), new Test(), new Prepare(), new Export(), new Upload(), new Version(), new PullReferences()]).f4x(split(argv[0], [' ']));
362
362
  } catch ($p) {
363
363
  if ($p instanceof Error) {
364
364
  var e = $p;
@@ -372,7 +372,7 @@
372
372
  tmp$ret$0 = ['--help'];
373
373
  tmp$ret$1 = tmp$ret$0;
374
374
  tmp$ret$2 = tmp$ret$1;
375
- tmp_0.t4x(tmp$ret$2);
375
+ tmp_0.v4x(tmp$ret$2);
376
376
  } else {
377
377
  throw $p;
378
378
  }
@@ -1 +1 @@
1
- d9c0a7884186ebabae051db25eaf8bd4
1
+ 44062221682cb23a13ab9d7145f4f446
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mrs-toolbox-cli",
3
- "version": "0.0.72",
3
+ "version": "0.0.73",
4
4
  "main": "mrs-toolbox-cli.js",
5
5
  "types": "mrs-toolbox-cli.d.ts",
6
6
  "devDependencies": {