@intuned/runtime 1.3.16 → 1.3.17
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/InterfaceTemplate/index.playwright.ts +1 -1
- package/WebTemplate.zip +0 -0
- package/dist/commands/api/run.js +4 -8
- package/dist/commands/auth-sessions/load.js +2 -2
- package/dist/commands/auth-sessions/run-check.js +5 -5
- package/dist/commands/auth-sessions/run-create.js +3 -3
- package/dist/commands/build.js +1 -1
- package/dist/commands/common/projectExclusions.js +1 -1
- package/dist/commands/common/tsNodeImport.js +9 -0
- package/dist/commands/interface/run.js +1 -1
- package/dist/commands/intuned-cli/commands/attempt_api.command.js +1 -1
- package/dist/commands/intuned-cli/commands/attempt_authsession.command.js +1 -1
- package/dist/commands/intuned-cli/commands/attempt_authsession_check.command.js +2 -2
- package/dist/commands/intuned-cli/commands/attempt_authsession_create.command.js +1 -1
- package/dist/commands/intuned-cli/commands/authsession.command.js +1 -1
- package/dist/commands/intuned-cli/commands/authsession_record.command.js +1 -1
- package/dist/commands/intuned-cli/commands/authsession_scaffold.command.d.ts +1 -0
- package/dist/commands/intuned-cli/commands/authsession_scaffold.command.js +16 -0
- package/dist/commands/intuned-cli/commands/deploy.command.js +13 -9
- package/dist/commands/intuned-cli/commands/index.d.ts +2 -2
- package/dist/commands/intuned-cli/commands/index.js +15 -15
- package/dist/commands/intuned-cli/commands/{save.command.d.ts → provision.command.d.ts} +1 -1
- package/dist/commands/intuned-cli/commands/provision.command.js +50 -0
- package/dist/commands/intuned-cli/commands/run_api.command.js +1 -1
- package/dist/commands/intuned-cli/commands/run_authsession.command.js +2 -2
- package/dist/commands/intuned-cli/commands/run_authsession_create.command.js +1 -1
- package/dist/commands/intuned-cli/commands/run_authsession_update.command.js +2 -2
- package/dist/commands/intuned-cli/commands/run_authsession_validate.command.js +2 -2
- package/dist/commands/intuned-cli/commands/types.js +2 -2
- package/dist/commands/intuned-cli/controller/__test__/api.test.js +6 -5
- package/dist/commands/intuned-cli/controller/__test__/authSession.test.js +12 -11
- package/dist/commands/intuned-cli/controller/api.js +4 -1
- package/dist/commands/intuned-cli/controller/authSession.js +28 -28
- package/dist/commands/intuned-cli/controller/deploy.js +52 -10
- package/dist/commands/intuned-cli/controller/index.js +1 -1
- package/dist/commands/intuned-cli/controller/{save.d.ts → provision.d.ts} +5 -1
- package/dist/commands/intuned-cli/controller/provision.js +300 -0
- package/dist/commands/intuned-cli/controller/scaffold.d.ts +1 -0
- package/dist/commands/intuned-cli/controller/scaffold.js +77 -0
- package/dist/commands/intuned-cli/helpers/__test__/browser.test.js +1 -0
- package/dist/commands/intuned-cli/helpers/__test__/tracing.test.js +1 -0
- package/dist/commands/intuned-cli/helpers/api.js +4 -7
- package/dist/commands/intuned-cli/helpers/auth.js +22 -19
- package/dist/commands/intuned-cli/helpers/backend.js +12 -4
- package/dist/commands/intuned-cli/helpers/context.js +2 -2
- package/dist/commands/intuned-cli/helpers/prompts.d.ts +3 -0
- package/dist/commands/intuned-cli/helpers/prompts.js +71 -0
- package/dist/commands/intuned-cli/helpers/wrapper.js +12 -2
- package/dist/commands/intuned-cli/main.js +21 -8
- package/dist/commands/intuned-cli/types.d.ts +42 -13
- package/dist/commands/intuned-cli/types.js +12 -2
- package/dist/common/backendFunctions/getAuthSessionParameters.js +1 -1
- package/dist/common/intunedJson.js +2 -2
- package/dist/common/jwtTokenManager.js +2 -2
- package/dist/common/launchBrowser.d.ts +2 -0
- package/dist/common/launchBrowser.js +28 -0
- package/dist/common/playwrightContext.js +7 -1
- package/dist/common/runApi/errors.js +1 -1
- package/dist/common/runApi/index.js +2 -2
- package/package.json +4 -2
- package/dist/commands/intuned-cli/commands/init.command.d.ts +0 -1
- package/dist/commands/intuned-cli/commands/init.command.js +0 -13
- package/dist/commands/intuned-cli/commands/save.command.js +0 -42
- package/dist/commands/intuned-cli/controller/save.js +0 -351
- /package/InterfaceTemplate/{utils.ts → __utils.ts} +0 -0
|
@@ -1,351 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.projectNameSchema = void 0;
|
|
7
|
-
exports.runSaveProject = runSaveProject;
|
|
8
|
-
exports.validateProjectName = exports.validateIntunedProject = void 0;
|
|
9
|
-
var fs = _interopRequireWildcard(require("fs-extra"));
|
|
10
|
-
var path = _interopRequireWildcard(require("path"));
|
|
11
|
-
var _minimatch = require("minimatch");
|
|
12
|
-
var _zod = require("zod");
|
|
13
|
-
var _projectExclusions = _interopRequireDefault(require("../../common/projectExclusions"));
|
|
14
|
-
var _constants = require("../constants");
|
|
15
|
-
var _helpers = require("../helpers");
|
|
16
|
-
var _lodash = require("lodash");
|
|
17
|
-
var _uuid = require("uuid");
|
|
18
|
-
var _terminal = require("../helpers/terminal");
|
|
19
|
-
var _build = require("./build");
|
|
20
|
-
var dotenv = _interopRequireWildcard(require("dotenv"));
|
|
21
|
-
var _constants2 = require("../../../common/constants");
|
|
22
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
23
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
24
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
25
|
-
const saveProjectApiResponseSchema = _zod.z.string().transform((val, ctx) => {
|
|
26
|
-
try {
|
|
27
|
-
return JSON.parse(val);
|
|
28
|
-
} catch (e) {
|
|
29
|
-
ctx.addIssue({
|
|
30
|
-
code: _zod.z.ZodIssueCode.custom,
|
|
31
|
-
message: "Response is not valid JSON"
|
|
32
|
-
});
|
|
33
|
-
return _zod.z.NEVER;
|
|
34
|
-
}
|
|
35
|
-
}).pipe(_zod.z.object({
|
|
36
|
-
id: _zod.z.string().uuid(),
|
|
37
|
-
enableFirstRunExperience: _zod.z.boolean().optional()
|
|
38
|
-
}));
|
|
39
|
-
async function runSaveProject(projectName, auth) {
|
|
40
|
-
const {
|
|
41
|
-
workspaceId,
|
|
42
|
-
apiKey
|
|
43
|
-
} = auth;
|
|
44
|
-
const baseUrl = (0, _helpers.getBaseUrl)();
|
|
45
|
-
const url = `${baseUrl}/api/v1/workspace/${workspaceId}/projects/${projectName}`;
|
|
46
|
-
const headers = {
|
|
47
|
-
[_constants2.API_KEY_HEADER_NAME]: apiKey,
|
|
48
|
-
"Content-Type": "application/json"
|
|
49
|
-
};
|
|
50
|
-
const projectPath = process.cwd();
|
|
51
|
-
const codeTree = await convertProjectToCodeTree(projectPath);
|
|
52
|
-
const intunedSettingsFile = await (0, _helpers.getIntunedSettingsFile)();
|
|
53
|
-
codeTree["Intuned.json"] = {
|
|
54
|
-
file: {
|
|
55
|
-
contents: JSON.stringify(intunedSettingsFile.parse(await fs.readFile(intunedSettingsFile.path, "utf-8")))
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
codeTree["tsconfig.json"] = {
|
|
59
|
-
file: {
|
|
60
|
-
contents: JSON.stringify(_constants.tsConfigCli, null, 2)
|
|
61
|
-
}
|
|
62
|
-
};
|
|
63
|
-
const saveProjectPayload = {
|
|
64
|
-
codeTree,
|
|
65
|
-
platformType: "CLI",
|
|
66
|
-
language: "typescript"
|
|
67
|
-
};
|
|
68
|
-
const response = await fetch(url, {
|
|
69
|
-
headers,
|
|
70
|
-
method: "PUT",
|
|
71
|
-
body: JSON.stringify(saveProjectPayload)
|
|
72
|
-
});
|
|
73
|
-
if (!response.ok) {
|
|
74
|
-
if (response.status === 401) {
|
|
75
|
-
throw new _helpers.CLIError(`Invalid API key. Please check your API key and try again.`);
|
|
76
|
-
}
|
|
77
|
-
throw new _helpers.CLIError(`^r^+Invalid response from server\n^:^R${response.status} ${await response.text()}^:\n^r^+Project save failed^:\n`, {
|
|
78
|
-
autoColor: false
|
|
79
|
-
});
|
|
80
|
-
}
|
|
81
|
-
(0, _terminal.terminal)("^g^+Project saved successfully!^:\n");
|
|
82
|
-
const body = await response.text();
|
|
83
|
-
const parseResult = saveProjectApiResponseSchema.safeParse(body);
|
|
84
|
-
if (!parseResult.success) {
|
|
85
|
-
(0, _terminal.terminal)(`^yWarning: Could not parse save project response:^:\n`);
|
|
86
|
-
(0, _terminal.terminal)(body + "\n");
|
|
87
|
-
return;
|
|
88
|
-
}
|
|
89
|
-
const {
|
|
90
|
-
id: projectId,
|
|
91
|
-
enableFirstRunExperience
|
|
92
|
-
} = parseResult.data;
|
|
93
|
-
const dotEnvPath = path.join(projectPath, ".env");
|
|
94
|
-
if (!(await fs.exists(dotEnvPath))) {
|
|
95
|
-
await fs.writeFile(dotEnvPath, `${_constants2.PROJECT_ID_ENV_VAR_KEY}=${projectId}
|
|
96
|
-
${_constants2.WORKSPACE_ID_ENV_VAR_KEY}=${workspaceId}
|
|
97
|
-
${_constants2.API_KEY_ENV_VAR_KEY}=${apiKey}`);
|
|
98
|
-
(0, _terminal.terminal)(`^g^+Created .env file with project credentials.^:\n`);
|
|
99
|
-
}
|
|
100
|
-
const envContent = await fs.readFile(dotEnvPath, "utf-8");
|
|
101
|
-
const dotenvContent = dotenv.parse(envContent);
|
|
102
|
-
let contentToAppend = "";
|
|
103
|
-
if (!dotenvContent[_constants2.PROJECT_ID_ENV_VAR_KEY] || dotenvContent[_constants2.PROJECT_ID_ENV_VAR_KEY] !== projectId) {
|
|
104
|
-
contentToAppend += `\n${_constants2.PROJECT_ID_ENV_VAR_KEY}=${projectId}`;
|
|
105
|
-
}
|
|
106
|
-
if (!dotenvContent[_constants2.WORKSPACE_ID_ENV_VAR_KEY]) {
|
|
107
|
-
contentToAppend += `\n${_constants2.WORKSPACE_ID_ENV_VAR_KEY}=${workspaceId}`;
|
|
108
|
-
}
|
|
109
|
-
if (!dotenvContent[_constants2.API_KEY_ENV_VAR_KEY]) {
|
|
110
|
-
contentToAppend += `\n${_constants2.API_KEY_ENV_VAR_KEY}=${apiKey}`;
|
|
111
|
-
}
|
|
112
|
-
if (contentToAppend) {
|
|
113
|
-
await fs.appendFile(dotEnvPath, contentToAppend + "\n");
|
|
114
|
-
(0, _terminal.terminal)(`^g^+Updated .env file with project credentials.^:\n`);
|
|
115
|
-
}
|
|
116
|
-
return {
|
|
117
|
-
projectId,
|
|
118
|
-
enableFirstRunExperience
|
|
119
|
-
};
|
|
120
|
-
}
|
|
121
|
-
const projectNameSchema = exports.projectNameSchema = _zod.z.string().min(1, "Project Name is required").max(200, "Name must be 200 characters or less").regex(/^[a-z0-9]+(?:[-_][a-z0-9]+)*$/, "Name can only contain lowercase letters, numbers, hyphens, and underscores in between").refine(value => !_zod.z.string().uuid().safeParse(value).success, {
|
|
122
|
-
message: "Name cannot be a UUID"
|
|
123
|
-
});
|
|
124
|
-
const validateProjectName = projectName => {
|
|
125
|
-
const validation = projectNameSchema.safeParse(projectName);
|
|
126
|
-
if (!validation.success) {
|
|
127
|
-
return {
|
|
128
|
-
isValid: false,
|
|
129
|
-
errorMessage: validation.error.errors[0].message
|
|
130
|
-
};
|
|
131
|
-
}
|
|
132
|
-
return {
|
|
133
|
-
isValid: true
|
|
134
|
-
};
|
|
135
|
-
};
|
|
136
|
-
exports.validateProjectName = validateProjectName;
|
|
137
|
-
const validateIntunedProject = async () => {
|
|
138
|
-
const currentDirectoryToSave = process.cwd();
|
|
139
|
-
const intunedSettingsFile = await (0, _helpers.getIntunedSettingsFile)();
|
|
140
|
-
const validationSteps = [{
|
|
141
|
-
name: "build",
|
|
142
|
-
check: async () => {
|
|
143
|
-
try {
|
|
144
|
-
const buildResult = await (0, _build.runBuild)();
|
|
145
|
-
if (!buildResult) {
|
|
146
|
-
return {
|
|
147
|
-
isValid: false,
|
|
148
|
-
errorMessage: "Build failed"
|
|
149
|
-
};
|
|
150
|
-
}
|
|
151
|
-
return {
|
|
152
|
-
isValid: true
|
|
153
|
-
};
|
|
154
|
-
} catch (error) {
|
|
155
|
-
return {
|
|
156
|
-
isValid: false,
|
|
157
|
-
errorMessage: "Build failed"
|
|
158
|
-
};
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}, {
|
|
162
|
-
name: intunedSettingsFile.name,
|
|
163
|
-
check: async () => {
|
|
164
|
-
try {
|
|
165
|
-
const intunedJsonPath = path.join(currentDirectoryToSave, intunedSettingsFile.name);
|
|
166
|
-
await fs.exists(intunedJsonPath);
|
|
167
|
-
return {
|
|
168
|
-
isValid: true
|
|
169
|
-
};
|
|
170
|
-
} catch (error) {
|
|
171
|
-
return {
|
|
172
|
-
isValid: false,
|
|
173
|
-
errorMessage: `${intunedSettingsFile.name} file not found`
|
|
174
|
-
};
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
}, {
|
|
178
|
-
name: "api folder",
|
|
179
|
-
check: async () => {
|
|
180
|
-
try {
|
|
181
|
-
const apiFolderPath = path.join(currentDirectoryToSave, "api");
|
|
182
|
-
await fs.access(apiFolderPath);
|
|
183
|
-
return {
|
|
184
|
-
isValid: true
|
|
185
|
-
};
|
|
186
|
-
} catch (error) {
|
|
187
|
-
return {
|
|
188
|
-
isValid: false,
|
|
189
|
-
errorMessage: "API folder not found"
|
|
190
|
-
};
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
}];
|
|
194
|
-
for (const step of validationSteps) {
|
|
195
|
-
const result = await step.check();
|
|
196
|
-
if (!result.isValid) {
|
|
197
|
-
return result;
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
return {
|
|
201
|
-
isValid: true
|
|
202
|
-
};
|
|
203
|
-
};
|
|
204
|
-
exports.validateIntunedProject = validateIntunedProject;
|
|
205
|
-
function ignoreFilesByPattern(filePath, patterns, projectPath) {
|
|
206
|
-
const relativePath = path.relative(projectPath, filePath);
|
|
207
|
-
if (relativePath.startsWith("node_modules")) {
|
|
208
|
-
return true;
|
|
209
|
-
}
|
|
210
|
-
for (const pattern of patterns) {
|
|
211
|
-
if (!pattern || pattern.startsWith("#")) continue;
|
|
212
|
-
if (pattern.startsWith("!")) {
|
|
213
|
-
if ((0, _minimatch.minimatch)(relativePath, pattern.substring(1))) {
|
|
214
|
-
return false;
|
|
215
|
-
}
|
|
216
|
-
} else if ((0, _minimatch.minimatch)(relativePath, pattern)) {
|
|
217
|
-
return true;
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
return false;
|
|
221
|
-
}
|
|
222
|
-
function listFilesNotIgnored(projectPath, ignorePatterns) {
|
|
223
|
-
const results = [];
|
|
224
|
-
function traverseDirectory(dirPath) {
|
|
225
|
-
try {
|
|
226
|
-
const entries = fs.readdirSync(dirPath);
|
|
227
|
-
for (const entry of entries) {
|
|
228
|
-
const fullPath = path.join(dirPath, entry);
|
|
229
|
-
if (ignoreFilesByPattern(fullPath, ignorePatterns, projectPath)) {
|
|
230
|
-
continue;
|
|
231
|
-
}
|
|
232
|
-
try {
|
|
233
|
-
const stats = fs.statSync(fullPath);
|
|
234
|
-
if (stats.isDirectory()) {
|
|
235
|
-
traverseDirectory(fullPath);
|
|
236
|
-
} else if (stats.isFile()) {
|
|
237
|
-
results.push(path.relative(projectPath, fullPath));
|
|
238
|
-
}
|
|
239
|
-
} catch (error) {
|
|
240
|
-
(0, _terminal.terminal)(`^yWarning: Could not access ${fullPath}^:\n`);
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
} catch (error) {
|
|
244
|
-
(0, _terminal.terminal)(`^YWarning: Could not read directory ${dirPath}^:\n`);
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
traverseDirectory(projectPath);
|
|
248
|
-
return results;
|
|
249
|
-
}
|
|
250
|
-
async function convertProjectToCodeTree(projectPath) {
|
|
251
|
-
const filesToSave = listFilesNotIgnored(projectPath, _projectExclusions.default);
|
|
252
|
-
const filesToSaveText = " " + filesToSave.join("\n ");
|
|
253
|
-
(0, _terminal.terminal)("^CFiles to be saved:^:\n");
|
|
254
|
-
(0, _terminal.terminal)(filesToSaveText + "\n");
|
|
255
|
-
function readDirectory(dirPath) {
|
|
256
|
-
const tree = {};
|
|
257
|
-
try {
|
|
258
|
-
const entries = fs.readdirSync(dirPath);
|
|
259
|
-
for (const entry of entries) {
|
|
260
|
-
const entryPath = path.join(dirPath, entry);
|
|
261
|
-
if (ignoreFilesByPattern(entryPath, _projectExclusions.default, projectPath)) {
|
|
262
|
-
continue;
|
|
263
|
-
}
|
|
264
|
-
try {
|
|
265
|
-
const stats = fs.statSync(entryPath);
|
|
266
|
-
if (stats.isFile()) {
|
|
267
|
-
try {
|
|
268
|
-
const content = fs.readFileSync(entryPath, "utf-8");
|
|
269
|
-
tree[entry] = {
|
|
270
|
-
file: {
|
|
271
|
-
contents: content
|
|
272
|
-
}
|
|
273
|
-
};
|
|
274
|
-
} catch (error) {
|
|
275
|
-
(0, _terminal.terminal)(`^yWarning: Could not read file ${entryPath}^:\n`);
|
|
276
|
-
}
|
|
277
|
-
} else if (stats.isDirectory()) {
|
|
278
|
-
const subTree = readDirectory(entryPath);
|
|
279
|
-
if (Object.keys(subTree).length > 0) {
|
|
280
|
-
tree[entry] = {
|
|
281
|
-
directory: subTree
|
|
282
|
-
};
|
|
283
|
-
}
|
|
284
|
-
}
|
|
285
|
-
} catch (error) {
|
|
286
|
-
(0, _terminal.terminal)(`^yWarning: Could not access ${entryPath}^:\n`);
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
} catch (error) {
|
|
290
|
-
(0, _terminal.terminal)(`^YWarning: Could not read directory ${dirPath}^:\n`);
|
|
291
|
-
}
|
|
292
|
-
return tree;
|
|
293
|
-
}
|
|
294
|
-
const tree = readDirectory(projectPath);
|
|
295
|
-
mapToIDEParams(tree);
|
|
296
|
-
return tree;
|
|
297
|
-
}
|
|
298
|
-
function mapToIDEParams(tree) {
|
|
299
|
-
if (!tree) {
|
|
300
|
-
return;
|
|
301
|
-
}
|
|
302
|
-
if (!tree["parameters"] || "file" in tree["parameters"]) {
|
|
303
|
-
return;
|
|
304
|
-
}
|
|
305
|
-
const apiParametersMap = {};
|
|
306
|
-
const cliParameters = Object.keys(tree["parameters"].directory);
|
|
307
|
-
const ____testParameters = {
|
|
308
|
-
directory: {}
|
|
309
|
-
};
|
|
310
|
-
for (const parameterKey of cliParameters) {
|
|
311
|
-
const parameter = tree["parameters"].directory[parameterKey];
|
|
312
|
-
if ("directory" in parameter) {
|
|
313
|
-
continue;
|
|
314
|
-
}
|
|
315
|
-
if ((0, _lodash.isEmpty)(parameter.file.contents)) {
|
|
316
|
-
continue;
|
|
317
|
-
}
|
|
318
|
-
const parameterPayload = JSON.parse(parameter.file.contents);
|
|
319
|
-
if (!parameterPayload["__api-name"]) {
|
|
320
|
-
continue;
|
|
321
|
-
}
|
|
322
|
-
const api = parameterPayload["__api-name"];
|
|
323
|
-
const {
|
|
324
|
-
"__api-name": _,
|
|
325
|
-
...parameterValue
|
|
326
|
-
} = parameterPayload;
|
|
327
|
-
const testParameter = {
|
|
328
|
-
name: parameterKey.replace(".json", ""),
|
|
329
|
-
lastUsed: false,
|
|
330
|
-
id: (0, _uuid.v4)(),
|
|
331
|
-
value: JSON.stringify(parameterValue)
|
|
332
|
-
};
|
|
333
|
-
if (!apiParametersMap[api]) {
|
|
334
|
-
apiParametersMap[api] = [];
|
|
335
|
-
}
|
|
336
|
-
apiParametersMap[api].push(testParameter);
|
|
337
|
-
}
|
|
338
|
-
for (const api in apiParametersMap) {
|
|
339
|
-
if (apiParametersMap[api].length > 0) {
|
|
340
|
-
apiParametersMap[api][apiParametersMap[api].length - 1].lastUsed = true;
|
|
341
|
-
}
|
|
342
|
-
____testParameters.directory[`${api}.json`] = {
|
|
343
|
-
file: {
|
|
344
|
-
contents: JSON.stringify(apiParametersMap[api], null, 2)
|
|
345
|
-
}
|
|
346
|
-
};
|
|
347
|
-
}
|
|
348
|
-
delete tree["parameters"];
|
|
349
|
-
tree["____testParameters"] = ____testParameters;
|
|
350
|
-
return;
|
|
351
|
-
}
|
|
File without changes
|