@holistics/cli-core 0.4.1 → 0.5.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/dist/src/cli.d.ts DELETED
@@ -1 +0,0 @@
1
- export {};
@@ -1,3 +0,0 @@
1
- export declare function expandPaths(paths: string[]): Promise<string[]>;
2
- export declare function compileAMLFiles(files: string[], printRepoPath?: boolean): Record<string, Record<string, any>>;
3
- export declare function findRecordByFqname(record: Record<string, any>, fqname: string): Record<string, any> | null;
@@ -1,5 +0,0 @@
1
- import { Command } from '@commander-js/extra-typings';
2
- declare const command: Command<[string[]], {
3
- outDir?: string | undefined;
4
- }, {}>;
5
- export default command;
@@ -1,3 +0,0 @@
1
- import { Command } from '@commander-js/extra-typings';
2
- declare const command: Command<[string], {}, {}>;
3
- export default command;
@@ -1,3 +0,0 @@
1
- import { Command } from '@commander-js/extra-typings';
2
- declare const command: Command<[string[]], {}, {}>;
3
- export default command;
@@ -1,3 +0,0 @@
1
- import { Command } from '@commander-js/extra-typings';
2
- declare const command: Command<[], {}, {}>;
3
- export default command;
@@ -1,3 +0,0 @@
1
- import { Command } from '@commander-js/extra-typings';
2
- declare const command: Command<[string[]], {}, {}>;
3
- export default command;
@@ -1,6 +0,0 @@
1
- import { Command } from '@commander-js/extra-typings';
2
- declare const command: Command<[], {
3
- filePath?: string | undefined;
4
- dataSource?: string | undefined;
5
- }, {}>;
6
- export default command;
@@ -1,3 +0,0 @@
1
- import { Command } from '@commander-js/extra-typings';
2
- declare const command: Command<[], {}, {}>;
3
- export default command;
@@ -1,2 +0,0 @@
1
- import { Command } from '@commander-js/extra-typings';
2
- export declare function registerCommands(program: Command): void;
@@ -1 +0,0 @@
1
- export declare function login(token: string, serverUrl: string): Promise<void>;
@@ -1,4 +0,0 @@
1
- export declare const GCONFIG_FILE_PATH: string;
2
- export declare const SERVER_URL: string;
3
- export declare const TOKEN_FROM_GCONFIG: string;
4
- export declare function apiUrlFor(endpoint: string, params?: Record<string, any>): string;
@@ -1,5 +0,0 @@
1
- import { AxiosResponse } from 'axios';
2
- export declare function simpleGet(url: string, token?: string, errorMsg?: string): Promise<AxiosResponse<any, any>>;
3
- export declare function get(url: string, params?: Record<string, any>, errorMsg?: string): Promise<any>;
4
- export declare function postJson(url: string, params: Record<string, any>, errorMsg?: string): Promise<any>;
5
- export declare function postFile(url: string, params: Record<string, any>, filePath: string, contentType: string, errorMsg?: string): Promise<any>;
@@ -1 +0,0 @@
1
- export declare function getInput(): Promise<string>;