@akanjs/devkit 0.0.40 → 0.0.41
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/index.d.ts +1 -24
- package/index.js +1950 -21
- package/package.json +20 -2
- package/src/auth.d.ts +6 -9
- package/src/baseDevEnv.d.ts +4 -6
- package/src/capacitorApp.d.ts +5 -11
- package/src/commandDecorators/argMeta.d.ts +55 -0
- package/src/commandDecorators/command.d.ts +2 -0
- package/src/commandDecorators/commandMeta.d.ts +2 -0
- package/src/commandDecorators/index.d.ts +5 -0
- package/src/commandDecorators/targetMeta.d.ts +18 -0
- package/src/commandDecorators/types.d.ts +1 -0
- package/src/constants.d.ts +9 -11
- package/src/createTunnel.d.ts +2 -3
- package/src/dependencyScanner.d.ts +1 -3
- package/src/executors.d.ts +14 -157
- package/src/extractDeps.d.ts +2 -5
- package/src/getCredentials.d.ts +3 -9
- package/src/getDependencies.d.ts +1 -3
- package/src/getModelFileData.d.ts +2 -3
- package/src/getRelatedCnsts.d.ts +1 -3
- package/src/index.d.ts +18 -101
- package/src/installExternalLib.d.ts +2 -8
- package/src/selectModel.d.ts +1 -3
- package/src/streamAi.d.ts +2 -3
- package/src/types.d.ts +2 -4
- package/src/uploadRelease.d.ts +1 -3
- package/src/aiEditor.d.ts +0 -10
- package/src/aiEditor.js +0 -61
- package/src/auth.js +0 -79
- package/src/baseDevEnv.js +0 -50
- package/src/capacitorApp.js +0 -186
- package/src/constants.js +0 -47
- package/src/createTunnel.js +0 -47
- package/src/dependencyScanner.js +0 -171
- package/src/executors.js +0 -715
- package/src/extractDeps.js +0 -114
- package/src/getCredentials.js +0 -43
- package/src/getDependencies.js +0 -67
- package/src/getModelFileData.js +0 -67
- package/src/getRelatedCnsts.js +0 -145
- package/src/index.js +0 -55
- package/src/installExternalLib.js +0 -34
- package/src/selectModel.js +0 -50
- package/src/streamAi.js +0 -69
- package/src/types.js +0 -15
- package/src/uploadRelease.js +0 -82
package/index.d.ts
CHANGED
|
@@ -1,24 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { createTunnel } from './src/createTunnel.js';
|
|
3
|
-
export { AppSecret, getCredentials } from './src/getCredentials.js';
|
|
4
|
-
export { getDependencies } from './src/getDependencies.js';
|
|
5
|
-
export { uploadRelease } from './src/uploadRelease.js';
|
|
6
|
-
export { getModelFileData } from './src/getModelFileData.js';
|
|
7
|
-
export { getRelatedCnsts } from './src/getRelatedCnsts.js';
|
|
8
|
-
export { selectModel } from './src/selectModel.js';
|
|
9
|
-
export { streamAi } from './src/streamAi.js';
|
|
10
|
-
export { AppExecutor, DistAppExecutor, DistLibExecutor, DistPkgExecutor, Executor, LibExecutor, PkgExecutor, SysExecutor, WorkspaceExecutor } from './src/executors.js';
|
|
11
|
-
export { TypeScriptDependencyScanner } from './src/dependencyScanner.js';
|
|
12
|
-
export { AkanGlobalConfig, HostConfig, akanCloudBackendUrl, akanCloudClientUrl, akanCloudHost, basePath, configPath, defaultAkanGlobalConfig, defaultHostConfig } from './src/constants.js';
|
|
13
|
-
export { getAkanGlobalConfig, getHostConfig, getSelf, setAkanGlobalConfig, setHostConfig } from './src/auth.js';
|
|
14
|
-
export { PackageJson, TsConfigJson } from './src/types.js';
|
|
15
|
-
export { CapacitorApp } from './src/capacitorApp.js';
|
|
16
|
-
export { extractDependencies } from './src/extractDeps.js';
|
|
17
|
-
export { App, ArgMeta, ArgType, Commands, InternalArgMeta, InternalArgType, Lib, Option, Pkg, Sys, Target, Type, Workspace, argTypes, getArgMetas, getTargetMetas, internalArgTypes, runCommands } from './src/index.js';
|
|
18
|
-
export { installExternalLib } from './src/installExternalLib.js';
|
|
19
|
-
import 'tunnel-ssh';
|
|
20
|
-
import 'next';
|
|
21
|
-
import 'child_process';
|
|
22
|
-
import '@trapezedev/project';
|
|
23
|
-
import '@trapezedev/project/dist/android/project';
|
|
24
|
-
import '@trapezedev/project/dist/ios/project';
|
|
1
|
+
export * from "./src";
|