mrs-toolbox-cli 0.0.71 → 0.0.72

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
- 3a0313ef09ee9108f26a05ecb59ace82
1
+ 847921b31a14d1c55db429e98be2db31
@@ -157,6 +157,9 @@
157
157
  return console.info(message);
158
158
  };
159
159
  protoOf(ConsoleOutputAppender).l58 = function (message) {
160
+ return console.warn(message);
161
+ };
162
+ protoOf(ConsoleOutputAppender).m58 = function (message) {
160
163
  return console.error(message);
161
164
  };
162
165
  var ConsoleOutputAppender_instance;
@@ -168,7 +171,7 @@
168
171
  function DefaultMessageFormatter() {
169
172
  DefaultMessageFormatter_instance = this;
170
173
  }
171
- protoOf(DefaultMessageFormatter).m58 = function (level, loggerName, msg) {
174
+ protoOf(DefaultMessageFormatter).n58 = function (level, loggerName, msg) {
172
175
  var tmp$ret$0;
173
176
  // Inline function 'io.github.oshai.kotlinlogging.internal.toStringSafe' call
174
177
  var tmp;
@@ -195,9 +198,9 @@
195
198
  }
196
199
  function KotlinLoggingConfiguration() {
197
200
  KotlinLoggingConfiguration_instance = this;
198
- this.n58_1 = Level_INFO_getInstance();
199
- this.o58_1 = ConsoleOutputAppender_getInstance();
200
- this.p58_1 = DefaultMessageFormatter_getInstance();
201
+ this.o58_1 = Level_INFO_getInstance();
202
+ this.p58_1 = ConsoleOutputAppender_getInstance();
203
+ this.q58_1 = DefaultMessageFormatter_getInstance();
201
204
  }
202
205
  var KotlinLoggingConfiguration_instance;
203
206
  function KotlinLoggingConfiguration_getInstance() {
@@ -206,7 +209,7 @@
206
209
  return KotlinLoggingConfiguration_instance;
207
210
  }
208
211
  function isLoggingEnabled(_this__u8e3s4) {
209
- return _this__u8e3s4.x6_1 >= KotlinLoggingConfiguration_getInstance().n58_1.x6_1;
212
+ return _this__u8e3s4.x6_1 >= KotlinLoggingConfiguration_getInstance().o58_1.x6_1;
210
213
  }
211
214
  function KLoggerFactory() {
212
215
  KLoggerFactory_instance = this;
@@ -219,7 +222,7 @@
219
222
  }
220
223
  function logIfEnabled(_this__u8e3s4, $this, loggerName, msg, logFunction) {
221
224
  if (isLoggingEnabled(_this__u8e3s4)) {
222
- logFunction(KotlinLoggingConfiguration_getInstance().p58_1.m58(_this__u8e3s4, loggerName, msg));
225
+ logFunction(KotlinLoggingConfiguration_getInstance().q58_1.n58(_this__u8e3s4, loggerName, msg));
223
226
  }
224
227
  }
225
228
  function Appender$info$ref($boundThis) {
@@ -230,30 +233,42 @@
230
233
  l.callableName = 'info';
231
234
  return l;
232
235
  }
233
- function Appender$error$ref($boundThis) {
236
+ function Appender$warn$ref($boundThis) {
234
237
  var l = function (p0) {
235
238
  $boundThis.l58(p0);
236
239
  return Unit_getInstance();
237
240
  };
241
+ l.callableName = 'warn';
242
+ return l;
243
+ }
244
+ function Appender$error$ref($boundThis) {
245
+ var l = function (p0) {
246
+ $boundThis.m58(p0);
247
+ return Unit_getInstance();
248
+ };
238
249
  l.callableName = 'error';
239
250
  return l;
240
251
  }
241
252
  function KLoggerJS(name) {
242
- this.q58_1 = name;
243
- this.r58_1 = isLoggingEnabled(Level_TRACE_getInstance());
244
- this.s58_1 = isLoggingEnabled(Level_DEBUG_getInstance());
245
- this.t58_1 = isLoggingEnabled(Level_INFO_getInstance());
246
- this.u58_1 = isLoggingEnabled(Level_WARN_getInstance());
247
- this.v58_1 = isLoggingEnabled(Level_ERROR_getInstance());
248
- this.w58_1 = isLoggingEnabled(Level_OFF_getInstance());
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());
249
260
  }
250
- protoOf(KLoggerJS).x58 = function (msg) {
261
+ protoOf(KLoggerJS).y58 = function (msg) {
251
262
  var tmp = Level_INFO_getInstance();
252
- return logIfEnabled(tmp, this, this.q58_1, msg, Appender$info$ref(KotlinLoggingConfiguration_getInstance().o58_1));
263
+ return logIfEnabled(tmp, this, this.r58_1, msg, Appender$info$ref(KotlinLoggingConfiguration_getInstance().p58_1));
253
264
  };
254
- protoOf(KLoggerJS).y58 = function (msg) {
265
+ 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));
268
+ };
269
+ protoOf(KLoggerJS).a59 = function (msg) {
255
270
  var tmp = Level_ERROR_getInstance();
256
- return logIfEnabled(tmp, this, this.q58_1, msg, Appender$error$ref(KotlinLoggingConfiguration_getInstance().o58_1));
271
+ return logIfEnabled(tmp, this, this.r58_1, msg, Appender$error$ref(KotlinLoggingConfiguration_getInstance().p58_1));
257
272
  };
258
273
  function KLoggerNameResolver() {
259
274
  KLoggerNameResolver_instance = this;
@@ -1 +1 @@
1
- 0bb3214fdeb246a1cd51193215ed1b73
1
+ 910d25d8107c8d12dc869cb33509c603
@@ -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","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
+ {"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 +1 @@
1
- b6fb7f81591b5ac850623b7e0097cb17
1
+ a9b2701f4e5c605327b994bc97e82bf0
@@ -2317,16 +2317,18 @@ export declare namespace types.internal {
2317
2317
  } & any/* kotlinx.serialization.internal.GeneratedSerializer<types.internal.Manifest> */;
2318
2318
  }
2319
2319
  class ManifestBuild {
2320
- constructor(version?: Nullable<string>, name?: Nullable<string>);
2320
+ constructor(version?: Nullable<string>, name?: Nullable<string>, modularViews?: Array<string>);
2321
2321
  get version(): Nullable<string>;
2322
2322
  set version(value: Nullable<string>);
2323
2323
  get name(): Nullable<string>;
2324
2324
  set name(value: Nullable<string>);
2325
- copy(version?: Nullable<string>, name?: Nullable<string>): types.internal.ManifestBuild;
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;
2326
2328
  toString(): string;
2327
2329
  hashCode(): number;
2328
2330
  equals(other: Nullable<any>): boolean;
2329
- static ManifestBuild_init_$Create$(seen1: number, version: Nullable<string>, name: Nullable<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>, modularViews: Nullable<Array<string>>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): types.internal.ManifestBuild;
2330
2332
  static get Companion(): {
2331
2333
  serializer(): any/* kotlinx.serialization.KSerializer<types.internal.ManifestBuild> */;
2332
2334
  };
@@ -1 +1 @@
1
- 7a73ec5e3b4ba5d9ad826ab627882ac2
1
+ 7feced0ea1127c91cd61811cdcca674d
@@ -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.t65_1 = validate(tmp_0, Auth$email$delegate$lambda).y55(this, email$factory());
76
+ tmp.d67_1 = validate(tmp_0, Auth$email$delegate$lambda).y55(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.u65_1 = validate(tmp_2, Auth$password$delegate$lambda).y55(this, password$factory());
80
- this.v65_1 = optional(argument(this, VOID, 'Url to strapi server')).o54(this, url$factory());
81
- this.w65_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory());
82
- this.x65_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().f62()).y55(this, cwd$factory());
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());
83
83
  }
84
- protoOf(Auth).y65 = function () {
85
- return this.t65_1.n54(this, email$factory_0());
84
+ protoOf(Auth).i67 = function () {
85
+ return this.d67_1.n54(this, email$factory_0());
86
86
  };
87
87
  protoOf(Auth).o20 = function () {
88
- return this.u65_1.n54(this, password$factory_0());
88
+ return this.e67_1.n54(this, password$factory_0());
89
89
  };
90
90
  protoOf(Auth).w29 = function () {
91
- return this.v65_1.n54(this, url$factory_0());
91
+ return this.f67_1.n54(this, url$factory_0());
92
92
  };
93
93
  protoOf(Auth).x27 = function () {
94
- return this.w65_1.n54(this, config$factory_0());
94
+ return this.g67_1.n54(this, config$factory_0());
95
95
  };
96
- protoOf(Auth).y62 = function () {
97
- return this.x65_1.n54(this, cwd$factory_0());
96
+ protoOf(Auth).t63 = function () {
97
+ return this.h67_1.n54(this, cwd$factory_0());
98
98
  };
99
99
  protoOf(Auth).wq = function () {
100
- CommandExecutor_getInstance().auth(this.y65(), this.o20(), this.w29(), this.y62(), this.x27());
100
+ CommandExecutor_getInstance().auth(this.i67(), this.o20(), this.w29(), this.t63(), this.x27());
101
101
  };
102
102
  function Test() {
103
103
  CliktCommand.call(this, 'Test hooks');
104
- this.q66_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_1());
105
- this.r66_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().f62()).y55(this, cwd$factory_1());
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());
106
106
  }
107
107
  protoOf(Test).x27 = function () {
108
- return this.q66_1.n54(this, config$factory_2());
108
+ return this.a68_1.n54(this, config$factory_2());
109
109
  };
110
- protoOf(Test).y62 = function () {
111
- return this.r66_1.n54(this, cwd$factory_2());
110
+ protoOf(Test).t63 = function () {
111
+ return this.b68_1.n54(this, cwd$factory_2());
112
112
  };
113
113
  protoOf(Test).wq = function () {
114
- CommandExecutor_getInstance().test(this.y62(), this.x27());
114
+ CommandExecutor_getInstance().test(this.t63(), this.x27());
115
115
  };
116
116
  function Prepare() {
117
117
  CliktCommand.call(this, 'Prepare workspace');
118
- this.j67_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_3());
119
- this.k67_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().f62()).y55(this, cwd$factory_3());
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());
120
120
  }
121
121
  protoOf(Prepare).x27 = function () {
122
- return this.j67_1.n54(this, config$factory_4());
122
+ return this.t68_1.n54(this, config$factory_4());
123
123
  };
124
- protoOf(Prepare).y62 = function () {
125
- return this.k67_1.n54(this, cwd$factory_4());
124
+ protoOf(Prepare).t63 = function () {
125
+ return this.u68_1.n54(this, cwd$factory_4());
126
126
  };
127
127
  protoOf(Prepare).wq = function () {
128
- CommandExecutor_getInstance().prepare(this.y62(), this.x27());
128
+ CommandExecutor_getInstance().prepare(this.t63(), this.x27());
129
129
  };
130
130
  function Export() {
131
131
  CliktCommand.call(this, 'Create export config for s3');
132
- this.c68_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_5());
133
- this.d68_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().f62()).y55(this, cwd$factory_5());
134
- this.e68_1 = flag(option(this, ['--autoUpdate'], 'Autoupdate config in s3 storage', VOID, true), [], false).y55(this, autoUpdate$factory());
135
- this.f68_1 = option(this, ['-v', '--version'], 'Version for build').y55(this, version$factory());
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());
136
136
  }
137
137
  protoOf(Export).x27 = function () {
138
- return this.c68_1.n54(this, config$factory_6());
138
+ return this.m69_1.n54(this, config$factory_6());
139
139
  };
140
- protoOf(Export).y62 = function () {
141
- return this.d68_1.n54(this, cwd$factory_6());
140
+ protoOf(Export).t63 = function () {
141
+ return this.n69_1.n54(this, cwd$factory_6());
142
142
  };
143
143
  protoOf(Export).p4h = function () {
144
- return this.e68_1.n54(this, autoUpdate$factory_0());
144
+ return this.o69_1.n54(this, autoUpdate$factory_0());
145
145
  };
146
146
  protoOf(Export).d2b = function () {
147
- return this.f68_1.n54(this, version$factory_0());
147
+ return this.p69_1.n54(this, version$factory_0());
148
148
  };
149
149
  protoOf(Export).wq = function () {
150
- CommandExecutor_getInstance().export(this.p4h(), this.y62(), this.x27(), this.d2b());
150
+ CommandExecutor_getInstance().export(this.p4h(), this.t63(), this.x27(), this.d2b());
151
151
  };
152
152
  function Upload() {
153
153
  CliktCommand.call(this, 'Upload exportConfig to s3');
154
- this.x68_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_7());
155
- this.y68_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().f62()).y55(this, cwd$factory_7());
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());
156
156
  }
157
157
  protoOf(Upload).x27 = function () {
158
- return this.x68_1.n54(this, config$factory_8());
158
+ return this.h6a_1.n54(this, config$factory_8());
159
159
  };
160
- protoOf(Upload).y62 = function () {
161
- return this.y68_1.n54(this, cwd$factory_8());
160
+ protoOf(Upload).t63 = function () {
161
+ return this.i6a_1.n54(this, cwd$factory_8());
162
162
  };
163
163
  protoOf(Upload).wq = function () {
164
- CommandExecutor_getInstance().upload(this.y62(), this.x27());
164
+ CommandExecutor_getInstance().upload(this.t63(), 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.h6a_1 = option(this, ['-c', '--config'], 'Config file name').y55(this, config$factory_9());
175
- this.i6a_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_getInstance().f62()).y55(this, cwd$factory_9());
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());
176
176
  }
177
177
  protoOf(PullReferences).x27 = function () {
178
- return this.h6a_1.n54(this, config$factory_10());
178
+ return this.r6b_1.n54(this, config$factory_10());
179
179
  };
180
- protoOf(PullReferences).y62 = function () {
181
- return this.i6a_1.n54(this, cwd$factory_10());
180
+ protoOf(PullReferences).t63 = function () {
181
+ return this.s6b_1.n54(this, cwd$factory_10());
182
182
  };
183
183
  protoOf(PullReferences).wq = function () {
184
- CommandExecutor_getInstance().pullReferences(this.y62(), this.x27());
184
+ CommandExecutor_getInstance().pullReferences(this.t63(), this.x27());
185
185
  };
186
186
  function email$factory() {
187
187
  return getPropertyCallableRef('email', 1, KProperty1, function (receiver) {
188
- return receiver.y65();
188
+ return receiver.i67();
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.y62();
208
+ return receiver.t63();
209
209
  }, null);
210
210
  }
211
211
  function email$factory_0() {
212
212
  return getPropertyCallableRef('email', 1, KProperty1, function (receiver) {
213
- return receiver.y65();
213
+ return receiver.i67();
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.y62();
233
+ return receiver.t63();
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.y62();
243
+ return receiver.t63();
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.y62();
253
+ return receiver.t63();
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.y62();
263
+ return receiver.t63();
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.y62();
273
+ return receiver.t63();
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.y62();
283
+ return receiver.t63();
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.y62();
303
+ return receiver.t63();
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.y62();
323
+ return receiver.t63();
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.y62();
333
+ return receiver.t63();
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.y62();
343
+ return receiver.t63();
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.y62();
353
+ return receiver.t63();
354
354
  }, null);
355
355
  }
356
356
  function main(args) {
@@ -1 +1 @@
1
- 90fa5c449784f94681971297ade657d4
1
+ d9c0a7884186ebabae051db25eaf8bd4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mrs-toolbox-cli",
3
- "version": "0.0.71",
3
+ "version": "0.0.72",
4
4
  "main": "mrs-toolbox-cli.js",
5
5
  "types": "mrs-toolbox-cli.d.ts",
6
6
  "devDependencies": {