feat(private-zone): add paid video moments
Docker Image / Build and Push Docker Image (push) Successful in 2m5s

This commit is contained in:
Codex
2026-07-24 20:17:28 +08:00
parent 30ab2c2c97
commit 0d5b5c17fa
25 changed files with 1578 additions and 43 deletions
+11
View File
@@ -105,6 +105,17 @@ export class ApiPath {
);
}
/** 获取 Private Zone 付费视频朋友圈 */
static readonly privateZonePosts = apiContract.privateZonePosts.path;
/** 解锁单条 Private Zone 付费视频朋友圈 */
static privateZonePostUnlock(postId: string): string {
return apiContract.privateZonePostUnlock.path.replace(
"{postId}",
encodeURIComponent(postId),
);
}
// ============ 数据看板相关 ============
/** 上报 PWA 事件 */
static readonly metricsPwaEvent = apiContract.metricsPwaEvent.path;