@lingo.dev/cli 1.1.0 → 1.1.1
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/dist/index.d.ts +3 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -181,7 +181,7 @@ declare const subcommands: readonly [Command.Command<"extract", never, effect_Ca
|
|
|
181
181
|
}>, Command.Command<"link", AuthService | ApiClient | ConfigService | TelemetryService, AuthError | effect_Cause0.UnknownException | ApiError | ConfigError | PromptCancelledError, {
|
|
182
182
|
readonly org: effect_Option0.Option<string>;
|
|
183
183
|
readonly engine: effect_Option0.Option<string>;
|
|
184
|
-
}>, Command.Command<"unlink", ConfigService | TelemetryService, ConfigError, {}>, Command.Command<"update",
|
|
184
|
+
}>, Command.Command<"unlink", ConfigService | TelemetryService, ConfigError, {}>, Command.Command<"update", UpdateService | TelemetryService, never, {}>, Command.Command<"score", never, never, {
|
|
185
185
|
readonly source: string;
|
|
186
186
|
readonly translation: string;
|
|
187
187
|
readonly reference: effect_Option0.Option<string>;
|
|
@@ -191,7 +191,7 @@ declare const subcommands: readonly [Command.Command<"extract", never, effect_Ca
|
|
|
191
191
|
readonly outputDir: string;
|
|
192
192
|
readonly config: effect_Option0.Option<string>;
|
|
193
193
|
}>];
|
|
194
|
-
declare const command: Command.Command<"lingo", AuthService | ApiClient | ConfigService | TelemetryService
|
|
194
|
+
declare const command: Command.Command<"lingo", UpdateService | AuthService | ApiClient | ConfigService | TelemetryService, AuthError | effect_Cause0.UnknownException | ApiError | ConfigError | PromptCancelledError | SupabaseError, {
|
|
195
195
|
readonly subcommand: effect_Option0.Option<{
|
|
196
196
|
readonly check: boolean;
|
|
197
197
|
readonly src: string;
|
|
@@ -242,7 +242,7 @@ declare const command: Command.Command<"lingo", AuthService | ApiClient | Config
|
|
|
242
242
|
}>;
|
|
243
243
|
declare const cliConfig: CliConfig.CliConfig;
|
|
244
244
|
declare const helpConfig: HelpConfig;
|
|
245
|
-
declare const run: (args: ReadonlyArray<string>) => effect_Effect0.Effect<void, AuthError | effect_Cause0.UnknownException | ApiError | ConfigError | PromptCancelledError | SupabaseError | _effect_cli_ValidationError0.ValidationError, AuthService | ApiClient | ConfigService | TelemetryService |
|
|
245
|
+
declare const run: (args: ReadonlyArray<string>) => effect_Effect0.Effect<void, AuthError | effect_Cause0.UnknownException | ApiError | ConfigError | PromptCancelledError | SupabaseError | _effect_cli_ValidationError0.ValidationError, UpdateService | AuthService | ApiClient | ConfigService | TelemetryService | _effect_cli_CliApp0.CliApp.Environment>;
|
|
246
246
|
//#endregion
|
|
247
247
|
//#region src/help/descriptor.d.ts
|
|
248
248
|
type CommandInfo = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lingo.dev/cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"bin": {
|
|
5
5
|
"lingo": "./dist/bin.js"
|
|
6
6
|
},
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"semver": "^7.7.4",
|
|
45
45
|
"zod": "^4.0.0",
|
|
46
46
|
"@lingo.dev/scorer": "0.0.1",
|
|
47
|
-
"@lingo.dev/spec": "1.1.
|
|
47
|
+
"@lingo.dev/spec": "1.1.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@babel/types": "^7.29.0",
|