@uipath/codedapp-tool 1.200.0-preview.120 → 1.201.0-preview.121
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/dist/{browser-strategy-v4n9zxyf.js → browser-strategy-16yagjhr.js} +1 -1
- package/dist/index-4tmzxx6y.js +18292 -0
- package/dist/index-9f8q2ege.js +2058 -0
- package/dist/index-hsadteg4.js +634 -0
- package/dist/{index-z6sptz1r.js → index-y19pndcy.js} +11 -8
- package/dist/index.js +8 -6
- package/dist/js-yaml-cggj6w7q.js +3145 -0
- package/dist/node-strategy-gfq7k0sx.js +348 -0
- package/dist/tool-25qmnad0.js +6690 -0
- package/dist/tool-4pvh3k50.js +265 -0
- package/dist/{tool-v6xshdxt.js → tool-hcf6wh0m.js} +54204 -65512
- package/dist/{tool-1snc64g4.js → tool-q42rrs00.js} +3 -2
- package/dist/{tool-k7c9wf29.js → tool-yadq0xpc.js} +109 -23
- package/dist/tool.js +6 -5
- package/package.json +2 -2
- package/dist/node-strategy-0s9nhcmn.js +0 -63
- package/dist/tool-7ktmqc73.js +0 -1161
|
@@ -2,6 +2,7 @@ import {
|
|
|
2
2
|
AUTH_FLOW_ENV_VAR,
|
|
3
3
|
AuthProfileValidationError,
|
|
4
4
|
ClientCredentialsAuthenticationError,
|
|
5
|
+
CredentialSource,
|
|
5
6
|
DEFAULT_AUTH_FILENAME,
|
|
6
7
|
DEFAULT_AUTH_PROFILE,
|
|
7
8
|
DEFAULT_ENV_FILENAME,
|
|
@@ -14,7 +15,6 @@ import {
|
|
|
14
15
|
InvalidBaseUrlError,
|
|
15
16
|
InvalidTenantError,
|
|
16
17
|
JWT_BEARER_ASSERTION_TYPE,
|
|
17
|
-
LoginStatusSource,
|
|
18
18
|
TENANT_SELECTION_REQUIRED_CODE,
|
|
19
19
|
TenantSelectionError,
|
|
20
20
|
TenantSelectionRequiredError,
|
|
@@ -42,6 +42,7 @@ import {
|
|
|
42
42
|
logout,
|
|
43
43
|
logoutWithDeps,
|
|
44
44
|
normalizeAuthProfileName,
|
|
45
|
+
parseAuthFlow,
|
|
45
46
|
parseJWT,
|
|
46
47
|
readAuthFromEnv,
|
|
47
48
|
refreshAccessToken,
|
|
@@ -50,24 +51,24 @@ import {
|
|
|
50
51
|
resolveAuthProfileFilePath,
|
|
51
52
|
resolveEnvFileLocationAsync,
|
|
52
53
|
resolveEnvFilePathAsync,
|
|
54
|
+
resolveSessionIdentity,
|
|
53
55
|
runWithAuthProfile,
|
|
54
56
|
saveEnvFileAsync,
|
|
55
57
|
saveRefreshBreaker,
|
|
56
58
|
selectTenantWithDeps,
|
|
57
59
|
setActiveAuthProfile,
|
|
58
60
|
setAuthFileConfig
|
|
59
|
-
} from "./tool-
|
|
61
|
+
} from "./tool-yadq0xpc.js";
|
|
60
62
|
import {
|
|
61
63
|
isBrowser,
|
|
62
64
|
isNode
|
|
63
65
|
} from "./tool-0gctz400.js";
|
|
64
|
-
import
|
|
65
|
-
AUTH_TIMEOUT_ERROR_CODE
|
|
66
|
-
} from "./tool-7ktmqc73.js";
|
|
66
|
+
import"./tool-4pvh3k50.js";
|
|
67
67
|
import {
|
|
68
68
|
AUTH_CANCELLED_ERROR_CODE,
|
|
69
|
+
AUTH_TIMEOUT_ERROR_CODE,
|
|
69
70
|
DEFAULT_AUTH_TIMEOUT_MS
|
|
70
|
-
} from "./tool-
|
|
71
|
+
} from "./tool-q42rrs00.js";
|
|
71
72
|
import"./tool-wckvcay0.js";
|
|
72
73
|
export {
|
|
73
74
|
setAuthFileConfig,
|
|
@@ -76,6 +77,7 @@ export {
|
|
|
76
77
|
saveRefreshBreaker,
|
|
77
78
|
saveEnvFileAsync,
|
|
78
79
|
runWithAuthProfile,
|
|
80
|
+
resolveSessionIdentity,
|
|
79
81
|
resolveEnvFilePathAsync,
|
|
80
82
|
resolveEnvFileLocationAsync,
|
|
81
83
|
resolveAuthProfileFilePath,
|
|
@@ -84,6 +86,7 @@ export {
|
|
|
84
86
|
refreshAccessToken,
|
|
85
87
|
readAuthFromEnv,
|
|
86
88
|
parseJWT,
|
|
89
|
+
parseAuthFlow,
|
|
87
90
|
normalizeAuthProfileName,
|
|
88
91
|
logoutWithDeps,
|
|
89
92
|
logout,
|
|
@@ -113,7 +116,6 @@ export {
|
|
|
113
116
|
TenantSelectionRequiredError,
|
|
114
117
|
TenantSelectionError,
|
|
115
118
|
TENANT_SELECTION_REQUIRED_CODE,
|
|
116
|
-
LoginStatusSource,
|
|
117
119
|
JWT_BEARER_ASSERTION_TYPE,
|
|
118
120
|
InvalidTenantError,
|
|
119
121
|
InvalidBaseUrlError,
|
|
@@ -127,6 +129,7 @@ export {
|
|
|
127
129
|
DEFAULT_AUTH_TIMEOUT_MS,
|
|
128
130
|
DEFAULT_AUTH_PROFILE,
|
|
129
131
|
DEFAULT_AUTH_FILENAME,
|
|
132
|
+
CredentialSource,
|
|
130
133
|
ClientCredentialsAuthenticationError,
|
|
131
134
|
AuthProfileValidationError,
|
|
132
135
|
AUTH_TIMEOUT_ERROR_CODE,
|
|
@@ -134,4 +137,4 @@ export {
|
|
|
134
137
|
AUTH_CANCELLED_ERROR_CODE
|
|
135
138
|
};
|
|
136
139
|
|
|
137
|
-
//# debugId=
|
|
140
|
+
//# debugId=675FC4C428D4186D64756E2164756E21
|
package/dist/index.js
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
#!/usr/bin/env bun
|
|
2
2
|
import {
|
|
3
|
-
Command,
|
|
4
3
|
metadata,
|
|
5
4
|
registerCommands
|
|
6
|
-
} from "./tool-
|
|
5
|
+
} from "./tool-hcf6wh0m.js";
|
|
6
|
+
import {
|
|
7
|
+
Command
|
|
8
|
+
} from "./tool-25qmnad0.js";
|
|
9
|
+
import"./tool-yadq0xpc.js";
|
|
7
10
|
import"./tool-y0g9grx6.js";
|
|
8
|
-
import"./tool-k7c9wf29.js";
|
|
9
11
|
import"./tool-0gctz400.js";
|
|
10
|
-
import"./tool-
|
|
11
|
-
import"./tool-
|
|
12
|
+
import"./tool-4pvh3k50.js";
|
|
13
|
+
import"./tool-q42rrs00.js";
|
|
12
14
|
import"./tool-wckvcay0.js";
|
|
13
15
|
|
|
14
16
|
// src/index.ts
|
|
@@ -17,4 +19,4 @@ program.name(metadata.name).version(metadata.version).description(metadata.descr
|
|
|
17
19
|
await registerCommands(program);
|
|
18
20
|
program.parse(process.argv);
|
|
19
21
|
|
|
20
|
-
//# debugId=
|
|
22
|
+
//# debugId=6BBBA8CE07F5143164756E2164756E21
|