@intuned/runtime-dev 1.0.6-cli-auth.0.1.3-test → 1.0.6-cli.1

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.
Files changed (92) hide show
  1. package/WebTemplate.zip +0 -0
  2. package/bin/intuned-run +3 -0
  3. package/dist/commands/common/utils/unixSocket.d.ts +0 -1
  4. package/dist/commands/deploy/deploy.js +10 -23
  5. package/dist/commands/deploy/utils.d.ts +2 -11
  6. package/dist/commands/deploy/utils.js +55 -267
  7. package/dist/commands/init/init.js +4 -3
  8. package/dist/{common/cli → commands/init}/types.d.ts +0 -22
  9. package/dist/commands/init/types.js +7 -0
  10. package/dist/commands/init/utils.d.ts +3 -5
  11. package/dist/commands/init/utils.js +24 -61
  12. package/dist/commands/intuned-run/intuned-run.js +35 -0
  13. package/dist/commands/intuned-run/utils.d.ts +5 -0
  14. package/dist/commands/intuned-run/utils.js +91 -0
  15. package/dist/common/asyncLocalStorage/index.d.ts +1 -2
  16. package/dist/common/asyncLocalStorage/index.js +2 -2
  17. package/dist/common/constants.d.ts +0 -1
  18. package/dist/common/constants.js +2 -3
  19. package/dist/common/runApi/types.d.ts +2 -2
  20. package/my-intuned-project/Intuned.json +15 -0
  21. package/my-intuned-project/api/book-details.ts +46 -0
  22. package/my-intuned-project/api/books-all.ts +68 -0
  23. package/my-intuned-project/emp/Intuned.json +18 -0
  24. package/my-intuned-project/emp/____testParameters/learn/actions/download.json +8 -0
  25. package/my-intuned-project/emp/____testParameters/learn/actions/fillForm.json +1 -0
  26. package/my-intuned-project/emp/____testParameters/learn/actions/upload.json +8 -0
  27. package/my-intuned-project/emp/____testParameters/learn/data-extraction/ai-extraction.json +1 -0
  28. package/my-intuned-project/emp/____testParameters/learn/data-extraction/extract-data-from-content.json +1 -0
  29. package/my-intuned-project/emp/____testParameters/learn/data-extraction/markdown-extraction.json +8 -0
  30. package/my-intuned-project/emp/____testParameters/learn/data-extraction/optimized-array-exteractor.json +32 -0
  31. package/my-intuned-project/emp/____testParameters/learn/data-extraction/optimized-object-extractor.json +1 -0
  32. package/my-intuned-project/emp/____testParameters/learn/data-extraction/pdf.json +8 -0
  33. package/my-intuned-project/emp/____testParameters/learn/playwright/fill-and-submit-forms.json +1 -0
  34. package/my-intuned-project/emp/____testParameters/learn/playwright/iframes.json +1 -0
  35. package/my-intuned-project/emp/____testParameters/learn/playwright/inject-code.json +1 -0
  36. package/my-intuned-project/emp/____testParameters/learn/playwright/locators-and-actions.json +1 -0
  37. package/my-intuned-project/emp/____testParameters/learn/playwright/navigation.json +1 -0
  38. package/my-intuned-project/emp/____testParameters/learn/playwright/network-interception.json +1 -0
  39. package/my-intuned-project/emp/____testParameters/learn/playwright/scrape-data.json +1 -0
  40. package/my-intuned-project/emp/____testParameters/learn/playwright/wait-for-state-change.json +1 -0
  41. package/my-intuned-project/emp/api/learn/actions/download.ts +71 -0
  42. package/my-intuned-project/emp/api/learn/actions/fillForm.ts +223 -0
  43. package/my-intuned-project/emp/api/learn/actions/upload.ts +38 -0
  44. package/my-intuned-project/emp/api/learn/data-extraction/ai-extraction.ts +72 -0
  45. package/my-intuned-project/emp/api/learn/data-extraction/extract-data-from-content.ts +76 -0
  46. package/my-intuned-project/emp/api/learn/data-extraction/markdown-extraction.ts +47 -0
  47. package/my-intuned-project/emp/api/learn/data-extraction/optimized-array-exteractor.ts +49 -0
  48. package/my-intuned-project/emp/api/learn/data-extraction/optimized-object-extractor.ts +54 -0
  49. package/my-intuned-project/emp/api/learn/data-extraction/pdf.ts +123 -0
  50. package/my-intuned-project/emp/api/learn/playwright/fill-and-submit-forms.ts +73 -0
  51. package/my-intuned-project/emp/api/learn/playwright/iframes.ts +22 -0
  52. package/my-intuned-project/emp/api/learn/playwright/inject-code.ts +40 -0
  53. package/my-intuned-project/emp/api/learn/playwright/locators-and-actions.ts +58 -0
  54. package/my-intuned-project/emp/api/learn/playwright/navigation.ts +25 -0
  55. package/my-intuned-project/emp/api/learn/playwright/network-interception.ts +43 -0
  56. package/my-intuned-project/emp/api/learn/playwright/scrape-data.ts +58 -0
  57. package/my-intuned-project/emp/api/learn/playwright/wait-for-state-change.ts +44 -0
  58. package/my-intuned-project/emp/api/sample.ts +15 -0
  59. package/my-intuned-project/emp/package.json +31 -0
  60. package/my-intuned-project/emp/utils/helpers.ts +3 -0
  61. package/my-intuned-project/emp/yarn.lock +4530 -0
  62. package/my-intuned-project/package.json +36 -0
  63. package/my-intuned-project/params/bookInput.json +3 -0
  64. package/my-intuned-project/yarn.lock +4539 -0
  65. package/package.json +10 -14
  66. package/bin/check-auth-session +0 -3
  67. package/bin/cli-build +0 -3
  68. package/bin/create-auth-session +0 -3
  69. package/bin/run-api +0 -3
  70. package/dist/commands/cli-auth-sessions/check.js +0 -40
  71. package/dist/commands/cli-auth-sessions/create.d.ts +0 -2
  72. package/dist/commands/cli-auth-sessions/create.js +0 -53
  73. package/dist/commands/cli-auth-sessions/utils.d.ts +0 -28
  74. package/dist/commands/cli-auth-sessions/utils.js +0 -285
  75. package/dist/commands/cli-build/cli-build.d.ts +0 -2
  76. package/dist/commands/cli-build/cli-build.js +0 -20
  77. package/dist/commands/common/projectExclusions.d.ts +0 -2
  78. package/dist/commands/common/projectExclusions.js +0 -8
  79. package/dist/commands/run-api-cli/run-api.d.ts +0 -2
  80. package/dist/commands/run-api-cli/run-api.js +0 -57
  81. package/dist/commands/run-api-cli/utils.d.ts +0 -9
  82. package/dist/commands/run-api-cli/utils.js +0 -144
  83. package/dist/common/cli/cliReadme.d.ts +0 -1
  84. package/dist/common/cli/cliReadme.js +0 -92
  85. package/dist/common/cli/constants.d.ts +0 -33
  86. package/dist/common/cli/constants.js +0 -39
  87. package/dist/common/cli/types.js +0 -13
  88. package/dist/common/cli/utils.d.ts +0 -6
  89. package/dist/common/cli/utils.js +0 -35
  90. /package/bin/{deploy → intuned-deploy} +0 -0
  91. /package/bin/{init → intuned-init} +0 -0
  92. /package/dist/commands/{cli-auth-sessions/check.d.ts → intuned-run/intuned-run.d.ts} +0 -0
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "Nested-Scheduling",
3
+ "version": "1.0.0",
4
+ "description": "project uses nested scheduling feature",
5
+ "tags": [
6
+ "Scrapper"
7
+ ],
8
+ "main": "index.js",
9
+ "scripts": {
10
+ "dev:local": "intuned-api-run sample playwright -j '{}'",
11
+ "dev": "intuned-api-run",
12
+ "debug": "node --inspect-brk ./node_modules/.bin/intuned-api-run",
13
+ "build": "intuned-build",
14
+ "types-check": "intuned-ts-check",
15
+ "pre-publish": "intuned-ts-check && intuned-build",
16
+ "start": "node ./output/bundle_v2.js",
17
+ "browser-save-state": "intuned-browser-save-state",
18
+ "auth-session-check": "intuned-auth-session-check",
19
+ "auth-session-create": "intuned-auth-session-create",
20
+ "auth-session-refresh": "intuned-auth-session-refresh",
21
+ "auth-session-load": "intuned-auth-session-load"
22
+ },
23
+ "author": "",
24
+ "license": "ISC",
25
+ "dependencies": {
26
+ "@intuned/runtime": "1.0.5",
27
+ "@intuned/sdk": "2.0.2",
28
+ "@types/intuned__sdk": "npm:@intuned/sdk-types@2.0.2",
29
+ "@types/node": "^20.10.3",
30
+ "axios": "^1.9.0",
31
+ "lodash": "^4.17.21",
32
+ "playwright": "1.44.1",
33
+ "playwright-core": "1.44.1",
34
+ "ts-node": "^10.9.2"
35
+ }
36
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "bookFullUrl": "https://books.toscrape.com/catalogue/mesaerion-the-best-science-fiction-stories-1800-1849_983/index.html"
3
+ }