@aepstore-dev/contracts 1.101.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/gen/users.d.ts CHANGED
@@ -700,6 +700,7 @@ export interface AccountSettingsResponse {
700
700
  payoutMethod: string;
701
701
  payoutDetails: string;
702
702
  premiumIsActive: boolean;
703
+ passkeyEnabled: boolean;
703
704
  /** Soft-delete state */
704
705
  deletedAt: string;
705
706
  scheduledForHardDelete: string;
package/gen/users.ts CHANGED
@@ -808,6 +808,7 @@ export interface AccountSettingsResponse {
808
808
  payoutMethod: string;
809
809
  payoutDetails: string;
810
810
  premiumIsActive: boolean;
811
+ passkeyEnabled: boolean;
811
812
  /** Soft-delete state */
812
813
  deletedAt: string;
813
814
  scheduledForHardDelete: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aepstore-dev/contracts",
3
- "version": "1.101.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 {
package/proto/users.proto CHANGED
@@ -871,9 +871,10 @@ message AccountSettingsResponse {
871
871
  reserved "premium_status", "premium_expires_at", "premium_auto_renew";
872
872
  reserved 36;
873
873
  bool premium_is_active = 37;
874
-
875
- // Soft-delete state
876
- string deleted_at = 28;
874
+ bool passkey_enabled = 38;
875
+
876
+ // Soft-delete state
877
+ string deleted_at = 28;
877
878
  string scheduled_for_hard_delete = 29;
878
879
 
879
880
  repeated SocialMedia social_media = 30;