-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconnections.ts
More file actions
1261 lines (1092 loc) · 30.6 KB
/
connections.ts
File metadata and controls
1261 lines (1092 loc) · 30.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../core/resource';
import * as Shared from '../shared';
import { APIPromise } from '../../core/api-promise';
import { OffsetPagination, type OffsetPaginationParams, PagePromise } from '../../core/pagination';
import { Stream } from '../../core/streaming';
import { buildHeaders } from '../../internal/headers';
import { RequestOptions } from '../../internal/request-options';
import { path } from '../../internal/utils/path';
/**
* Create and manage auth connections for automated credential capture and login.
*/
export class Connections extends APIResource {
/**
* Creates an auth connection for a profile and domain combination. If the provided
* profile_name does not exist, it is created automatically. Returns 409 Conflict
* if an auth connection already exists for the given profile and domain.
*
* @example
* ```ts
* const managedAuth = await client.auth.connections.create({
* domain: 'netflix.com',
* profile_name: 'user-123',
* });
* ```
*/
create(body: ConnectionCreateParams, options?: RequestOptions): APIPromise<ManagedAuth> {
return this._client.post('/auth/connections', { body, ...options });
}
/**
* Retrieve an auth connection by its ID. Includes current flow state if a login is
* in progress.
*
* @example
* ```ts
* const managedAuth = await client.auth.connections.retrieve(
* 'id',
* );
* ```
*/
retrieve(id: string, options?: RequestOptions): APIPromise<ManagedAuth> {
return this._client.get(path`/auth/connections/${id}`, options);
}
/**
* Update an auth connection's configuration. Only the fields provided will be
* updated.
*
* @example
* ```ts
* const managedAuth = await client.auth.connections.update(
* 'id',
* );
* ```
*/
update(id: string, body: ConnectionUpdateParams, options?: RequestOptions): APIPromise<ManagedAuth> {
return this._client.patch(path`/auth/connections/${id}`, { body, ...options });
}
/**
* List auth connections with optional filters for profile_name and domain.
*
* @example
* ```ts
* // Automatically fetches more pages as needed.
* for await (const managedAuth of client.auth.connections.list()) {
* // ...
* }
* ```
*/
list(
query: ConnectionListParams | null | undefined = {},
options?: RequestOptions,
): PagePromise<ManagedAuthsOffsetPagination, ManagedAuth> {
return this._client.getAPIList('/auth/connections', OffsetPagination<ManagedAuth>, { query, ...options });
}
/**
* Deletes an auth connection and terminates its workflow. This will:
*
* - Delete the auth connection record
* - Terminate the Temporal workflow
* - Cancel any in-progress login flows
*
* @example
* ```ts
* await client.auth.connections.delete('id');
* ```
*/
delete(id: string, options?: RequestOptions): APIPromise<void> {
return this._client.delete(path`/auth/connections/${id}`, {
...options,
headers: buildHeaders([{ Accept: '*/*' }, options?.headers]),
});
}
/**
* Establishes a Server-Sent Events (SSE) stream that delivers real-time login flow
* state updates. The stream terminates automatically once the flow reaches a
* terminal state (SUCCESS, FAILED, EXPIRED, CANCELED).
*
* @example
* ```ts
* const response = await client.auth.connections.follow('id');
* ```
*/
follow(id: string, options?: RequestOptions): APIPromise<Stream<ConnectionFollowResponse>> {
return this._client.get(path`/auth/connections/${id}/events`, {
...options,
headers: buildHeaders([{ Accept: 'text/event-stream' }, options?.headers]),
stream: true,
}) as APIPromise<Stream<ConnectionFollowResponse>>;
}
/**
* Starts a login flow for the auth connection. Returns immediately with a hosted
* URL for the user to complete authentication, or triggers automatic re-auth if
* credentials are stored.
*
* @example
* ```ts
* const loginResponse = await client.auth.connections.login(
* 'id',
* );
* ```
*/
login(
id: string,
body: ConnectionLoginParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<LoginResponse> {
return this._client.post(path`/auth/connections/${id}/login`, { body, ...options });
}
/**
* Submits field values for the login form. Poll the auth connection to track
* progress and get results.
*
* @example
* ```ts
* const submitFieldsResponse =
* await client.auth.connections.submit('id');
* ```
*/
submit(
id: string,
body: ConnectionSubmitParams,
options?: RequestOptions,
): APIPromise<SubmitFieldsResponse> {
return this._client.post(path`/auth/connections/${id}/submit`, { body, ...options });
}
}
export type ManagedAuthsOffsetPagination = OffsetPagination<ManagedAuth>;
/**
* Response from starting a login flow
*/
export interface LoginResponse {
/**
* Auth connection ID
*/
id: string;
/**
* When the login flow expires
*/
flow_expires_at: string;
/**
* Type of login flow started
*/
flow_type: 'LOGIN' | 'REAUTH';
/**
* URL to redirect user to for login
*/
hosted_url: string;
/**
* One-time code for handoff (internal use)
*/
handoff_code?: string;
/**
* Browser live view URL for watching the login flow
*/
live_view_url?: string;
}
/**
* Managed authentication that keeps a profile logged into a specific domain. Flow
* fields (flow_status, flow_step, discovered_fields, mfa_options) reflect the most
* recent login flow and are null when no flow has been initiated.
*/
export interface ManagedAuth {
/**
* Unique identifier for the auth connection
*/
id: string;
/**
* Target domain for authentication
*/
domain: string;
/**
* Name of the profile associated with this auth connection
*/
profile_name: string;
/**
* Whether credentials are saved after every successful login. One-time codes
* (TOTP, SMS, etc.) are not saved.
*/
save_credentials: boolean;
/**
* Current authentication status of the managed profile
*/
status: 'AUTHENTICATED' | 'NEEDS_AUTH';
/**
* Additional domains that are valid for this auth flow (besides the primary
* domain). Useful when login pages redirect to different domains.
*
* The following SSO/OAuth provider domains are automatically allowed by default
* and do not need to be specified:
*
* - Google: accounts.google.com
* - Microsoft/Azure AD: login.microsoftonline.com, login.live.com
* - Okta: _.okta.com, _.oktapreview.com
* - Auth0: _.auth0.com, _.us.auth0.com, _.eu.auth0.com, _.au.auth0.com
* - Apple: appleid.apple.com
* - GitHub: github.com
* - Facebook/Meta: www.facebook.com
* - LinkedIn: www.linkedin.com
* - Amazon Cognito: \*.amazoncognito.com
* - OneLogin: \*.onelogin.com
* - Ping Identity: _.pingone.com, _.pingidentity.com
*/
allowed_domains?: Array<string>;
/**
* Whether automatic re-authentication is possible (has credential, selectors, and
* login_url)
*/
can_reauth?: boolean;
/**
* Reason why automatic re-authentication is or is not possible
*/
can_reauth_reason?: string;
/**
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
* - { provider, auto: true } for external provider domain lookup
*/
credential?: ManagedAuth.Credential;
/**
* Fields awaiting input (present when flow_step=awaiting_input)
*/
discovered_fields?: Array<ManagedAuth.DiscoveredField> | null;
/**
* Machine-readable error code (present when flow_status=failed)
*/
error_code?: string | null;
/**
* Error message (present when flow_status=failed)
*/
error_message?: string | null;
/**
* Instructions for external action (present when
* flow_step=awaiting_external_action)
*/
external_action_message?: string | null;
/**
* When the current flow expires (null when no flow in progress)
*/
flow_expires_at?: string | null;
/**
* Current flow status (null when no flow in progress)
*/
flow_status?: 'IN_PROGRESS' | 'SUCCESS' | 'FAILED' | 'EXPIRED' | 'CANCELED' | null;
/**
* Current step in the flow (null when no flow in progress)
*/
flow_step?:
| 'DISCOVERING'
| 'AWAITING_INPUT'
| 'AWAITING_EXTERNAL_ACTION'
| 'SUBMITTING'
| 'COMPLETED'
| null;
/**
* Type of the current flow (null when no flow in progress)
*/
flow_type?: 'LOGIN' | 'REAUTH' | null;
/**
* Interval in seconds between automatic health checks. When set, the system
* periodically verifies the authentication status and triggers re-authentication
* if needed. Maximum is 86400 (24 hours). Default is 3600 (1 hour). The minimum
* depends on your plan: Enterprise: 300 (5 minutes), Startup: 1200 (20 minutes),
* Hobbyist: 3600 (1 hour).
*/
health_check_interval?: number | null;
/**
* URL to redirect user to for hosted login (present when flow in progress)
*/
hosted_url?: string | null;
/**
* When the profile was last successfully authenticated
*/
last_auth_at?: string;
/**
* Browser live view URL for debugging (present when flow in progress)
*/
live_view_url?: string | null;
/**
* Optional login page URL to skip discovery
*/
login_url?: string;
/**
* MFA method options (present when flow_step=awaiting_input and MFA selection
* required)
*/
mfa_options?: Array<ManagedAuth.MfaOption> | null;
/**
* SSO buttons available (present when flow_step=awaiting_input)
*/
pending_sso_buttons?: Array<ManagedAuth.PendingSSOButton> | null;
/**
* URL where the browser landed after successful login
*/
post_login_url?: string;
/**
* ID of the proxy associated with this connection, if any.
*/
proxy_id?: string;
/**
* Non-MFA choices presented during the auth flow, such as account selection or org
* pickers (present when flow_step=awaiting_input).
*/
sign_in_options?: Array<ManagedAuth.SignInOption> | null;
/**
* SSO provider being used (e.g., google, github, microsoft)
*/
sso_provider?: string | null;
/**
* Visible error message from the website (e.g., 'Incorrect password'). Present
* when the website displays an error during login.
*/
website_error?: string | null;
}
export namespace ManagedAuth {
/**
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
* - { provider, auto: true } for external provider domain lookup
*/
export interface Credential {
/**
* If true, lookup by domain from the specified provider
*/
auto?: boolean;
/**
* Kernel credential name
*/
name?: string;
/**
* Provider-specific path (e.g., "VaultName/ItemName" for 1Password)
*/
path?: string;
/**
* External provider name (e.g., "my-1p")
*/
provider?: string;
}
/**
* A discovered form field
*/
export interface DiscoveredField {
/**
* Field label
*/
label: string;
/**
* Field name
*/
name: string;
/**
* CSS selector for the field
*/
selector: string;
/**
* Field type
*/
type: 'text' | 'email' | 'password' | 'tel' | 'number' | 'url' | 'code' | 'totp';
/**
* If this field is associated with an MFA option, the type of that option (e.g.,
* password field linked to "Enter password" option)
*/
linked_mfa_type?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | null;
/**
* Field placeholder
*/
placeholder?: string;
/**
* Whether field is required
*/
required?: boolean;
}
/**
* An MFA method option for verification
*/
export interface MfaOption {
/**
* The visible option text
*/
label: string;
/**
* The MFA delivery method type (includes password for auth method selection pages)
*/
type: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password';
/**
* Additional instructions from the site
*/
description?: string | null;
/**
* The masked destination (phone/email) if shown
*/
target?: string | null;
}
/**
* An SSO button for signing in with an external identity provider
*/
export interface PendingSSOButton {
/**
* Visible button text
*/
label: string;
/**
* Identity provider name
*/
provider: string;
/**
* XPath selector for the button
*/
selector: string;
}
/**
* A non-MFA choice presented during the auth flow (e.g. account selection, org
* picker)
*/
export interface SignInOption {
/**
* Unique identifier for this option (used to submit selection back)
*/
id: string;
/**
* Display text for the option
*/
label: string;
/**
* Additional context such as email address or org name
*/
description?: string | null;
}
}
/**
* Request to create an auth connection for a profile and domain
*/
export interface ManagedAuthCreateRequest {
/**
* Domain for authentication
*/
domain: string;
/**
* Name of the profile to manage authentication for. If the profile does not exist,
* it is created automatically.
*/
profile_name: string;
/**
* Additional domains valid for this auth flow (besides the primary domain). Useful
* when login pages redirect to different domains.
*
* The following SSO/OAuth provider domains are automatically allowed by default
* and do not need to be specified:
*
* - Google: accounts.google.com
* - Microsoft/Azure AD: login.microsoftonline.com, login.live.com
* - Okta: _.okta.com, _.oktapreview.com
* - Auth0: _.auth0.com, _.us.auth0.com, _.eu.auth0.com, _.au.auth0.com
* - Apple: appleid.apple.com
* - GitHub: github.com
* - Facebook/Meta: www.facebook.com
* - LinkedIn: www.linkedin.com
* - Amazon Cognito: \*.amazoncognito.com
* - OneLogin: \*.onelogin.com
* - Ping Identity: _.pingone.com, _.pingidentity.com
*/
allowed_domains?: Array<string>;
/**
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
* - { provider, auto: true } for external provider domain lookup
*/
credential?: ManagedAuthCreateRequest.Credential;
/**
* Interval in seconds between automatic health checks. When set, the system
* periodically verifies the authentication status and triggers re-authentication
* if needed. Maximum is 86400 (24 hours). Default is 3600 (1 hour). The minimum
* depends on your plan: Enterprise: 300 (5 minutes), Startup: 1200 (20 minutes),
* Hobbyist: 3600 (1 hour).
*/
health_check_interval?: number;
/**
* Optional login page URL to skip discovery
*/
login_url?: string;
/**
* Proxy selection. Provide either id or name. The proxy must belong to the
* caller's org.
*/
proxy?: ManagedAuthCreateRequest.Proxy;
/**
* Whether to save credentials after every successful login. Defaults to true.
* One-time codes (TOTP, SMS, etc.) are not saved.
*/
save_credentials?: boolean;
}
export namespace ManagedAuthCreateRequest {
/**
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
* - { provider, auto: true } for external provider domain lookup
*/
export interface Credential {
/**
* If true, lookup by domain from the specified provider
*/
auto?: boolean;
/**
* Kernel credential name
*/
name?: string;
/**
* Provider-specific path (e.g., "VaultName/ItemName" for 1Password)
*/
path?: string;
/**
* External provider name (e.g., "my-1p")
*/
provider?: string;
}
/**
* Proxy selection. Provide either id or name. The proxy must belong to the
* caller's org.
*/
export interface Proxy {
/**
* Proxy ID
*/
id?: string;
/**
* Proxy name
*/
name?: string;
}
}
/**
* Request to update an auth connection's configuration
*/
export interface ManagedAuthUpdateRequest {
/**
* Additional domains valid for this auth flow (replaces existing list)
*/
allowed_domains?: Array<string>;
/**
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
* - { provider, auto: true } for external provider domain lookup
*/
credential?: ManagedAuthUpdateRequest.Credential;
/**
* Interval in seconds between automatic health checks
*/
health_check_interval?: number;
/**
* Login page URL. Set to empty string to clear.
*/
login_url?: string;
/**
* Proxy selection. Provide either id or name. The proxy must belong to the
* caller's org.
*/
proxy?: ManagedAuthUpdateRequest.Proxy;
/**
* Whether to save credentials after every successful login
*/
save_credentials?: boolean;
}
export namespace ManagedAuthUpdateRequest {
/**
* Reference to credentials for the auth connection. Use one of:
*
* - { name } for Kernel credentials
* - { provider, path } for external provider item
* - { provider, auto: true } for external provider domain lookup
*/
export interface Credential {
/**
* If true, lookup by domain from the specified provider
*/
auto?: boolean;
/**
* Kernel credential name
*/
name?: string;
/**
* Provider-specific path (e.g., "VaultName/ItemName" for 1Password)
*/
path?: string;
/**
* External provider name (e.g., "my-1p")
*/
provider?: string;
}
/**
* Proxy selection. Provide either id or name. The proxy must belong to the
* caller's org.
*/
export interface Proxy {
/**
* Proxy ID
*/
id?: string;
/**
* Proxy name
*/
name?: string;
}
}
/**
* Request to submit field values, click an SSO button, select an MFA method, or
* select a sign-in option. Provide exactly one of fields, sso_button_selector,
* sso_provider, mfa_option_id, or sign_in_option_id.
*/
export interface SubmitFieldsRequest {
/**
* Map of field name to value
*/
fields?: { [key: string]: string };
/**
* The MFA method type to select (when mfa_options were returned)
*/
mfa_option_id?: string;
/**
* The sign-in option ID to select (when sign_in_options were returned)
*/
sign_in_option_id?: string;
/**
* XPath selector for the SSO button to click (ODA). Use sso_provider instead for
* CUA.
*/
sso_button_selector?: string;
/**
* SSO provider to click, matching the provider field from pending_sso_buttons
* (e.g., "google", "github"). Cannot be used with sso_button_selector.
*/
sso_provider?: string;
}
/**
* Response from submitting field values
*/
export interface SubmitFieldsResponse {
/**
* Whether the submission was accepted for processing
*/
accepted: boolean;
}
/**
* Union type representing any managed auth event.
*/
export type ConnectionFollowResponse =
| ConnectionFollowResponse.ManagedAuthStateEvent
| Shared.ErrorEvent
| Shared.HeartbeatEvent;
export namespace ConnectionFollowResponse {
/**
* An event representing the current state of a managed auth flow.
*/
export interface ManagedAuthStateEvent {
/**
* Event type identifier (always "managed_auth_state").
*/
event: 'managed_auth_state';
/**
* Current flow status.
*/
flow_status: 'IN_PROGRESS' | 'SUCCESS' | 'FAILED' | 'EXPIRED' | 'CANCELED';
/**
* Current step in the flow.
*/
flow_step: 'DISCOVERING' | 'AWAITING_INPUT' | 'AWAITING_EXTERNAL_ACTION' | 'SUBMITTING' | 'COMPLETED';
/**
* Time the state was reported.
*/
timestamp: string;
/**
* Fields awaiting input (present when flow_step=AWAITING_INPUT).
*/
discovered_fields?: Array<ManagedAuthStateEvent.DiscoveredField>;
/**
* Machine-readable error code (present when flow_status=FAILED).
*/
error_code?: string;
/**
* Error message (present when flow_status=FAILED).
*/
error_message?: string;
/**
* Instructions for external action (present when
* flow_step=AWAITING_EXTERNAL_ACTION).
*/
external_action_message?: string;
/**
* Type of the current flow.
*/
flow_type?: 'LOGIN' | 'REAUTH';
/**
* URL to redirect user to for hosted login.
*/
hosted_url?: string;
/**
* Browser live view URL for debugging.
*/
live_view_url?: string;
/**
* MFA method options (present when flow_step=AWAITING_INPUT and MFA selection
* required).
*/
mfa_options?: Array<ManagedAuthStateEvent.MfaOption>;
/**
* SSO buttons available (present when flow_step=AWAITING_INPUT).
*/
pending_sso_buttons?: Array<ManagedAuthStateEvent.PendingSSOButton>;
/**
* URL where the browser landed after successful login.
*/
post_login_url?: string;
/**
* Non-MFA choices presented during the auth flow, such as account selection or org
* pickers (present when flow_step=AWAITING_INPUT).
*/
sign_in_options?: Array<ManagedAuthStateEvent.SignInOption>;
/**
* Visible error message from the website (e.g., 'Incorrect password'). Present
* when the website displays an error during login.
*/
website_error?: string;
}
export namespace ManagedAuthStateEvent {
/**
* A discovered form field
*/
export interface DiscoveredField {
/**
* Field label
*/
label: string;
/**
* Field name
*/
name: string;
/**
* CSS selector for the field
*/
selector: string;
/**
* Field type
*/
type: 'text' | 'email' | 'password' | 'tel' | 'number' | 'url' | 'code' | 'totp';
/**
* If this field is associated with an MFA option, the type of that option (e.g.,
* password field linked to "Enter password" option)
*/
linked_mfa_type?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | null;
/**
* Field placeholder
*/
placeholder?: string;
/**
* Whether field is required
*/
required?: boolean;
}
/**
* An MFA method option for verification
*/
export interface MfaOption {
/**
* The visible option text
*/
label: string;
/**
* The MFA delivery method type (includes password for auth method selection pages)
*/
type: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password';
/**
* Additional instructions from the site
*/
description?: string | null;
/**
* The masked destination (phone/email) if shown
*/
target?: string | null;
}
/**
* An SSO button for signing in with an external identity provider
*/
export interface PendingSSOButton {
/**
* Visible button text
*/
label: string;
/**
* Identity provider name
*/
provider: string;
/**
* XPath selector for the button
*/
selector: string;
}
/**
* A non-MFA choice presented during the auth flow (e.g. account selection, org
* picker)
*/
export interface SignInOption {
/**
* Unique identifier for this option (used to submit selection back)
*/
id: string;
/**
* Display text for the option
*/
label: string;
/**
* Additional context such as email address or org name
*/
description?: string | null;
}
}
}
export interface ConnectionCreateParams {
/**
* Domain for authentication
*/
domain: string;
/**
* Name of the profile to manage authentication for. If the profile does not exist,
* it is created automatically.
*/
profile_name: string;
/**
* Additional domains valid for this auth flow (besides the primary domain). Useful
* when login pages redirect to different domains.
*
* The following SSO/OAuth provider domains are automatically allowed by default
* and do not need to be specified:
*
* - Google: accounts.google.com
* - Microsoft/Azure AD: login.microsoftonline.com, login.live.com
* - Okta: _.okta.com, _.oktapreview.com
* - Auth0: _.auth0.com, _.us.auth0.com, _.eu.auth0.com, _.au.auth0.com