@nest-omni/core 4.1.3-3 → 4.1.3-30
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/audit/audit.module.d.ts +1 -0
- package/audit/audit.module.js +51 -2
- package/audit/controllers/audit.controller.d.ts +57 -1
- package/audit/controllers/audit.controller.js +43 -0
- package/audit/decorators/audit-action.decorator.d.ts +74 -0
- package/audit/decorators/audit-action.decorator.js +42 -0
- package/audit/decorators/audit-controller.decorator.d.ts +1 -1
- package/audit/decorators/audit-controller.decorator.js +2 -2
- package/audit/decorators/audit-operation.decorator.d.ts +0 -7
- package/audit/decorators/audit-operation.decorator.js +0 -7
- package/audit/decorators/entity-audit.decorator.d.ts +78 -2
- package/audit/decorators/entity-audit.decorator.js +145 -4
- package/audit/decorators/index.d.ts +2 -0
- package/audit/decorators/index.js +2 -0
- package/audit/dto/audit-action-query.dto.d.ts +13 -0
- package/audit/dto/audit-action-query.dto.js +77 -0
- package/audit/dto/index.d.ts +1 -0
- package/audit/dto/index.js +1 -0
- package/audit/entities/audit-action-summary.entity.d.ts +23 -0
- package/audit/entities/audit-action-summary.entity.js +101 -0
- package/audit/entities/entity-audit-log.entity.d.ts +7 -2
- package/audit/entities/entity-audit-log.entity.js +45 -9
- package/audit/entities/entity-transaction.entity.d.ts +8 -2
- package/audit/entities/entity-transaction.entity.js +39 -3
- package/audit/entities/index.d.ts +3 -0
- package/audit/entities/index.js +3 -0
- package/audit/entities/manual-operation-log.entity.d.ts +0 -2
- package/audit/entities/manual-operation-log.entity.js +8 -9
- package/audit/enums/audit.enums.d.ts +14 -6
- package/audit/enums/audit.enums.js +18 -9
- package/audit/examples/decorator-value-mapping.example.d.ts +70 -0
- package/audit/examples/decorator-value-mapping.example.js +414 -0
- package/audit/index.d.ts +5 -1
- package/audit/index.js +29 -2
- package/audit/interceptors/audit-action.interceptor.d.ts +39 -0
- package/audit/interceptors/audit-action.interceptor.js +217 -0
- package/audit/interceptors/audit.interceptor.d.ts +1 -0
- package/audit/interceptors/audit.interceptor.js +19 -11
- package/audit/interceptors/index.d.ts +1 -0
- package/audit/interceptors/index.js +1 -0
- package/audit/interfaces/audit.interfaces.d.ts +132 -4
- package/audit/services/audit-action.service.d.ts +142 -0
- package/audit/services/audit-action.service.js +246 -0
- package/audit/services/audit-context.service.d.ts +91 -0
- package/audit/services/audit-context.service.js +170 -0
- package/audit/services/entity-audit.service.d.ts +220 -9
- package/audit/services/entity-audit.service.js +761 -72
- package/audit/services/index.d.ts +3 -0
- package/audit/services/index.js +3 -0
- package/audit/services/manual-audit-log.service.d.ts +23 -23
- package/audit/services/manual-audit-log.service.js +34 -57
- package/audit/services/multi-database.service.d.ts +0 -5
- package/audit/services/multi-database.service.js +0 -24
- package/audit/services/operation-description.service.d.ts +14 -3
- package/audit/services/operation-description.service.js +165 -26
- package/audit/services/transaction-audit.service.d.ts +1 -0
- package/audit/services/transaction-audit.service.js +12 -9
- package/audit/subscribers/entity-audit.subscriber.d.ts +5 -0
- package/audit/subscribers/entity-audit.subscriber.js +69 -5
- package/cache/cache.module.d.ts +7 -8
- package/cache/cache.module.js +15 -13
- package/cache/cache.service.d.ts +6 -4
- package/cache/cache.service.js +24 -12
- package/cache/decorators/cache-put.decorator.js +5 -4
- package/cache/dependencies/callback.dependency.js +9 -0
- package/cache/dependencies/db.dependency.d.ts +43 -12
- package/cache/dependencies/db.dependency.js +46 -18
- package/cache/dependencies/tag.dependency.d.ts +31 -4
- package/cache/dependencies/tag.dependency.js +100 -11
- package/cache/entities/index.d.ts +1 -0
- package/cache/entities/index.js +17 -0
- package/cache/entities/typeorm-cache.entity.d.ts +71 -0
- package/cache/entities/typeorm-cache.entity.js +110 -0
- package/cache/index.d.ts +2 -1
- package/cache/index.js +19 -2
- package/cache/interfaces/cache-options.interface.d.ts +8 -0
- package/cache/providers/index.d.ts +2 -1
- package/cache/providers/index.js +2 -1
- package/cache/providers/lrucache.provider.d.ts +77 -0
- package/cache/providers/lrucache.provider.js +228 -0
- package/cache/providers/redis-cache.provider.d.ts +1 -0
- package/cache/providers/redis-cache.provider.js +8 -6
- package/cache/providers/typeorm-cache.provider.d.ts +211 -0
- package/cache/providers/typeorm-cache.provider.js +483 -0
- package/common/boilerplate.polyfill.d.ts +1 -0
- package/common/boilerplate.polyfill.js +18 -1
- package/common/helpers/validation-metadata-helper.d.ts +112 -0
- package/common/helpers/validation-metadata-helper.js +164 -0
- package/common/index.d.ts +1 -0
- package/common/index.js +4 -0
- package/decorators/examples/field-i18n.example.d.ts +294 -0
- package/decorators/examples/field-i18n.example.js +478 -0
- package/decorators/field.decorators.d.ts +95 -3
- package/decorators/field.decorators.js +152 -18
- package/decorators/transform.decorators.d.ts +0 -2
- package/decorators/transform.decorators.js +0 -23
- package/decorators/translate.decorator.d.ts +26 -0
- package/decorators/translate.decorator.js +26 -1
- package/email-log/email-log.constants.d.ts +8 -0
- package/email-log/email-log.constants.js +11 -0
- package/email-log/email-log.module.d.ts +47 -0
- package/email-log/email-log.module.js +140 -0
- package/email-log/index.d.ts +11 -0
- package/email-log/index.js +48 -0
- package/email-log/interfaces/email-log-options.interface.d.ts +61 -0
- package/email-log/interfaces/email-log-options.interface.js +134 -0
- package/email-log/interfaces/email-log-transport.interface.d.ts +20 -0
- package/email-log/interfaces/email-log-transport.interface.js +2 -0
- package/email-log/interfaces/index.d.ts +2 -0
- package/email-log/interfaces/index.js +18 -0
- package/email-log/providers/email-provider.d.ts +42 -0
- package/email-log/providers/email-provider.js +127 -0
- package/email-log/providers/index.d.ts +1 -0
- package/email-log/providers/index.js +17 -0
- package/email-log/services/email-log-alert.service.d.ts +46 -0
- package/email-log/services/email-log-alert.service.js +162 -0
- package/email-log/services/email-log-formatter.service.d.ts +78 -0
- package/email-log/services/email-log-formatter.service.js +442 -0
- package/email-log/services/email-log-logger.service.d.ts +85 -0
- package/email-log/services/email-log-logger.service.js +168 -0
- package/email-log/services/email-log-rate-limiter.service.d.ts +42 -0
- package/email-log/services/email-log-rate-limiter.service.js +110 -0
- package/email-log/services/email-log-transport.service.d.ts +80 -0
- package/email-log/services/email-log-transport.service.js +271 -0
- package/email-log/services/index.d.ts +5 -0
- package/email-log/services/index.js +21 -0
- package/email-log/transports/index.d.ts +1 -0
- package/email-log/transports/index.js +17 -0
- package/email-log/transports/pino-email.transport.d.ts +56 -0
- package/email-log/transports/pino-email.transport.js +188 -0
- package/email-log/utils/index.d.ts +2 -0
- package/email-log/utils/index.js +18 -0
- package/email-log/utils/log-level.helper.d.ts +46 -0
- package/email-log/utils/log-level.helper.js +74 -0
- package/email-log/utils/pino-transport.utils.d.ts +135 -0
- package/email-log/utils/pino-transport.utils.js +238 -0
- package/file-upload/controllers/file-access.controller.d.ts +23 -0
- package/file-upload/controllers/file-access.controller.js +128 -0
- package/file-upload/decorators/column.decorator.d.ts +151 -0
- package/file-upload/decorators/column.decorator.js +273 -0
- package/file-upload/decorators/csv-data.decorator.d.ts +30 -0
- package/file-upload/decorators/csv-data.decorator.js +85 -0
- package/file-upload/decorators/csv-import.decorator.d.ts +34 -0
- package/file-upload/decorators/csv-import.decorator.js +24 -0
- package/file-upload/decorators/examples/column-mapping.example.d.ts +76 -0
- package/file-upload/decorators/examples/column-mapping.example.js +122 -0
- package/file-upload/decorators/excel-data.decorator.d.ts +30 -0
- package/file-upload/decorators/excel-data.decorator.js +85 -0
- package/file-upload/decorators/file-upload.decorator.d.ts +83 -0
- package/file-upload/decorators/file-upload.decorator.js +172 -0
- package/file-upload/decorators/index.d.ts +5 -0
- package/file-upload/decorators/index.js +38 -0
- package/file-upload/decorators/process.decorator.d.ts +40 -0
- package/file-upload/decorators/process.decorator.js +52 -0
- package/file-upload/decorators/validate-data.decorator.d.ts +91 -0
- package/file-upload/decorators/validate-data.decorator.js +39 -0
- package/file-upload/dto/create-file.dto.d.ts +24 -0
- package/file-upload/dto/create-file.dto.js +112 -0
- package/file-upload/dto/find-files.dto.d.ts +15 -0
- package/file-upload/dto/find-files.dto.js +76 -0
- package/file-upload/dto/index.d.ts +4 -0
- package/file-upload/dto/index.js +20 -0
- package/file-upload/dto/pagination.dto.d.ts +7 -0
- package/file-upload/dto/pagination.dto.js +39 -0
- package/file-upload/dto/update-file.dto.d.ts +15 -0
- package/file-upload/dto/update-file.dto.js +67 -0
- package/file-upload/entities/file-metadata.entity.d.ts +25 -0
- package/file-upload/entities/file-metadata.entity.js +76 -0
- package/file-upload/entities/file.entity.d.ts +114 -0
- package/file-upload/entities/file.entity.js +350 -0
- package/file-upload/entities/index.d.ts +2 -0
- package/file-upload/entities/index.js +18 -0
- package/file-upload/enums/file-type.enum.d.ts +72 -0
- package/file-upload/enums/file-type.enum.js +212 -0
- package/file-upload/exceptions/file-upload.exception.d.ts +57 -0
- package/file-upload/exceptions/file-upload.exception.js +120 -0
- package/file-upload/exceptions/index.d.ts +1 -0
- package/file-upload/exceptions/index.js +17 -0
- package/file-upload/file-upload.module.d.ts +89 -0
- package/file-upload/file-upload.module.js +292 -0
- package/file-upload/index.d.ts +37 -0
- package/file-upload/index.js +77 -0
- package/file-upload/interceptors/file-upload.interceptor.d.ts +101 -0
- package/file-upload/interceptors/file-upload.interceptor.js +594 -0
- package/file-upload/interceptors/index.d.ts +1 -0
- package/file-upload/interceptors/index.js +17 -0
- package/file-upload/interfaces/custom-file-type.interface.d.ts +72 -0
- package/file-upload/interfaces/custom-file-type.interface.js +2 -0
- package/file-upload/interfaces/file-buffer.interface.d.ts +72 -0
- package/file-upload/interfaces/file-buffer.interface.js +2 -0
- package/file-upload/interfaces/file-entity.interface.d.ts +142 -0
- package/file-upload/interfaces/file-entity.interface.js +28 -0
- package/file-upload/interfaces/file-metadata.interface.d.ts +21 -0
- package/file-upload/interfaces/file-metadata.interface.js +2 -0
- package/file-upload/interfaces/file-processor.interface.d.ts +93 -0
- package/file-upload/interfaces/file-processor.interface.js +2 -0
- package/file-upload/interfaces/file-upload-options.interface.d.ts +74 -0
- package/file-upload/interfaces/file-upload-options.interface.js +5 -0
- package/file-upload/interfaces/index.d.ts +7 -0
- package/file-upload/interfaces/index.js +24 -0
- package/file-upload/interfaces/processor-options.interface.d.ts +102 -0
- package/file-upload/interfaces/processor-options.interface.js +2 -0
- package/file-upload/interfaces/storage-provider.interface.d.ts +239 -0
- package/file-upload/interfaces/storage-provider.interface.js +2 -0
- package/file-upload/interfaces/upload-options.interface.d.ts +19 -0
- package/file-upload/interfaces/upload-options.interface.js +2 -0
- package/file-upload/processors/csv.processor.d.ts +98 -0
- package/file-upload/processors/csv.processor.js +391 -0
- package/file-upload/processors/excel.processor.d.ts +130 -0
- package/file-upload/processors/excel.processor.js +547 -0
- package/file-upload/processors/image.processor.d.ts +199 -0
- package/file-upload/processors/image.processor.js +377 -0
- package/file-upload/providers/index.d.ts +2 -0
- package/file-upload/providers/index.js +18 -0
- package/file-upload/providers/local-storage.provider.d.ts +98 -0
- package/file-upload/providers/local-storage.provider.js +484 -0
- package/file-upload/providers/s3-storage.provider.d.ts +87 -0
- package/file-upload/providers/s3-storage.provider.js +455 -0
- package/file-upload/services/file-signature-validator.service.d.ts +118 -0
- package/file-upload/services/file-signature-validator.service.js +376 -0
- package/file-upload/services/file.service.d.ts +193 -0
- package/file-upload/services/file.service.js +638 -0
- package/file-upload/services/index.d.ts +4 -0
- package/file-upload/services/index.js +20 -0
- package/file-upload/services/malicious-file-detector.service.d.ts +300 -0
- package/file-upload/services/malicious-file-detector.service.js +1234 -0
- package/file-upload/services/mime-registry.service.d.ts +47 -0
- package/file-upload/services/mime-registry.service.js +167 -0
- package/file-upload/utils/checksum.util.d.ts +28 -0
- package/file-upload/utils/checksum.util.js +65 -0
- package/file-upload/utils/dynamic-import.util.d.ts +54 -0
- package/file-upload/utils/dynamic-import.util.js +156 -0
- package/file-upload/utils/filename.util.d.ts +59 -0
- package/file-upload/utils/filename.util.js +184 -0
- package/file-upload/utils/filepath.util.d.ts +70 -0
- package/file-upload/utils/filepath.util.js +152 -0
- package/file-upload/utils/index.d.ts +4 -0
- package/file-upload/utils/index.js +20 -0
- package/filters/bad-request.filter.d.ts +9 -0
- package/filters/bad-request.filter.js +57 -16
- package/http-client/config/http-client.config.d.ts +5 -0
- package/http-client/config/http-client.config.js +27 -14
- package/http-client/decorators/http-client.decorators.d.ts +7 -28
- package/http-client/decorators/http-client.decorators.js +124 -99
- package/http-client/entities/http-log.entity.d.ts +0 -20
- package/http-client/entities/http-log.entity.js +1 -21
- package/http-client/examples/advanced-usage.example.d.ts +4 -5
- package/http-client/examples/advanced-usage.example.js +7 -59
- package/http-client/examples/axios-config-extended.example.d.ts +17 -0
- package/http-client/examples/axios-config-extended.example.js +311 -0
- package/http-client/examples/flexible-response-example.d.ts +28 -0
- package/http-client/examples/flexible-response-example.js +120 -0
- package/http-client/examples/index.d.ts +2 -0
- package/http-client/examples/index.js +2 -0
- package/http-client/examples/proxy-from-environment.example.d.ts +133 -0
- package/http-client/examples/proxy-from-environment.example.js +409 -0
- package/http-client/examples/ssl-certificate.example.d.ts +47 -0
- package/http-client/examples/ssl-certificate.example.js +432 -0
- package/http-client/http-client.module.d.ts +43 -2
- package/http-client/http-client.module.js +150 -90
- package/http-client/index.d.ts +1 -1
- package/http-client/interfaces/api-client-config.interface.d.ts +24 -103
- package/http-client/interfaces/http-client-config.interface.d.ts +137 -62
- package/http-client/services/api-client-registry.service.d.ts +8 -21
- package/http-client/services/api-client-registry.service.js +31 -282
- package/http-client/services/circuit-breaker.service.d.ts +69 -2
- package/http-client/services/circuit-breaker.service.js +185 -7
- package/http-client/services/http-client.service.d.ts +85 -23
- package/http-client/services/http-client.service.js +512 -168
- package/http-client/services/http-log-query.service.js +0 -13
- package/http-client/services/index.d.ts +0 -1
- package/http-client/services/index.js +0 -1
- package/http-client/services/logging.service.d.ts +69 -16
- package/http-client/services/logging.service.js +290 -170
- package/http-client/utils/call-stack-extractor.util.d.ts +26 -0
- package/http-client/utils/call-stack-extractor.util.js +35 -0
- package/http-client/utils/context-extractor.util.d.ts +2 -0
- package/http-client/utils/context-extractor.util.js +17 -3
- package/http-client/utils/curl-generator.util.js +2 -5
- package/http-client/utils/index.d.ts +2 -0
- package/http-client/utils/index.js +2 -0
- package/http-client/utils/proxy-environment.util.d.ts +42 -0
- package/http-client/utils/proxy-environment.util.js +154 -0
- package/http-client/utils/retry-recorder.util.d.ts +0 -4
- package/http-client/utils/retry-recorder.util.js +2 -27
- package/http-client/utils/sanitize.util.d.ts +58 -0
- package/http-client/utils/sanitize.util.js +188 -0
- package/http-client/utils/security-validator.util.d.ts +118 -0
- package/http-client/utils/security-validator.util.js +354 -0
- package/index.d.ts +4 -1
- package/index.js +6 -1
- package/interceptors/translation-interceptor.service.d.ts +7 -0
- package/interceptors/translation-interceptor.service.js +40 -8
- package/ip-filter/constants.d.ts +21 -0
- package/ip-filter/constants.js +24 -0
- package/ip-filter/decorators/index.d.ts +1 -0
- package/ip-filter/decorators/index.js +17 -0
- package/ip-filter/decorators/ip-filter.decorator.d.ts +58 -0
- package/ip-filter/decorators/ip-filter.decorator.js +79 -0
- package/ip-filter/guards/index.d.ts +1 -0
- package/ip-filter/guards/index.js +17 -0
- package/ip-filter/guards/ip-filter.guard.d.ts +62 -0
- package/ip-filter/guards/ip-filter.guard.js +174 -0
- package/ip-filter/index.d.ts +7 -0
- package/ip-filter/index.js +23 -0
- package/ip-filter/interfaces/index.d.ts +4 -0
- package/ip-filter/interfaces/index.js +20 -0
- package/ip-filter/interfaces/ip-filter-async-options.interface.d.ts +15 -0
- package/ip-filter/interfaces/ip-filter-async-options.interface.js +2 -0
- package/ip-filter/interfaces/ip-filter-metadata.interface.d.ts +26 -0
- package/ip-filter/interfaces/ip-filter-metadata.interface.js +2 -0
- package/ip-filter/interfaces/ip-filter-options.interface.d.ts +34 -0
- package/ip-filter/interfaces/ip-filter-options.interface.js +2 -0
- package/ip-filter/interfaces/ip-rule.interface.d.ts +36 -0
- package/ip-filter/interfaces/ip-rule.interface.js +2 -0
- package/ip-filter/ip-filter.module.d.ts +55 -0
- package/ip-filter/ip-filter.module.js +105 -0
- package/ip-filter/services/index.d.ts +1 -0
- package/ip-filter/services/index.js +17 -0
- package/ip-filter/services/ip-filter.service.d.ts +92 -0
- package/ip-filter/services/ip-filter.service.js +238 -0
- package/ip-filter/utils/index.d.ts +1 -0
- package/ip-filter/utils/index.js +17 -0
- package/ip-filter/utils/ip-utils.d.ts +61 -0
- package/ip-filter/utils/ip-utils.js +162 -0
- package/package.json +34 -29
- package/providers/context.provider.d.ts +9 -0
- package/providers/context.provider.js +13 -0
- package/redis-lock/comprehensive-lock-cleanup.service.d.ts +94 -0
- package/redis-lock/comprehensive-lock-cleanup.service.js +253 -0
- package/redis-lock/index.d.ts +2 -0
- package/redis-lock/index.js +5 -1
- package/redis-lock/lock-heartbeat.service.d.ts +80 -0
- package/redis-lock/lock-heartbeat.service.js +232 -0
- package/redis-lock/redis-lock.module.d.ts +6 -0
- package/redis-lock/redis-lock.module.js +136 -77
- package/redis-lock/redis-lock.service.d.ts +31 -0
- package/redis-lock/redis-lock.service.js +124 -17
- package/setup/bootstrap.setup.d.ts +2 -1
- package/setup/bootstrap.setup.js +3 -2
- package/setup/index.d.ts +1 -0
- package/setup/index.js +1 -0
- package/setup/run-in-mode.decorator.d.ts +56 -0
- package/setup/run-in-mode.decorator.js +92 -0
- package/setup/schedule.decorator.d.ts +1 -0
- package/setup/schedule.decorator.js +28 -13
- package/setup/worker.decorator.js +10 -1
- package/shared/index.d.ts +1 -1
- package/shared/index.js +1 -1
- package/shared/{serviceRegistryModule.js → service-registry.module.js} +28 -17
- package/shared/services/api-config.service.d.ts +41 -0
- package/shared/services/api-config.service.js +166 -8
- package/shared/services/index.d.ts +0 -1
- package/shared/services/index.js +0 -1
- package/validators/custom-validate.validator.d.ts +1 -0
- package/validators/custom-validate.validator.js +1 -0
- package/validators/file-mimetype.validator.d.ts +0 -2
- package/validators/file-mimetype.validator.js +4 -6
- package/validators/is-exists.validator.d.ts +15 -6
- package/validators/is-exists.validator.js +8 -7
- package/validators/is-unique.validator.d.ts +22 -7
- package/validators/is-unique.validator.js +41 -17
- package/vault/vault-config.service.js +1 -1
- package/cache/providers/memory-cache.provider.d.ts +0 -49
- package/cache/providers/memory-cache.provider.js +0 -197
- package/http-client/services/cache.service.d.ts +0 -76
- package/http-client/services/cache.service.js +0 -333
- package/shared/services/validator.service.d.ts +0 -3
- package/shared/services/validator.service.js +0 -20
- /package/shared/{serviceRegistryModule.d.ts → service-registry.module.d.ts} +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* 审计操作类型(兼容性别名,映射到 OperationType)
|
|
3
3
|
*/
|
|
4
4
|
export declare enum AuditOperation {
|
|
5
5
|
CREATE = "CREATE",
|
|
@@ -8,12 +8,12 @@ export declare enum AuditOperation {
|
|
|
8
8
|
RESTORE = "RESTORE"
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
*
|
|
11
|
+
* 事务状态(设计文档标准命名)
|
|
12
12
|
*/
|
|
13
|
-
export declare enum
|
|
14
|
-
PENDING = "
|
|
15
|
-
COMMITTED = "
|
|
16
|
-
ROLLED_BACK = "
|
|
13
|
+
export declare enum AuditTransactionStatus {
|
|
14
|
+
PENDING = "pending",
|
|
15
|
+
COMMITTED = "committed",
|
|
16
|
+
ROLLED_BACK = "rolled_back"
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* 恢复策略
|
|
@@ -40,3 +40,11 @@ export declare enum MaskingStrategy {
|
|
|
40
40
|
MASK = "MASK",
|
|
41
41
|
PARTIAL = "PARTIAL"
|
|
42
42
|
}
|
|
43
|
+
/**
|
|
44
|
+
* 变更类型(设计文档标准命名)
|
|
45
|
+
*/
|
|
46
|
+
export declare enum ChangeType {
|
|
47
|
+
ADDED = "added",// 新增字段
|
|
48
|
+
REMOVED = "removed",// 删除字段
|
|
49
|
+
MODIFIED = "modified"
|
|
50
|
+
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.MaskingStrategy = exports.RecordStrategy = exports.RecoveryStrategy = exports.
|
|
3
|
+
exports.ChangeType = exports.MaskingStrategy = exports.RecordStrategy = exports.RecoveryStrategy = exports.AuditTransactionStatus = exports.AuditOperation = void 0;
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* 审计操作类型(兼容性别名,映射到 OperationType)
|
|
6
6
|
*/
|
|
7
7
|
var AuditOperation;
|
|
8
8
|
(function (AuditOperation) {
|
|
@@ -12,14 +12,14 @@ var AuditOperation;
|
|
|
12
12
|
AuditOperation["RESTORE"] = "RESTORE";
|
|
13
13
|
})(AuditOperation || (exports.AuditOperation = AuditOperation = {}));
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
15
|
+
* 事务状态(设计文档标准命名)
|
|
16
16
|
*/
|
|
17
|
-
var
|
|
18
|
-
(function (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
})(
|
|
17
|
+
var AuditTransactionStatus;
|
|
18
|
+
(function (AuditTransactionStatus) {
|
|
19
|
+
AuditTransactionStatus["PENDING"] = "pending";
|
|
20
|
+
AuditTransactionStatus["COMMITTED"] = "committed";
|
|
21
|
+
AuditTransactionStatus["ROLLED_BACK"] = "rolled_back";
|
|
22
|
+
})(AuditTransactionStatus || (exports.AuditTransactionStatus = AuditTransactionStatus = {}));
|
|
23
23
|
/**
|
|
24
24
|
* 恢复策略
|
|
25
25
|
*/
|
|
@@ -48,3 +48,12 @@ var MaskingStrategy;
|
|
|
48
48
|
MaskingStrategy["MASK"] = "MASK";
|
|
49
49
|
MaskingStrategy["PARTIAL"] = "PARTIAL";
|
|
50
50
|
})(MaskingStrategy || (exports.MaskingStrategy = MaskingStrategy = {}));
|
|
51
|
+
/**
|
|
52
|
+
* 变更类型(设计文档标准命名)
|
|
53
|
+
*/
|
|
54
|
+
var ChangeType;
|
|
55
|
+
(function (ChangeType) {
|
|
56
|
+
ChangeType["ADDED"] = "added";
|
|
57
|
+
ChangeType["REMOVED"] = "removed";
|
|
58
|
+
ChangeType["MODIFIED"] = "modified";
|
|
59
|
+
})(ChangeType || (exports.ChangeType = ChangeType = {}));
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 装饰器值映射完整示例
|
|
3
|
+
*
|
|
4
|
+
* 本示例演示如何使用 @AuditField 装饰器的 valueLabels 功能
|
|
5
|
+
* 实现字段值的多语言显示和映射
|
|
6
|
+
*/
|
|
7
|
+
export declare class ProductEntity {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
price: number;
|
|
11
|
+
costPrice: number;
|
|
12
|
+
stock: number;
|
|
13
|
+
status: string;
|
|
14
|
+
isFeatured: boolean;
|
|
15
|
+
productType: string;
|
|
16
|
+
internalNotes: string;
|
|
17
|
+
supplierCode: string;
|
|
18
|
+
}
|
|
19
|
+
export declare class OrderEntity {
|
|
20
|
+
orderSn: string;
|
|
21
|
+
totalAmount: number;
|
|
22
|
+
orderStatus: string;
|
|
23
|
+
paymentStatus: string;
|
|
24
|
+
shippingMethod: string;
|
|
25
|
+
customerPhone: string;
|
|
26
|
+
customerEmail: string;
|
|
27
|
+
}
|
|
28
|
+
export declare class UserEntity {
|
|
29
|
+
username: string;
|
|
30
|
+
email: string;
|
|
31
|
+
phone: string;
|
|
32
|
+
status: string;
|
|
33
|
+
role: string;
|
|
34
|
+
emailNotificationEnabled: boolean;
|
|
35
|
+
smsNotificationEnabled: boolean;
|
|
36
|
+
gender: string;
|
|
37
|
+
password: string;
|
|
38
|
+
}
|
|
39
|
+
export declare class InventoryEntity {
|
|
40
|
+
productCode: string;
|
|
41
|
+
availableStock: number;
|
|
42
|
+
lockedStock: number;
|
|
43
|
+
totalStock: number;
|
|
44
|
+
stockStatus: string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* 当产品状态从 'active' 变为 'out_of_stock' 时,
|
|
48
|
+
* 审计日志的 changeDetails 会显示:
|
|
49
|
+
*
|
|
50
|
+
* 中文 (language=zh):
|
|
51
|
+
* {
|
|
52
|
+
* "fieldName": "状态",
|
|
53
|
+
* "changeType": "modified",
|
|
54
|
+
* "displayOldValue": "在售",
|
|
55
|
+
* "displayNewValue": "缺货",
|
|
56
|
+
* "oldValue": "active",
|
|
57
|
+
* "newValue": "out_of_stock"
|
|
58
|
+
* }
|
|
59
|
+
*
|
|
60
|
+
* 英文 (language=en):
|
|
61
|
+
* {
|
|
62
|
+
* "fieldName": "Status",
|
|
63
|
+
* "changeType": "modified",
|
|
64
|
+
* "displayOldValue": "Active",
|
|
65
|
+
* "displayNewValue": "Out of Stock",
|
|
66
|
+
* "oldValue": "active",
|
|
67
|
+
* "newValue": "out_of_stock"
|
|
68
|
+
* }
|
|
69
|
+
*/
|
|
70
|
+
export {};
|
|
@@ -0,0 +1,414 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* 装饰器值映射完整示例
|
|
4
|
+
*
|
|
5
|
+
* 本示例演示如何使用 @AuditField 装饰器的 valueLabels 功能
|
|
6
|
+
* 实现字段值的多语言显示和映射
|
|
7
|
+
*/
|
|
8
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
9
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
10
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
11
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
12
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
13
|
+
};
|
|
14
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
15
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
16
|
+
};
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.InventoryEntity = exports.UserEntity = exports.OrderEntity = exports.ProductEntity = void 0;
|
|
19
|
+
const typeorm_1 = require("typeorm");
|
|
20
|
+
const entity_audit_decorator_1 = require("../decorators/entity-audit.decorator");
|
|
21
|
+
// ============================================
|
|
22
|
+
// 示例 1: 电商产品实体
|
|
23
|
+
// ============================================
|
|
24
|
+
let ProductEntity = class ProductEntity {
|
|
25
|
+
};
|
|
26
|
+
exports.ProductEntity = ProductEntity;
|
|
27
|
+
__decorate([
|
|
28
|
+
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], ProductEntity.prototype, "id", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, typeorm_1.Column)(),
|
|
33
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
34
|
+
label: { zh: '产品名称', en: 'Product Name' },
|
|
35
|
+
}),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], ProductEntity.prototype, "name", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2 }),
|
|
40
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
41
|
+
label: { zh: '价格', en: 'Price' },
|
|
42
|
+
formatter: (value) => `¥${parseFloat(value).toFixed(2)}`,
|
|
43
|
+
}),
|
|
44
|
+
__metadata("design:type", Number)
|
|
45
|
+
], ProductEntity.prototype, "price", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2 }),
|
|
48
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
49
|
+
label: { zh: '成本价', en: 'Cost Price' },
|
|
50
|
+
sensitive: true,
|
|
51
|
+
}),
|
|
52
|
+
__metadata("design:type", Number)
|
|
53
|
+
], ProductEntity.prototype, "costPrice", void 0);
|
|
54
|
+
__decorate([
|
|
55
|
+
(0, typeorm_1.Column)({ default: 0 }),
|
|
56
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
57
|
+
label: { zh: '库存', en: 'Stock' },
|
|
58
|
+
formatter: (value) => `${value} 件`,
|
|
59
|
+
}),
|
|
60
|
+
__metadata("design:type", Number)
|
|
61
|
+
], ProductEntity.prototype, "stock", void 0);
|
|
62
|
+
__decorate([
|
|
63
|
+
(0, typeorm_1.Column)({
|
|
64
|
+
type: 'enum',
|
|
65
|
+
enum: ['active', 'inactive', 'out_of_stock', 'discontinued'],
|
|
66
|
+
default: 'active',
|
|
67
|
+
}),
|
|
68
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
69
|
+
label: { zh: '状态', en: 'Status' },
|
|
70
|
+
valueLabels: {
|
|
71
|
+
active: { zh: '在售', en: 'Active', ja: '販売中' },
|
|
72
|
+
inactive: { zh: '停售', en: 'Inactive', ja: '販売停止' },
|
|
73
|
+
out_of_stock: { zh: '缺货', en: 'Out of Stock', ja: '在庫切れ' },
|
|
74
|
+
discontinued: { zh: '已停产', en: 'Discontinued', ja: '廃盤' },
|
|
75
|
+
},
|
|
76
|
+
}),
|
|
77
|
+
__metadata("design:type", String)
|
|
78
|
+
], ProductEntity.prototype, "status", void 0);
|
|
79
|
+
__decorate([
|
|
80
|
+
(0, typeorm_1.Column)({ default: false }),
|
|
81
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
82
|
+
label: { zh: '是否推荐', en: 'Featured' },
|
|
83
|
+
valueLabels: {
|
|
84
|
+
true: { zh: '是', en: 'Yes', ja: 'はい' },
|
|
85
|
+
false: { zh: '否', en: 'No', ja: 'いいえ' },
|
|
86
|
+
},
|
|
87
|
+
}),
|
|
88
|
+
__metadata("design:type", Boolean)
|
|
89
|
+
], ProductEntity.prototype, "isFeatured", void 0);
|
|
90
|
+
__decorate([
|
|
91
|
+
(0, typeorm_1.Column)({
|
|
92
|
+
type: 'enum',
|
|
93
|
+
enum: ['physical', 'digital', 'service'],
|
|
94
|
+
default: 'physical',
|
|
95
|
+
}),
|
|
96
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
97
|
+
label: { zh: '产品类型', en: 'Product Type' },
|
|
98
|
+
valueLabels: {
|
|
99
|
+
physical: { zh: '实物', en: 'Physical', ja: '物理商品' },
|
|
100
|
+
digital: { zh: '数字产品', en: 'Digital', ja: 'デジタル商品' },
|
|
101
|
+
service: { zh: '服务', en: 'Service', ja: 'サービス' },
|
|
102
|
+
},
|
|
103
|
+
}),
|
|
104
|
+
__metadata("design:type", String)
|
|
105
|
+
], ProductEntity.prototype, "productType", void 0);
|
|
106
|
+
__decorate([
|
|
107
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
108
|
+
__metadata("design:type", String)
|
|
109
|
+
], ProductEntity.prototype, "internalNotes", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
(0, typeorm_1.Column)({ nullable: true }),
|
|
112
|
+
__metadata("design:type", String)
|
|
113
|
+
], ProductEntity.prototype, "supplierCode", void 0);
|
|
114
|
+
exports.ProductEntity = ProductEntity = __decorate([
|
|
115
|
+
(0, typeorm_1.Entity)('products'),
|
|
116
|
+
(0, entity_audit_decorator_1.AuditEntity)({
|
|
117
|
+
enabled: true,
|
|
118
|
+
excludeFields: ['internalNotes', 'supplierCode'],
|
|
119
|
+
maskFields: ['costPrice'],
|
|
120
|
+
})
|
|
121
|
+
], ProductEntity);
|
|
122
|
+
// ============================================
|
|
123
|
+
// 示例 2: 订单实体
|
|
124
|
+
// ============================================
|
|
125
|
+
let OrderEntity = class OrderEntity {
|
|
126
|
+
};
|
|
127
|
+
exports.OrderEntity = OrderEntity;
|
|
128
|
+
__decorate([
|
|
129
|
+
(0, typeorm_1.Column)(),
|
|
130
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
131
|
+
label: { zh: '订单号', en: 'Order Number' },
|
|
132
|
+
}),
|
|
133
|
+
__metadata("design:type", String)
|
|
134
|
+
], OrderEntity.prototype, "orderSn", void 0);
|
|
135
|
+
__decorate([
|
|
136
|
+
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 2 }),
|
|
137
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
138
|
+
label: { zh: '订单金额', en: 'Order Amount' },
|
|
139
|
+
formatter: (value) => `¥${parseFloat(value).toFixed(2)}`,
|
|
140
|
+
}),
|
|
141
|
+
__metadata("design:type", Number)
|
|
142
|
+
], OrderEntity.prototype, "totalAmount", void 0);
|
|
143
|
+
__decorate([
|
|
144
|
+
(0, typeorm_1.Column)({
|
|
145
|
+
type: 'enum',
|
|
146
|
+
enum: ['pending', 'confirmed', 'processing', 'shipped', 'delivered', 'cancelled', 'refunded'],
|
|
147
|
+
default: 'pending',
|
|
148
|
+
}),
|
|
149
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
150
|
+
label: { zh: '订单状态', en: 'Order Status' },
|
|
151
|
+
valueLabels: {
|
|
152
|
+
pending: { zh: '待确认', en: 'Pending', ja: '保留中' },
|
|
153
|
+
confirmed: { zh: '已确认', en: 'Confirmed', ja: '確認済み' },
|
|
154
|
+
processing: { zh: '处理中', en: 'Processing', ja: '処理中' },
|
|
155
|
+
shipped: { zh: '已发货', en: 'Shipped', ja: '発送済み' },
|
|
156
|
+
delivered: { zh: '已送达', en: 'Delivered', ja: '配達済み' },
|
|
157
|
+
cancelled: { zh: '已取消', en: 'Cancelled', ja: 'キャンセル済み' },
|
|
158
|
+
refunded: { zh: '已退款', en: 'Refunded', ja: '返金済み' },
|
|
159
|
+
},
|
|
160
|
+
}),
|
|
161
|
+
__metadata("design:type", String)
|
|
162
|
+
], OrderEntity.prototype, "orderStatus", void 0);
|
|
163
|
+
__decorate([
|
|
164
|
+
(0, typeorm_1.Column)({
|
|
165
|
+
type: 'enum',
|
|
166
|
+
enum: ['unpaid', 'partial_paid', 'paid', 'refunded'],
|
|
167
|
+
default: 'unpaid',
|
|
168
|
+
}),
|
|
169
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
170
|
+
label: { zh: '支付状态', en: 'Payment Status' },
|
|
171
|
+
valueLabels: {
|
|
172
|
+
unpaid: { zh: '未支付', en: 'Unpaid', ja: '未払い' },
|
|
173
|
+
partial_paid: { zh: '部分支付', en: 'Partial Paid', ja: '一部支払い' },
|
|
174
|
+
paid: { zh: '已支付', en: 'Paid', ja: '支払い済み' },
|
|
175
|
+
refunded: { zh: '已退款', en: 'Refunded', ja: '返金済み' },
|
|
176
|
+
},
|
|
177
|
+
}),
|
|
178
|
+
__metadata("design:type", String)
|
|
179
|
+
], OrderEntity.prototype, "paymentStatus", void 0);
|
|
180
|
+
__decorate([
|
|
181
|
+
(0, typeorm_1.Column)({
|
|
182
|
+
type: 'enum',
|
|
183
|
+
enum: ['standard', 'express', 'overnight', 'international'],
|
|
184
|
+
default: 'standard',
|
|
185
|
+
}),
|
|
186
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
187
|
+
label: { zh: '配送方式', en: 'Shipping Method' },
|
|
188
|
+
valueLabels: {
|
|
189
|
+
standard: { zh: '标准配送', en: 'Standard', ja: '標準配送' },
|
|
190
|
+
express: { zh: '加急配送', en: 'Express', ja: '急行配送' },
|
|
191
|
+
overnight: { zh: '次日达', en: 'Overnight', ja: '翌日配達' },
|
|
192
|
+
international: { zh: '国际配送', en: 'International', ja: '国際配送' },
|
|
193
|
+
},
|
|
194
|
+
}),
|
|
195
|
+
__metadata("design:type", String)
|
|
196
|
+
], OrderEntity.prototype, "shippingMethod", void 0);
|
|
197
|
+
__decorate([
|
|
198
|
+
(0, typeorm_1.Column)(),
|
|
199
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
200
|
+
label: { zh: '客户电话', en: 'Customer Phone' },
|
|
201
|
+
sensitive: true,
|
|
202
|
+
}),
|
|
203
|
+
__metadata("design:type", String)
|
|
204
|
+
], OrderEntity.prototype, "customerPhone", void 0);
|
|
205
|
+
__decorate([
|
|
206
|
+
(0, typeorm_1.Column)(),
|
|
207
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
208
|
+
label: { zh: '客户邮箱', en: 'Customer Email' },
|
|
209
|
+
sensitive: true,
|
|
210
|
+
}),
|
|
211
|
+
__metadata("design:type", String)
|
|
212
|
+
], OrderEntity.prototype, "customerEmail", void 0);
|
|
213
|
+
exports.OrderEntity = OrderEntity = __decorate([
|
|
214
|
+
(0, typeorm_1.Entity)('orders'),
|
|
215
|
+
(0, entity_audit_decorator_1.AuditEntity)({
|
|
216
|
+
enabled: true,
|
|
217
|
+
maskFields: ['customerPhone', 'customerEmail'],
|
|
218
|
+
})
|
|
219
|
+
], OrderEntity);
|
|
220
|
+
// ============================================
|
|
221
|
+
// 示例 3: 用户实体
|
|
222
|
+
// ============================================
|
|
223
|
+
let UserEntity = class UserEntity {
|
|
224
|
+
};
|
|
225
|
+
exports.UserEntity = UserEntity;
|
|
226
|
+
__decorate([
|
|
227
|
+
(0, typeorm_1.Column)({ unique: true }),
|
|
228
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
229
|
+
label: { zh: '用户名', en: 'Username' },
|
|
230
|
+
}),
|
|
231
|
+
__metadata("design:type", String)
|
|
232
|
+
], UserEntity.prototype, "username", void 0);
|
|
233
|
+
__decorate([
|
|
234
|
+
(0, typeorm_1.Column)(),
|
|
235
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
236
|
+
label: { zh: '邮箱', en: 'Email' },
|
|
237
|
+
}),
|
|
238
|
+
__metadata("design:type", String)
|
|
239
|
+
], UserEntity.prototype, "email", void 0);
|
|
240
|
+
__decorate([
|
|
241
|
+
(0, typeorm_1.Column)(),
|
|
242
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
243
|
+
label: { zh: '手机号', en: 'Phone' },
|
|
244
|
+
sensitive: true,
|
|
245
|
+
}),
|
|
246
|
+
__metadata("design:type", String)
|
|
247
|
+
], UserEntity.prototype, "phone", void 0);
|
|
248
|
+
__decorate([
|
|
249
|
+
(0, typeorm_1.Column)({
|
|
250
|
+
type: 'enum',
|
|
251
|
+
enum: ['active', 'inactive', 'suspended', 'banned'],
|
|
252
|
+
default: 'inactive',
|
|
253
|
+
}),
|
|
254
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
255
|
+
label: { zh: '账号状态', en: 'Account Status' },
|
|
256
|
+
valueLabels: {
|
|
257
|
+
active: { zh: '正常', en: 'Active', ja: '有効' },
|
|
258
|
+
inactive: { zh: '未激活', en: 'Inactive', ja: '無効' },
|
|
259
|
+
suspended: { zh: '已暂停', en: 'Suspended', ja: '停止中' },
|
|
260
|
+
banned: { zh: '已封禁', en: 'Banned', ja: '禁止' },
|
|
261
|
+
},
|
|
262
|
+
}),
|
|
263
|
+
__metadata("design:type", String)
|
|
264
|
+
], UserEntity.prototype, "status", void 0);
|
|
265
|
+
__decorate([
|
|
266
|
+
(0, typeorm_1.Column)({
|
|
267
|
+
type: 'enum',
|
|
268
|
+
enum: ['user', 'vip', 'admin', 'super_admin'],
|
|
269
|
+
default: 'user',
|
|
270
|
+
}),
|
|
271
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
272
|
+
label: { zh: '角色', en: 'Role' },
|
|
273
|
+
valueLabels: {
|
|
274
|
+
user: { zh: '普通用户', en: 'User', ja: '一般ユーザー' },
|
|
275
|
+
vip: { zh: 'VIP用户', en: 'VIP User', ja: 'VIPユーザー' },
|
|
276
|
+
admin: { zh: '管理员', en: 'Admin', ja: '管理者' },
|
|
277
|
+
super_admin: { zh: '超级管理员', en: 'Super Admin', ja: 'スーパー管理者' },
|
|
278
|
+
},
|
|
279
|
+
}),
|
|
280
|
+
__metadata("design:type", String)
|
|
281
|
+
], UserEntity.prototype, "role", void 0);
|
|
282
|
+
__decorate([
|
|
283
|
+
(0, typeorm_1.Column)({ default: true }),
|
|
284
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
285
|
+
label: { zh: '邮件通知', en: 'Email Notification' },
|
|
286
|
+
valueLabels: {
|
|
287
|
+
true: { zh: '开启', en: 'Enabled', ja: '有効' },
|
|
288
|
+
false: { zh: '关闭', en: 'Disabled', ja: '無効' },
|
|
289
|
+
},
|
|
290
|
+
}),
|
|
291
|
+
__metadata("design:type", Boolean)
|
|
292
|
+
], UserEntity.prototype, "emailNotificationEnabled", void 0);
|
|
293
|
+
__decorate([
|
|
294
|
+
(0, typeorm_1.Column)({ default: true }),
|
|
295
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
296
|
+
label: { zh: '短信通知', en: 'SMS Notification' },
|
|
297
|
+
valueLabels: {
|
|
298
|
+
true: { zh: '开启', en: 'Enabled', ja: '有効' },
|
|
299
|
+
false: { zh: '关闭', en: 'Disabled', ja: '無効' },
|
|
300
|
+
},
|
|
301
|
+
}),
|
|
302
|
+
__metadata("design:type", Boolean)
|
|
303
|
+
], UserEntity.prototype, "smsNotificationEnabled", void 0);
|
|
304
|
+
__decorate([
|
|
305
|
+
(0, typeorm_1.Column)({
|
|
306
|
+
type: 'enum',
|
|
307
|
+
enum: ['male', 'female', 'other', 'unknown'],
|
|
308
|
+
default: 'unknown',
|
|
309
|
+
}),
|
|
310
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
311
|
+
label: { zh: '性别', en: 'Gender' },
|
|
312
|
+
valueLabels: {
|
|
313
|
+
male: { zh: '男', en: 'Male', ja: '男性' },
|
|
314
|
+
female: { zh: '女', en: 'Female', ja: '女性' },
|
|
315
|
+
other: { zh: '其他', en: 'Other', ja: 'その他' },
|
|
316
|
+
unknown: { zh: '未知', en: 'Unknown', ja: '不明' },
|
|
317
|
+
},
|
|
318
|
+
}),
|
|
319
|
+
__metadata("design:type", String)
|
|
320
|
+
], UserEntity.prototype, "gender", void 0);
|
|
321
|
+
__decorate([
|
|
322
|
+
(0, typeorm_1.Column)(),
|
|
323
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
324
|
+
label: { zh: '密码', en: 'Password' },
|
|
325
|
+
sensitive: true,
|
|
326
|
+
}),
|
|
327
|
+
__metadata("design:type", String)
|
|
328
|
+
], UserEntity.prototype, "password", void 0);
|
|
329
|
+
exports.UserEntity = UserEntity = __decorate([
|
|
330
|
+
(0, typeorm_1.Entity)('users'),
|
|
331
|
+
(0, entity_audit_decorator_1.AuditEntity)({
|
|
332
|
+
enabled: true,
|
|
333
|
+
maskFields: ['password', 'idCard', 'bankAccount'],
|
|
334
|
+
})
|
|
335
|
+
], UserEntity);
|
|
336
|
+
// ============================================
|
|
337
|
+
// 示例 4: 库存实体
|
|
338
|
+
// ============================================
|
|
339
|
+
let InventoryEntity = class InventoryEntity {
|
|
340
|
+
};
|
|
341
|
+
exports.InventoryEntity = InventoryEntity;
|
|
342
|
+
__decorate([
|
|
343
|
+
(0, typeorm_1.Column)(),
|
|
344
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
345
|
+
label: { zh: '商品编号', en: 'Product Code' },
|
|
346
|
+
}),
|
|
347
|
+
__metadata("design:type", String)
|
|
348
|
+
], InventoryEntity.prototype, "productCode", void 0);
|
|
349
|
+
__decorate([
|
|
350
|
+
(0, typeorm_1.Column)({ default: 0 }),
|
|
351
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
352
|
+
label: { zh: '可用库存', en: 'Available Stock' },
|
|
353
|
+
formatter: (value) => `${value} 件`,
|
|
354
|
+
}),
|
|
355
|
+
__metadata("design:type", Number)
|
|
356
|
+
], InventoryEntity.prototype, "availableStock", void 0);
|
|
357
|
+
__decorate([
|
|
358
|
+
(0, typeorm_1.Column)({ default: 0 }),
|
|
359
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
360
|
+
label: { zh: '锁定库存', en: 'Locked Stock' },
|
|
361
|
+
formatter: (value) => `${value} 件`,
|
|
362
|
+
}),
|
|
363
|
+
__metadata("design:type", Number)
|
|
364
|
+
], InventoryEntity.prototype, "lockedStock", void 0);
|
|
365
|
+
__decorate([
|
|
366
|
+
(0, typeorm_1.Column)({ default: 0 }),
|
|
367
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
368
|
+
label: { zh: '总库存', en: 'Total Stock' },
|
|
369
|
+
formatter: (value) => `${value} 件`,
|
|
370
|
+
}),
|
|
371
|
+
__metadata("design:type", Number)
|
|
372
|
+
], InventoryEntity.prototype, "totalStock", void 0);
|
|
373
|
+
__decorate([
|
|
374
|
+
(0, typeorm_1.Column)({
|
|
375
|
+
type: 'enum',
|
|
376
|
+
enum: ['in_stock', 'low_stock', 'out_of_stock'],
|
|
377
|
+
default: 'in_stock',
|
|
378
|
+
}),
|
|
379
|
+
(0, entity_audit_decorator_1.AuditField)({
|
|
380
|
+
label: { zh: '库存状态', en: 'Stock Status' },
|
|
381
|
+
valueLabels: {
|
|
382
|
+
in_stock: { zh: '充足', en: 'In Stock', ja: '在庫あり' },
|
|
383
|
+
low_stock: { zh: '偏低', en: 'Low Stock', ja: '在庫少' },
|
|
384
|
+
out_of_stock: { zh: '缺货', en: 'Out of Stock', ja: '在庫切れ' },
|
|
385
|
+
},
|
|
386
|
+
}),
|
|
387
|
+
__metadata("design:type", String)
|
|
388
|
+
], InventoryEntity.prototype, "stockStatus", void 0);
|
|
389
|
+
exports.InventoryEntity = InventoryEntity = __decorate([
|
|
390
|
+
(0, typeorm_1.Entity)('inventory'),
|
|
391
|
+
(0, entity_audit_decorator_1.AuditEntity)({
|
|
392
|
+
enabled: true,
|
|
393
|
+
})
|
|
394
|
+
], InventoryEntity);
|
|
395
|
+
// ============================================
|
|
396
|
+
// 使用示例
|
|
397
|
+
// ============================================
|
|
398
|
+
const entity_audit_decorator_2 = require("../decorators/entity-audit.decorator");
|
|
399
|
+
// 示例:获取字段标签
|
|
400
|
+
const statusLabelZh = (0, entity_audit_decorator_2.getFieldLabel)(ProductEntity, 'status', 'zh'); // '状态'
|
|
401
|
+
const statusLabelEn = (0, entity_audit_decorator_2.getFieldLabel)(ProductEntity, 'status', 'en'); // 'Status'
|
|
402
|
+
// 示例:获取字段值的标签
|
|
403
|
+
const statusValueZh = (0, entity_audit_decorator_2.getFieldValueLabel)(ProductEntity, 'status', 'active', 'zh'); // '在售'
|
|
404
|
+
const statusValueEn = (0, entity_audit_decorator_2.getFieldValueLabel)(ProductEntity, 'status', 'active', 'en'); // 'Active'
|
|
405
|
+
const statusValueJa = (0, entity_audit_decorator_2.getFieldValueLabel)(ProductEntity, 'status', 'active', 'ja'); // '販売中'
|
|
406
|
+
// 布尔值示例
|
|
407
|
+
const featuredValueZh = (0, entity_audit_decorator_2.getFieldValueLabel)(ProductEntity, 'isFeatured', true, 'zh'); // '是'
|
|
408
|
+
const featuredValueEn = (0, entity_audit_decorator_2.getFieldValueLabel)(ProductEntity, 'isFeatured', false, 'en'); // 'No'
|
|
409
|
+
// 订单状态示例
|
|
410
|
+
const orderStatusZh = (0, entity_audit_decorator_2.getFieldValueLabel)(OrderEntity, 'orderStatus', 'shipped', 'zh'); // '已发货'
|
|
411
|
+
const orderStatusEn = (0, entity_audit_decorator_2.getFieldValueLabel)(OrderEntity, 'orderStatus', 'shipped', 'en'); // 'Shipped'
|
|
412
|
+
// 用户角色示例
|
|
413
|
+
const roleValueZh = (0, entity_audit_decorator_2.getFieldValueLabel)(UserEntity, 'role', 'vip', 'zh'); // 'VIP用户'
|
|
414
|
+
const roleValueEn = (0, entity_audit_decorator_2.getFieldValueLabel)(UserEntity, 'role', 'super_admin', 'en'); // 'Super Admin'
|
package/audit/index.d.ts
CHANGED
|
@@ -2,8 +2,12 @@ export * from './entities';
|
|
|
2
2
|
export * from './enums';
|
|
3
3
|
export * from './interfaces';
|
|
4
4
|
export * from './dto';
|
|
5
|
-
export
|
|
5
|
+
export { AuditEntity, AuditField, getEntityAuditConfig, getFieldAuditConfig, getFieldLabel, getFieldValueLabel, getEntityLabel, ENTITY_AUDIT_OPTIONS, FIELD_AUDIT_OPTIONS, } from './decorators/entity-audit.decorator';
|
|
6
|
+
export { AuditController, AuditMethod, CONTROLLER_AUDIT_OPTIONS, METHOD_AUDIT_OPTIONS, } from './decorators/audit-controller.decorator';
|
|
7
|
+
export { AuditLog, getAuditOperationConfig, hasAuditOperation, AUDIT_OPERATION_OPTIONS, } from './decorators/audit-operation.decorator';
|
|
8
|
+
export { AuditAction, AuditActionOptions, AuditActionMetadata, AUDIT_ACTION_METADATA, } from './decorators/audit-action.decorator';
|
|
6
9
|
export * from './services';
|
|
10
|
+
export { registerEntityClass, getEntityClass } from './services/entity-audit.service';
|
|
7
11
|
export * from './subscribers';
|
|
8
12
|
export * from './interceptors';
|
|
9
13
|
export * from './controllers';
|
package/audit/index.js
CHANGED
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.getEntityClass = exports.registerEntityClass = exports.AUDIT_ACTION_METADATA = exports.AuditAction = exports.AUDIT_OPERATION_OPTIONS = exports.hasAuditOperation = exports.getAuditOperationConfig = exports.AuditLog = exports.METHOD_AUDIT_OPTIONS = exports.CONTROLLER_AUDIT_OPTIONS = exports.AuditMethod = exports.AuditController = exports.FIELD_AUDIT_OPTIONS = exports.ENTITY_AUDIT_OPTIONS = exports.getEntityLabel = exports.getFieldValueLabel = exports.getFieldLabel = exports.getFieldAuditConfig = exports.getEntityAuditConfig = exports.AuditField = exports.AuditEntity = void 0;
|
|
17
18
|
// Entities
|
|
18
19
|
__exportStar(require("./entities"), exports);
|
|
19
20
|
// Enums
|
|
@@ -22,10 +23,36 @@ __exportStar(require("./enums"), exports);
|
|
|
22
23
|
__exportStar(require("./interfaces"), exports);
|
|
23
24
|
// DTO
|
|
24
25
|
__exportStar(require("./dto"), exports);
|
|
25
|
-
// Decorators
|
|
26
|
-
|
|
26
|
+
// Decorators - explicit exports
|
|
27
|
+
var entity_audit_decorator_1 = require("./decorators/entity-audit.decorator");
|
|
28
|
+
Object.defineProperty(exports, "AuditEntity", { enumerable: true, get: function () { return entity_audit_decorator_1.AuditEntity; } });
|
|
29
|
+
Object.defineProperty(exports, "AuditField", { enumerable: true, get: function () { return entity_audit_decorator_1.AuditField; } });
|
|
30
|
+
Object.defineProperty(exports, "getEntityAuditConfig", { enumerable: true, get: function () { return entity_audit_decorator_1.getEntityAuditConfig; } });
|
|
31
|
+
Object.defineProperty(exports, "getFieldAuditConfig", { enumerable: true, get: function () { return entity_audit_decorator_1.getFieldAuditConfig; } });
|
|
32
|
+
Object.defineProperty(exports, "getFieldLabel", { enumerable: true, get: function () { return entity_audit_decorator_1.getFieldLabel; } });
|
|
33
|
+
Object.defineProperty(exports, "getFieldValueLabel", { enumerable: true, get: function () { return entity_audit_decorator_1.getFieldValueLabel; } });
|
|
34
|
+
Object.defineProperty(exports, "getEntityLabel", { enumerable: true, get: function () { return entity_audit_decorator_1.getEntityLabel; } });
|
|
35
|
+
Object.defineProperty(exports, "ENTITY_AUDIT_OPTIONS", { enumerable: true, get: function () { return entity_audit_decorator_1.ENTITY_AUDIT_OPTIONS; } });
|
|
36
|
+
Object.defineProperty(exports, "FIELD_AUDIT_OPTIONS", { enumerable: true, get: function () { return entity_audit_decorator_1.FIELD_AUDIT_OPTIONS; } });
|
|
37
|
+
var audit_controller_decorator_1 = require("./decorators/audit-controller.decorator");
|
|
38
|
+
Object.defineProperty(exports, "AuditController", { enumerable: true, get: function () { return audit_controller_decorator_1.AuditController; } });
|
|
39
|
+
Object.defineProperty(exports, "AuditMethod", { enumerable: true, get: function () { return audit_controller_decorator_1.AuditMethod; } });
|
|
40
|
+
Object.defineProperty(exports, "CONTROLLER_AUDIT_OPTIONS", { enumerable: true, get: function () { return audit_controller_decorator_1.CONTROLLER_AUDIT_OPTIONS; } });
|
|
41
|
+
Object.defineProperty(exports, "METHOD_AUDIT_OPTIONS", { enumerable: true, get: function () { return audit_controller_decorator_1.METHOD_AUDIT_OPTIONS; } });
|
|
42
|
+
var audit_operation_decorator_1 = require("./decorators/audit-operation.decorator");
|
|
43
|
+
Object.defineProperty(exports, "AuditLog", { enumerable: true, get: function () { return audit_operation_decorator_1.AuditLog; } });
|
|
44
|
+
Object.defineProperty(exports, "getAuditOperationConfig", { enumerable: true, get: function () { return audit_operation_decorator_1.getAuditOperationConfig; } });
|
|
45
|
+
Object.defineProperty(exports, "hasAuditOperation", { enumerable: true, get: function () { return audit_operation_decorator_1.hasAuditOperation; } });
|
|
46
|
+
Object.defineProperty(exports, "AUDIT_OPERATION_OPTIONS", { enumerable: true, get: function () { return audit_operation_decorator_1.AUDIT_OPERATION_OPTIONS; } });
|
|
47
|
+
var audit_action_decorator_1 = require("./decorators/audit-action.decorator");
|
|
48
|
+
Object.defineProperty(exports, "AuditAction", { enumerable: true, get: function () { return audit_action_decorator_1.AuditAction; } });
|
|
49
|
+
Object.defineProperty(exports, "AUDIT_ACTION_METADATA", { enumerable: true, get: function () { return audit_action_decorator_1.AUDIT_ACTION_METADATA; } });
|
|
27
50
|
// Services
|
|
28
51
|
__exportStar(require("./services"), exports);
|
|
52
|
+
// Entity class registry (for decorator value mapping)
|
|
53
|
+
var entity_audit_service_1 = require("./services/entity-audit.service");
|
|
54
|
+
Object.defineProperty(exports, "registerEntityClass", { enumerable: true, get: function () { return entity_audit_service_1.registerEntityClass; } });
|
|
55
|
+
Object.defineProperty(exports, "getEntityClass", { enumerable: true, get: function () { return entity_audit_service_1.getEntityClass; } });
|
|
29
56
|
// Subscribers
|
|
30
57
|
__exportStar(require("./subscribers"), exports);
|
|
31
58
|
// Interceptors
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common';
|
|
2
|
+
import { Reflector } from '@nestjs/core';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { Repository } from 'typeorm';
|
|
5
|
+
import { AuditContextService } from '../services/audit-context.service';
|
|
6
|
+
import { OperationDescriptionService } from '../services/operation-description.service';
|
|
7
|
+
import { AuditActionSummaryEntity } from '../entities';
|
|
8
|
+
/**
|
|
9
|
+
* 审计动作拦截器
|
|
10
|
+
* 在请求开始时创建审计动作上下文,在请求结束时生成汇总记录
|
|
11
|
+
*/
|
|
12
|
+
export declare class AuditActionInterceptor implements NestInterceptor {
|
|
13
|
+
private readonly reflector;
|
|
14
|
+
private readonly contextService;
|
|
15
|
+
private readonly summaryRepository;
|
|
16
|
+
private readonly descriptionService?;
|
|
17
|
+
private readonly logger;
|
|
18
|
+
constructor(reflector: Reflector, contextService: AuditContextService, summaryRepository: Repository<AuditActionSummaryEntity>, descriptionService?: OperationDescriptionService);
|
|
19
|
+
intercept(context: ExecutionContext, next: CallHandler): Observable<any>;
|
|
20
|
+
/**
|
|
21
|
+
* 生成审计汇总记录
|
|
22
|
+
*/
|
|
23
|
+
private generateSummary;
|
|
24
|
+
/**
|
|
25
|
+
* 生成操作描述文本
|
|
26
|
+
* 优先从 OperationDescriptionService 获取多语言模板
|
|
27
|
+
* 如果没有,则使用默认格式
|
|
28
|
+
*/
|
|
29
|
+
private generateDescription;
|
|
30
|
+
/**
|
|
31
|
+
* 替换模板中的占位符
|
|
32
|
+
* 支持格式:{key} 或 {key:format}
|
|
33
|
+
*/
|
|
34
|
+
private replaceTemplatePlaceholders;
|
|
35
|
+
/**
|
|
36
|
+
* 格式化值为字符串
|
|
37
|
+
*/
|
|
38
|
+
private formatValue;
|
|
39
|
+
}
|