- 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.
36 lines
808 B
JSON
36 lines
808 B
JSON
{
|
|
"name": "@customer-portal/logging",
|
|
"version": "1.0.0",
|
|
"description": "Centralized logging utilities for customer portal",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc -w --preserveWatchOutput",
|
|
"clean": "rm -rf dist",
|
|
"type-check": "tsc --noEmit",
|
|
"test": "echo \"No tests specified for logging package\"",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"dependencies": {
|
|
"pino": "^9.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|