apify-cli 1.0.0-beta.110 → 1.0.0-beta.112
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/README.md +20 -20
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/actor/get-value.d.ts +1 -1
- package/dist/commands/actor/push-data.d.ts +1 -1
- package/dist/commands/actor/set-value.d.ts +3 -3
- package/dist/commands/call.d.ts +5 -5
- package/dist/commands/check-version.d.ts +1 -1
- package/dist/commands/create.d.ts +5 -5
- package/dist/commands/edit-input-schema.d.ts +1 -1
- package/dist/commands/init-wrap-scrapy.d.ts +1 -1
- package/dist/commands/init.d.ts +2 -2
- package/dist/commands/login.d.ts +2 -2
- package/dist/commands/pull.d.ts +2 -2
- package/dist/commands/push.d.ts +7 -7
- package/dist/commands/run.d.ts +5 -5
- package/dist/commands/secrets/add.d.ts +2 -2
- package/dist/commands/secrets/rm.d.ts +1 -1
- package/dist/commands/task/run.d.ts +5 -5
- package/dist/commands/validate-schema.d.ts +1 -1
- package/dist/lib/commands/run-on-cloud.d.ts +4 -4
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
|
@@ -2,7 +2,7 @@ import { ApifyCommand } from '../../lib/apify_command.js';
|
|
|
2
2
|
export declare class GetValueCommand extends ApifyCommand<typeof GetValueCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static args: {
|
|
5
|
-
key: import("@oclif/core/
|
|
5
|
+
key: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
|
|
6
6
|
};
|
|
7
7
|
run(): Promise<void>;
|
|
8
8
|
}
|
|
@@ -2,7 +2,7 @@ import { ApifyCommand } from '../../lib/apify_command.js';
|
|
|
2
2
|
export declare class PushDataCommand extends ApifyCommand<typeof PushDataCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static args: {
|
|
5
|
-
item: import("@oclif/core/
|
|
5
|
+
item: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
6
6
|
};
|
|
7
7
|
private stdin?;
|
|
8
8
|
init(): Promise<void>;
|
|
@@ -2,11 +2,11 @@ import { ApifyCommand } from '../../lib/apify_command.js';
|
|
|
2
2
|
export declare class SetValueCommand extends ApifyCommand<typeof SetValueCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static args: {
|
|
5
|
-
key: import("@oclif/core/
|
|
6
|
-
value: import("@oclif/core/
|
|
5
|
+
key: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
|
|
6
|
+
value: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
static flags: {
|
|
9
|
-
contentType: import("@oclif/core/
|
|
9
|
+
contentType: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
10
|
};
|
|
11
11
|
private stdin?;
|
|
12
12
|
init(): Promise<void>;
|
package/dist/commands/call.d.ts
CHANGED
|
@@ -2,13 +2,13 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class ActorCallCommand extends ApifyCommand<typeof ActorCallCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static flags: {
|
|
5
|
-
build: import("@oclif/core/
|
|
6
|
-
timeout: import("@oclif/core/
|
|
7
|
-
memory: import("@oclif/core/
|
|
8
|
-
'wait-for-finish': import("@oclif/core/
|
|
5
|
+
build: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
6
|
+
timeout: import("@oclif/core/interfaces").OptionFlag<number | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
7
|
+
memory: import("@oclif/core/interfaces").OptionFlag<number | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
|
+
'wait-for-finish': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
9
|
};
|
|
10
10
|
static args: {
|
|
11
|
-
actorId: import("@oclif/core/
|
|
11
|
+
actorId: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
12
12
|
};
|
|
13
13
|
run(): Promise<void>;
|
|
14
14
|
private static resolveActorId;
|
|
@@ -2,7 +2,7 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class CheckVersionCommand extends ApifyCommand<typeof CheckVersionCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static flags: {
|
|
5
|
-
'enforce-update': import("@oclif/core/
|
|
5
|
+
'enforce-update': import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
6
6
|
};
|
|
7
7
|
static hidden: boolean;
|
|
8
8
|
static hiddenAliases: string[];
|
|
@@ -2,13 +2,13 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class CreateCommand extends ApifyCommand<typeof CreateCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static flags: {
|
|
5
|
-
template: import("@oclif/core/
|
|
6
|
-
'skip-dependency-install': import("@oclif/core/
|
|
7
|
-
'template-archive-url': import("@oclif/core/
|
|
8
|
-
'omit-optional-deps': import("@oclif/core/
|
|
5
|
+
template: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
6
|
+
'skip-dependency-install': import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
7
|
+
'template-archive-url': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
|
+
'omit-optional-deps': import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
9
9
|
};
|
|
10
10
|
static args: {
|
|
11
|
-
actorName: import("@oclif/core/
|
|
11
|
+
actorName: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
12
12
|
};
|
|
13
13
|
run(): Promise<void>;
|
|
14
14
|
}
|
|
@@ -2,7 +2,7 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class EditInputSchemaCommand extends ApifyCommand<typeof EditInputSchemaCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static args: {
|
|
5
|
-
path: import("@oclif/core/
|
|
5
|
+
path: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
6
6
|
};
|
|
7
7
|
static hidden: boolean;
|
|
8
8
|
static hiddenAliases: string[];
|
|
@@ -2,7 +2,7 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class WrapScrapyCommand extends ApifyCommand<typeof WrapScrapyCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static args: {
|
|
5
|
-
path: import("@oclif/core/
|
|
5
|
+
path: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
6
6
|
};
|
|
7
7
|
static hidden: boolean;
|
|
8
8
|
run(): Promise<void>;
|
package/dist/commands/init.d.ts
CHANGED
|
@@ -2,10 +2,10 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class InitCommand extends ApifyCommand<typeof InitCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static args: {
|
|
5
|
-
actorName: import("@oclif/core/
|
|
5
|
+
actorName: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
6
6
|
};
|
|
7
7
|
static flags: {
|
|
8
|
-
yes: import("@oclif/core/
|
|
8
|
+
yes: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
9
9
|
};
|
|
10
10
|
run(): Promise<void>;
|
|
11
11
|
}
|
package/dist/commands/login.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class LoginCommand extends ApifyCommand<typeof LoginCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static flags: {
|
|
5
|
-
token: import("@oclif/core/
|
|
6
|
-
method: import("@oclif/core/
|
|
5
|
+
token: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
6
|
+
method: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
7
7
|
};
|
|
8
8
|
run(): Promise<void>;
|
|
9
9
|
}
|
package/dist/commands/pull.d.ts
CHANGED
|
@@ -2,10 +2,10 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class PullCommand extends ApifyCommand<typeof PullCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static flags: {
|
|
5
|
-
version: import("@oclif/core/
|
|
5
|
+
version: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
6
6
|
};
|
|
7
7
|
static args: {
|
|
8
|
-
actorId: import("@oclif/core/
|
|
8
|
+
actorId: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
9
9
|
};
|
|
10
10
|
run(): Promise<void>;
|
|
11
11
|
}
|
package/dist/commands/push.d.ts
CHANGED
|
@@ -2,15 +2,15 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class PushCommand extends ApifyCommand<typeof PushCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static flags: {
|
|
5
|
-
'version-number': import("@oclif/core/
|
|
6
|
-
version: import("@oclif/core/
|
|
7
|
-
'build-tag': import("@oclif/core/
|
|
8
|
-
'wait-for-finish': import("@oclif/core/
|
|
9
|
-
'no-prompt': import("@oclif/core/
|
|
10
|
-
force: import("@oclif/core/
|
|
5
|
+
'version-number': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
6
|
+
version: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
7
|
+
'build-tag': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
|
+
'wait-for-finish': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
|
+
'no-prompt': import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
10
|
+
force: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
11
11
|
};
|
|
12
12
|
static args: {
|
|
13
|
-
actorId: import("@oclif/core/
|
|
13
|
+
actorId: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
14
14
|
};
|
|
15
15
|
catch(caughtError: Error): Promise<void>;
|
|
16
16
|
run(): Promise<void>;
|
package/dist/commands/run.d.ts
CHANGED
|
@@ -2,11 +2,11 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class RunCommand extends ApifyCommand<typeof RunCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static flags: {
|
|
5
|
-
purge: import("@oclif/core/
|
|
6
|
-
'purge-queue': import("@oclif/core/
|
|
7
|
-
'purge-dataset': import("@oclif/core/
|
|
8
|
-
'purge-key-value-store': import("@oclif/core/
|
|
9
|
-
entrypoint: import("@oclif/core/
|
|
5
|
+
purge: import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
6
|
+
'purge-queue': import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
7
|
+
'purge-dataset': import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
8
|
+
'purge-key-value-store': import("@oclif/core/interfaces").BooleanFlag<boolean>;
|
|
9
|
+
entrypoint: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
10
10
|
};
|
|
11
11
|
run(): Promise<void>;
|
|
12
12
|
}
|
|
@@ -2,8 +2,8 @@ import { ApifyCommand } from '../../lib/apify_command.js';
|
|
|
2
2
|
export declare class SecretsAddCommand extends ApifyCommand<typeof SecretsAddCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static args: {
|
|
5
|
-
name: import("@oclif/core/
|
|
6
|
-
value: import("@oclif/core/
|
|
5
|
+
name: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
|
|
6
|
+
value: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
|
|
7
7
|
};
|
|
8
8
|
run(): Promise<void>;
|
|
9
9
|
}
|
|
@@ -2,7 +2,7 @@ import { ApifyCommand } from '../../lib/apify_command.js';
|
|
|
2
2
|
export declare class SecretRmCommand extends ApifyCommand<typeof SecretRmCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static args: {
|
|
5
|
-
name: import("@oclif/core/
|
|
5
|
+
name: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
|
|
6
6
|
};
|
|
7
7
|
run(): Promise<void>;
|
|
8
8
|
}
|
|
@@ -2,13 +2,13 @@ import { ApifyCommand } from '../../lib/apify_command.js';
|
|
|
2
2
|
export declare class TaskRunCommand extends ApifyCommand<typeof TaskRunCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static flags: {
|
|
5
|
-
build: import("@oclif/core/
|
|
6
|
-
timeout: import("@oclif/core/
|
|
7
|
-
memory: import("@oclif/core/
|
|
8
|
-
'wait-for-finish': import("@oclif/core/
|
|
5
|
+
build: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
6
|
+
timeout: import("@oclif/core/interfaces").OptionFlag<number | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
7
|
+
memory: import("@oclif/core/interfaces").OptionFlag<number | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
8
|
+
'wait-for-finish': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
9
9
|
};
|
|
10
10
|
static args: {
|
|
11
|
-
taskId: import("@oclif/core/
|
|
11
|
+
taskId: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
|
|
12
12
|
};
|
|
13
13
|
run(): Promise<void>;
|
|
14
14
|
private resolveTaskId;
|
|
@@ -2,7 +2,7 @@ import { ApifyCommand } from '../lib/apify_command.js';
|
|
|
2
2
|
export declare class ValidateInputSchemaCommand extends ApifyCommand<typeof ValidateInputSchemaCommand> {
|
|
3
3
|
static description: string;
|
|
4
4
|
static args: {
|
|
5
|
-
path: import("@oclif/core/
|
|
5
|
+
path: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
6
6
|
};
|
|
7
7
|
static hiddenAliases: string[];
|
|
8
8
|
run(): Promise<void>;
|
|
@@ -11,9 +11,9 @@ export interface RunOnCloudOptions {
|
|
|
11
11
|
}
|
|
12
12
|
export declare function runActorOrTaskOnCloud(apifyClient: ApifyClient, options: RunOnCloudOptions): Promise<void>;
|
|
13
13
|
export declare const SharedRunOnCloudFlags: (type: "Actor" | "Task") => {
|
|
14
|
-
build: import("@oclif/core/
|
|
15
|
-
timeout: import("@oclif/core/
|
|
16
|
-
memory: import("@oclif/core/
|
|
17
|
-
'wait-for-finish': import("@oclif/core/
|
|
14
|
+
build: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
|
+
timeout: import("@oclif/core/interfaces").OptionFlag<number | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
memory: import("@oclif/core/interfaces").OptionFlag<number | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
|
+
'wait-for-finish': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
18
|
};
|
|
19
19
|
//# sourceMappingURL=run-on-cloud.d.ts.map
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apify-cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.112",
|
|
4
4
|
"description": "Apify command-line interface (CLI) helps you manage the Apify cloud platform and develop, build, and deploy Apify Actors.",
|
|
5
5
|
"exports": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@apify/input_schema": "~3.6.0",
|
|
61
61
|
"@apify/utilities": "~2.10.0",
|
|
62
62
|
"@crawlee/memory-storage": "~3.10.0",
|
|
63
|
-
"@oclif/core": "~
|
|
63
|
+
"@oclif/core": "~4.0.0",
|
|
64
64
|
"@oclif/plugin-help": "~6.2.0",
|
|
65
65
|
"@root/walk": "~1.1.0",
|
|
66
66
|
"adm-zip": "~0.5.10",
|