@lovrabet/lovrabet-cli 2.0.2 → 2.0.4-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +184 -0
- package/lib/cli.js +1 -1
- package/lib/commands/app/cache.js +1 -1
- package/lib/commands/app/definitions.js +1 -1
- package/lib/commands/app/mock-loader.js +1 -1
- package/lib/commands/app/remote-source.js +1 -1
- package/lib/commands/app/shared.js +1 -1
- package/lib/commands/auth/index.js +1 -1
- package/lib/commands/auth/prompt.js +1 -1
- package/lib/commands/bff/detail.js +1 -1
- package/lib/commands/bff/exec.js +1 -1
- package/lib/commands/bff/index.js +1 -1
- package/lib/commands/common/config-policy.js +1 -1
- package/lib/commands/common/constraints.js +1 -1
- package/lib/commands/common/flags.js +1 -1
- package/lib/commands/config/definitions.js +1 -1
- package/lib/commands/config/shared.js +1 -1
- package/lib/commands/data/index.js +1 -1
- package/lib/commands/dataset/detail.js +1 -1
- package/lib/commands/dataset/index.js +1 -1
- package/lib/commands/dataset/list.js +1 -1
- package/lib/commands/doctor.js +1 -1
- package/lib/commands/init.js +1 -1
- package/lib/commands/logs/index.js +1 -1
- package/lib/commands/registry.js +1 -1
- package/lib/commands/schema.js +1 -1
- package/lib/commands/skill/index.js +1 -0
- package/lib/commands/sql/detail.js +1 -1
- package/lib/commands/sql/exec.js +1 -1
- package/lib/commands/sql/index.js +1 -1
- package/lib/config/schema.js +1 -1
- package/lib/constant/auth-mode.js +1 -1
- package/lib/constant/cli.js +1 -1
- package/lib/constant/defaults.js +1 -1
- package/lib/constant/domain.js +1 -1
- package/lib/constant/env.js +1 -1
- package/lib/constant/output.js +1 -1
- package/lib/constant/risk.js +1 -1
- package/lib/constant/url.js +1 -0
- package/lib/context.js +1 -1
- package/lib/core/api-client.js +1 -1
- package/lib/core/db-resolver.js +1 -1
- package/lib/core/sdk-client.js +1 -1
- package/lib/errors.js +1 -1
- package/lib/framework/build-all-flags.js +1 -1
- package/lib/framework/dryrun.js +1 -1
- package/lib/framework/flags.js +1 -1
- package/lib/framework/help.js +1 -1
- package/lib/framework/index.js +1 -1
- package/lib/framework/output.js +1 -1
- package/lib/framework/preparse.js +1 -1
- package/lib/framework/response.js +1 -1
- package/lib/framework/runner-confirmation.js +1 -1
- package/lib/framework/runner-error.js +1 -1
- package/lib/framework/runner.js +1 -1
- package/lib/framework/schema-export.js +1 -1
- package/lib/framework/types.js +1 -1
- package/lib/help.js +1 -1
- package/lib/skills/npx-skills-add.js +1 -0
- package/lib/utils/apply-jq-filter.js +1 -1
- package/lib/utils/logger.js +1 -1
- package/lib/utils/params.js +1 -1
- package/lib/utils/platform.js +1 -0
- package/lib/utils/version.js +1 -1
- package/lib/utils/write-cli-side-channel.js +1 -1
- package/package.json +8 -7
package/LICENSE
ADDED
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction, and
|
|
10
|
+
distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright
|
|
13
|
+
owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities
|
|
16
|
+
that control, are controlled by, or are under common control with that entity.
|
|
17
|
+
For the purposes of this definition, "control" means (i) the power, direct or
|
|
18
|
+
indirect, to cause the direction or management of such entity, whether by
|
|
19
|
+
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
20
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
21
|
+
|
|
22
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising
|
|
23
|
+
permissions granted by this License.
|
|
24
|
+
|
|
25
|
+
"Source" form shall mean the preferred form for making modifications, including
|
|
26
|
+
but not limited to software source code, documentation source, and
|
|
27
|
+
configuration files.
|
|
28
|
+
|
|
29
|
+
"Object" form shall mean any form resulting from mechanical transformation or
|
|
30
|
+
translation of a Source form, including but not limited to compiled object
|
|
31
|
+
code, generated documentation, and conversions to other media types.
|
|
32
|
+
|
|
33
|
+
"Work" shall mean the work of authorship, whether in Source or Object form,
|
|
34
|
+
made available under the License, as indicated by a copyright notice that is
|
|
35
|
+
included in or attached to the work (an example is provided in the Appendix
|
|
36
|
+
below).
|
|
37
|
+
|
|
38
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that
|
|
39
|
+
is based on (or derived from) the Work and for which the editorial revisions,
|
|
40
|
+
annotations, elaborations, or other modifications represent, as a whole, an
|
|
41
|
+
original work of authorship. For the purposes of this License, Derivative Works
|
|
42
|
+
shall not include works that remain separable from, or merely link (or bind by
|
|
43
|
+
name) to the interfaces of, the Work and Derivative Works thereof.
|
|
44
|
+
|
|
45
|
+
"Contribution" shall mean any work of authorship, including the original
|
|
46
|
+
version of the Work and any modifications or additions to that Work or
|
|
47
|
+
Derivative Works thereof, that is intentionally submitted to Licensor for
|
|
48
|
+
inclusion in the Work by the copyright owner or by an individual or Legal
|
|
49
|
+
Entity authorized to submit on behalf of the copyright owner. For the purposes
|
|
50
|
+
of this definition, "submitted" means any form of electronic, verbal, or
|
|
51
|
+
written communication sent to the Licensor or its representatives, including
|
|
52
|
+
but not limited to communication on electronic mailing lists, source code
|
|
53
|
+
control systems, and issue tracking systems that are managed by, or on behalf
|
|
54
|
+
of, the Licensor for the purpose of discussing and improving the Work, but
|
|
55
|
+
excluding communication that is conspicuously marked or otherwise designated in
|
|
56
|
+
writing by the copyright owner as "Not a Contribution."
|
|
57
|
+
|
|
58
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
|
|
59
|
+
of whom a Contribution has been received by Licensor and subsequently
|
|
60
|
+
incorporated within the Work.
|
|
61
|
+
|
|
62
|
+
2. Grant of Copyright License. Subject to the terms and conditions of this
|
|
63
|
+
License, each Contributor hereby grants to You a perpetual, worldwide,
|
|
64
|
+
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
|
|
65
|
+
reproduce, prepare Derivative Works of, publicly display, publicly perform,
|
|
66
|
+
sublicense, and distribute the Work and such Derivative Works in Source or
|
|
67
|
+
Object form.
|
|
68
|
+
|
|
69
|
+
3. Grant of Patent License. Subject to the terms and conditions of this
|
|
70
|
+
License, each Contributor hereby grants to You a perpetual, worldwide,
|
|
71
|
+
non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this
|
|
72
|
+
section) patent license to make, have made, use, offer to sell, sell, import,
|
|
73
|
+
and otherwise transfer the Work, where such license applies only to those
|
|
74
|
+
patent claims licensable by such Contributor that are necessarily infringed by
|
|
75
|
+
their Contribution(s) alone or by combination of their Contribution(s) with the
|
|
76
|
+
Work to which such Contribution(s) was submitted. If You institute patent
|
|
77
|
+
litigation against any entity (including a cross-claim or counterclaim in a
|
|
78
|
+
lawsuit) alleging that the Work or a Contribution incorporated within the Work
|
|
79
|
+
constitutes direct or contributory patent infringement, then any patent
|
|
80
|
+
licenses granted to You under this License for that Work shall terminate as of
|
|
81
|
+
the date such litigation is filed.
|
|
82
|
+
|
|
83
|
+
4. Redistribution. You may reproduce and distribute copies of the Work or
|
|
84
|
+
Derivative Works thereof in any medium, with or without modifications, and in
|
|
85
|
+
Source or Object form, provided that You meet the following conditions:
|
|
86
|
+
|
|
87
|
+
(a) You must give any other recipients of the Work or Derivative Works a copy
|
|
88
|
+
of this License; and
|
|
89
|
+
|
|
90
|
+
(b) You must cause any modified files to carry prominent notices stating that
|
|
91
|
+
You changed the files; and
|
|
92
|
+
|
|
93
|
+
(c) You must retain, in the Source form of any Derivative Works that You
|
|
94
|
+
distribute, all copyright, patent, trademark, and attribution notices from the
|
|
95
|
+
Source form of the Work, excluding those notices that do not pertain to any
|
|
96
|
+
part of the Derivative Works; and
|
|
97
|
+
|
|
98
|
+
(d) If the Work includes a "NOTICE" text file as part of its distribution, then
|
|
99
|
+
any Derivative Works that You distribute must include a readable copy of the
|
|
100
|
+
attribution notices contained within such NOTICE file, excluding those notices
|
|
101
|
+
that do not pertain to any part of the Derivative Works, in at least one of the
|
|
102
|
+
following places: within a NOTICE text file distributed as part of the
|
|
103
|
+
Derivative Works; within the Source form or documentation, if provided along
|
|
104
|
+
with the Derivative Works; or, within a display generated by the Derivative
|
|
105
|
+
Works, if and wherever such third-party notices normally appear. The contents
|
|
106
|
+
of the NOTICE file are for informational purposes only and do not modify the
|
|
107
|
+
License. You may add Your own attribution notices within Derivative Works that
|
|
108
|
+
You distribute, alongside or as an addendum to the NOTICE text from the Work,
|
|
109
|
+
provided that such additional attribution notices cannot be construed as
|
|
110
|
+
modifying the License.
|
|
111
|
+
|
|
112
|
+
You may add Your own copyright statement to Your modifications and may provide
|
|
113
|
+
additional or different license terms and conditions for use, reproduction, or
|
|
114
|
+
distribution of Your modifications, or for any such Derivative Works as a
|
|
115
|
+
whole, provided Your use, reproduction, and distribution of the Work otherwise
|
|
116
|
+
complies with the conditions stated in this License.
|
|
117
|
+
|
|
118
|
+
5. Submission of Contributions. Unless You explicitly state otherwise, any
|
|
119
|
+
Contribution intentionally submitted for inclusion in the Work by You to the
|
|
120
|
+
Licensor shall be under the terms and conditions of this License, without any
|
|
121
|
+
additional terms or conditions. Notwithstanding the above, nothing herein shall
|
|
122
|
+
supersede or modify the terms of any separate license agreement you may have
|
|
123
|
+
executed with Licensor regarding such Contributions.
|
|
124
|
+
|
|
125
|
+
6. Trademarks. This License does not grant permission to use the trade names,
|
|
126
|
+
trademarks, service marks, or product names of the Licensor, except as required
|
|
127
|
+
for reasonable and customary use in describing the origin of the Work and
|
|
128
|
+
reproducing the content of the NOTICE file.
|
|
129
|
+
|
|
130
|
+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
|
|
131
|
+
writing, Licensor provides the Work (and each Contributor provides its
|
|
132
|
+
Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
133
|
+
KIND, either express or implied, including, without limitation, any warranties
|
|
134
|
+
or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
135
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
136
|
+
appropriateness of using or redistributing the Work and assume any risks
|
|
137
|
+
associated with Your exercise of permissions under this License.
|
|
138
|
+
|
|
139
|
+
8. Limitation of Liability. In no event and under no legal theory, whether in
|
|
140
|
+
tort (including negligence), contract, or otherwise, unless required by
|
|
141
|
+
applicable law (such as deliberate and grossly negligent acts) or agreed to in
|
|
142
|
+
writing, shall any Contributor be liable to You for damages, including any
|
|
143
|
+
direct, indirect, special, incidental, or consequential damages of any
|
|
144
|
+
character arising as a result of this License or out of the use or inability to
|
|
145
|
+
use the Work (including but not limited to damages for loss of goodwill, work
|
|
146
|
+
stoppage, computer failure or malfunction, or any and all other commercial
|
|
147
|
+
damages or losses), even if such Contributor has been advised of the
|
|
148
|
+
possibility of such damages.
|
|
149
|
+
|
|
150
|
+
9. Accepting Warranty or Additional Liability. While redistributing the Work or
|
|
151
|
+
Derivative Works thereof, You may choose to offer, and charge a fee for,
|
|
152
|
+
acceptance of support, warranty, indemnity, or other liability obligations
|
|
153
|
+
and/or rights consistent with this License. However, in accepting such
|
|
154
|
+
obligations, You may act only on Your own behalf and on Your sole
|
|
155
|
+
responsibility, not on behalf of any other Contributor, and only if You agree
|
|
156
|
+
to indemnify, defend, and hold each Contributor harmless for any liability
|
|
157
|
+
incurred by, or claims asserted against, such Contributor by reason of your
|
|
158
|
+
accepting any such warranty or additional liability.
|
|
159
|
+
|
|
160
|
+
END OF TERMS AND CONDITIONS
|
|
161
|
+
|
|
162
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
163
|
+
|
|
164
|
+
To apply the Apache License to your work, attach the following boilerplate
|
|
165
|
+
notice, with the fields enclosed by brackets "[]" replaced with your own
|
|
166
|
+
identifying information. (Don't include the brackets!) The text should be
|
|
167
|
+
enclosed in the appropriate comment syntax for the file format. We also
|
|
168
|
+
recommend that a file or class name and description of purpose be included on
|
|
169
|
+
the same "printed page" as the copyright notice for easier identification
|
|
170
|
+
within third-party archives.
|
|
171
|
+
|
|
172
|
+
Copyright [yyyy] [name of copyright owner]
|
|
173
|
+
|
|
174
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
175
|
+
you may not use this file except in compliance with the License.
|
|
176
|
+
You may obtain a copy of the License at
|
|
177
|
+
|
|
178
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
179
|
+
|
|
180
|
+
Unless required by applicable law or agreed to in writing, software
|
|
181
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
182
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
183
|
+
See the License for the specific language governing permissions and
|
|
184
|
+
limitations under the License.
|
package/lib/cli.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const
|
|
2
|
+
const a0_0x234c34=a0_0x2dca;(function(_0x41636e,_0x26b57e){const _0x96caca=a0_0x2dca,_0x531236=_0x41636e();while(!![]){try{const _0x247383=-parseInt(_0x96caca(0x17f))/0x1+parseInt(_0x96caca(0x177))/0x2*(-parseInt(_0x96caca(0x182))/0x3)+parseInt(_0x96caca(0x199))/0x4*(-parseInt(_0x96caca(0x180))/0x5)+-parseInt(_0x96caca(0x195))/0x6*(-parseInt(_0x96caca(0x198))/0x7)+parseInt(_0x96caca(0x173))/0x8+-parseInt(_0x96caca(0x17b))/0x9+parseInt(_0x96caca(0x186))/0xa*(parseInt(_0x96caca(0x19b))/0xb);if(_0x247383===_0x26b57e)break;else _0x531236['push'](_0x531236['shift']());}catch(_0x26fb92){_0x531236['push'](_0x531236['shift']());}}}(a0_0x108d,0xc7bbf));import{jsx as a0_0x367d6d}from'react/jsx-runtime';import a0_0x1887b7 from'meow';import{render}from'ink';function a0_0x108d(){const _0x3f77e0=['unknownCommand','12JExswJ','error','[preparse]\x20','3667391WoKSnO','118004JutydU','exitCode','297ACVcKS','assign','10912152SGAIyT','log','Unexpected\x20error:','cancelled','1875154frWfGA','ERR_STREAM_DESTROYED','Error:\x20','input','12609315Nnrjqb','defaultCommand','slice','stderr','1332375BfXGEW','85xvHuhB','original','3QXpFHO','write','ExitPromptError','hint','955100ySPnYT','flatMap','corrected','help','\x20->\x20--','exit','\x0aCancelled.\x0a','catch','code','handler','flags','length','./framework/preparse.js','Hint:\x20'];a0_0x108d=function(){return _0x3f77e0;};return a0_0x108d();}import{Help}from'./help.js';import{CliError,CliErrors}from'./errors.js';import{buildConfigFromFlags,initGlobalEnvironment}from'./context.js';import{isKnownService,getServiceEntry,findDefinition,getAllDefinitions}from'./commands/registry.js';import{runCommand,createPipelineEnv}from'./framework/runner.js';import{generateCommandHelp,generateServiceHelp,generateFullHelp}from'./framework/help.js';import{buildMeowFlags}from'./constant/cli.js';function a0_0x2dca(_0x6cf273,_0x2c8e7d){_0x6cf273=_0x6cf273-0x172;const _0x108da8=a0_0x108d();let _0x2dcafc=_0x108da8[_0x6cf273];return _0x2dcafc;}const helpText=generateFullHelp(),cli=a0_0x1887b7(helpText,{'importMeta':import.meta,'flags':buildMeowFlags(),'autoVersion':!![]});void main()[a0_0x234c34(0x18d)](handleError);async function main(){try{await run();}catch(_0x16f72f){handleError(_0x16f72f);}}async function run(){const _0x48ac7c=a0_0x234c34;let _0x4fe696=cli[_0x48ac7c(0x17a)][0x0],_0x2cf9c6=cli['input'][0x1];const _0x45715c=cli[_0x48ac7c(0x190)];try{const {correctFlags:_0x59cd6a}=await import(_0x48ac7c(0x192)),_0x2b0dd9=getAllDefinitions()[_0x48ac7c(0x187)](_0x1f34b8=>_0x1f34b8['flags']??[]),{flags:_0x21a04a,corrections:_0x3431a6}=_0x59cd6a(_0x45715c,_0x2b0dd9);if(_0x3431a6[_0x48ac7c(0x191)]>0x0){for(const _0x318347 of _0x3431a6){process['stderr'][_0x48ac7c(0x183)](_0x48ac7c(0x197)+_0x318347[_0x48ac7c(0x18f)]+':\x20--'+_0x318347[_0x48ac7c(0x181)]+_0x48ac7c(0x18a)+_0x318347[_0x48ac7c(0x188)]+'\x0a');}Object[_0x48ac7c(0x172)](_0x45715c,_0x21a04a);}}catch{}if(!_0x4fe696||!isKnownService(_0x4fe696)){const {waitUntilExit:_0x4e992d}=render(a0_0x367d6d(Help,{}));await _0x4e992d();return;}const _0x1a9820=getServiceEntry(_0x4fe696);if(!_0x2cf9c6){if(_0x45715c[_0x48ac7c(0x189)]){console['log'](generateServiceHelp(_0x4fe696));return;}if(_0x1a9820[_0x48ac7c(0x17c)])_0x2cf9c6=_0x1a9820['defaultCommand'];else{console['log'](generateServiceHelp(_0x4fe696));return;}}const _0x340264=findDefinition(_0x4fe696,_0x2cf9c6);!_0x340264&&(console[_0x48ac7c(0x174)](generateServiceHelp(_0x4fe696)),handleError(CliErrors[_0x48ac7c(0x194)](_0x4fe696+'\x20'+_0x2cf9c6)));if(_0x45715c[_0x48ac7c(0x189)]){console['log'](generateCommandHelp(_0x340264));return;}const _0x16e8ff=buildConfigFromFlags(_0x45715c);await initGlobalEnvironment(_0x16e8ff);const _0x4385f2=createPipelineEnv(_0x16e8ff,_0x45715c);_0x4385f2['args']=cli[_0x48ac7c(0x17a)][_0x48ac7c(0x17d)](0x2),await runCommand(_0x340264,_0x4385f2);}function handleError(_0x2656f4){const _0xab4ecd=a0_0x234c34;if(_0x2656f4 instanceof CliError){_0x2656f4[_0xab4ecd(0x18e)]===_0xab4ecd(0x176)&&(process[_0xab4ecd(0x17e)][_0xab4ecd(0x183)](_0xab4ecd(0x18c)),process[_0xab4ecd(0x18b)](0x0));console[_0xab4ecd(0x196)](_0xab4ecd(0x179)+_0x2656f4['message']);if(_0x2656f4[_0xab4ecd(0x185)])console[_0xab4ecd(0x196)](_0xab4ecd(0x193)+_0x2656f4[_0xab4ecd(0x185)]);process['exit'](_0x2656f4[_0xab4ecd(0x19a)]);}isUserCancellation(_0x2656f4)&&(process[_0xab4ecd(0x17e)][_0xab4ecd(0x183)]('\x0aCancelled.\x0a'),process[_0xab4ecd(0x18b)](0x0)),console[_0xab4ecd(0x196)](_0xab4ecd(0x175),_0x2656f4),process['exit'](0x1);}function isUserCancellation(_0x23bb16){const _0x26a2e4=a0_0x234c34;if(!(_0x23bb16 instanceof Error))return![];if(_0x23bb16['name']===_0x26a2e4(0x184))return!![];if(_0x23bb16[_0x26a2e4(0x18e)]==='ERR_USE_AFTER_CLOSE')return!![];if(_0x23bb16[_0x26a2e4(0x18e)]===_0x26a2e4(0x178))return!![];return![];}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(_0xae7398,_0x3182b9){const _0x374574=a1_0x5a7c,_0x3bc839=_0xae7398();while(!![]){try{const _0x20f28b=-parseInt(_0x374574(0x14f))/0x1*(-parseInt(_0x374574(0x146))/0x2)+parseInt(_0x374574(0x14c))/0x3+-parseInt(_0x374574(0x140))/0x4+parseInt(_0x374574(0x147))/0x5*(parseInt(_0x374574(0x149))/0x6)+parseInt(_0x374574(0x156))/0x7*(parseInt(_0x374574(0x153))/0x8)+parseInt(_0x374574(0x154))/0x9+-parseInt(_0x374574(0x157))/0xa*(parseInt(_0x374574(0x158))/0xb);if(_0x20f28b===_0x3182b9)break;else _0x3bc839['push'](_0x3bc839['shift']());}catch(_0x43f695){_0x3bc839['push'](_0x3bc839['shift']());}}}(a1_0x3f41,0x4ba40));function a1_0x5a7c(_0x3dd6c0,_0x4a520a){_0x3dd6c0=_0x3dd6c0-0x13e;const _0x3f41cf=a1_0x3f41();let _0x5a7c7f=_0x3f41cf[_0x3dd6c0];return _0x5a7c7f;}import{createHash}from'node:crypto';import{existsSync,mkdirSync,readFileSync,renameSync,unlinkSync,writeFileSync}from'node:fs';function a1_0x3f41(){const _0x291644=['370ibrlWG','335929EmucgU','appName','unknown','items','parse','code','EXDEV','1442312phPGOi','ak_','isArray','EACCES','hex','.tmp','122gYClOr','842055ysGNFu','.lovrabet','18qComIn','my-apps.json','slice','592950gUGAwI','trim','stringify','8989DINQml','cache','appCode','update','72NPAjZh','2083950VQiwpm','find','247009egpueM'];a1_0x3f41=function(){return _0x291644;};return a1_0x3f41();}import{homedir}from'node:os';import{dirname,resolve}from'node:path';function fingerprintAccessKey(_0x50359f){const _0xc88dc7=a1_0x5a7c,_0x89ca43=_0x50359f[_0xc88dc7(0x14d)](),_0x91ca44=_0x89ca43[_0xc88dc7(0x14b)](-0x6)||_0xc88dc7(0x15a),_0xfe60c2=createHash('sha256')[_0xc88dc7(0x152)](_0x89ca43)['digest'](_0xc88dc7(0x144))[_0xc88dc7(0x14b)](0x0,0xc);return _0xc88dc7(0x141)+_0x91ca44+'_'+_0xfe60c2;}export function getAppCacheFilePath(_0x3ea4a5,_0x283ad0){const _0x10f7af=a1_0x5a7c;return resolve(homedir(),_0x10f7af(0x148),_0x10f7af(0x150),_0x3ea4a5,fingerprintAccessKey(_0x283ad0),_0x10f7af(0x14a));}export function readCachedAppList(_0x2ddc50,_0x4deb04){const _0x4e297c=a1_0x5a7c;if(!_0x4deb04?.[_0x4e297c(0x14d)]())return null;const _0x239dee=getAppCacheFilePath(_0x2ddc50,_0x4deb04);if(!existsSync(_0x239dee))return null;try{const _0x29f9cb=readFileSync(_0x239dee,'utf8');if(!_0x29f9cb[_0x4e297c(0x14d)]())return null;const _0x3fc233=JSON[_0x4e297c(0x15c)](_0x29f9cb);if(!Array[_0x4e297c(0x142)](_0x3fc233[_0x4e297c(0x15b)]))return null;return _0x3fc233;}catch{return null;}}export function writeCachedAppList(_0x3b5009,_0xf6b3de,_0x6b75d5){const _0x565f3b=a1_0x5a7c,_0x3333af=getAppCacheFilePath(_0x3b5009,_0xf6b3de),_0x30f103=dirname(_0x3333af);!existsSync(_0x30f103)&&mkdirSync(_0x30f103,{'recursive':!![]});const _0x121dde=_0x3333af+_0x565f3b(0x145);try{writeFileSync(_0x121dde,JSON[_0x565f3b(0x14e)](_0x6b75d5,null,0x2)+'\x0a',{'encoding':'utf8','mode':0x180});try{renameSync(_0x121dde,_0x3333af);}catch(_0x4d5bd2){if(_0x4d5bd2[_0x565f3b(0x13e)]==='EPERM'||_0x4d5bd2[_0x565f3b(0x13e)]===_0x565f3b(0x13f)||_0x4d5bd2[_0x565f3b(0x13e)]===_0x565f3b(0x143)){writeFileSync(_0x3333af,JSON[_0x565f3b(0x14e)](_0x6b75d5,null,0x2)+'\x0a',{'encoding':'utf8'});try{unlinkSync(_0x121dde);}catch{}}else throw _0x4d5bd2;}}catch(_0x173376){try{unlinkSync(_0x121dde);}catch{}throw _0x173376;}return _0x3333af;}export function resolveCachedAppCode(_0x382949,_0x5ed4e3,_0x5bb94c){const _0x1be53d=a1_0x5a7c;if(!_0x382949)return undefined;const _0x1e97f2=readCachedAppList(_0x5ed4e3,_0x5bb94c),_0x3eea10=_0x1e97f2?.[_0x1be53d(0x15b)][_0x1be53d(0x155)](_0x3bb3b6=>_0x3bb3b6[_0x1be53d(0x159)]===_0x382949);return _0x3eea10?.[_0x1be53d(0x151)]?.[_0x1be53d(0x14d)]()||undefined;}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a2_0x4b1e57=a2_0x53a4;(function(_0x4296bc,_0x4faf8f){const _0x1b39bb=a2_0x53a4,_0x359f32=_0x4296bc();while(!![]){try{const _0x3017e2=parseInt(_0x1b39bb(0x19d))/0x1*(parseInt(_0x1b39bb(0x185))/0x2)+parseInt(_0x1b39bb(0x1a0))/0x3+-parseInt(_0x1b39bb(0x17f))/0x4+-parseInt(_0x1b39bb(0x171))/0x5*(-parseInt(_0x1b39bb(0x162))/0x6)+-parseInt(_0x1b39bb(0x198))/0x7+-parseInt(_0x1b39bb(0x167))/0x8+parseInt(_0x1b39bb(0x169))/0x9;if(_0x3017e2===_0x4faf8f)break;else _0x359f32['push'](_0x359f32['shift']());}catch(_0x2292c3){_0x359f32['push'](_0x359f32['shift']());}}}(a2_0x2ab6,0x9280c));import{CliErrors}from'../../errors.js';function a2_0x53a4(_0x4ed51d,_0x3b96d4){_0x4ed51d=_0x4ed51d-0x158;const _0x2ab6e1=a2_0x2ab6();let _0x53a497=_0x2ab6e1[_0x4ed51d];return _0x53a497;}import{initCreateFlagDefs,initImportFlagDefs,runInit,runInitImport}from'../../commands/init.js';import{getEnv,RUNTIME_ENV_VALUES}from'../../constant/env.js';import{buildAppProfileListFields}from'../../config/schema.js';import{CLI_BIN_NAME,readConfig,writeConfig,scopeLabel,enrichAppListItemsWithMergedSelection}from'../../commands/app/shared.js';import{resolveConfigScope,toScopeFlags}from'../../commands/common/config-policy.js';const GLOBAL_FLAG={'name':a2_0x4b1e57(0x16e),'type':'boolean','description':'Use\x20global\x20config\x20scope','default':![]};function collectFlags(_0x4e1c80,_0x5f5146){const _0x40c801=a2_0x4b1e57,_0x5582b1={};for(const _0x4e9ab7 of _0x5f5146){const _0x341a81=_0x4e9ab7['type']===_0x40c801(0x158)?_0x4e1c80[_0x40c801(0x173)](_0x4e9ab7[_0x40c801(0x175)]):_0x4e1c80[_0x40c801(0x15e)](_0x4e9ab7[_0x40c801(0x175)]);if(_0x341a81!==''&&_0x341a81!==![])_0x5582b1[_0x4e9ab7['name']]=_0x341a81;}if(_0x4e1c80['nonInteractive'])_0x5582b1[_0x40c801(0x199)]=!![];return _0x5582b1;}function a2_0x2ab6(){const _0x3f0808=['list','read','../../commands/app/remote-source.js','Switch\x20the\x20default\x20app','defaultApp','app','join','remote','find','args','appPublishStatus','isCurrent','Loaded\x20','Refreshed\x20app\x20cache\x20with\x20','\x20app\x20use\x20<name>\x20[--global]','appOwnerName','App\x20\x22','6454266xXDDEG','nonInteractive','Force\x20remote\x20fetch\x20and\x20refresh\x20local\x20cache','projectPath','List\x20apps\x20available\x20to\x20the\x20current\x20access\x20key','1437vwJnpc','length','Refresh\x20the\x20local\x20app\x20cache\x20from\x20the\x20platform','997041Uubcbk','source','boolean','No\x20apps\x20found\x20on\x20the\x20platform.','map','globalPath','\x20app(s)\x20for\x20env=\x22','\x20app\x20list`\x20to\x20discover\x20remote\x20apps.','str','fetchedAt','Usage:\x20','appCode','78978VRFGau','../../context.js','pull','accessKey','Use\x20`','6385928ooeZDr','from','17000802HLCPfn','local','No\x20cached\x20apps\x20found.','validation','Import\x20the\x20default\x20app\x20selection\x20from\x20a\x20.rabetbase.json\x20file','global','init','Read\x20from\x20local\x20cache\x20only','110RjFaVd','production','bool','items','name','mergedCli','write','cachePath','envName','use','Missing\x20app\x20name.','env','no-cache','project-default','2779772UxoDbM','Initialize\x20.lovrabet.json\x20config\x20file','import','Filter\x20by\x20environment\x20(default:\x20current\x20env)','string','\x20cached\x20app(s)\x20for\x20env=\x22','702DmduaK','appName'];a2_0x2ab6=function(){return _0x3f0808;};return a2_0x2ab6();}const initDef={'service':a2_0x4b1e57(0x18c),'command':a2_0x4b1e57(0x16f),'description':a2_0x4b1e57(0x180),'risk':'write','requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':initCreateFlagDefs,async 'execute'(_0x12a9b2){return await runInit(collectFlags(_0x12a9b2,initCreateFlagDefs)),{'ok':!![]};}},listDef={'service':a2_0x4b1e57(0x18c),'command':a2_0x4b1e57(0x187),'description':a2_0x4b1e57(0x19c),'risk':a2_0x4b1e57(0x188),'requiresAuth':!![],'requiresAppCode':![],'hasFormat':!![],'flags':[{'name':a2_0x4b1e57(0x17c),'type':'string','description':a2_0x4b1e57(0x182),'enum':[...RUNTIME_ENV_VALUES]},{'name':'local','type':a2_0x4b1e57(0x158),'description':'Read\x20app\x20list\x20from\x20local\x20cache\x20only','default':![]},{'name':a2_0x4b1e57(0x17d),'type':a2_0x4b1e57(0x158),'description':'Force\x20remote\x20fetch\x20and\x20refresh\x20local\x20cache','default':![]}],async 'execute'(_0x37cc83){const _0x16302d=a2_0x4b1e57,_0x237f5c=_0x37cc83[_0x16302d(0x15e)](_0x16302d(0x17c))||_0x37cc83[_0x16302d(0x179)]||getEnv()||'production',_0x3f2fbc=_0x37cc83[_0x16302d(0x173)](_0x16302d(0x16a)),_0x5bf825=_0x37cc83[_0x16302d(0x173)]('no-cache'),{readRawConfigWithLayers:_0x13c591,resolveDefaultAppSource:_0x52cd34}=await import(_0x16302d(0x163)),{getRemoteAppList:_0x682f5b}=await import(_0x16302d(0x189)),{config:_0x4d9917,layers:_0x14a5c2}=_0x13c591(),_0xd6224d=_0x52cd34(_0x14a5c2),{defaultApp:_0x14f5d8}=_0x4d9917,_0x122416=await _0x682f5b({'env':_0x237f5c,'accessKey':_0x37cc83[_0x16302d(0x165)],'localOnly':_0x3f2fbc,'noCache':_0x5bf825}),_0x42343d=_0x122416[_0x16302d(0x174)]['map'](_0x5cfa76=>{const _0x53b7b4=_0x16302d;return{'name':_0x5cfa76[_0x53b7b4(0x186)],'appcode':_0x5cfa76[_0x53b7b4(0x161)],'named':!![],'definedIn':_0x53b7b4(0x18e),'isDefault':_0x5cfa76[_0x53b7b4(0x186)]===_0x14f5d8,...buildAppProfileListFields(_0x237f5c),'source':_0x122416[_0x53b7b4(0x1a1)],'owner':_0x5cfa76[_0x53b7b4(0x196)]??null,'status':_0x5cfa76[_0x53b7b4(0x191)]??null,'cachedAt':_0x122416[_0x53b7b4(0x15f)]};});enrichAppListItemsWithMergedSelection(_0x42343d,_0x37cc83[_0x16302d(0x176)]);if(_0x42343d['length']===0x0)return{'ok':!![],'data':[],'message':_0x122416[_0x16302d(0x1a1)]==='cache'?_0x16302d(0x16b):_0x16302d(0x159)};const _0xaf2aec=_0x42343d[_0x16302d(0x18f)](_0x29230e=>_0x29230e[_0x16302d(0x192)]===!![]),_0x56ef90=_0x14f5d8??_0xaf2aec?.['name']??null,_0x4b3e7e={'env':_0x237f5c,'source':_0x122416[_0x16302d(0x1a1)],'fetchedAt':_0x122416[_0x16302d(0x15f)],'cachePath':_0x122416[_0x16302d(0x178)],'globalPath':_0x14a5c2[_0x16302d(0x15b)]??null,'projectPath':_0x14a5c2[_0x16302d(0x19b)]??null,'defaultApp':_0x56ef90,'defaultAppSource':_0x14f5d8!=null?_0xd6224d:null};return{'ok':!![],'data':{'items':_0x42343d,'meta':_0x4b3e7e}};}},pullDef={'service':a2_0x4b1e57(0x18c),'command':a2_0x4b1e57(0x164),'description':a2_0x4b1e57(0x19f),'risk':a2_0x4b1e57(0x177),'requiresAuth':!![],'requiresAppCode':![],'hasFormat':![],'flags':[{'name':a2_0x4b1e57(0x17c),'type':a2_0x4b1e57(0x183),'description':'Target\x20environment\x20(default:\x20current\x20env)','enum':[...RUNTIME_ENV_VALUES]},{'name':'local','type':'boolean','description':a2_0x4b1e57(0x170),'default':![]},{'name':a2_0x4b1e57(0x17d),'type':a2_0x4b1e57(0x158),'description':a2_0x4b1e57(0x19a),'default':![]}],async 'execute'(_0x5d10f8){const _0x1eebb4=a2_0x4b1e57,_0x402245=_0x5d10f8[_0x1eebb4(0x15e)](_0x1eebb4(0x17c))||_0x5d10f8[_0x1eebb4(0x179)]||getEnv()||_0x1eebb4(0x172),_0x3cefb4=_0x5d10f8['bool'](_0x1eebb4(0x16a)),_0x1f0c69=_0x5d10f8['bool'](_0x1eebb4(0x17d)),{getRemoteAppList:_0x4a728e}=await import('../../commands/app/remote-source.js'),_0x51f71b=await _0x4a728e({'env':_0x402245,'accessKey':_0x5d10f8[_0x1eebb4(0x165)],'localOnly':_0x3cefb4,'noCache':_0x1f0c69});return{'ok':!![],'data':{'total':_0x51f71b[_0x1eebb4(0x174)][_0x1eebb4(0x19e)],'env':_0x402245,'source':_0x51f71b[_0x1eebb4(0x1a1)],'fetchedAt':_0x51f71b[_0x1eebb4(0x15f)],'cachePath':_0x51f71b[_0x1eebb4(0x178)]},'message':_0x51f71b[_0x1eebb4(0x1a1)]==='cache'?_0x1eebb4(0x193)+_0x51f71b['items'][_0x1eebb4(0x19e)]+_0x1eebb4(0x184)+_0x402245+'\x22.':_0x1eebb4(0x194)+_0x51f71b[_0x1eebb4(0x174)][_0x1eebb4(0x19e)]+_0x1eebb4(0x15c)+_0x402245+'\x22.'};}},useDef={'service':a2_0x4b1e57(0x18c),'command':a2_0x4b1e57(0x17a),'description':a2_0x4b1e57(0x18a),'risk':a2_0x4b1e57(0x177),'requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'args':[{'name':a2_0x4b1e57(0x175),'description':'Remote\x20app\x20name\x20to\x20activate','required':!![]}],'flags':[GLOBAL_FLAG],async 'validate'(_0x3a9322){const _0x10e09a=a2_0x4b1e57;if(!_0x3a9322[_0x10e09a(0x190)][0x0])throw CliErrors['validation'](_0x10e09a(0x17b),_0x10e09a(0x160)+CLI_BIN_NAME+_0x10e09a(0x195));},async 'execute'(_0x40f198){const _0x536733=a2_0x4b1e57,_0x2c78c2=_0x40f198[_0x536733(0x190)][0x0];if(!_0x2c78c2)throw CliErrors[_0x536733(0x16c)](_0x536733(0x17b),_0x536733(0x160)+CLI_BIN_NAME+'\x20app\x20use\x20<name>\x20[--global]');const {buildConfigFromFlags:_0x1a257a}=await import(_0x536733(0x163)),{readCachedAppList:_0x4d6096}=await import('../../commands/app/cache.js'),_0x394ba2=_0x1a257a({}),_0x2688b3=_0x4d6096(_0x394ba2[_0x536733(0x17c)],_0x394ba2[_0x536733(0x165)]),_0x4330ca=_0x2688b3?.[_0x536733(0x174)][_0x536733(0x18f)](_0x2ea014=>_0x2ea014['appName']===_0x2c78c2);if(!_0x4330ca&&_0x394ba2[_0x536733(0x18b)]!==_0x2c78c2){const _0x4e64fc=[..._0x2688b3?.[_0x536733(0x174)][_0x536733(0x15a)](_0x256bf8=>_0x256bf8[_0x536733(0x186)])??[]],_0x12559b=_0x4e64fc[_0x536733(0x19e)]===0x0?_0x536733(0x166)+CLI_BIN_NAME+_0x536733(0x15d):'Available:\x20'+Array[_0x536733(0x168)](new Set(_0x4e64fc))[_0x536733(0x18d)](',\x20');throw CliErrors[_0x536733(0x16c)](_0x536733(0x197)+_0x2c78c2+'\x22\x20not\x20found.',_0x12559b);}const _0x3c7c7a=_0x40f198[_0x536733(0x173)](_0x536733(0x16e));let _0x134f05;if(_0x3c7c7a)_0x134f05={'global':!![]};else{const {isInProject:_0x413279}=await import('../../context.js'),_0x26cf2e=_0x413279();_0x134f05=toScopeFlags(resolveConfigScope({'explicitGlobal':![],'policy':_0x536733(0x17e),'inProject':_0x26cf2e}));}const _0x178e7d=readConfig(_0x134f05);return _0x178e7d[_0x536733(0x18b)]=_0x2c78c2,writeConfig(_0x178e7d,_0x134f05),{'ok':!![],'message':'Default\x20app\x20set\x20to\x20\x22'+_0x2c78c2+'\x22'+scopeLabel(_0x134f05)+'.'};}},importDef={'service':a2_0x4b1e57(0x18c),'command':a2_0x4b1e57(0x181),'description':a2_0x4b1e57(0x16d),'risk':a2_0x4b1e57(0x177),'requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':initImportFlagDefs,async 'execute'(_0x20026c){return await runInitImport(collectFlags(_0x20026c,initImportFlagDefs)),{'ok':!![]};}};export const appDefinitions=[initDef,listDef,pullDef,useDef,importDef];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
(function(_0x109368,_0x3bfbd9){const _0xb93fee=a3_0x500b,_0x43cc9d=_0x109368();while(!![]){try{const _0x2a99b9=parseInt(_0xb93fee(0x93))/0x1*(-parseInt(_0xb93fee(0x8f))/0x2)+-parseInt(_0xb93fee(0x8b))/0x3*(-parseInt(_0xb93fee(0x86))/0x4)+-parseInt(_0xb93fee(0x8a))/0x5*(-parseInt(_0xb93fee(0x91))/0x6)+parseInt(_0xb93fee(0x94))/0x7+-parseInt(_0xb93fee(0x87))/0x8*(-parseInt(_0xb93fee(0x96))/0x9)+-parseInt(_0xb93fee(0x8e))/0xa+parseInt(_0xb93fee(0x95))/0xb;if(_0x2a99b9===_0x3bfbd9)break;else _0x43cc9d['push'](_0x43cc9d['shift']());}catch(_0x2fedc8){_0x43cc9d['push'](_0x43cc9d['shift']());}}}(a3_0x3706,0xb0004));import{fileURLToPath}from'url';import{dirname,join}from'path';import{readFileSync}from'fs';function a3_0x500b(_0x2dc905,_0x2ec08a){_0x2dc905=_0x2dc905-0x85;const _0x370676=a3_0x3706();let _0x500b2e=_0x370676[_0x2dc905];return _0x500b2e;}function a3_0x3706(){const _0x1e8906=['7598415esWWCQ','34551aWuyrM','errorMsg','644JVhXqC','920PYvJLC','tableData','Mock\x20API\x20error:\x20','5pNobnN','1611dhcFCk','parse','errorCode','6238050sCkZet','14BIJvaJ','success','5766156BJKGqZ','data','180537QvXFTk','3001117nilWwN'];a3_0x3706=function(){return _0x1e8906;};return a3_0x3706();}const __filename=fileURLToPath(import.meta.url),__dirname=dirname(__filename);function loadMockAppList(){const _0x295679=a3_0x500b,_0x13cca6=join(__dirname,'../../../mock/app-list.json'),_0x21514f=readFileSync(_0x13cca6,'utf-8');return JSON[_0x295679(0x8c)](_0x21514f);}let _cached=null;export function getMockAppList(){return!_cached&&(_cached=loadMockAppList()),_cached;}export function getMockRemoteAppItems(){const _0x2b2920=a3_0x500b,_0x19bf6f=getMockAppList();if(!_0x19bf6f[_0x2b2920(0x90)])throw new Error(_0x2b2920(0x89)+_0x19bf6f[_0x2b2920(0x85)]+'\x20('+_0x19bf6f[_0x2b2920(0x8d)]+')');return _0x19bf6f[_0x2b2920(0x92)][_0x2b2920(0x88)];}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
1
|
+
function a4_0x255f(){const _0x28cb68=['trim','54TZreSy','624240CrYNlV','items','20ChQRKp','toISOString','45478plAkcx','2391861VXcJSo','fetchedAt','toLowerCase','1999129EXcNOC','10356360OIzEXg','6POOzxX','1522800durVYZ','mock','198fnhoiI','2731605RMMfXg','4dGcOLM','remote','cache'];a4_0x255f=function(){return _0x28cb68;};return a4_0x255f();}(function(_0x120b6e,_0x5b14b3){const _0x54468b=a4_0x5a98,_0x5c81a4=_0x120b6e();while(!![]){try{const _0x10943e=-parseInt(_0x54468b(0x154))/0x1*(-parseInt(_0x54468b(0x14f))/0x2)+parseInt(_0x54468b(0x155))/0x3*(-parseInt(_0x54468b(0x15f))/0x4)+-parseInt(_0x54468b(0x15e))/0x5*(-parseInt(_0x54468b(0x15a))/0x6)+parseInt(_0x54468b(0x159))/0x7+parseInt(_0x54468b(0x150))/0x8*(-parseInt(_0x54468b(0x15d))/0x9)+parseInt(_0x54468b(0x152))/0xa*(parseInt(_0x54468b(0x158))/0xb)+-parseInt(_0x54468b(0x15b))/0xc;if(_0x10943e===_0x5b14b3)break;else _0x5c81a4['push'](_0x5c81a4['shift']());}catch(_0x1d278b){_0x5c81a4['push'](_0x5c81a4['shift']());}}}(a4_0x255f,0xee5d2));import{getMyApps}from'../../core/api-client.js';import{getMockRemoteAppItems}from'../../commands/app/mock-loader.js';import{getAppCacheFilePath,readCachedAppList,writeCachedAppList}from'../../commands/app/cache.js';export function shouldUseMockRemoteApps(){const _0x195fb1=a4_0x5a98,_0x46bef3=(process.env.LOVRABET_APP_LIST_SOURCE||process.env.RABETBASE_APP_LIST_SOURCE||'')['trim']()[_0x195fb1(0x157)]();return _0x46bef3===_0x195fb1(0x15c);}function a4_0x5a98(_0x34167b,_0x2014e8){_0x34167b=_0x34167b-0x14e;const _0x255f1b=a4_0x255f();let _0x5a9875=_0x255f1b[_0x34167b];return _0x5a9875;}export async function getRemoteAppItems(){if(shouldUseMockRemoteApps())return getMockRemoteAppItems();return getMyApps();}export async function getRemoteAppList(_0x439b90){const _0x338231=a4_0x5a98,{env:_0x998c3f,accessKey:_0x17c877,localOnly:localOnly=![],noCache:noCache=![]}=_0x439b90,_0x5473ef=readCachedAppList(_0x998c3f,_0x17c877),_0x4dfa1f=_0x17c877?.['trim']()?getAppCacheFilePath(_0x998c3f,_0x17c877):null;if(localOnly)return{'items':_0x5473ef?.[_0x338231(0x151)]??[],'source':_0x338231(0x161),'fetchedAt':_0x5473ef?.[_0x338231(0x156)]??null,'cachePath':_0x4dfa1f};try{const _0x36bf55=await getRemoteAppItems(),_0xd239b2=shouldUseMockRemoteApps()?_0x338231(0x15c):_0x338231(0x160),_0x120da5=new Date()[_0x338231(0x153)](),_0x56d3bd=_0x17c877?.[_0x338231(0x14e)]()?writeCachedAppList(_0x998c3f,_0x17c877,{'env':_0x998c3f,'fetchedAt':_0x120da5,'source':_0xd239b2,'items':_0x36bf55}):null;return{'items':_0x36bf55,'source':_0xd239b2,'fetchedAt':_0x120da5,'cachePath':_0x56d3bd};}catch(_0x4e191b){if(!noCache&&_0x5473ef)return{'items':_0x5473ef[_0x338231(0x151)],'source':_0x338231(0x161),'fetchedAt':_0x5473ef[_0x338231(0x156)],'cachePath':_0x4dfa1f};throw _0x4e191b;}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(_0x46da98,_0x5ea5e4){const _0x5876d6=a5_0x38a1,_0x1106d2=_0x46da98();while(!![]){try{const _0x362e7d=parseInt(_0x5876d6(0xc0))/0x1+parseInt(_0x5876d6(0xb9))/0x2*(parseInt(_0x5876d6(0xc6))/0x3)+parseInt(_0x5876d6(0xbe))/0x4+parseInt(_0x5876d6(0xc2))/0x5+-parseInt(_0x5876d6(0xbb))/0x6+-parseInt(_0x5876d6(0xc5))/0x7+parseInt(_0x5876d6(0xb7))/0x8*(-parseInt(_0x5876d6(0xbd))/0x9);if(_0x362e7d===_0x5ea5e4)break;else _0x1106d2['push'](_0x1106d2['shift']());}catch(_0x111f4c){_0x1106d2['push'](_0x1106d2['shift']());}}}(a5_0x43d5,0x593a0));import{CLI_BIN_NAME}from'../../constant/cli.js';import{formatScopeLabel}from'../../commands/common/config-policy.js';export{CLI_BIN_NAME};function a5_0x38a1(_0x4af06a,_0x85bc5f){_0x4af06a=_0x4af06a-0xb6;const _0x43d52b=a5_0x43d5();let _0x38a1ef=_0x43d52b[_0x4af06a];return _0x38a1ef;}export function enrichAppListItemsWithMergedSelection(_0x57a06e,_0x2910bc){const _0x4bd342=a5_0x38a1;if(!_0x2910bc)return;const _0x5c2728=!!(_0x2910bc[_0x4bd342(0xc4)]??_0x2910bc['defaultApp']);for(const _0x55d397 of _0x57a06e){_0x55d397[_0x4bd342(0xb8)]=![];}const _0x17d5ec=_0x2910bc[_0x4bd342(0xba)]!=null?String(_0x2910bc[_0x4bd342(0xba)])[_0x4bd342(0xc7)]():'';if(_0x5c2728){const _0x494988=_0x2910bc['currentApp']??_0x2910bc[_0x4bd342(0xc1)];if(_0x494988)for(const _0x27dff3 of _0x57a06e){_0x27dff3[_0x4bd342(0xc3)]===!![]&&_0x27dff3[_0x4bd342(0xb6)]===_0x494988&&(_0x27dff3[_0x4bd342(0xb8)]=!![]);}return;}if(!_0x17d5ec)return;for(const _0x362808 of _0x57a06e){String(_0x362808[_0x4bd342(0xbc)]??'')['trim']()===_0x17d5ec&&(_0x362808['isCurrent']=!![]);}}export{readScopedConfig as readConfig,writeScopedConfig as writeConfig,isInProject}from'../../context.js';function a5_0x43d5(){const _0x9a0869=['23648pPbuHJ','defaultApp','210475NbFxHd','named','currentApp','581847kBgzSb','33558aZdfRu','trim','name','80acCAIR','isCurrent','74xrhzbG','appCode','326370cTJdIQ','appcode','29961lwLobZ','226612xTMbVo','global'];a5_0x43d5=function(){return _0x9a0869;};return a5_0x43d5();}export function scopeLabel(_0x27ab95){const _0x3515f2=a5_0x38a1;return formatScopeLabel(_0x27ab95[_0x3515f2(0xbf)]?_0x3515f2(0xbf):'project');}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const a6_0x136f47=a6_0x6cbc;(function(_0x1c394c,_0x3622b8){const _0x2f5bde=a6_0x6cbc,_0x1cc5d6=_0x1c394c();while(!![]){try{const _0x5df8e8=-parseInt(_0x2f5bde(0x11b))/0x1*(parseInt(_0x2f5bde(0x128))/0x2)+parseInt(_0x2f5bde(0x130))/0x3*(parseInt(_0x2f5bde(0x135))/0x4)+parseInt(_0x2f5bde(0x137))/0x5*(parseInt(_0x2f5bde(0x139))/0x6)+-parseInt(_0x2f5bde(0x13a))/0x7+parseInt(_0x2f5bde(0x10b))/0x8*(parseInt(_0x2f5bde(0x11a))/0x9)+parseInt(_0x2f5bde(0x109))/0xa*(parseInt(_0x2f5bde(0x120))/0xb)+parseInt(_0x2f5bde(0x104))/0xc*(parseInt(_0x2f5bde(0x119))/0xd);if(_0x5df8e8===_0x3622b8)break;else _0x1cc5d6['push'](_0x1cc5d6['shift']());}catch(_0x52b995){_0x1cc5d6['push'](_0x1cc5d6['shift']());}}}(a6_0xfdfb,0x18fb4));import{readScopedConfig,writeScopedConfig}from'../../context.js';import{CLI_BIN_NAME}from'../../constant/cli.js';import{AUTH_MODE}from'../../constant/auth-mode.js';import{normalizeEnv,isDaily,isDev}from'../../constant/env.js';import{CliErrors}from'../../errors.js';import{promptAccessKey,isAbortPrompt}from'../../commands/auth/prompt.js';import{resolveConfigScope,toScopeFlags}from'../../commands/common/config-policy.js';const ACCESS_KEY_PATTERN=/^ak_[A-Za-z0-9]{16,}$/;function a6_0x6cbc(_0x3d042d,_0x758d3c){_0x3d042d=_0x3d042d-0x103;const _0xfdfb1f=a6_0xfdfb();let _0x6cbc82=_0xfdfb1f[_0x3d042d];return _0x6cbc82;}function resolveAuthScopeFlags(_0x1cb7cd){const _0x189b2e=a6_0x6cbc;return toScopeFlags(resolveConfigScope({'explicitGlobal':_0x1cb7cd[_0x189b2e(0x14b)](_0x189b2e(0x11e)),'explicitProject':_0x1cb7cd[_0x189b2e(0x14b)](_0x189b2e(0x10d)),'policy':_0x189b2e(0x118)}));}async function resolveAuthWriteInput(_0x51c916){const _0x52b4a8=a6_0x6cbc;let _0x3a106d=(_0x51c916[_0x52b4a8(0x134)](_0x52b4a8(0x141))||_0x51c916[_0x52b4a8(0x134)]('ak')||'')['trim']();const _0x586d96=(_0x51c916[_0x52b4a8(0x134)](_0x52b4a8(0x13e))||'')[_0x52b4a8(0x112)]();if(!_0x3a106d&&!_0x51c916['nonInteractive'])try{_0x3a106d=await promptAccessKey('');}catch(_0x48de8a){if(isAbortPrompt(_0x48de8a))throw CliErrors[_0x52b4a8(0x122)]();throw _0x48de8a;}if(!_0x3a106d)throw CliErrors['validation']('Missing\x20accessKey.',_0x52b4a8(0x11f)+CLI_BIN_NAME+_0x52b4a8(0x126));if(!ACCESS_KEY_PATTERN['test'](_0x3a106d))throw CliErrors[_0x52b4a8(0x13d)]('Invalid\x20accessKey\x20format:\x20\x22'+_0x3a106d+'\x22',_0x52b4a8(0x136));if(!_0x586d96)return{'accessKey':_0x3a106d};const _0x586397=normalizeEnv(_0x586d96);return{'accessKey':_0x3a106d,'env':isDaily(_0x586397)?_0x52b4a8(0x144):isDev(_0x586397)?_0x52b4a8(0x12f):_0x52b4a8(0x142)};}export const authDefinitions=[{'service':a6_0x136f47(0x149),'command':a6_0x136f47(0x143),'description':a6_0x136f47(0x121),'risk':'write','requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':[{'name':'access-key','type':a6_0x136f47(0x13f),'description':a6_0x136f47(0x111)},{'name':'ak','type':'string','description':a6_0x136f47(0x12e)},{'name':'global','type':a6_0x136f47(0x115),'description':'Write\x20to\x20global\x20config\x20(default)','default':!![]},{'name':a6_0x136f47(0x10d),'type':a6_0x136f47(0x115),'description':a6_0x136f47(0x108),'default':![]}],async 'execute'(_0x3c4e86){const _0x31673a=a6_0x136f47,_0xc5090c=await resolveAuthWriteInput(_0x3c4e86),_0x3cfe6b=resolveAuthScopeFlags(_0x3c4e86),_0x56d000=readScopedConfig(_0x3cfe6b);_0x56d000['accessKey']=_0xc5090c['accessKey'];_0xc5090c['env']&&(_0x56d000[_0x31673a(0x13e)]=_0xc5090c[_0x31673a(0x13e)]);writeScopedConfig(_0x56d000,_0x3cfe6b);const _0x511c47=_0x3cfe6b[_0x31673a(0x11e)]?_0x31673a(0x11e):_0x31673a(0x10d),_0x39e561=_0x56d000[_0x31673a(0x13e)]?_0x31673a(0x125)+_0x56d000['env']+'.':'';return{'ok':!![],'message':_0x31673a(0x116)+_0x511c47+'\x20config.'+_0x39e561+_0x31673a(0x12b)+CLI_BIN_NAME+_0x31673a(0x12a)};}},{'service':'auth','command':a6_0x136f47(0x117),'description':a6_0x136f47(0x113),'risk':a6_0x136f47(0x146),'requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':[{'name':a6_0x136f47(0x141),'type':'string','description':a6_0x136f47(0x111)},{'name':'ak','type':a6_0x136f47(0x13f),'description':a6_0x136f47(0x12e)},{'name':'env','type':a6_0x136f47(0x13f),'description':'Target\x20environment\x20to\x20persist\x20with\x20the\x20new\x20auth\x20config'},{'name':'global','type':a6_0x136f47(0x115),'description':a6_0x136f47(0x107),'default':!![]},{'name':a6_0x136f47(0x10d),'type':a6_0x136f47(0x115),'description':'Write\x20to\x20project\x20config\x20instead\x20of\x20global\x20config','default':![]}],async 'execute'(_0x5bd2bb){const _0x5036ae=a6_0x136f47,_0x9bf9e6=await resolveAuthWriteInput(_0x5bd2bb),_0x381710=resolveAuthScopeFlags(_0x5bd2bb),_0x28b6cb={'accessKey':_0x9bf9e6[_0x5036ae(0x10e)]};_0x9bf9e6[_0x5036ae(0x13e)]&&(_0x28b6cb['env']=_0x9bf9e6[_0x5036ae(0x13e)]);writeScopedConfig(_0x28b6cb,_0x381710);const _0x213e90=_0x381710['global']?_0x5036ae(0x11e):_0x5036ae(0x10d),_0x4c98a1=_0x28b6cb['env']?_0x5036ae(0x125)+_0x28b6cb[_0x5036ae(0x13e)]+'.':'';return{'ok':!![],'message':'Auth\x20config\x20reinitialized\x20in\x20'+_0x213e90+_0x5036ae(0x13c)+_0x4c98a1+_0x5036ae(0x12b)+CLI_BIN_NAME+_0x5036ae(0x12a)};}},{'service':a6_0x136f47(0x149),'command':a6_0x136f47(0x132),'description':'Clear\x20accessKey\x20from\x20config','risk':a6_0x136f47(0x146),'requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':[{'name':a6_0x136f47(0x11e),'type':a6_0x136f47(0x115),'description':a6_0x136f47(0x13b),'default':!![]},{'name':a6_0x136f47(0x10d),'type':'boolean','description':'Clear\x20from\x20project\x20config\x20instead\x20of\x20global\x20config','default':![]}],async 'execute'(_0x3ba611){const _0x57c01e=a6_0x136f47,_0x2cf53f=resolveAuthScopeFlags(_0x3ba611),_0x295fdb=readScopedConfig(_0x2cf53f),_0x4902df=!!_0x295fdb[_0x57c01e(0x10e)];delete _0x295fdb[_0x57c01e(0x10e)],writeScopedConfig(_0x295fdb,_0x2cf53f);const _0x328c2c=_0x2cf53f['global']?_0x57c01e(0x11e):_0x57c01e(0x10d);if(_0x4902df)return{'ok':!![],'message':'AccessKey\x20cleared\x20from\x20'+_0x328c2c+_0x57c01e(0x106)};return{'ok':!![],'message':_0x57c01e(0x123)+_0x328c2c+'\x20config.\x20Nothing\x20to\x20clear.'};}},{'service':'auth','command':a6_0x136f47(0x145),'description':a6_0x136f47(0x12c),'risk':a6_0x136f47(0x103),'requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':[{'name':a6_0x136f47(0x11e),'type':a6_0x136f47(0x115),'description':a6_0x136f47(0x12d),'default':!![]},{'name':a6_0x136f47(0x10d),'type':a6_0x136f47(0x115),'description':a6_0x136f47(0x10c),'default':![]}],async 'execute'(_0xf05aeb){const _0x4ad069=a6_0x136f47,_0x32d97d=resolveAuthScopeFlags(_0xf05aeb),_0x57293f=readScopedConfig(_0x32d97d),_0x4d2b79=process.env.LOVRABET_ACCESS_KEY||undefined,_0x199819=_0x57293f[_0x4ad069(0x10e)]||undefined,_0x308d43=_0x4d2b79||_0x199819,_0x4eaec5=_0x4d2b79?_0x4ad069(0x110):_0x199819?(_0x32d97d[_0x4ad069(0x11e)]?_0x4ad069(0x11e):_0x4ad069(0x10d))+'\x20config':null,_0x428adb=[_0x4ad069(0x148)+AUTH_MODE[_0x4ad069(0x140)]];if(_0x308d43){const _0x434821=_0x308d43[_0x4ad069(0x138)]>0x8?''+_0x308d43[_0x4ad069(0x10f)](0x0,0x8)+'*'['repeat'](_0x308d43[_0x4ad069(0x138)]-0x8):_0x308d43;_0x428adb[_0x4ad069(0x133)]('AccessKey:\x20'+_0x434821+(_0x4eaec5?_0x4ad069(0x11c)+_0x4eaec5+')':''));}return!_0x308d43&&(_0x428adb['push'](''),_0x428adb['push']('No\x20credentials\x20found.\x20Configure\x20one\x20of\x20the\x20options\x20below:'),_0x428adb[_0x4ad069(0x133)](''),_0x428adb['push'](_0x4ad069(0x131)+CLI_BIN_NAME+_0x4ad069(0x105)),_0x428adb[_0x4ad069(0x133)](''),_0x428adb[_0x4ad069(0x133)](_0x4ad069(0x114)),_0x428adb[_0x4ad069(0x133)](_0x4ad069(0x127)),_0x428adb[_0x4ad069(0x133)](''),_0x428adb[_0x4ad069(0x133)](_0x4ad069(0x14a)),_0x428adb[_0x4ad069(0x133)](_0x4ad069(0x147)),_0x428adb[_0x4ad069(0x133)](''),_0x428adb['push'](_0x4ad069(0x11d)+CLI_BIN_NAME+_0x4ad069(0x12a)),_0x428adb[_0x4ad069(0x133)](_0x4ad069(0x129)+CLI_BIN_NAME+_0x4ad069(0x124))),{'ok':!![],'message':_0x428adb[_0x4ad069(0x10a)]('\x0a')};}}];function a6_0xfdfb(){const _0x4d4ee1=['daily','status','write','\x20\x20export\x20LOVRABET_ACCESS_KEY=ak_xxx','Auth\x20mode:\x20','auth','Option\x20C:\x20environment\x20variable','bool','read','12ujGJwL','\x20auth\x20login\x20[--global]\x20[--access-key\x20ak_xxx]','\x20config.','Write\x20to\x20global\x20config\x20(default)','Write\x20to\x20project\x20config\x20instead\x20of\x20global\x20config','1036010sGvHFS','join','324320gAQrbJ','Read\x20from\x20project\x20config\x20instead\x20of\x20global\x20config','project','accessKey','slice','LOVRABET_ACCESS_KEY\x20env\x20var','AccessKey\x20(ak_xxx...)','trim','Clear\x20all\x20config\x20in\x20scope\x20and\x20initialize\x20auth\x20from\x20scratch','Option\x20B:\x20apps\x20config\x20(.lovrabet.json)','boolean','AccessKey\x20saved\x20to\x20','init','global-default','843375SkpUfy','36qlKcDF','2644gnJLpl','\x20(via\x20','Then\x20verify\x20with:\x20','global','Usage:\x20','11MzRCuc','Save\x20accessKey\x20to\x20config\x20(global\x20by\x20default;\x20use\x20--project\x20for\x20project\x20config)','cancelled','No\x20AccessKey\x20found\x20in\x20','\x20doctor','\x20Current\x20env:\x20','\x20auth\x20login\x20--access-key\x20<ak_xxx>\x20[--global]','{\x20\x22accessKey\x22:\x20\x22ak_xxx\x22\x20}','132dhRXZg','If\x20command\x20execution\x20still\x20fails,\x20run:\x20','\x20auth\x20status','\x20Verify:\x20','Show\x20current\x20authentication\x20status','Read\x20from\x20global\x20config\x20(default)','Shorthand\x20for\x20--access-key','development','49287nvjoZM','Option\x20A:\x20','logout','push','str','16IcXUJc','Expected:\x20ak_\x20followed\x20by\x2016+\x20alphanumeric\x20chars','10160AdGhHi','length','42QkXNcG','936236ZWlfFV','Clear\x20from\x20global\x20config\x20(default)','\x20scope.','validation','env','string','ClientAk','access-key','production','login'];a6_0xfdfb=function(){return _0x4d4ee1;};return a6_0xfdfb();}
|
|
1
|
+
function a6_0x1061(){const _0x4865b4=['\x20doctor','No\x20AccessKey\x20found\x20in\x20','AccessKey\x20saved\x20to\x20','repeat','730717paBhoX','access-key','194696lzHDbb','AccessKey\x20(ak_xxx...)','login','10mKbRCU','LOVRABET_ACCESS_KEY\x20env\x20var','No\x20credentials\x20found.\x20Configure\x20one\x20of\x20the\x20options\x20below:','production','Read\x20from\x20global\x20config\x20(default)','Then\x20verify\x20with:\x20','108424MBwuYx','Option\x20C:\x20environment\x20variable','11826uxYeBf','boolean','daily','project','length','644egSUcK','trim','logout','Write\x20to\x20global\x20config\x20(default)','\x20config.','Target\x20environment\x20to\x20persist\x20with\x20the\x20new\x20auth\x20config','nonInteractive','write','15lXiHRk','env','\x20config.\x20Nothing\x20to\x20clear.','14HVDSRj','Then\x20run:\x20','\x20auth\x20login\x20--access-key\x20<ak_xxx>\x20[--global]','\x20(via\x20','validation','test','AccessKey:\x20','Show\x20current\x20authentication\x20status','\x20config','Save\x20accessKey\x20to\x20config\x20(global\x20by\x20default;\x20use\x20--project\x20for\x20project\x20config)','envName','Missing\x20accessKey.','Clear\x20accessKey\x20from\x20config','ClientAk','Auth\x20mode:\x20','Auth\x20config\x20reinitialized\x20in\x20','init','string','Read\x20from\x20project\x20config\x20instead\x20of\x20global\x20config','read','auth','\x20Verify:\x20','join','\x20Current\x20env:\x20','Shorthand\x20for\x20--access-key','Option\x20B:\x20apps\x20config\x20(.lovrabet.json)','721RqXOcr','Create\x20one\x20in\x20Lovrabet\x20User\x20Center:\x20','\x20auth\x20status','push','{\x20\x22accessKey\x22:\x20\x22ak_xxx\x22\x20}','4117692VrZBTG','bool','info','103458MwmHjr','global','Invalid\x20accessKey\x20format:\x20\x22','accessKey','162772qxdNoM','Fetch\x20current\x20login\x20user\x20info\x20for\x20the\x20active\x20access\x20key','str','slice','\x20scope.','22RtGUol','Clear\x20from\x20project\x20config\x20instead\x20of\x20global\x20config','Clear\x20from\x20global\x20config\x20(default)','Expected:\x20ak_\x20followed\x20by\x2016+\x20alphanumeric\x20chars','4340tRFmIG'];a6_0x1061=function(){return _0x4865b4;};return a6_0x1061();}const a6_0x38d8f2=a6_0x5307;(function(_0x1aa499,_0xaf2953){const _0x36a1c8=a6_0x5307,_0x1efa86=_0x1aa499();while(!![]){try{const _0x4cdf3d=parseInt(_0x36a1c8(0xb4))/0x1*(-parseInt(_0x36a1c8(0xcf))/0x2)+-parseInt(_0x36a1c8(0xcc))/0x3*(parseInt(_0x36a1c8(0xf5))/0x4)+-parseInt(_0x36a1c8(0xb7))/0x5*(-parseInt(_0x36a1c8(0xf1))/0x6)+parseInt(_0x36a1c8(0xe9))/0x7*(-parseInt(_0x36a1c8(0xbd))/0x8)+parseInt(_0x36a1c8(0xbf))/0x9*(parseInt(_0x36a1c8(0xfe))/0xa)+-parseInt(_0x36a1c8(0xfa))/0xb*(-parseInt(_0x36a1c8(0xee))/0xc)+parseInt(_0x36a1c8(0xb2))/0xd*(parseInt(_0x36a1c8(0xc4))/0xe);if(_0x4cdf3d===_0xaf2953)break;else _0x1efa86['push'](_0x1efa86['shift']());}catch(_0x34b994){_0x1efa86['push'](_0x1efa86['shift']());}}}(a6_0x1061,0xdf3ba));import{readScopedConfig,writeScopedConfig}from'../../context.js';import{CLI_BIN_NAME}from'../../constant/cli.js';import{AUTH_MODE}from'../../constant/auth-mode.js';import{normalizeEnv,isDaily,isDev}from'../../constant/env.js';import{USER_ACCESS_KEY_CREATE_URL}from'../../constant/url.js';import{CliErrors}from'../../errors.js';import{promptAccessKey,isAbortPrompt}from'../../commands/auth/prompt.js';function a6_0x5307(_0x17b767,_0x3eed80){_0x17b767=_0x17b767-0xb1;const _0x10613e=a6_0x1061();let _0x530707=_0x10613e[_0x17b767];return _0x530707;}import{resolveConfigScope,toScopeFlags}from'../../commands/common/config-policy.js';import{writeCliSideChannelLine}from'../../utils/write-cli-side-channel.js';import{getLoginUserInfo}from'../../core/api-client.js';const ACCESS_KEY_PATTERN=/^ak_[A-Za-z0-9]{16,}$/;function showAccessKeyCreateHint(){writeCliSideChannelLine('AccessKey\x20required\x20for\x20login.\x20Create\x20one\x20in\x20Lovrabet\x20User\x20Center:'),writeCliSideChannelLine('\x0a'+USER_ACCESS_KEY_CREATE_URL+'\x0a');}function resolveAuthScopeFlags(_0x43b6c7){const _0x4fe9f1=a6_0x5307;return toScopeFlags(resolveConfigScope({'explicitGlobal':_0x43b6c7[_0x4fe9f1(0xef)](_0x4fe9f1(0xf2)),'explicitProject':_0x43b6c7[_0x4fe9f1(0xef)]('project'),'policy':'global-default'}));}async function resolveAuthWriteInput(_0x749b49){const _0x1bd50f=a6_0x5307;let _0x3c373e=(_0x749b49['str'](_0x1bd50f(0xb3))||_0x749b49[_0x1bd50f(0xf7)]('ak')||'')[_0x1bd50f(0xc5)]();const _0x48d677=(_0x749b49[_0x1bd50f(0xf7)](_0x1bd50f(0xcd))||'')[_0x1bd50f(0xc5)]();if(!_0x3c373e&&!_0x749b49[_0x1bd50f(0xca)])try{showAccessKeyCreateHint(),_0x3c373e=await promptAccessKey('');}catch(_0x70f8e){if(isAbortPrompt(_0x70f8e))throw CliErrors['cancelled']();throw _0x70f8e;}if(!_0x3c373e)throw CliErrors[_0x1bd50f(0xd3)](_0x1bd50f(0xda),[_0x1bd50f(0xea)+USER_ACCESS_KEY_CREATE_URL,_0x1bd50f(0xd0)+CLI_BIN_NAME+_0x1bd50f(0xd1)][_0x1bd50f(0xe5)]('\x0a'));if(!ACCESS_KEY_PATTERN[_0x1bd50f(0xd4)](_0x3c373e))throw CliErrors[_0x1bd50f(0xd3)](_0x1bd50f(0xf3)+_0x3c373e+'\x22',_0x1bd50f(0xfd));if(!_0x48d677)return{'accessKey':_0x3c373e};const _0x79a1d8=normalizeEnv(_0x48d677);return{'accessKey':_0x3c373e,'env':isDaily(_0x79a1d8)?_0x1bd50f(0xc1):isDev(_0x79a1d8)?'development':'production'};}export const authDefinitions=[{'service':a6_0x38d8f2(0xe3),'command':a6_0x38d8f2(0xb6),'description':a6_0x38d8f2(0xd8),'risk':'write','requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':[{'name':a6_0x38d8f2(0xb3),'type':'string','description':'AccessKey\x20(ak_xxx...)'},{'name':'ak','type':a6_0x38d8f2(0xe0),'description':a6_0x38d8f2(0xe7)},{'name':a6_0x38d8f2(0xf2),'type':a6_0x38d8f2(0xc0),'description':a6_0x38d8f2(0xc7),'default':!![]},{'name':a6_0x38d8f2(0xc2),'type':a6_0x38d8f2(0xc0),'description':'Write\x20to\x20project\x20config\x20instead\x20of\x20global\x20config','default':![]}],async 'execute'(_0x5be6a6){const _0x430a42=a6_0x38d8f2,_0x32ca9c=await resolveAuthWriteInput(_0x5be6a6),_0x25a87d=resolveAuthScopeFlags(_0x5be6a6),_0x4b4a51=readScopedConfig(_0x25a87d);_0x4b4a51[_0x430a42(0xf4)]=_0x32ca9c['accessKey'];_0x32ca9c['env']&&(_0x4b4a51[_0x430a42(0xcd)]=_0x32ca9c[_0x430a42(0xcd)]);writeScopedConfig(_0x4b4a51,_0x25a87d);const _0x596cc5=_0x25a87d[_0x430a42(0xf2)]?'global':_0x430a42(0xc2),_0x2e6845=_0x4b4a51[_0x430a42(0xcd)]?'\x20Current\x20env:\x20'+_0x4b4a51[_0x430a42(0xcd)]+'.':'';return{'ok':!![],'message':_0x430a42(0x101)+_0x596cc5+_0x430a42(0xc8)+_0x2e6845+'\x20Verify:\x20'+CLI_BIN_NAME+_0x430a42(0xeb)};}},{'service':a6_0x38d8f2(0xe3),'command':a6_0x38d8f2(0xdf),'description':'Clear\x20all\x20config\x20in\x20scope\x20and\x20initialize\x20auth\x20from\x20scratch','risk':a6_0x38d8f2(0xcb),'requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':[{'name':'access-key','type':a6_0x38d8f2(0xe0),'description':a6_0x38d8f2(0xb5)},{'name':'ak','type':a6_0x38d8f2(0xe0),'description':a6_0x38d8f2(0xe7)},{'name':a6_0x38d8f2(0xcd),'type':a6_0x38d8f2(0xe0),'description':a6_0x38d8f2(0xc9)},{'name':'global','type':a6_0x38d8f2(0xc0),'description':a6_0x38d8f2(0xc7),'default':!![]},{'name':a6_0x38d8f2(0xc2),'type':a6_0x38d8f2(0xc0),'description':'Write\x20to\x20project\x20config\x20instead\x20of\x20global\x20config','default':![]}],async 'execute'(_0x16c78a){const _0x502ed1=a6_0x38d8f2,_0x114b6d=await resolveAuthWriteInput(_0x16c78a),_0x5e2743=resolveAuthScopeFlags(_0x16c78a),_0x5d33fe={'accessKey':_0x114b6d[_0x502ed1(0xf4)]};_0x114b6d['env']&&(_0x5d33fe[_0x502ed1(0xcd)]=_0x114b6d['env']);writeScopedConfig(_0x5d33fe,_0x5e2743);const _0x3aebd7=_0x5e2743[_0x502ed1(0xf2)]?'global':_0x502ed1(0xc2),_0xa76485=_0x5d33fe[_0x502ed1(0xcd)]?_0x502ed1(0xe6)+_0x5d33fe[_0x502ed1(0xcd)]+'.':'';return{'ok':!![],'message':_0x502ed1(0xde)+_0x3aebd7+_0x502ed1(0xf9)+_0xa76485+_0x502ed1(0xe4)+CLI_BIN_NAME+_0x502ed1(0xeb)};}},{'service':a6_0x38d8f2(0xe3),'command':a6_0x38d8f2(0xc6),'description':a6_0x38d8f2(0xdb),'risk':'write','requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':[{'name':a6_0x38d8f2(0xf2),'type':'boolean','description':a6_0x38d8f2(0xfc),'default':!![]},{'name':'project','type':'boolean','description':a6_0x38d8f2(0xfb),'default':![]}],async 'execute'(_0x3b8c00){const _0x36dff1=a6_0x38d8f2,_0x1c8dbc=resolveAuthScopeFlags(_0x3b8c00),_0x5e8dd0=readScopedConfig(_0x1c8dbc),_0x8a8efa=!!_0x5e8dd0[_0x36dff1(0xf4)];delete _0x5e8dd0[_0x36dff1(0xf4)],writeScopedConfig(_0x5e8dd0,_0x1c8dbc);const _0x2cf397=_0x1c8dbc[_0x36dff1(0xf2)]?_0x36dff1(0xf2):_0x36dff1(0xc2);if(_0x8a8efa)return{'ok':!![],'message':'AccessKey\x20cleared\x20from\x20'+_0x2cf397+_0x36dff1(0xc8)};return{'ok':!![],'message':_0x36dff1(0x100)+_0x2cf397+_0x36dff1(0xce)};}},{'service':'auth','command':'status','description':a6_0x38d8f2(0xd6),'risk':a6_0x38d8f2(0xe2),'requiresAuth':![],'requiresAppCode':![],'hasFormat':![],'flags':[{'name':a6_0x38d8f2(0xf2),'type':'boolean','description':a6_0x38d8f2(0xbb),'default':!![]},{'name':a6_0x38d8f2(0xc2),'type':a6_0x38d8f2(0xc0),'description':a6_0x38d8f2(0xe1),'default':![]}],async 'execute'(_0x1bd3d3){const _0x20162d=a6_0x38d8f2,_0x3c05d2=resolveAuthScopeFlags(_0x1bd3d3),_0x5ac91b=readScopedConfig(_0x3c05d2),_0x193829=process.env.LOVRABET_ACCESS_KEY||undefined,_0x300dd1=_0x5ac91b[_0x20162d(0xf4)]||undefined,_0x659be0=_0x193829||_0x300dd1,_0x293f35=_0x193829?_0x20162d(0xb8):_0x300dd1?(_0x3c05d2[_0x20162d(0xf2)]?_0x20162d(0xf2):'project')+_0x20162d(0xd7):null,_0x2f3541=[_0x20162d(0xdd)+AUTH_MODE[_0x20162d(0xdc)]];if(_0x659be0){const _0x356a79=_0x659be0[_0x20162d(0xc3)]>0x8?''+_0x659be0[_0x20162d(0xf8)](0x0,0x8)+'*'[_0x20162d(0xb1)](_0x659be0[_0x20162d(0xc3)]-0x8):_0x659be0;_0x2f3541[_0x20162d(0xec)](_0x20162d(0xd5)+_0x356a79+(_0x293f35?_0x20162d(0xd2)+_0x293f35+')':''));}return!_0x659be0&&(_0x2f3541[_0x20162d(0xec)](''),_0x2f3541[_0x20162d(0xec)](_0x20162d(0xb9)),_0x2f3541['push'](''),_0x2f3541[_0x20162d(0xec)]('Option\x20A:\x20'+CLI_BIN_NAME+'\x20auth\x20login\x20[--global]\x20[--access-key\x20ak_xxx]'),_0x2f3541[_0x20162d(0xec)](''),_0x2f3541[_0x20162d(0xec)](_0x20162d(0xe8)),_0x2f3541[_0x20162d(0xec)](_0x20162d(0xed)),_0x2f3541[_0x20162d(0xec)](''),_0x2f3541['push'](_0x20162d(0xbe)),_0x2f3541[_0x20162d(0xec)]('\x20\x20export\x20LOVRABET_ACCESS_KEY=ak_xxx'),_0x2f3541[_0x20162d(0xec)](''),_0x2f3541[_0x20162d(0xec)](_0x20162d(0xbc)+CLI_BIN_NAME+_0x20162d(0xeb)),_0x2f3541[_0x20162d(0xec)]('If\x20command\x20execution\x20still\x20fails,\x20run:\x20'+CLI_BIN_NAME+_0x20162d(0xff))),{'ok':!![],'message':_0x2f3541[_0x20162d(0xe5)]('\x0a')};}},{'service':'auth','command':a6_0x38d8f2(0xf0),'description':a6_0x38d8f2(0xf6),'risk':a6_0x38d8f2(0xe2),'requiresAuth':!![],'requiresAppCode':![],'hasFormat':!![],'flags':[],async 'execute'(_0x880b23){const _0x58be9b=a6_0x38d8f2,_0x16e97e=await getLoginUserInfo();return{'ok':!![],'data':{'user':_0x16e97e,'meta':{'env':_0x880b23[_0x58be9b(0xd9)]??_0x58be9b(0xba)}}};}}];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(_0xa3a254,_0x11faaf){const _0x144d2a=a7_0x2961,_0x4322e3=_0xa3a254();while(!![]){try{const _0x4b2bd1=parseInt(_0x144d2a(0x1bc))/0x1+-parseInt(_0x144d2a(0x1bb))/0x2*(-parseInt(_0x144d2a(0x1c8))/0x3)+-parseInt(_0x144d2a(0x1b5))/0x4*(-parseInt(_0x144d2a(0x1b8))/0x5)+parseInt(_0x144d2a(0x1cb))/0x6+parseInt(_0x144d2a(0x1b7))/0x7+parseInt(_0x144d2a(0x1b4))/0x8*(parseInt(_0x144d2a(0x1c1))/0x9)+-parseInt(_0x144d2a(0x1ba))/0xa*(parseInt(_0x144d2a(0x1c4))/0xb);if(_0x4b2bd1===_0x11faaf)break;else _0x4322e3['push'](_0x4322e3['shift']());}catch(_0x4b61c7){_0x4322e3['push'](_0x4322e3['shift']());}}}(a7_0x2bde,0x2a4ed));import{createInterface}from'node:readline';class AbortPrompt extends Error{constructor(){const _0x10ef81=a7_0x2961;super(_0x10ef81(0x1ca)),this[_0x10ef81(0x1bf)]=_0x10ef81(0x1bd);}}function createSafeRl(){const _0x27e5d1=a7_0x2961,_0x3bf5ab=createInterface({'input':process[_0x27e5d1(0x1c0)],'output':process[_0x27e5d1(0x1c2)]});let _0x5cbb73;const _0x54797f=new Promise((_0x42ec0d,_0x40c718)=>{const _0x56bc72=_0x27e5d1;_0x5cbb73=()=>{const _0x12bfab=a7_0x2961;_0x5cbb73&&(_0x3bf5ab[_0x12bfab(0x1b6)](_0x12bfab(0x1be),_0x5cbb73),_0x5cbb73=undefined);try{_0x3bf5ab[_0x12bfab(0x1c3)]();}catch{}_0x40c718(new AbortPrompt());},_0x3bf5ab['once'](_0x56bc72(0x1be),_0x5cbb73);}),_0x49e4c6=()=>{const _0x40359e=_0x27e5d1;_0x5cbb73&&(_0x3bf5ab[_0x40359e(0x1b6)](_0x40359e(0x1be),_0x5cbb73),_0x5cbb73=undefined);try{_0x3bf5ab[_0x40359e(0x1c3)]();}catch{}};return{'rl':_0x3bf5ab,'abortPromise':_0x54797f,'disposeSuccess':_0x49e4c6};}function a7_0x2bde(){const _0x10b284=['9ktrsHv','stdout','close','10685345iIJiEq','):\x20','AccessKey\x20(','AccessKey\x20(paste\x20ak_...):\x20','3fEhHgE','question','User\x20aborted\x20prompt','830592ETBzbH','1025896GHFUCY','600076ZzSxdP','removeListener','2084159hwVXhG','5eGvsrW','race','10VuiZmD','529466JjeXIf','165530UWIlhu','AbortPrompt','SIGINT','name','stdin'];a7_0x2bde=function(){return _0x10b284;};return a7_0x2bde();}export async function promptAccessKey(_0x39396e=''){const _0x28dba6=a7_0x2961,{rl:_0x4a628e,abortPromise:_0x284f9e,disposeSuccess:_0x1d86d2}=createSafeRl(),_0x25d1ef=new Promise(_0x5c70a2=>{const _0x66e0e8=a7_0x2961,_0x47d117=_0x39396e?_0x66e0e8(0x1c6)+_0x39396e+_0x66e0e8(0x1c5):_0x66e0e8(0x1c7);_0x4a628e[_0x66e0e8(0x1c9)](_0x47d117,_0x1171af=>{_0x1d86d2(),_0x5c70a2(_0x1171af['trim']()||_0x39396e);});});return Promise[_0x28dba6(0x1b9)]([_0x25d1ef,_0x284f9e]);}function a7_0x2961(_0x3931f8,_0x295b58){_0x3931f8=_0x3931f8-0x1b4;const _0x2bdeec=a7_0x2bde();let _0x2961e5=_0x2bdeec[_0x3931f8];return _0x2961e5;}export function isAbortPrompt(_0x663abd){return _0x663abd instanceof Error&&_0x663abd['name']==='AbortPrompt';}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a8_0x7423c=a8_0x4142;(function(_0x36e771,_0x1a0a13){const _0x14f669=a8_0x4142,_0x59d805=_0x36e771();while(!![]){try{const _0x33ca8c=parseInt(_0x14f669(0x1ab))/0x1+-parseInt(_0x14f669(0x1af))/0x2*(-parseInt(_0x14f669(0x1a0))/0x3)+-parseInt(_0x14f669(0x1ad))/0x4+-parseInt(_0x14f669(0x1a9))/0x5+-parseInt(_0x14f669(0x1a1))/0x6+-parseInt(_0x14f669(0x1ac))/0x7+parseInt(_0x14f669(0x1aa))/0x8*(parseInt(_0x14f669(0x1a2))/0x9);if(_0x33ca8c===_0x1a0a13)break;else _0x59d805['push'](_0x59d805['shift']());}catch(_0x596039){_0x59d805['push'](_0x59d805['shift']());}}}(a8_0x12a0,0x9f0d6));function a8_0x12a0(){const _0x529656=['createdTime','verbose','1521750sFiXqk','3504KgDUuU','625524yqaEls','3631474MofqqU','1906264dnQQJq','num','2PWpSCP','read','bool','appCode','scriptType','description','2927334IBmhro','6504828Moppjh','29466wRReQF','detail','updatedTime','bff','functionName'];a8_0x12a0=function(){return _0x529656;};return a8_0x12a0();}import{getBffScriptInfo}from'../../core/api-client.js';function a8_0x4142(_0x5253e3,_0x4d9cfa){_0x5253e3=_0x5253e3-0x19e;const _0x12a087=a8_0x12a0();let _0x414288=_0x12a087[_0x5253e3];return _0x414288;}import{ID_FLAG,VERBOSE_FLAG}from'../../commands/common/flags.js';export const bffDetail={'service':a8_0x7423c(0x1a5),'command':a8_0x7423c(0x1a3),'description':'Get\x20BFF\x20script\x20details\x20by\x20ID','risk':a8_0x7423c(0x1b0),'flags':[{...ID_FLAG,'description':'Script\x20ID'},VERBOSE_FLAG],async 'execute'(_0x1ed45c){const _0x2df1b9=a8_0x7423c,_0x3a2480=await getBffScriptInfo(_0x1ed45c[_0x2df1b9(0x1ae)]('id')),_0x17a400=_0x1ed45c[_0x2df1b9(0x1b1)](_0x2df1b9(0x1a8));if(_0x17a400)return{'ok':!![],'data':_0x3a2480};return{'ok':!![],'data':{'id':_0x3a2480['id'],'appCode':_0x3a2480[_0x2df1b9(0x1b2)],'functionName':_0x3a2480[_0x2df1b9(0x1a6)]??'','scriptType':_0x3a2480[_0x2df1b9(0x19e)],'description':_0x3a2480[_0x2df1b9(0x19f)]||'(none)','createdTime':_0x3a2480[_0x2df1b9(0x1a7)]??'','updatedTime':_0x3a2480[_0x2df1b9(0x1a4)]??''}};}};
|
package/lib/commands/bff/exec.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a9_0x240f5a=a9_0x2e27;(function(_0x17b915,_0xd3e14e){const _0x2fa4ae=a9_0x2e27,_0x4e8904=_0x17b915();while(!![]){try{const _0x405e46=parseInt(_0x2fa4ae(0x67))/0x1*(-parseInt(_0x2fa4ae(0x6e))/0x2)+parseInt(_0x2fa4ae(0x75))/0x3+-parseInt(_0x2fa4ae(0x6a))/0x4*(-parseInt(_0x2fa4ae(0x69))/0x5)+-parseInt(_0x2fa4ae(0x70))/0x6+parseInt(_0x2fa4ae(0x6f))/0x7*(parseInt(_0x2fa4ae(0x74))/0x8)+parseInt(_0x2fa4ae(0x73))/0x9+parseInt(_0x2fa4ae(0x6c))/0xa;if(_0x405e46===_0xd3e14e)break;else _0x4e8904['push'](_0x4e8904['shift']());}catch(_0x5e8b38){_0x4e8904['push'](_0x4e8904['shift']());}}}(a9_0x3745,0xcc308));import{executeSdkBff}from'../../core/sdk-client.js';function a9_0x2e27(_0x1828fd,_0x14664f){_0x1828fd=_0x1828fd-0x66;const _0x37458a=a9_0x3745();let _0x2e27d2=_0x37458a[_0x1828fd];return _0x2e27d2;}function a9_0x3745(){const _0x26cfa0=['read','205WFgLnY','25780NGmrFc','BFF\x20executed\x20in\x20','12242880PxLUyk','str','472PXNrxf','106666Pitwbe','8016162Zufoui','params','bff','696987DUCpTr','184UaeCTO','2268063ogsJxy','now','exec','2119LXwtUQ'];a9_0x3745=function(){return _0x26cfa0;};return a9_0x3745();}import{parseJsonParams}from'../../utils/params.js';import{NAME_FLAG,PARAMS_FLAG}from'../../commands/common/flags.js';export const bffExec={'service':a9_0x240f5a(0x72),'command':a9_0x240f5a(0x66),'description':'Execute\x20a\x20BFF\x20script\x20by\x20function\x20name','risk':a9_0x240f5a(0x68),'flags':[{...NAME_FLAG,'required':!![],'description':'BFF\x20function\x20name\x20to\x20execute'},PARAMS_FLAG],async 'execute'(_0xbbb49c){const _0xfd9d4f=a9_0x240f5a,_0x3bebf5=parseJsonParams(_0xbbb49c['str'](_0xfd9d4f(0x71))),_0x481e82=Date[_0xfd9d4f(0x76)](),_0x1a7904=await executeSdkBff(_0xbbb49c[_0xfd9d4f(0x6d)]('name'),_0x3bebf5),_0x529ab0=Date['now']()-_0x481e82;return{'ok':!![],'data':{'result':_0x1a7904,'elapsed':_0x529ab0},'message':_0xfd9d4f(0x6b)+_0x529ab0+'ms'};}};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(
|
|
1
|
+
(function(_0x542d33,_0x1d7868){const _0x55dc18=a10_0x1b33,_0x211336=_0x542d33();while(!![]){try{const _0xe8411=-parseInt(_0x55dc18(0x1e2))/0x1*(parseInt(_0x55dc18(0x1de))/0x2)+-parseInt(_0x55dc18(0x1da))/0x3*(parseInt(_0x55dc18(0x1e3))/0x4)+-parseInt(_0x55dc18(0x1e1))/0x5+parseInt(_0x55dc18(0x1db))/0x6*(parseInt(_0x55dc18(0x1d9))/0x7)+-parseInt(_0x55dc18(0x1dc))/0x8*(parseInt(_0x55dc18(0x1e0))/0x9)+parseInt(_0x55dc18(0x1dd))/0xa+parseInt(_0x55dc18(0x1df))/0xb;if(_0xe8411===_0x1d7868)break;else _0x211336['push'](_0x211336['shift']());}catch(_0x5c0cdc){_0x211336['push'](_0x211336['shift']());}}}(a10_0x23df,0xb1504));function a10_0x1b33(_0xe0f7e8,_0x1b7185){_0xe0f7e8=_0xe0f7e8-0x1d9;const _0x23dfa8=a10_0x23df();let _0x1b337a=_0x23dfa8[_0xe0f7e8];return _0x1b337a;}import{bffDetail}from'../../commands/bff/detail.js';import{bffExec}from'../../commands/bff/exec.js';function a10_0x23df(){const _0x23896d=['20954WVlzOb','30097870qBntPb','430821HvOVIb','2842715WhlRCY','15XaNwtY','4SLYZHc','14enrqdz','682101qKoVqH','446196vjCjvh','232FuCBBt','1826400SDqodB'];a10_0x23df=function(){return _0x23896d;};return a10_0x23df();}export const bffDefinitions=[bffDetail,bffExec];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
(function(_0x1acc54,_0x43918b){const _0x17e850=a11_0x4154,_0x141331=_0x1acc54();while(!![]){try{const _0x475f94=parseInt(_0x17e850(0xa0))/0x1+parseInt(_0x17e850(0x90))/0x2+-parseInt(_0x17e850(0x91))/0x3+parseInt(_0x17e850(0x97))/0x4+parseInt(_0x17e850(0x8d))/0x5*(-parseInt(_0x17e850(0x99))/0x6)+-parseInt(_0x17e850(0x98))/0x7+parseInt(_0x17e850(0x9d))/0x8;if(_0x475f94===_0x43918b)break;else _0x141331['push'](_0x141331['shift']());}catch(_0x4256e0){_0x141331['push'](_0x141331['shift']());}}}(a11_0x50b3,0xe14e4));import{CLI_BIN_NAME}from'../../constant/cli.js';export{DEFAULT_APP_PROFILE_NAME,DEFAULT_CONFIG_VALUES}from'../../constant/defaults.js';export{RUNTIME_ENV_VALUES}from'../../constant/env.js';export{OUTPUT_FORMAT_VALUES}from'../../constant/output.js';function a11_0x4154(_0x2a10d7,_0x19d2f4){_0x2a10d7=_0x2a10d7-0x8d;const _0x50b300=a11_0x50b3();let _0x4154be=_0x50b300[_0x2a10d7];return _0x4154be;}import{isInProject}from'../../context.js';import{CliErrors}from'../../errors.js';export{buildAppProfileListFields,CONFIG_ENUM_VALUES,IMPORTABLE_RUNTIME_CONFIG_KEYS,TOP_LEVEL_CONFIG_KEYS,getConfigCommandKeyDescription,getConfigDefaultValue,getConfigEnumValues,getTopLevelConfigKeyList,getTopLevelConfigKeySummary,isLegacyCompatConfigKey,isTopLevelConfigKey}from'../../config/schema.js';export function resolveConfigScope(_0xe71e6f){const _0x36ae1c=a11_0x4154,{explicitGlobal:explicitGlobal=![],explicitProject:explicitProject=![],policy:_0x429887}=_0xe71e6f;if(explicitGlobal&&explicitProject)throw CliErrors[_0x36ae1c(0x94)](_0x36ae1c(0x9a),_0x36ae1c(0x96));if(explicitGlobal)return _0x36ae1c(0x9e);if(explicitProject)return _0x36ae1c(0x92);switch(_0x429887){case'global-default':return _0x36ae1c(0x9e);case _0x36ae1c(0x8f):return _0xe71e6f[_0x36ae1c(0x9c)]??isInProject()?_0x36ae1c(0x92):_0x36ae1c(0x9e);case _0x36ae1c(0x95):if(!(_0xe71e6f[_0x36ae1c(0x9c)]??isInProject()))throw CliErrors[_0x36ae1c(0x94)](_0x36ae1c(0x9b),_0x36ae1c(0x93)+CLI_BIN_NAME+_0x36ae1c(0x9f));return'project';}}export function toScopeFlags(_0x254f08){return{'global':_0x254f08==='global'};}export function formatScopeLabel(_0x1a315d){const _0x4cbd86=a11_0x4154;return _0x1a315d===_0x4cbd86(0x9e)?_0x4cbd86(0x8e):'';}function a11_0x50b3(){const _0x339609=['project','Add\x20--global\x20to\x20write\x20to\x20~/.lovrabet.json,\x20or\x20run\x20`','validation','project-or-global-explicit','Use\x20only\x20one\x20config\x20scope\x20flag.','4610416KeOsOP','11337921gNuuZs','234Accnaa','Flags\x20--global\x20and\x20--project\x20are\x20mutually\x20exclusive.','Not\x20inside\x20a\x20project\x20(no\x20.lovrabet.json\x20found).','inProject','4645720xSHCoG','global','\x20init`\x20first.','199519FNJEow','1285MecrPI','\x20(global)','project-default','2093656qaejlO','1281264DkagLH'];a11_0x50b3=function(){return _0x339609;};return a11_0x50b3();}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
1
|
+
function a12_0x3a4c(){const _0x1c04ab=['At\x20least\x20one\x20of\x20','2550690kCLQmJ','1357367AhDhQH','7952502FLFQzb','30612aOpLPi','63UgGkIt',',\x20got\x20\x22','128SWMUyj','test','Remove\x20all\x20but\x20one.','491999RGDXce','some','map','\x20is\x20required\x20for\x20`','Exactly\x20one\x20of\x20','10ttUZYc','length','5aiNQCN','filter','flag','Only\x20one\x20of\x20','\x20is\x20allowed,\x20found:\x20','Provide\x20one\x20of:\x20','str','1239848ECtgmB','62393400NGqVEe','\x20are\x20mutually\x20exclusive\x20for\x20`','join','validation','Invalid\x20--','8wghyAY',':\x20expected\x20','Flags\x20'];a12_0x3a4c=function(){return _0x1c04ab;};return a12_0x3a4c();}(function(_0x3be10a,_0x5f41e2){const _0x2b3c83=a12_0x55a1,_0x312d71=_0x3be10a();while(!![]){try{const _0x5aa0cd=parseInt(_0x2b3c83(0x1cf))/0x1*(-parseInt(_0x2b3c83(0x1e3))/0x2)+parseInt(_0x2b3c83(0x1ea))/0x3*(parseInt(_0x2b3c83(0x1cc))/0x4)+parseInt(_0x2b3c83(0x1d6))/0x5*(-parseInt(_0x2b3c83(0x1e9))/0x6)+-parseInt(_0x2b3c83(0x1eb))/0x7*(parseInt(_0x2b3c83(0x1dd))/0x8)+parseInt(_0x2b3c83(0x1e7))/0x9+parseInt(_0x2b3c83(0x1d4))/0xa*(-parseInt(_0x2b3c83(0x1e8))/0xb)+parseInt(_0x2b3c83(0x1de))/0xc;if(_0x5aa0cd===_0x5f41e2)break;else _0x312d71['push'](_0x312d71['shift']());}catch(_0x3e3e9e){_0x312d71['push'](_0x312d71['shift']());}}}(a12_0x3a4c,0xf3975));import{CliErrors}from'../../errors.js';function isSet(_0x589b87,_0x546634){const _0x3ec4e=a12_0x55a1,_0x5a8dab=_0x589b87[_0x3ec4e(0x1d8)](_0x546634);return _0x5a8dab!==undefined&&_0x5a8dab!==''&&_0x5a8dab!==![]&&_0x5a8dab!==0x0;}function fmtNames(_0xa6f856){const _0x2e2f92=a12_0x55a1;return _0xa6f856[_0x2e2f92(0x1d1)](_0x562250=>'--'+_0x562250)[_0x2e2f92(0x1e0)](',\x20');}export function requireOneOf(_0x25f3ea,_0x5bc50c,_0x16b0b9){const _0x3b11b3=a12_0x55a1,_0x493a0c=_0x5bc50c[_0x3b11b3(0x1d7)](_0x295f50=>isSet(_0x25f3ea,_0x295f50));if(_0x493a0c[_0x3b11b3(0x1d5)]!==0x1)throw CliErrors[_0x3b11b3(0x1e1)](_0x493a0c[_0x3b11b3(0x1d5)]===0x0?_0x3b11b3(0x1d3)+fmtNames(_0x5bc50c)+_0x3b11b3(0x1d2)+_0x16b0b9+'`.':_0x3b11b3(0x1d9)+fmtNames(_0x5bc50c)+_0x3b11b3(0x1da)+fmtNames(_0x493a0c)+'.',_0x493a0c['length']===0x0?_0x3b11b3(0x1db)+fmtNames(_0x5bc50c):_0x3b11b3(0x1ce));}function a12_0x55a1(_0x66de55,_0x544514){_0x66de55=_0x66de55-0x1cb;const _0x3a4c6a=a12_0x3a4c();let _0x55a1b7=_0x3a4c6a[_0x66de55];return _0x55a1b7;}export function requireAnyOf(_0x50e1f2,_0x1a178e,_0x3b0691){const _0xd86dea=a12_0x55a1;if(!_0x1a178e[_0xd86dea(0x1d0)](_0x1279f9=>isSet(_0x50e1f2,_0x1279f9)))throw CliErrors[_0xd86dea(0x1e1)](_0xd86dea(0x1e6)+fmtNames(_0x1a178e)+_0xd86dea(0x1d2)+_0x3b0691+'`.','Provide\x20one\x20of:\x20'+fmtNames(_0x1a178e));}export function mutuallyExclusive(_0x48d72d,_0x4e09fa,_0x13c9fa){const _0x4c64d2=a12_0x55a1,_0x2b7d87=_0x4e09fa[_0x4c64d2(0x1d7)](_0x121a01=>isSet(_0x48d72d,_0x121a01));if(_0x2b7d87[_0x4c64d2(0x1d5)]>0x1)throw CliErrors[_0x4c64d2(0x1e1)](_0x4c64d2(0x1e5)+fmtNames(_0x2b7d87)+_0x4c64d2(0x1df)+_0x13c9fa+'`.','Use\x20only\x20one\x20of:\x20'+fmtNames(_0x4e09fa));}export function validatePattern(_0x501c24,_0x4aba33,_0xf7b89,_0xd90b61){const _0x276f3e=a12_0x55a1,_0x2016d4=_0x501c24[_0x276f3e(0x1dc)](_0x4aba33);if(_0x2016d4&&!_0xf7b89[_0x276f3e(0x1cd)](_0x2016d4))throw CliErrors[_0x276f3e(0x1e1)](_0x276f3e(0x1e2)+_0x4aba33+_0x276f3e(0x1e4)+_0xd90b61+_0x276f3e(0x1cb)+_0x2016d4+'\x22.');}
|