@onkernel/sdk 0.24.0 → 0.25.0
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/CHANGELOG.md +16 -0
- package/LICENSE +1 -1
- package/README.md +7 -2
- package/client.d.mts +4 -4
- package/client.d.mts.map +1 -1
- package/client.d.ts +4 -4
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/agents/agents.d.mts +2 -2
- package/resources/agents/agents.d.mts.map +1 -1
- package/resources/agents/agents.d.ts +2 -2
- package/resources/agents/agents.d.ts.map +1 -1
- package/resources/agents/agents.js.map +1 -1
- package/resources/agents/agents.mjs.map +1 -1
- package/resources/agents/auth/auth.d.mts +107 -129
- package/resources/agents/auth/auth.d.mts.map +1 -1
- package/resources/agents/auth/auth.d.ts +107 -129
- package/resources/agents/auth/auth.d.ts.map +1 -1
- package/resources/agents/auth/auth.js +2 -18
- package/resources/agents/auth/auth.js.map +1 -1
- package/resources/agents/auth/auth.mjs +2 -18
- package/resources/agents/auth/auth.mjs.map +1 -1
- package/resources/agents/auth/index.d.mts +2 -2
- package/resources/agents/auth/index.d.mts.map +1 -1
- package/resources/agents/auth/index.d.ts +2 -2
- package/resources/agents/auth/index.d.ts.map +1 -1
- package/resources/agents/auth/index.js.map +1 -1
- package/resources/agents/auth/index.mjs.map +1 -1
- package/resources/agents/auth/invocations.d.mts +22 -33
- package/resources/agents/auth/invocations.d.mts.map +1 -1
- package/resources/agents/auth/invocations.d.ts +22 -33
- package/resources/agents/auth/invocations.d.ts.map +1 -1
- package/resources/agents/auth/invocations.js +5 -20
- package/resources/agents/auth/invocations.js.map +1 -1
- package/resources/agents/auth/invocations.mjs +5 -20
- package/resources/agents/auth/invocations.mjs.map +1 -1
- package/resources/agents/index.d.mts +1 -1
- package/resources/agents/index.d.mts.map +1 -1
- package/resources/agents/index.d.ts +1 -1
- package/resources/agents/index.d.ts.map +1 -1
- package/resources/agents/index.js.map +1 -1
- package/resources/agents/index.mjs.map +1 -1
- package/resources/credentials.d.mts +107 -16
- package/resources/credentials.d.mts.map +1 -1
- package/resources/credentials.d.ts +107 -16
- package/resources/credentials.d.ts.map +1 -1
- package/resources/credentials.js +33 -14
- package/resources/credentials.js.map +1 -1
- package/resources/credentials.mjs +33 -14
- package/resources/credentials.mjs.map +1 -1
- package/resources/index.d.mts +2 -2
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +2 -2
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/resources/proxies.d.mts +137 -1
- package/resources/proxies.d.mts.map +1 -1
- package/resources/proxies.d.ts +137 -1
- package/resources/proxies.d.ts.map +1 -1
- package/resources/proxies.js +6 -0
- package/resources/proxies.js.map +1 -1
- package/resources/proxies.mjs +6 -0
- package/resources/proxies.mjs.map +1 -1
- package/src/client.ts +4 -0
- package/src/resources/agents/agents.ts +0 -4
- package/src/resources/agents/auth/auth.ts +114 -141
- package/src/resources/agents/auth/index.ts +0 -3
- package/src/resources/agents/auth/invocations.ts +21 -39
- package/src/resources/agents/index.ts +0 -2
- package/src/resources/credentials.ts +127 -18
- package/src/resources/index.ts +2 -0
- package/src/resources/proxies.ts +228 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { APIResource } from "../../../core/resource.js";
|
|
2
2
|
import * as InvocationsAPI from "./invocations.js";
|
|
3
|
-
import { InvocationCreateParams,
|
|
3
|
+
import { InvocationCreateParams, InvocationExchangeParams, InvocationExchangeResponse, InvocationSubmitParams, Invocations } from "./invocations.js";
|
|
4
4
|
import { APIPromise } from "../../../core/api-promise.js";
|
|
5
5
|
import { OffsetPagination, type OffsetPaginationParams, PagePromise } from "../../../core/pagination.js";
|
|
6
6
|
import { RequestOptions } from "../../../internal/request-options.js";
|
|
@@ -15,8 +15,8 @@ export declare class Auth extends APIResource {
|
|
|
15
15
|
* @example
|
|
16
16
|
* ```ts
|
|
17
17
|
* const authAgent = await client.agents.auth.create({
|
|
18
|
+
* domain: 'netflix.com',
|
|
18
19
|
* profile_name: 'user-123',
|
|
19
|
-
* target_domain: 'netflix.com',
|
|
20
20
|
* });
|
|
21
21
|
* ```
|
|
22
22
|
*/
|
|
@@ -32,7 +32,7 @@ export declare class Auth extends APIResource {
|
|
|
32
32
|
*/
|
|
33
33
|
retrieve(id: string, options?: RequestOptions): APIPromise<AuthAgent>;
|
|
34
34
|
/**
|
|
35
|
-
* List auth agents with optional filters for profile_name and
|
|
35
|
+
* List auth agents with optional filters for profile_name and domain.
|
|
36
36
|
*
|
|
37
37
|
* @example
|
|
38
38
|
* ```ts
|
|
@@ -56,51 +56,8 @@ export declare class Auth extends APIResource {
|
|
|
56
56
|
* ```
|
|
57
57
|
*/
|
|
58
58
|
delete(id: string, options?: RequestOptions): APIPromise<void>;
|
|
59
|
-
/**
|
|
60
|
-
* Triggers automatic re-authentication for an auth agent using stored credentials.
|
|
61
|
-
* Requires the auth agent to have a linked credential, stored selectors, and
|
|
62
|
-
* login_url. Returns immediately with status indicating whether re-auth was
|
|
63
|
-
* started.
|
|
64
|
-
*
|
|
65
|
-
* @example
|
|
66
|
-
* ```ts
|
|
67
|
-
* const reauthResponse = await client.agents.auth.reauth(
|
|
68
|
-
* 'id',
|
|
69
|
-
* );
|
|
70
|
-
* ```
|
|
71
|
-
*/
|
|
72
|
-
reauth(id: string, options?: RequestOptions): APIPromise<ReauthResponse>;
|
|
73
59
|
}
|
|
74
60
|
export type AuthAgentsOffsetPagination = OffsetPagination<AuthAgent>;
|
|
75
|
-
/**
|
|
76
|
-
* Response from discover endpoint matching AuthBlueprint schema
|
|
77
|
-
*/
|
|
78
|
-
export interface AgentAuthDiscoverResponse {
|
|
79
|
-
/**
|
|
80
|
-
* Whether discovery succeeded
|
|
81
|
-
*/
|
|
82
|
-
success: boolean;
|
|
83
|
-
/**
|
|
84
|
-
* Error message if discovery failed
|
|
85
|
-
*/
|
|
86
|
-
error_message?: string;
|
|
87
|
-
/**
|
|
88
|
-
* Discovered form fields (present when success is true)
|
|
89
|
-
*/
|
|
90
|
-
fields?: Array<DiscoveredField>;
|
|
91
|
-
/**
|
|
92
|
-
* Whether user is already logged in
|
|
93
|
-
*/
|
|
94
|
-
logged_in?: boolean;
|
|
95
|
-
/**
|
|
96
|
-
* URL of the discovered login page
|
|
97
|
-
*/
|
|
98
|
-
login_url?: string;
|
|
99
|
-
/**
|
|
100
|
-
* Title of the login page
|
|
101
|
-
*/
|
|
102
|
-
page_title?: string;
|
|
103
|
-
}
|
|
104
61
|
/**
|
|
105
62
|
* Response from get invocation endpoint
|
|
106
63
|
*/
|
|
@@ -109,6 +66,10 @@ export interface AgentAuthInvocationResponse {
|
|
|
109
66
|
* App name (org name at time of invocation creation)
|
|
110
67
|
*/
|
|
111
68
|
app_name: string;
|
|
69
|
+
/**
|
|
70
|
+
* Domain for authentication
|
|
71
|
+
*/
|
|
72
|
+
domain: string;
|
|
112
73
|
/**
|
|
113
74
|
* When the handoff code expires
|
|
114
75
|
*/
|
|
@@ -116,45 +77,72 @@ export interface AgentAuthInvocationResponse {
|
|
|
116
77
|
/**
|
|
117
78
|
* Invocation status
|
|
118
79
|
*/
|
|
119
|
-
status: 'IN_PROGRESS' | 'SUCCESS' | 'EXPIRED' | 'CANCELED';
|
|
80
|
+
status: 'IN_PROGRESS' | 'SUCCESS' | 'EXPIRED' | 'CANCELED' | 'FAILED';
|
|
120
81
|
/**
|
|
121
|
-
*
|
|
82
|
+
* Current step in the invocation workflow
|
|
122
83
|
*/
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
84
|
+
step: 'initialized' | 'discovering' | 'awaiting_input' | 'awaiting_external_action' | 'submitting' | 'completed' | 'expired';
|
|
85
|
+
/**
|
|
86
|
+
* The invocation type:
|
|
87
|
+
*
|
|
88
|
+
* - login: First-time authentication
|
|
89
|
+
* - reauth: Re-authentication for previously authenticated agents
|
|
90
|
+
* - auto_login: Legacy type (no longer created, kept for backward compatibility)
|
|
91
|
+
*/
|
|
92
|
+
type: 'login' | 'auto_login' | 'reauth';
|
|
93
|
+
/**
|
|
94
|
+
* Error message explaining why the invocation failed (present when status=FAILED)
|
|
95
|
+
*/
|
|
96
|
+
error_message?: string | null;
|
|
129
97
|
/**
|
|
130
|
-
*
|
|
98
|
+
* Instructions for user when external action is required (present when
|
|
99
|
+
* step=awaiting_external_action)
|
|
131
100
|
*/
|
|
132
|
-
|
|
101
|
+
external_action_message?: string | null;
|
|
133
102
|
/**
|
|
134
|
-
*
|
|
135
|
-
* true
|
|
103
|
+
* Browser live view URL for debugging the invocation
|
|
136
104
|
*/
|
|
137
|
-
|
|
105
|
+
live_view_url?: string | null;
|
|
138
106
|
/**
|
|
139
|
-
*
|
|
107
|
+
* Fields currently awaiting input (present when step=awaiting_input)
|
|
140
108
|
*/
|
|
141
|
-
|
|
109
|
+
pending_fields?: Array<DiscoveredField> | null;
|
|
142
110
|
/**
|
|
143
|
-
*
|
|
111
|
+
* SSO buttons available on the page (present when step=awaiting_input)
|
|
144
112
|
*/
|
|
145
|
-
|
|
113
|
+
pending_sso_buttons?: Array<AgentAuthInvocationResponse.PendingSSOButton> | null;
|
|
146
114
|
/**
|
|
147
|
-
*
|
|
115
|
+
* Names of fields that have been submitted (present when step=submitting or later)
|
|
148
116
|
*/
|
|
149
|
-
|
|
117
|
+
submitted_fields?: Array<string> | null;
|
|
118
|
+
}
|
|
119
|
+
export declare namespace AgentAuthInvocationResponse {
|
|
150
120
|
/**
|
|
151
|
-
*
|
|
121
|
+
* An SSO button for signing in with an external identity provider
|
|
152
122
|
*/
|
|
153
|
-
|
|
123
|
+
interface PendingSSOButton {
|
|
124
|
+
/**
|
|
125
|
+
* Visible button text
|
|
126
|
+
*/
|
|
127
|
+
label: string;
|
|
128
|
+
/**
|
|
129
|
+
* Identity provider name
|
|
130
|
+
*/
|
|
131
|
+
provider: string;
|
|
132
|
+
/**
|
|
133
|
+
* XPath selector for the button
|
|
134
|
+
*/
|
|
135
|
+
selector: string;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
/**
|
|
139
|
+
* Response from submit endpoint - returns immediately after submission is accepted
|
|
140
|
+
*/
|
|
141
|
+
export interface AgentAuthSubmitResponse {
|
|
154
142
|
/**
|
|
155
|
-
*
|
|
143
|
+
* Whether the submission was accepted for processing
|
|
156
144
|
*/
|
|
157
|
-
|
|
145
|
+
accepted: boolean;
|
|
158
146
|
}
|
|
159
147
|
/**
|
|
160
148
|
* An auth agent that manages authentication for a specific domain and profile
|
|
@@ -177,6 +165,12 @@ export interface AuthAgent {
|
|
|
177
165
|
* Current authentication status of the managed profile
|
|
178
166
|
*/
|
|
179
167
|
status: 'AUTHENTICATED' | 'NEEDS_AUTH';
|
|
168
|
+
/**
|
|
169
|
+
* Additional domains that are valid for this auth agent's authentication flow
|
|
170
|
+
* (besides the primary domain). Useful when login pages redirect to different
|
|
171
|
+
* domains.
|
|
172
|
+
*/
|
|
173
|
+
allowed_domains?: Array<string>;
|
|
180
174
|
/**
|
|
181
175
|
* Whether automatic re-authentication is possible (has credential_id, selectors,
|
|
182
176
|
* and login_url)
|
|
@@ -203,14 +197,20 @@ export interface AuthAgent {
|
|
|
203
197
|
* Request to create or find an auth agent
|
|
204
198
|
*/
|
|
205
199
|
export interface AuthAgentCreateRequest {
|
|
200
|
+
/**
|
|
201
|
+
* Domain for authentication
|
|
202
|
+
*/
|
|
203
|
+
domain: string;
|
|
206
204
|
/**
|
|
207
205
|
* Name of the profile to use for this auth agent
|
|
208
206
|
*/
|
|
209
207
|
profile_name: string;
|
|
210
208
|
/**
|
|
211
|
-
*
|
|
209
|
+
* Additional domains that are valid for this auth agent's authentication flow
|
|
210
|
+
* (besides the primary domain). Useful when login pages redirect to different
|
|
211
|
+
* domains.
|
|
212
212
|
*/
|
|
213
|
-
|
|
213
|
+
allowed_domains?: Array<string>;
|
|
214
214
|
/**
|
|
215
215
|
* Optional name of an existing credential to use for this auth agent. If provided,
|
|
216
216
|
* the credential will be linked to the agent and its values will be used to
|
|
@@ -254,44 +254,33 @@ export interface AuthAgentInvocationCreateRequest {
|
|
|
254
254
|
save_credential_as?: string;
|
|
255
255
|
}
|
|
256
256
|
/**
|
|
257
|
-
* Response
|
|
257
|
+
* Response from creating an invocation. Always returns an invocation_id.
|
|
258
258
|
*/
|
|
259
|
-
export
|
|
260
|
-
export declare namespace AuthAgentInvocationCreateResponse {
|
|
259
|
+
export interface AuthAgentInvocationCreateResponse {
|
|
261
260
|
/**
|
|
262
|
-
*
|
|
261
|
+
* When the handoff code expires.
|
|
263
262
|
*/
|
|
264
|
-
|
|
265
|
-
/**
|
|
266
|
-
* Indicates the agent is already authenticated and no invocation was created.
|
|
267
|
-
*/
|
|
268
|
-
status: 'already_authenticated';
|
|
269
|
-
}
|
|
263
|
+
expires_at: string;
|
|
270
264
|
/**
|
|
271
|
-
*
|
|
265
|
+
* One-time code for handoff.
|
|
272
266
|
*/
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
/**
|
|
291
|
-
* Indicates an invocation was created.
|
|
292
|
-
*/
|
|
293
|
-
status: 'invocation_created';
|
|
294
|
-
}
|
|
267
|
+
handoff_code: string;
|
|
268
|
+
/**
|
|
269
|
+
* URL to redirect user to.
|
|
270
|
+
*/
|
|
271
|
+
hosted_url: string;
|
|
272
|
+
/**
|
|
273
|
+
* Unique identifier for the invocation.
|
|
274
|
+
*/
|
|
275
|
+
invocation_id: string;
|
|
276
|
+
/**
|
|
277
|
+
* The invocation type:
|
|
278
|
+
*
|
|
279
|
+
* - login: First-time authentication
|
|
280
|
+
* - reauth: Re-authentication for previously authenticated agents
|
|
281
|
+
* - auto_login: Legacy type (no longer created, kept for backward compatibility)
|
|
282
|
+
*/
|
|
283
|
+
type: 'login' | 'auto_login' | 'reauth';
|
|
295
284
|
}
|
|
296
285
|
/**
|
|
297
286
|
* A discovered form field
|
|
@@ -312,7 +301,7 @@ export interface DiscoveredField {
|
|
|
312
301
|
/**
|
|
313
302
|
* Field type
|
|
314
303
|
*/
|
|
315
|
-
type: 'text' | 'email' | 'password' | 'tel' | 'number' | 'url' | 'code';
|
|
304
|
+
type: 'text' | 'email' | 'password' | 'tel' | 'number' | 'url' | 'code' | 'totp';
|
|
316
305
|
/**
|
|
317
306
|
* Field placeholder
|
|
318
307
|
*/
|
|
@@ -322,32 +311,21 @@ export interface DiscoveredField {
|
|
|
322
311
|
*/
|
|
323
312
|
required?: boolean;
|
|
324
313
|
}
|
|
325
|
-
|
|
326
|
-
* Response from triggering re-authentication
|
|
327
|
-
*/
|
|
328
|
-
export interface ReauthResponse {
|
|
329
|
-
/**
|
|
330
|
-
* Result of the re-authentication attempt
|
|
331
|
-
*/
|
|
332
|
-
status: 'reauth_started' | 'already_authenticated' | 'cannot_reauth';
|
|
333
|
-
/**
|
|
334
|
-
* ID of the re-auth invocation if one was created
|
|
335
|
-
*/
|
|
336
|
-
invocation_id?: string;
|
|
314
|
+
export interface AuthCreateParams {
|
|
337
315
|
/**
|
|
338
|
-
*
|
|
316
|
+
* Domain for authentication
|
|
339
317
|
*/
|
|
340
|
-
|
|
341
|
-
}
|
|
342
|
-
export interface AuthCreateParams {
|
|
318
|
+
domain: string;
|
|
343
319
|
/**
|
|
344
320
|
* Name of the profile to use for this auth agent
|
|
345
321
|
*/
|
|
346
322
|
profile_name: string;
|
|
347
323
|
/**
|
|
348
|
-
*
|
|
324
|
+
* Additional domains that are valid for this auth agent's authentication flow
|
|
325
|
+
* (besides the primary domain). Useful when login pages redirect to different
|
|
326
|
+
* domains.
|
|
349
327
|
*/
|
|
350
|
-
|
|
328
|
+
allowed_domains?: Array<string>;
|
|
351
329
|
/**
|
|
352
330
|
* Optional name of an existing credential to use for this auth agent. If provided,
|
|
353
331
|
* the credential will be linked to the agent and its values will be used to
|
|
@@ -377,16 +355,16 @@ export declare namespace AuthCreateParams {
|
|
|
377
355
|
}
|
|
378
356
|
export interface AuthListParams extends OffsetPaginationParams {
|
|
379
357
|
/**
|
|
380
|
-
* Filter by
|
|
358
|
+
* Filter by domain
|
|
381
359
|
*/
|
|
382
|
-
|
|
360
|
+
domain?: string;
|
|
383
361
|
/**
|
|
384
|
-
* Filter by
|
|
362
|
+
* Filter by profile name
|
|
385
363
|
*/
|
|
386
|
-
|
|
364
|
+
profile_name?: string;
|
|
387
365
|
}
|
|
388
366
|
export declare namespace Auth {
|
|
389
|
-
export { type
|
|
390
|
-
export { Invocations as Invocations, type InvocationExchangeResponse as InvocationExchangeResponse, type InvocationCreateParams as InvocationCreateParams, type
|
|
367
|
+
export { type AgentAuthInvocationResponse as AgentAuthInvocationResponse, type AgentAuthSubmitResponse as AgentAuthSubmitResponse, type AuthAgent as AuthAgent, type AuthAgentCreateRequest as AuthAgentCreateRequest, type AuthAgentInvocationCreateRequest as AuthAgentInvocationCreateRequest, type AuthAgentInvocationCreateResponse as AuthAgentInvocationCreateResponse, type DiscoveredField as DiscoveredField, type AuthAgentsOffsetPagination as AuthAgentsOffsetPagination, type AuthCreateParams as AuthCreateParams, type AuthListParams as AuthListParams, };
|
|
368
|
+
export { Invocations as Invocations, type InvocationExchangeResponse as InvocationExchangeResponse, type InvocationCreateParams as InvocationCreateParams, type InvocationExchangeParams as InvocationExchangeParams, type InvocationSubmitParams as InvocationSubmitParams, };
|
|
391
369
|
}
|
|
392
370
|
//# sourceMappingURL=auth.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/resources/agents/auth/auth.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,cAAc;OACnB,EACL,sBAAsB,EACtB,wBAAwB,EACxB,
|
|
1
|
+
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/resources/agents/auth/auth.ts"],"names":[],"mappings":"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"}
|
|
@@ -23,8 +23,8 @@ class Auth extends resource_1.APIResource {
|
|
|
23
23
|
* @example
|
|
24
24
|
* ```ts
|
|
25
25
|
* const authAgent = await client.agents.auth.create({
|
|
26
|
+
* domain: 'netflix.com',
|
|
26
27
|
* profile_name: 'user-123',
|
|
27
|
-
* target_domain: 'netflix.com',
|
|
28
28
|
* });
|
|
29
29
|
* ```
|
|
30
30
|
*/
|
|
@@ -44,7 +44,7 @@ class Auth extends resource_1.APIResource {
|
|
|
44
44
|
return this._client.get((0, path_1.path) `/agents/auth/${id}`, options);
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
* List auth agents with optional filters for profile_name and
|
|
47
|
+
* List auth agents with optional filters for profile_name and domain.
|
|
48
48
|
*
|
|
49
49
|
* @example
|
|
50
50
|
* ```ts
|
|
@@ -75,22 +75,6 @@ class Auth extends resource_1.APIResource {
|
|
|
75
75
|
headers: (0, headers_1.buildHeaders)([{ Accept: '*/*' }, options?.headers]),
|
|
76
76
|
});
|
|
77
77
|
}
|
|
78
|
-
/**
|
|
79
|
-
* Triggers automatic re-authentication for an auth agent using stored credentials.
|
|
80
|
-
* Requires the auth agent to have a linked credential, stored selectors, and
|
|
81
|
-
* login_url. Returns immediately with status indicating whether re-auth was
|
|
82
|
-
* started.
|
|
83
|
-
*
|
|
84
|
-
* @example
|
|
85
|
-
* ```ts
|
|
86
|
-
* const reauthResponse = await client.agents.auth.reauth(
|
|
87
|
-
* 'id',
|
|
88
|
-
* );
|
|
89
|
-
* ```
|
|
90
|
-
*/
|
|
91
|
-
reauth(id, options) {
|
|
92
|
-
return this._client.post((0, path_1.path) `/agents/auth/${id}/reauth`, options);
|
|
93
|
-
}
|
|
94
78
|
}
|
|
95
79
|
exports.Auth = Auth;
|
|
96
80
|
Auth.Invocations = invocations_1.Invocations;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../src/resources/agents/auth/auth.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,wDAAqD;AACrD,yEAAgD;AAChD,
|
|
1
|
+
{"version":3,"file":"auth.js","sourceRoot":"","sources":["../../../src/resources/agents/auth/auth.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;;AAEtF,wDAAqD;AACrD,yEAAgD;AAChD,kDAMuB;AAEvB,4DAAsG;AACtG,0DAAyD;AAEzD,0DAAoD;AAEpD,MAAa,IAAK,SAAQ,sBAAW;IAArC;;QACE,gBAAW,GAA+B,IAAI,cAAc,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAqEzF,CAAC;IAnEC;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAsB,EAAE,OAAwB;QACrD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjE,CAAC;IAED;;;;;;;;OAQG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAA,WAAI,EAAA,gBAAgB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC7D,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA2C,EAAE,EAC7C,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,cAAc,EAAE,CAAA,6BAA2B,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrG,CAAC;IAED;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAU,EAAE,OAAwB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAA,WAAI,EAAA,gBAAgB,EAAE,EAAE,EAAE;YACnD,GAAG,OAAO;YACV,OAAO,EAAE,IAAA,sBAAY,EAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AAtED,oBAsEC;AAmXD,IAAI,CAAC,WAAW,GAAG,yBAAW,CAAC"}
|
|
@@ -19,8 +19,8 @@ export class Auth extends APIResource {
|
|
|
19
19
|
* @example
|
|
20
20
|
* ```ts
|
|
21
21
|
* const authAgent = await client.agents.auth.create({
|
|
22
|
+
* domain: 'netflix.com',
|
|
22
23
|
* profile_name: 'user-123',
|
|
23
|
-
* target_domain: 'netflix.com',
|
|
24
24
|
* });
|
|
25
25
|
* ```
|
|
26
26
|
*/
|
|
@@ -40,7 +40,7 @@ export class Auth extends APIResource {
|
|
|
40
40
|
return this._client.get(path `/agents/auth/${id}`, options);
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
|
-
* List auth agents with optional filters for profile_name and
|
|
43
|
+
* List auth agents with optional filters for profile_name and domain.
|
|
44
44
|
*
|
|
45
45
|
* @example
|
|
46
46
|
* ```ts
|
|
@@ -71,22 +71,6 @@ export class Auth extends APIResource {
|
|
|
71
71
|
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
|
|
72
72
|
});
|
|
73
73
|
}
|
|
74
|
-
/**
|
|
75
|
-
* Triggers automatic re-authentication for an auth agent using stored credentials.
|
|
76
|
-
* Requires the auth agent to have a linked credential, stored selectors, and
|
|
77
|
-
* login_url. Returns immediately with status indicating whether re-auth was
|
|
78
|
-
* started.
|
|
79
|
-
*
|
|
80
|
-
* @example
|
|
81
|
-
* ```ts
|
|
82
|
-
* const reauthResponse = await client.agents.auth.reauth(
|
|
83
|
-
* 'id',
|
|
84
|
-
* );
|
|
85
|
-
* ```
|
|
86
|
-
*/
|
|
87
|
-
reauth(id, options) {
|
|
88
|
-
return this._client.post(path `/agents/auth/${id}/reauth`, options);
|
|
89
|
-
}
|
|
90
74
|
}
|
|
91
75
|
Auth.Invocations = Invocations;
|
|
92
76
|
//# sourceMappingURL=auth.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.mjs","sourceRoot":"","sources":["../../../src/resources/agents/auth/auth.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,KAAK,cAAc;OACnB,
|
|
1
|
+
{"version":3,"file":"auth.mjs","sourceRoot":"","sources":["../../../src/resources/agents/auth/auth.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,KAAK,cAAc;OACnB,EAKL,WAAW,GACZ;OAEM,EAAE,gBAAgB,EAA4C;OAC9D,EAAE,YAAY,EAAE;OAEhB,EAAE,IAAI,EAAE;AAEf,MAAM,OAAO,IAAK,SAAQ,WAAW;IAArC;;QACE,gBAAW,GAA+B,IAAI,cAAc,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;IAqEzF,CAAC;IAnEC;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAsB,EAAE,OAAwB;QACrD,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,cAAc,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACjE,CAAC;IAED;;;;;;;;OAQG;IACH,QAAQ,CAAC,EAAU,EAAE,OAAwB;QAC3C,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,IAAI,CAAA,gBAAgB,EAAE,EAAE,EAAE,OAAO,CAAC,CAAC;IAC7D,CAAC;IAED;;;;;;;;;;OAUG;IACH,IAAI,CACF,QAA2C,EAAE,EAC7C,OAAwB;QAExB,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,cAAc,EAAE,CAAA,gBAA2B,CAAA,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACrG,CAAC;IAED;;;;;;;;;;;OAWG;IACH,MAAM,CAAC,EAAU,EAAE,OAAwB;QACzC,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAA,gBAAgB,EAAE,EAAE,EAAE;YACnD,GAAG,OAAO;YACV,OAAO,EAAE,YAAY,CAAC,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;SAC7D,CAAC,CAAC;IACL,CAAC;CACF;AAmXD,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { Auth, type
|
|
2
|
-
export { Invocations, type InvocationExchangeResponse, type InvocationCreateParams, type
|
|
1
|
+
export { Auth, type AgentAuthInvocationResponse, type AgentAuthSubmitResponse, type AuthAgent, type AuthAgentCreateRequest, type AuthAgentInvocationCreateRequest, type AuthAgentInvocationCreateResponse, type DiscoveredField, type AuthCreateParams, type AuthListParams, type AuthAgentsOffsetPagination, } from "./auth.mjs";
|
|
2
|
+
export { Invocations, type InvocationExchangeResponse, type InvocationCreateParams, type InvocationExchangeParams, type InvocationSubmitParams, } from "./invocations.mjs";
|
|
3
3
|
//# sourceMappingURL=index.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/resources/agents/auth/index.ts"],"names":[],"mappings":"OAEO,EACL,IAAI,EACJ,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../src/resources/agents/auth/index.ts"],"names":[],"mappings":"OAEO,EACL,IAAI,EACJ,KAAK,2BAA2B,EAChC,KAAK,uBAAuB,EAC5B,KAAK,SAAS,EACd,KAAK,sBAAsB,EAC3B,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EACtC,KAAK,eAAe,EACpB,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,0BAA0B,GAChC;OACM,EACL,WAAW,EACX,KAAK,0BAA0B,EAC/B,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,sBAAsB,GAC5B"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { Auth, type
|
|
2
|
-
export { Invocations, type InvocationExchangeResponse, type InvocationCreateParams, type
|
|
1
|
+
export { Auth, type AgentAuthInvocationResponse, type AgentAuthSubmitResponse, type AuthAgent, type AuthAgentCreateRequest, type AuthAgentInvocationCreateRequest, type AuthAgentInvocationCreateResponse, type DiscoveredField, type AuthCreateParams, type AuthListParams, type AuthAgentsOffsetPagination, } from "./auth.js";
|
|
2
|
+
export { Invocations, type InvocationExchangeResponse, type InvocationCreateParams, type InvocationExchangeParams, type InvocationSubmitParams, } from "./invocations.js";
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/resources/agents/auth/index.ts"],"names":[],"mappings":"OAEO,EACL,IAAI,EACJ,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/resources/agents/auth/index.ts"],"names":[],"mappings":"OAEO,EACL,IAAI,EACJ,KAAK,2BAA2B,EAChC,KAAK,uBAAuB,EAC5B,KAAK,SAAS,EACd,KAAK,sBAAsB,EAC3B,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EACtC,KAAK,eAAe,EACpB,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,0BAA0B,GAChC;OACM,EACL,WAAW,EACX,KAAK,0BAA0B,EAC/B,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,sBAAsB,GAC5B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/resources/agents/auth/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/resources/agents/auth/index.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,kCAYgB;AAXd,4FAAA,IAAI,OAAA;AAYN,gDAMuB;AALrB,0GAAA,WAAW,OAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/resources/agents/auth/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,IAAI,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/resources/agents/auth/index.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EACL,IAAI,GAWL;OACM,EACL,WAAW,GAKZ"}
|
|
@@ -18,8 +18,8 @@ export declare class Invocations extends APIResource {
|
|
|
18
18
|
*/
|
|
19
19
|
create(body: InvocationCreateParams, options?: RequestOptions): APIPromise<AuthAPI.AuthAgentInvocationCreateResponse>;
|
|
20
20
|
/**
|
|
21
|
-
* Returns invocation details including app_name and
|
|
22
|
-
*
|
|
21
|
+
* Returns invocation details including status, app_name, and domain. Supports both
|
|
22
|
+
* API key and JWT (from exchange endpoint) authentication.
|
|
23
23
|
*
|
|
24
24
|
* @example
|
|
25
25
|
* ```ts
|
|
@@ -30,20 +30,6 @@ export declare class Invocations extends APIResource {
|
|
|
30
30
|
* ```
|
|
31
31
|
*/
|
|
32
32
|
retrieve(invocationID: string, options?: RequestOptions): APIPromise<AuthAPI.AgentAuthInvocationResponse>;
|
|
33
|
-
/**
|
|
34
|
-
* Inspects the target site to detect logged-in state or discover required fields.
|
|
35
|
-
* Returns 200 with success: true when fields are found, or 4xx/5xx for failures.
|
|
36
|
-
* Requires the JWT returned by the exchange endpoint.
|
|
37
|
-
*
|
|
38
|
-
* @example
|
|
39
|
-
* ```ts
|
|
40
|
-
* const agentAuthDiscoverResponse =
|
|
41
|
-
* await client.agents.auth.invocations.discover(
|
|
42
|
-
* 'invocation_id',
|
|
43
|
-
* );
|
|
44
|
-
* ```
|
|
45
|
-
*/
|
|
46
|
-
discover(invocationID: string, body?: InvocationDiscoverParams | null | undefined, options?: RequestOptions): APIPromise<AuthAPI.AgentAuthDiscoverResponse>;
|
|
47
33
|
/**
|
|
48
34
|
* Validates the handoff code and returns a JWT token for subsequent requests. No
|
|
49
35
|
* authentication required (the handoff code serves as the credential).
|
|
@@ -59,8 +45,9 @@ export declare class Invocations extends APIResource {
|
|
|
59
45
|
*/
|
|
60
46
|
exchange(invocationID: string, body: InvocationExchangeParams, options?: RequestOptions): APIPromise<InvocationExchangeResponse>;
|
|
61
47
|
/**
|
|
62
|
-
* Submits field values for the discovered login form
|
|
63
|
-
*
|
|
48
|
+
* Submits field values for the discovered login form. Returns immediately after
|
|
49
|
+
* submission is accepted. Poll the invocation endpoint to track progress and get
|
|
50
|
+
* results.
|
|
64
51
|
*
|
|
65
52
|
* @example
|
|
66
53
|
* ```ts
|
|
@@ -103,28 +90,30 @@ export interface InvocationCreateParams {
|
|
|
103
90
|
*/
|
|
104
91
|
save_credential_as?: string;
|
|
105
92
|
}
|
|
106
|
-
export interface InvocationDiscoverParams {
|
|
107
|
-
/**
|
|
108
|
-
* Optional login page URL. If provided, will override the stored login URL for
|
|
109
|
-
* this discovery invocation and skip Phase 1 discovery.
|
|
110
|
-
*/
|
|
111
|
-
login_url?: string;
|
|
112
|
-
}
|
|
113
93
|
export interface InvocationExchangeParams {
|
|
114
94
|
/**
|
|
115
95
|
* Handoff code from start endpoint
|
|
116
96
|
*/
|
|
117
97
|
code: string;
|
|
118
98
|
}
|
|
119
|
-
export
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
99
|
+
export type InvocationSubmitParams = InvocationSubmitParams.Variant0 | InvocationSubmitParams.Variant1;
|
|
100
|
+
export declare namespace InvocationSubmitParams {
|
|
101
|
+
interface Variant0 {
|
|
102
|
+
/**
|
|
103
|
+
* Values for the discovered login fields
|
|
104
|
+
*/
|
|
105
|
+
field_values: {
|
|
106
|
+
[key: string]: string;
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
interface Variant1 {
|
|
110
|
+
/**
|
|
111
|
+
* Selector of SSO button to click
|
|
112
|
+
*/
|
|
113
|
+
sso_button: string;
|
|
114
|
+
}
|
|
126
115
|
}
|
|
127
116
|
export declare namespace Invocations {
|
|
128
|
-
export { type InvocationExchangeResponse as InvocationExchangeResponse, type InvocationCreateParams as InvocationCreateParams, type
|
|
117
|
+
export { type InvocationExchangeResponse as InvocationExchangeResponse, type InvocationCreateParams as InvocationCreateParams, type InvocationExchangeParams as InvocationExchangeParams, type InvocationSubmitParams as InvocationSubmitParams, };
|
|
129
118
|
}
|
|
130
119
|
//# sourceMappingURL=invocations.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"invocations.d.mts","sourceRoot":"","sources":["../../../src/resources/agents/auth/invocations.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,OAAO;OACZ,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAGzB,qBAAa,WAAY,SAAQ,WAAW;IAC1C;;;;;;;;;;;;OAYG;IACH,MAAM,CACJ,IAAI,EAAE,sBAAsB,EAC5B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,OAAO,CAAC,iCAAiC,CAAC;IAIxD;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,OAAO,CAAC,2BAA2B,CAAC;IAIzG;;;;;;;;;;;;OAYG;IACH,QAAQ,CACN,YAAY,EAAE,MAAM,EACpB,IAAI,
|
|
1
|
+
{"version":3,"file":"invocations.d.mts","sourceRoot":"","sources":["../../../src/resources/agents/auth/invocations.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,OAAO;OACZ,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAGzB,qBAAa,WAAY,SAAQ,WAAW;IAC1C;;;;;;;;;;;;OAYG;IACH,MAAM,CACJ,IAAI,EAAE,sBAAsB,EAC5B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,OAAO,CAAC,iCAAiC,CAAC;IAIxD;;;;;;;;;;;OAWG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,OAAO,CAAC,2BAA2B,CAAC;IAIzG;;;;;;;;;;;;OAYG;IACH,QAAQ,CACN,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,wBAAwB,EAC9B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,0BAA0B,CAAC;IAIzC;;;;;;;;;;;;;;;;;;OAkBG;IACH,MAAM,CACJ,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,sBAAsB,EAC5B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,OAAO,CAAC,uBAAuB,CAAC;CAG/C;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACzC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,GAAG,EAAE,MAAM,CAAC;CACb;AAED,MAAM,WAAW,sBAAsB;IACrC;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;CAC7B;AAED,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,MAAM,sBAAsB,GAAG,sBAAsB,CAAC,QAAQ,GAAG,sBAAsB,CAAC,QAAQ,CAAC;AAEvG,MAAM,CAAC,OAAO,WAAW,sBAAsB,CAAC;IAC9C,UAAiB,QAAQ;QACvB;;WAEG;QACH,YAAY,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,CAAC;KACzC;IAED,UAAiB,QAAQ;QACvB;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;KACpB;CACF;AAED,MAAM,CAAC,OAAO,WAAW,WAAW,CAAC;IACnC,OAAO,EACL,KAAK,0BAA0B,IAAI,0BAA0B,EAC7D,KAAK,sBAAsB,IAAI,sBAAsB,EACrD,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;CACH"}
|