@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.
- package/WebTemplate.zip +0 -0
- package/bin/intuned-run +3 -0
- package/dist/commands/common/utils/unixSocket.d.ts +0 -1
- package/dist/commands/deploy/deploy.js +10 -23
- package/dist/commands/deploy/utils.d.ts +2 -11
- package/dist/commands/deploy/utils.js +55 -267
- package/dist/commands/init/init.js +4 -3
- package/dist/{common/cli → commands/init}/types.d.ts +0 -22
- package/dist/commands/init/types.js +7 -0
- package/dist/commands/init/utils.d.ts +3 -5
- package/dist/commands/init/utils.js +24 -61
- package/dist/commands/intuned-run/intuned-run.js +35 -0
- package/dist/commands/intuned-run/utils.d.ts +5 -0
- package/dist/commands/intuned-run/utils.js +91 -0
- package/dist/common/asyncLocalStorage/index.d.ts +1 -2
- package/dist/common/asyncLocalStorage/index.js +2 -2
- package/dist/common/constants.d.ts +0 -1
- package/dist/common/constants.js +2 -3
- package/dist/common/runApi/types.d.ts +2 -2
- package/my-intuned-project/Intuned.json +15 -0
- package/my-intuned-project/api/book-details.ts +46 -0
- package/my-intuned-project/api/books-all.ts +68 -0
- package/my-intuned-project/emp/Intuned.json +18 -0
- package/my-intuned-project/emp/____testParameters/learn/actions/download.json +8 -0
- package/my-intuned-project/emp/____testParameters/learn/actions/fillForm.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/actions/upload.json +8 -0
- package/my-intuned-project/emp/____testParameters/learn/data-extraction/ai-extraction.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/data-extraction/extract-data-from-content.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/data-extraction/markdown-extraction.json +8 -0
- package/my-intuned-project/emp/____testParameters/learn/data-extraction/optimized-array-exteractor.json +32 -0
- package/my-intuned-project/emp/____testParameters/learn/data-extraction/optimized-object-extractor.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/data-extraction/pdf.json +8 -0
- package/my-intuned-project/emp/____testParameters/learn/playwright/fill-and-submit-forms.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/playwright/iframes.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/playwright/inject-code.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/playwright/locators-and-actions.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/playwright/navigation.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/playwright/network-interception.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/playwright/scrape-data.json +1 -0
- package/my-intuned-project/emp/____testParameters/learn/playwright/wait-for-state-change.json +1 -0
- package/my-intuned-project/emp/api/learn/actions/download.ts +71 -0
- package/my-intuned-project/emp/api/learn/actions/fillForm.ts +223 -0
- package/my-intuned-project/emp/api/learn/actions/upload.ts +38 -0
- package/my-intuned-project/emp/api/learn/data-extraction/ai-extraction.ts +72 -0
- package/my-intuned-project/emp/api/learn/data-extraction/extract-data-from-content.ts +76 -0
- package/my-intuned-project/emp/api/learn/data-extraction/markdown-extraction.ts +47 -0
- package/my-intuned-project/emp/api/learn/data-extraction/optimized-array-exteractor.ts +49 -0
- package/my-intuned-project/emp/api/learn/data-extraction/optimized-object-extractor.ts +54 -0
- package/my-intuned-project/emp/api/learn/data-extraction/pdf.ts +123 -0
- package/my-intuned-project/emp/api/learn/playwright/fill-and-submit-forms.ts +73 -0
- package/my-intuned-project/emp/api/learn/playwright/iframes.ts +22 -0
- package/my-intuned-project/emp/api/learn/playwright/inject-code.ts +40 -0
- package/my-intuned-project/emp/api/learn/playwright/locators-and-actions.ts +58 -0
- package/my-intuned-project/emp/api/learn/playwright/navigation.ts +25 -0
- package/my-intuned-project/emp/api/learn/playwright/network-interception.ts +43 -0
- package/my-intuned-project/emp/api/learn/playwright/scrape-data.ts +58 -0
- package/my-intuned-project/emp/api/learn/playwright/wait-for-state-change.ts +44 -0
- package/my-intuned-project/emp/api/sample.ts +15 -0
- package/my-intuned-project/emp/package.json +31 -0
- package/my-intuned-project/emp/utils/helpers.ts +3 -0
- package/my-intuned-project/emp/yarn.lock +4530 -0
- package/my-intuned-project/package.json +36 -0
- package/my-intuned-project/params/bookInput.json +3 -0
- package/my-intuned-project/yarn.lock +4539 -0
- package/package.json +10 -14
- package/bin/check-auth-session +0 -3
- package/bin/cli-build +0 -3
- package/bin/create-auth-session +0 -3
- package/bin/run-api +0 -3
- package/dist/commands/cli-auth-sessions/check.js +0 -40
- package/dist/commands/cli-auth-sessions/create.d.ts +0 -2
- package/dist/commands/cli-auth-sessions/create.js +0 -53
- package/dist/commands/cli-auth-sessions/utils.d.ts +0 -28
- package/dist/commands/cli-auth-sessions/utils.js +0 -285
- package/dist/commands/cli-build/cli-build.d.ts +0 -2
- package/dist/commands/cli-build/cli-build.js +0 -20
- package/dist/commands/common/projectExclusions.d.ts +0 -2
- package/dist/commands/common/projectExclusions.js +0 -8
- package/dist/commands/run-api-cli/run-api.d.ts +0 -2
- package/dist/commands/run-api-cli/run-api.js +0 -57
- package/dist/commands/run-api-cli/utils.d.ts +0 -9
- package/dist/commands/run-api-cli/utils.js +0 -144
- package/dist/common/cli/cliReadme.d.ts +0 -1
- package/dist/common/cli/cliReadme.js +0 -92
- package/dist/common/cli/constants.d.ts +0 -33
- package/dist/common/cli/constants.js +0 -39
- package/dist/common/cli/types.js +0 -13
- package/dist/common/cli/utils.d.ts +0 -6
- package/dist/common/cli/utils.js +0 -35
- /package/bin/{deploy → intuned-deploy} +0 -0
- /package/bin/{init → intuned-init} +0 -0
- /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
|
+
}
|