@aepstore-dev/contracts 1.102.0 → 1.103.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/gen/auth.d.ts +2 -5
- package/gen/auth.ts +2 -5
- package/package.json +1 -1
- package/proto/auth.proto +4 -3
package/gen/auth.d.ts
CHANGED
|
@@ -96,11 +96,8 @@ export interface DeletePasskeyRequest {
|
|
|
96
96
|
passkeyId: string;
|
|
97
97
|
}
|
|
98
98
|
export interface GeneratePasskeyAuthenticationOptionsRequest {
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
* not implement passkey-first/account-discovery registration.
|
|
102
|
-
*/
|
|
103
|
-
credentials: string;
|
|
99
|
+
userAgent: string;
|
|
100
|
+
ip: string;
|
|
104
101
|
}
|
|
105
102
|
export interface VerifyPasskeyAuthenticationRequest {
|
|
106
103
|
challengeId: string;
|
package/gen/auth.ts
CHANGED
|
@@ -120,11 +120,8 @@ export interface DeletePasskeyRequest {
|
|
|
120
120
|
}
|
|
121
121
|
|
|
122
122
|
export interface GeneratePasskeyAuthenticationOptionsRequest {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
* not implement passkey-first/account-discovery registration.
|
|
126
|
-
*/
|
|
127
|
-
credentials: string;
|
|
123
|
+
userAgent: string;
|
|
124
|
+
ip: string;
|
|
128
125
|
}
|
|
129
126
|
|
|
130
127
|
export interface VerifyPasskeyAuthenticationRequest {
|
package/package.json
CHANGED
package/proto/auth.proto
CHANGED
|
@@ -142,9 +142,10 @@ message DeletePasskeyRequest {
|
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
message GeneratePasskeyAuthenticationOptionsRequest {
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
string
|
|
145
|
+
reserved 1;
|
|
146
|
+
reserved "credentials";
|
|
147
|
+
string user_agent = 2;
|
|
148
|
+
string ip = 3;
|
|
148
149
|
}
|
|
149
150
|
|
|
150
151
|
message VerifyPasskeyAuthenticationRequest {
|