mrs-toolbox-cli 0.0.113 → 0.0.114

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.
@@ -1802,8 +1802,10 @@ export declare namespace dto.query {
1802
1802
  set pagination(value: Nullable<dto.query.Pagination>);
1803
1803
  get sort(): Nullable<Array<dto.query.Sort>>;
1804
1804
  set sort(value: Nullable<Array<dto.query.Sort>>);
1805
+ get selectionType(): dto.query.SelectionType;
1806
+ set selectionType(value: dto.query.SelectionType);
1805
1807
  /** @deprecated This synthesized declaration should not be used directly */
1806
- static Query_init_$Create$(seen1: number, type: Nullable<dto.query.QueryType>, query: Nullable<Array<dto.query.RealmQuery>>, pagination: Nullable<dto.query.Pagination>, sort: Nullable<Array<dto.query.Sort>>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.query.Query;
1808
+ static Query_init_$Create$(seen1: number, type: Nullable<dto.query.QueryType>, query: Nullable<Array<dto.query.RealmQuery>>, pagination: Nullable<dto.query.Pagination>, sort: Nullable<Array<dto.query.Sort>>, selectionType: Nullable<dto.query.SelectionType>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.query.Query;
1807
1809
  static get Companion(): {
1808
1810
  serializer(): any/* kotlinx.serialization.KSerializer<dto.query.Query> */;
1809
1811
  };
@@ -1860,6 +1862,27 @@ export declare namespace dto.query {
1860
1862
  } & any/* kotlinx.serialization.internal.GeneratedSerializer<dto.query.RealmQuery> */;
1861
1863
  }
1862
1864
  }
1865
+ export declare namespace dto.query {
1866
+ abstract class SelectionType {
1867
+ private constructor();
1868
+ get type(): string;
1869
+ static get DEFAULT(): dto.query.SelectionType & {
1870
+ get name(): "DEFAULT";
1871
+ get ordinal(): 0;
1872
+ };
1873
+ static get COUNT(): dto.query.SelectionType & {
1874
+ get name(): "COUNT";
1875
+ get ordinal(): 1;
1876
+ };
1877
+ static values(): Array<dto.query.SelectionType>;
1878
+ static valueOf(value: string): dto.query.SelectionType;
1879
+ get name(): "DEFAULT" | "COUNT";
1880
+ get ordinal(): 0 | 1;
1881
+ static get Companion(): {
1882
+ serializer(): any/* kotlinx.serialization.KSerializer<dto.query.SelectionType> */;
1883
+ } & any/* kotlinx.serialization.internal.SerializerFactory */;
1884
+ }
1885
+ }
1863
1886
  export declare namespace dto.query {
1864
1887
  class Sort {
1865
1888
  constructor();
@@ -2559,16 +2582,12 @@ export declare namespace dto.workflow {
2559
2582
  set name(value: string);
2560
2583
  get path(): Nullable<string>;
2561
2584
  set path(value: Nullable<string>);
2562
- get regexString(): Nullable<string>;
2563
- set regexString(value: Nullable<string>);
2564
- get script(): Nullable<string>;
2565
- set script(value: Nullable<string>);
2566
2585
  get timeout(): Nullable<number>;
2567
2586
  set timeout(value: Nullable<number>);
2568
- get cronExpression(): Nullable<string>;
2569
- set cronExpression(value: Nullable<string>);
2587
+ get triggers(): Array<dto.workflow.triggers.WorkflowTrigger>;
2588
+ set triggers(value: Array<dto.workflow.triggers.WorkflowTrigger>);
2570
2589
  /** @deprecated This synthesized declaration should not be used directly */
2571
- static WorkflowDTO_init_$Create$(seen1: number, name: Nullable<string>, path: Nullable<string>, regexString: Nullable<string>, script: Nullable<string>, timeout: Nullable<number>, cronExpression: Nullable<string>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.workflow.WorkflowDTO;
2590
+ static WorkflowDTO_init_$Create$(seen1: number, name: Nullable<string>, path: Nullable<string>, timeout: Nullable<number>, triggers: Nullable<Array<dto.workflow.triggers.WorkflowTrigger>>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.workflow.WorkflowDTO;
2572
2591
  readonly __doNotUseOrImplementIt: dto.WithName["__doNotUseOrImplementIt"];
2573
2592
  static get Companion(): {
2574
2593
  serializer(): any/* kotlinx.serialization.KSerializer<dto.workflow.WorkflowDTO> */;
@@ -2580,13 +2599,11 @@ export declare namespace dto.workflow {
2580
2599
  }
2581
2600
  export declare namespace dto.workflow {
2582
2601
  class WorkflowQuery implements dto.WithName {
2583
- constructor(name: string, path: string);
2602
+ constructor(name: string);
2584
2603
  get name(): string;
2585
2604
  set name(value: string);
2586
- get path(): string;
2587
- set path(value: string);
2588
2605
  /** @deprecated This synthesized declaration should not be used directly */
2589
- static WorkflowQuery_init_$Create$(seen1: number, name: Nullable<string>, path: Nullable<string>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.workflow.WorkflowQuery;
2606
+ static WorkflowQuery_init_$Create$(seen1: number, name: Nullable<string>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.workflow.WorkflowQuery;
2590
2607
  readonly __doNotUseOrImplementIt: dto.WithName["__doNotUseOrImplementIt"];
2591
2608
  static get Companion(): {
2592
2609
  serializer(): any/* kotlinx.serialization.KSerializer<dto.workflow.WorkflowQuery> */;
@@ -2596,6 +2613,122 @@ export declare namespace dto.workflow {
2596
2613
  } & any/* kotlinx.serialization.internal.GeneratedSerializer<dto.workflow.WorkflowQuery> */;
2597
2614
  }
2598
2615
  }
2616
+ export declare namespace dto.workflow.triggers {
2617
+ abstract class WorkflowBusType {
2618
+ private constructor();
2619
+ get code(): string;
2620
+ static get rabbitmq(): dto.workflow.triggers.WorkflowBusType & {
2621
+ get name(): "rabbitmq";
2622
+ get ordinal(): 0;
2623
+ };
2624
+ static get kafka(): dto.workflow.triggers.WorkflowBusType & {
2625
+ get name(): "kafka";
2626
+ get ordinal(): 1;
2627
+ };
2628
+ static values(): Array<dto.workflow.triggers.WorkflowBusType>;
2629
+ static valueOf(value: string): dto.workflow.triggers.WorkflowBusType;
2630
+ get name(): "rabbitmq" | "kafka";
2631
+ get ordinal(): 0 | 1;
2632
+ static get Companion(): {
2633
+ serializer(): any/* kotlinx.serialization.KSerializer<dto.workflow.triggers.WorkflowBusType> */;
2634
+ } & any/* kotlinx.serialization.internal.SerializerFactory */;
2635
+ }
2636
+ }
2637
+ export declare namespace dto.workflow.triggers {
2638
+ class WorkflowCron extends dto.workflow.triggers.WorkflowTrigger {
2639
+ constructor(type: dto.workflow.triggers.WorkflowTriggerType | undefined, expression: string);
2640
+ get type(): dto.workflow.triggers.WorkflowTriggerType;
2641
+ get expression(): string;
2642
+ copy(type?: dto.workflow.triggers.WorkflowTriggerType, expression?: string): dto.workflow.triggers.WorkflowCron;
2643
+ toString(): string;
2644
+ hashCode(): number;
2645
+ equals(other: Nullable<any>): boolean;
2646
+ /** @deprecated This synthesized declaration should not be used directly */
2647
+ static WorkflowCron_init_$Create$(seen1: number, type: Nullable<dto.workflow.triggers.WorkflowTriggerType>, expression: Nullable<string>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.workflow.triggers.WorkflowCron;
2648
+ static get Companion(): {
2649
+ serializer(): any/* kotlinx.serialization.KSerializer<dto.workflow.triggers.WorkflowCron> */;
2650
+ };
2651
+ /** @deprecated This synthesized declaration should not be used directly */
2652
+ static get $serializer(): {
2653
+ } & any/* kotlinx.serialization.internal.GeneratedSerializer<dto.workflow.triggers.WorkflowCron> */;
2654
+ }
2655
+ }
2656
+ export declare namespace dto.workflow.triggers {
2657
+ class WorkflowEvent extends dto.workflow.triggers.WorkflowTrigger {
2658
+ constructor(type: dto.workflow.triggers.WorkflowTriggerType | undefined, regex: string, busType: dto.workflow.triggers.WorkflowBusType, credName?: string);
2659
+ get type(): dto.workflow.triggers.WorkflowTriggerType;
2660
+ get regex(): string;
2661
+ get busType(): dto.workflow.triggers.WorkflowBusType;
2662
+ get credName(): string;
2663
+ copy(type?: dto.workflow.triggers.WorkflowTriggerType, regex?: string, busType?: dto.workflow.triggers.WorkflowBusType, credName?: string): dto.workflow.triggers.WorkflowEvent;
2664
+ toString(): string;
2665
+ hashCode(): number;
2666
+ equals(other: Nullable<any>): boolean;
2667
+ /** @deprecated This synthesized declaration should not be used directly */
2668
+ static WorkflowEvent_init_$Create$(seen1: number, type: Nullable<dto.workflow.triggers.WorkflowTriggerType>, regex: Nullable<string>, busType: Nullable<dto.workflow.triggers.WorkflowBusType>, credName: Nullable<string>, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.workflow.triggers.WorkflowEvent;
2669
+ static get Companion(): {
2670
+ serializer(): any/* kotlinx.serialization.KSerializer<dto.workflow.triggers.WorkflowEvent> */;
2671
+ };
2672
+ /** @deprecated This synthesized declaration should not be used directly */
2673
+ static get $serializer(): {
2674
+ } & any/* kotlinx.serialization.internal.GeneratedSerializer<dto.workflow.triggers.WorkflowEvent> */;
2675
+ }
2676
+ }
2677
+ export declare namespace dto.workflow.triggers {
2678
+ class WorkflowRest extends dto.workflow.triggers.WorkflowTrigger {
2679
+ constructor(type?: dto.workflow.triggers.WorkflowTriggerType, isEnabled?: boolean);
2680
+ get type(): dto.workflow.triggers.WorkflowTriggerType;
2681
+ get isEnabled(): boolean;
2682
+ copy(type?: dto.workflow.triggers.WorkflowTriggerType, isEnabled?: boolean): dto.workflow.triggers.WorkflowRest;
2683
+ toString(): string;
2684
+ hashCode(): number;
2685
+ equals(other: Nullable<any>): boolean;
2686
+ /** @deprecated This synthesized declaration should not be used directly */
2687
+ static WorkflowRest_init_$Create$(seen1: number, type: Nullable<dto.workflow.triggers.WorkflowTriggerType>, isEnabled: boolean, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.workflow.triggers.WorkflowRest;
2688
+ static get Companion(): {
2689
+ serializer(): any/* kotlinx.serialization.KSerializer<dto.workflow.triggers.WorkflowRest> */;
2690
+ };
2691
+ /** @deprecated This synthesized declaration should not be used directly */
2692
+ static get $serializer(): {
2693
+ } & any/* kotlinx.serialization.internal.GeneratedSerializer<dto.workflow.triggers.WorkflowRest> */;
2694
+ }
2695
+ }
2696
+ export declare namespace dto.workflow.triggers {
2697
+ abstract class WorkflowTrigger {
2698
+ protected constructor();
2699
+ abstract get type(): dto.workflow.triggers.WorkflowTriggerType;
2700
+ /** @deprecated This synthesized declaration should not be used directly */
2701
+ static WorkflowTrigger_init_$Create$(seen1: number, serializationConstructorMarker: Nullable<any>/* Nullable<kotlinx.serialization.internal.SerializationConstructorMarker> */): dto.workflow.triggers.WorkflowTrigger;
2702
+ static get Companion(): {
2703
+ serializer(): any/* kotlinx.serialization.KSerializer<dto.workflow.triggers.WorkflowTrigger> */;
2704
+ } & any/* kotlinx.serialization.internal.SerializerFactory */;
2705
+ }
2706
+ }
2707
+ export declare namespace dto.workflow.triggers {
2708
+ abstract class WorkflowTriggerType {
2709
+ private constructor();
2710
+ get code(): string;
2711
+ static get cron(): dto.workflow.triggers.WorkflowTriggerType & {
2712
+ get name(): "cron";
2713
+ get ordinal(): 0;
2714
+ };
2715
+ static get rest(): dto.workflow.triggers.WorkflowTriggerType & {
2716
+ get name(): "rest";
2717
+ get ordinal(): 1;
2718
+ };
2719
+ static get event(): dto.workflow.triggers.WorkflowTriggerType & {
2720
+ get name(): "event";
2721
+ get ordinal(): 2;
2722
+ };
2723
+ static values(): Array<dto.workflow.triggers.WorkflowTriggerType>;
2724
+ static valueOf(value: string): dto.workflow.triggers.WorkflowTriggerType;
2725
+ get name(): "cron" | "rest" | "event";
2726
+ get ordinal(): 0 | 1 | 2;
2727
+ static get Companion(): {
2728
+ serializer(): any/* kotlinx.serialization.KSerializer<dto.workflow.triggers.WorkflowTriggerType> */;
2729
+ } & any/* kotlinx.serialization.internal.SerializerFactory */;
2730
+ }
2731
+ }
2599
2732
  export declare namespace types {
2600
2733
  class Component {
2601
2734
  constructor(type: string, fieldName?: Nullable<string>, schemaType?: Nullable<string>, viewType?: Nullable<string>);
@@ -48,7 +48,7 @@
48
48
  if (!(charSequenceLength(it) > 0)) {
49
49
  // Inline function 'Auth.email$delegate.<anonymous>.<anonymous>' call
50
50
  var tmp$ret$1 = "Email can't be empty!";
51
- $this$copy.c7o(tmp$ret$1);
51
+ $this$copy.e7p(tmp$ret$1);
52
52
  }
53
53
  }
54
54
  return Unit_instance;
@@ -61,7 +61,7 @@
61
61
  if (!(charSequenceLength(it) > 0)) {
62
62
  // Inline function 'Auth.password$delegate.<anonymous>.<anonymous>' call
63
63
  var tmp$ret$1 = "Password can't be empty!";
64
- $this$copy.c7o(tmp$ret$1);
64
+ $this$copy.e7p(tmp$ret$1);
65
65
  }
66
66
  }
67
67
  return Unit_instance;
@@ -71,102 +71,102 @@
71
71
  var tmp = this;
72
72
  // Inline function 'com.github.ajalt.clikt.parameters.options.validate' call
73
73
  var this_0 = prompt(option(this, ['-e', '--email'], 'Email for log in'));
74
- var tmp_0 = this_0.u7n();
75
- var tmp_1 = this_0.w7o();
76
- var tmp_2 = this_0.v7n();
77
- tmp.f7t_1 = this_0.x7o(tmp_0, tmp_1, tmp_2, Auth$email$delegate$lambda).d7p(this, email$factory());
74
+ var tmp_0 = this_0.w7o();
75
+ var tmp_1 = this_0.y7p();
76
+ var tmp_2 = this_0.x7o();
77
+ tmp.h7u_1 = this_0.z7p(tmp_0, tmp_1, tmp_2, Auth$email$delegate$lambda).f7q(this, email$factory());
78
78
  var tmp_3 = this;
79
79
  // Inline function 'com.github.ajalt.clikt.parameters.options.validate' call
80
80
  var this_1 = prompt(option(this, ['-p', '--password'], 'Password for log in'));
81
- var tmp_4 = this_1.u7n();
82
- var tmp_5 = this_1.w7o();
83
- var tmp_6 = this_1.v7n();
84
- tmp_3.g7t_1 = this_1.x7o(tmp_4, tmp_5, tmp_6, Auth$password$delegate$lambda).d7p(this, password$factory());
85
- this.h7t_1 = optional(argument(this, VOID, 'Url to strapi server')).z7n(this, url$factory());
86
- this.i7t_1 = option(this, ['-c', '--config'], 'Config file name').d7p(this, config$factory());
87
- this.j7t_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.x60()).d7p(this, cwd$factory());
88
- }
89
- protoOf(Auth).k7t = function () {
90
- return this.f7t_1.t7o(this, email$factory_0());
81
+ var tmp_4 = this_1.w7o();
82
+ var tmp_5 = this_1.y7p();
83
+ var tmp_6 = this_1.x7o();
84
+ tmp_3.i7u_1 = this_1.z7p(tmp_4, tmp_5, tmp_6, Auth$password$delegate$lambda).f7q(this, password$factory());
85
+ this.j7u_1 = optional(argument(this, VOID, 'Url to strapi server')).b7p(this, url$factory());
86
+ this.k7u_1 = option(this, ['-c', '--config'], 'Config file name').f7q(this, config$factory());
87
+ this.l7u_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.z61()).f7q(this, cwd$factory());
88
+ }
89
+ protoOf(Auth).m7u = function () {
90
+ return this.h7u_1.v7p(this, email$factory_0());
91
91
  };
92
92
  protoOf(Auth).l21 = function () {
93
- return this.g7t_1.t7o(this, password$factory_0());
93
+ return this.i7u_1.v7p(this, password$factory_0());
94
94
  };
95
95
  protoOf(Auth).z3h = function () {
96
- return this.h7t_1.t7o(this, url$factory_0());
96
+ return this.j7u_1.v7p(this, url$factory_0());
97
97
  };
98
- protoOf(Auth).g3z = function () {
99
- return this.i7t_1.t7o(this, config$factory_0());
98
+ protoOf(Auth).j40 = function () {
99
+ return this.k7u_1.v7p(this, config$factory_0());
100
100
  };
101
- protoOf(Auth).j62 = function () {
102
- return this.j7t_1.t7o(this, cwd$factory_0());
101
+ protoOf(Auth).l63 = function () {
102
+ return this.l7u_1.v7p(this, cwd$factory_0());
103
103
  };
104
104
  protoOf(Auth).kr = function () {
105
- CommandExecutor_getInstance().auth(this.k7t(), this.l21(), this.z3h(), this.j62(), this.g3z());
105
+ CommandExecutor_getInstance().auth(this.m7u(), this.l21(), this.z3h(), this.l63(), this.j40());
106
106
  };
107
107
  function Test() {
108
108
  CliktCommand.call(this, 'Test hooks');
109
- this.c7u_1 = option(this, ['-c', '--config'], 'Config file name').d7p(this, config$factory_1());
110
- this.d7u_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.x60()).d7p(this, cwd$factory_1());
109
+ this.e7v_1 = option(this, ['-c', '--config'], 'Config file name').f7q(this, config$factory_1());
110
+ this.f7v_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.z61()).f7q(this, cwd$factory_1());
111
111
  }
112
- protoOf(Test).g3z = function () {
113
- return this.c7u_1.t7o(this, config$factory_2());
112
+ protoOf(Test).j40 = function () {
113
+ return this.e7v_1.v7p(this, config$factory_2());
114
114
  };
115
- protoOf(Test).j62 = function () {
116
- return this.d7u_1.t7o(this, cwd$factory_2());
115
+ protoOf(Test).l63 = function () {
116
+ return this.f7v_1.v7p(this, cwd$factory_2());
117
117
  };
118
118
  protoOf(Test).kr = function () {
119
- CommandExecutor_getInstance().test(this.j62(), this.g3z());
119
+ CommandExecutor_getInstance().test(this.l63(), this.j40());
120
120
  };
121
121
  function Prepare() {
122
122
  CliktCommand.call(this, 'Prepare workspace');
123
- this.v7u_1 = option(this, ['-c', '--config'], 'Config file name').d7p(this, config$factory_3());
124
- this.w7u_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.x60()).d7p(this, cwd$factory_3());
123
+ this.x7v_1 = option(this, ['-c', '--config'], 'Config file name').f7q(this, config$factory_3());
124
+ this.y7v_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.z61()).f7q(this, cwd$factory_3());
125
125
  }
126
- protoOf(Prepare).g3z = function () {
127
- return this.v7u_1.t7o(this, config$factory_4());
126
+ protoOf(Prepare).j40 = function () {
127
+ return this.x7v_1.v7p(this, config$factory_4());
128
128
  };
129
- protoOf(Prepare).j62 = function () {
130
- return this.w7u_1.t7o(this, cwd$factory_4());
129
+ protoOf(Prepare).l63 = function () {
130
+ return this.y7v_1.v7p(this, cwd$factory_4());
131
131
  };
132
132
  protoOf(Prepare).kr = function () {
133
- CommandExecutor_getInstance().prepare(this.j62(), this.g3z());
133
+ CommandExecutor_getInstance().prepare(this.l63(), this.j40());
134
134
  };
135
135
  function Export() {
136
136
  CliktCommand.call(this, 'Create export config for s3');
137
- this.o7v_1 = option(this, ['-c', '--config'], 'Config file name').d7p(this, config$factory_5());
138
- this.p7v_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.x60()).d7p(this, cwd$factory_5());
139
- this.q7v_1 = flag(option(this, ['--autoUpdate'], 'Autoupdate config in s3 storage', VOID, true), [], false).d7p(this, autoUpdate$factory());
140
- this.r7v_1 = option(this, ['-v', '--version'], 'Version for build').d7p(this, version$factory());
137
+ this.q7w_1 = option(this, ['-c', '--config'], 'Config file name').f7q(this, config$factory_5());
138
+ this.r7w_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.z61()).f7q(this, cwd$factory_5());
139
+ this.s7w_1 = flag(option(this, ['--autoUpdate'], 'Autoupdate config in s3 storage', VOID, true), [], false).f7q(this, autoUpdate$factory());
140
+ this.t7w_1 = option(this, ['-v', '--version'], 'Version for build').f7q(this, version$factory());
141
141
  }
142
- protoOf(Export).g3z = function () {
143
- return this.o7v_1.t7o(this, config$factory_6());
142
+ protoOf(Export).j40 = function () {
143
+ return this.q7w_1.v7p(this, config$factory_6());
144
144
  };
145
- protoOf(Export).j62 = function () {
146
- return this.p7v_1.t7o(this, cwd$factory_6());
145
+ protoOf(Export).l63 = function () {
146
+ return this.r7w_1.v7p(this, cwd$factory_6());
147
147
  };
148
148
  protoOf(Export).h3g = function () {
149
- return this.q7v_1.t7o(this, autoUpdate$factory_0());
149
+ return this.s7w_1.v7p(this, autoUpdate$factory_0());
150
150
  };
151
151
  protoOf(Export).o3k = function () {
152
- return this.r7v_1.t7o(this, version$factory_0());
152
+ return this.t7w_1.v7p(this, version$factory_0());
153
153
  };
154
154
  protoOf(Export).kr = function () {
155
- CommandExecutor_getInstance().export(this.h3g(), this.j62(), this.g3z(), this.o3k());
155
+ CommandExecutor_getInstance().export(this.h3g(), this.l63(), this.j40(), this.o3k());
156
156
  };
157
157
  function Upload() {
158
158
  CliktCommand.call(this, 'Upload exportConfig to s3');
159
- this.j7w_1 = option(this, ['-c', '--config'], 'Config file name').d7p(this, config$factory_7());
160
- this.k7w_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.x60()).d7p(this, cwd$factory_7());
159
+ this.l7x_1 = option(this, ['-c', '--config'], 'Config file name').f7q(this, config$factory_7());
160
+ this.m7x_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.z61()).f7q(this, cwd$factory_7());
161
161
  }
162
- protoOf(Upload).g3z = function () {
163
- return this.j7w_1.t7o(this, config$factory_8());
162
+ protoOf(Upload).j40 = function () {
163
+ return this.l7x_1.v7p(this, config$factory_8());
164
164
  };
165
- protoOf(Upload).j62 = function () {
166
- return this.k7w_1.t7o(this, cwd$factory_8());
165
+ protoOf(Upload).l63 = function () {
166
+ return this.m7x_1.v7p(this, cwd$factory_8());
167
167
  };
168
168
  protoOf(Upload).kr = function () {
169
- CommandExecutor_getInstance().upload(this.j62(), this.g3z());
169
+ CommandExecutor_getInstance().upload(this.l63(), this.j40());
170
170
  };
171
171
  function Version() {
172
172
  CliktCommand.call(this, 'Get toolbox version');
@@ -176,21 +176,21 @@
176
176
  };
177
177
  function PullReferences() {
178
178
  CliktCommand.call(this, 'Pull references from Directus');
179
- this.t7x_1 = option(this, ['-c', '--config'], 'Config file name').d7p(this, config$factory_9());
180
- this.u7x_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.x60()).d7p(this, cwd$factory_9());
179
+ this.v7y_1 = option(this, ['-c', '--config'], 'Config file name').f7q(this, config$factory_9());
180
+ this.w7y_1 = default_0(option(this, [], 'Current working directory', VOID, true), FileManager_instance.z61()).f7q(this, cwd$factory_9());
181
181
  }
182
- protoOf(PullReferences).g3z = function () {
183
- return this.t7x_1.t7o(this, config$factory_10());
182
+ protoOf(PullReferences).j40 = function () {
183
+ return this.v7y_1.v7p(this, config$factory_10());
184
184
  };
185
- protoOf(PullReferences).j62 = function () {
186
- return this.u7x_1.t7o(this, cwd$factory_10());
185
+ protoOf(PullReferences).l63 = function () {
186
+ return this.w7y_1.v7p(this, cwd$factory_10());
187
187
  };
188
188
  protoOf(PullReferences).kr = function () {
189
- CommandExecutor_getInstance().pullReferences(this.j62(), this.g3z());
189
+ CommandExecutor_getInstance().pullReferences(this.l63(), this.j40());
190
190
  };
191
191
  function email$factory() {
192
192
  return getPropertyCallableRef('email', 1, KProperty1, function (receiver) {
193
- return receiver.k7t();
193
+ return receiver.m7u();
194
194
  }, null);
195
195
  }
196
196
  function password$factory() {
@@ -205,17 +205,17 @@
205
205
  }
206
206
  function config$factory() {
207
207
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
208
- return receiver.g3z();
208
+ return receiver.j40();
209
209
  }, null);
210
210
  }
211
211
  function cwd$factory() {
212
212
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
213
- return receiver.j62();
213
+ return receiver.l63();
214
214
  }, null);
215
215
  }
216
216
  function email$factory_0() {
217
217
  return getPropertyCallableRef('email', 1, KProperty1, function (receiver) {
218
- return receiver.k7t();
218
+ return receiver.m7u();
219
219
  }, null);
220
220
  }
221
221
  function password$factory_0() {
@@ -230,62 +230,62 @@
230
230
  }
231
231
  function config$factory_0() {
232
232
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
233
- return receiver.g3z();
233
+ return receiver.j40();
234
234
  }, null);
235
235
  }
236
236
  function cwd$factory_0() {
237
237
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
238
- return receiver.j62();
238
+ return receiver.l63();
239
239
  }, null);
240
240
  }
241
241
  function config$factory_1() {
242
242
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
243
- return receiver.g3z();
243
+ return receiver.j40();
244
244
  }, null);
245
245
  }
246
246
  function cwd$factory_1() {
247
247
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
248
- return receiver.j62();
248
+ return receiver.l63();
249
249
  }, null);
250
250
  }
251
251
  function config$factory_2() {
252
252
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
253
- return receiver.g3z();
253
+ return receiver.j40();
254
254
  }, null);
255
255
  }
256
256
  function cwd$factory_2() {
257
257
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
258
- return receiver.j62();
258
+ return receiver.l63();
259
259
  }, null);
260
260
  }
261
261
  function config$factory_3() {
262
262
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
263
- return receiver.g3z();
263
+ return receiver.j40();
264
264
  }, null);
265
265
  }
266
266
  function cwd$factory_3() {
267
267
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
268
- return receiver.j62();
268
+ return receiver.l63();
269
269
  }, null);
270
270
  }
271
271
  function config$factory_4() {
272
272
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
273
- return receiver.g3z();
273
+ return receiver.j40();
274
274
  }, null);
275
275
  }
276
276
  function cwd$factory_4() {
277
277
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
278
- return receiver.j62();
278
+ return receiver.l63();
279
279
  }, null);
280
280
  }
281
281
  function config$factory_5() {
282
282
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
283
- return receiver.g3z();
283
+ return receiver.j40();
284
284
  }, null);
285
285
  }
286
286
  function cwd$factory_5() {
287
287
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
288
- return receiver.j62();
288
+ return receiver.l63();
289
289
  }, null);
290
290
  }
291
291
  function autoUpdate$factory() {
@@ -300,12 +300,12 @@
300
300
  }
301
301
  function config$factory_6() {
302
302
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
303
- return receiver.g3z();
303
+ return receiver.j40();
304
304
  }, null);
305
305
  }
306
306
  function cwd$factory_6() {
307
307
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
308
- return receiver.j62();
308
+ return receiver.l63();
309
309
  }, null);
310
310
  }
311
311
  function autoUpdate$factory_0() {
@@ -320,42 +320,42 @@
320
320
  }
321
321
  function config$factory_7() {
322
322
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
323
- return receiver.g3z();
323
+ return receiver.j40();
324
324
  }, null);
325
325
  }
326
326
  function cwd$factory_7() {
327
327
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
328
- return receiver.j62();
328
+ return receiver.l63();
329
329
  }, null);
330
330
  }
331
331
  function config$factory_8() {
332
332
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
333
- return receiver.g3z();
333
+ return receiver.j40();
334
334
  }, null);
335
335
  }
336
336
  function cwd$factory_8() {
337
337
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
338
- return receiver.j62();
338
+ return receiver.l63();
339
339
  }, null);
340
340
  }
341
341
  function config$factory_9() {
342
342
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
343
- return receiver.g3z();
343
+ return receiver.j40();
344
344
  }, null);
345
345
  }
346
346
  function cwd$factory_9() {
347
347
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
348
- return receiver.j62();
348
+ return receiver.l63();
349
349
  }, null);
350
350
  }
351
351
  function config$factory_10() {
352
352
  return getPropertyCallableRef('config', 1, KProperty1, function (receiver) {
353
- return receiver.g3z();
353
+ return receiver.j40();
354
354
  }, null);
355
355
  }
356
356
  function cwd$factory_10() {
357
357
  return getPropertyCallableRef('cwd', 1, KProperty1, function (receiver) {
358
- return receiver.j62();
358
+ return receiver.l63();
359
359
  }, null);
360
360
  }
361
361
  function main(args) {
@@ -363,7 +363,7 @@
363
363
  var argv = (!(tmp == null) ? isArray(tmp) : false) ? tmp : THROW_CCE();
364
364
  println(split(argv[0], [' ']));
365
365
  try {
366
- subcommands(new Mrsc(), [new Auth(), new Test(), new Prepare(), new Export(), new Upload(), new Version(), new PullReferences()]).d7g(split(argv[0], [' ']));
366
+ subcommands(new Mrsc(), [new Auth(), new Test(), new Prepare(), new Export(), new Upload(), new Version(), new PullReferences()]).f7h(split(argv[0], [' ']));
367
367
  } catch ($p) {
368
368
  if ($p instanceof Error) {
369
369
  var e = $p;
@@ -372,7 +372,7 @@
372
372
  // Inline function 'kotlin.js.unsafeCast' call
373
373
  // Inline function 'kotlin.js.asDynamic' call
374
374
  var tmp$ret$2 = ['--help'];
375
- tmp_0.e7g(tmp$ret$2);
375
+ tmp_0.g7h(tmp$ret$2);
376
376
  } else {
377
377
  throw $p;
378
378
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mrs-toolbox-cli",
3
- "version": "0.0.113",
3
+ "version": "0.0.114",
4
4
  "main": "mrs-toolbox-cli.js",
5
5
  "types": "mrs-toolbox-cli.d.ts",
6
6
  "devDependencies": {