@intuned/runtime-dev 1.3.18-interface.13 → 1.3.18-interface.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.
Files changed (60) hide show
  1. package/.babelrc +27 -0
  2. package/.claude/settings.local.json +7 -0
  3. package/.eslintignore +10 -0
  4. package/.eslintrc.js +39 -0
  5. package/InterfaceTemplate/__utils.ts +3 -1
  6. package/WebTemplate.zip +0 -0
  7. package/package.json +19 -73
  8. package/template.tsconfig.json +11 -0
  9. package/tsconfig.eslint.json +5 -0
  10. package/tsconfig.json +25 -0
  11. package/tsup.config.ts +11 -0
  12. package/typedoc.json +49 -0
  13. package/dist/commands/api/run.d.ts +0 -8
  14. package/dist/commands/api/run.js +0 -2094
  15. package/dist/commands/auth-sessions/load.d.ts +0 -1
  16. package/dist/commands/auth-sessions/load.js +0 -1559
  17. package/dist/commands/auth-sessions/run-check.d.ts +0 -1
  18. package/dist/commands/auth-sessions/run-check.js +0 -1964
  19. package/dist/commands/auth-sessions/run-create.d.ts +0 -1
  20. package/dist/commands/auth-sessions/run-create.js +0 -1968
  21. package/dist/commands/browser/save-state.d.ts +0 -1
  22. package/dist/commands/browser/save-state.js +0 -108
  23. package/dist/commands/browser/start-browser.d.ts +0 -1
  24. package/dist/commands/browser/start-browser.js +0 -67
  25. package/dist/commands/build.d.ts +0 -2
  26. package/dist/commands/build.js +0 -203
  27. package/dist/commands/common/tsNodeImport.d.ts +0 -5
  28. package/dist/commands/common/tsNodeImport.js +0 -82
  29. package/dist/commands/get-headless-user-agent.d.ts +0 -2
  30. package/dist/commands/get-headless-user-agent.js +0 -354
  31. package/dist/commands/interface/run.d.ts +0 -3
  32. package/dist/commands/interface/run.js +0 -2084
  33. package/dist/commands/intuned-cli/main.d.ts +0 -2
  34. package/dist/commands/intuned-cli/main.js +0 -5403
  35. package/dist/commands/ts-check.d.ts +0 -1
  36. package/dist/commands/ts-check.js +0 -158
  37. package/dist/common/assets/browser_scripts.js +0 -2580
  38. package/dist/common/asyncLocalStorage/index.d.ts +0 -17
  39. package/dist/common/asyncLocalStorage/index.js +0 -41
  40. package/dist/common/binStartupScript.d.ts +0 -2
  41. package/dist/common/binStartupScript.js +0 -152
  42. package/dist/common/cleanEnvironmentVariables.d.ts +0 -3
  43. package/dist/common/cleanEnvironmentVariables.js +0 -38
  44. package/dist/common/constants.d.ts +0 -13
  45. package/dist/common/constants.js +0 -59
  46. package/dist/common/contextStorageStateHelpers.d.ts +0 -24
  47. package/dist/common/contextStorageStateHelpers.js +0 -108
  48. package/dist/common/jwtTokenManager.d.ts +0 -19
  49. package/dist/common/jwtTokenManager.js +0 -180
  50. package/dist/common/runApi/index.d.ts +0 -11
  51. package/dist/common/runApi/index.js +0 -1873
  52. package/dist/common/settingsSchema.d.ts +0 -540
  53. package/dist/common/settingsSchema.js +0 -92
  54. package/dist/common/telemetry.d.ts +0 -6
  55. package/dist/common/telemetry.js +0 -63
  56. package/dist/export.d-BAUMB-lG.d.ts +0 -140
  57. package/dist/index.d.ts +0 -6
  58. package/dist/index.js +0 -808
  59. package/dist/runtime/index.d.ts +0 -168
  60. package/dist/runtime/index.js +0 -801
@@ -1,140 +0,0 @@
1
- declare enum RunEnvironment {
2
- IDE = "IDE",
3
- DEPLOYED = "DEPLOYED",
4
- }
5
-
6
- /**
7
- * @interface Payload
8
- * @property {string} api - The API path you want to extend.
9
- * @property {Record<string, any>} parameters - A record of key-value pairs representing the parameters to be sent to the API
10
- *
11
- * @example
12
- *
13
- * ```typescript payload
14
- * import { Payload } from "@intuned/sdk/runtime"
15
- *
16
- * const payload: Payload = {
17
- * api: 'exampleApi',
18
- * parameters: {
19
- * key1: 'value1',
20
- * key2: 'value2'
21
- * }
22
- * };
23
- * ```
24
- */
25
- interface Payload {
26
- api: string;
27
- parameters: Record<string, any>;
28
- }
29
-
30
- /**
31
- * Represents information about the current run.
32
- *
33
- * @interface RunInfo
34
- * @property {RunEnvironment} runEnvironment - the run environment `IDE` or `DEPLOYED`
35
- * @property {string} [runId] - Optional. The ID of the current run, in IDE environment, run id will be undefined
36
- */
37
- interface RunInfo {
38
- runEnvironment: RunEnvironment;
39
- runId?: string;
40
- jobId?: string;
41
- jobRunId?: string;
42
- queueId?: string;
43
- proxy?: string;
44
- authSessionId?: string;
45
- }
46
-
47
- /**
48
- * @interface RunErrorOptions
49
- * @property {boolean} [retryable] - Optional. Indicates whether the error is retryable.
50
- * @property {number} [status_code] - Optional. The HTTP status code associated with the error.
51
- * @property {string} [error_code] - Optional. A specific error code to identify the type of error.
52
- *
53
- * @example
54
- * ```typescript RunErrorOptions
55
- * import { RunErrorOptions } from "@intuned/sdk/runtime"
56
- *
57
- * const options: RunErrorOptions = {
58
- * retryable: true,
59
- * status_code: 500,
60
- * error_code: 'SERVER_ERROR'
61
- * };
62
- * ```
63
- */
64
- interface RunErrorOptions {
65
- retryable?: boolean;
66
- status_code?: number;
67
- error_code?: string;
68
- }
69
-
70
- /**
71
- * @interface AttemptStore
72
- * @property {function} get - Retrieves a value from the store by key
73
- * @property {function} set - Sets a value in the store by key
74
- *
75
- * @example
76
- * ```typescript AttemptStore usage
77
- * import { attemptStore } from "@intuned/sdk/runtime"
78
- *
79
- * // Set a value in the store
80
- * attemptStore.set('openAiClient', openaiClient);
81
- *
82
- * // Get a value from the store
83
- * const openAiClient = attemptStore.get('openAiClient');
84
- * ```
85
- */
86
- interface AttemptStore {
87
- /**
88
- * Retrieves a value from the store by key.
89
- *
90
- * @param {string} key - The key to retrieve the value for
91
- * @returns {any} The value associated with the key, or undefined if not found
92
- */
93
- get(key: string): any;
94
-
95
- /**
96
- * Sets a value in the store by key.
97
- *
98
- * @param {string} key - The key to set the value for
99
- * @param {any} value - The value to store
100
- * @throws {Error} Throws an error if the store operation fails
101
- */
102
- set(key: string, value: any): void;
103
- }
104
-
105
- /**
106
- * @interface PersistentStore
107
- * @property {function} get - Retrieves a value from the store by key
108
- * @property {function} set - Sets a value in the store by key
109
- *
110
- * @example
111
- * ```typescript PersistentStore usage
112
- * import { persistentStore } from "@intuned/sdk/runtime"
113
- *
114
- * // Set a value in the store
115
- * persistentStore.set('data', { foo: 'bar' });
116
- *
117
- * // Get a value from the store
118
- * await persistentStore.get('data');
119
- * ```
120
- */
121
- interface PersistentStore {
122
- /**
123
- * Retrieves a value from the store by key.
124
- *
125
- * @param {string} key - The key to retrieve the value for
126
- * @returns {any} The value associated with the key, or undefined if not found
127
- */
128
- get(key: string): Promise<any>;
129
-
130
- /**
131
- * Sets a value in the store by key.
132
- *
133
- * @param {string} key - The key to set the value for
134
- * @param {any} value - The value to store
135
- * @throws {Error} Throws an error if the store operation fails
136
- */
137
- set(key: string, value: any): Promise<void>;
138
- }
139
-
140
- export type { AttemptStore as A, Payload as P, RunInfo as R, PersistentStore as a, RunErrorOptions as b };
package/dist/index.d.ts DELETED
@@ -1,6 +0,0 @@
1
- export { RunError, attemptStore, extendPayload, extendTimeout, getAiGatewayConfig, getAuthSessionParameters, getDownloadDirectoryPath, onCaptchaEvent, onceCaptchaEvent, pauseCaptchaSolver, persistentStore, removeCaptchaEventListener, resumeCaptchaSolver, runInfo, waitForCaptchaSolve, withWaitForCaptchaSolve } from './runtime/index.js';
2
- export { getExecutionContext, runWithContext } from './common/asyncLocalStorage/index.js';
3
- import './export.d-BAUMB-lG.js';
4
- import 'playwright';
5
- import 'zod';
6
- import 'node:async_hooks';