@aepstore-dev/contracts 1.47.1 → 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/users.d.ts +9 -0
- package/gen/users.ts +9 -0
- package/package.json +1 -1
- package/proto/users.proto +8 -0
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/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
|
}
|