wopee-mcp 1.0.3 → 1.1.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/INTEGRATION.md +55 -135
- package/QUICK_START.md +4 -1
- package/README.md +114 -274
- package/dist/index.js +1 -6
- package/dist/index.js.map +1 -1
- package/dist/tools/wopee_fetch_analysis_suites.js +0 -1
- package/dist/tools/wopee_fetch_analysis_suites.js.map +1 -1
- package/dist/types/index.d.ts +0 -6
- package/dist/types/index.js +0 -6
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
package/INTEGRATION.md
CHANGED
|
@@ -1,20 +1,11 @@
|
|
|
1
1
|
# VS Code & Cursor Integration Guide
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
## Quick Start
|
|
6
|
-
|
|
7
|
-
### One-Click Installation
|
|
8
|
-
|
|
9
|
-
**For both VS Code and Cursor:**
|
|
3
|
+
[](#vs-code-integration)
|
|
4
|
+
[](#cursor-integration)
|
|
10
5
|
|
|
11
|
-
|
|
12
|
-
2. Press `Ctrl+Shift+P` (Windows/Linux) or `Cmd+Shift+P` (Mac)
|
|
13
|
-
3. Type "MCP: Install Server" and select it
|
|
14
|
-
4. Enter: `wopee-mcp`
|
|
15
|
-
5. Configure your API key when prompted
|
|
6
|
+
This guide provides detailed instructions for integrating the Wopee.io MCP server with VS Code and Cursor editors.
|
|
16
7
|
|
|
17
|
-
|
|
8
|
+
> **Note:** For general installation and usage, see [README.md](README.md). This guide focuses on IDE-specific setup and advanced configuration.
|
|
18
9
|
|
|
19
10
|
## 🔐 Environment Configuration
|
|
20
11
|
|
|
@@ -46,10 +37,12 @@ The server will automatically load your `.env` file from the project root direct
|
|
|
46
37
|
|
|
47
38
|
Before starting, ensure you have:
|
|
48
39
|
|
|
49
|
-
- **VS Code** with MCP extension or **Cursor** (built-in MCP support)
|
|
50
|
-
- **Node.js 18+** installed
|
|
40
|
+
- **VS Code** with MCP extension installed, or **Cursor** (built-in MCP support)
|
|
41
|
+
- **Node.js 18+** installed on your system
|
|
51
42
|
- **Wopee API key** from [wopee.io](https://wopee.io)
|
|
52
43
|
|
|
44
|
+
> **Quick Install:** Both editors support one-click installation via Command Palette → "MCP: Install Server" → `wopee-mcp`
|
|
45
|
+
|
|
53
46
|
## VS Code Integration
|
|
54
47
|
|
|
55
48
|
### Installing the MCP Extension
|
|
@@ -61,15 +54,16 @@ If you don't have the MCP extension:
|
|
|
61
54
|
3. Search for "MCP" or "Model Context Protocol"
|
|
62
55
|
4. Install the official MCP extension
|
|
63
56
|
|
|
64
|
-
###
|
|
57
|
+
### Quick Setup (One-Click Installation)
|
|
58
|
+
|
|
59
|
+
1. Open Command Palette: `Ctrl+Shift+P` (Windows/Linux) or `Cmd+Shift+P` (Mac)
|
|
60
|
+
2. Type: `MCP: Install Server`
|
|
61
|
+
3. Enter package name: `wopee-mcp`
|
|
62
|
+
4. Configure API key when prompted
|
|
65
63
|
|
|
66
|
-
|
|
67
|
-
2. **Type**: `MCP: Install Server`
|
|
68
|
-
3. **Enter package name**: `wopee-mcp`
|
|
69
|
-
4. **Configure API key** when prompted
|
|
70
|
-
5. **Restart VS Code** if required
|
|
64
|
+
### Manual Configuration
|
|
71
65
|
|
|
72
|
-
|
|
66
|
+
If you prefer manual setup or need custom configuration:
|
|
73
67
|
|
|
74
68
|
1. **Install globally**:
|
|
75
69
|
```bash
|
|
@@ -85,8 +79,10 @@ If you don't have the MCP extension:
|
|
|
85
79
|
{
|
|
86
80
|
"mcp.servers": {
|
|
87
81
|
"wopee": {
|
|
88
|
-
"command": "
|
|
89
|
-
"args": [
|
|
82
|
+
"command": "npx",
|
|
83
|
+
"args": [
|
|
84
|
+
"wopee-mcp@latest"
|
|
85
|
+
],
|
|
90
86
|
"env": {}
|
|
91
87
|
}
|
|
92
88
|
}
|
|
@@ -103,8 +99,10 @@ For project-specific configuration, create `.vscode/settings.json`:
|
|
|
103
99
|
{
|
|
104
100
|
"mcp.servers": {
|
|
105
101
|
"wopee": {
|
|
106
|
-
"command": "
|
|
107
|
-
"args": [
|
|
102
|
+
"command": "npx",
|
|
103
|
+
"args": [
|
|
104
|
+
"wopee-mcp@latest"
|
|
105
|
+
],
|
|
108
106
|
"env": {}
|
|
109
107
|
}
|
|
110
108
|
}
|
|
@@ -113,15 +111,16 @@ For project-specific configuration, create `.vscode/settings.json`:
|
|
|
113
111
|
|
|
114
112
|
## Cursor Integration
|
|
115
113
|
|
|
116
|
-
###
|
|
114
|
+
### Quick Setup (One-Click Installation)
|
|
117
115
|
|
|
118
|
-
1.
|
|
119
|
-
2.
|
|
120
|
-
3.
|
|
121
|
-
4.
|
|
122
|
-
5. **Restart Cursor** if required
|
|
116
|
+
1. Open Command Palette: `Ctrl+Shift+P` (Windows/Linux) or `Cmd+Shift+P` (Mac)
|
|
117
|
+
2. Type: `MCP: Install Server`
|
|
118
|
+
3. Enter package name: `wopee-mcp`
|
|
119
|
+
4. Configure API key when prompted
|
|
123
120
|
|
|
124
|
-
###
|
|
121
|
+
### Manual Configuration
|
|
122
|
+
|
|
123
|
+
For custom setup:
|
|
125
124
|
|
|
126
125
|
1. **Install globally**:
|
|
127
126
|
```bash
|
|
@@ -137,94 +136,23 @@ For project-specific configuration, create `.vscode/settings.json`:
|
|
|
137
136
|
{
|
|
138
137
|
"mcp.servers": {
|
|
139
138
|
"wopee": {
|
|
140
|
-
"command": "
|
|
141
|
-
"args": [
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
"WOPEE_API_URL": "https://api.wopee.io/"
|
|
146
|
-
}
|
|
139
|
+
"command": "npx",
|
|
140
|
+
"args": [
|
|
141
|
+
"wopee-mcp@latest"
|
|
142
|
+
],
|
|
143
|
+
"env": {}
|
|
147
144
|
}
|
|
148
145
|
}
|
|
149
146
|
}
|
|
150
147
|
```
|
|
151
148
|
|
|
149
|
+
**Note:** The server automatically loads configuration from `.env` file. You can override with environment variables in the config if needed.
|
|
150
|
+
|
|
152
151
|
5. **Restart Cursor**
|
|
153
152
|
|
|
154
153
|
## Using the Tools
|
|
155
154
|
|
|
156
|
-
Once configured, you can use Wopee tools in your chat interface
|
|
157
|
-
|
|
158
|
-
### Available Tools
|
|
159
|
-
|
|
160
|
-
#### 1. Dispatch Analysis
|
|
161
|
-
```
|
|
162
|
-
@wopee wopee_dispatch_analysis
|
|
163
|
-
Suite Analysis Config:
|
|
164
|
-
- Username: testuser
|
|
165
|
-
- Password: testpass
|
|
166
|
-
- Cookies Preference: ACCEPT_ALL
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
#### 2. Dispatch Agent
|
|
170
|
-
```
|
|
171
|
-
@wopee wopee_dispatch_agent
|
|
172
|
-
Analysis Identifier: analysis-123
|
|
173
|
-
Test Cases: [{"testCaseId": "test-1", "userStoryId": "story-1"}]
|
|
174
|
-
```
|
|
175
|
-
|
|
176
|
-
#### 3. Generate App Context
|
|
177
|
-
```
|
|
178
|
-
@wopee wopee_generate_app_context
|
|
179
|
-
Suite UUID: suite-123
|
|
180
|
-
Extra Prompt: Focus on user authentication flows
|
|
181
|
-
```
|
|
182
|
-
|
|
183
|
-
#### 4. Generate General User Stories
|
|
184
|
-
```
|
|
185
|
-
@wopee wopee_generate_general_user_stories
|
|
186
|
-
Suite UUID: suite-123
|
|
187
|
-
Extra Prompt: Include high-level business requirements
|
|
188
|
-
```
|
|
189
|
-
|
|
190
|
-
#### 5. Generate User Stories
|
|
191
|
-
```
|
|
192
|
-
@wopee wopee_generate_user_stories
|
|
193
|
-
Suite UUID: suite-123
|
|
194
|
-
Extra Prompt: Include edge cases and error scenarios
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
#### 6. Generate Test Cases
|
|
198
|
-
```
|
|
199
|
-
@wopee wopee_generate_test_cases
|
|
200
|
-
Suite UUID: suite-123
|
|
201
|
-
Extra Prompt: Generate comprehensive test coverage
|
|
202
|
-
Selected User Stories: ["story-1", "story-2"]
|
|
203
|
-
```
|
|
204
|
-
|
|
205
|
-
#### 7. Get App Context
|
|
206
|
-
```
|
|
207
|
-
@wopee wopee_get_app_context
|
|
208
|
-
Suite UUID: suite-123
|
|
209
|
-
```
|
|
210
|
-
|
|
211
|
-
#### 8. Get User Stories
|
|
212
|
-
```
|
|
213
|
-
@wopee wopee_get_user_stories
|
|
214
|
-
Suite UUID: suite-123
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
#### 9. Get Test Cases
|
|
218
|
-
```
|
|
219
|
-
@wopee wopee_get_test_cases
|
|
220
|
-
Suite UUID: suite-123
|
|
221
|
-
```
|
|
222
|
-
|
|
223
|
-
#### 10. Fetch Analysis Suites
|
|
224
|
-
```
|
|
225
|
-
@wopee wopee_fetch_analysis_suites
|
|
226
|
-
Project UUID: project-123
|
|
227
|
-
```
|
|
155
|
+
Once configured, you can use Wopee tools in your chat interface. See [README.md](README.md#using-the-tools) and [EXAMPLES.md](EXAMPLES.md) for detailed tool usage.
|
|
228
156
|
|
|
229
157
|
### Example Workflow
|
|
230
158
|
|
|
@@ -363,8 +291,10 @@ You can set additional environment variables:
|
|
|
363
291
|
{
|
|
364
292
|
"mcp.servers": {
|
|
365
293
|
"wopee": {
|
|
366
|
-
"command": "
|
|
367
|
-
"args": [
|
|
294
|
+
"command": "npx",
|
|
295
|
+
"args": [
|
|
296
|
+
"wopee-mcp@latest"
|
|
297
|
+
],
|
|
368
298
|
"env": {
|
|
369
299
|
"WOPEE_API_KEY": "your_api_key_here",
|
|
370
300
|
"WOPEE_PROJECT_UUID": "your_project_uuid_here",
|
|
@@ -377,6 +307,8 @@ You can set additional environment variables:
|
|
|
377
307
|
}
|
|
378
308
|
```
|
|
379
309
|
|
|
310
|
+
**Note:** Usually, you don't need to set environment variables in the config since the server loads from `.env` files automatically.
|
|
311
|
+
|
|
380
312
|
### Multiple Server Instances
|
|
381
313
|
|
|
382
314
|
You can run multiple instances with different configurations:
|
|
@@ -385,16 +317,20 @@ You can run multiple instances with different configurations:
|
|
|
385
317
|
{
|
|
386
318
|
"mcp.servers": {
|
|
387
319
|
"wopee-prod": {
|
|
388
|
-
"command": "
|
|
389
|
-
"args": [
|
|
320
|
+
"command": "npx",
|
|
321
|
+
"args": [
|
|
322
|
+
"wopee-mcp@latest"
|
|
323
|
+
],
|
|
390
324
|
"env": {
|
|
391
325
|
"WOPEE_API_KEY": "prod_api_key",
|
|
392
326
|
"WOPEE_API_URL": "https://api.wopee.io/"
|
|
393
327
|
}
|
|
394
328
|
},
|
|
395
329
|
"wopee-dev": {
|
|
396
|
-
"command": "
|
|
397
|
-
"args": [
|
|
330
|
+
"command": "npx",
|
|
331
|
+
"args": [
|
|
332
|
+
"wopee-mcp@latest"
|
|
333
|
+
],
|
|
398
334
|
"env": {
|
|
399
335
|
"WOPEE_API_KEY": "dev_api_key",
|
|
400
336
|
"WOPEE_API_URL": "https://api.dev.wopee.io/"
|
|
@@ -404,23 +340,7 @@ You can run multiple instances with different configurations:
|
|
|
404
340
|
}
|
|
405
341
|
```
|
|
406
342
|
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
You can pass custom arguments to the server:
|
|
410
|
-
|
|
411
|
-
```json
|
|
412
|
-
{
|
|
413
|
-
"mcp.servers": {
|
|
414
|
-
"wopee": {
|
|
415
|
-
"command": "wopee-mcp",
|
|
416
|
-
"args": ["--verbose", "--debug"],
|
|
417
|
-
"env": {
|
|
418
|
-
"WOPEE_API_KEY": "your_api_key_here"
|
|
419
|
-
}
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
```
|
|
343
|
+
**Note:** Custom arguments are rarely needed. The server loads configuration from `.env` files automatically.
|
|
424
344
|
|
|
425
345
|
## Best Practices
|
|
426
346
|
|
package/QUICK_START.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Quick Start Guide
|
|
2
2
|
|
|
3
|
+
[](INTEGRATION.md#vs-code-integration)
|
|
4
|
+
[](INTEGRATION.md#cursor-integration)
|
|
5
|
+
|
|
3
6
|
## 🚀 One-Click Installation
|
|
4
7
|
|
|
5
8
|
### VS Code / Cursor
|
|
@@ -46,5 +49,5 @@ export WOPEE_PROJECT_UUID=your_project_uuid_here
|
|
|
46
49
|
## 📚 More Info
|
|
47
50
|
|
|
48
51
|
- [Full Integration Guide](INTEGRATION.md)
|
|
52
|
+
- [Usage Examples](EXAMPLES.md)
|
|
49
53
|
- [Main Documentation](README.md)
|
|
50
|
-
- [Publishing Guide](PUBLISHING.md)
|
package/README.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
A Model Context Protocol (MCP) server for integrating with the Wopee testing platform. This server provides tools for dispatching analysis, generating app context, user stories, test cases, and running test executions through GraphQL API calls.
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
[](INTEGRATION.md#vs-code-integration)
|
|
11
|
+
[](INTEGRATION.md#cursor-integration)
|
|
12
|
+
|
|
13
|
+
[](vscode:mcp/install?%7B%22name%22%3A%22playwright%22%2C%22type%22%3A%22stdio%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22%40playwright%2Fmcp%40latest%22%5D%7D)
|
|
14
|
+
|
|
5
15
|
## Features
|
|
6
16
|
|
|
7
17
|
- **Dispatch Analysis**: Start analysis of web applications to understand their structure and behavior
|
|
@@ -17,67 +27,34 @@ A Model Context Protocol (MCP) server for integrating with the Wopee testing pla
|
|
|
17
27
|
|
|
18
28
|
## Installation
|
|
19
29
|
|
|
20
|
-
|
|
30
|
+
See [INTEGRATION.md](INTEGRATION.md) for detailed installation instructions for VS Code and Cursor.
|
|
21
31
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
3. Type "MCP: Install Server" and select it
|
|
26
|
-
4. Enter: `wopee-mcp`
|
|
27
|
-
5. Configure your API key when prompted
|
|
32
|
+
### Quick Install
|
|
33
|
+
|
|
34
|
+
**One-Click Installation (Recommended):**
|
|
28
35
|
|
|
29
|
-
|
|
30
|
-
1. Open Cursor
|
|
36
|
+
1. Open VS Code or Cursor
|
|
31
37
|
2. Press `Ctrl+Shift+P` (or `Cmd+Shift+P` on Mac)
|
|
32
38
|
3. Type "MCP: Install Server" and select it
|
|
33
39
|
4. Enter: `wopee-mcp`
|
|
34
40
|
5. Configure your API key when prompted
|
|
35
41
|
|
|
36
|
-
|
|
42
|
+
**Manual Installation:**
|
|
37
43
|
|
|
38
|
-
1. Install the package globally:
|
|
39
44
|
```bash
|
|
40
45
|
npm install -g wopee-mcp
|
|
41
46
|
```
|
|
42
47
|
|
|
43
|
-
|
|
44
|
-
```bash
|
|
45
|
-
# Create a .env file in the project root
|
|
46
|
-
cp env.example .env
|
|
47
|
-
|
|
48
|
-
# Edit the .env file with your API key
|
|
49
|
-
# WOPEE_API_KEY=your_api_key_here
|
|
50
|
-
# WOPEE_API_URL=https://api.wopee.io/
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
**Alternative: Set system environment variables:**
|
|
54
|
-
```bash
|
|
55
|
-
export WOPEE_API_KEY=your_api_key_here
|
|
56
|
-
export WOPEE_API_URL=https://api.wopee.io/
|
|
57
|
-
```
|
|
48
|
+
### Development Installation
|
|
58
49
|
|
|
59
|
-
|
|
50
|
+
For contributing or local development:
|
|
60
51
|
|
|
61
|
-
1. Clone the repository:
|
|
62
52
|
```bash
|
|
63
53
|
git clone <repository-url>
|
|
64
54
|
cd wopee-mcp
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
2. Install dependencies:
|
|
68
|
-
```bash
|
|
69
55
|
npm install
|
|
70
|
-
```
|
|
71
|
-
|
|
72
|
-
3. Set up environment variables:
|
|
73
|
-
```bash
|
|
74
56
|
cp env.example .env
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
4. Edit `.env` file with your Wopee API credentials:
|
|
78
|
-
```env
|
|
79
|
-
WOPEE_API_KEY=your_api_key_here
|
|
80
|
-
WOPEE_API_URL=https://api.wopee.io/
|
|
57
|
+
# Edit .env with your credentials
|
|
81
58
|
```
|
|
82
59
|
|
|
83
60
|
## VS Code & Cursor Integration
|
|
@@ -90,89 +67,20 @@ Before using the Wopee MCP server, ensure you have:
|
|
|
90
67
|
2. A **Wopee API key** from [wopee.io](https://wopee.io)
|
|
91
68
|
3. **Node.js 18+** installed on your system
|
|
92
69
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
#### Method 1: One-Click Installation (Easiest)
|
|
96
|
-
|
|
97
|
-
1. **Open VS Code** and ensure you have the MCP extension installed
|
|
98
|
-
2. **Open Command Palette**: `Ctrl+Shift+P` (Windows/Linux) or `Cmd+Shift+P` (Mac)
|
|
99
|
-
3. **Type**: `MCP: Install Server`
|
|
100
|
-
4. **Enter package name**: `wopee-mcp`
|
|
101
|
-
5. **Configure API key** when prompted
|
|
102
|
-
|
|
103
|
-
#### Method 2: Manual Configuration
|
|
104
|
-
|
|
105
|
-
1. **Install the package globally**:
|
|
106
|
-
```bash
|
|
107
|
-
npm install -g wopee-mcp
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
2. **Open VS Code settings** (`Ctrl+,` or `Cmd+,`)
|
|
111
|
-
|
|
112
|
-
3. **Search for "MCP"** and find the MCP settings
|
|
113
|
-
|
|
114
|
-
4. **Add server configuration**:
|
|
115
|
-
```json
|
|
116
|
-
{
|
|
117
|
-
"mcp.servers": {
|
|
118
|
-
"wopee": {
|
|
119
|
-
"command": "wopee-mcp",
|
|
120
|
-
"args": [],
|
|
121
|
-
"env": {
|
|
122
|
-
"WOPEE_API_KEY": "your_api_key_here",
|
|
123
|
-
"WOPEE_API_URL": "https://api.wopee.io/"
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
```
|
|
129
|
-
|
|
130
|
-
5. **Restart VS Code** to load the new MCP server
|
|
70
|
+
For detailed integration instructions, see [INTEGRATION.md](INTEGRATION.md).
|
|
131
71
|
|
|
132
|
-
|
|
72
|
+
**Quick Setup:**
|
|
133
73
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
2. **Open Command Palette**: `Ctrl+Shift+P` (Windows/Linux) or `Cmd+Shift+P` (Mac)
|
|
138
|
-
3. **Type**: `MCP: Install Server`
|
|
139
|
-
4. **Enter package name**: `wopee-mcp`
|
|
140
|
-
5. **Configure API key** when prompted
|
|
141
|
-
|
|
142
|
-
#### Method 2: Manual Configuration
|
|
143
|
-
|
|
144
|
-
1. **Install the package globally**:
|
|
145
|
-
```bash
|
|
146
|
-
npm install -g wopee-mcp
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
2. **Open Cursor settings** (`Ctrl+,` or `Cmd+,`)
|
|
150
|
-
|
|
151
|
-
3. **Navigate to MCP settings** in the sidebar
|
|
152
|
-
|
|
153
|
-
4. **Add server configuration**:
|
|
154
|
-
```json
|
|
155
|
-
{
|
|
156
|
-
"mcp.servers": {
|
|
157
|
-
"wopee": {
|
|
158
|
-
"command": "wopee-mcp",
|
|
159
|
-
"args": [],
|
|
160
|
-
"env": {
|
|
161
|
-
"WOPEE_API_KEY": "your_api_key_here",
|
|
162
|
-
"WOPEE_API_URL": "https://api.wopee.io/"
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
5. **Restart Cursor** to load the new MCP server
|
|
74
|
+
- VS Code: Install MCP extension, then use one-click installation
|
|
75
|
+
- Cursor: Built-in MCP support, use one-click installation
|
|
76
|
+
- Both: The server automatically loads `.env` files from your project root
|
|
170
77
|
|
|
171
78
|
### Using the Tools
|
|
172
79
|
|
|
173
80
|
Once configured, you can use the Wopee tools in your chat interface:
|
|
174
81
|
|
|
175
82
|
#### Dispatch Analysis
|
|
83
|
+
|
|
176
84
|
```
|
|
177
85
|
@wopee wopee_dispatch_analysis
|
|
178
86
|
Project UUID: project-123
|
|
@@ -185,6 +93,7 @@ Suite Analysis Config:
|
|
|
185
93
|
```
|
|
186
94
|
|
|
187
95
|
#### Dispatch Agent
|
|
96
|
+
|
|
188
97
|
```
|
|
189
98
|
@wopee wopee_dispatch_agent
|
|
190
99
|
Project UUID: project-123
|
|
@@ -194,6 +103,7 @@ Test Cases: [{"testCaseId": "test-1", "userStoryId": "story-1"}]
|
|
|
194
103
|
```
|
|
195
104
|
|
|
196
105
|
#### Generate App Context
|
|
106
|
+
|
|
197
107
|
```
|
|
198
108
|
@wopee wopee_generate_app_context
|
|
199
109
|
Project UUID: project-123
|
|
@@ -202,6 +112,7 @@ Extra Prompt: Focus on user authentication flows
|
|
|
202
112
|
```
|
|
203
113
|
|
|
204
114
|
#### Generate General User Stories
|
|
115
|
+
|
|
205
116
|
```
|
|
206
117
|
@wopee wopee_generate_general_user_stories
|
|
207
118
|
Project UUID: project-123
|
|
@@ -210,6 +121,7 @@ Extra Prompt: Include high-level business requirements
|
|
|
210
121
|
```
|
|
211
122
|
|
|
212
123
|
#### Generate User Stories
|
|
124
|
+
|
|
213
125
|
```
|
|
214
126
|
@wopee wopee_generate_user_stories
|
|
215
127
|
Project UUID: project-123
|
|
@@ -218,6 +130,7 @@ Extra Prompt: Include edge cases and error scenarios
|
|
|
218
130
|
```
|
|
219
131
|
|
|
220
132
|
#### Generate Test Cases
|
|
133
|
+
|
|
221
134
|
```
|
|
222
135
|
@wopee wopee_generate_test_cases
|
|
223
136
|
Project UUID: project-123
|
|
@@ -226,90 +139,55 @@ Extra Prompt: Generate comprehensive test coverage
|
|
|
226
139
|
Selected User Stories: ["story-1", "story-2"]
|
|
227
140
|
```
|
|
228
141
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
Get existing app context for a project and suite.
|
|
142
|
+
#### Get App Context
|
|
232
143
|
|
|
233
|
-
**Parameters:**
|
|
234
|
-
- `projectUuid` (string, required): UUID of the project
|
|
235
|
-
- `suiteUuid` (string, required): UUID of the test suite
|
|
236
|
-
|
|
237
|
-
**Example:**
|
|
238
|
-
```json
|
|
239
|
-
{
|
|
240
|
-
"projectUuid": "project-123",
|
|
241
|
-
"suiteUuid": "suite-123"
|
|
242
|
-
}
|
|
243
144
|
```
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
Get existing user stories for a project and suite.
|
|
248
|
-
|
|
249
|
-
**Parameters:**
|
|
250
|
-
- `projectUuid` (string, required): UUID of the project
|
|
251
|
-
- `suiteUuid` (string, required): UUID of the test suite
|
|
252
|
-
|
|
253
|
-
**Example:**
|
|
254
|
-
```json
|
|
255
|
-
{
|
|
256
|
-
"projectUuid": "project-123",
|
|
257
|
-
"suiteUuid": "suite-123"
|
|
258
|
-
}
|
|
145
|
+
@wopee wopee_get_app_context
|
|
146
|
+
Project UUID: project-123
|
|
147
|
+
Suite UUID: suite-123
|
|
259
148
|
```
|
|
260
149
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
Get existing test cases for a project and suite.
|
|
150
|
+
#### Get User Stories
|
|
264
151
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
**Example:**
|
|
270
|
-
```json
|
|
271
|
-
{
|
|
272
|
-
"projectUuid": "project-123",
|
|
273
|
-
"suiteUuid": "suite-123"
|
|
274
|
-
}
|
|
152
|
+
```
|
|
153
|
+
@wopee wopee_get_user_stories
|
|
154
|
+
Project UUID: project-123
|
|
155
|
+
Suite UUID: suite-123
|
|
275
156
|
```
|
|
276
157
|
|
|
277
|
-
|
|
158
|
+
#### Get Test Cases
|
|
278
159
|
|
|
279
|
-
|
|
160
|
+
```
|
|
161
|
+
@wopee wopee_get_test_cases
|
|
162
|
+
Project UUID: project-123
|
|
163
|
+
Suite UUID: suite-123
|
|
164
|
+
```
|
|
280
165
|
|
|
281
|
-
|
|
282
|
-
- `projectUuid` (string, required): UUID of the project
|
|
166
|
+
#### Fetch Analysis Suites
|
|
283
167
|
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
"projectUuid": "project-123"
|
|
288
|
-
}
|
|
168
|
+
```
|
|
169
|
+
@wopee wopee_fetch_analysis_suites
|
|
170
|
+
Project UUID: project-123
|
|
289
171
|
```
|
|
290
172
|
|
|
291
|
-
|
|
292
|
-
Returns an array of analysis suites with detailed information including:
|
|
293
|
-
- Suite UUID, name, and type
|
|
294
|
-
- Upload and execution status
|
|
295
|
-
- Analysis identifier
|
|
296
|
-
- Suite running status
|
|
297
|
-
- Generation state for app context, user stories, and test cases
|
|
298
|
-
- Creation and update timestamps
|
|
173
|
+
Returns an array of analysis suites with detailed information including suite UUID, name, type, status, analysis identifier, and generation states.
|
|
299
174
|
|
|
300
175
|
### Troubleshooting
|
|
301
176
|
|
|
302
177
|
#### Common Issues
|
|
303
178
|
|
|
304
179
|
1. **"Command not found" error**:
|
|
180
|
+
|
|
305
181
|
- Ensure the package is installed globally: `npm install -g wopee-mcp`
|
|
306
182
|
- Check that Node.js is in your PATH
|
|
307
183
|
|
|
308
184
|
2. **"API key not configured" error**:
|
|
185
|
+
|
|
309
186
|
- Verify your API key is set in the environment variables
|
|
310
187
|
- Check the MCP server configuration in VS Code/Cursor settings
|
|
311
188
|
|
|
312
189
|
3. **"Connection failed" error**:
|
|
190
|
+
|
|
313
191
|
- Verify your internet connection
|
|
314
192
|
- Check if the Wopee API URL is correct
|
|
315
193
|
- Ensure your API key is valid
|
|
@@ -323,7 +201,7 @@ Returns an array of analysis suites with detailed information including:
|
|
|
323
201
|
|
|
324
202
|
- **Check logs**: Look in the MCP server output panel
|
|
325
203
|
- **Verify installation**: Run `wopee-mcp --help` in terminal
|
|
326
|
-
- **Test connection**: Use the `
|
|
204
|
+
- **Test connection**: Use the `wopee_dispatch_analysis` tool with a simple project UUID
|
|
327
205
|
|
|
328
206
|
## Configuration
|
|
329
207
|
|
|
@@ -331,18 +209,22 @@ The server loads configuration from a `.env` file in the project root directory
|
|
|
331
209
|
|
|
332
210
|
### Environment Variables
|
|
333
211
|
|
|
334
|
-
- `WOPEE_API_KEY` (required): Your Wopee API key
|
|
335
|
-
- `WOPEE_PROJECT_UUID` (
|
|
212
|
+
- `WOPEE_API_KEY` (required): Your Wopee API key for authentication
|
|
213
|
+
- `WOPEE_PROJECT_UUID` (optional): Your Wopee project UUID - can be set in `.env` for convenience, but tools also accept `projectUuid` as a parameter
|
|
336
214
|
- `WOPEE_API_URL` (optional): Wopee API endpoint (defaults to `https://api.wopee.io/`)
|
|
337
215
|
|
|
216
|
+
**Note:** All tools accept `projectUuid` as a parameter. Setting `WOPEE_PROJECT_UUID` in `.env` is optional and provides a default value, but you can override it by passing `projectUuid` in each tool call.
|
|
217
|
+
|
|
338
218
|
### Setting up .env file
|
|
339
219
|
|
|
340
220
|
1. **Copy the example file:**
|
|
221
|
+
|
|
341
222
|
```bash
|
|
342
223
|
cp env.example .env
|
|
343
224
|
```
|
|
344
225
|
|
|
345
226
|
2. **Edit the .env file in the project root:**
|
|
227
|
+
|
|
346
228
|
```bash
|
|
347
229
|
# Wopee API Configuration
|
|
348
230
|
WOPEE_API_KEY=your_actual_api_key_here
|
|
@@ -351,12 +233,13 @@ The server loads configuration from a `.env` file in the project root directory
|
|
|
351
233
|
```
|
|
352
234
|
|
|
353
235
|
3. **For MCP integration, update your `mcp.json`:**
|
|
236
|
+
|
|
354
237
|
```json
|
|
355
238
|
{
|
|
356
239
|
"mcpServers": {
|
|
357
240
|
"wopee": {
|
|
358
|
-
"command": "
|
|
359
|
-
"args": ["
|
|
241
|
+
"command": "npx",
|
|
242
|
+
"args": ["wopee-mcp@latest"],
|
|
360
243
|
"env": {}
|
|
361
244
|
}
|
|
362
245
|
}
|
|
@@ -370,6 +253,7 @@ The server loads configuration from a `.env` file in the project root directory
|
|
|
370
253
|
### Development
|
|
371
254
|
|
|
372
255
|
Run the server in development mode:
|
|
256
|
+
|
|
373
257
|
```bash
|
|
374
258
|
npm run dev
|
|
375
259
|
```
|
|
@@ -377,6 +261,7 @@ npm run dev
|
|
|
377
261
|
### Production
|
|
378
262
|
|
|
379
263
|
Build and run the server:
|
|
264
|
+
|
|
380
265
|
```bash
|
|
381
266
|
npm run build
|
|
382
267
|
npm start
|
|
@@ -385,16 +270,19 @@ npm start
|
|
|
385
270
|
### Testing
|
|
386
271
|
|
|
387
272
|
Run the test suite:
|
|
273
|
+
|
|
388
274
|
```bash
|
|
389
275
|
npm test
|
|
390
276
|
```
|
|
391
277
|
|
|
392
278
|
Run tests in watch mode:
|
|
279
|
+
|
|
393
280
|
```bash
|
|
394
281
|
npm run test:watch
|
|
395
282
|
```
|
|
396
283
|
|
|
397
284
|
Run tests with coverage:
|
|
285
|
+
|
|
398
286
|
```bash
|
|
399
287
|
npm run test:coverage
|
|
400
288
|
```
|
|
@@ -404,11 +292,13 @@ npm run test:coverage
|
|
|
404
292
|
#### Building the Package
|
|
405
293
|
|
|
406
294
|
Clean build (removes dist and rebuilds):
|
|
295
|
+
|
|
407
296
|
```bash
|
|
408
297
|
npm run build:clean
|
|
409
298
|
```
|
|
410
299
|
|
|
411
300
|
Validate the package:
|
|
301
|
+
|
|
412
302
|
```bash
|
|
413
303
|
npm run validate
|
|
414
304
|
```
|
|
@@ -416,6 +306,7 @@ npm run validate
|
|
|
416
306
|
#### Publishing to npm
|
|
417
307
|
|
|
418
308
|
**Prerequisites:**
|
|
309
|
+
|
|
419
310
|
1. Create an npm account at [npmjs.com](https://www.npmjs.com)
|
|
420
311
|
2. Login to npm: `npm login`
|
|
421
312
|
3. Ensure you have publish permissions for the package
|
|
@@ -423,31 +314,35 @@ npm run validate
|
|
|
423
314
|
**Publishing Workflow:**
|
|
424
315
|
|
|
425
316
|
1. **Prepare for release:**
|
|
317
|
+
|
|
426
318
|
```bash
|
|
427
319
|
./scripts/prepare-release.sh
|
|
428
320
|
```
|
|
429
321
|
|
|
430
322
|
2. **Publish the package:**
|
|
323
|
+
|
|
431
324
|
```bash
|
|
432
325
|
./scripts/publish.sh
|
|
433
326
|
```
|
|
434
327
|
|
|
435
328
|
3. **Or use npm scripts directly:**
|
|
329
|
+
|
|
436
330
|
```bash
|
|
437
331
|
# Dry run (test without publishing)
|
|
438
332
|
npm run publish:dry-run
|
|
439
|
-
|
|
333
|
+
|
|
440
334
|
# Publish patch version (1.0.0 -> 1.0.1)
|
|
441
335
|
npm run publish:patch
|
|
442
|
-
|
|
336
|
+
|
|
443
337
|
# Publish minor version (1.0.0 -> 1.1.0)
|
|
444
338
|
npm run publish:minor
|
|
445
|
-
|
|
339
|
+
|
|
446
340
|
# Publish major version (1.0.0 -> 2.0.0)
|
|
447
341
|
npm run publish:major
|
|
448
342
|
```
|
|
449
343
|
|
|
450
344
|
**Manual Publishing:**
|
|
345
|
+
|
|
451
346
|
```bash
|
|
452
347
|
# 1. Update version
|
|
453
348
|
npm version patch # or minor, major
|
|
@@ -456,95 +351,29 @@ npm version patch # or minor, major
|
|
|
456
351
|
npm publish
|
|
457
352
|
```
|
|
458
353
|
|
|
459
|
-
## Available Tools
|
|
354
|
+
## Available Tools Reference
|
|
460
355
|
|
|
461
|
-
|
|
356
|
+
For detailed usage examples, see the [Usage Examples](#using-the-tools) section above and [EXAMPLES.md](EXAMPLES.md).
|
|
462
357
|
|
|
463
|
-
|
|
358
|
+
All tools require a `projectUuid` parameter. You can either:
|
|
464
359
|
|
|
465
|
-
|
|
466
|
-
- `
|
|
360
|
+
- Pass `projectUuid` as a parameter to each tool call, or
|
|
361
|
+
- Set `WOPEE_PROJECT_UUID` in your `.env` file (tools will use it if not provided as a parameter)
|
|
467
362
|
|
|
468
|
-
|
|
469
|
-
```json
|
|
470
|
-
{
|
|
471
|
-
"url": "https://example.com"
|
|
472
|
-
}
|
|
473
|
-
```
|
|
363
|
+
### Tool List
|
|
474
364
|
|
|
475
|
-
|
|
365
|
+
1. **wopee_dispatch_analysis** - Start a new analysis for a project
|
|
366
|
+
2. **wopee_dispatch_agent** - Execute tests for a project and suite
|
|
367
|
+
3. **wopee_generate_app_context** - Generate application context from analysis
|
|
368
|
+
4. **wopee_generate_general_user_stories** - Generate high-level user stories
|
|
369
|
+
5. **wopee_generate_user_stories** - Generate detailed user stories
|
|
370
|
+
6. **wopee_generate_test_cases** - Generate test cases from user stories
|
|
371
|
+
7. **wopee_get_app_context** - Retrieve existing app context
|
|
372
|
+
8. **wopee_get_user_stories** - Retrieve existing user stories
|
|
373
|
+
9. **wopee_get_test_cases** - Retrieve existing test cases
|
|
374
|
+
10. **wopee_fetch_analysis_suites** - Fetch all analysis suites for a project
|
|
476
375
|
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
**Parameters:**
|
|
480
|
-
- `analysisId` (string, required): ID of the analysis to generate context from
|
|
481
|
-
- `prompt` (string, optional): Optional prompt to modify the app context generation
|
|
482
|
-
|
|
483
|
-
**Example:**
|
|
484
|
-
```json
|
|
485
|
-
{
|
|
486
|
-
"analysisId": "analysis-123",
|
|
487
|
-
"prompt": "Focus on user authentication flows"
|
|
488
|
-
}
|
|
489
|
-
```
|
|
490
|
-
|
|
491
|
-
### 3. wopee_generate_user_stories
|
|
492
|
-
|
|
493
|
-
Generate user stories based on analysis results.
|
|
494
|
-
|
|
495
|
-
**Parameters:**
|
|
496
|
-
- `analysisId` (string, required): ID of the analysis to generate user stories from
|
|
497
|
-
- `prompt` (string, optional): Optional prompt to modify the user story generation
|
|
498
|
-
|
|
499
|
-
**Example:**
|
|
500
|
-
```json
|
|
501
|
-
{
|
|
502
|
-
"analysisId": "analysis-123",
|
|
503
|
-
"prompt": "Include edge cases and error scenarios"
|
|
504
|
-
}
|
|
505
|
-
```
|
|
506
|
-
|
|
507
|
-
### 4. wopee_generate_tests
|
|
508
|
-
|
|
509
|
-
Generate test files by fetching generated scenarios from the Wopee platform.
|
|
510
|
-
|
|
511
|
-
**Parameters:**
|
|
512
|
-
- `projectUuid` (string, required): UUID of the project
|
|
513
|
-
- `suiteUuid` (string, required): UUID of the test suite
|
|
514
|
-
- `bucket` (string, required): Bucket name containing the generated scenarios
|
|
515
|
-
|
|
516
|
-
**Example:**
|
|
517
|
-
```json
|
|
518
|
-
{
|
|
519
|
-
"projectUuid": "e70d893f-b70a-4e45-a93a-7c08ef289aa9",
|
|
520
|
-
"suiteUuid": "f0cd35a5-0e11-4d33-995b-433706e10542",
|
|
521
|
-
"bucket": "project-suite-generated-scenarios"
|
|
522
|
-
}
|
|
523
|
-
```
|
|
524
|
-
|
|
525
|
-
### 5. wopee_run_tests
|
|
526
|
-
|
|
527
|
-
Run tests either by analysis ID or specific test IDs.
|
|
528
|
-
|
|
529
|
-
**Parameters:**
|
|
530
|
-
- `analysisId` (string, optional): ID of the analysis to run tests for
|
|
531
|
-
- `testIds` (array of strings, optional): Array of specific test IDs to run
|
|
532
|
-
|
|
533
|
-
**Note:** Either `analysisId` or `testIds` must be provided.
|
|
534
|
-
|
|
535
|
-
**Example with analysis ID:**
|
|
536
|
-
```json
|
|
537
|
-
{
|
|
538
|
-
"analysisId": "analysis-123"
|
|
539
|
-
}
|
|
540
|
-
```
|
|
541
|
-
|
|
542
|
-
**Example with test IDs:**
|
|
543
|
-
```json
|
|
544
|
-
{
|
|
545
|
-
"testIds": ["test-1", "test-2", "test-3"]
|
|
546
|
-
}
|
|
547
|
-
```
|
|
376
|
+
See [INTEGRATION.md](INTEGRATION.md) for detailed tool usage examples and workflows.
|
|
548
377
|
|
|
549
378
|
## Response Format
|
|
550
379
|
|
|
@@ -553,7 +382,9 @@ All tools return responses in the following format:
|
|
|
553
382
|
```json
|
|
554
383
|
{
|
|
555
384
|
"success": true,
|
|
556
|
-
"data": {
|
|
385
|
+
"data": {
|
|
386
|
+
/* tool-specific data */
|
|
387
|
+
},
|
|
557
388
|
"message": "Success message",
|
|
558
389
|
"error": "Error message (only present if success is false)"
|
|
559
390
|
}
|
|
@@ -562,6 +393,7 @@ All tools return responses in the following format:
|
|
|
562
393
|
## Error Handling
|
|
563
394
|
|
|
564
395
|
The server provides detailed error messages for:
|
|
396
|
+
|
|
565
397
|
- Invalid parameters
|
|
566
398
|
- GraphQL API errors
|
|
567
399
|
- Network connectivity issues
|
|
@@ -577,11 +409,16 @@ src/
|
|
|
577
409
|
├── graphql/
|
|
578
410
|
│ └── client.ts # GraphQL client implementation
|
|
579
411
|
├── tools/ # Individual tool implementations
|
|
580
|
-
│ ├──
|
|
412
|
+
│ ├── wopee_dispatch_analysis.ts
|
|
413
|
+
│ ├── wopee_dispatch_agent.ts
|
|
581
414
|
│ ├── wopee_generate_app_context.ts
|
|
415
|
+
│ ├── wopee_generate_general_user_stories.ts
|
|
582
416
|
│ ├── wopee_generate_user_stories.ts
|
|
583
|
-
│ ├──
|
|
584
|
-
│
|
|
417
|
+
│ ├── wopee_generate_test_cases.ts
|
|
418
|
+
│ ├── wopee_get_app_context.ts
|
|
419
|
+
│ ├── wopee_get_user_stories.ts
|
|
420
|
+
│ ├── wopee_get_test_cases.ts
|
|
421
|
+
│ └── wopee_fetch_analysis_suites.ts
|
|
585
422
|
├── types/
|
|
586
423
|
│ └── index.ts # TypeScript type definitions
|
|
587
424
|
└── index.ts # Main MCP server implementation
|
|
@@ -589,9 +426,10 @@ src/
|
|
|
589
426
|
tests/
|
|
590
427
|
├── config.test.ts # Configuration tests
|
|
591
428
|
└── tools/ # Tool-specific tests
|
|
592
|
-
├──
|
|
593
|
-
├──
|
|
594
|
-
|
|
429
|
+
├── wopee_dispatch_analysis.test.ts
|
|
430
|
+
├── wopee_dispatch_agent.test.ts
|
|
431
|
+
├── wopee_generate_app_context.test.ts
|
|
432
|
+
└── [other tool tests]
|
|
595
433
|
```
|
|
596
434
|
|
|
597
435
|
### Adding New Tools
|
|
@@ -605,6 +443,7 @@ tests/
|
|
|
605
443
|
### Code Quality
|
|
606
444
|
|
|
607
445
|
The project includes:
|
|
446
|
+
|
|
608
447
|
- TypeScript for type safety
|
|
609
448
|
- ESLint for code linting
|
|
610
449
|
- Jest for testing
|
|
@@ -642,6 +481,7 @@ See [AUTOMATION.md](AUTOMATION.md) for detailed information about the automation
|
|
|
642
481
|
To publish a new version:
|
|
643
482
|
|
|
644
483
|
1. **Automatic (recommended):**
|
|
484
|
+
|
|
645
485
|
```bash
|
|
646
486
|
git tag v1.0.0
|
|
647
487
|
git push origin v1.0.0
|
|
@@ -655,4 +495,4 @@ To publish a new version:
|
|
|
655
495
|
|
|
656
496
|
## Support
|
|
657
497
|
|
|
658
|
-
For issues and questions, please create an issue in the repository.
|
|
498
|
+
For issues and questions, please create an issue in the repository.
|
package/dist/index.js
CHANGED
|
@@ -607,12 +607,7 @@ class WopeeMCPServer {
|
|
|
607
607
|
}
|
|
608
608
|
}
|
|
609
609
|
// Start the server if this file is run directly
|
|
610
|
-
|
|
611
|
-
const isMainModule = import.meta.url === `file://${process.argv[1]}` ||
|
|
612
|
-
(process.argv[1] && import.meta.url.endsWith(process.argv[1])) ||
|
|
613
|
-
process.argv[1]?.includes('wopee-mcp') ||
|
|
614
|
-
process.argv[0]?.includes('wopee-mcp');
|
|
615
|
-
if (isMainModule) {
|
|
610
|
+
if (import.meta.url === `file://${process.argv[1]}`) {
|
|
616
611
|
// Check for help flag
|
|
617
612
|
if (process.argv.includes('--help') || process.argv.includes('-h')) {
|
|
618
613
|
console.log(`
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wopee_fetch_analysis_suites.js","sourceRoot":"","sources":["../../src/tools/wopee_fetch_analysis_suites.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAA6B,yBAAyB,EAA0C,MAAM,gBAAgB,CAAC;AAE9H;;GAEG;AACH,MAAM,2BAA2B,GAAG
|
|
1
|
+
{"version":3,"file":"wopee_fetch_analysis_suites.js","sourceRoot":"","sources":["../../src/tools/wopee_fetch_analysis_suites.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAA6B,yBAAyB,EAA0C,MAAM,gBAAgB,CAAC;AAE9H;;GAEG;AACH,MAAM,2BAA2B,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqCnC,CAAC;AAEF;;;;;GAKG;AACH,MAAM,CAAC,KAAK,UAAU,2BAA2B,CAC/C,MAAiC;IAEjC,IAAI,CAAC;QACH,4BAA4B;QAC5B,MAAM,eAAe,GAAG,yBAAyB,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAEhE,MAAM,QAAQ,GAAG,MAAM,aAAa,CAAC,WAAW,EAAE,CAAC,OAAO,CAEvD,2BAA2B,EAAE;YAC9B,WAAW,EAAE,eAAe,CAAC,WAAW;SACzC,CAAC,CAAC;QAEH,IAAI,CAAC,QAAQ,CAAC,mBAAmB,EAAE,CAAC;YAClC,OAAO;gBACL,OAAO,EAAE,KAAK;gBACd,KAAK,EAAE,oDAAoD;aAC5D,CAAC;QACJ,CAAC;QAED,OAAO;YACL,OAAO,EAAE,IAAI;YACb,IAAI,EAAE,QAAQ,CAAC,mBAAmB;YAClC,OAAO,EAAE,SAAS,QAAQ,CAAC,mBAAmB,CAAC,MAAM,kBAAkB;SACxE,CAAC;IACJ,CAAC;IAAC,OAAO,KAAK,EAAE,CAAC;QACf,OAAO,CAAC,KAAK,CAAC,6CAA6C,EAAE,KAAK,CAAC,CAAC;QAEpE,MAAM,YAAY,GAAG,KAAK,YAAY,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,wBAAwB,CAAC;QACvF,OAAO;YACL,OAAO,EAAE,KAAK;YACd,KAAK,EAAE,oCAAoC,YAAY,EAAE;SAC1D,CAAC;IACJ,CAAC;AACH,CAAC"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -62,11 +62,6 @@ export declare enum GeneratedAnalysisDataState {
|
|
|
62
62
|
COMPLETED = "COMPLETED",
|
|
63
63
|
FAILED = "FAILED"
|
|
64
64
|
}
|
|
65
|
-
export declare enum UploadStatus {
|
|
66
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
67
|
-
FINISHED = "FINISHED",
|
|
68
|
-
FAILED = "FAILED"
|
|
69
|
-
}
|
|
70
65
|
export declare enum ExecutionStatus {
|
|
71
66
|
IN_PROGRESS = "IN_PROGRESS",
|
|
72
67
|
FINISHED = "FINISHED",
|
|
@@ -400,7 +395,6 @@ export interface FetchAnalysisSuiteResponse {
|
|
|
400
395
|
uuid: string;
|
|
401
396
|
name?: string;
|
|
402
397
|
suiteType?: SuiteType;
|
|
403
|
-
uploadStatus?: UploadStatus;
|
|
404
398
|
executionStatus?: ExecutionStatus;
|
|
405
399
|
analysisIdentifier?: string;
|
|
406
400
|
suiteRunningStatus?: SuiteRunningStatus;
|
package/dist/types/index.js
CHANGED
|
@@ -44,12 +44,6 @@ export var GeneratedAnalysisDataState;
|
|
|
44
44
|
GeneratedAnalysisDataState["COMPLETED"] = "COMPLETED";
|
|
45
45
|
GeneratedAnalysisDataState["FAILED"] = "FAILED";
|
|
46
46
|
})(GeneratedAnalysisDataState || (GeneratedAnalysisDataState = {}));
|
|
47
|
-
export var UploadStatus;
|
|
48
|
-
(function (UploadStatus) {
|
|
49
|
-
UploadStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
|
50
|
-
UploadStatus["FINISHED"] = "FINISHED";
|
|
51
|
-
UploadStatus["FAILED"] = "FAILED";
|
|
52
|
-
})(UploadStatus || (UploadStatus = {}));
|
|
53
47
|
export var ExecutionStatus;
|
|
54
48
|
(function (ExecutionStatus) {
|
|
55
49
|
ExecutionStatus["IN_PROGRESS"] = "IN_PROGRESS";
|
package/dist/types/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,qBAAqB,CAAC;IAChD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC,OAAO,CAAC,uBAAuB,CAAC;IAC1E,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,0BAA0B,CAAC;CAC3D,CAAC,CAAC;AAmBH;;GAEG;AACH,MAAM,CAAN,IAAY,iBAIX;AAJD,WAAY,iBAAiB;IAC3B,8CAAyB,CAAA;IACzB,gDAA2B,CAAA;IAC3B,sCAAiB,CAAA;AACnB,CAAC,EAJW,iBAAiB,KAAjB,iBAAiB,QAI5B;AAED,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,0BAAa,CAAA;IACb,kCAAqB,CAAA;AACvB,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB;AAED,MAAM,CAAN,IAAY,SAOX;AAPD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;IACb,4BAAe,CAAA;IACf,kCAAqB,CAAA;IACrB,wCAA2B,CAAA;IAC3B,sDAAyC,CAAA;AAC3C,CAAC,EAPW,SAAS,KAAT,SAAS,QAOpB;AAED,MAAM,CAAN,IAAY,kBAKX;AALD,WAAY,kBAAkB;IAC5B,mCAAa,CAAA;IACb,2CAAqB,CAAA;IACrB,iDAA2B,CAAA;IAC3B,6DAAuC,CAAA;AACzC,CAAC,EALW,kBAAkB,KAAlB,kBAAkB,QAK7B;AAED,MAAM,CAAN,IAAY,0BAKX;AALD,WAAY,0BAA0B;IACpC,iDAAmB,CAAA;IACnB,uDAAyB,CAAA;IACzB,qDAAuB,CAAA;IACvB,+CAAiB,CAAA;AACnB,CAAC,EALW,0BAA0B,KAA1B,0BAA0B,QAKrC;AAED,MAAM,CAAN,IAAY,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"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"}
|