@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 CHANGED
@@ -96,11 +96,8 @@ export interface DeletePasskeyRequest {
96
96
  passkeyId: string;
97
97
  }
98
98
  export interface GeneratePasskeyAuthenticationOptionsRequest {
99
- /**
100
- * Username or email. V1 requires an existing account identifier and does
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
- * Username or email. V1 requires an existing account identifier and does
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.102.0",
3
+ "version": "1.103.0",
4
4
  "description": "Protobuf definitions for aepstore microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/auth.proto CHANGED
@@ -142,9 +142,10 @@ message DeletePasskeyRequest {
142
142
  }
143
143
 
144
144
  message GeneratePasskeyAuthenticationOptionsRequest {
145
- // Username or email. V1 requires an existing account identifier and does
146
- // not implement passkey-first/account-discovery registration.
147
- string credentials = 1;
145
+ reserved 1;
146
+ reserved "credentials";
147
+ string user_agent = 2;
148
+ string ip = 3;
148
149
  }
149
150
 
150
151
  message VerifyPasskeyAuthenticationRequest {