- Updated address retrieval in user service to replace billing info with a dedicated address method. - Adjusted API endpoints to use `PATCH /api/me/address` for address updates instead of billing updates. - Enhanced documentation to reflect changes in address management processes and API usage. - Removed deprecated types and services related to billing address handling, streamlining the codebase.
12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
export function replayKey(channel: string): string {
|
|
return `sf:pe:replay:${channel}`;
|
|
}
|
|
|
|
export function statusKey(channel: string): string {
|
|
return `sf:pe:status:${channel}`;
|
|
}
|
|
|
|
export function latestSeenKey(channel: string): string {
|
|
return `sf:pe:latestSeen:${channel}`;
|
|
}
|