@aepstore-dev/contracts 1.47.0 → 1.48.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/payments.d.ts +2 -0
- package/gen/payments.ts +2 -0
- package/gen/users.d.ts +9 -0
- package/gen/users.ts +9 -0
- package/package.json +1 -1
- package/proto/payments.proto +1 -0
- package/proto/users.proto +8 -0
package/gen/payments.d.ts
CHANGED
|
@@ -81,6 +81,8 @@ export interface CheckoutResponse {
|
|
|
81
81
|
confirmationUrl: string;
|
|
82
82
|
/** PENDING (redirect) | COMPLETED (balance) */
|
|
83
83
|
status: string;
|
|
84
|
+
/** poll via GetPaymentIntent for TOPUP / bind-card flows */
|
|
85
|
+
intentId: string;
|
|
84
86
|
}
|
|
85
87
|
export interface GetMyPurchasesRequest {
|
|
86
88
|
userId: string;
|
package/gen/payments.ts
CHANGED
|
@@ -98,6 +98,8 @@ export interface CheckoutResponse {
|
|
|
98
98
|
confirmationUrl: string;
|
|
99
99
|
/** PENDING (redirect) | COMPLETED (balance) */
|
|
100
100
|
status: string;
|
|
101
|
+
/** poll via GetPaymentIntent for TOPUP / bind-card flows */
|
|
102
|
+
intentId: string;
|
|
101
103
|
}
|
|
102
104
|
|
|
103
105
|
export interface GetMyPurchasesRequest {
|
package/gen/users.d.ts
CHANGED
|
@@ -503,6 +503,15 @@ export interface AccountSettingsResponse {
|
|
|
503
503
|
deletedAt: string;
|
|
504
504
|
scheduledForHardDelete: string;
|
|
505
505
|
socialMedia: SocialMedia[];
|
|
506
|
+
/**
|
|
507
|
+
* Premium customization snapshot — denormalised border image URL so the
|
|
508
|
+
* client can render the current overlay without a second roundtrip.
|
|
509
|
+
*/
|
|
510
|
+
avatarBorderId: string;
|
|
511
|
+
avatarBorderImageUrl: string;
|
|
512
|
+
animatedAvatarUrl: string;
|
|
513
|
+
animatedBannerUrl: string;
|
|
514
|
+
profileColor: string;
|
|
506
515
|
}
|
|
507
516
|
export declare const USERS_V1_PACKAGE_NAME = "users.v1";
|
|
508
517
|
export interface UsersServiceClient {
|
package/gen/users.ts
CHANGED
|
@@ -584,6 +584,15 @@ export interface AccountSettingsResponse {
|
|
|
584
584
|
deletedAt: string;
|
|
585
585
|
scheduledForHardDelete: string;
|
|
586
586
|
socialMedia: SocialMedia[];
|
|
587
|
+
/**
|
|
588
|
+
* Premium customization snapshot — denormalised border image URL so the
|
|
589
|
+
* client can render the current overlay without a second roundtrip.
|
|
590
|
+
*/
|
|
591
|
+
avatarBorderId: string;
|
|
592
|
+
avatarBorderImageUrl: string;
|
|
593
|
+
animatedAvatarUrl: string;
|
|
594
|
+
animatedBannerUrl: string;
|
|
595
|
+
profileColor: string;
|
|
587
596
|
}
|
|
588
597
|
|
|
589
598
|
export const USERS_V1_PACKAGE_NAME = "users.v1";
|
package/package.json
CHANGED
package/proto/payments.proto
CHANGED
|
@@ -130,6 +130,7 @@ message CheckoutResponse {
|
|
|
130
130
|
string payment_id = 2;
|
|
131
131
|
string confirmation_url = 3; // empty when paid from balance (instant)
|
|
132
132
|
string status = 4; // PENDING (redirect) | COMPLETED (balance)
|
|
133
|
+
string intent_id = 5; // poll via GetPaymentIntent for TOPUP / bind-card flows
|
|
133
134
|
}
|
|
134
135
|
|
|
135
136
|
message GetMyPurchasesRequest { string user_id = 1; int32 page = 2; int32 limit = 3; }
|
package/proto/users.proto
CHANGED
|
@@ -657,4 +657,12 @@ message AccountSettingsResponse {
|
|
|
657
657
|
string scheduled_for_hard_delete = 29;
|
|
658
658
|
|
|
659
659
|
repeated SocialMedia social_media = 30;
|
|
660
|
+
|
|
661
|
+
// Premium customization snapshot — denormalised border image URL so the
|
|
662
|
+
// client can render the current overlay without a second roundtrip.
|
|
663
|
+
string avatar_border_id = 31;
|
|
664
|
+
string avatar_border_image_url = 32;
|
|
665
|
+
string animated_avatar_url = 33;
|
|
666
|
+
string animated_banner_url = 34;
|
|
667
|
+
string profile_color = 35;
|
|
660
668
|
}
|