allure 3.10.0 → 3.12.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.
@@ -1,11 +1,32 @@
1
+ import { AGENT_TASK_MAP_HELP, createAgentCapabilities, isAgentTaskMapHelpRequest } from "@allurereport/plugin-agent";
1
2
  import { Command } from "clipanion";
3
+ export { AGENT_TASK_MAP_HELP, createAgentCapabilities, isAgentTaskMapHelpRequest };
4
+ export declare class AgentCapabilitiesCommand extends Command {
5
+ static paths: string[][];
6
+ static usage: import("clipanion").Usage;
7
+ json: boolean;
8
+ execute(): Promise<void>;
9
+ }
2
10
  export declare class AgentCommand extends Command {
3
11
  static paths: string[][];
4
12
  static usage: import("clipanion").Usage;
5
13
  config: string | undefined;
6
14
  cwd: string | undefined;
7
15
  output: string | undefined;
16
+ report: string | undefined;
8
17
  expectations: string | undefined;
18
+ goal: string[] | undefined;
19
+ taskId: string[] | undefined;
20
+ expectTests: string[] | undefined;
21
+ expectLabels: string[] | undefined;
22
+ expectEnvironments: string[] | undefined;
23
+ expectFullNames: string[] | undefined;
24
+ expectPrefixes: string[] | undefined;
25
+ forbidLabels: string[] | undefined;
26
+ expectStepContains: string[] | undefined;
27
+ expectSteps: string[] | undefined;
28
+ expectAttachments: string[] | undefined;
29
+ expectAttachmentFilters: string[] | undefined;
9
30
  environment: string | undefined;
10
31
  environmentName: string | undefined;
11
32
  silent: boolean | undefined;
@@ -17,6 +38,37 @@ export declare class AgentCommand extends Command {
17
38
  commandToRun: string[];
18
39
  execute(): Promise<void>;
19
40
  }
41
+ export declare class AgentInspectCommand extends Command {
42
+ static paths: string[][];
43
+ static usage: import("clipanion").Usage;
44
+ resultsDir: string[];
45
+ config: string | undefined;
46
+ cwd: string | undefined;
47
+ output: string | undefined;
48
+ report: string | undefined;
49
+ reportName: string | undefined;
50
+ dump: string[] | undefined;
51
+ open: boolean | undefined;
52
+ port: string | undefined;
53
+ historyLimit: string | undefined;
54
+ hideLabels: string[] | undefined;
55
+ expectations: string | undefined;
56
+ goal: string[] | undefined;
57
+ taskId: string[] | undefined;
58
+ expectTests: string[] | undefined;
59
+ expectLabels: string[] | undefined;
60
+ expectEnvironments: string[] | undefined;
61
+ expectFullNames: string[] | undefined;
62
+ expectPrefixes: string[] | undefined;
63
+ forbidLabels: string[] | undefined;
64
+ expectStepContains: string[] | undefined;
65
+ expectSteps: string[] | undefined;
66
+ expectAttachments: string[] | undefined;
67
+ expectAttachmentFilters: string[] | undefined;
68
+ environment: string | undefined;
69
+ environmentName: string | undefined;
70
+ execute(): Promise<void>;
71
+ }
20
72
  export declare class AgentLatestCommand extends Command {
21
73
  static paths: string[][];
22
74
  static usage: import("clipanion").Usage;
@@ -29,6 +81,24 @@ export declare class AgentStateDirCommand extends Command {
29
81
  cwd: string | undefined;
30
82
  execute(): Promise<void>;
31
83
  }
84
+ export declare class AgentQueryCommand extends Command {
85
+ static paths: string[][];
86
+ static usage: import("clipanion").Usage;
87
+ view: string | undefined;
88
+ cwd: string | undefined;
89
+ from: string | undefined;
90
+ latest: boolean | undefined;
91
+ statuses: string[] | undefined;
92
+ environments: string[] | undefined;
93
+ labels: string[] | undefined;
94
+ severities: string[] | undefined;
95
+ categories: string[] | undefined;
96
+ checks: string[] | undefined;
97
+ test: string | undefined;
98
+ limit: string | undefined;
99
+ includeMarkdown: boolean | undefined;
100
+ execute(): Promise<void>;
101
+ }
32
102
  export declare class AgentSelectCommand extends Command {
33
103
  static paths: string[][];
34
104
  static usage: import("clipanion").Usage;
@@ -41,18 +111,3 @@ export declare class AgentSelectCommand extends Command {
41
111
  output: string | undefined;
42
112
  execute(): Promise<void>;
43
113
  }
44
- export declare const executeAgentMode: (params: {
45
- configPath?: string;
46
- cwd?: string;
47
- output?: string;
48
- expectations?: string;
49
- environment?: string;
50
- environmentName?: string;
51
- silent?: boolean;
52
- rerunFrom?: string;
53
- rerunLatest?: boolean;
54
- rerunPreset?: string;
55
- rerunEnvironments?: string[];
56
- rerunLabels?: string[];
57
- args?: string[];
58
- }) => Promise<void>;