@uipath/codedapp-tool 1.199.0 → 1.201.0-preview.115
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-16yagjhr.js +99 -0
- package/dist/index-9f8q2ege.js +2058 -0
- package/dist/index-hsadteg4.js +634 -0
- package/dist/index-j1d11745.js +140 -0
- package/dist/index.js +15 -2148
- package/dist/js-yaml-cggj6w7q.js +3145 -0
- package/dist/multipart-parser-kme45c99.js +353 -0
- package/dist/node-strategy-gfq7k0sx.js +348 -0
- package/dist/tool-0gctz400.js +17 -0
- package/dist/tool-1t4m3bv9.js +67362 -0
- package/dist/tool-4pvh3k50.js +265 -0
- package/dist/tool-6d49s6x4.js +2557 -0
- package/dist/tool-q42rrs00.js +12 -0
- package/dist/tool-wckvcay0.js +50 -0
- package/dist/tool-y0g9grx6.js +4452 -0
- package/dist/tool.js +11 -99032
- package/package.json +2 -2
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AUTH_FLOW_ENV_VAR,
|
|
3
|
+
AuthProfileValidationError,
|
|
4
|
+
ClientCredentialsAuthenticationError,
|
|
5
|
+
CredentialSource,
|
|
6
|
+
DEFAULT_AUTH_FILENAME,
|
|
7
|
+
DEFAULT_AUTH_PROFILE,
|
|
8
|
+
DEFAULT_ENV_FILENAME,
|
|
9
|
+
ENFORCE_ROBOT_AUTH_VAR,
|
|
10
|
+
ENV_AUTH_ENABLE_VAR,
|
|
11
|
+
ENV_AUTH_VARS,
|
|
12
|
+
EnvAuthConfigError,
|
|
13
|
+
FederatedCredentialsAuthenticationError,
|
|
14
|
+
INVALID_TENANT_CODE,
|
|
15
|
+
InvalidBaseUrlError,
|
|
16
|
+
InvalidTenantError,
|
|
17
|
+
JWT_BEARER_ASSERTION_TYPE,
|
|
18
|
+
TENANT_SELECTION_REQUIRED_CODE,
|
|
19
|
+
TenantSelectionError,
|
|
20
|
+
TenantSelectionRequiredError,
|
|
21
|
+
TokenRefreshOAuthError,
|
|
22
|
+
authenticate,
|
|
23
|
+
clearActiveAuthProfile,
|
|
24
|
+
clearRefreshBreaker,
|
|
25
|
+
clientCredentialsLogin,
|
|
26
|
+
federatedCredentialsLogin,
|
|
27
|
+
fetchTenantsAndOrganizations,
|
|
28
|
+
getActiveAuthProfile,
|
|
29
|
+
getActiveAuthProfileFilePath,
|
|
30
|
+
getAuthContext,
|
|
31
|
+
getAuthEnv,
|
|
32
|
+
getLoginStatusAsync,
|
|
33
|
+
getLoginStatusWithDeps,
|
|
34
|
+
interactiveLogin,
|
|
35
|
+
interactiveLoginWithDeps,
|
|
36
|
+
isEnvAuthEnabled,
|
|
37
|
+
isRobotAuthEnforced,
|
|
38
|
+
isTenantSelectionError,
|
|
39
|
+
isTokenRefreshOAuthFailure,
|
|
40
|
+
loadEnvFileAsync,
|
|
41
|
+
loadRefreshBreaker,
|
|
42
|
+
logout,
|
|
43
|
+
logoutWithDeps,
|
|
44
|
+
normalizeAuthProfileName,
|
|
45
|
+
parseAuthFlow,
|
|
46
|
+
parseJWT,
|
|
47
|
+
readAuthFromEnv,
|
|
48
|
+
refreshAccessToken,
|
|
49
|
+
refreshTokenFingerprint,
|
|
50
|
+
registerRobotClientLoader,
|
|
51
|
+
resolveAuthProfileFilePath,
|
|
52
|
+
resolveEnvFileLocationAsync,
|
|
53
|
+
resolveEnvFilePathAsync,
|
|
54
|
+
resolveSessionIdentity,
|
|
55
|
+
runWithAuthProfile,
|
|
56
|
+
saveEnvFileAsync,
|
|
57
|
+
saveRefreshBreaker,
|
|
58
|
+
selectTenantWithDeps,
|
|
59
|
+
setActiveAuthProfile,
|
|
60
|
+
setAuthFileConfig
|
|
61
|
+
} from "./tool-6d49s6x4.js";
|
|
62
|
+
import {
|
|
63
|
+
isBrowser,
|
|
64
|
+
isNode
|
|
65
|
+
} from "./tool-0gctz400.js";
|
|
66
|
+
import"./tool-4pvh3k50.js";
|
|
67
|
+
import {
|
|
68
|
+
AUTH_CANCELLED_ERROR_CODE,
|
|
69
|
+
AUTH_TIMEOUT_ERROR_CODE,
|
|
70
|
+
DEFAULT_AUTH_TIMEOUT_MS
|
|
71
|
+
} from "./tool-q42rrs00.js";
|
|
72
|
+
import"./tool-wckvcay0.js";
|
|
73
|
+
export {
|
|
74
|
+
setAuthFileConfig,
|
|
75
|
+
setActiveAuthProfile,
|
|
76
|
+
selectTenantWithDeps,
|
|
77
|
+
saveRefreshBreaker,
|
|
78
|
+
saveEnvFileAsync,
|
|
79
|
+
runWithAuthProfile,
|
|
80
|
+
resolveSessionIdentity,
|
|
81
|
+
resolveEnvFilePathAsync,
|
|
82
|
+
resolveEnvFileLocationAsync,
|
|
83
|
+
resolveAuthProfileFilePath,
|
|
84
|
+
registerRobotClientLoader,
|
|
85
|
+
refreshTokenFingerprint,
|
|
86
|
+
refreshAccessToken,
|
|
87
|
+
readAuthFromEnv,
|
|
88
|
+
parseJWT,
|
|
89
|
+
parseAuthFlow,
|
|
90
|
+
normalizeAuthProfileName,
|
|
91
|
+
logoutWithDeps,
|
|
92
|
+
logout,
|
|
93
|
+
loadRefreshBreaker,
|
|
94
|
+
loadEnvFileAsync,
|
|
95
|
+
isTokenRefreshOAuthFailure,
|
|
96
|
+
isTenantSelectionError,
|
|
97
|
+
isRobotAuthEnforced,
|
|
98
|
+
isNode,
|
|
99
|
+
isEnvAuthEnabled,
|
|
100
|
+
isBrowser,
|
|
101
|
+
interactiveLoginWithDeps,
|
|
102
|
+
interactiveLogin,
|
|
103
|
+
getLoginStatusWithDeps,
|
|
104
|
+
getLoginStatusAsync,
|
|
105
|
+
getAuthEnv,
|
|
106
|
+
getAuthContext,
|
|
107
|
+
getActiveAuthProfileFilePath,
|
|
108
|
+
getActiveAuthProfile,
|
|
109
|
+
fetchTenantsAndOrganizations,
|
|
110
|
+
federatedCredentialsLogin,
|
|
111
|
+
clientCredentialsLogin,
|
|
112
|
+
clearRefreshBreaker,
|
|
113
|
+
clearActiveAuthProfile,
|
|
114
|
+
authenticate,
|
|
115
|
+
TokenRefreshOAuthError,
|
|
116
|
+
TenantSelectionRequiredError,
|
|
117
|
+
TenantSelectionError,
|
|
118
|
+
TENANT_SELECTION_REQUIRED_CODE,
|
|
119
|
+
JWT_BEARER_ASSERTION_TYPE,
|
|
120
|
+
InvalidTenantError,
|
|
121
|
+
InvalidBaseUrlError,
|
|
122
|
+
INVALID_TENANT_CODE,
|
|
123
|
+
FederatedCredentialsAuthenticationError,
|
|
124
|
+
EnvAuthConfigError,
|
|
125
|
+
ENV_AUTH_VARS,
|
|
126
|
+
ENV_AUTH_ENABLE_VAR,
|
|
127
|
+
ENFORCE_ROBOT_AUTH_VAR,
|
|
128
|
+
DEFAULT_ENV_FILENAME,
|
|
129
|
+
DEFAULT_AUTH_TIMEOUT_MS,
|
|
130
|
+
DEFAULT_AUTH_PROFILE,
|
|
131
|
+
DEFAULT_AUTH_FILENAME,
|
|
132
|
+
CredentialSource,
|
|
133
|
+
ClientCredentialsAuthenticationError,
|
|
134
|
+
AuthProfileValidationError,
|
|
135
|
+
AUTH_TIMEOUT_ERROR_CODE,
|
|
136
|
+
AUTH_FLOW_ENV_VAR,
|
|
137
|
+
AUTH_CANCELLED_ERROR_CODE
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
//# debugId=675FC4C428D4186D64756E2164756E21
|