@truebit/cli 1.120.0-beta.126 → 1.120.0-beta.127
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/build/definitions/taskExecution.d.mts +5 -0
- package/build/definitions/taskExecution.d.mts.map +1 -0
- package/build/handlers/cli.init.d.mts +2 -1
- package/build/handlers/cli.init.d.mts.map +1 -1
- package/build/handlers/executeTask.d.mts +2 -1
- package/build/handlers/executeTask.d.mts.map +1 -1
- package/build/handlers/instrument.d.mts +1 -1
- package/build/handlers/instrument.d.mts.map +1 -1
- package/build/handlers/introduction.d.mts.map +1 -1
- package/build/handlers/registration.d.mts +2 -1
- package/build/handlers/registration.d.mts.map +1 -1
- package/build/index.mjs +4 -4
- package/build/index.mjs.map +1 -1
- package/build/utils/secret.d.mts +1 -0
- package/build/utils/secret.d.mts.map +1 -1
- package/build/utils/util.d.mts +8 -0
- package/build/utils/util.d.mts.map +1 -1
- package/package.json +3 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"taskExecution.d.mts","sourceRoot":"","sources":["../../src/definitions/taskExecution.mts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,GAAG;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC"}
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
import { MixpanelService } from '@truebit/event-tracker';
|
|
2
|
+
export declare function firstEulaAcceptance(userIP: string, cliVersion: string, eventTracker: MixpanelService): Promise<void>;
|
|
2
3
|
//# sourceMappingURL=cli.init.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.init.d.mts","sourceRoot":"","sources":["../../src/handlers/cli.init.mts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cli.init.d.mts","sourceRoot":"","sources":["../../src/handlers/cli.init.mts"],"names":[],"mappings":"AAKA,OAAO,EAAoB,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAI3E,wBAAsB,mBAAmB,CAAC,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,YAAY,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC,CA4D1H"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { OptionValues } from 'commander';
|
|
2
|
-
|
|
2
|
+
import { TaskExecResult } from '../definitions/taskExecution.mjs';
|
|
3
|
+
export declare const handlerExecuteTask: (options: OptionValues, taskId: string, input: string) => Promise<TaskExecResult>;
|
|
3
4
|
//# sourceMappingURL=executeTask.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"executeTask.d.mts","sourceRoot":"","sources":["../../src/handlers/executeTask.mts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"executeTask.d.mts","sourceRoot":"","sources":["../../src/handlers/executeTask.mts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAKzC,OAAO,EAAE,cAAc,EAAE,MAAM,kCAAkC,CAAC;AAElE,eAAO,MAAM,kBAAkB,GAAU,SAAS,YAAY,EAAE,QAAQ,MAAM,EAAE,OAAO,MAAM,KAAG,OAAO,CAAC,cAAc,CAmDrH,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare function handleInstrument(taskId: string): Promise<
|
|
1
|
+
export declare function handleInstrument(taskId: string): Promise<string>;
|
|
2
2
|
//# sourceMappingURL=instrument.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instrument.d.mts","sourceRoot":"","sources":["../../src/handlers/instrument.mts"],"names":[],"mappings":"AAIA,wBAAsB,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"instrument.d.mts","sourceRoot":"","sources":["../../src/handlers/instrument.mts"],"names":[],"mappings":"AAIA,wBAAsB,gBAAgB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAmCtE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"introduction.d.mts","sourceRoot":"","sources":["../../src/handlers/introduction.mts"],"names":[],"mappings":"AAMA;;GAEG;AACH,wBAAsB,kBAAkB,IAAI,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"introduction.d.mts","sourceRoot":"","sources":["../../src/handlers/introduction.mts"],"names":[],"mappings":"AAMA;;GAEG;AACH,wBAAsB,kBAAkB,IAAI,OAAO,CAAC,IAAI,CAAC,CA0BxD"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { MixpanelService } from '@truebit/event-tracker';
|
|
1
2
|
/**
|
|
2
3
|
* 'truebit setup' command, step 2, handling the prompt to user's information
|
|
3
4
|
*/
|
|
4
|
-
export declare function handleRegistration(): Promise<void>;
|
|
5
|
+
export declare function handleRegistration(userIP: string, cliVersion: string, eventTracker: MixpanelService): Promise<void>;
|
|
5
6
|
//# sourceMappingURL=registration.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registration.d.mts","sourceRoot":"","sources":["../../src/handlers/registration.mts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"registration.d.mts","sourceRoot":"","sources":["../../src/handlers/registration.mts"],"names":[],"mappings":"AAiBA,OAAO,EACL,eAAe,EAKhB,MAAM,wBAAwB,CAAC;AAGhC;;GAEG;AACH,wBAAsB,kBAAkB,CAAC,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,YAAY,EAAE,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC,CA6LzH"}
|