账户系统完善,使用uuid+多identity记录

This commit is contained in:
2026-04-20 03:28:03 +00:00
parent d06b3ad38c
commit d2a059d57a
26 changed files with 832 additions and 431 deletions

View File

@@ -57,7 +57,7 @@ export type ProfileWalletLedgerResponse = {
export type ProfilePlayedWorkSummary = {
worldKey: string;
ownerUserId: string | null;
ownerAccountId: string | null;
profileId: string | null;
worldType: string | null;
worldTitle: string;
@@ -87,7 +87,7 @@ export type CustomWorldProfileRecord = JsonObject & {
};
export type CustomWorldLibraryEntry<TProfile = CustomWorldProfileRecord> = {
ownerUserId: string;
ownerAccountId: string;
profileId: string;
profile: TProfile;
visibility: CustomWorldPublicationStatus;
@@ -130,7 +130,7 @@ export type CustomWorldGalleryDetailResponse<
};
export type PlatformBrowseHistoryEntry = {
ownerUserId: string;
ownerAccountId: string;
profileId: string;
worldName: string;
subtitle: string;