@loginid/websdk3 3.0.7 → 3.0.8-next.1
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/index.cjs +1 -1
- package/dist/index.d.cts +51 -309
- package/dist/index.d.ts +51 -309
- package/dist/index.global.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -246,6 +246,10 @@ type DeviceInfo = {
|
|
|
246
246
|
* An unique device identifier
|
|
247
247
|
*/
|
|
248
248
|
deviceId?: string;
|
|
249
|
+
/**
|
|
250
|
+
* Last use timestamp in rfc3339 format
|
|
251
|
+
*/
|
|
252
|
+
lastUsedAt?: string;
|
|
249
253
|
/**
|
|
250
254
|
* OS architecture
|
|
251
255
|
*/
|
|
@@ -266,6 +270,10 @@ type DeviceInfo = {
|
|
|
266
270
|
* Screen width in pixels
|
|
267
271
|
*/
|
|
268
272
|
screenWidth?: number;
|
|
273
|
+
/**
|
|
274
|
+
* A trust identifier
|
|
275
|
+
*/
|
|
276
|
+
trustId?: string;
|
|
269
277
|
};
|
|
270
278
|
|
|
271
279
|
type AuthInitRequestBody = {
|
|
@@ -278,18 +286,26 @@ type JWT = {
|
|
|
278
286
|
/**
|
|
279
287
|
* Device ID
|
|
280
288
|
*/
|
|
281
|
-
|
|
289
|
+
deviceId?: string;
|
|
282
290
|
/**
|
|
283
291
|
* JWT access token
|
|
284
292
|
*/
|
|
285
293
|
jwtAccess: string;
|
|
294
|
+
/**
|
|
295
|
+
* Passkey ID
|
|
296
|
+
*/
|
|
297
|
+
passkeyId?: string;
|
|
298
|
+
/**
|
|
299
|
+
* User ID
|
|
300
|
+
*/
|
|
301
|
+
userId: string;
|
|
286
302
|
};
|
|
287
303
|
|
|
288
304
|
declare class AuthService {
|
|
289
305
|
readonly httpRequest: BaseHttpRequest;
|
|
290
306
|
constructor(httpRequest: BaseHttpRequest);
|
|
291
307
|
/**
|
|
292
|
-
* Complete WebAuthn
|
|
308
|
+
* Complete WebAuthn authentication
|
|
293
309
|
* @returns JWT OK response.
|
|
294
310
|
* @throws ApiError
|
|
295
311
|
*/
|
|
@@ -297,7 +313,7 @@ declare class AuthService {
|
|
|
297
313
|
requestBody: AuthCompleteRequestBody;
|
|
298
314
|
}): CancelablePromise<JWT>;
|
|
299
315
|
/**
|
|
300
|
-
* Start WebAuthn
|
|
316
|
+
* Start WebAuthn authentication flow
|
|
301
317
|
* @returns AuthInit OK response.
|
|
302
318
|
* @throws ApiError
|
|
303
319
|
*/
|
|
@@ -353,53 +369,30 @@ declare class AuthService {
|
|
|
353
369
|
}): CancelablePromise<JWT>;
|
|
354
370
|
}
|
|
355
371
|
|
|
356
|
-
type
|
|
372
|
+
type Aaguid = {
|
|
357
373
|
/**
|
|
358
|
-
*
|
|
374
|
+
* Dark Icon of the AAGUID Vendor
|
|
359
375
|
*/
|
|
360
|
-
|
|
376
|
+
iconDark: string;
|
|
361
377
|
/**
|
|
362
|
-
*
|
|
378
|
+
* Light Icon of the AAGUID Vendor
|
|
363
379
|
*/
|
|
364
|
-
|
|
365
|
-
};
|
|
366
|
-
|
|
367
|
-
type GrantCreateResponseBody = {
|
|
380
|
+
iconLight: string;
|
|
368
381
|
/**
|
|
369
|
-
*
|
|
382
|
+
* AAGUID
|
|
370
383
|
*/
|
|
371
|
-
|
|
372
|
-
};
|
|
373
|
-
|
|
374
|
-
type TokenVerifyRequestBody = {
|
|
384
|
+
id: string;
|
|
375
385
|
/**
|
|
376
|
-
*
|
|
386
|
+
* Name of the AAGUID Vendor
|
|
377
387
|
*/
|
|
378
|
-
|
|
388
|
+
name: string;
|
|
379
389
|
};
|
|
380
390
|
|
|
381
|
-
|
|
382
|
-
readonly httpRequest: BaseHttpRequest;
|
|
383
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
384
|
-
/**
|
|
385
|
-
* Create an authorization token with requested scopes
|
|
386
|
-
* @returns GrantCreateResponseBody OK response.
|
|
387
|
-
* @throws ApiError
|
|
388
|
-
*/
|
|
389
|
-
mgmtGrantCreate({ requestBody, }: {
|
|
390
|
-
requestBody: GrantCreateRequestBody;
|
|
391
|
-
}): CancelablePromise<GrantCreateResponseBody>;
|
|
391
|
+
type Passkey = {
|
|
392
392
|
/**
|
|
393
|
-
*
|
|
394
|
-
* @returns void
|
|
395
|
-
* @throws ApiError
|
|
393
|
+
* AAGUID of passkey provider
|
|
396
394
|
*/
|
|
397
|
-
|
|
398
|
-
requestBody: TokenVerifyRequestBody;
|
|
399
|
-
}): CancelablePromise<void>;
|
|
400
|
-
}
|
|
401
|
-
|
|
402
|
-
type Passkey = {
|
|
395
|
+
aaguid: string;
|
|
403
396
|
/**
|
|
404
397
|
* Timestamp in RFC3339 format.
|
|
405
398
|
*/
|
|
@@ -409,17 +402,22 @@ type Passkey = {
|
|
|
409
402
|
*/
|
|
410
403
|
credentialSynced?: boolean;
|
|
411
404
|
/**
|
|
412
|
-
*
|
|
405
|
+
* Internal passkey ID that uniquely identifies a passkey
|
|
413
406
|
*/
|
|
414
|
-
|
|
407
|
+
id: string;
|
|
415
408
|
/**
|
|
416
|
-
*
|
|
409
|
+
* Last use timestamp in rfc3339 format
|
|
417
410
|
*/
|
|
418
|
-
|
|
411
|
+
lastUsedAt?: string;
|
|
412
|
+
lastUsedFromDevice?: DeviceInfo;
|
|
419
413
|
/**
|
|
420
414
|
* Name of the passkey
|
|
421
415
|
*/
|
|
422
416
|
name: string;
|
|
417
|
+
/**
|
|
418
|
+
* Name of the passkey provider
|
|
419
|
+
*/
|
|
420
|
+
providerName?: string;
|
|
423
421
|
};
|
|
424
422
|
|
|
425
423
|
type PasskeyCollection = Array<Passkey>;
|
|
@@ -435,7 +433,7 @@ declare class PasskeysService {
|
|
|
435
433
|
readonly httpRequest: BaseHttpRequest;
|
|
436
434
|
constructor(httpRequest: BaseHttpRequest);
|
|
437
435
|
/**
|
|
438
|
-
* List passkeys
|
|
436
|
+
* List passkeys of the user
|
|
439
437
|
* @returns PasskeyCollection OK response.
|
|
440
438
|
* @throws ApiError
|
|
441
439
|
*/
|
|
@@ -476,114 +474,21 @@ declare class PasskeysService {
|
|
|
476
474
|
*/
|
|
477
475
|
authorization?: string;
|
|
478
476
|
}): CancelablePromise<void>;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
|
-
type ProfileEmailUpdateRequestBody = {
|
|
482
|
-
/**
|
|
483
|
-
* Email address
|
|
484
|
-
*/
|
|
485
|
-
email: string;
|
|
486
477
|
/**
|
|
487
|
-
*
|
|
488
|
-
*
|
|
489
|
-
*/
|
|
490
|
-
requestVerification?: boolean;
|
|
491
|
-
};
|
|
492
|
-
|
|
493
|
-
type ProfilePhoneUpdateRequestBody = {
|
|
494
|
-
/**
|
|
495
|
-
* Whether the user consents to receiving SMS messages on this number. The phone
|
|
496
|
-
* will not be used for sending messages if no consent is provided.
|
|
497
|
-
*/
|
|
498
|
-
messagingConsent?: boolean;
|
|
499
|
-
/**
|
|
500
|
-
* Phone number
|
|
501
|
-
*/
|
|
502
|
-
phoneNumber: string;
|
|
503
|
-
/**
|
|
504
|
-
* Whether to update the phone number immediately or send an authorization code
|
|
505
|
-
* to verify. This method will fail if verification is requested but no consent
|
|
506
|
-
* is provided.
|
|
507
|
-
*/
|
|
508
|
-
requestVerification?: boolean;
|
|
509
|
-
};
|
|
510
|
-
|
|
511
|
-
type ProfilePhoneVerifyRequestBody = {
|
|
512
|
-
/**
|
|
513
|
-
* Verification code
|
|
514
|
-
*/
|
|
515
|
-
authCode: string;
|
|
516
|
-
/**
|
|
517
|
-
* Username associated with the code
|
|
518
|
-
*/
|
|
519
|
-
username: string;
|
|
520
|
-
};
|
|
521
|
-
|
|
522
|
-
declare class ProfileService {
|
|
523
|
-
readonly httpRequest: BaseHttpRequest;
|
|
524
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
525
|
-
/**
|
|
526
|
-
* Delete a user profile and all associated passkey
|
|
527
|
-
* @returns void
|
|
528
|
-
* @throws ApiError
|
|
529
|
-
*/
|
|
530
|
-
profileProfileDelete({ id, }: {
|
|
531
|
-
/**
|
|
532
|
-
* Internal user identifier
|
|
533
|
-
*/
|
|
534
|
-
id: string;
|
|
535
|
-
}): CancelablePromise<void>;
|
|
536
|
-
/**
|
|
537
|
-
* Update profile email address
|
|
538
|
-
* @returns void
|
|
539
|
-
* @throws ApiError
|
|
540
|
-
*/
|
|
541
|
-
profileProfileEmailUpdate({ id, requestBody, }: {
|
|
542
|
-
/**
|
|
543
|
-
* Internal user identifier
|
|
544
|
-
*/
|
|
545
|
-
id: string;
|
|
546
|
-
requestBody: ProfileEmailUpdateRequestBody;
|
|
547
|
-
}): CancelablePromise<void>;
|
|
548
|
-
/**
|
|
549
|
-
* Delete phone from the profile
|
|
550
|
-
* @returns void
|
|
478
|
+
* Get AAGUID Metadata
|
|
479
|
+
* @returns Aaguid OK response.
|
|
551
480
|
* @throws ApiError
|
|
552
481
|
*/
|
|
553
|
-
|
|
482
|
+
passkeysAaguidMetadata({ aaguid, authorization, }: {
|
|
554
483
|
/**
|
|
555
|
-
*
|
|
484
|
+
* AAGUID identifier
|
|
556
485
|
*/
|
|
557
|
-
|
|
558
|
-
}): CancelablePromise<void>;
|
|
559
|
-
/**
|
|
560
|
-
* Update the profile phone number
|
|
561
|
-
* @returns void
|
|
562
|
-
* @throws ApiError
|
|
563
|
-
*/
|
|
564
|
-
profileProfilePhoneUpdate({ id, requestBody, }: {
|
|
486
|
+
aaguid: string;
|
|
565
487
|
/**
|
|
566
|
-
*
|
|
488
|
+
* JWT Authorization header
|
|
567
489
|
*/
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
}): CancelablePromise<void>;
|
|
571
|
-
/**
|
|
572
|
-
* Verify phone number with received authorization code
|
|
573
|
-
* @returns void
|
|
574
|
-
* @throws ApiError
|
|
575
|
-
*/
|
|
576
|
-
profileProfileEmailVerify({ requestBody, }: {
|
|
577
|
-
requestBody: ProfilePhoneVerifyRequestBody;
|
|
578
|
-
}): CancelablePromise<void>;
|
|
579
|
-
/**
|
|
580
|
-
* Verify phone number with received authorization code
|
|
581
|
-
* @returns void
|
|
582
|
-
* @throws ApiError
|
|
583
|
-
*/
|
|
584
|
-
profileProfilePhoneVerify({ requestBody, }: {
|
|
585
|
-
requestBody: ProfilePhoneVerifyRequestBody;
|
|
586
|
-
}): CancelablePromise<void>;
|
|
490
|
+
authorization?: string;
|
|
491
|
+
}): CancelablePromise<Aaguid>;
|
|
587
492
|
}
|
|
588
493
|
|
|
589
494
|
type CreationResult = {
|
|
@@ -766,14 +671,6 @@ type RegInitRequestBody = {
|
|
|
766
671
|
app: Application;
|
|
767
672
|
deviceInfo: DeviceInfo;
|
|
768
673
|
passkeyOptions?: PasskeyOptions$1;
|
|
769
|
-
/**
|
|
770
|
-
* An opaque object containing user data. It is used in place of "user" attribute
|
|
771
|
-
* for creating passkeys for pre-authorized users ("user" attribute is ignored if
|
|
772
|
-
* session is present). The value of this attribute is generated by this service
|
|
773
|
-
* and require backend integration for obtaining it. This value is time sensitive
|
|
774
|
-
* and has rather short expiry.
|
|
775
|
-
*/
|
|
776
|
-
session?: string;
|
|
777
674
|
user?: User;
|
|
778
675
|
};
|
|
779
676
|
|
|
@@ -902,91 +799,12 @@ declare class TxService {
|
|
|
902
799
|
}): CancelablePromise<TxInit>;
|
|
903
800
|
}
|
|
904
801
|
|
|
905
|
-
type Version3 = {
|
|
906
|
-
/**
|
|
907
|
-
* Version hash
|
|
908
|
-
*/
|
|
909
|
-
hash?: string;
|
|
910
|
-
/**
|
|
911
|
-
* Software version
|
|
912
|
-
*/
|
|
913
|
-
version: string;
|
|
914
|
-
};
|
|
915
|
-
|
|
916
|
-
declare class VersionService {
|
|
917
|
-
readonly httpRequest: BaseHttpRequest;
|
|
918
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
919
|
-
/**
|
|
920
|
-
* Show software version
|
|
921
|
-
* @returns Version3 OK response.
|
|
922
|
-
* @throws ApiError
|
|
923
|
-
*/
|
|
924
|
-
versionVersionShow(): CancelablePromise<Version3>;
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
/**
|
|
928
|
-
* JWK
|
|
929
|
-
*/
|
|
930
|
-
type ResultKey = {
|
|
931
|
-
/**
|
|
932
|
-
* Algorithm used
|
|
933
|
-
*/
|
|
934
|
-
alg: string;
|
|
935
|
-
/**
|
|
936
|
-
* Curve used
|
|
937
|
-
*/
|
|
938
|
-
crv?: string;
|
|
939
|
-
/**
|
|
940
|
-
* Key operations
|
|
941
|
-
*/
|
|
942
|
-
key_ops: Array<string>;
|
|
943
|
-
/**
|
|
944
|
-
* Key Identifier
|
|
945
|
-
*/
|
|
946
|
-
kid: string;
|
|
947
|
-
/**
|
|
948
|
-
* Key Type
|
|
949
|
-
*/
|
|
950
|
-
kty: string;
|
|
951
|
-
/**
|
|
952
|
-
* Intended use of the key
|
|
953
|
-
*/
|
|
954
|
-
use: string;
|
|
955
|
-
/**
|
|
956
|
-
* X coordinate of the elliptic curve public key
|
|
957
|
-
*/
|
|
958
|
-
'x'?: string;
|
|
959
|
-
/**
|
|
960
|
-
* Y coordinate of the elliptic curve public key
|
|
961
|
-
*/
|
|
962
|
-
'y'?: string;
|
|
963
|
-
};
|
|
964
|
-
|
|
965
|
-
type WellKnownJwks = {
|
|
966
|
-
keys?: Array<ResultKey>;
|
|
967
|
-
};
|
|
968
|
-
|
|
969
|
-
declare class WellKnownService {
|
|
970
|
-
readonly httpRequest: BaseHttpRequest;
|
|
971
|
-
constructor(httpRequest: BaseHttpRequest);
|
|
972
|
-
/**
|
|
973
|
-
* JWKS for auth token validation
|
|
974
|
-
* @returns WellKnownJwks OK response.
|
|
975
|
-
* @throws ApiError
|
|
976
|
-
*/
|
|
977
|
-
wellKnownJwks(): CancelablePromise<WellKnownJwks>;
|
|
978
|
-
}
|
|
979
|
-
|
|
980
802
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
981
803
|
declare class LoginIDService {
|
|
982
804
|
readonly auth: AuthService;
|
|
983
|
-
readonly mgmt: MgmtService;
|
|
984
805
|
readonly passkeys: PasskeysService;
|
|
985
|
-
readonly profile: ProfileService;
|
|
986
806
|
readonly reg: RegService;
|
|
987
807
|
readonly tx: TxService;
|
|
988
|
-
readonly version: VersionService;
|
|
989
|
-
readonly wellKnown: WellKnownService;
|
|
990
808
|
readonly request: BaseHttpRequest;
|
|
991
809
|
constructor(config?: Partial<OpenAPIConfig>, HttpRequest?: HttpRequestConstructor);
|
|
992
810
|
}
|
|
@@ -1013,17 +831,6 @@ type BadRequestError = {
|
|
|
1013
831
|
msgCode: string;
|
|
1014
832
|
};
|
|
1015
833
|
|
|
1016
|
-
type CodeResult = {
|
|
1017
|
-
/**
|
|
1018
|
-
* Generated code
|
|
1019
|
-
*/
|
|
1020
|
-
code: string;
|
|
1021
|
-
/**
|
|
1022
|
-
* Expiration time of the code
|
|
1023
|
-
*/
|
|
1024
|
-
expiresAt: string;
|
|
1025
|
-
};
|
|
1026
|
-
|
|
1027
834
|
type ForbiddenError = {
|
|
1028
835
|
msg: string;
|
|
1029
836
|
msgCode: string;
|
|
@@ -1039,57 +846,12 @@ type NotFoundError = {
|
|
|
1039
846
|
msgCode: string;
|
|
1040
847
|
};
|
|
1041
848
|
|
|
1042
|
-
type PublicKeyCredential$1 = {
|
|
1043
|
-
/**
|
|
1044
|
-
* This base64 encoded byte array contains the credential ID
|
|
1045
|
-
* of the public key credential the caller is referring to.
|
|
1046
|
-
*/
|
|
1047
|
-
id: string;
|
|
1048
|
-
/**
|
|
1049
|
-
* This enumeration defines hints as to how clients might communicate with a
|
|
1050
|
-
* particular authenticator in order to obtain an assertion for a specific
|
|
1051
|
-
* credential.
|
|
1052
|
-
*/
|
|
1053
|
-
transport?: 'usb' | 'nfc' | 'ble' | 'internal' | 'hybrid' | 'cable' | 'smart-card';
|
|
1054
|
-
/**
|
|
1055
|
-
* The type of the public key credential the caller is referring to.
|
|
1056
|
-
* The value SHOULD be a member of PublicKeyCredentialType but client
|
|
1057
|
-
* platforms MUST ignore any PublicKeyCredentialDescriptor with an unknown
|
|
1058
|
-
* type.
|
|
1059
|
-
*/
|
|
1060
|
-
type?: 'public-key';
|
|
1061
|
-
};
|
|
1062
|
-
|
|
1063
849
|
type UnauthorizedError = {
|
|
1064
850
|
msg: string;
|
|
1065
851
|
msgCode: string;
|
|
1066
852
|
};
|
|
1067
853
|
|
|
1068
|
-
type
|
|
1069
|
-
/**
|
|
1070
|
-
* Version hash
|
|
1071
|
-
*/
|
|
1072
|
-
hash?: string;
|
|
1073
|
-
/**
|
|
1074
|
-
* Software version
|
|
1075
|
-
*/
|
|
1076
|
-
version: string;
|
|
1077
|
-
};
|
|
1078
|
-
|
|
1079
|
-
/**
|
|
1080
|
-
* Version
|
|
1081
|
-
*/
|
|
1082
|
-
type Version2 = {
|
|
1083
|
-
/**
|
|
1084
|
-
* Version hash
|
|
1085
|
-
*/
|
|
1086
|
-
hash?: string;
|
|
1087
|
-
/**
|
|
1088
|
-
* Software version
|
|
1089
|
-
*/
|
|
1090
|
-
version: string;
|
|
1091
|
-
};
|
|
1092
|
-
|
|
854
|
+
type index_Aaguid = Aaguid;
|
|
1093
855
|
type index_ApiError = ApiError;
|
|
1094
856
|
declare const index_ApiError: typeof ApiError;
|
|
1095
857
|
type index_Application = Application;
|
|
@@ -1110,18 +872,13 @@ type index_CancelError = CancelError;
|
|
|
1110
872
|
declare const index_CancelError: typeof CancelError;
|
|
1111
873
|
type index_CancelablePromise<T> = CancelablePromise<T>;
|
|
1112
874
|
declare const index_CancelablePromise: typeof CancelablePromise;
|
|
1113
|
-
type index_CodeResult = CodeResult;
|
|
1114
875
|
type index_CreationResult = CreationResult;
|
|
1115
876
|
type index_DeviceInfo = DeviceInfo;
|
|
1116
877
|
type index_ForbiddenError = ForbiddenError;
|
|
1117
|
-
type index_GrantCreateRequestBody = GrantCreateRequestBody;
|
|
1118
|
-
type index_GrantCreateResponseBody = GrantCreateResponseBody;
|
|
1119
878
|
type index_InternalServerError = InternalServerError;
|
|
1120
879
|
type index_JWT = JWT;
|
|
1121
880
|
type index_LoginIDService = LoginIDService;
|
|
1122
881
|
declare const index_LoginIDService: typeof LoginIDService;
|
|
1123
|
-
type index_MgmtService = MgmtService;
|
|
1124
|
-
declare const index_MgmtService: typeof MgmtService;
|
|
1125
882
|
type index_NotFoundError = NotFoundError;
|
|
1126
883
|
declare const index_OpenAPI: typeof OpenAPI;
|
|
1127
884
|
type index_OpenAPIConfig = OpenAPIConfig;
|
|
@@ -1130,11 +887,6 @@ type index_PasskeyCollection = PasskeyCollection;
|
|
|
1130
887
|
type index_PasskeyRenameRequestBody = PasskeyRenameRequestBody;
|
|
1131
888
|
type index_PasskeysService = PasskeysService;
|
|
1132
889
|
declare const index_PasskeysService: typeof PasskeysService;
|
|
1133
|
-
type index_ProfileEmailUpdateRequestBody = ProfileEmailUpdateRequestBody;
|
|
1134
|
-
type index_ProfilePhoneUpdateRequestBody = ProfilePhoneUpdateRequestBody;
|
|
1135
|
-
type index_ProfilePhoneVerifyRequestBody = ProfilePhoneVerifyRequestBody;
|
|
1136
|
-
type index_ProfileService = ProfileService;
|
|
1137
|
-
declare const index_ProfileService: typeof ProfileService;
|
|
1138
890
|
type index_PubKeyCredentialDescriptor = PubKeyCredentialDescriptor;
|
|
1139
891
|
type index_PublicKeyCredentialCreationOptions = PublicKeyCredentialCreationOptions;
|
|
1140
892
|
type index_PublicKeyCredentialParameters = PublicKeyCredentialParameters;
|
|
@@ -1146,8 +898,6 @@ type index_RegInit = RegInit;
|
|
|
1146
898
|
type index_RegInitRequestBody = RegInitRequestBody;
|
|
1147
899
|
type index_RegService = RegService;
|
|
1148
900
|
declare const index_RegService: typeof RegService;
|
|
1149
|
-
type index_ResultKey = ResultKey;
|
|
1150
|
-
type index_TokenVerifyRequestBody = TokenVerifyRequestBody;
|
|
1151
901
|
type index_TxComplete = TxComplete;
|
|
1152
902
|
type index_TxCompleteRequestBody = TxCompleteRequestBody;
|
|
1153
903
|
type index_TxInit = TxInit;
|
|
@@ -1157,16 +907,8 @@ declare const index_TxService: typeof TxService;
|
|
|
1157
907
|
type index_UnauthorizedError = UnauthorizedError;
|
|
1158
908
|
type index_User = User;
|
|
1159
909
|
type index_UserLogin = UserLogin;
|
|
1160
|
-
type index_Version = Version;
|
|
1161
|
-
type index_Version2 = Version2;
|
|
1162
|
-
type index_Version3 = Version3;
|
|
1163
|
-
type index_VersionService = VersionService;
|
|
1164
|
-
declare const index_VersionService: typeof VersionService;
|
|
1165
|
-
type index_WellKnownJwks = WellKnownJwks;
|
|
1166
|
-
type index_WellKnownService = WellKnownService;
|
|
1167
|
-
declare const index_WellKnownService: typeof WellKnownService;
|
|
1168
910
|
declare namespace index {
|
|
1169
|
-
export { index_ApiError as ApiError, type index_Application as Application, type index_AuthCode as AuthCode, type index_AuthCodeRequestSMSRequestBody as AuthCodeRequestSMSRequestBody, type index_AuthCodeVerifyRequestBody as AuthCodeVerifyRequestBody, type index_AuthCompleteRequestBody as AuthCompleteRequestBody, type index_AuthInit as AuthInit, type index_AuthInitRequestBody as AuthInitRequestBody, index_AuthService as AuthService, type index_AuthenticatorAssertionResponse as AuthenticatorAssertionResponse, type index_AuthenticatorSelectionCriteria as AuthenticatorSelectionCriteria, type index_BadRequestError as BadRequestError, index_BaseHttpRequest as BaseHttpRequest, index_CancelError as CancelError, index_CancelablePromise as CancelablePromise, type
|
|
911
|
+
export { type index_Aaguid as Aaguid, index_ApiError as ApiError, type index_Application as Application, type index_AuthCode as AuthCode, type index_AuthCodeRequestSMSRequestBody as AuthCodeRequestSMSRequestBody, type index_AuthCodeVerifyRequestBody as AuthCodeVerifyRequestBody, type index_AuthCompleteRequestBody as AuthCompleteRequestBody, type index_AuthInit as AuthInit, type index_AuthInitRequestBody as AuthInitRequestBody, index_AuthService as AuthService, type index_AuthenticatorAssertionResponse as AuthenticatorAssertionResponse, type index_AuthenticatorSelectionCriteria as AuthenticatorSelectionCriteria, type index_BadRequestError as BadRequestError, index_BaseHttpRequest as BaseHttpRequest, index_CancelError as CancelError, index_CancelablePromise as CancelablePromise, type index_CreationResult as CreationResult, type index_DeviceInfo as DeviceInfo, type index_ForbiddenError as ForbiddenError, type index_InternalServerError as InternalServerError, type index_JWT as JWT, index_LoginIDService as LoginIDService, type index_NotFoundError as NotFoundError, index_OpenAPI as OpenAPI, type index_OpenAPIConfig as OpenAPIConfig, type index_Passkey as Passkey, type index_PasskeyCollection as PasskeyCollection, type PasskeyOptions$1 as PasskeyOptions, type index_PasskeyRenameRequestBody as PasskeyRenameRequestBody, index_PasskeysService as PasskeysService, type index_PubKeyCredentialDescriptor as PubKeyCredentialDescriptor, type index_PublicKeyCredentialCreationOptions as PublicKeyCredentialCreationOptions, type index_PublicKeyCredentialParameters as PublicKeyCredentialParameters, type index_PublicKeyCredentialRequestOptions as PublicKeyCredentialRequestOptions, type index_PublicKeyCredentialRpEntity as PublicKeyCredentialRpEntity, type index_PublicKeyCredentialUserEntity as PublicKeyCredentialUserEntity, type index_RegCompleteRequestBody as RegCompleteRequestBody, type index_RegInit as RegInit, type index_RegInitRequestBody as RegInitRequestBody, index_RegService as RegService, type index_TxComplete as TxComplete, type index_TxCompleteRequestBody as TxCompleteRequestBody, type index_TxInit as TxInit, type index_TxInitRequestBody as TxInitRequestBody, index_TxService as TxService, type index_UnauthorizedError as UnauthorizedError, type index_User as User, type index_UserLogin as UserLogin };
|
|
1170
912
|
}
|
|
1171
913
|
|
|
1172
914
|
type Complete<T> = {
|