@intuned/runtime-dev 1.0.4-remove-playwright.13 → 1.0.4-remove-playwright.15

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.
@@ -57,11 +57,15 @@ _commander.program.description("run auth session create").option("--cdpAddress <
57
57
  });
58
58
  let nextGeneratorParam = undefined;
59
59
  while (true) {
60
- console.log("running create gggg", nextGeneratorParam);
61
60
  const {
62
61
  value,
63
62
  done
64
63
  } = await generator.next(...(nextGeneratorParam ? [nextGeneratorParam] : []));
64
+ console.log("running create gggg", JSON.stringify({
65
+ nextGeneratorParam,
66
+ value,
67
+ done
68
+ }));
65
69
  if (done) {
66
70
  if (value.isErr()) {
67
71
  if (value.error instanceof _runApi.AutomationError) {
@@ -183,6 +183,8 @@ async function* runApiGenerator({
183
183
  } else {
184
184
  result = await importedModule.func(...automationFunctionParameters);
185
185
  }
186
+ const x = await (0, _contextStorageStateHelpers.getStorageState)(context);
187
+ console.log("storage state gggg", JSON.stringify(x));
186
188
  return (0, _neverthrow.ok)({
187
189
  result,
188
190
  extendedPayloads: (_getExecutionContext = (0, _asyncLocalStorage.getExecutionContext)()) === null || _getExecutionContext === void 0 ? void 0 : _getExecutionContext.extendedPayloads,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "1.0.4-remove-playwright.13",
3
+ "version": "1.0.4-remove-playwright.15",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",