@stackonward/cli 0.0.1 → 1.0.1
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/dist/index.js +4588 -205
- package/dist/index.js.map +1 -1
- package/dist/resources/apple/.claude/docs/architecture-template.md +54 -0
- package/dist/resources/apple/.claude/docs/architecture.md +52 -0
- package/dist/resources/apple/.claude/docs/index.md +13 -0
- package/dist/resources/apple/.claude/docs/security-lifecycle.md +57 -0
- package/dist/resources/apple/.claude/docs/stack.md +93 -0
- package/dist/resources/apple/.claude/docs/verification.md +63 -0
- package/dist/resources/apple/AGENTS.md +397 -0
- package/dist/resources/apple/CLAUDE.md +397 -0
- package/dist/resources/apple/Gemfile +2 -0
- package/dist/resources/apple/Gemfile.lock +365 -0
- package/dist/resources/apple/_gitignore +14 -0
- package/dist/resources/apple/fastlane/Fastfile +123 -0
- package/dist/resources/components/nuxt/site-source/app/app.vue +42 -0
- package/dist/resources/components/nuxt/site-source/app/assets/css/site-shell.css +1035 -0
- package/dist/resources/components/nuxt/site-source/app/assets/icons/brand/.gitkeep +0 -0
- package/dist/resources/components/nuxt/site-source/app/assets/icons/common/.gitkeep +0 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ApplicationHeader.vue +35 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ApplicationShell.vue +56 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ApplicationSidebar.vue +40 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/BackToTop.vue +42 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ContentArticlePage.vue +40 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ContentListPage.vue +30 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/CookieConsent.vue +18 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/MarketingFooter.vue +52 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/MarketingHeader.vue +106 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/MarketingShell.vue +35 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/SiteBrand.vue +10 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/StaticPage.vue +21 -0
- package/dist/resources/components/nuxt/site-source/app/components/site/ToastViewport.vue +25 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BaseButton.vue +86 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BaseGradientBorder.vue +59 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BaseModal.vue +131 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BasePopover.vue +150 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/BaseText.vue +138 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/CheckoutStatus.vue +112 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/CheckoutSummary.vue +172 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/GoogleSignInButton.vue +113 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/InfiniteScroll.vue +123 -0
- package/dist/resources/components/nuxt/site-source/app/components/ui/YoutubeEmbed.vue +126 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useAnalytics.ts +24 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useCheckout.ts +121 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useConsent.ts +31 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useGoogleIdentity.ts +163 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useNavigation.ts +11 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useSeo.ts +33 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useSiteShell.ts +58 -0
- package/dist/resources/components/nuxt/site-source/app/composables/useToasts.ts +48 -0
- package/dist/resources/components/nuxt/site-source/app/layouts/app.vue +5 -0
- package/dist/resources/components/nuxt/site-source/app/layouts/default.vue +5 -0
- package/dist/resources/components/nuxt/site-source/app/plugins/analytics.client.ts +121 -0
- package/dist/resources/components/nuxt/site-source/app/plugins/google-identity.client.ts +24 -0
- package/dist/resources/components/nuxt/site-source/app/theme/accordion.ts +9 -0
- package/dist/resources/components/nuxt/site-source/app/theme/breadcrumb.ts +8 -0
- package/dist/resources/components/nuxt/site-source/app/theme/button.ts +92 -0
- package/dist/resources/components/nuxt/site-source/app/theme/carousel.ts +11 -0
- package/dist/resources/components/nuxt/site-source/app/theme/checkbox.ts +12 -0
- package/dist/resources/components/nuxt/site-source/app/theme/index.ts +30 -0
- package/dist/resources/components/nuxt/site-source/app/theme/input.ts +47 -0
- package/dist/resources/components/nuxt/site-source/app/theme/modal.ts +9 -0
- package/dist/resources/components/nuxt/site-source/app/theme/pagination.ts +6 -0
- package/dist/resources/components/nuxt/site-source/app/theme/select.ts +23 -0
- package/dist/resources/components/nuxt/site-source/app/theme/stepper.ts +10 -0
- package/dist/resources/components/nuxt/site-source/app/theme/toast.ts +8 -0
- package/dist/resources/components/nuxt/site-source/app/theme/tooltip.ts +6 -0
- package/dist/resources/components/nuxt/site-source/app/types/site-shell.ts +85 -0
- package/dist/resources/components/react/ui/Button.tsx +73 -0
- package/dist/resources/components/react/ui/Input.tsx +44 -0
- package/dist/resources/components/registry.json +355 -0
- package/dist/resources/components/vue/feedback/Toast.vue +120 -0
- package/dist/resources/components/vue/feedback/useToast.ts +70 -0
- package/dist/resources/components/vue/media/FileUpload.vue +229 -0
- package/dist/resources/components/vue/media/VideoPlayer.vue +157 -0
- package/dist/resources/components/vue/ui/AppImage.vue +147 -0
- package/dist/resources/components/vue/ui/BottomSheet.vue +217 -0
- package/dist/resources/components/vue/ui/Button.vue +154 -0
- package/dist/resources/components/vue/ui/Card.vue +111 -0
- package/dist/resources/components/vue/ui/Input.vue +113 -0
- package/dist/resources/components/vue/ui/Modal.vue +193 -0
- package/dist/resources/components/vue/ui/ScrollArea.vue +163 -0
- package/dist/resources/components/vue/ui/Tooltip.vue +115 -0
- package/dist/resources/registry.json +158 -0
- package/dist/resources/snippets/node/cache.ts +116 -0
- package/dist/resources/snippets/node/date.ts +126 -0
- package/dist/resources/snippets/node/logger.ts +104 -0
- package/dist/resources/snippets/node/validation.ts +132 -0
- package/dist/resources/snippets/react/useDebounce.ts +90 -0
- package/dist/resources/snippets/registry.json +65 -0
- package/dist/resources/snippets/vue/useAsync.ts +96 -0
- package/dist/resources/snippets/vue/usePagination.ts +102 -0
- package/dist/resources/templates/base/.claude/docs/architecture-template.md +459 -0
- package/dist/resources/templates/base/.claude/docs/architecture.md +137 -0
- package/dist/resources/templates/base/.claude/docs/index.md +42 -0
- package/dist/resources/templates/base/.claude/docs/security-lifecycle.md +129 -0
- package/dist/resources/templates/base/.claude/docs/verification.md +121 -0
- package/dist/resources/templates/base/AGENTS.md +415 -0
- package/dist/resources/templates/base/CLAUDE.md +415 -0
- package/dist/resources/templates/go-backend/.claude/docs/api-design.md +486 -0
- package/dist/resources/templates/go-backend/.claude/docs/architecture-template.md +449 -0
- package/dist/resources/templates/go-backend/.claude/docs/check-list.md +155 -0
- package/dist/resources/templates/go-backend/.claude/docs/database.md +369 -0
- package/dist/resources/templates/go-backend/.claude/docs/e2e-standards.md +161 -0
- package/dist/resources/templates/go-backend/.claude/docs/error-handling.md +558 -0
- package/dist/resources/templates/go-backend/.claude/docs/event-runtime-boundary.md +124 -0
- package/dist/resources/templates/go-backend/.claude/docs/identifier-contract.md +195 -0
- package/dist/resources/templates/go-backend/.claude/docs/index.md +22 -0
- package/dist/resources/templates/go-backend/.claude/docs/logging.md +314 -0
- package/dist/resources/templates/go-backend/.claude/docs/mediagen-provider-onboarding-sop.md +917 -0
- package/dist/resources/templates/go-backend/.claude/docs/mediagen-provider-quick-reference.md +195 -0
- package/dist/resources/templates/go-backend/.claude/docs/module-standards.md +309 -0
- package/dist/resources/templates/go-backend/.claude/docs/openapi-contract.md +141 -0
- package/dist/resources/templates/go-backend/.claude/docs/payment-gateway-onboarding.md +283 -0
- package/dist/resources/templates/go-backend/.claude/docs/platform-boundary.md +191 -0
- package/dist/resources/templates/go-backend/.claude/docs/quality-gates.md +112 -0
- package/dist/resources/templates/go-backend/.dockerignore +6 -0
- package/dist/resources/templates/go-backend/.env.example +13 -0
- package/dist/resources/templates/go-backend/.gitattributes +2 -0
- package/dist/resources/templates/go-backend/AGENTS.md +1139 -0
- package/dist/resources/templates/go-backend/CLAUDE.md +1139 -0
- package/dist/resources/templates/go-backend/Dockerfile +14 -0
- package/dist/resources/templates/go-backend/Makefile +71 -0
- package/dist/resources/templates/go-backend/README.md +66 -0
- package/dist/resources/templates/go-backend/_gitignore +10 -0
- package/dist/resources/templates/go-backend/api/openapi/README.md +29 -0
- package/dist/resources/templates/go-backend/api/openapi/dist/artifact-manifest.json +19 -0
- package/dist/resources/templates/go-backend/api/openapi/dist/conformance-matrix.json +276 -0
- package/dist/resources/templates/go-backend/api/openapi/document.go +30 -0
- package/dist/resources/templates/go-backend/api/openapi/package.json +28 -0
- package/dist/resources/templates/go-backend/api/openapi/pnpm-lock.yaml +3052 -0
- package/dist/resources/templates/go-backend/api/openapi/redocly-source.yaml +18 -0
- package/dist/resources/templates/go-backend/api/openapi/redocly.yaml +8 -0
- package/dist/resources/templates/go-backend/api/openapi/sdk-generators.json +16 -0
- package/dist/resources/templates/go-backend/api/openapi/service-registry.json +39 -0
- package/dist/resources/templates/go-backend/api/openapi/services/product-api/conformance/runtime.arazzo.yaml +65 -0
- package/dist/resources/templates/go-backend/api/openapi/services/product-api/dist/internal.openapi.json +327 -0
- package/dist/resources/templates/go-backend/api/openapi/services/product-api/dist/runtime-contract.json +56 -0
- package/dist/resources/templates/go-backend/api/openapi/services/product-api/openapi.yaml +222 -0
- package/dist/resources/templates/go-backend/api/openapi/services/worker/conformance/runtime.arazzo.yaml +65 -0
- package/dist/resources/templates/go-backend/api/openapi/services/worker/dist/internal.openapi.json +327 -0
- package/dist/resources/templates/go-backend/api/openapi/services/worker/dist/runtime-contract.json +56 -0
- package/dist/resources/templates/go-backend/api/openapi/services/worker/openapi.yaml +222 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/breaking.mjs +416 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/build.mjs +103 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/conformance_coverage.mjs +111 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/contract_compiler.mjs +62 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/contract_policy.mjs +208 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/delegated_contract.mjs +302 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/deterministic_archive.mjs +69 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/documentation_example_privacy.mjs +93 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/documentation_projection.mjs +498 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/documentation_quality.mjs +346 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/git_artifact_history.mjs +188 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/manifest.mjs +170 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/overlay.mjs +98 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/project.mjs +549 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/route_contract.mjs +156 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/runtime_conformance.mjs +193 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/scalar_asset_localization.mjs +164 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/sdk_generator.mjs +229 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/semantic_version.mjs +64 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/service_contract_inputs.mjs +16 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/breaking.test.mjs +365 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/build.test.mjs +42 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/conformance_coverage.test.mjs +88 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/contract_policy.test.mjs +257 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/delegated_contract.test.mjs +205 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/documentation_example_privacy.test.mjs +51 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/documentation_projection.test.mjs +368 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/documentation_quality.test.mjs +151 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/git_artifact_history.test.mjs +60 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/head_policy.test.mjs +8 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/overlay.test.mjs +44 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/projection.test.mjs +270 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/redocly_documentation_rules.test.mjs +146 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/release_manifest.test.mjs +76 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/route_contract.test.mjs +119 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/runtime_conformance.test.mjs +75 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/scalar_asset_localization.test.mjs +50 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/sdk_generator.test.mjs +31 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/semantic_version.test.mjs +60 -0
- package/dist/resources/templates/go-backend/api/openapi/tooling/test/service_contract_inputs.test.mjs +27 -0
- package/dist/resources/templates/go-backend/cmd/internal/runtime/resources.go +125 -0
- package/dist/resources/templates/go-backend/cmd/internal/runtime/runtime.go +102 -0
- package/dist/resources/templates/go-backend/cmd/internal/runtime/runtime_test.go +70 -0
- package/dist/resources/templates/go-backend/cmd/product-api/lifecycle_test.go +58 -0
- package/dist/resources/templates/go-backend/cmd/product-api/main.go +32 -0
- package/dist/resources/templates/go-backend/cmd/product-api/wire.go +13 -0
- package/dist/resources/templates/go-backend/cmd/product-api/wire_gen.go +94 -0
- package/dist/resources/templates/go-backend/cmd/worker/main.go +47 -0
- package/dist/resources/templates/go-backend/cmd/worker/wire.go +14 -0
- package/dist/resources/templates/go-backend/cmd/worker/wire_gen.go +111 -0
- package/dist/resources/templates/go-backend/configs/config.yaml +37 -0
- package/dist/resources/templates/go-backend/deployments/compose.yaml +71 -0
- package/dist/resources/templates/go-backend/docs/openapi-provenance.json +489 -0
- package/dist/resources/templates/go-backend/docs/runtime-provenance.json +175 -0
- package/dist/resources/templates/go-backend/docs/source-provenance.json +3568 -0
- package/dist/resources/templates/go-backend/docs/standards-provenance.json +1624 -0
- package/dist/resources/templates/go-backend/go.mod +256 -0
- package/dist/resources/templates/go-backend/go.sum +805 -0
- package/dist/resources/templates/go-backend/internal/common/canonicaljson/canonical.go +370 -0
- package/dist/resources/templates/go-backend/internal/common/canonicaljson/canonical_test.go +223 -0
- package/dist/resources/templates/go-backend/internal/common/checkoutbff/contracts.go +125 -0
- package/dist/resources/templates/go-backend/internal/common/checkoutbff/platform_client.go +212 -0
- package/dist/resources/templates/go-backend/internal/common/checkoutbff/platform_client_test.go +319 -0
- package/dist/resources/templates/go-backend/internal/common/contentaccess/contentaccess.go +50 -0
- package/dist/resources/templates/go-backend/internal/common/contracts/contact.go +85 -0
- package/dist/resources/templates/go-backend/internal/common/ctxutil/identity.go +20 -0
- package/dist/resources/templates/go-backend/internal/common/ctxutil/product.go +53 -0
- package/dist/resources/templates/go-backend/internal/common/enumdomain/payment.go +12 -0
- package/dist/resources/templates/go-backend/internal/common/enums/dto_admin.go +9 -0
- package/dist/resources/templates/go-backend/internal/common/enums/enum.go +1247 -0
- package/dist/resources/templates/go-backend/internal/common/enums/handler_admin.go +66 -0
- package/dist/resources/templates/go-backend/internal/common/enums/module.go +46 -0
- package/dist/resources/templates/go-backend/internal/common/enums/provider.go +10 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register.go +11 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_audit.go +274 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_command_replay.go +12 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_config.go +27 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_locale.go +37 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_ops.go +14 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_outbox.go +15 -0
- package/dist/resources/templates/go-backend/internal/common/enums/register_rule_expression.go +63 -0
- package/dist/resources/templates/go-backend/internal/common/enums/registry.go +77 -0
- package/dist/resources/templates/go-backend/internal/common/httporigin/origin.go +62 -0
- package/dist/resources/templates/go-backend/internal/common/httporigin/origin_test.go +38 -0
- package/dist/resources/templates/go-backend/internal/common/iamcredential/plaintext.go +35 -0
- package/dist/resources/templates/go-backend/internal/common/iamcredential/plaintext_test.go +29 -0
- package/dist/resources/templates/go-backend/internal/common/iamscope/scope.go +212 -0
- package/dist/resources/templates/go-backend/internal/common/iamscope/scope_binding.go +26 -0
- package/dist/resources/templates/go-backend/internal/common/iamscope/scope_filter.go +173 -0
- package/dist/resources/templates/go-backend/internal/common/iamscope/scope_filter_test.go +279 -0
- package/dist/resources/templates/go-backend/internal/common/internalapi/authorization_details.go +10 -0
- package/dist/resources/templates/go-backend/internal/common/internalapi/route_permission_policies.go +660 -0
- package/dist/resources/templates/go-backend/internal/common/internalapi/route_permission_policies_test.go +331 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/audience_token_source.go +166 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/bootstrap_token_exchanger.go +183 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/bound_service_token_signer.go +52 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/delegated_access_token_exchanger.go +189 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/delegated_access_token_exchanger_test.go +159 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/product_scoped_service_token_signer.go +92 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/provider.go +25 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/request_signer.go +86 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/resolver.go +69 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/resolver_test.go +42 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/route_scope.go +95 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/route_scope_test.go +78 -0
- package/dist/resources/templates/go-backend/internal/common/internalservice/service_identity_test.go +387 -0
- package/dist/resources/templates/go-backend/internal/common/jsonschema/compiler.go +100 -0
- package/dist/resources/templates/go-backend/internal/common/jsonschema/compiler_test.go +41 -0
- package/dist/resources/templates/go-backend/internal/common/jwksapi/handler.go +83 -0
- package/dist/resources/templates/go-backend/internal/common/jwksapi/handler_test.go +104 -0
- package/dist/resources/templates/go-backend/internal/common/locale/locale.go +145 -0
- package/dist/resources/templates/go-backend/internal/common/locale/locale_test.go +75 -0
- package/dist/resources/templates/go-backend/internal/common/mediaref/mediaref.go +54 -0
- package/dist/resources/templates/go-backend/internal/common/mediaref/mediaref_test.go +77 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/apikey_auth.go +320 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/apikey_throttle.go +158 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/auth.go +40 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/auth_test.go +50 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/client_context.go +86 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/cors.go +68 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/event_context.go +18 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/gateway_identity.go +279 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/helpers.go +159 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_delegated_route_permission.go +171 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_delegated_token_auth.go +151 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_delegated_token_auth_test.go +99 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_service_identity.go +138 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/iam_service_token_auth.go +74 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/idempotent.go +273 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/idempotent_test.go +83 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/internal_route_permission.go +45 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/internal_route_permission_test.go +186 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/logging.go +191 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/metrics.go +45 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/middleware_test.go +1516 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/principal_context.go +160 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/principal_context_test.go +355 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/product_context.go +100 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/recovery.go +40 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/referral_attribution.go +178 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/requestid.go +48 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/resource_permission.go +790 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/resource_permission_test.go +440 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/service_credential_auth.go +67 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/tenant.go +148 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/throttle.go +310 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/trusted_client_ip.go +23 -0
- package/dist/resources/templates/go-backend/internal/common/middleware/trusted_client_ip_test.go +60 -0
- package/dist/resources/templates/go-backend/internal/common/money/currency.go +25 -0
- package/dist/resources/templates/go-backend/internal/common/money/errors.go +23 -0
- package/dist/resources/templates/go-backend/internal/common/money/format.go +123 -0
- package/dist/resources/templates/go-backend/internal/common/money/format_test.go +204 -0
- package/dist/resources/templates/go-backend/internal/common/money/gateway.go +144 -0
- package/dist/resources/templates/go-backend/internal/common/money/gateway_test.go +165 -0
- package/dist/resources/templates/go-backend/internal/common/money/rounding.go +56 -0
- package/dist/resources/templates/go-backend/internal/common/money/rounding_test.go +51 -0
- package/dist/resources/templates/go-backend/internal/common/principal/context.go +56 -0
- package/dist/resources/templates/go-backend/internal/common/principal/principal.go +49 -0
- package/dist/resources/templates/go-backend/internal/common/productcode/code.go +24 -0
- package/dist/resources/templates/go-backend/internal/common/productcode/code_test.go +35 -0
- package/dist/resources/templates/go-backend/internal/common/providerconfig/schema.go +577 -0
- package/dist/resources/templates/go-backend/internal/common/providerconfig/schema_test.go +47 -0
- package/dist/resources/templates/go-backend/internal/common/requestprivacy/request.go +246 -0
- package/dist/resources/templates/go-backend/internal/common/requestprivacy/request_test.go +170 -0
- package/dist/resources/templates/go-backend/internal/common/response/pagination.go +60 -0
- package/dist/resources/templates/go-backend/internal/common/response/response.go +110 -0
- package/dist/resources/templates/go-backend/internal/common/response/response_test.go +463 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/ast.go +141 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/ast_test.go +81 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/canonical.go +184 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/canonical_test.go +319 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/decoder.go +555 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/decoder_test.go +260 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/errors.go +55 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/evaluator.go +96 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/evaluator_test.go +220 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/fuzz_test.go +116 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/limits.go +331 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/schema.go +412 -0
- package/dist/resources/templates/go-backend/internal/common/ruleexpression/schema_test.go +164 -0
- package/dist/resources/templates/go-backend/internal/common/runtimeinput/runtime_input.go +627 -0
- package/dist/resources/templates/go-backend/internal/common/runtimeinput/runtime_input_test.go +245 -0
- package/dist/resources/templates/go-backend/internal/common/semver/errors.go +6 -0
- package/dist/resources/templates/go-backend/internal/common/semver/semver.go +125 -0
- package/dist/resources/templates/go-backend/internal/common/semver/semver_test.go +205 -0
- package/dist/resources/templates/go-backend/internal/common/serviceidentity/audience.go +48 -0
- package/dist/resources/templates/go-backend/internal/common/serviceidentity/audience_test.go +35 -0
- package/dist/resources/templates/go-backend/internal/common/serviceidentity/resource_identifier.go +33 -0
- package/dist/resources/templates/go-backend/internal/common/serviceidentity/resource_identifier_test.go +32 -0
- package/dist/resources/templates/go-backend/internal/common/tradeno/generator.go +99 -0
- package/dist/resources/templates/go-backend/internal/common/tradeno/generator_test.go +396 -0
- package/dist/resources/templates/go-backend/internal/common/tradeno/prefix.go +247 -0
- package/dist/resources/templates/go-backend/internal/common/types/asset_url.go +11 -0
- package/dist/resources/templates/go-backend/internal/common/types/billing.go +89 -0
- package/dist/resources/templates/go-backend/internal/common/types/billing_test.go +77 -0
- package/dist/resources/templates/go-backend/internal/common/types/country.go +74 -0
- package/dist/resources/templates/go-backend/internal/common/types/country_test.go +28 -0
- package/dist/resources/templates/go-backend/internal/common/types/currency.go +60 -0
- package/dist/resources/templates/go-backend/internal/common/types/identifiers.go +41 -0
- package/dist/resources/templates/go-backend/internal/common/types/operator.go +28 -0
- package/dist/resources/templates/go-backend/internal/common/types/subscription_entitlement.go +24 -0
- package/dist/resources/templates/go-backend/internal/common/types/subscription_entitlement_test.go +35 -0
- package/dist/resources/templates/go-backend/internal/common/types/tier.go +72 -0
- package/dist/resources/templates/go-backend/internal/common/types/types.go +411 -0
- package/dist/resources/templates/go-backend/internal/common/types/types_test.go +295 -0
- package/dist/resources/templates/go-backend/internal/common/utils/constants.go +100 -0
- package/dist/resources/templates/go-backend/internal/common/utils/crypto.go +158 -0
- package/dist/resources/templates/go-backend/internal/common/utils/crypto_test.go +345 -0
- package/dist/resources/templates/go-backend/internal/common/utils/duration.go +25 -0
- package/dist/resources/templates/go-backend/internal/common/utils/helpers.go +18 -0
- package/dist/resources/templates/go-backend/internal/common/utils/json.go +62 -0
- package/dist/resources/templates/go-backend/internal/common/utils/json_test.go +76 -0
- package/dist/resources/templates/go-backend/internal/common/utils/pagination.go +51 -0
- package/dist/resources/templates/go-backend/internal/common/utils/pagination_test.go +45 -0
- package/dist/resources/templates/go-backend/internal/common/utils/pointer.go +107 -0
- package/dist/resources/templates/go-backend/internal/common/utils/pointer_test.go +15 -0
- package/dist/resources/templates/go-backend/internal/common/utils/slice.go +24 -0
- package/dist/resources/templates/go-backend/internal/common/utils/snowflake.go +110 -0
- package/dist/resources/templates/go-backend/internal/common/utils/snowflake_test.go +316 -0
- package/dist/resources/templates/go-backend/internal/common/utils/string.go +16 -0
- package/dist/resources/templates/go-backend/internal/common/utils/timefmt.go +42 -0
- package/dist/resources/templates/go-backend/internal/common/validator/validator.go +136 -0
- package/dist/resources/templates/go-backend/internal/common/validator/validator_test.go +240 -0
- package/dist/resources/templates/go-backend/internal/common/youtubeapi/client.go +224 -0
- package/dist/resources/templates/go-backend/internal/core/apicontract/document.go +269 -0
- package/dist/resources/templates/go-backend/internal/core/apicontract/document_test.go +104 -0
- package/dist/resources/templates/go-backend/internal/core/apicontract/route_validator.go +78 -0
- package/dist/resources/templates/go-backend/internal/core/apicontract/route_validator_test.go +108 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/assets/scalar-api-reference.js +2385 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/assets/scalar-api-reference.metadata.json +10 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/route.go +107 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/route_test.go +200 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/scalar.go +117 -0
- package/dist/resources/templates/go-backend/internal/core/apidocs/scalar_test.go +99 -0
- package/dist/resources/templates/go-backend/internal/core/audit/access_log_policy.go +91 -0
- package/dist/resources/templates/go-backend/internal/core/audit/access_log_policy_test.go +51 -0
- package/dist/resources/templates/go-backend/internal/core/audit/actor_resolver.go +36 -0
- package/dist/resources/templates/go-backend/internal/core/audit/constants.go +30 -0
- package/dist/resources/templates/go-backend/internal/core/audit/context.go +119 -0
- package/dist/resources/templates/go-backend/internal/core/audit/context_test.go +310 -0
- package/dist/resources/templates/go-backend/internal/core/audit/dto.go +468 -0
- package/dist/resources/templates/go-backend/internal/core/audit/dto_admin.go +172 -0
- package/dist/resources/templates/go-backend/internal/core/audit/enum.go +460 -0
- package/dist/resources/templates/go-backend/internal/core/audit/enum_test.go +314 -0
- package/dist/resources/templates/go-backend/internal/core/audit/errors.go +9 -0
- package/dist/resources/templates/go-backend/internal/core/audit/handler.go +568 -0
- package/dist/resources/templates/go-backend/internal/core/audit/listener.go +319 -0
- package/dist/resources/templates/go-backend/internal/core/audit/listener_test.go +98 -0
- package/dist/resources/templates/go-backend/internal/core/audit/middleware.go +669 -0
- package/dist/resources/templates/go-backend/internal/core/audit/middleware_test.go +268 -0
- package/dist/resources/templates/go-backend/internal/core/audit/model.go +306 -0
- package/dist/resources/templates/go-backend/internal/core/audit/partition_job.go +316 -0
- package/dist/resources/templates/go-backend/internal/core/audit/ports.go +9 -0
- package/dist/resources/templates/go-backend/internal/core/audit/provider.go +30 -0
- package/dist/resources/templates/go-backend/internal/core/audit/repository.go +1007 -0
- package/dist/resources/templates/go-backend/internal/core/audit/repository_test.go +934 -0
- package/dist/resources/templates/go-backend/internal/core/audit/router.go +85 -0
- package/dist/resources/templates/go-backend/internal/core/audit/service.go +770 -0
- package/dist/resources/templates/go-backend/internal/core/audit/service_test.go +331 -0
- package/dist/resources/templates/go-backend/internal/core/audit/vo_admin.go +475 -0
- package/dist/resources/templates/go-backend/internal/core/cache/config.go +30 -0
- package/dist/resources/templates/go-backend/internal/core/cache/key.go +41 -0
- package/dist/resources/templates/go-backend/internal/core/cache/key_test.go +62 -0
- package/dist/resources/templates/go-backend/internal/core/cache/l1.go +153 -0
- package/dist/resources/templates/go-backend/internal/core/cache/l1_test.go +212 -0
- package/dist/resources/templates/go-backend/internal/core/cache/manager.go +278 -0
- package/dist/resources/templates/go-backend/internal/core/cache/manager_provider.go +24 -0
- package/dist/resources/templates/go-backend/internal/core/cache/metrics.go +126 -0
- package/dist/resources/templates/go-backend/internal/core/cache/namespace.go +46 -0
- package/dist/resources/templates/go-backend/internal/core/cache/namespace_test.go +90 -0
- package/dist/resources/templates/go-backend/internal/core/cache/options.go +39 -0
- package/dist/resources/templates/go-backend/internal/core/cache/options_test.go +96 -0
- package/dist/resources/templates/go-backend/internal/core/cache/redis.go +311 -0
- package/dist/resources/templates/go-backend/internal/core/cache/redis_test.go +51 -0
- package/dist/resources/templates/go-backend/internal/core/cache/serializer.go +31 -0
- package/dist/resources/templates/go-backend/internal/core/cache/serializer_test.go +139 -0
- package/dist/resources/templates/go-backend/internal/core/cache/singleflight.go +53 -0
- package/dist/resources/templates/go-backend/internal/core/cache/singleflight_test.go +211 -0
- package/dist/resources/templates/go-backend/internal/core/cache/warming.go +86 -0
- package/dist/resources/templates/go-backend/internal/core/clock/clock.go +66 -0
- package/dist/resources/templates/go-backend/internal/core/clock/clock_test.go +26 -0
- package/dist/resources/templates/go-backend/internal/core/clock/runtime_clock.go +283 -0
- package/dist/resources/templates/go-backend/internal/core/clock/runtime_clock_test.go +98 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/errors.go +6 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/model.go +90 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/model_test.go +79 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/namespace.go +7 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/persistence.go +269 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/persistence_test.go +185 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/provider.go +9 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/repository.go +22 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/service.go +853 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/service_persistence_test.go +432 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/service_test.go +891 -0
- package/dist/resources/templates/go-backend/internal/core/commandreplay/types.go +121 -0
- package/dist/resources/templates/go-backend/internal/core/config/config.go +2069 -0
- package/dist/resources/templates/go-backend/internal/core/config/config_test.go +1122 -0
- package/dist/resources/templates/go-backend/internal/core/config/contract/contract_test.go +388 -0
- package/dist/resources/templates/go-backend/internal/core/config/contract/docs.go +198 -0
- package/dist/resources/templates/go-backend/internal/core/config/contract/verify.go +424 -0
- package/dist/resources/templates/go-backend/internal/core/config/enum.go +46 -0
- package/dist/resources/templates/go-backend/internal/core/config/metadata.go +717 -0
- package/dist/resources/templates/go-backend/internal/core/config/metadata_test.go +228 -0
- package/dist/resources/templates/go-backend/internal/core/config/product_admin_config_test.go +210 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/aes_gcm.go +111 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/aes_gcm_test.go +364 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/encryptor.go +12 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/envelope_encryptor.go +134 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/envelope_encryptor_test.go +118 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/pem.go +112 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/pem_test.go +44 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/provider.go +130 -0
- package/dist/resources/templates/go-backend/internal/core/crypto/provider_test.go +92 -0
- package/dist/resources/templates/go-backend/internal/core/database/base_model.go +24 -0
- package/dist/resources/templates/go-backend/internal/core/database/clickhouse.go +121 -0
- package/dist/resources/templates/go-backend/internal/core/database/database.go +112 -0
- package/dist/resources/templates/go-backend/internal/core/database/database_logger_test.go +95 -0
- package/dist/resources/templates/go-backend/internal/core/database/errors.go +25 -0
- package/dist/resources/templates/go-backend/internal/core/database/metrics_plugin.go +105 -0
- package/dist/resources/templates/go-backend/internal/core/database/pool_collector.go +71 -0
- package/dist/resources/templates/go-backend/internal/core/database/read_replica.go +520 -0
- package/dist/resources/templates/go-backend/internal/core/database/transaction.go +170 -0
- package/dist/resources/templates/go-backend/internal/core/database/transaction_test.go +282 -0
- package/dist/resources/templates/go-backend/internal/core/distlock/lock.go +353 -0
- package/dist/resources/templates/go-backend/internal/core/distlock/lock_test.go +106 -0
- package/dist/resources/templates/go-backend/internal/core/errors/handler.go +189 -0
- package/dist/resources/templates/go-backend/internal/core/errors/handler_test.go +515 -0
- package/dist/resources/templates/go-backend/internal/core/eventbus/eventbus.go +667 -0
- package/dist/resources/templates/go-backend/internal/core/eventbus/eventbus_test.go +792 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/noop.go +22 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/provider.go +20 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/publisher.go +38 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/redis.go +109 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/routing.go +104 -0
- package/dist/resources/templates/go-backend/internal/core/eventstream/routing_test.go +71 -0
- package/dist/resources/templates/go-backend/internal/core/geoip/model.go +19 -0
- package/dist/resources/templates/go-backend/internal/core/geoip/service.go +88 -0
- package/dist/resources/templates/go-backend/internal/core/health/health.go +333 -0
- package/dist/resources/templates/go-backend/internal/core/health/health_test.go +27 -0
- package/dist/resources/templates/go-backend/internal/core/httpclient/client.go +772 -0
- package/dist/resources/templates/go-backend/internal/core/httpclient/client_test.go +287 -0
- package/dist/resources/templates/go-backend/internal/core/httpclient/download.go +578 -0
- package/dist/resources/templates/go-backend/internal/core/httpclient/download_test.go +374 -0
- package/dist/resources/templates/go-backend/internal/core/jwtkeyring/jwk.go +38 -0
- package/dist/resources/templates/go-backend/internal/core/jwtkeyring/keyring.go +144 -0
- package/dist/resources/templates/go-backend/internal/core/jwtkeyring/keyring_test.go +128 -0
- package/dist/resources/templates/go-backend/internal/core/jwtkeyring/registry.go +60 -0
- package/dist/resources/templates/go-backend/internal/core/logger/logger.go +53 -0
- package/dist/resources/templates/go-backend/internal/core/logger/logger_test.go +194 -0
- package/dist/resources/templates/go-backend/internal/core/observability/metrics.go +358 -0
- package/dist/resources/templates/go-backend/internal/core/observability/sentry.go +445 -0
- package/dist/resources/templates/go-backend/internal/core/observability/sentry_privacy_test.go +175 -0
- package/dist/resources/templates/go-backend/internal/core/observability/tracing.go +187 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/model.go +314 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/model_test.go +77 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/persistence.go +51 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/provider.go +23 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/relay.go +1138 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/relay_postgres_test.go +257 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/relay_test.go +690 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/rescheduler.go +164 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/rescheduler_test.go +209 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/writer.go +249 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/writer_postgres_test.go +170 -0
- package/dist/resources/templates/go-backend/internal/core/outbox/writer_test.go +123 -0
- package/dist/resources/templates/go-backend/internal/core/provider.go +198 -0
- package/dist/resources/templates/go-backend/internal/core/queue/metrics_middleware.go +38 -0
- package/dist/resources/templates/go-backend/internal/core/queue/metrics_middleware_test.go +12 -0
- package/dist/resources/templates/go-backend/internal/core/queue/queue.go +288 -0
- package/dist/resources/templates/go-backend/internal/core/queue/queue_test.go +159 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/bulkhead.go +514 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/bulkhead_test.go +984 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/circuitbreaker.go +358 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/circuitbreaker_test.go +788 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/retry.go +318 -0
- package/dist/resources/templates/go-backend/internal/core/resilience/retry_test.go +735 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/recorder.go +305 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/run_context.go +124 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/run_context_test.go +85 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/scheduler.go +1589 -0
- package/dist/resources/templates/go-backend/internal/core/schedule/scheduler_control_test.go +808 -0
- package/dist/resources/templates/go-backend/internal/core/storage/oss_provider.go +398 -0
- package/dist/resources/templates/go-backend/internal/core/storage/oss_provider_test.go +89 -0
- package/dist/resources/templates/go-backend/internal/core/storage/path.go +110 -0
- package/dist/resources/templates/go-backend/internal/core/storage/path_test.go +301 -0
- package/dist/resources/templates/go-backend/internal/core/storage/s3_provider.go +489 -0
- package/dist/resources/templates/go-backend/internal/core/storage/s3_provider_test.go +60 -0
- package/dist/resources/templates/go-backend/internal/core/storage/storage.go +268 -0
- package/dist/resources/templates/go-backend/internal/core/storage/validation.go +225 -0
- package/dist/resources/templates/go-backend/internal/core/storage/validation_test.go +495 -0
- package/dist/resources/templates/go-backend/internal/core/temporal/logger.go +38 -0
- package/dist/resources/templates/go-backend/internal/core/temporal/provider.go +126 -0
- package/dist/resources/templates/go-backend/internal/core/temporal/provider_test.go +67 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/client.go +282 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/client_test.go +81 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/config.go +58 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/handler.go +53 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/hub.go +269 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/message.go +273 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/notifier.go +92 -0
- package/dist/resources/templates/go-backend/internal/core/websocket/provider.go +33 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/action.go +77 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/action_test.go +238 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/condition.go +107 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/decision.go +256 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/enum.go +643 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/errors.go +102 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/principal_record.go +21 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/product_context.go +486 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/resource.go +215 -0
- package/dist/resources/templates/go-backend/internal/integrations/onex/iam/resource_test.go +242 -0
- package/dist/resources/templates/go-backend/internal/products/README.md +5 -0
- package/dist/resources/templates/go-backend/internal/sharedevents/README.md +5 -0
- package/dist/resources/templates/go-backend/migrations/000001_infrastructure.down.sql +13 -0
- package/dist/resources/templates/go-backend/migrations/000001_infrastructure.up.sql +886 -0
- package/dist/resources/templates/go-backend/pkg/apierror/error.go +327 -0
- package/dist/resources/templates/go-backend/pkg/apierror/error_code.go +65 -0
- package/dist/resources/templates/go-backend/pkg/apierror/error_test.go +41 -0
- package/dist/resources/templates/go-backend/pkg/apierror/error_type.go +14 -0
- package/dist/resources/templates/go-backend/pkg/apierror/http_response.go +216 -0
- package/dist/resources/templates/go-backend/pkg/apierror/http_response_test.go +216 -0
- package/dist/resources/templates/go-backend/scripts/check-openapi-clean-deletion.sh +54 -0
- package/dist/resources/templates/go-backend/scripts/test-migrations.sh +32 -0
- package/dist/resources/templates/go-backend/tests/infrastructure.sql +69 -0
- package/dist/resources/templates/mcp-server/.claude/docs/stack.md +338 -0
- package/dist/resources/templates/mcp-server/.editorconfig +13 -0
- package/dist/resources/templates/mcp-server/.env.example +8 -0
- package/dist/resources/templates/mcp-server/.github/ISSUE_TEMPLATE/bug_report.yml +104 -0
- package/dist/resources/templates/mcp-server/.github/ISSUE_TEMPLATE/feature_request.yml +54 -0
- package/dist/resources/templates/mcp-server/.github/PULL_REQUEST_TEMPLATE.md +36 -0
- package/dist/resources/templates/mcp-server/.github/workflows/ci.yml +78 -0
- package/dist/resources/templates/mcp-server/.husky/commit-msg +1 -0
- package/dist/resources/templates/mcp-server/.husky/pre-commit +1 -0
- package/dist/resources/templates/mcp-server/.lintstagedrc.json +4 -0
- package/dist/resources/templates/mcp-server/.nvmrc +1 -0
- package/dist/resources/templates/mcp-server/.prettierrc +8 -0
- package/dist/resources/templates/mcp-server/CONTRIBUTING.md +184 -0
- package/dist/resources/templates/mcp-server/Dockerfile +23 -0
- package/dist/resources/templates/mcp-server/LICENSE +21 -0
- package/dist/resources/templates/mcp-server/README.md +123 -0
- package/dist/resources/templates/mcp-server/_gitignore +26 -0
- package/dist/resources/templates/mcp-server/commitlint.config.js +24 -0
- package/dist/resources/templates/mcp-server/eslint.config.js +30 -0
- package/dist/resources/templates/mcp-server/package.json +72 -0
- package/dist/resources/templates/mcp-server/src/index.ts +27 -0
- package/dist/resources/templates/mcp-server/src/resources.ts +33 -0
- package/dist/resources/templates/mcp-server/src/services/.gitkeep +0 -0
- package/dist/resources/templates/mcp-server/src/tools.ts +43 -0
- package/dist/resources/templates/mcp-server/src/types/index.ts +19 -0
- package/dist/resources/templates/mcp-server/src/utils/index.ts +31 -0
- package/dist/resources/templates/mcp-server/tsconfig.json +22 -0
- package/dist/resources/templates/mcp-server/tsup.config.ts +14 -0
- package/dist/resources/templates/mcp-server/vitest.config.ts +15 -0
- package/dist/resources/templates/nuxt/.claude/docs/stack.md +666 -0
- package/dist/resources/templates/nuxt/.editorconfig +15 -0
- package/dist/resources/templates/nuxt/.env.example +22 -0
- package/dist/resources/templates/nuxt/.github/workflows/ci.yml +34 -0
- package/dist/resources/templates/nuxt/.husky/commit-msg +1 -0
- package/dist/resources/templates/nuxt/.husky/pre-commit +1 -0
- package/dist/resources/templates/nuxt/.nvmrc +1 -0
- package/dist/resources/templates/nuxt/.prettierignore +9 -0
- package/dist/resources/templates/nuxt/.prettierrc +1 -0
- package/dist/resources/templates/nuxt/README.md +23 -0
- package/dist/resources/templates/nuxt/_gitignore +7 -0
- package/dist/resources/templates/nuxt/app/app.config.ts +105 -0
- package/dist/resources/templates/nuxt/app/i18n/locales/en.json +5 -0
- package/dist/resources/templates/nuxt/app/pages/app/index.vue +224 -0
- package/dist/resources/templates/nuxt/app/pages/authors/[slug].vue +37 -0
- package/dist/resources/templates/nuxt/app/pages/blog/[slug].vue +55 -0
- package/dist/resources/templates/nuxt/app/pages/blog/category/[category].vue +38 -0
- package/dist/resources/templates/nuxt/app/pages/blog/index.vue +46 -0
- package/dist/resources/templates/nuxt/app/pages/index.vue +626 -0
- package/dist/resources/templates/nuxt/app/pages/legal/privacy.vue +21 -0
- package/dist/resources/templates/nuxt/app/pages/legal/terms.vue +21 -0
- package/dist/resources/templates/nuxt/app/pages/ui/index.vue +397 -0
- package/dist/resources/templates/nuxt/commitlint.config.mjs +1 -0
- package/dist/resources/templates/nuxt/eslint.config.mjs +4 -0
- package/dist/resources/templates/nuxt/lint-staged.config.mjs +8 -0
- package/dist/resources/templates/nuxt/nuxt.config.ts +71 -0
- package/dist/resources/templates/nuxt/package.json +67 -0
- package/dist/resources/templates/nuxt/public/apple-touch-icon.png +0 -0
- package/dist/resources/templates/nuxt/public/favicon.ico +0 -0
- package/dist/resources/templates/nuxt/public/favicon.svg +5 -0
- package/dist/resources/templates/nuxt/public/icon-16x16.png +0 -0
- package/dist/resources/templates/nuxt/public/icon-192x192.png +0 -0
- package/dist/resources/templates/nuxt/public/icon-32x32.png +0 -0
- package/dist/resources/templates/nuxt/public/icon-512x512.png +0 -0
- package/dist/resources/templates/nuxt/public/logo.svg +6 -0
- package/dist/resources/templates/nuxt/public/media/hero-product-gallery.png +0 -0
- package/dist/resources/templates/nuxt/server/api/content/sitemap-urls.get.ts +12 -0
- package/dist/resources/templates/nuxt/server/api/preview.get.ts +9 -0
- package/dist/resources/templates/nuxt/stylelint.config.mjs +3 -0
- package/dist/resources/templates/nuxt/test/e2e/rendering.test.ts +13 -0
- package/dist/resources/templates/nuxt/tsconfig.json +3 -0
- package/dist/resources/templates/nuxt/vitest.config.ts +8 -0
- package/package.json +8 -5
|
@@ -0,0 +1,3568 @@
|
|
|
1
|
+
{
|
|
2
|
+
"source_repository": "https://onedev.yhy.gd.cn/platform/onex",
|
|
3
|
+
"source_commit": "4fd93f675a6579773d16ab8272395cab8c761670",
|
|
4
|
+
"hash_scope": {
|
|
5
|
+
"source_sha256": "SHA-256 of exact source file bytes under source_repository at source_commit; source paths include backend/.",
|
|
6
|
+
"target_template_sha256": "SHA-256 of exact unrendered template file bytes, including {{module}} tokens; target paths relative to go-backend template root.",
|
|
7
|
+
"coverage": "Core/common foundation, IAM consumer protocol value closure, public apierror, Go module dependencies. Concrete platform bindings are individually excluded. Runtime/configuration/deployment files have separate ownership."
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
{
|
|
11
|
+
"source": "backend/internal/core/apicontract/document.go",
|
|
12
|
+
"target": "internal/core/apicontract/document.go",
|
|
13
|
+
"transformation": "module/import namespace only",
|
|
14
|
+
"source_sha256": "062965e25278444a5c258242f6d9c9e58ef42ceba1e2133b16437aa2f978c7d8",
|
|
15
|
+
"target_template_sha256": "062965e25278444a5c258242f6d9c9e58ef42ceba1e2133b16437aa2f978c7d8"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"source": "backend/internal/core/apicontract/document_test.go",
|
|
19
|
+
"target": "internal/core/apicontract/document_test.go",
|
|
20
|
+
"transformation": "module/import namespace only",
|
|
21
|
+
"source_sha256": "09a069398375a05b074cd59d692bceff57ffb8ce7a42f6256cbdafac1fedd546",
|
|
22
|
+
"target_template_sha256": "09a069398375a05b074cd59d692bceff57ffb8ce7a42f6256cbdafac1fedd546"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"source": "backend/internal/core/apicontract/route_validator.go",
|
|
26
|
+
"target": "internal/core/apicontract/route_validator.go",
|
|
27
|
+
"transformation": "module/import namespace only",
|
|
28
|
+
"source_sha256": "2ebbc35e6a1d5374b7deea10b2f23f35bb9e127f39223af18f9f7e9f5690a168",
|
|
29
|
+
"target_template_sha256": "2ebbc35e6a1d5374b7deea10b2f23f35bb9e127f39223af18f9f7e9f5690a168"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"source": "backend/internal/core/apicontract/route_validator_test.go",
|
|
33
|
+
"target": "internal/core/apicontract/route_validator_test.go",
|
|
34
|
+
"transformation": "module/import namespace only",
|
|
35
|
+
"source_sha256": "aaa56307747915e7d9e2404c4ea46f47d3fdc55e3b74a4931588f6eba8048552",
|
|
36
|
+
"target_template_sha256": "aaa56307747915e7d9e2404c4ea46f47d3fdc55e3b74a4931588f6eba8048552"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"source": "backend/internal/core/apidocs/assets/scalar-api-reference.js",
|
|
40
|
+
"target": "internal/core/apidocs/assets/scalar-api-reference.js",
|
|
41
|
+
"transformation": "module/import namespace only",
|
|
42
|
+
"source_sha256": "8c516fadf66bc384a8246da6f2c2e05dd8496c912b2885f247e77a8b05b38ad8",
|
|
43
|
+
"target_template_sha256": "8c516fadf66bc384a8246da6f2c2e05dd8496c912b2885f247e77a8b05b38ad8"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"source": "backend/internal/core/apidocs/assets/scalar-api-reference.metadata.json",
|
|
47
|
+
"target": "internal/core/apidocs/assets/scalar-api-reference.metadata.json",
|
|
48
|
+
"transformation": "module/import namespace only",
|
|
49
|
+
"source_sha256": "e3a5c41fa0e7d16a54cc41acf94750e6f0e1e34c82bff1778dedbe43e1cb4073",
|
|
50
|
+
"target_template_sha256": "e3a5c41fa0e7d16a54cc41acf94750e6f0e1e34c82bff1778dedbe43e1cb4073"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"source": "backend/internal/core/apidocs/route.go",
|
|
54
|
+
"target": "internal/core/apidocs/route.go",
|
|
55
|
+
"transformation": "module/import namespace only",
|
|
56
|
+
"source_sha256": "fe7f817d0ed037200f728062bcc649808b88e6196a3d13c727078b012132b65b",
|
|
57
|
+
"target_template_sha256": "43af260458069a70daa4ad69087950278a3e511ebe0d4740eae09f3979b4e868"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"source": "backend/internal/core/apidocs/route_test.go",
|
|
61
|
+
"target": "internal/core/apidocs/route_test.go",
|
|
62
|
+
"transformation": "module/import namespace only",
|
|
63
|
+
"source_sha256": "5a96d51ac1f906f3f065d5a053a2adcae0cae71919308a60fee2a6a2b9d8ff08",
|
|
64
|
+
"target_template_sha256": "d972058e58a27d438e96d6f688163efec1855a7f73cbe89bc00a1e64818906b1"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"source": "backend/internal/core/apidocs/scalar.go",
|
|
68
|
+
"target": "internal/core/apidocs/scalar.go",
|
|
69
|
+
"transformation": "module/import namespace only",
|
|
70
|
+
"source_sha256": "d64d510c2b47640a2045a82a605776d0eb03a30895c7177378534fdc9e821858",
|
|
71
|
+
"target_template_sha256": "d64d510c2b47640a2045a82a605776d0eb03a30895c7177378534fdc9e821858"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"source": "backend/internal/core/apidocs/scalar_test.go",
|
|
75
|
+
"target": "internal/core/apidocs/scalar_test.go",
|
|
76
|
+
"transformation": "module/import namespace only",
|
|
77
|
+
"source_sha256": "3d2acbd83410459dfc89f8a2993fdc8a998428217d633ea519abbf3758d404ac",
|
|
78
|
+
"target_template_sha256": "3d2acbd83410459dfc89f8a2993fdc8a998428217d633ea519abbf3758d404ac"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"source": "backend/internal/core/audit/access_log_policy.go",
|
|
82
|
+
"target": "internal/core/audit/access_log_policy.go",
|
|
83
|
+
"transformation": "module/import namespace only",
|
|
84
|
+
"source_sha256": "60402ace1c911b33ff3967a6201bd6487be401373ed58a4a7beccda5112190b3",
|
|
85
|
+
"target_template_sha256": "2186a04f2ee96d5b064c630f9b06a199c1fc426772f4e6f3d3cbb636a90a7ded"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"source": "backend/internal/core/audit/access_log_policy_test.go",
|
|
89
|
+
"target": "internal/core/audit/access_log_policy_test.go",
|
|
90
|
+
"transformation": "module/import namespace only",
|
|
91
|
+
"source_sha256": "acb369d59b648434aa6be70fa4a41b0649e97d455303d687e8f3300aafbac305",
|
|
92
|
+
"target_template_sha256": "1cc3db72eefca3340dd8cc7929f9973922c7755b45f91511dcfe20fc53ff0bc5"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"source": "backend/internal/core/audit/actor_resolver.go",
|
|
96
|
+
"target": "internal/core/audit/actor_resolver.go",
|
|
97
|
+
"transformation": "source-adapted",
|
|
98
|
+
"details": "Retains ActorResolver and reference values; excludes dbActorResolver/NewDBActorResolver and SQL helpers that directly access platform user/identity/IAM tables. Adds ActorReferenceSearcher consumer port for full keyword search without platform database authority.",
|
|
99
|
+
"source_sha256": "60ca87e3f9513a858831cfc52d0b712c7c25b3ea3cfbc8cefcc1c4a5afe561e7",
|
|
100
|
+
"target_template_sha256": "ac99b97c7186bc2af53a922558d6471b78dcd00f99cfec09d54784d0a9d85212"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"source": "backend/internal/core/audit/constants.go",
|
|
104
|
+
"target": "internal/core/audit/constants.go",
|
|
105
|
+
"transformation": "module/import namespace only",
|
|
106
|
+
"source_sha256": "6feecfa1b49a4c3893d68db62cb59f3161f0cd01e005e6f54d1bb0572fb11443",
|
|
107
|
+
"target_template_sha256": "6feecfa1b49a4c3893d68db62cb59f3161f0cd01e005e6f54d1bb0572fb11443"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"source": "backend/internal/core/audit/context.go",
|
|
111
|
+
"target": "internal/core/audit/context.go",
|
|
112
|
+
"transformation": "module/import namespace only",
|
|
113
|
+
"source_sha256": "c70534efba20ed895a8f8a820264e9d376050e79793dc4ab78e5eb48649965af",
|
|
114
|
+
"target_template_sha256": "c70534efba20ed895a8f8a820264e9d376050e79793dc4ab78e5eb48649965af"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"source": "backend/internal/core/audit/context_test.go",
|
|
118
|
+
"target": "internal/core/audit/context_test.go",
|
|
119
|
+
"transformation": "module/import namespace only",
|
|
120
|
+
"source_sha256": "9aee23b7e5f25cab73c4fcb3007e42f5657c156e29c173cca0709dbf7487467a",
|
|
121
|
+
"target_template_sha256": "9aee23b7e5f25cab73c4fcb3007e42f5657c156e29c173cca0709dbf7487467a"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"source": "backend/internal/core/audit/dto.go",
|
|
125
|
+
"target": "internal/core/audit/dto.go",
|
|
126
|
+
"transformation": "module/import namespace only",
|
|
127
|
+
"source_sha256": "cb714e77fd1500cabe749aa66bea6a9f215b311133bd555de133317cbcf879b4",
|
|
128
|
+
"target_template_sha256": "b284529c5df3ec673c3bb1741f3c96e83935f752ca6b983041a432c9c2abc6ef"
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"source": "backend/internal/core/audit/dto_admin.go",
|
|
132
|
+
"target": "internal/core/audit/dto_admin.go",
|
|
133
|
+
"transformation": "module/import namespace only",
|
|
134
|
+
"source_sha256": "edfc40f2a31e5eba7c033c9c119ed7f325dce381a332a746a650c43997eb1fa8",
|
|
135
|
+
"target_template_sha256": "6e532e8989715eb679219e70cdde1d53a11d93eb880f4ab21a5c904cef8cd72d"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"source": "backend/internal/core/audit/enum.go",
|
|
139
|
+
"target": "internal/core/audit/enum.go",
|
|
140
|
+
"transformation": "module/import namespace only",
|
|
141
|
+
"source_sha256": "8a2e0b9246c476a366f0dd1035f3d96d408064a2923a5e3a946baf62202d3097",
|
|
142
|
+
"target_template_sha256": "8a2e0b9246c476a366f0dd1035f3d96d408064a2923a5e3a946baf62202d3097"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"source": "backend/internal/core/audit/enum_test.go",
|
|
146
|
+
"target": "internal/core/audit/enum_test.go",
|
|
147
|
+
"transformation": "module/import namespace only",
|
|
148
|
+
"source_sha256": "c2b19f5711780edd3f07a8a0cd9d81c895ae3bc4696676b2003e157475bbf2b9",
|
|
149
|
+
"target_template_sha256": "c2b19f5711780edd3f07a8a0cd9d81c895ae3bc4696676b2003e157475bbf2b9"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"source": "backend/internal/core/audit/errors.go",
|
|
153
|
+
"target": "internal/core/audit/errors.go",
|
|
154
|
+
"transformation": "module/import namespace only",
|
|
155
|
+
"source_sha256": "852c762768f41dc84be5bd1ff2568f4a4d2de3ac94a1eee13f073eaa4d084594",
|
|
156
|
+
"target_template_sha256": "852c762768f41dc84be5bd1ff2568f4a4d2de3ac94a1eee13f073eaa4d084594"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"source": "backend/internal/core/audit/handler.go",
|
|
160
|
+
"target": "internal/core/audit/handler.go",
|
|
161
|
+
"transformation": "module/import namespace only",
|
|
162
|
+
"source_sha256": "9ae12e94a688f48e2952937468da5a92d216f8984d5969757e27c8137cab791c",
|
|
163
|
+
"target_template_sha256": "16c4732bd2cdcc7e6b35d4f6f7d119f5ce23e576fd515c50677f000fc4b14a5e"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"source": "backend/internal/core/audit/listener.go",
|
|
167
|
+
"target": "internal/core/audit/listener.go",
|
|
168
|
+
"transformation": "source-adapted",
|
|
169
|
+
"details": "Retained fillAuditCommonFields, restoreAuditActorSnapshot, auditActorType, fillLoginCommonFields, extractAuditChanges. Platform event switches/subscription lists replaced by EventProjection/ListenerConfig. Durable synchronous and reliable inbox projection retained.",
|
|
170
|
+
"source_sha256": "c4bdb4841b81b0689b6dc9075cebf43d33398477614db51099623ab6afae17b9",
|
|
171
|
+
"target_template_sha256": "ce850a2c4396d08ebd01cf7dffc0d346e8de056daff4baf1489df1c9e4fbed5d"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"source": "backend/internal/core/audit/listener_test.go",
|
|
175
|
+
"target": "internal/core/audit/listener_test.go",
|
|
176
|
+
"transformation": "source-adapted",
|
|
177
|
+
"details": "Platform business projection tests remain at source; template tests verify generic durable/reliable mapping, actor requirements, error propagation and envelope extraction.",
|
|
178
|
+
"source_sha256": "205b9782646c2fb9cafe428d62da0b875d8b2e3b2ffbd11dd6c7ea004cbee11f",
|
|
179
|
+
"target_template_sha256": "458157821134cf86ec1512c8f749a3a51cec6f3ecec34d9ea4acf79474c1fd99"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"source": "backend/internal/core/audit/middleware.go",
|
|
183
|
+
"target": "internal/core/audit/middleware.go",
|
|
184
|
+
"transformation": "module/import namespace only",
|
|
185
|
+
"source_sha256": "dccb18c6389821373df2b5f236e228811a160890ee0ba67a555ec240e5416afd",
|
|
186
|
+
"target_template_sha256": "f435ceb22c741072cc5d3159258dc65e30d7ae66fb81a1b5c8885c31bb47cc4b"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"source": "backend/internal/core/audit/middleware_test.go",
|
|
190
|
+
"target": "internal/core/audit/middleware_test.go",
|
|
191
|
+
"transformation": "module/import namespace only",
|
|
192
|
+
"source_sha256": "1c1b273290f8cf2ef3b40a8469224e67ef269855c372617898fd8127e96d2eec",
|
|
193
|
+
"target_template_sha256": "9c3b29cc3c6a9beb48a7e09dc15ad161f7d56ec76ee7f5ae06fd1b59d9ce0b74"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"source": "backend/internal/core/audit/model.go",
|
|
197
|
+
"target": "internal/core/audit/model.go",
|
|
198
|
+
"transformation": "module/import namespace only",
|
|
199
|
+
"source_sha256": "bd92fd1f75651fab4caa0c1e17c35ffba9e814c589488422f83b741c48a37336",
|
|
200
|
+
"target_template_sha256": "2909bf0eb60827594cd30033d06090718feb808e161fcb5428fa114d8aa21f9b"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"source": "backend/internal/core/audit/partition_job.go",
|
|
204
|
+
"target": "internal/core/audit/partition_job.go",
|
|
205
|
+
"transformation": "module/import namespace only",
|
|
206
|
+
"source_sha256": "c8ff2c5e353ac50368560d2a83275be4e6211fedb4ce32654cf63b57446403d9",
|
|
207
|
+
"target_template_sha256": "0acbeab5cdf3a9c2e6a6edc0d120564b4b3d9701f0ef103db3f12ab8b165295d"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"source": "backend/internal/core/audit/ports.go",
|
|
211
|
+
"target": "internal/core/audit/ports.go",
|
|
212
|
+
"transformation": "module/import namespace only",
|
|
213
|
+
"source_sha256": "9cfb4a0029110f9d75edd9f08869632a9f2dd6edec1bf9d827c91f9fc8c98a48",
|
|
214
|
+
"target_template_sha256": "9cfb4a0029110f9d75edd9f08869632a9f2dd6edec1bf9d827c91f9fc8c98a48"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"source": "backend/internal/core/audit/provider.go",
|
|
218
|
+
"target": "internal/core/audit/provider.go",
|
|
219
|
+
"transformation": "source-adapted",
|
|
220
|
+
"details": "Excludes NewDBActorResolver; ActorResolver and ActorReferenceSearcher must be supplied by composition from actual identity directory integration.",
|
|
221
|
+
"source_sha256": "82d904d11fce3ced29a95dc812671697c446b3034c2ac1d4a80f3813b79bd286",
|
|
222
|
+
"target_template_sha256": "e68348b1094ed1a0ca4da9f140775f7356a8156a9bc0aa0732c0b63a08339a0e"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"source": "backend/internal/core/audit/repository.go",
|
|
226
|
+
"target": "internal/core/audit/repository.go",
|
|
227
|
+
"transformation": "source-adapted",
|
|
228
|
+
"details": "Retains repositories, CRUD, pagination, scopes and keyword matching. Replaces platform SQL subqueries with mandatory ActorReferenceSearcher authoritative ID sets; errors propagate. All four repository constructors require the search port.",
|
|
229
|
+
"source_sha256": "45255e080c353b6d48e7d73ead1d0588fc609a584992b1fafc81bfb399359d6a",
|
|
230
|
+
"target_template_sha256": "7291dca88211154ca610ec437711637ac489e3bb90b99b280a3d785892bd67d7"
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"source": "backend/internal/core/audit/repository_test.go",
|
|
234
|
+
"target": "internal/core/audit/repository_test.go",
|
|
235
|
+
"transformation": "source-adapted",
|
|
236
|
+
"details": "Retains original repository tests. Excludes only two concrete DBActorResolver tests. Platform identity query fixtures moved from production subqueries into test-only reference search adapter. Adds directory failure propagation test for all four repositories.",
|
|
237
|
+
"source_sha256": "ef88f768b89dd32185e27047de434bcf49b2f98b1c50c090fdbcb9b9ac446251",
|
|
238
|
+
"target_template_sha256": "791858b38e97b44777ed85fd7411d093e0f2805878a9b3c717bec9a8d91825d9"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"source": "backend/internal/core/audit/router.go",
|
|
242
|
+
"target": "internal/core/audit/router.go",
|
|
243
|
+
"transformation": "module/import namespace only",
|
|
244
|
+
"source_sha256": "2255b4135d4cb2ed51e33ea8e29025d92ddfe8656cd3d70cdbbd295eb26c423c",
|
|
245
|
+
"target_template_sha256": "a95baac529a0bf445eac1849fd6d94ae270f653f364a60966056fdcefa19f1af"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"source": "backend/internal/core/audit/service.go",
|
|
249
|
+
"target": "internal/core/audit/service.go",
|
|
250
|
+
"transformation": "module/import namespace only",
|
|
251
|
+
"source_sha256": "3de3952df63023b7e0311dd05a37c0e6e9cad92bfe9703d5dd5e124964129765",
|
|
252
|
+
"target_template_sha256": "10b5c9c2b85f723e3596f2225a8d241f216c56de8903117a7fb63d7039695fe5"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"source": "backend/internal/core/audit/service_test.go",
|
|
256
|
+
"target": "internal/core/audit/service_test.go",
|
|
257
|
+
"transformation": "module/import namespace only",
|
|
258
|
+
"source_sha256": "ec44e4f96a0d979395ff70ec6b2352fd1163e745307025c6eda7a82cc6cb04d1",
|
|
259
|
+
"target_template_sha256": "04bd56937ec5f815da91dc9820547bd127d68a6a4a8212cc6c7c8a1f67ef3866"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"source": "backend/internal/core/audit/vo_admin.go",
|
|
263
|
+
"target": "internal/core/audit/vo_admin.go",
|
|
264
|
+
"transformation": "module/import namespace only",
|
|
265
|
+
"source_sha256": "6d89eb2696c9bfbb16260b2d51810c56382b3db051e2651dd6c8717edd9237f6",
|
|
266
|
+
"target_template_sha256": "7d10b551551f8317cf43b9eebf33d0aa2cbc32f215c411f2846c57f5889ee75f"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"source": "backend/internal/core/cache/config.go",
|
|
270
|
+
"target": "internal/core/cache/config.go",
|
|
271
|
+
"transformation": "module/import namespace only",
|
|
272
|
+
"source_sha256": "dc6217692e0b2e9e6e031c11d9754d43367291d84e643f097b8829c3a196db66",
|
|
273
|
+
"target_template_sha256": "dc6217692e0b2e9e6e031c11d9754d43367291d84e643f097b8829c3a196db66"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"source": "backend/internal/core/cache/key.go",
|
|
277
|
+
"target": "internal/core/cache/key.go",
|
|
278
|
+
"transformation": "module/import namespace only",
|
|
279
|
+
"source_sha256": "30e2cbc40d72e5be375dc13d5823b3bc586767aa11038a033b14ef0eb17db045",
|
|
280
|
+
"target_template_sha256": "30e2cbc40d72e5be375dc13d5823b3bc586767aa11038a033b14ef0eb17db045"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"source": "backend/internal/core/cache/key_test.go",
|
|
284
|
+
"target": "internal/core/cache/key_test.go",
|
|
285
|
+
"transformation": "module/import namespace only",
|
|
286
|
+
"source_sha256": "ad26e9b271a1dd13d3e9d7021788d1e760dbcaf9acf2324ae2178a197886adca",
|
|
287
|
+
"target_template_sha256": "ad26e9b271a1dd13d3e9d7021788d1e760dbcaf9acf2324ae2178a197886adca"
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"source": "backend/internal/core/cache/l1.go",
|
|
291
|
+
"target": "internal/core/cache/l1.go",
|
|
292
|
+
"transformation": "module/import namespace only",
|
|
293
|
+
"source_sha256": "aea394075ad143b4ad981a2c6d72150fe3d4a3a40e6e3d77b598676f2f220ccf",
|
|
294
|
+
"target_template_sha256": "aea394075ad143b4ad981a2c6d72150fe3d4a3a40e6e3d77b598676f2f220ccf"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"source": "backend/internal/core/cache/l1_test.go",
|
|
298
|
+
"target": "internal/core/cache/l1_test.go",
|
|
299
|
+
"transformation": "module/import namespace only",
|
|
300
|
+
"source_sha256": "2570be86f46a95474bdbc1a2200e083879c87cc09b2b9246eedc29d79af08808",
|
|
301
|
+
"target_template_sha256": "2570be86f46a95474bdbc1a2200e083879c87cc09b2b9246eedc29d79af08808"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"source": "backend/internal/core/cache/manager.go",
|
|
305
|
+
"target": "internal/core/cache/manager.go",
|
|
306
|
+
"transformation": "module/import namespace only",
|
|
307
|
+
"source_sha256": "d30066fd2e0827f5d7eee2f247f5eaa0ea6c65b8b7cd85f9f6330390c784d2cd",
|
|
308
|
+
"target_template_sha256": "a5c20e093e97f433c7068a015ffd59d94d502c0a055b9cf434227a47555ccd5e"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"source": "backend/internal/core/cache/manager_provider.go",
|
|
312
|
+
"target": "internal/core/cache/manager_provider.go",
|
|
313
|
+
"transformation": "module/import namespace only",
|
|
314
|
+
"source_sha256": "9d57f9f013074f8be4d85d7092491b1d772df2d8b4e9c5c04e9eaf78d38abff4",
|
|
315
|
+
"target_template_sha256": "9d57f9f013074f8be4d85d7092491b1d772df2d8b4e9c5c04e9eaf78d38abff4"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"source": "backend/internal/core/cache/metrics.go",
|
|
319
|
+
"target": "internal/core/cache/metrics.go",
|
|
320
|
+
"transformation": "module/import namespace only",
|
|
321
|
+
"source_sha256": "ef1d5c6996f49c3d0769e0ee6477d546384d73e4a74aad3aee37778a7d520dfe",
|
|
322
|
+
"target_template_sha256": "ef1d5c6996f49c3d0769e0ee6477d546384d73e4a74aad3aee37778a7d520dfe"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"source": "backend/internal/core/cache/namespace.go",
|
|
326
|
+
"target": "internal/core/cache/namespace.go",
|
|
327
|
+
"transformation": "module/import namespace only",
|
|
328
|
+
"source_sha256": "f6a8cfc6f55fb982575276a916f2a2bf8b573690e4e989f52bcbb2fb75fa28dd",
|
|
329
|
+
"target_template_sha256": "f6a8cfc6f55fb982575276a916f2a2bf8b573690e4e989f52bcbb2fb75fa28dd"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"source": "backend/internal/core/cache/namespace_test.go",
|
|
333
|
+
"target": "internal/core/cache/namespace_test.go",
|
|
334
|
+
"transformation": "module/import namespace only",
|
|
335
|
+
"source_sha256": "3fc463a3923d3464ca7227f9fc5a331b5bda143ef47e25886cca6fe1b0f595f4",
|
|
336
|
+
"target_template_sha256": "3fc463a3923d3464ca7227f9fc5a331b5bda143ef47e25886cca6fe1b0f595f4"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"source": "backend/internal/core/cache/options.go",
|
|
340
|
+
"target": "internal/core/cache/options.go",
|
|
341
|
+
"transformation": "module/import namespace only",
|
|
342
|
+
"source_sha256": "59c295931a9fc1dc0df29a71b3334c231506d8d782629035da4e5dc8d70332bf",
|
|
343
|
+
"target_template_sha256": "59c295931a9fc1dc0df29a71b3334c231506d8d782629035da4e5dc8d70332bf"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"source": "backend/internal/core/cache/options_test.go",
|
|
347
|
+
"target": "internal/core/cache/options_test.go",
|
|
348
|
+
"transformation": "module/import namespace only",
|
|
349
|
+
"source_sha256": "8d5859ea6b0d27e2d7cd99132f378f9900ba52178adda5a099db213df218b193",
|
|
350
|
+
"target_template_sha256": "8d5859ea6b0d27e2d7cd99132f378f9900ba52178adda5a099db213df218b193"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"source": "backend/internal/core/cache/redis.go",
|
|
354
|
+
"target": "internal/core/cache/redis.go",
|
|
355
|
+
"transformation": "source-adapted",
|
|
356
|
+
"source_sha256": "efed683bad56b67fd6ce9dc33376574f5bad335ad9442ba34f63be31be4c7a15",
|
|
357
|
+
"target_template_sha256": "9beefde01b39a9a5baa7173fcec8e240d1ba4a4e10ab0a04ee4b7777d12c1b4a",
|
|
358
|
+
"details": "Retains full source implementation; closes newly allocated Redis client when initial Ping fails, joining cleanup failure with initialization failure."
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"source": "backend/internal/core/cache/serializer.go",
|
|
362
|
+
"target": "internal/core/cache/serializer.go",
|
|
363
|
+
"transformation": "module/import namespace only",
|
|
364
|
+
"source_sha256": "2cb0b1f6de190e944ef3e9a9d5918f31a731536083688d92d80341d8488da9a3",
|
|
365
|
+
"target_template_sha256": "2cb0b1f6de190e944ef3e9a9d5918f31a731536083688d92d80341d8488da9a3"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"source": "backend/internal/core/cache/serializer_test.go",
|
|
369
|
+
"target": "internal/core/cache/serializer_test.go",
|
|
370
|
+
"transformation": "module/import namespace only",
|
|
371
|
+
"source_sha256": "60e40a04034a561615c7050c63aecd70dbdc8bfc86f1d462885fc6093c34a439",
|
|
372
|
+
"target_template_sha256": "60e40a04034a561615c7050c63aecd70dbdc8bfc86f1d462885fc6093c34a439"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"source": "backend/internal/core/cache/singleflight.go",
|
|
376
|
+
"target": "internal/core/cache/singleflight.go",
|
|
377
|
+
"transformation": "module/import namespace only",
|
|
378
|
+
"source_sha256": "d79b00bd62ccf59b2ddfad94d53bd35d495944b3b608115de90692af3cc868cc",
|
|
379
|
+
"target_template_sha256": "d79b00bd62ccf59b2ddfad94d53bd35d495944b3b608115de90692af3cc868cc"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"source": "backend/internal/core/cache/singleflight_test.go",
|
|
383
|
+
"target": "internal/core/cache/singleflight_test.go",
|
|
384
|
+
"transformation": "module/import namespace only",
|
|
385
|
+
"source_sha256": "616ade64fdaf2c9515290096d131918836e933b9c34a993317072326c2a50e2f",
|
|
386
|
+
"target_template_sha256": "616ade64fdaf2c9515290096d131918836e933b9c34a993317072326c2a50e2f"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"source": "backend/internal/core/cache/warming.go",
|
|
390
|
+
"target": "internal/core/cache/warming.go",
|
|
391
|
+
"transformation": "module/import namespace only",
|
|
392
|
+
"source_sha256": "35c09157c18002ee852fd8be6056518c34c04387299e089b08201c502bd43ef2",
|
|
393
|
+
"target_template_sha256": "35c09157c18002ee852fd8be6056518c34c04387299e089b08201c502bd43ef2"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"source": "backend/internal/core/clock/clock.go",
|
|
397
|
+
"target": "internal/core/clock/clock.go",
|
|
398
|
+
"transformation": "module/import namespace only",
|
|
399
|
+
"source_sha256": "c786d0eec45698acd95d1eabc899a9bcfa339fbf9ad0d861c3b2c7c7443ea780",
|
|
400
|
+
"target_template_sha256": "c786d0eec45698acd95d1eabc899a9bcfa339fbf9ad0d861c3b2c7c7443ea780"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"source": "backend/internal/core/clock/clock_test.go",
|
|
404
|
+
"target": "internal/core/clock/clock_test.go",
|
|
405
|
+
"transformation": "module/import namespace only",
|
|
406
|
+
"source_sha256": "cd656e9f91fa775bdb121854da6dfda623504cbef31c265280e91369ff2c7bd7",
|
|
407
|
+
"target_template_sha256": "391c4de6a0b9809d2e1f68a88a792b3dbb7af93e06f2f79069cebea339a6cfd5"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"source": "backend/internal/core/clock/runtime_clock.go",
|
|
411
|
+
"target": "internal/core/clock/runtime_clock.go",
|
|
412
|
+
"transformation": "module/import namespace only",
|
|
413
|
+
"source_sha256": "278baf11c9ef9e8de8c324bc6d968114af003224967ef88498963636a20eee45",
|
|
414
|
+
"target_template_sha256": "185e5f2b7d8b007a94057902ad6e0cf7a6b030bcfb362f2918ed1ce079ab9f72"
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
"source": "backend/internal/core/clock/runtime_clock_test.go",
|
|
418
|
+
"target": "internal/core/clock/runtime_clock_test.go",
|
|
419
|
+
"transformation": "module/import namespace only",
|
|
420
|
+
"source_sha256": "7fd008a8333bb623f5b42cd45bd88cde4f7b0081469123aa0722796422a054b7",
|
|
421
|
+
"target_template_sha256": "a00342bf1ade313d3baa295c937f9c0568b016f48933fdcd4e3ecdbc56c23980"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
"source": "backend/internal/core/commandreplay/errors.go",
|
|
425
|
+
"target": "internal/core/commandreplay/errors.go",
|
|
426
|
+
"transformation": "module/import namespace only",
|
|
427
|
+
"source_sha256": "bb4fe5b0540448394de3d5b14ea6d3be43b66404c5bab2d82f4e21d59434fcd9",
|
|
428
|
+
"target_template_sha256": "bb4fe5b0540448394de3d5b14ea6d3be43b66404c5bab2d82f4e21d59434fcd9"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"source": "backend/internal/core/commandreplay/model.go",
|
|
432
|
+
"target": "internal/core/commandreplay/model.go",
|
|
433
|
+
"transformation": "module/import namespace only",
|
|
434
|
+
"source_sha256": "e610b620e96cabafad53ca1265455bd7fececcf6db73783beebe26bf6adf0c49",
|
|
435
|
+
"target_template_sha256": "91f3fdddc489ce7249cd997584d1f61f06cb29a584523fcf30ac68c4fd0035aa"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"source": "backend/internal/core/commandreplay/model_test.go",
|
|
439
|
+
"target": "internal/core/commandreplay/model_test.go",
|
|
440
|
+
"transformation": "module/import namespace only",
|
|
441
|
+
"source_sha256": "0e31293d14f7da7f99459a28e998cb4b076fc402895983617c7a4bb10c83c353",
|
|
442
|
+
"target_template_sha256": "0e31293d14f7da7f99459a28e998cb4b076fc402895983617c7a4bb10c83c353"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"source": "backend/internal/core/commandreplay/namespace.go",
|
|
446
|
+
"target": "internal/core/commandreplay/namespace.go",
|
|
447
|
+
"transformation": "module/import namespace only",
|
|
448
|
+
"source_sha256": "eed2edcfd31ebf6966c9f1b0789e4fe5da0c909e105c5d05dc870a12ffe49974",
|
|
449
|
+
"target_template_sha256": "eed2edcfd31ebf6966c9f1b0789e4fe5da0c909e105c5d05dc870a12ffe49974"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"source": "backend/internal/core/commandreplay/persistence.go",
|
|
453
|
+
"target": "internal/core/commandreplay/persistence.go",
|
|
454
|
+
"transformation": "module/import namespace only",
|
|
455
|
+
"source_sha256": "6b495eb7d886dea43f50fb5457c99450cf75ee3180ab138dc4b6f71d5e912308",
|
|
456
|
+
"target_template_sha256": "fd8e034952709522d842dce4079f86ec4a2f8d499ea54f7d60c00758fca07784"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"source": "backend/internal/core/commandreplay/persistence_test.go",
|
|
460
|
+
"target": "internal/core/commandreplay/persistence_test.go",
|
|
461
|
+
"transformation": "module/import namespace only",
|
|
462
|
+
"source_sha256": "58228cdb9f0fcf22da36e620d565d810fe3c618e061a68e61a140da44bacac3b",
|
|
463
|
+
"target_template_sha256": "1cff76682460690e89b5c80f58f0422c02cfb1319ed079447a2c9104e9104107"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"source": "backend/internal/core/commandreplay/provider.go",
|
|
467
|
+
"target": "internal/core/commandreplay/provider.go",
|
|
468
|
+
"transformation": "module/import namespace only",
|
|
469
|
+
"source_sha256": "68bde75ae383f717ebce690a982a3c66b1078c436b840f659764d72faf80379d",
|
|
470
|
+
"target_template_sha256": "68bde75ae383f717ebce690a982a3c66b1078c436b840f659764d72faf80379d"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"source": "backend/internal/core/commandreplay/repository.go",
|
|
474
|
+
"target": "internal/core/commandreplay/repository.go",
|
|
475
|
+
"transformation": "module/import namespace only",
|
|
476
|
+
"source_sha256": "90a0e737c8df5f65e6f1897c82b3087ef35a6cbf1e46bd4ca291ce18a686610f",
|
|
477
|
+
"target_template_sha256": "90a0e737c8df5f65e6f1897c82b3087ef35a6cbf1e46bd4ca291ce18a686610f"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"source": "backend/internal/core/commandreplay/service.go",
|
|
481
|
+
"target": "internal/core/commandreplay/service.go",
|
|
482
|
+
"transformation": "module/import namespace only",
|
|
483
|
+
"source_sha256": "e6773b4fa604133333ca193d73c7ede037abf7d00df2293df4618e22cd2b616c",
|
|
484
|
+
"target_template_sha256": "6a80ef4df446a6bb10da4972890fdbd166d879bd4a01368f9605a28e781b197e"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"source": "backend/internal/core/commandreplay/service_persistence_test.go",
|
|
488
|
+
"target": "internal/core/commandreplay/service_persistence_test.go",
|
|
489
|
+
"transformation": "module/import namespace only",
|
|
490
|
+
"source_sha256": "1e5e2fd1b720f069f926c5cfc009e243606b0e87bccd6773a71ee53cc8b7e02b",
|
|
491
|
+
"target_template_sha256": "05b14b08732cae67d54093953936d1531b75bc2ee2b3aa86e48c2bbacacb9e0c"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"source": "backend/internal/core/commandreplay/service_test.go",
|
|
495
|
+
"target": "internal/core/commandreplay/service_test.go",
|
|
496
|
+
"transformation": "module/import namespace only",
|
|
497
|
+
"source_sha256": "f022ef1d41d9d296af275ef335ac87431c5f55307d19c7d9252a1b7e3f71116b",
|
|
498
|
+
"target_template_sha256": "2b6cdf86e4bf1020552a1009ee1500e68e1b1804f19ddd5f35caa53688cf9051"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"source": "backend/internal/core/commandreplay/types.go",
|
|
502
|
+
"target": "internal/core/commandreplay/types.go",
|
|
503
|
+
"transformation": "module/import namespace only",
|
|
504
|
+
"source_sha256": "14c038c1f4cf4ff076e0b71727276604550dd62557e7e2c72b8e4d38aa179c04",
|
|
505
|
+
"target_template_sha256": "51b67144ae463a38ecf4b01729f91f130f4b0deccc60b601f51981779be84686"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"source": "backend/internal/core/config/config.go",
|
|
509
|
+
"target": "internal/core/config/config.go",
|
|
510
|
+
"transformation": "module/import namespace only",
|
|
511
|
+
"source_sha256": "dd30d186cb0db6337e3719f9c0687a54afa365d2f664e58d6905ba36592288dd",
|
|
512
|
+
"target_template_sha256": "5224087b6575cfaa31bbedc5ac07fbef14af40a7f51649b82c7d7eca5c212404"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"source": "backend/internal/core/config/config_test.go",
|
|
516
|
+
"target": "internal/core/config/config_test.go",
|
|
517
|
+
"transformation": "source-adapted",
|
|
518
|
+
"details": "Only TestEnvironmentConfigScopesPromotionE2EIdentityToTest excluded: source deployment fixture owns promotion test client. All configuration logic tests retained.",
|
|
519
|
+
"source_sha256": "d44e308b69f56006c99d9c62a89b1d388cbad6d209aa17b89b24e32aeea8fb18",
|
|
520
|
+
"target_template_sha256": "e1c332c93faa5222f6cb4bbf45d432071e2055e88b09c58c5c01806b1a728d23"
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
"source": "backend/internal/core/config/contract/contract_test.go",
|
|
524
|
+
"target": "internal/core/config/contract/contract_test.go",
|
|
525
|
+
"transformation": "module/import namespace only",
|
|
526
|
+
"source_sha256": "2947035caf12f594320afdda58b86b874ac8798fdf0e444291506e561512b6f2",
|
|
527
|
+
"target_template_sha256": "255f47b73560225aafc64a4decb57b8aa3f785f73ad956358c111a6e4f5ae2f2"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"source": "backend/internal/core/config/contract/docs.go",
|
|
531
|
+
"target": "internal/core/config/contract/docs.go",
|
|
532
|
+
"transformation": "module/import namespace only",
|
|
533
|
+
"source_sha256": "36bf7807ac90e2873cbf87250c5014e7317410a26bea9c93c449d3e668175cb1",
|
|
534
|
+
"target_template_sha256": "cc1132a3299a8493c56b128c834ef2e9d8104528bb33c24ff1945bf0577acecc"
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"source": "backend/internal/core/config/contract/verify.go",
|
|
538
|
+
"target": "internal/core/config/contract/verify.go",
|
|
539
|
+
"transformation": "module/import namespace only",
|
|
540
|
+
"source_sha256": "f0b090c137384ee367050ed7dd218301a8a3b5bf0a16a89742c583dde0321e17",
|
|
541
|
+
"target_template_sha256": "253b19a9eb62a2917ada6408ab90470e324df5bd1a89678cbe3aaae79345081d"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"source": "backend/internal/core/config/enum.go",
|
|
545
|
+
"target": "internal/core/config/enum.go",
|
|
546
|
+
"transformation": "module/import namespace only",
|
|
547
|
+
"source_sha256": "030a032bb9af8f8ac5ba22409779cb999bbf321e22390b9ab145b76382574477",
|
|
548
|
+
"target_template_sha256": "030a032bb9af8f8ac5ba22409779cb999bbf321e22390b9ab145b76382574477"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"source": "backend/internal/core/config/metadata.go",
|
|
552
|
+
"target": "internal/core/config/metadata.go",
|
|
553
|
+
"transformation": "module/import namespace only",
|
|
554
|
+
"source_sha256": "02f38570470fca3ec08ee2a21d8550f55ecc0067c6a1059db80de1c7b9675d12",
|
|
555
|
+
"target_template_sha256": "02f38570470fca3ec08ee2a21d8550f55ecc0067c6a1059db80de1c7b9675d12"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"source": "backend/internal/core/config/metadata_test.go",
|
|
559
|
+
"target": "internal/core/config/metadata_test.go",
|
|
560
|
+
"transformation": "module/import namespace only",
|
|
561
|
+
"source_sha256": "7daea75a926375cdf20c21f75dfe598830934198ca58ad9eda77d631df9b1528",
|
|
562
|
+
"target_template_sha256": "7daea75a926375cdf20c21f75dfe598830934198ca58ad9eda77d631df9b1528"
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"source": "backend/internal/core/config/product_admin_config_test.go",
|
|
566
|
+
"target": "internal/core/config/product_admin_config_test.go",
|
|
567
|
+
"transformation": "module/import namespace only",
|
|
568
|
+
"source_sha256": "cd77afb80ab0b38f586bfffe0c2480cb263c16cbfc02935b3a8e776e9639bca2",
|
|
569
|
+
"target_template_sha256": "cd77afb80ab0b38f586bfffe0c2480cb263c16cbfc02935b3a8e776e9639bca2"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"source": "backend/internal/core/crypto/aes_gcm.go",
|
|
573
|
+
"target": "internal/core/crypto/aes_gcm.go",
|
|
574
|
+
"transformation": "module/import namespace only",
|
|
575
|
+
"source_sha256": "7b08bcc766299864bdde99f5eca98d3ff468b87e3afa9dd8270e5cade1dcbc6c",
|
|
576
|
+
"target_template_sha256": "7b08bcc766299864bdde99f5eca98d3ff468b87e3afa9dd8270e5cade1dcbc6c"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"source": "backend/internal/core/crypto/aes_gcm_test.go",
|
|
580
|
+
"target": "internal/core/crypto/aes_gcm_test.go",
|
|
581
|
+
"transformation": "module/import namespace only",
|
|
582
|
+
"source_sha256": "a914ee7f6aa899dc7aa112d7b225d2ab341629533fbde98cd051f535e5c6f2f5",
|
|
583
|
+
"target_template_sha256": "112c1b096416e7966f90bd66a3721dd242b9010dc49bbea5c7e19c7738bdd8b3"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"source": "backend/internal/core/crypto/encryptor.go",
|
|
587
|
+
"target": "internal/core/crypto/encryptor.go",
|
|
588
|
+
"transformation": "module/import namespace only",
|
|
589
|
+
"source_sha256": "264253dce290ea44c49e3e67c2360bfb2ba811902449eb7745a30036f5ef89bf",
|
|
590
|
+
"target_template_sha256": "264253dce290ea44c49e3e67c2360bfb2ba811902449eb7745a30036f5ef89bf"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"source": "backend/internal/core/crypto/envelope_encryptor.go",
|
|
594
|
+
"target": "internal/core/crypto/envelope_encryptor.go",
|
|
595
|
+
"transformation": "module/import namespace only",
|
|
596
|
+
"source_sha256": "1b9c9c020f52aef7f22e4ed74b577906dc7de9ec53b718713d113e4dcf894ebc",
|
|
597
|
+
"target_template_sha256": "1b9c9c020f52aef7f22e4ed74b577906dc7de9ec53b718713d113e4dcf894ebc"
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"source": "backend/internal/core/crypto/envelope_encryptor_test.go",
|
|
601
|
+
"target": "internal/core/crypto/envelope_encryptor_test.go",
|
|
602
|
+
"transformation": "module/import namespace only",
|
|
603
|
+
"source_sha256": "066fc350fbc5b0473e9139a4041ad50abc6fe66d4289139a497e80826b0c203b",
|
|
604
|
+
"target_template_sha256": "066fc350fbc5b0473e9139a4041ad50abc6fe66d4289139a497e80826b0c203b"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"source": "backend/internal/core/crypto/pem.go",
|
|
608
|
+
"target": "internal/core/crypto/pem.go",
|
|
609
|
+
"transformation": "module/import namespace only",
|
|
610
|
+
"source_sha256": "ee652c25673919da8213686abc3989838303db89699adb7754c27bb032aa486c",
|
|
611
|
+
"target_template_sha256": "ee652c25673919da8213686abc3989838303db89699adb7754c27bb032aa486c"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"source": "backend/internal/core/crypto/pem_test.go",
|
|
615
|
+
"target": "internal/core/crypto/pem_test.go",
|
|
616
|
+
"transformation": "module/import namespace only",
|
|
617
|
+
"source_sha256": "1b8ac2c3a8f40bdaa22ede771da3f02b088ed8ff0f40ba679d352555971aa732",
|
|
618
|
+
"target_template_sha256": "1b8ac2c3a8f40bdaa22ede771da3f02b088ed8ff0f40ba679d352555971aa732"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"source": "backend/internal/core/crypto/provider.go",
|
|
622
|
+
"target": "internal/core/crypto/provider.go",
|
|
623
|
+
"transformation": "module/import namespace only",
|
|
624
|
+
"source_sha256": "50f52e32b2dde574a5e194047f7715ad1633b45991bfa0bc11c699998193de2e",
|
|
625
|
+
"target_template_sha256": "57f6505be6af4a2fb7a6f1346e8fd3c717c06848ce002fcda1de83e621f77c50"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"source": "backend/internal/core/crypto/provider_test.go",
|
|
629
|
+
"target": "internal/core/crypto/provider_test.go",
|
|
630
|
+
"transformation": "module/import namespace only",
|
|
631
|
+
"source_sha256": "58674da8deeb5dfb49919552465f341d8896c6a98892443b55c2de3e32404980",
|
|
632
|
+
"target_template_sha256": "00b74faec4972baa354722c5508dfca85fd06dab783a5b7f4d24a488c76d580b"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"source": "backend/internal/core/database/base_model.go",
|
|
636
|
+
"target": "internal/core/database/base_model.go",
|
|
637
|
+
"transformation": "module/import namespace only",
|
|
638
|
+
"source_sha256": "1124c6b7f849e2774646caa4bfa4009b6d1725b758e9943386460fe0343168b5",
|
|
639
|
+
"target_template_sha256": "1124c6b7f849e2774646caa4bfa4009b6d1725b758e9943386460fe0343168b5"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"source": "backend/internal/core/database/clickhouse.go",
|
|
643
|
+
"target": "internal/core/database/clickhouse.go",
|
|
644
|
+
"transformation": "module/import namespace only",
|
|
645
|
+
"source_sha256": "01d88021555e2eaae478263df418cf3b4f0c1d9fd3f7f7701b9193c90b060a86",
|
|
646
|
+
"target_template_sha256": "819005c526927decce797756eac42f27358bcb57f5a3dce3ae6a54f9f88d5274"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
"source": "backend/internal/core/database/database.go",
|
|
650
|
+
"target": "internal/core/database/database.go",
|
|
651
|
+
"transformation": "source-adapted",
|
|
652
|
+
"source_sha256": "7469f78e67e0d8607901a6354a8c3a08ba616cddc50014c944dc3f10fd48f145",
|
|
653
|
+
"target_template_sha256": "cb0f1bcb5f368ce6a321a9b24cbab8400ed02554f5b4a9353f983e878eb97ec7",
|
|
654
|
+
"details": "Retains full source implementation; closes sqlDB when metrics plugin registration fails, joining cleanup failure with initialization failure."
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"source": "backend/internal/core/database/database_logger_test.go",
|
|
658
|
+
"target": "internal/core/database/database_logger_test.go",
|
|
659
|
+
"transformation": "module/import namespace only",
|
|
660
|
+
"source_sha256": "c42433aba5750be574c2ab9685bf57030683c7cf5fc82e25b92199d8ad6286c2",
|
|
661
|
+
"target_template_sha256": "c42433aba5750be574c2ab9685bf57030683c7cf5fc82e25b92199d8ad6286c2"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"source": "backend/internal/core/database/errors.go",
|
|
665
|
+
"target": "internal/core/database/errors.go",
|
|
666
|
+
"transformation": "module/import namespace only",
|
|
667
|
+
"source_sha256": "9c65361a3778fa9f64de684327f47e3477edd881cc2564b276458e054588299b",
|
|
668
|
+
"target_template_sha256": "9c65361a3778fa9f64de684327f47e3477edd881cc2564b276458e054588299b"
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"source": "backend/internal/core/database/metrics_plugin.go",
|
|
672
|
+
"target": "internal/core/database/metrics_plugin.go",
|
|
673
|
+
"transformation": "module/import namespace only",
|
|
674
|
+
"source_sha256": "76ea8e75714d892fd3baad0b0fdec170c74053d3cc77ef24fe6deaee7066942b",
|
|
675
|
+
"target_template_sha256": "a3d52b2adb83ffc565cdd53139f97781df831f7847d2cf2fe1e8fd9a6038f2d1"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"source": "backend/internal/core/database/pool_collector.go",
|
|
679
|
+
"target": "internal/core/database/pool_collector.go",
|
|
680
|
+
"transformation": "module/import namespace only",
|
|
681
|
+
"source_sha256": "e58cb3c9125b002c03125fdf30f8057220042d99387c44772ed2ed657858e10a",
|
|
682
|
+
"target_template_sha256": "a040afabd72af3daabe8c2550b602ea0620b097e3951b97ab8bcc1df45e5f3aa"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"source": "backend/internal/core/database/read_replica.go",
|
|
686
|
+
"target": "internal/core/database/read_replica.go",
|
|
687
|
+
"transformation": "module/import namespace only",
|
|
688
|
+
"source_sha256": "156969cc6aac33c45683a8a44bbe85017d83161c48a85b63e4ab35a262fc8c8a",
|
|
689
|
+
"target_template_sha256": "f69fe714da15e3505803cc6a149d86c574fe475adb7438b491daaf708e504c1b"
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"source": "backend/internal/core/database/transaction.go",
|
|
693
|
+
"target": "internal/core/database/transaction.go",
|
|
694
|
+
"transformation": "module/import namespace only",
|
|
695
|
+
"source_sha256": "4e903c8b9d010bcf05df24f7e80a1e59767705ec6bdcc9f135118c1ce1ef61aa",
|
|
696
|
+
"target_template_sha256": "4e903c8b9d010bcf05df24f7e80a1e59767705ec6bdcc9f135118c1ce1ef61aa"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"source": "backend/internal/core/database/transaction_test.go",
|
|
700
|
+
"target": "internal/core/database/transaction_test.go",
|
|
701
|
+
"transformation": "module/import namespace only",
|
|
702
|
+
"source_sha256": "93f32f026fb42aab689cac917526b07a213bb89d2026bb406febde444f3c845c",
|
|
703
|
+
"target_template_sha256": "93f32f026fb42aab689cac917526b07a213bb89d2026bb406febde444f3c845c"
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"source": "backend/internal/core/distlock/lock.go",
|
|
707
|
+
"target": "internal/core/distlock/lock.go",
|
|
708
|
+
"transformation": "module/import namespace only",
|
|
709
|
+
"source_sha256": "81d297e98a3cc3eb4afe510439dbd4223aa7d516eeccf4d827191af11653be7c",
|
|
710
|
+
"target_template_sha256": "81d297e98a3cc3eb4afe510439dbd4223aa7d516eeccf4d827191af11653be7c"
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
"source": "backend/internal/core/distlock/lock_test.go",
|
|
714
|
+
"target": "internal/core/distlock/lock_test.go",
|
|
715
|
+
"transformation": "module/import namespace only",
|
|
716
|
+
"source_sha256": "e22dc94fd64212326ccd39a923b38634c297045570b6f29244780b8fc464e4c6",
|
|
717
|
+
"target_template_sha256": "e22dc94fd64212326ccd39a923b38634c297045570b6f29244780b8fc464e4c6"
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
"source": "backend/internal/core/errors/handler.go",
|
|
721
|
+
"target": "internal/core/errors/handler.go",
|
|
722
|
+
"transformation": "module/import namespace only",
|
|
723
|
+
"source_sha256": "aa4a3f7d5f786ea42929bfbfe12c61c6688012e2ae2f04fbf7bd6b93acae428f",
|
|
724
|
+
"target_template_sha256": "96eb3c3479d4b63a32b735b3b49f059d3ea82107639a72f04bde9ba6406044ec"
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"source": "backend/internal/core/errors/handler_test.go",
|
|
728
|
+
"target": "internal/core/errors/handler_test.go",
|
|
729
|
+
"transformation": "module/import namespace only",
|
|
730
|
+
"source_sha256": "0b6f98fe3f7702a59ebabbefa7cb8d8c6287c52e51713e5dd2ab2391ffe79840",
|
|
731
|
+
"target_template_sha256": "164a901a2b8fb5a67eec5aeb1227347f9556982508581fd330edd350867c049d"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"source": "backend/internal/core/eventbus/eventbus.go",
|
|
735
|
+
"target": "internal/core/eventbus/eventbus.go",
|
|
736
|
+
"transformation": "module/import namespace only",
|
|
737
|
+
"source_sha256": "5bfee462499c307da9aee37965f4ee4910d447af2d515024b51dc525a104f0c3",
|
|
738
|
+
"target_template_sha256": "5bfee462499c307da9aee37965f4ee4910d447af2d515024b51dc525a104f0c3"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"source": "backend/internal/core/eventbus/eventbus_test.go",
|
|
742
|
+
"target": "internal/core/eventbus/eventbus_test.go",
|
|
743
|
+
"transformation": "module/import namespace only",
|
|
744
|
+
"source_sha256": "19e6db89514d25056d8231326144f4313a92b068ab996a89ae0f1d84cd505394",
|
|
745
|
+
"target_template_sha256": "19e6db89514d25056d8231326144f4313a92b068ab996a89ae0f1d84cd505394"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"source": "backend/internal/core/eventstream/noop.go",
|
|
749
|
+
"target": "internal/core/eventstream/noop.go",
|
|
750
|
+
"transformation": "module/import namespace only",
|
|
751
|
+
"source_sha256": "09a76275bfbb74d49fccfd78dc4caa635288c425874f989690049688782aee98",
|
|
752
|
+
"target_template_sha256": "09a76275bfbb74d49fccfd78dc4caa635288c425874f989690049688782aee98"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"source": "backend/internal/core/eventstream/provider.go",
|
|
756
|
+
"target": "internal/core/eventstream/provider.go",
|
|
757
|
+
"transformation": "module/import namespace only",
|
|
758
|
+
"source_sha256": "5f33624dab69fd8749b71eb2acbdeb61ed6237e155207042835fab9ab56b2896",
|
|
759
|
+
"target_template_sha256": "5f33624dab69fd8749b71eb2acbdeb61ed6237e155207042835fab9ab56b2896"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"source": "backend/internal/core/eventstream/publisher.go",
|
|
763
|
+
"target": "internal/core/eventstream/publisher.go",
|
|
764
|
+
"transformation": "module/import namespace only",
|
|
765
|
+
"source_sha256": "53cd0828f5e01b9c20ef85097930e3767bfa5bc7857460d3de9a963e30ef057f",
|
|
766
|
+
"target_template_sha256": "53cd0828f5e01b9c20ef85097930e3767bfa5bc7857460d3de9a963e30ef057f"
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"source": "backend/internal/core/eventstream/redis.go",
|
|
770
|
+
"target": "internal/core/eventstream/redis.go",
|
|
771
|
+
"transformation": "module/import namespace only",
|
|
772
|
+
"source_sha256": "50b34bf14e081d322a3bddb444c18f11683f76f5c647dde35dd81ea7374def7c",
|
|
773
|
+
"target_template_sha256": "cda89b156003c3ad3264ac4ecd3dafe66d2b5b8c616fb9486687b8a8e78cc371"
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"source": "backend/internal/core/eventstream/routing.go",
|
|
777
|
+
"target": "internal/core/eventstream/routing.go",
|
|
778
|
+
"transformation": "module/import namespace only",
|
|
779
|
+
"source_sha256": "b3880532e66c17e7485f6e67b75461702d6256265f599a2736e834cf75fbc3de",
|
|
780
|
+
"target_template_sha256": "b3880532e66c17e7485f6e67b75461702d6256265f599a2736e834cf75fbc3de"
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
"source": "backend/internal/core/eventstream/routing_test.go",
|
|
784
|
+
"target": "internal/core/eventstream/routing_test.go",
|
|
785
|
+
"transformation": "module/import namespace only",
|
|
786
|
+
"source_sha256": "d78b3480efe922e23fa6228d38f16085500accb7fe5960b1467e9cac2bdecffd",
|
|
787
|
+
"target_template_sha256": "d78b3480efe922e23fa6228d38f16085500accb7fe5960b1467e9cac2bdecffd"
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
"source": "backend/internal/core/geoip/model.go",
|
|
791
|
+
"target": "internal/core/geoip/model.go",
|
|
792
|
+
"transformation": "module/import namespace only",
|
|
793
|
+
"source_sha256": "9c88bf22d5d23f89ac1dd9ad037241184fc091bfd9f755bdb7516a000bd6a38d",
|
|
794
|
+
"target_template_sha256": "9c88bf22d5d23f89ac1dd9ad037241184fc091bfd9f755bdb7516a000bd6a38d"
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"source": "backend/internal/core/geoip/service.go",
|
|
798
|
+
"target": "internal/core/geoip/service.go",
|
|
799
|
+
"transformation": "module/import namespace only",
|
|
800
|
+
"source_sha256": "261e6e837b76959b2ab8b46742dcbc7bc01921d0f21e41d5ab599d80e7dca711",
|
|
801
|
+
"target_template_sha256": "abdb9716bd46adc828259bd38758ad9605701481ef27d0538aea3a329fd4eb9b"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"source": "backend/internal/core/health/health.go",
|
|
805
|
+
"target": "internal/core/health/health.go",
|
|
806
|
+
"transformation": "module/import namespace only",
|
|
807
|
+
"source_sha256": "e22132e68b1961071a41880d67444d5a3b6fa507d0e43a4127eb0971850e6b92",
|
|
808
|
+
"target_template_sha256": "e22132e68b1961071a41880d67444d5a3b6fa507d0e43a4127eb0971850e6b92"
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"source": "backend/internal/core/health/health_test.go",
|
|
812
|
+
"target": "internal/core/health/health_test.go",
|
|
813
|
+
"transformation": "module/import namespace only",
|
|
814
|
+
"source_sha256": "0ef475bada3ffc91386cb8018eea64b21ce47ff1e12705534c3eba9102181676",
|
|
815
|
+
"target_template_sha256": "0ef475bada3ffc91386cb8018eea64b21ce47ff1e12705534c3eba9102181676"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"source": "backend/internal/core/httpclient/client.go",
|
|
819
|
+
"target": "internal/core/httpclient/client.go",
|
|
820
|
+
"transformation": "module/import namespace only",
|
|
821
|
+
"source_sha256": "ed95773c28017d2123fecee0a8c62ec2163e5c111d193f17546520ecccaa5c40",
|
|
822
|
+
"target_template_sha256": "04d50d00fbef4098c5480bf70d1466044932872c8e216f40e07b1b3de4649dc3"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"source": "backend/internal/core/httpclient/client_test.go",
|
|
826
|
+
"target": "internal/core/httpclient/client_test.go",
|
|
827
|
+
"transformation": "module/import namespace only",
|
|
828
|
+
"source_sha256": "baa83b564c94fe50db874659be003c55b34eeeb078bbfae50df771ca50912940",
|
|
829
|
+
"target_template_sha256": "baa83b564c94fe50db874659be003c55b34eeeb078bbfae50df771ca50912940"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"source": "backend/internal/core/httpclient/download.go",
|
|
833
|
+
"target": "internal/core/httpclient/download.go",
|
|
834
|
+
"transformation": "module/import namespace only",
|
|
835
|
+
"source_sha256": "b9d6c415eab576b57ced4f58be357b86c31949c1a44561b80dd80eca6dea4f77",
|
|
836
|
+
"target_template_sha256": "b9d6c415eab576b57ced4f58be357b86c31949c1a44561b80dd80eca6dea4f77"
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"source": "backend/internal/core/httpclient/download_test.go",
|
|
840
|
+
"target": "internal/core/httpclient/download_test.go",
|
|
841
|
+
"transformation": "module/import namespace only",
|
|
842
|
+
"source_sha256": "eb907f22e04197132ffe6ea957fe368ed6d55f0da8b1fb8af9b373c937635d8e",
|
|
843
|
+
"target_template_sha256": "eb907f22e04197132ffe6ea957fe368ed6d55f0da8b1fb8af9b373c937635d8e"
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"source": "backend/internal/core/jwtkeyring/jwk.go",
|
|
847
|
+
"target": "internal/core/jwtkeyring/jwk.go",
|
|
848
|
+
"transformation": "module/import namespace only",
|
|
849
|
+
"source_sha256": "c9b93f5437270e535268800fc4e5c8a61570fcbcbd24d4e9f00f421f08fe946f",
|
|
850
|
+
"target_template_sha256": "c9b93f5437270e535268800fc4e5c8a61570fcbcbd24d4e9f00f421f08fe946f"
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
"source": "backend/internal/core/jwtkeyring/keyring.go",
|
|
854
|
+
"target": "internal/core/jwtkeyring/keyring.go",
|
|
855
|
+
"transformation": "module/import namespace only",
|
|
856
|
+
"source_sha256": "84b2636db9a91fcd699e2644f17151f97e97ddd22221294628ad3f2374fa98c8",
|
|
857
|
+
"target_template_sha256": "84b2636db9a91fcd699e2644f17151f97e97ddd22221294628ad3f2374fa98c8"
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"source": "backend/internal/core/jwtkeyring/keyring_test.go",
|
|
861
|
+
"target": "internal/core/jwtkeyring/keyring_test.go",
|
|
862
|
+
"transformation": "module/import namespace only",
|
|
863
|
+
"source_sha256": "10ab805cfecf5504a26c3902feca3a2df3857157f79f0cbdb21db9d034449a87",
|
|
864
|
+
"target_template_sha256": "10ab805cfecf5504a26c3902feca3a2df3857157f79f0cbdb21db9d034449a87"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"source": "backend/internal/core/jwtkeyring/registry.go",
|
|
868
|
+
"target": "internal/core/jwtkeyring/registry.go",
|
|
869
|
+
"transformation": "module/import namespace only",
|
|
870
|
+
"source_sha256": "6cd735143b4fb73f889473704e834e5471b957eee1cab87a8b2a5a7b5f753854",
|
|
871
|
+
"target_template_sha256": "6cd735143b4fb73f889473704e834e5471b957eee1cab87a8b2a5a7b5f753854"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"source": "backend/internal/core/logger/logger.go",
|
|
875
|
+
"target": "internal/core/logger/logger.go",
|
|
876
|
+
"transformation": "module/import namespace only",
|
|
877
|
+
"source_sha256": "a1472915172f0665b6955c444f5efd2591366df4a2e296a1845898902c8b5e2e",
|
|
878
|
+
"target_template_sha256": "cdcfb332c7f1c94656bda0b6b3f64396e540f6280a83474c42f3c4e5bab209a5"
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"source": "backend/internal/core/logger/logger_test.go",
|
|
882
|
+
"target": "internal/core/logger/logger_test.go",
|
|
883
|
+
"transformation": "module/import namespace only",
|
|
884
|
+
"source_sha256": "34dc5bc7fae78260469ac87ff00018afe8f7ab49568ab062826ecf156fcce272",
|
|
885
|
+
"target_template_sha256": "09aac013c0a6e0eeae29c681f6a77b74662414dd2e6590bde2bb7582e2ccaac2"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"source": "backend/internal/core/observability/metrics.go",
|
|
889
|
+
"target": "internal/core/observability/metrics.go",
|
|
890
|
+
"transformation": "module/import namespace only",
|
|
891
|
+
"source_sha256": "068dd848107f47496ce4dd32d576e421d9b13dc5d08ebe44578126683f5c5727",
|
|
892
|
+
"target_template_sha256": "068dd848107f47496ce4dd32d576e421d9b13dc5d08ebe44578126683f5c5727"
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"source": "backend/internal/core/observability/sentry.go",
|
|
896
|
+
"target": "internal/core/observability/sentry.go",
|
|
897
|
+
"transformation": "module/import namespace only",
|
|
898
|
+
"source_sha256": "e538269d45c78fda13b31ebb29c5ce9f3d7832dd7ed2b527f7003d053ef4b1a4",
|
|
899
|
+
"target_template_sha256": "2254433f263bc1d270fa74bf13813995ae36c8ee6f3babc35ab57ae03c66d556"
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"source": "backend/internal/core/observability/sentry_privacy_test.go",
|
|
903
|
+
"target": "internal/core/observability/sentry_privacy_test.go",
|
|
904
|
+
"transformation": "module/import namespace only",
|
|
905
|
+
"source_sha256": "8285652665855a63b58862ca96d9f88ff9292bfa24d6fdf9edc20ef6a7bc5e2d",
|
|
906
|
+
"target_template_sha256": "8285652665855a63b58862ca96d9f88ff9292bfa24d6fdf9edc20ef6a7bc5e2d"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
"source": "backend/internal/core/observability/tracing.go",
|
|
910
|
+
"target": "internal/core/observability/tracing.go",
|
|
911
|
+
"transformation": "module/import namespace only",
|
|
912
|
+
"source_sha256": "d8a6805e6ba993416d10b6fcf645bbd812d5ab898b6938d5b4733fe7778f49a4",
|
|
913
|
+
"target_template_sha256": "3270bf34d38c524a1f54e9ebf4685c70a9ea9eb6ffd94eaf746abc3d9e351d99"
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"source": "backend/internal/core/outbox/model.go",
|
|
917
|
+
"target": "internal/core/outbox/model.go",
|
|
918
|
+
"transformation": "module/import namespace only",
|
|
919
|
+
"source_sha256": "f44112d7beb0297fc78c74c83795f27ca3b4a3bb468fc7d1ca650424574e4988",
|
|
920
|
+
"target_template_sha256": "a554f13833bce1e2af829be94c2fdff18903b9029f01c954accbec0f69c1de87"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"source": "backend/internal/core/outbox/model_test.go",
|
|
924
|
+
"target": "internal/core/outbox/model_test.go",
|
|
925
|
+
"transformation": "module/import namespace only",
|
|
926
|
+
"source_sha256": "928aa95293ef91bc71f3d92633f7da193d4594d0b647cb80032236c748ba9013",
|
|
927
|
+
"target_template_sha256": "928aa95293ef91bc71f3d92633f7da193d4594d0b647cb80032236c748ba9013"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"source": "backend/internal/core/outbox/persistence.go",
|
|
931
|
+
"target": "internal/core/outbox/persistence.go",
|
|
932
|
+
"transformation": "module/import namespace only",
|
|
933
|
+
"source_sha256": "048e8a2953420f222e5480d91f83994852bf5e1f32e8c3af2476d98e77b351fc",
|
|
934
|
+
"target_template_sha256": "048e8a2953420f222e5480d91f83994852bf5e1f32e8c3af2476d98e77b351fc"
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
"source": "backend/internal/core/outbox/provider.go",
|
|
938
|
+
"target": "internal/core/outbox/provider.go",
|
|
939
|
+
"transformation": "module/import namespace only",
|
|
940
|
+
"source_sha256": "038238512c48c520838e4495cf9a8c128135886a5b8210f99a327c21ab12c71a",
|
|
941
|
+
"target_template_sha256": "038238512c48c520838e4495cf9a8c128135886a5b8210f99a327c21ab12c71a"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"source": "backend/internal/core/outbox/relay.go",
|
|
945
|
+
"target": "internal/core/outbox/relay.go",
|
|
946
|
+
"transformation": "module/import namespace only",
|
|
947
|
+
"source_sha256": "19c45f6da5575e2101545a1fc224cfc465a4e15a0fd4adff0de5a4431f66d0fa",
|
|
948
|
+
"target_template_sha256": "1f3416098b88a107c8f3764d22d4b710a5c9046a2323d893d46944b4da97d774"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
"source": "backend/internal/core/outbox/relay_postgres_test.go",
|
|
952
|
+
"target": "internal/core/outbox/relay_postgres_test.go",
|
|
953
|
+
"transformation": "module/import namespace only",
|
|
954
|
+
"source_sha256": "455503280e176a4363239443b13693b5b8386b88c31c1f45517f00bcd37f6222",
|
|
955
|
+
"target_template_sha256": "d66d8822de23eeaa2e26a2ab5f3426197cc85b25c37bf4e6cc1b321f9f0dc0b0"
|
|
956
|
+
},
|
|
957
|
+
{
|
|
958
|
+
"source": "backend/internal/core/outbox/relay_test.go",
|
|
959
|
+
"target": "internal/core/outbox/relay_test.go",
|
|
960
|
+
"transformation": "module/import namespace only",
|
|
961
|
+
"source_sha256": "7afd981d0d47390c7efb6475313e2c7426a5d90aacb4cd50f84a1a2ea042848c",
|
|
962
|
+
"target_template_sha256": "9d3cd7ac13caf8843da98b125202c1d2a9e4c818fb3fcbd51c2cd3b97c46a4cd"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"source": "backend/internal/core/outbox/rescheduler.go",
|
|
966
|
+
"target": "internal/core/outbox/rescheduler.go",
|
|
967
|
+
"transformation": "module/import namespace only",
|
|
968
|
+
"source_sha256": "8bf52a1978bb8db9d4661b24a6f5a527e69101f46bd28a9207b77b2d10f9467a",
|
|
969
|
+
"target_template_sha256": "884bea3a858ceaae632b00beeacb134ccb0b239d285963f71cb5feb984b4ead7"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"source": "backend/internal/core/outbox/rescheduler_test.go",
|
|
973
|
+
"target": "internal/core/outbox/rescheduler_test.go",
|
|
974
|
+
"transformation": "module/import namespace only",
|
|
975
|
+
"source_sha256": "b9fb87169d1b3f3aa83cd23ab1f77414f9deb1313cd49131d0beabb0d2659ed1",
|
|
976
|
+
"target_template_sha256": "b9fb87169d1b3f3aa83cd23ab1f77414f9deb1313cd49131d0beabb0d2659ed1"
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
"source": "backend/internal/core/outbox/writer.go",
|
|
980
|
+
"target": "internal/core/outbox/writer.go",
|
|
981
|
+
"transformation": "module/import namespace only",
|
|
982
|
+
"source_sha256": "3f4e0551cfa183d983bc4d10f2e17e83af0d2a5477e9b3cd66219cfadbb193d5",
|
|
983
|
+
"target_template_sha256": "2562e5a5cc617c6c852dd48abc4a4162bb6e403e0928de7f458cf3fe062de79e"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"source": "backend/internal/core/outbox/writer_postgres_test.go",
|
|
987
|
+
"target": "internal/core/outbox/writer_postgres_test.go",
|
|
988
|
+
"transformation": "module/import namespace only",
|
|
989
|
+
"source_sha256": "d6cbf804a530232891c476c4dfcd602950f7091f88f3b1ff6be378f629aab01c",
|
|
990
|
+
"target_template_sha256": "bd9ef0df50974e12992f567a7081b1097ab672699a1e2db0028a4bcb616d684c"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"source": "backend/internal/core/outbox/writer_test.go",
|
|
994
|
+
"target": "internal/core/outbox/writer_test.go",
|
|
995
|
+
"transformation": "module/import namespace only",
|
|
996
|
+
"source_sha256": "4eceed13f6a5627397ffdbcca55e5b5b3f14f7c56eb6dc0246c7c25ae8899096",
|
|
997
|
+
"target_template_sha256": "4eceed13f6a5627397ffdbcca55e5b5b3f14f7c56eb6dc0246c7c25ae8899096"
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"source": "backend/internal/core/provider.go",
|
|
1001
|
+
"target": "internal/core/provider.go",
|
|
1002
|
+
"transformation": "module/import namespace only",
|
|
1003
|
+
"source_sha256": "e2de697241d7acfb14725cfca984f40c694f08326f2bea14931b9aa5d6abbbb5",
|
|
1004
|
+
"target_template_sha256": "7a077a88535b75138e6258d304ac1ca8851949205a882d9ee1c25e407b574170"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"source": "backend/internal/core/queue/metrics_middleware.go",
|
|
1008
|
+
"target": "internal/core/queue/metrics_middleware.go",
|
|
1009
|
+
"transformation": "module/import namespace only",
|
|
1010
|
+
"source_sha256": "f98d844e3ff128831fdcd20caa969ba8c4836162f98741eb7d4517897a65fc8a",
|
|
1011
|
+
"target_template_sha256": "951ef78edfad907fc1ea362baab56f4e91a6b55b9d9f9af745b8e6f19d07cd8c"
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"source": "backend/internal/core/queue/metrics_middleware_test.go",
|
|
1015
|
+
"target": "internal/core/queue/metrics_middleware_test.go",
|
|
1016
|
+
"transformation": "module/import namespace only",
|
|
1017
|
+
"source_sha256": "0399b6e8530525dc33741a0be9d6286be20e5c6a827fb10bf05c2c5f8ff2f5fd",
|
|
1018
|
+
"target_template_sha256": "0399b6e8530525dc33741a0be9d6286be20e5c6a827fb10bf05c2c5f8ff2f5fd"
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"source": "backend/internal/core/queue/queue.go",
|
|
1022
|
+
"target": "internal/core/queue/queue.go",
|
|
1023
|
+
"transformation": "module/import namespace only",
|
|
1024
|
+
"source_sha256": "e10640f4f813ab751924bfa83a8fc4b3c539a8f0aebcb687f6b9cc6981ddc582",
|
|
1025
|
+
"target_template_sha256": "e36f5cd45017a9a20cb432ad15829876c87739d062cfd3eba14ff313bd6b717d"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"source": "backend/internal/core/queue/queue_test.go",
|
|
1029
|
+
"target": "internal/core/queue/queue_test.go",
|
|
1030
|
+
"transformation": "module/import namespace only",
|
|
1031
|
+
"source_sha256": "9c5e912dc42d68e25121b40c62aaf0d1f271cde5a84338f492421827f3aa84d8",
|
|
1032
|
+
"target_template_sha256": "9c5e912dc42d68e25121b40c62aaf0d1f271cde5a84338f492421827f3aa84d8"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"source": "backend/internal/core/resilience/bulkhead.go",
|
|
1036
|
+
"target": "internal/core/resilience/bulkhead.go",
|
|
1037
|
+
"transformation": "module/import namespace only",
|
|
1038
|
+
"source_sha256": "afeda38de3a7de5072a2fe404132498f423b1bb3f4a36bb0ed933a52e7a7a33b",
|
|
1039
|
+
"target_template_sha256": "afeda38de3a7de5072a2fe404132498f423b1bb3f4a36bb0ed933a52e7a7a33b"
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"source": "backend/internal/core/resilience/bulkhead_test.go",
|
|
1043
|
+
"target": "internal/core/resilience/bulkhead_test.go",
|
|
1044
|
+
"transformation": "module/import namespace only",
|
|
1045
|
+
"source_sha256": "f8be6c90567455e7467f6239e7f61eea70ef87631b246e3dc9082ccbddb524f6",
|
|
1046
|
+
"target_template_sha256": "f8be6c90567455e7467f6239e7f61eea70ef87631b246e3dc9082ccbddb524f6"
|
|
1047
|
+
},
|
|
1048
|
+
{
|
|
1049
|
+
"source": "backend/internal/core/resilience/circuitbreaker.go",
|
|
1050
|
+
"target": "internal/core/resilience/circuitbreaker.go",
|
|
1051
|
+
"transformation": "module/import namespace only",
|
|
1052
|
+
"source_sha256": "c8d260b1347e350bfd3fff0bd2fbd2e31c6d073445e01b6a54ebbd667b4098f4",
|
|
1053
|
+
"target_template_sha256": "c8d260b1347e350bfd3fff0bd2fbd2e31c6d073445e01b6a54ebbd667b4098f4"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"source": "backend/internal/core/resilience/circuitbreaker_test.go",
|
|
1057
|
+
"target": "internal/core/resilience/circuitbreaker_test.go",
|
|
1058
|
+
"transformation": "module/import namespace only",
|
|
1059
|
+
"source_sha256": "8bc5bd759c60704f72ebbc0e09a69fd052d6ee603e0b194bd5dd6207b800b2e2",
|
|
1060
|
+
"target_template_sha256": "8bc5bd759c60704f72ebbc0e09a69fd052d6ee603e0b194bd5dd6207b800b2e2"
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
"source": "backend/internal/core/resilience/retry.go",
|
|
1064
|
+
"target": "internal/core/resilience/retry.go",
|
|
1065
|
+
"transformation": "module/import namespace only",
|
|
1066
|
+
"source_sha256": "dacbfb9270770f70c4727423959d0db4b0533b08388144f782232a6a4e3e4b7e",
|
|
1067
|
+
"target_template_sha256": "dacbfb9270770f70c4727423959d0db4b0533b08388144f782232a6a4e3e4b7e"
|
|
1068
|
+
},
|
|
1069
|
+
{
|
|
1070
|
+
"source": "backend/internal/core/resilience/retry_test.go",
|
|
1071
|
+
"target": "internal/core/resilience/retry_test.go",
|
|
1072
|
+
"transformation": "module/import namespace only",
|
|
1073
|
+
"source_sha256": "743a905d9ed2e5931343c5adb54df0884639a9092409e7a4a2b22a6835df9fda",
|
|
1074
|
+
"target_template_sha256": "743a905d9ed2e5931343c5adb54df0884639a9092409e7a4a2b22a6835df9fda"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"source": "backend/internal/core/schedule/recorder.go",
|
|
1078
|
+
"target": "internal/core/schedule/recorder.go",
|
|
1079
|
+
"transformation": "module/import namespace only",
|
|
1080
|
+
"source_sha256": "dc1facfc246bbc0870bf35812ed0a6ac8666f3d04af45950810e941bbbba5198",
|
|
1081
|
+
"target_template_sha256": "dc1facfc246bbc0870bf35812ed0a6ac8666f3d04af45950810e941bbbba5198"
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
"source": "backend/internal/core/schedule/run_context.go",
|
|
1085
|
+
"target": "internal/core/schedule/run_context.go",
|
|
1086
|
+
"transformation": "module/import namespace only",
|
|
1087
|
+
"source_sha256": "49892ac950293d7867dea3e2a460a6ec66f10829fddbba668be7e555964f6098",
|
|
1088
|
+
"target_template_sha256": "49892ac950293d7867dea3e2a460a6ec66f10829fddbba668be7e555964f6098"
|
|
1089
|
+
},
|
|
1090
|
+
{
|
|
1091
|
+
"source": "backend/internal/core/schedule/run_context_test.go",
|
|
1092
|
+
"target": "internal/core/schedule/run_context_test.go",
|
|
1093
|
+
"transformation": "module/import namespace only",
|
|
1094
|
+
"source_sha256": "ccb004d61776137661c31ec23ca1ae5b94c702bc8f27589a0f8ea52c4698e43a",
|
|
1095
|
+
"target_template_sha256": "ccb004d61776137661c31ec23ca1ae5b94c702bc8f27589a0f8ea52c4698e43a"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"source": "backend/internal/core/schedule/scheduler.go",
|
|
1099
|
+
"target": "internal/core/schedule/scheduler.go",
|
|
1100
|
+
"transformation": "module/import namespace only",
|
|
1101
|
+
"source_sha256": "c932b2fe92d50858f9d9e3144dadc7114bfd08604872c55549ce67f04fce12af",
|
|
1102
|
+
"target_template_sha256": "c932b2fe92d50858f9d9e3144dadc7114bfd08604872c55549ce67f04fce12af"
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
"source": "backend/internal/core/schedule/scheduler_control_test.go",
|
|
1106
|
+
"target": "internal/core/schedule/scheduler_control_test.go",
|
|
1107
|
+
"transformation": "module/import namespace only",
|
|
1108
|
+
"source_sha256": "fe198a429486265d66014ad78305327d35f5f205fc547c7a1f0f61b237206b6b",
|
|
1109
|
+
"target_template_sha256": "fe198a429486265d66014ad78305327d35f5f205fc547c7a1f0f61b237206b6b"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"source": "backend/internal/core/storage/oss_provider.go",
|
|
1113
|
+
"target": "internal/core/storage/oss_provider.go",
|
|
1114
|
+
"transformation": "module/import namespace only",
|
|
1115
|
+
"source_sha256": "e394ddfcd7b14fd975e1a1c0962d2b66f0a5d2aff8066954a6ccbd974d2fe84d",
|
|
1116
|
+
"target_template_sha256": "e394ddfcd7b14fd975e1a1c0962d2b66f0a5d2aff8066954a6ccbd974d2fe84d"
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"source": "backend/internal/core/storage/oss_provider_test.go",
|
|
1120
|
+
"target": "internal/core/storage/oss_provider_test.go",
|
|
1121
|
+
"transformation": "module/import namespace only",
|
|
1122
|
+
"source_sha256": "248bea1a415b2d3704a03206203aebc5ea5c5057d1dcd92ea524e3b4afade085",
|
|
1123
|
+
"target_template_sha256": "248bea1a415b2d3704a03206203aebc5ea5c5057d1dcd92ea524e3b4afade085"
|
|
1124
|
+
},
|
|
1125
|
+
{
|
|
1126
|
+
"source": "backend/internal/core/storage/path.go",
|
|
1127
|
+
"target": "internal/core/storage/path.go",
|
|
1128
|
+
"transformation": "module/import namespace only",
|
|
1129
|
+
"source_sha256": "9d833d025158e6cf8e3ce384f39ac3c504c61e85ec77ef62add6ae9f4927c666",
|
|
1130
|
+
"target_template_sha256": "9d833d025158e6cf8e3ce384f39ac3c504c61e85ec77ef62add6ae9f4927c666"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"source": "backend/internal/core/storage/path_test.go",
|
|
1134
|
+
"target": "internal/core/storage/path_test.go",
|
|
1135
|
+
"transformation": "module/import namespace only",
|
|
1136
|
+
"source_sha256": "38b3086c87eadfc545828f31067d44ebddc3d4aa46fd677ae3cc15d11746b539",
|
|
1137
|
+
"target_template_sha256": "38b3086c87eadfc545828f31067d44ebddc3d4aa46fd677ae3cc15d11746b539"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
"source": "backend/internal/core/storage/s3_provider.go",
|
|
1141
|
+
"target": "internal/core/storage/s3_provider.go",
|
|
1142
|
+
"transformation": "module/import namespace only",
|
|
1143
|
+
"source_sha256": "afb72ccd302ef93b53579474652a5b469b987f72876e7145e3836ee2f9cbb50a",
|
|
1144
|
+
"target_template_sha256": "afb72ccd302ef93b53579474652a5b469b987f72876e7145e3836ee2f9cbb50a"
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"source": "backend/internal/core/storage/s3_provider_test.go",
|
|
1148
|
+
"target": "internal/core/storage/s3_provider_test.go",
|
|
1149
|
+
"transformation": "module/import namespace only",
|
|
1150
|
+
"source_sha256": "46cf957ddfb6e6594a44230028e444dd8cb05b737904dcb3b5963147187ca0a6",
|
|
1151
|
+
"target_template_sha256": "46cf957ddfb6e6594a44230028e444dd8cb05b737904dcb3b5963147187ca0a6"
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"source": "backend/internal/core/storage/storage.go",
|
|
1155
|
+
"target": "internal/core/storage/storage.go",
|
|
1156
|
+
"transformation": "module/import namespace only",
|
|
1157
|
+
"source_sha256": "a1fca56dcc77961d2a6cc045907556a1fb070ac38382006f9b2ecf922d81d1fb",
|
|
1158
|
+
"target_template_sha256": "a1fca56dcc77961d2a6cc045907556a1fb070ac38382006f9b2ecf922d81d1fb"
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
"source": "backend/internal/core/storage/validation.go",
|
|
1162
|
+
"target": "internal/core/storage/validation.go",
|
|
1163
|
+
"transformation": "module/import namespace only",
|
|
1164
|
+
"source_sha256": "b6a82cdc6520e2a444138735b03cc8f757466e3eac0aeccabecfddcf91958b21",
|
|
1165
|
+
"target_template_sha256": "b6a82cdc6520e2a444138735b03cc8f757466e3eac0aeccabecfddcf91958b21"
|
|
1166
|
+
},
|
|
1167
|
+
{
|
|
1168
|
+
"source": "backend/internal/core/storage/validation_test.go",
|
|
1169
|
+
"target": "internal/core/storage/validation_test.go",
|
|
1170
|
+
"transformation": "module/import namespace only",
|
|
1171
|
+
"source_sha256": "b8c2c473b3a8bce60c7e3add5a47398ad6c2bbe39e260e304aac72652dfc5e11",
|
|
1172
|
+
"target_template_sha256": "b8c2c473b3a8bce60c7e3add5a47398ad6c2bbe39e260e304aac72652dfc5e11"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"source": "backend/internal/core/temporal/logger.go",
|
|
1176
|
+
"target": "internal/core/temporal/logger.go",
|
|
1177
|
+
"transformation": "module/import namespace only",
|
|
1178
|
+
"source_sha256": "383e786b623185756e330d3db02c238a683dec5d80b70102c24a91094155fa0c",
|
|
1179
|
+
"target_template_sha256": "383e786b623185756e330d3db02c238a683dec5d80b70102c24a91094155fa0c"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"source": "backend/internal/core/temporal/provider.go",
|
|
1183
|
+
"target": "internal/core/temporal/provider.go",
|
|
1184
|
+
"transformation": "module/import namespace only",
|
|
1185
|
+
"source_sha256": "b278c01fcca440f88ad0d1239c8d5f5151a7f0b3aaaf880097d26eb276609016",
|
|
1186
|
+
"target_template_sha256": "572aaa63599347e760278b01ebdfe91b3ce2ad5294868a9cc1aef102584dd3f8"
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
"source": "backend/internal/core/temporal/provider_test.go",
|
|
1190
|
+
"target": "internal/core/temporal/provider_test.go",
|
|
1191
|
+
"transformation": "module/import namespace only",
|
|
1192
|
+
"source_sha256": "d1bd646a5a307e36fba56d53e77be2bf1d9543ab5c4beb6a96da3e979f7ed192",
|
|
1193
|
+
"target_template_sha256": "2187583371733cca1775b63235526437c99c3875a7c6a3ad284af665afc01b6a"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"source": "backend/internal/core/websocket/client.go",
|
|
1197
|
+
"target": "internal/core/websocket/client.go",
|
|
1198
|
+
"transformation": "module/import namespace only",
|
|
1199
|
+
"source_sha256": "a7ba10f0fa61275edaafaa7ec0a485af03a323a1a5194182fa3a678b4ebb75cc",
|
|
1200
|
+
"target_template_sha256": "a7ba10f0fa61275edaafaa7ec0a485af03a323a1a5194182fa3a678b4ebb75cc"
|
|
1201
|
+
},
|
|
1202
|
+
{
|
|
1203
|
+
"source": "backend/internal/core/websocket/client_test.go",
|
|
1204
|
+
"target": "internal/core/websocket/client_test.go",
|
|
1205
|
+
"transformation": "module/import namespace only",
|
|
1206
|
+
"source_sha256": "d5d87df13976c13b4d3dd924fb228fe344da21fd00c37bb055aecf0476484786",
|
|
1207
|
+
"target_template_sha256": "d5d87df13976c13b4d3dd924fb228fe344da21fd00c37bb055aecf0476484786"
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
"source": "backend/internal/core/websocket/config.go",
|
|
1211
|
+
"target": "internal/core/websocket/config.go",
|
|
1212
|
+
"transformation": "module/import namespace only",
|
|
1213
|
+
"source_sha256": "2030bfae00d04afc57ecce847ea6a6a623b382c7e7dd559fdf265a446a4ad588",
|
|
1214
|
+
"target_template_sha256": "2030bfae00d04afc57ecce847ea6a6a623b382c7e7dd559fdf265a446a4ad588"
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
"source": "backend/internal/core/websocket/handler.go",
|
|
1218
|
+
"target": "internal/core/websocket/handler.go",
|
|
1219
|
+
"transformation": "module/import namespace only",
|
|
1220
|
+
"source_sha256": "df3971c61881687d4fd776983f317ccfcb6f406e1c46a68c97400883deea0c7b",
|
|
1221
|
+
"target_template_sha256": "70048b7acc833a83c6f785282444e2b10db5c8e4c3c1abb55d3b62a16fc07cc7"
|
|
1222
|
+
},
|
|
1223
|
+
{
|
|
1224
|
+
"source": "backend/internal/core/websocket/hub.go",
|
|
1225
|
+
"target": "internal/core/websocket/hub.go",
|
|
1226
|
+
"transformation": "module/import namespace only",
|
|
1227
|
+
"source_sha256": "66d265799551257df585b63aa46913289d61e89c1060224bdb3609b63d83ca15",
|
|
1228
|
+
"target_template_sha256": "66d265799551257df585b63aa46913289d61e89c1060224bdb3609b63d83ca15"
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"source": "backend/internal/core/websocket/message.go",
|
|
1232
|
+
"target": "internal/core/websocket/message.go",
|
|
1233
|
+
"transformation": "module/import namespace only",
|
|
1234
|
+
"source_sha256": "fa03fb556561724c1392976d1d4e6aeb49db80a950df57e074428599c58a9b97",
|
|
1235
|
+
"target_template_sha256": "fa03fb556561724c1392976d1d4e6aeb49db80a950df57e074428599c58a9b97"
|
|
1236
|
+
},
|
|
1237
|
+
{
|
|
1238
|
+
"source": "backend/internal/core/websocket/notifier.go",
|
|
1239
|
+
"target": "internal/core/websocket/notifier.go",
|
|
1240
|
+
"transformation": "module/import namespace only",
|
|
1241
|
+
"source_sha256": "f6a6824a83ca9984046de283560810b6bc76c109198c512a55f622cd19c30f9c",
|
|
1242
|
+
"target_template_sha256": "f6a6824a83ca9984046de283560810b6bc76c109198c512a55f622cd19c30f9c"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"source": "backend/internal/core/websocket/provider.go",
|
|
1246
|
+
"target": "internal/core/websocket/provider.go",
|
|
1247
|
+
"transformation": "module/import namespace only",
|
|
1248
|
+
"source_sha256": "5ae25aa22454bc56a49e4de0628be1bd87abdb4e0286d2f8a214312b629b1c31",
|
|
1249
|
+
"target_template_sha256": "5ae25aa22454bc56a49e4de0628be1bd87abdb4e0286d2f8a214312b629b1c31"
|
|
1250
|
+
},
|
|
1251
|
+
{
|
|
1252
|
+
"source": "backend/internal/common/bffadapter/accesspolicy_adapters.go",
|
|
1253
|
+
"excluded": "Platform concrete module bindings",
|
|
1254
|
+
"source_sha256": "618fe22943c2999bafef1cbc2adc233bdbbbdc73766f784ea547865f16311783"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
"source": "backend/internal/common/bffadapter/accesspolicy_adapters_test.go",
|
|
1258
|
+
"excluded": "Platform concrete module bindings",
|
|
1259
|
+
"source_sha256": "027e7cc19a427490be8a35da29dc6e561aaee94d8d218195b7e3b994f8820376"
|
|
1260
|
+
},
|
|
1261
|
+
{
|
|
1262
|
+
"source": "backend/internal/common/bffadapter/adapters.go",
|
|
1263
|
+
"excluded": "Platform concrete module bindings",
|
|
1264
|
+
"source_sha256": "0f76d28d1ea1c2fe5f1d45b78fba51af26c6949f62722a5fd17ceb963d905a16"
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
"source": "backend/internal/common/bffadapter/adapters_test.go",
|
|
1268
|
+
"excluded": "Platform concrete module bindings",
|
|
1269
|
+
"source_sha256": "3b66367d66876ab0988c38a5a089db3755b0a17ff53ff089129dfd5fabb41e33"
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"source": "backend/internal/common/bffadapter/admin_experience_external_product_adapter.go",
|
|
1273
|
+
"excluded": "Platform concrete module bindings",
|
|
1274
|
+
"source_sha256": "40b6c8cafe8c113920aac3da186caa527bfea51c8af872c050bdf1bdeaf4e74b"
|
|
1275
|
+
},
|
|
1276
|
+
{
|
|
1277
|
+
"source": "backend/internal/common/bffadapter/admin_experience_external_product_adapter_test.go",
|
|
1278
|
+
"excluded": "Platform concrete module bindings",
|
|
1279
|
+
"source_sha256": "caeb4cfc9536d587c7cd8efa6506875230c39433233e2d3049be9982ceb723b0"
|
|
1280
|
+
},
|
|
1281
|
+
{
|
|
1282
|
+
"source": "backend/internal/common/bffadapter/admin_experience_product_context_adapter.go",
|
|
1283
|
+
"excluded": "Platform concrete module bindings",
|
|
1284
|
+
"source_sha256": "6f94a29a79c665da3ccb95b815495ed183580cc1a6d04712ce0b734595e5b0e5"
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"source": "backend/internal/common/bffadapter/admin_experience_product_context_adapter_test.go",
|
|
1288
|
+
"excluded": "Platform concrete module bindings",
|
|
1289
|
+
"source_sha256": "6cb2e645f1f6a14184871af7a71591de89eb80ee5038e47115901c77a3bd6267"
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
"source": "backend/internal/common/bffadapter/api_contract_operator_reference_adapter.go",
|
|
1293
|
+
"excluded": "Platform concrete module bindings",
|
|
1294
|
+
"source_sha256": "b8efc076924ae2950018fe29e664f6a0e4354be4d0cde17a89ac7bd53faa2673"
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
"source": "backend/internal/common/bffadapter/api_contract_operator_reference_adapter_test.go",
|
|
1298
|
+
"excluded": "Platform concrete module bindings",
|
|
1299
|
+
"source_sha256": "cfd4a5348bfb3429cd18058c47fa61d27f6415145df174bcdf55ba13150b34c8"
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
"source": "backend/internal/common/bffadapter/api_contract_publication_adapter.go",
|
|
1303
|
+
"excluded": "Platform concrete module bindings",
|
|
1304
|
+
"source_sha256": "5996c71ac0b09bedbc0675a2b9295cf6835a965658482d8b2a675ce70ea002ec"
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"source": "backend/internal/common/bffadapter/api_contract_publication_adapter_test.go",
|
|
1308
|
+
"excluded": "Platform concrete module bindings",
|
|
1309
|
+
"source_sha256": "50d82ef5819c7106967575e9125572b72de54fc43785a8e68ba761741e4611bd"
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"source": "backend/internal/common/bffadapter/api_contract_publication_artifact_reader.go",
|
|
1313
|
+
"excluded": "Platform concrete module bindings",
|
|
1314
|
+
"source_sha256": "c402d80a5bf31296f414e81329e0e98818e98671e200887f5af19148b0e553ca"
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"source": "backend/internal/common/bffadapter/api_contract_publication_artifact_reader_test.go",
|
|
1318
|
+
"excluded": "Platform concrete module bindings",
|
|
1319
|
+
"source_sha256": "33548ef922f41f019df85b3beda5eaaf1fbf2233aa6c0401800dec7d7fc42ab2"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"source": "backend/internal/common/bffadapter/approval_executor.go",
|
|
1323
|
+
"excluded": "Platform concrete module bindings",
|
|
1324
|
+
"source_sha256": "250f9ed0ded3ff0edc78b9165a5f6aece4c0e391312912138d8a9321269d2941"
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
"source": "backend/internal/common/bffadapter/appversion_client_application_reader_adapter.go",
|
|
1328
|
+
"excluded": "Platform concrete module bindings",
|
|
1329
|
+
"source_sha256": "2eca258dcb2ac986e45d4db5da6551f1cb068aeeb5691d6e19b509be7811fda8"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"source": "backend/internal/common/bffadapter/asset_url_resolver.go",
|
|
1333
|
+
"excluded": "Platform concrete module bindings",
|
|
1334
|
+
"source_sha256": "ec83de70dc202cd4ca2b3b584f70b9d058866ccbc14819756b963cad05f08d6e"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"source": "backend/internal/common/bffadapter/benefit_upgrade_adapters.go",
|
|
1338
|
+
"excluded": "Platform concrete module bindings",
|
|
1339
|
+
"source_sha256": "1924b1ce25ec1aaf8a473e7e2c4304e0f4631d6ca3a4b210da9815f333d82be9"
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"source": "backend/internal/common/bffadapter/benefit_upgrade_adapters_test.go",
|
|
1343
|
+
"excluded": "Platform concrete module bindings",
|
|
1344
|
+
"source_sha256": "c074f151825925a4536420c6e5adc408ff4852f96fbe1182873f27bae4121215"
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
"source": "backend/internal/common/bffadapter/billing_account_adapters.go",
|
|
1348
|
+
"excluded": "Platform concrete module bindings",
|
|
1349
|
+
"source_sha256": "45c2c7bc88087e87288ec79d0fe3a2574bc722ff5caaaf0d472a589c5fb8b0c6"
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
"source": "backend/internal/common/bffadapter/billing_notification_recipient_adapter_test.go",
|
|
1353
|
+
"excluded": "Platform concrete module bindings",
|
|
1354
|
+
"source_sha256": "240514a206935429b0f2bfa5c8e0e8161c85e51017a8a4bb10a942752b4e243e"
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
"source": "backend/internal/common/bffadapter/budget_subject_validator_adapter.go",
|
|
1358
|
+
"excluded": "Platform concrete module bindings",
|
|
1359
|
+
"source_sha256": "e6e3fdab0927a7c06a7ac990bf65322578d59e4e245c387aa8c5b42b31101062"
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"source": "backend/internal/common/bffadapter/budget_usage_recorder_adapter.go",
|
|
1363
|
+
"excluded": "Platform concrete module bindings",
|
|
1364
|
+
"source_sha256": "04a20476910408bed887accd69e250dc105db9e728aa7cfd3b7214b7aea3fa14"
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"source": "backend/internal/common/bffadapter/budget_usage_recorder_adapter_test.go",
|
|
1368
|
+
"excluded": "Platform concrete module bindings",
|
|
1369
|
+
"source_sha256": "4b91ed109b33eb54c874539870dbea8b7fa60ce83e332df6a8067e5fae841361"
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"source": "backend/internal/common/bffadapter/campaign_adapters.go",
|
|
1373
|
+
"excluded": "Platform concrete module bindings",
|
|
1374
|
+
"source_sha256": "1d31cfdaab26c3a0236faef04e99e36052a91cb8b55234243208b9a1cba9aefc"
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"source": "backend/internal/common/bffadapter/canonical_email_verified_precedence_adapter.go",
|
|
1378
|
+
"excluded": "Platform concrete module bindings",
|
|
1379
|
+
"source_sha256": "d92f9e245c755079a1730b67571e0349da20bd0475da354f43e96a2163daf6d1"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
"source": "backend/internal/common/bffadapter/canonical_principal_adapters.go",
|
|
1383
|
+
"excluded": "Platform concrete module bindings",
|
|
1384
|
+
"source_sha256": "eff2dc9324dce6ef704650f444a2e18d8ac308b71b048f625876e15bdd73ddcc"
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
"source": "backend/internal/common/bffadapter/canonical_principal_adapters_test.go",
|
|
1388
|
+
"excluded": "Platform concrete module bindings",
|
|
1389
|
+
"source_sha256": "3b2fc1b6b5f89a14f41b303e272cb8ca541940f4e84e373d6d64fad27e29a620"
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
"source": "backend/internal/common/bffadapter/client_application_decommission_adapter.go",
|
|
1393
|
+
"excluded": "Platform concrete module bindings",
|
|
1394
|
+
"source_sha256": "a518cfd989e7f5905b160bb9d22d1fce67d63e81fed3fdce68bce31261d29acf"
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"source": "backend/internal/common/bffadapter/client_application_runtime_context_adapter.go",
|
|
1398
|
+
"excluded": "Platform concrete module bindings",
|
|
1399
|
+
"source_sha256": "0a0b1c5e2b0b4e48ed006e7d42619fa3e91b1acdb9bcee016837256027c2a9df"
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
"source": "backend/internal/common/bffadapter/commercial_subject_owner_validator_adapter.go",
|
|
1403
|
+
"excluded": "Platform concrete module bindings",
|
|
1404
|
+
"source_sha256": "4bd6701ac83ee8e0fba61d3e15931136fe60b233bfad4066c07b04df83a0d941"
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
"source": "backend/internal/common/bffadapter/commercial_subject_owner_validator_adapter_test.go",
|
|
1408
|
+
"excluded": "Platform concrete module bindings",
|
|
1409
|
+
"source_sha256": "cb7b6fc19bd8d9e301dddf80d8466d44948c4c8530a4954807c9ff0ceb698640"
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"source": "backend/internal/common/bffadapter/commercial_user_subject_projector_adapters.go",
|
|
1413
|
+
"excluded": "Platform concrete module bindings",
|
|
1414
|
+
"source_sha256": "9fc0120399327a0fce03755d56b07e1ca142d706b42146fb9ca80d2313f727f5"
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"source": "backend/internal/common/bffadapter/commercial_user_subject_projector_adapters_test.go",
|
|
1418
|
+
"excluded": "Platform concrete module bindings",
|
|
1419
|
+
"source_sha256": "063abb6d7663905076489291160268abc5d7d27c9650a93161147da059712d40"
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"source": "backend/internal/common/bffadapter/contact_user_display_adapter.go",
|
|
1423
|
+
"excluded": "Platform concrete module bindings",
|
|
1424
|
+
"source_sha256": "e6448afdcb882d254134c711cb1b6f5508a726d836a63846d273616a08282ab0"
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
"source": "backend/internal/common/bffadapter/content_article_video_asset_adapter.go",
|
|
1428
|
+
"excluded": "Platform concrete module bindings",
|
|
1429
|
+
"source_sha256": "a30fdc5cb317f9a76359b9f8f6f10a5e50fb9ae500218c1fb2a20fc1d734b6e8"
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"source": "backend/internal/common/bffadapter/credit_top_up_offer_adapters.go",
|
|
1433
|
+
"excluded": "Platform concrete module bindings",
|
|
1434
|
+
"source_sha256": "7fc14b3e3cd08596e67621e9097032f1a70296fdddfac5e258db10aaffe5162b"
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"source": "backend/internal/common/bffadapter/credit_top_up_offer_adapters_test.go",
|
|
1438
|
+
"excluded": "Platform concrete module bindings",
|
|
1439
|
+
"source_sha256": "b334e017dfa88f5dbe30bbde41626d8b5bacd3925028fd1c147c74b7e9cdb6db"
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"source": "backend/internal/common/bffadapter/documentation_domain_binding.go",
|
|
1443
|
+
"excluded": "Platform concrete module bindings",
|
|
1444
|
+
"source_sha256": "b0aa0478a1aa8ca85b4b8b2722a8f060bb09423560d23ba7ac13b0d28cb5b2a5"
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
"source": "backend/internal/common/bffadapter/documentation_domain_binding_test.go",
|
|
1448
|
+
"excluded": "Platform concrete module bindings",
|
|
1449
|
+
"source_sha256": "5ca116710fa713c2127e278cb67a305ca9dd57f937e707ce7e01614395186715"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"source": "backend/internal/common/bffadapter/entitlement_adapters.go",
|
|
1453
|
+
"excluded": "Platform concrete module bindings",
|
|
1454
|
+
"source_sha256": "58f21166ff950ecaa1299b0c7bda97f8c98ddcf73a17f3763e1efbf993879605"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
"source": "backend/internal/common/bffadapter/entitlement_order_adapter_test.go",
|
|
1458
|
+
"excluded": "Platform concrete module bindings",
|
|
1459
|
+
"source_sha256": "e434f3bc2fbd222220732c3b21e62f79c18eb99d6401cc1cbc1ccdc3c85d0be0"
|
|
1460
|
+
},
|
|
1461
|
+
{
|
|
1462
|
+
"source": "backend/internal/common/bffadapter/featureflag_client_application_reader_adapter.go",
|
|
1463
|
+
"excluded": "Platform concrete module bindings",
|
|
1464
|
+
"source_sha256": "62a30c16d60d3bc2f3737432c577bb8b404bcbcd6b358de764a62ec5b24b6136"
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
"source": "backend/internal/common/bffadapter/guest_principal_convergence_adapter.go",
|
|
1468
|
+
"excluded": "Platform concrete module bindings",
|
|
1469
|
+
"source_sha256": "3195a4c9357bafb80a081f19b0c3b5c43bff0b2c236bd54017809ad25646df22"
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
"source": "backend/internal/common/bffadapter/helpdesk_asset_reference_adapter.go",
|
|
1473
|
+
"excluded": "Platform concrete module bindings",
|
|
1474
|
+
"source_sha256": "04deb33089705ea996547b3c8b8086e66b6cb09eab58b48b4d7cf9536faf1132"
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
"source": "backend/internal/common/bffadapter/helpdesk_contact_display_adapter.go",
|
|
1478
|
+
"excluded": "Platform concrete module bindings",
|
|
1479
|
+
"source_sha256": "608e2ac21e4a7aeb23d4cefe0035576a351bdb38c0d03beefea879891969feb9"
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
"source": "backend/internal/common/bffadapter/helpdesk_conversation_ownership_adapter.go",
|
|
1483
|
+
"excluded": "Platform concrete module bindings",
|
|
1484
|
+
"source_sha256": "74678ba635c6da01c6a3438a951301394abdd99b5c2b75f8bb3444a27e3dd168"
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
"source": "backend/internal/common/bffadapter/helpdesk_conversation_ownership_adapter_test.go",
|
|
1488
|
+
"excluded": "Platform concrete module bindings",
|
|
1489
|
+
"source_sha256": "686db2ecf940c60bd68d53a273315d72f2d4c627da400e535be368ceedc44d04"
|
|
1490
|
+
},
|
|
1491
|
+
{
|
|
1492
|
+
"source": "backend/internal/common/bffadapter/helpdesk_mailbox_adapter.go",
|
|
1493
|
+
"excluded": "Platform concrete module bindings",
|
|
1494
|
+
"source_sha256": "33c9f313fd663c5fcbfdf73c8a3fc6d37ff6e40c68feb2d1629d3f355a72bbce"
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
"source": "backend/internal/common/bffadapter/helpdesk_user_display_adapter.go",
|
|
1498
|
+
"excluded": "Platform concrete module bindings",
|
|
1499
|
+
"source_sha256": "041f7cd816ef8addf1b76c58510b774e499d03ab3bcc1801a9fcd03239a7f6c2"
|
|
1500
|
+
},
|
|
1501
|
+
{
|
|
1502
|
+
"source": "backend/internal/common/bffadapter/iam_event_audience_adapter.go",
|
|
1503
|
+
"excluded": "Platform concrete module bindings",
|
|
1504
|
+
"source_sha256": "efb72d75c3efd3d12883a916cec75559b14a69fa742b1d2e0fcdde26d757125d"
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
"source": "backend/internal/common/bffadapter/iam_event_audience_adapter_test.go",
|
|
1508
|
+
"excluded": "Platform concrete module bindings",
|
|
1509
|
+
"source_sha256": "b10d9cc9a54362fccff0c1ec979765ed2f7b59ff78661152bbf5ce11b74aa654"
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
"source": "backend/internal/common/bffadapter/iam_request_audit_adapter.go",
|
|
1513
|
+
"excluded": "Platform concrete module bindings",
|
|
1514
|
+
"source_sha256": "82f8fb3d6096e6890b10a9d8f5e2336e24f1e2658ab77f63b8bd466dcdfcd331"
|
|
1515
|
+
},
|
|
1516
|
+
{
|
|
1517
|
+
"source": "backend/internal/common/bffadapter/iam_service_token_auth_adapter.go",
|
|
1518
|
+
"excluded": "Platform concrete module bindings",
|
|
1519
|
+
"source_sha256": "9e8f377a2d2432860a4eb579773be6805aca799da4681283705eaa33262a7d57"
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"source": "backend/internal/common/bffadapter/identity_bootstrap_adapter.go",
|
|
1523
|
+
"excluded": "Platform concrete module bindings",
|
|
1524
|
+
"source_sha256": "3e25843f9add7be60bdcf94e08ec5522ea83b2a377ba31305d8added7b42c929"
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
"source": "backend/internal/common/bffadapter/identity_bootstrap_adapter_test.go",
|
|
1528
|
+
"excluded": "Platform concrete module bindings",
|
|
1529
|
+
"source_sha256": "9d78e5b33ba84e69af1f250be43f89e9e784c9ee40b7987075b994cb55a58e42"
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
"source": "backend/internal/common/bffadapter/identity_client_application_adapter.go",
|
|
1533
|
+
"excluded": "Platform concrete module bindings",
|
|
1534
|
+
"source_sha256": "a08e529aec5b664d0ac5bf38c4da248175cca6a2337beddc6e3446b6ce9dd35f"
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"source": "backend/internal/common/bffadapter/identity_client_application_adapter_test.go",
|
|
1538
|
+
"excluded": "Platform concrete module bindings",
|
|
1539
|
+
"source_sha256": "e2be51dec45b31589174622bca5b44d44820dc3bec637d10be707577a32bbb13"
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"source": "backend/internal/common/bffadapter/identity_dispatch_command_adapter.go",
|
|
1543
|
+
"excluded": "Platform concrete module bindings",
|
|
1544
|
+
"source_sha256": "b01a879b869afb604440a1385cb35d57f964799cec5684d9edb628c9ac963482"
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
"source": "backend/internal/common/bffadapter/identity_recovery_adapter.go",
|
|
1548
|
+
"excluded": "Platform concrete module bindings",
|
|
1549
|
+
"source_sha256": "8c6a2863ee2a02eef099fc5df83288841e4e1cd0adf11c4f6e92bc9f428ae88b"
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"source": "backend/internal/common/bffadapter/identity_sso_organization_reader.go",
|
|
1553
|
+
"excluded": "Platform concrete module bindings",
|
|
1554
|
+
"source_sha256": "48539151397f276e56c6c639404fd1c26f4c70d2c8fb1202ebd4730322c38325"
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"source": "backend/internal/common/bffadapter/identity_token_exchange_adapters.go",
|
|
1558
|
+
"excluded": "Platform concrete module bindings",
|
|
1559
|
+
"source_sha256": "d6ced2e2644f882067eab57a4db4d54713d4fb057f05725508012773ea26c5c8"
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
"source": "backend/internal/common/bffadapter/integration_event_secret_dependency_adapter.go",
|
|
1563
|
+
"excluded": "Platform concrete module bindings",
|
|
1564
|
+
"source_sha256": "d7d6b39f5b156f1f8c2f86a807e3c312a47e9ca575f98b176b420f88d2cedd0a"
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"source": "backend/internal/common/bffadapter/integration_event_secret_dependency_adapter_test.go",
|
|
1568
|
+
"excluded": "Platform concrete module bindings",
|
|
1569
|
+
"source_sha256": "21c6258a5b1f8f6a44df2ab2d90bbde0b96a672f8582bb735d2219192a42d618"
|
|
1570
|
+
},
|
|
1571
|
+
{
|
|
1572
|
+
"source": "backend/internal/common/bffadapter/integration_event_secret_version_execution_adapter.go",
|
|
1573
|
+
"excluded": "Platform concrete module bindings",
|
|
1574
|
+
"source_sha256": "a795ad1971d69d82390bd9705b55d3684139731b59ce8039df6a86e99d933449"
|
|
1575
|
+
},
|
|
1576
|
+
{
|
|
1577
|
+
"source": "backend/internal/common/bffadapter/integration_event_secret_version_execution_adapter_test.go",
|
|
1578
|
+
"excluded": "Platform concrete module bindings",
|
|
1579
|
+
"source_sha256": "f0e24a8bf98c0fae26d7b39d70165471e6b8cdd425e8a24a1f5ef58fe2a95360"
|
|
1580
|
+
},
|
|
1581
|
+
{
|
|
1582
|
+
"source": "backend/internal/common/bffadapter/integration_event_secret_version_snapshot_adapter.go",
|
|
1583
|
+
"excluded": "Platform concrete module bindings",
|
|
1584
|
+
"source_sha256": "9ba627bf57c35d59ddf6d65cb0b139f815aac1d46dc0c1ef062d34b5689ba44c"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"source": "backend/internal/common/bffadapter/integration_event_secret_version_snapshot_adapter_test.go",
|
|
1588
|
+
"excluded": "Platform concrete module bindings",
|
|
1589
|
+
"source_sha256": "a6494c492cc5a357b9bea98387193335a5b04fe60a43848ceb23ec605e832a5d"
|
|
1590
|
+
},
|
|
1591
|
+
{
|
|
1592
|
+
"source": "backend/internal/common/bffadapter/kol_adapters.go",
|
|
1593
|
+
"excluded": "Platform concrete module bindings",
|
|
1594
|
+
"source_sha256": "314a8c2f7ca667d0010a34a86570d2d5bc958dae8fbb9ff4a093574c9584fba9"
|
|
1595
|
+
},
|
|
1596
|
+
{
|
|
1597
|
+
"source": "backend/internal/common/bffadapter/lifetime_adapters_test.go",
|
|
1598
|
+
"excluded": "Platform concrete module bindings",
|
|
1599
|
+
"source_sha256": "408f7b4bc3f31dd5c28afb9b0fbb1897ae19307a1d2faf615b001e1f904cc3fc"
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"source": "backend/internal/common/bffadapter/mailbox_user_display_adapter.go",
|
|
1603
|
+
"excluded": "Platform concrete module bindings",
|
|
1604
|
+
"source_sha256": "8ad71fd86f89a28ccaf740de862419834f23f9d2258867bd6b5770804755c041"
|
|
1605
|
+
},
|
|
1606
|
+
{
|
|
1607
|
+
"source": "backend/internal/common/bffadapter/mediagen_adapters.go",
|
|
1608
|
+
"excluded": "Platform concrete module bindings",
|
|
1609
|
+
"source_sha256": "d1b211688c6152301c067aa360b1096d62d9d116b8a7a129865325f5ab151c9e"
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
"source": "backend/internal/common/bffadapter/mediagen_adapters_test.go",
|
|
1613
|
+
"excluded": "Platform concrete module bindings",
|
|
1614
|
+
"source_sha256": "5e52bfffebc8da477b34a41f7e448af36934bf868ea29622d96b86d017473f9a"
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
"source": "backend/internal/common/bffadapter/notification_channel_activation_adapter.go",
|
|
1618
|
+
"excluded": "Platform concrete module bindings",
|
|
1619
|
+
"source_sha256": "297e63827eebd7b50f948f1f3aaf2cafa5fb8bcedb30213fdc497e4e2704a5d1"
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"source": "backend/internal/common/bffadapter/notification_channel_activation_adapter_postgres_test.go",
|
|
1623
|
+
"excluded": "Platform concrete module bindings",
|
|
1624
|
+
"source_sha256": "f9bde10223d2650340ae5d74ad4dd5eba805bd28419461792449a4d1c43c0085"
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
"source": "backend/internal/common/bffadapter/notification_channel_activation_adapter_test.go",
|
|
1628
|
+
"excluded": "Platform concrete module bindings",
|
|
1629
|
+
"source_sha256": "9270f8519c4095b9dc8b120e89541663ca764cb6fead087fd3216c434334a024"
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
"source": "backend/internal/common/bffadapter/notification_channel_config_usage_adapter.go",
|
|
1633
|
+
"excluded": "Platform concrete module bindings",
|
|
1634
|
+
"source_sha256": "e4d41439338d4c9f2a89c8ef02cf8f4cdec478e7342f57bbefdadba09af2e540"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"source": "backend/internal/common/bffadapter/notification_dispatch_command_adapters.go",
|
|
1638
|
+
"excluded": "Platform concrete module bindings",
|
|
1639
|
+
"source_sha256": "d60b4c785e4eaa7fabd60253fd9033ef0ba6d86b68794c1e12b607943c62af2c"
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
"source": "backend/internal/common/bffadapter/organization_access_context_adapter_test.go",
|
|
1643
|
+
"excluded": "Platform concrete module bindings",
|
|
1644
|
+
"source_sha256": "c026e85713b11d5954a17df9715f6d15923c8505208c61de8ad8f26985d08ddb"
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
"source": "backend/internal/common/bffadapter/organization_required_delivery_adapters.go",
|
|
1648
|
+
"excluded": "Platform concrete module bindings",
|
|
1649
|
+
"source_sha256": "a5d3fb8180e046ba5a45cdc501e839516349a0f9136bb3a8560986ce785ca959"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"source": "backend/internal/common/bffadapter/organization_required_delivery_adapters_test.go",
|
|
1653
|
+
"excluded": "Platform concrete module bindings",
|
|
1654
|
+
"source_sha256": "81509392fb6e957f9b3c2fcfc646d0c96e5dfae8086e45ee17a9616701b9431e"
|
|
1655
|
+
},
|
|
1656
|
+
{
|
|
1657
|
+
"source": "backend/internal/common/bffadapter/organization_runtime_adapters.go",
|
|
1658
|
+
"excluded": "Platform concrete module bindings",
|
|
1659
|
+
"source_sha256": "52bac31c2a3bc5ef1dc2ef5096581a06e2fb8d100d3558e8ab6e80da6f258a91"
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
"source": "backend/internal/common/bffadapter/principal_adapters.go",
|
|
1663
|
+
"excluded": "Platform concrete module bindings",
|
|
1664
|
+
"source_sha256": "33ffd164ce2545fdc966266691e332023cb3601d2109e35c8ae2e689d0971093"
|
|
1665
|
+
},
|
|
1666
|
+
{
|
|
1667
|
+
"source": "backend/internal/common/bffadapter/product_iam_context_adapter.go",
|
|
1668
|
+
"excluded": "Platform concrete module bindings",
|
|
1669
|
+
"source_sha256": "a8e46727349327adbdcab3badceeac344bf772c0a57bea0e129d14ba9ec04600"
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"source": "backend/internal/common/bffadapter/product_iam_context_adapter_test.go",
|
|
1673
|
+
"excluded": "Platform concrete module bindings",
|
|
1674
|
+
"source_sha256": "4d99acf66547c65dad76824ee4e73a14723939d773302e8815e10c3938cb5d4b"
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
"source": "backend/internal/common/bffadapter/product_principal_materialization.go",
|
|
1678
|
+
"excluded": "Platform concrete module bindings",
|
|
1679
|
+
"source_sha256": "6236f2a98456d3f2f9fcb3775d701865cce37c0f3317c42ec8af4a6feb6880d2"
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"source": "backend/internal/common/bffadapter/product_principal_materialization_test.go",
|
|
1683
|
+
"excluded": "Platform concrete module bindings",
|
|
1684
|
+
"source_sha256": "d4a98a32b3e36f2cc08513e9f1c29e7caa67d016d8634b8b50879357fe874424"
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
"source": "backend/internal/common/bffadapter/product_user_activation_projection_adapter.go",
|
|
1688
|
+
"excluded": "Platform concrete module bindings",
|
|
1689
|
+
"source_sha256": "713ce409d3c640db7dbd2883448d76f0d1dedb6e8e23a2a8203c3979520947b2"
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"source": "backend/internal/common/bffadapter/product_user_activation_projection_adapter_test.go",
|
|
1693
|
+
"excluded": "Platform concrete module bindings",
|
|
1694
|
+
"source_sha256": "ec1f48eb74e23c8304c0caf5d1f536b52cf351033e66c516795951755e6d9462"
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
"source": "backend/internal/common/bffadapter/profile_routing_editor_catalog.go",
|
|
1698
|
+
"excluded": "Platform concrete module bindings",
|
|
1699
|
+
"source_sha256": "35054722653c3a61aa3fbaacfdd33a3d3ae8552b052ebe312cef4eb306c460d0"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"source": "backend/internal/common/bffadapter/profile_routing_runtime_profile_target_guard.go",
|
|
1703
|
+
"excluded": "Platform concrete module bindings",
|
|
1704
|
+
"source_sha256": "80d39dedded3e9c06e75c21d162ac19cc7d874a1018e790eb4d79902bba30a61"
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
"source": "backend/internal/common/bffadapter/promotion_adapters.go",
|
|
1708
|
+
"excluded": "Platform concrete module bindings",
|
|
1709
|
+
"source_sha256": "814c6e6f9ad4aabdd360cdbdec1e09536e5d72650c880b07a837164a365ac014"
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"source": "backend/internal/common/bffadapter/promotion_adapters_test.go",
|
|
1713
|
+
"excluded": "Platform concrete module bindings",
|
|
1714
|
+
"source_sha256": "c4ed9781ebc98d39174c56377993add57ce434aa542f6a2de73d6a4f61668d68"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"source": "backend/internal/common/bffadapter/purchase_confirmation_adapters.go",
|
|
1718
|
+
"excluded": "Platform concrete module bindings",
|
|
1719
|
+
"source_sha256": "9f2b202517f324e0d2845ecc9f9dc5f8ed9d8807562caaaf6e88c2ce2e86419c"
|
|
1720
|
+
},
|
|
1721
|
+
{
|
|
1722
|
+
"source": "backend/internal/common/bffadapter/quota_automation_actor_resolver_adapter.go",
|
|
1723
|
+
"excluded": "Platform concrete module bindings",
|
|
1724
|
+
"source_sha256": "893bbb7339f8987ad330b3bb2155e8800aa8a3c105ea2ba663b0ea15483fe37b"
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"source": "backend/internal/common/bffadapter/quota_automation_actor_resolver_adapter_test.go",
|
|
1728
|
+
"excluded": "Platform concrete module bindings",
|
|
1729
|
+
"source_sha256": "72d3670c9f16b0789fd703061b038bc975110912feec0663e667d555ee52159b"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
"source": "backend/internal/common/bffadapter/routing_facts.go",
|
|
1733
|
+
"excluded": "Platform concrete module bindings",
|
|
1734
|
+
"source_sha256": "c5817b33e185ef129b8a93b2412bfb0ecc4633a785c315df344e51805b0ec83f"
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"source": "backend/internal/common/bffadapter/routing_facts_test.go",
|
|
1738
|
+
"excluded": "Platform concrete module bindings",
|
|
1739
|
+
"source_sha256": "6f41d72de329f2fa2c3f54e88fca3462b30e2b63239f195ac6ba0af978a15e26"
|
|
1740
|
+
},
|
|
1741
|
+
{
|
|
1742
|
+
"source": "backend/internal/common/bffadapter/runtime_lifecycle_runner.go",
|
|
1743
|
+
"excluded": "Platform concrete module bindings",
|
|
1744
|
+
"source_sha256": "402c42e26518e89aeb02d973b32a894763dd3263620b9766a7bc597a8063814b"
|
|
1745
|
+
},
|
|
1746
|
+
{
|
|
1747
|
+
"source": "backend/internal/common/bffadapter/runtime_profile_reference_adapter.go",
|
|
1748
|
+
"excluded": "Platform concrete module bindings",
|
|
1749
|
+
"source_sha256": "8f15c05ebbb5c0f93c8c0092e444d25aa7036561caae9f7b14bea253462d2fde"
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
"source": "backend/internal/common/bffadapter/runtime_profile_reference_adapter_test.go",
|
|
1753
|
+
"excluded": "Platform concrete module bindings",
|
|
1754
|
+
"source_sha256": "11870284e6a054ad2f2ac78fa11e76395ba5202459d4a0b8f48304a37bc3f8ae"
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"source": "backend/internal/common/bffadapter/runtime_profile_routing_reference_adapter.go",
|
|
1758
|
+
"excluded": "Platform concrete module bindings",
|
|
1759
|
+
"source_sha256": "ba74961809f17f40419e33695cf64db8a68899ee7623bfab6765b8ca082c8e30"
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
"source": "backend/internal/common/bffadapter/secret_broker_adapters.go",
|
|
1763
|
+
"excluded": "Platform concrete module bindings",
|
|
1764
|
+
"source_sha256": "d586177566a5043ff1fb94d1a83ac8199ec77eb4840c67bd593565a6221b49fe"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"source": "backend/internal/common/bffadapter/secret_broker_adapters_test.go",
|
|
1768
|
+
"excluded": "Platform concrete module bindings",
|
|
1769
|
+
"source_sha256": "3b03ec112df5051be72767cef05a6776f01f2ef4c3773b67599c85a0876f2bb5"
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
"source": "backend/internal/common/bffadapter/secret_broker_operation_context.go",
|
|
1773
|
+
"excluded": "Platform concrete module bindings",
|
|
1774
|
+
"source_sha256": "d589f8591904a67b1769e579301fb45b03de69a42bcaaa07dc91002c752014b6"
|
|
1775
|
+
},
|
|
1776
|
+
{
|
|
1777
|
+
"source": "backend/internal/common/bffadapter/secret_broker_operation_context_test.go",
|
|
1778
|
+
"excluded": "Platform concrete module bindings",
|
|
1779
|
+
"source_sha256": "9505aa5cfcab69c3033ff26fc1fdf0877f240177915e1d5b41038ab0b494c318"
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
"source": "backend/internal/common/bffadapter/secret_broker_policy_adapters.go",
|
|
1783
|
+
"excluded": "Platform concrete module bindings",
|
|
1784
|
+
"source_sha256": "9f2fd3771461c9636021d409cb936cef5e006931f3cac8e73c74dc22a7b17144"
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
"source": "backend/internal/common/bffadapter/secret_broker_policy_adapters_test.go",
|
|
1788
|
+
"excluded": "Platform concrete module bindings",
|
|
1789
|
+
"source_sha256": "47ca7613bd75c1d607cf96243a278482482ad445b1ffe0112edb8a30cb889795"
|
|
1790
|
+
},
|
|
1791
|
+
{
|
|
1792
|
+
"source": "backend/internal/common/bffadapter/secret_broker_provider.go",
|
|
1793
|
+
"excluded": "Platform concrete module bindings",
|
|
1794
|
+
"source_sha256": "476b2d95c3ce789576d92de1e12edd216cea8abdddf0f7b554c4636d78df5864"
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"source": "backend/internal/common/bffadapter/secret_exchange_iam_authorizer.go",
|
|
1798
|
+
"excluded": "Platform concrete module bindings",
|
|
1799
|
+
"source_sha256": "b28fbaf88618739fc2fed6bc69483a1c73b9d30e41fa5bf9301fb94832618848"
|
|
1800
|
+
},
|
|
1801
|
+
{
|
|
1802
|
+
"source": "backend/internal/common/bffadapter/secret_exchange_iam_authorizer_test.go",
|
|
1803
|
+
"excluded": "Platform concrete module bindings",
|
|
1804
|
+
"source_sha256": "a6a31fb1f96e18aa931b4f8bcf3be3b490a6ad8bcd9757c6b8596e5f2d231390"
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
"source": "backend/internal/common/bffadapter/sensitive_credential_containment_adapter.go",
|
|
1808
|
+
"excluded": "Platform concrete module bindings",
|
|
1809
|
+
"source_sha256": "d26cc9392e6b00c31731b5f85a60fef74b4ff7b89b8736c1aa17177715684fdc"
|
|
1810
|
+
},
|
|
1811
|
+
{
|
|
1812
|
+
"source": "backend/internal/common/bffadapter/service_credential_auth_adapter.go",
|
|
1813
|
+
"excluded": "Platform concrete module bindings",
|
|
1814
|
+
"source_sha256": "74b0150d367518c14e79ad091e6dc6e0485425b944e7a8c2b3c23ec4b37f5dc1"
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
"source": "backend/internal/common/bffadapter/storage_actor.go",
|
|
1818
|
+
"excluded": "Platform concrete module bindings",
|
|
1819
|
+
"source_sha256": "69061f59636ed4245113318bab26411526cfc87a4630c5bbffeaf58ded6bcad0"
|
|
1820
|
+
},
|
|
1821
|
+
{
|
|
1822
|
+
"source": "backend/internal/common/bffadapter/user_admin_reference_adapter.go",
|
|
1823
|
+
"excluded": "Platform concrete module bindings",
|
|
1824
|
+
"source_sha256": "13635e304225acc86265d57e0eae85252b404030eef62842ec2db8ae8bf0ed46"
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"source": "backend/internal/common/bffadapter/user_admin_reference_adapter_test.go",
|
|
1828
|
+
"excluded": "Platform concrete module bindings",
|
|
1829
|
+
"source_sha256": "5cef316169ebed7f3472a34f996be3d3aa0cd565c2d844c4f0d3140e138ebbe7"
|
|
1830
|
+
},
|
|
1831
|
+
{
|
|
1832
|
+
"source": "backend/internal/common/bffadapter/user_avatar_asset_adapter.go",
|
|
1833
|
+
"excluded": "Platform concrete module bindings",
|
|
1834
|
+
"source_sha256": "71a9ca6de61cbf6701d1d1ee7808b915382748877094f5714518269c44bd07ac"
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
"source": "backend/internal/common/bffadapter/viewer_adapters.go",
|
|
1838
|
+
"excluded": "Platform concrete module bindings",
|
|
1839
|
+
"source_sha256": "a87130b6d1fda6fa8c2c0029030b48db7f091b821195dc991946af0d4157a19e"
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"source": "backend/internal/common/bffadapter/websocket_identity_authenticator.go",
|
|
1843
|
+
"excluded": "Platform concrete module bindings",
|
|
1844
|
+
"source_sha256": "0c08f29508ba5a1d58b21347541ad39b52384f299a5488ecf94e5b855817d720"
|
|
1845
|
+
},
|
|
1846
|
+
{
|
|
1847
|
+
"source": "backend/internal/common/bffadapter/websocket_identity_authenticator_test.go",
|
|
1848
|
+
"excluded": "Platform concrete module bindings",
|
|
1849
|
+
"source_sha256": "8c99cc953b1bc39e530ab815be7a84c727569f83e7e1d194edb52fc31ac3111a"
|
|
1850
|
+
},
|
|
1851
|
+
{
|
|
1852
|
+
"source": "backend/internal/common/canonicaljson/canonical.go",
|
|
1853
|
+
"target": "internal/common/canonicaljson/canonical.go",
|
|
1854
|
+
"transformation": "module/import namespace only",
|
|
1855
|
+
"source_sha256": "0f4a517f2cd283f3668e50a885b136851c1ec7ad0a31b7bd40fa3f0e774cfb33",
|
|
1856
|
+
"target_template_sha256": "0f4a517f2cd283f3668e50a885b136851c1ec7ad0a31b7bd40fa3f0e774cfb33"
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"source": "backend/internal/common/canonicaljson/canonical_test.go",
|
|
1860
|
+
"target": "internal/common/canonicaljson/canonical_test.go",
|
|
1861
|
+
"transformation": "module/import namespace only",
|
|
1862
|
+
"source_sha256": "80ffbdfc2b6d99bab0f7b2b763675d358f17f86ba473e2e4709d49503a3d0da9",
|
|
1863
|
+
"target_template_sha256": "80ffbdfc2b6d99bab0f7b2b763675d358f17f86ba473e2e4709d49503a3d0da9"
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
"source": "backend/internal/common/checkoutbff/contracts.go",
|
|
1867
|
+
"target": "internal/common/checkoutbff/contracts.go",
|
|
1868
|
+
"transformation": "module/import namespace only",
|
|
1869
|
+
"source_sha256": "89921edfd7980b1db3dca3a64d6240315a72ebc4b00e40ac29d38f83f7d40226",
|
|
1870
|
+
"target_template_sha256": "89921edfd7980b1db3dca3a64d6240315a72ebc4b00e40ac29d38f83f7d40226"
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"source": "backend/internal/common/checkoutbff/platform_client.go",
|
|
1874
|
+
"target": "internal/common/checkoutbff/platform_client.go",
|
|
1875
|
+
"transformation": "module/import namespace only",
|
|
1876
|
+
"source_sha256": "1dd5f55190c6b50589c2a1a6a762e0a02f594ddc1407fb06b6288c5617636986",
|
|
1877
|
+
"target_template_sha256": "9c703f2ac14747c4338ade91cf19fd9173f300ff0af37560f49a803de1cb1bfa"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
"source": "backend/internal/common/checkoutbff/platform_client_test.go",
|
|
1881
|
+
"target": "internal/common/checkoutbff/platform_client_test.go",
|
|
1882
|
+
"transformation": "module/import namespace only",
|
|
1883
|
+
"source_sha256": "1303da097194aa698d65b278d934b24631ae7802e0f3b61f0d799bb994d41d70",
|
|
1884
|
+
"target_template_sha256": "5428407fade63361ef46dd20f6eec41defa8c88f150e9001c7985329799d0cdc"
|
|
1885
|
+
},
|
|
1886
|
+
{
|
|
1887
|
+
"source": "backend/internal/common/contentaccess/contentaccess.go",
|
|
1888
|
+
"target": "internal/common/contentaccess/contentaccess.go",
|
|
1889
|
+
"transformation": "module/import namespace only",
|
|
1890
|
+
"source_sha256": "42162f279aa83b7ba045a42e6cf40882fe5a8808465f9e4655a1f0cdfd6f1ccf",
|
|
1891
|
+
"target_template_sha256": "42162f279aa83b7ba045a42e6cf40882fe5a8808465f9e4655a1f0cdfd6f1ccf"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"source": "backend/internal/common/contracts/contact.go",
|
|
1895
|
+
"target": "internal/common/contracts/contact.go",
|
|
1896
|
+
"transformation": "module/import namespace only",
|
|
1897
|
+
"source_sha256": "65d31d52f076d18e3e38f8773492bbc6739902799724b6056b909e50620ccdd4",
|
|
1898
|
+
"target_template_sha256": "65d31d52f076d18e3e38f8773492bbc6739902799724b6056b909e50620ccdd4"
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
"source": "backend/internal/common/ctxutil/identity.go",
|
|
1902
|
+
"target": "internal/common/ctxutil/identity.go",
|
|
1903
|
+
"transformation": "module/import namespace only",
|
|
1904
|
+
"source_sha256": "8563b2b1e9c6eca59451620a59d465c3f7b25c0201cb562c525c59a98d2bf6ed",
|
|
1905
|
+
"target_template_sha256": "8563b2b1e9c6eca59451620a59d465c3f7b25c0201cb562c525c59a98d2bf6ed"
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
"source": "backend/internal/common/ctxutil/product.go",
|
|
1909
|
+
"target": "internal/common/ctxutil/product.go",
|
|
1910
|
+
"transformation": "module/import namespace only",
|
|
1911
|
+
"source_sha256": "6ad4e24517bac4dfa3b3b9f2e8a93fa18bce38484db2270ca0298eb6fc159ed0",
|
|
1912
|
+
"target_template_sha256": "ed200d0ddd1eb41db863435c76232bde9673645000637b9b6b4c12a813a9207b"
|
|
1913
|
+
},
|
|
1914
|
+
{
|
|
1915
|
+
"source": "backend/internal/common/enumdomain/payment.go",
|
|
1916
|
+
"target": "internal/common/enumdomain/payment.go",
|
|
1917
|
+
"transformation": "module/import namespace only",
|
|
1918
|
+
"source_sha256": "0f9380b99381be498a418a1f9dbaead558f8e7c3f4a74e09e21c49ff7df87e32",
|
|
1919
|
+
"target_template_sha256": "0f9380b99381be498a418a1f9dbaead558f8e7c3f4a74e09e21c49ff7df87e32"
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"source": "backend/internal/common/enums/billing_account_registry_contract_test.go",
|
|
1923
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
1924
|
+
"source_sha256": "9bab420977c0501102c9d76f79b24e0a6f1453bad5a668bc055b544cc70a262c"
|
|
1925
|
+
},
|
|
1926
|
+
{
|
|
1927
|
+
"source": "backend/internal/common/enums/dto_admin.go",
|
|
1928
|
+
"target": "internal/common/enums/dto_admin.go",
|
|
1929
|
+
"transformation": "module/import namespace only",
|
|
1930
|
+
"source_sha256": "600941e73febce17937a3cf5c1ca6461e24b945a4c5fd61f61a69c6cf4beb97a",
|
|
1931
|
+
"target_template_sha256": "600941e73febce17937a3cf5c1ca6461e24b945a4c5fd61f61a69c6cf4beb97a"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
"source": "backend/internal/common/enums/enum.go",
|
|
1935
|
+
"target": "internal/common/enums/enum.go",
|
|
1936
|
+
"transformation": "module/import namespace only",
|
|
1937
|
+
"source_sha256": "90ca870f241efac02387df4dd653e68a489a621716b28d3fb8a409a7f28ce98a",
|
|
1938
|
+
"target_template_sha256": "90ca870f241efac02387df4dd653e68a489a621716b28d3fb8a409a7f28ce98a"
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"source": "backend/internal/common/enums/enumdomain_contract_test.go",
|
|
1942
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
1943
|
+
"source_sha256": "e3dc3881542aa62a56db1bc867a8ba3cee0437da230353fb8101f839c0963ab9"
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
"source": "backend/internal/common/enums/handler_admin.go",
|
|
1947
|
+
"target": "internal/common/enums/handler_admin.go",
|
|
1948
|
+
"transformation": "module/import namespace only",
|
|
1949
|
+
"source_sha256": "bb716ff71f4739dc970efdb608f06403bd1396db726aed889f4ba1d4c7975d22",
|
|
1950
|
+
"target_template_sha256": "9d72f38815da9cce637bd681fcf2800a6d88d04129ca6326d8b5826862d4ad9a"
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"source": "backend/internal/common/enums/module.go",
|
|
1954
|
+
"target": "internal/common/enums/module.go",
|
|
1955
|
+
"transformation": "module/import namespace only",
|
|
1956
|
+
"source_sha256": "440dd8dc7047ad3b5b079f66c4e98cd2aea189b67b332a205279793790b60ec3",
|
|
1957
|
+
"target_template_sha256": "17a1d209ab10a870fd458282d857cb5b5fb2630d2c2faf7f44154506bf15efed"
|
|
1958
|
+
},
|
|
1959
|
+
{
|
|
1960
|
+
"source": "backend/internal/common/enums/order_cancel_reason_test.go",
|
|
1961
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
1962
|
+
"source_sha256": "85245266cb0b37fe1aabba7d396055445dd8b59ad648a15061c8fa425d77d86a"
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
"source": "backend/internal/common/enums/provider.go",
|
|
1966
|
+
"target": "internal/common/enums/provider.go",
|
|
1967
|
+
"transformation": "module/import namespace only",
|
|
1968
|
+
"source_sha256": "46c468ef9d3b3ff901daf16fb9a024d5f74b36104a51ec5cac7c924863843f39",
|
|
1969
|
+
"target_template_sha256": "46c468ef9d3b3ff901daf16fb9a024d5f74b36104a51ec5cac7c924863843f39"
|
|
1970
|
+
},
|
|
1971
|
+
{
|
|
1972
|
+
"source": "backend/internal/common/enums/register.go",
|
|
1973
|
+
"target": "internal/common/enums/register.go",
|
|
1974
|
+
"transformation": "source-adapted",
|
|
1975
|
+
"details": "Registers all six core/common owned enum sets; concrete platform registrations remain at source.",
|
|
1976
|
+
"source_sha256": "a407c96934ef81633d1705af9fc2436f405435e8aca58106ebf772c8d33c064d",
|
|
1977
|
+
"target_template_sha256": "080fdcaa059f59e9e523b4de04e7c71aeb24ea8f6c1275a58c169241b12c3195"
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"source": "backend/internal/common/enums/register_accesspolicy.go",
|
|
1981
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
1982
|
+
"source_sha256": "e22da2202e71d774ec80fbb2fcc17e06759049a5648ea99920053182c853e5e0"
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
"source": "backend/internal/common/enums/register_admin_experience.go",
|
|
1986
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
1987
|
+
"source_sha256": "b6046b58f735bbdb6a3c583cc98f42300bd5684073684ba70eeda9b967e6f4a5"
|
|
1988
|
+
},
|
|
1989
|
+
{
|
|
1990
|
+
"source": "backend/internal/common/enums/register_ai.go",
|
|
1991
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
1992
|
+
"source_sha256": "33bf7f34d206ee6ac7d552c6504f8f6c87a970a6467648cc4aa099f7b47186db"
|
|
1993
|
+
},
|
|
1994
|
+
{
|
|
1995
|
+
"source": "backend/internal/common/enums/register_alerting.go",
|
|
1996
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
1997
|
+
"source_sha256": "2257ad16fd8a7cd701ac791ed8265d3789ec5f58e1171c76f60c2bbce32eeb80"
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"source": "backend/internal/common/enums/register_api_contract.go",
|
|
2001
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2002
|
+
"source_sha256": "8253f7b4f0631dcfa86fbd688c012ef388510c24ec1c5ab02520bcb555cce515"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"source": "backend/internal/common/enums/register_api_contract_test.go",
|
|
2006
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2007
|
+
"source_sha256": "4c5adaeffbaf4dfa97dedc61f6b1b8b4e35c024a1da554b36de67304bea43fe2"
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
"source": "backend/internal/common/enums/register_apikey.go",
|
|
2011
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2012
|
+
"source_sha256": "4a9d26b7581697884b2a2122933acb25e8575236b0bdbb741af3a89933cc4a81"
|
|
2013
|
+
},
|
|
2014
|
+
{
|
|
2015
|
+
"source": "backend/internal/common/enums/register_appversion.go",
|
|
2016
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2017
|
+
"source_sha256": "4e8869c278496cabdb9a54752ad18e02d713649fac86e44a4481d3a2505f0584"
|
|
2018
|
+
},
|
|
2019
|
+
{
|
|
2020
|
+
"source": "backend/internal/common/enums/register_audit.go",
|
|
2021
|
+
"target": "internal/common/enums/register_audit.go",
|
|
2022
|
+
"transformation": "module/import namespace only",
|
|
2023
|
+
"source_sha256": "ec39cfd62affaccb48c3c5cab8f1f855276dd56d644188552a3bfa7a80f0f321",
|
|
2024
|
+
"target_template_sha256": "ad6dabd43699ee3e52cfd0b5f97d86d73b98d90ae0eddbb9eee15130e1bc57cd"
|
|
2025
|
+
},
|
|
2026
|
+
{
|
|
2027
|
+
"source": "backend/internal/common/enums/register_benefit_upgrade.go",
|
|
2028
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2029
|
+
"source_sha256": "97dd4752cf3ceb2f9d0f687e8380d0c0f96a1564fe8f6ec89614ca51b2a318cf"
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"source": "backend/internal/common/enums/register_billing_account.go",
|
|
2033
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2034
|
+
"source_sha256": "23a2b58175762d21e4eb1d817416ae162f577cdaea50755a3f797bcab3a67a91"
|
|
2035
|
+
},
|
|
2036
|
+
{
|
|
2037
|
+
"source": "backend/internal/common/enums/register_budget.go",
|
|
2038
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2039
|
+
"source_sha256": "393042e3e503347df8fbd16c69531070ed32ad16420acea4bce296c0425a6552"
|
|
2040
|
+
},
|
|
2041
|
+
{
|
|
2042
|
+
"source": "backend/internal/common/enums/register_campaign.go",
|
|
2043
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2044
|
+
"source_sha256": "478fd06318db55ce0c3193bf2354d241ea47854b89ba76bfda85ac689143e1a2"
|
|
2045
|
+
},
|
|
2046
|
+
{
|
|
2047
|
+
"source": "backend/internal/common/enums/register_catalog.go",
|
|
2048
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2049
|
+
"source_sha256": "745570fd8b8b9c75449f4faea126807818aaf6706ca0268da42575e3c53279ec"
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"source": "backend/internal/common/enums/register_checkout.go",
|
|
2053
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2054
|
+
"source_sha256": "d41bfc8a9dd880685c41110fe542f58be0785290f39f2a0758e61938157d001f"
|
|
2055
|
+
},
|
|
2056
|
+
{
|
|
2057
|
+
"source": "backend/internal/common/enums/register_checkout_session.go",
|
|
2058
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2059
|
+
"source_sha256": "709079ff93de395f4ece0a16187a66adf5a7f7ed1312b782486f1b5debfa0605"
|
|
2060
|
+
},
|
|
2061
|
+
{
|
|
2062
|
+
"source": "backend/internal/common/enums/register_checkout_test.go",
|
|
2063
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2064
|
+
"source_sha256": "ae22d74c0f40e1a574d3d335bbb11016a551270b7109ca26d4610d544c8119c9"
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
"source": "backend/internal/common/enums/register_command_replay.go",
|
|
2068
|
+
"target": "internal/common/enums/register_command_replay.go",
|
|
2069
|
+
"transformation": "module/import namespace only",
|
|
2070
|
+
"source_sha256": "69e2750d8044eb4e01bd44910f1f560199d73ed488cb41e4c15960f2fb423377",
|
|
2071
|
+
"target_template_sha256": "f3022cd7c96bd446457cad2a3ef0c6c5caac1f6c7b7f54843c19c9f0907da3fe"
|
|
2072
|
+
},
|
|
2073
|
+
{
|
|
2074
|
+
"source": "backend/internal/common/enums/register_commerce.go",
|
|
2075
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2076
|
+
"source_sha256": "322cde36a22f3770e723549f98be8dfe2083496eede22e7487d3461d5e78c428"
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
"source": "backend/internal/common/enums/register_communication.go",
|
|
2080
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2081
|
+
"source_sha256": "f5a35c10fd283a5304ad50946f13dd6cbc7f516b9b3a514a0f2ded18c13d310d"
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
"source": "backend/internal/common/enums/register_config.go",
|
|
2085
|
+
"target": "internal/common/enums/register_config.go",
|
|
2086
|
+
"transformation": "module/import namespace only",
|
|
2087
|
+
"source_sha256": "0221cae3ff90f1d8d0b027ffc646974b45dbc769c6d348ab2a6c4f5275cd57c3",
|
|
2088
|
+
"target_template_sha256": "edb0c9c03753c0de23df5663d63b15debb15b68c2a4e652997d7fe2cd0288ccf"
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
"source": "backend/internal/common/enums/register_contact.go",
|
|
2092
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2093
|
+
"source_sha256": "7cef7966ed61469d23a311afeeb0936d1d2890d0cc400143e792362802bb1d79"
|
|
2094
|
+
},
|
|
2095
|
+
{
|
|
2096
|
+
"source": "backend/internal/common/enums/register_content.go",
|
|
2097
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2098
|
+
"source_sha256": "9588a30bf309fee4661e9d013a4386df303305a5e20d40276c4fffcb395190ef"
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
"source": "backend/internal/common/enums/register_content_contract_test.go",
|
|
2102
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2103
|
+
"source_sha256": "5c8cf3bdac336a56b636aeba79a927770ed1112f21a84c3228ed0bb3e491f450"
|
|
2104
|
+
},
|
|
2105
|
+
{
|
|
2106
|
+
"source": "backend/internal/common/enums/register_conversation.go",
|
|
2107
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2108
|
+
"source_sha256": "02d4a8e2078b1c087038433eadce1d51bf671b402b9fa15462c33fd2e1807def"
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
"source": "backend/internal/common/enums/register_credit.go",
|
|
2112
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2113
|
+
"source_sha256": "5a6a66a0dfac0314d8f9cb65791594a1bf996082c00346b4714302bc7dab953c"
|
|
2114
|
+
},
|
|
2115
|
+
{
|
|
2116
|
+
"source": "backend/internal/common/enums/register_credit_top_up_offer.go",
|
|
2117
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2118
|
+
"source_sha256": "db9cfe29360721edaadd8aceff44b206bdcabfe80cc2d68838d88812201e67ec"
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"source": "backend/internal/common/enums/register_discovery.go",
|
|
2122
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2123
|
+
"source_sha256": "d2d4677827d2774469322e0602a567e4a7ac9058e890df60df276ff4607b7ad2"
|
|
2124
|
+
},
|
|
2125
|
+
{
|
|
2126
|
+
"source": "backend/internal/common/enums/register_export.go",
|
|
2127
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2128
|
+
"source_sha256": "22af63e4887c0f99de17ad09e42a12aa83fc2d178cdefef77f9a00ad83e22445"
|
|
2129
|
+
},
|
|
2130
|
+
{
|
|
2131
|
+
"source": "backend/internal/common/enums/register_featureflag.go",
|
|
2132
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2133
|
+
"source_sha256": "e9f51f51b410e1d2328b717b1fdacb72cce20b77839db1377a9010add99cbc13"
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
"source": "backend/internal/common/enums/register_fulfillment.go",
|
|
2137
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2138
|
+
"source_sha256": "208bf55fa512b83c5fe0e074f73deab36d79b6908c15198d8b51379c28fdc73b"
|
|
2139
|
+
},
|
|
2140
|
+
{
|
|
2141
|
+
"source": "backend/internal/common/enums/register_gateway.go",
|
|
2142
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2143
|
+
"source_sha256": "3b8ba4769a94652cf055407ff172b2ed3c89f829d10c0398d74b07d13911a1e1"
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
"source": "backend/internal/common/enums/register_helpdesk.go",
|
|
2147
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2148
|
+
"source_sha256": "5152c756ab6d3b4b5795f7e3e3f4564d17739349e914f98ba8159350b4727aef"
|
|
2149
|
+
},
|
|
2150
|
+
{
|
|
2151
|
+
"source": "backend/internal/common/enums/register_iam.go",
|
|
2152
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2153
|
+
"source_sha256": "731fdacce858c756d2daa0dc950d72d093f7c52ec58ff438657499ce53f87e8f"
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
"source": "backend/internal/common/enums/register_identity.go",
|
|
2157
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2158
|
+
"source_sha256": "217479d1c333ca118036e1c24fdbee0c933d41b22026815d32a2127f0f183b50"
|
|
2159
|
+
},
|
|
2160
|
+
{
|
|
2161
|
+
"source": "backend/internal/common/enums/register_insights.go",
|
|
2162
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2163
|
+
"source_sha256": "71db9e0fa6452fed4e27e6b68aacd964426879087ef739d1989dbd70ce534e5f"
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"source": "backend/internal/common/enums/register_integration_event.go",
|
|
2167
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2168
|
+
"source_sha256": "34b64d3b3e59268967bde4ec3dfd4ce538e76b0ac2c6c4a3d8601c46663baeea"
|
|
2169
|
+
},
|
|
2170
|
+
{
|
|
2171
|
+
"source": "backend/internal/common/enums/register_kol.go",
|
|
2172
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2173
|
+
"source_sha256": "03f2053d26b0b2940bd78ef7661a9f2b68080c0ade7f20d563ddeefd7d9aabb6"
|
|
2174
|
+
},
|
|
2175
|
+
{
|
|
2176
|
+
"source": "backend/internal/common/enums/register_locale.go",
|
|
2177
|
+
"target": "internal/common/enums/register_locale.go",
|
|
2178
|
+
"transformation": "module/import namespace only",
|
|
2179
|
+
"source_sha256": "3334a68915c6a6c10b5ff1e36bc523e4111a962b451779165cfb70c0e6e4837d",
|
|
2180
|
+
"target_template_sha256": "1210020d94c87af0a78146a6f782352a87d25a9581514d6f8c413f64e6c62f98"
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
"source": "backend/internal/common/enums/register_mailbox.go",
|
|
2184
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2185
|
+
"source_sha256": "d6ed59fc8ed5d5be2df1c353c4d78b9348c598107e8f567bf4aa55fc995b6ad3"
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
"source": "backend/internal/common/enums/register_marketing.go",
|
|
2189
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2190
|
+
"source_sha256": "c7cc274e13e27f27588a2e90887e2c822a71d77dc92ff3fe3f83deb9bc63caba"
|
|
2191
|
+
},
|
|
2192
|
+
{
|
|
2193
|
+
"source": "backend/internal/common/enums/register_media.go",
|
|
2194
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2195
|
+
"source_sha256": "24b8794c1992803c6b61f3f7ec329a47c728e08b4c1a65f7217c9294acf32b73"
|
|
2196
|
+
},
|
|
2197
|
+
{
|
|
2198
|
+
"source": "backend/internal/common/enums/register_mediagen.go",
|
|
2199
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2200
|
+
"source_sha256": "82554ea2eda7e4285c7bbc048034f1ce535995ce68c805a5cb13e584c35f4392"
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
"source": "backend/internal/common/enums/register_member.go",
|
|
2204
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2205
|
+
"source_sha256": "1095c3e5bbd78a523acb8539bac123d7cfc82fe1db5b905698088539407f387d"
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"source": "backend/internal/common/enums/register_moderation.go",
|
|
2209
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2210
|
+
"source_sha256": "d29cb66f21707f04e304ea222eb90300bc073ee44ceb103c90bc5d6b14bd4372"
|
|
2211
|
+
},
|
|
2212
|
+
{
|
|
2213
|
+
"source": "backend/internal/common/enums/register_notification_extra.go",
|
|
2214
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2215
|
+
"source_sha256": "41eb70f937e7061a3aa977d2beac40329f14041e4f820e8c3634b88e210594ae"
|
|
2216
|
+
},
|
|
2217
|
+
{
|
|
2218
|
+
"source": "backend/internal/common/enums/register_ops.go",
|
|
2219
|
+
"target": "internal/common/enums/register_ops.go",
|
|
2220
|
+
"transformation": "module/import namespace only",
|
|
2221
|
+
"source_sha256": "c1aa55c7e6645a4c3505f5a02b8026516708105524745edf85cb8ff048b8e310",
|
|
2222
|
+
"target_template_sha256": "d2ae85f9acb3c5daa42ef5cd6afe1e5d54fb5d67bcc323b5b6b84b62320afe86"
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
"source": "backend/internal/common/enums/register_organization.go",
|
|
2226
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2227
|
+
"source_sha256": "13189b7e9cab2f3cc903633c1d0d8979cd96a883eaaa5f1bd585996f801c1587"
|
|
2228
|
+
},
|
|
2229
|
+
{
|
|
2230
|
+
"source": "backend/internal/common/enums/register_outbox.go",
|
|
2231
|
+
"target": "internal/common/enums/register_outbox.go",
|
|
2232
|
+
"transformation": "module/import namespace only",
|
|
2233
|
+
"source_sha256": "d3f008137218d0265bfc64bd26148f5b0b32975da71a5176e69d01e804767471",
|
|
2234
|
+
"target_template_sha256": "e0236ab8ae498c69d49949fba1ca645cd9036ba9597edf3feb92d5f5294cb1b8"
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
"source": "backend/internal/common/enums/register_pricing.go",
|
|
2238
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2239
|
+
"source_sha256": "dbb8eabd3cd792e7fdf2a3242fe13838a7779a6d18a15792b113e04ade8a4779"
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"source": "backend/internal/common/enums/register_product.go",
|
|
2243
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2244
|
+
"source_sha256": "d200d11002cd37375e0aff2e7eaba5a29a02a85be4330e0b1b3e62a80def5127"
|
|
2245
|
+
},
|
|
2246
|
+
{
|
|
2247
|
+
"source": "backend/internal/common/enums/register_product_test.go",
|
|
2248
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2249
|
+
"source_sha256": "6c078cba22b79262a97af0d8494eb994f95f0c0eee3b6e3f7595091aeec272fa"
|
|
2250
|
+
},
|
|
2251
|
+
{
|
|
2252
|
+
"source": "backend/internal/common/enums/register_promotion.go",
|
|
2253
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2254
|
+
"source_sha256": "264407d5b62d2f75ac85f474c7f136aa9e6bf54516066bac3c7d6a85bf08263e"
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
"source": "backend/internal/common/enums/register_quota.go",
|
|
2258
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2259
|
+
"source_sha256": "6a96e7ba2dfe535282f82382b2639dddaa854d84d1b0983476132124c871b07c"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"source": "backend/internal/common/enums/register_quota_test.go",
|
|
2263
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2264
|
+
"source_sha256": "38cea63da03b492e75f3a9eb82c6504362b47eae1ff109d9fa4550983589106a"
|
|
2265
|
+
},
|
|
2266
|
+
{
|
|
2267
|
+
"source": "backend/internal/common/enums/register_routing.go",
|
|
2268
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2269
|
+
"source_sha256": "d847f2e70fc3db23b3043afe7ff6d68329bf02b07b42f0b9b548d2a7a0c734c8"
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
"source": "backend/internal/common/enums/register_rule_expression.go",
|
|
2273
|
+
"target": "internal/common/enums/register_rule_expression.go",
|
|
2274
|
+
"transformation": "module/import namespace only",
|
|
2275
|
+
"source_sha256": "64ad116bbd942ab320d661e3beef674add46c09445ea949cd4f763c9f8791079",
|
|
2276
|
+
"target_template_sha256": "d117853d7c4a5d6e0ed5d277c1f524fd2ae470eed64fdc39200c4529e547251a"
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
"source": "backend/internal/common/enums/register_secret.go",
|
|
2280
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2281
|
+
"source_sha256": "3a96b0021b749179eb42c9b37728ccc041f4b10af1a2ac7db3e7c5c5aaf51800"
|
|
2282
|
+
},
|
|
2283
|
+
{
|
|
2284
|
+
"source": "backend/internal/common/enums/register_secret_test.go",
|
|
2285
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2286
|
+
"source_sha256": "0ff3fea0c4a7f2655b4c37ef2d9fffbe7077ca68b8162cbbcde2f394e9747074"
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"source": "backend/internal/common/enums/register_shipment.go",
|
|
2290
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2291
|
+
"source_sha256": "f0acaca3dcbcd1a5c0ed53661a28bb4a7252a7fbc6def1b41e9a0997c3662b3b"
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
"source": "backend/internal/common/enums/register_storage.go",
|
|
2295
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2296
|
+
"source_sha256": "8b6d157afb5a1866f0556dae9137d858dc327ec84d3072419daff5e55cbf1367"
|
|
2297
|
+
},
|
|
2298
|
+
{
|
|
2299
|
+
"source": "backend/internal/common/enums/register_subscription_extra.go",
|
|
2300
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2301
|
+
"source_sha256": "490760ec2675f60c4e57af49f82e66805ca0f355cfb3040e1ecd8f64bc786061"
|
|
2302
|
+
},
|
|
2303
|
+
{
|
|
2304
|
+
"source": "backend/internal/common/enums/register_tenant.go",
|
|
2305
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2306
|
+
"source_sha256": "fcf6800cc4ac3a5c1eaa9e94e0f8c93e1edb610878c17d19207823a9317bfaf0"
|
|
2307
|
+
},
|
|
2308
|
+
{
|
|
2309
|
+
"source": "backend/internal/common/enums/register_trade_extra.go",
|
|
2310
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2311
|
+
"source_sha256": "64a2d8a03a230a5275c79284f829f948f19205478bfe35bd837f019de64528b4"
|
|
2312
|
+
},
|
|
2313
|
+
{
|
|
2314
|
+
"source": "backend/internal/common/enums/register_user.go",
|
|
2315
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2316
|
+
"source_sha256": "77f1c4d806657c19b7e26bf05749aabe7549aab548ebb1fd4350879443eb3ed2"
|
|
2317
|
+
},
|
|
2318
|
+
{
|
|
2319
|
+
"source": "backend/internal/common/enums/register_viewer.go",
|
|
2320
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2321
|
+
"source_sha256": "ff498cbc79918b7f91387a39aa66f6cf8a7696c1dded674aae02ee8b182ae31c"
|
|
2322
|
+
},
|
|
2323
|
+
{
|
|
2324
|
+
"source": "backend/internal/common/enums/register_webhook.go",
|
|
2325
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2326
|
+
"source_sha256": "fc901967647ad89d19ab4c8e635b6f250a8ae510ac9914e3c2ceb905e495b012"
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"source": "backend/internal/common/enums/registry.go",
|
|
2330
|
+
"target": "internal/common/enums/registry.go",
|
|
2331
|
+
"transformation": "module/import namespace only",
|
|
2332
|
+
"source_sha256": "6e4f48640fb35ed9b489aca96f5d843d9aa4c648f0e5fd524494dff102c2ba93",
|
|
2333
|
+
"target_template_sha256": "6e4f48640fb35ed9b489aca96f5d843d9aa4c648f0e5fd524494dff102c2ba93"
|
|
2334
|
+
},
|
|
2335
|
+
{
|
|
2336
|
+
"source": "backend/internal/common/enums/registry_completeness_test.go",
|
|
2337
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2338
|
+
"source_sha256": "0ad0ad709820e8dce9c61a2f2b0a30c7c7cfcd80e778ca621347f01b6a0b201c"
|
|
2339
|
+
},
|
|
2340
|
+
{
|
|
2341
|
+
"source": "backend/internal/common/enums/registry_contract_values_test.go",
|
|
2342
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2343
|
+
"source_sha256": "75a4125c45e422916f20a68c2395c737bf0dab7aeab63afcb971b410ea0fca08"
|
|
2344
|
+
},
|
|
2345
|
+
{
|
|
2346
|
+
"source": "backend/internal/common/enums/registry_enum_contract_test.go",
|
|
2347
|
+
"excluded": "Platform enum bindings/integration tests",
|
|
2348
|
+
"source_sha256": "93f25afda383d6fcf4d1c0561b4ce4721295e68d59519c8fa0bbc1822953f95d"
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
"source": "backend/internal/common/httporigin/origin.go",
|
|
2352
|
+
"target": "internal/common/httporigin/origin.go",
|
|
2353
|
+
"transformation": "module/import namespace only",
|
|
2354
|
+
"source_sha256": "423d16661db8a265deaf1c24cb53ae1ac9aa469029341b666569e5e1e30e5842",
|
|
2355
|
+
"target_template_sha256": "423d16661db8a265deaf1c24cb53ae1ac9aa469029341b666569e5e1e30e5842"
|
|
2356
|
+
},
|
|
2357
|
+
{
|
|
2358
|
+
"source": "backend/internal/common/httporigin/origin_test.go",
|
|
2359
|
+
"target": "internal/common/httporigin/origin_test.go",
|
|
2360
|
+
"transformation": "module/import namespace only",
|
|
2361
|
+
"source_sha256": "a739e6e9987cbddce5c874f6b49c64737cde8128399998bd2047d7544619c8f6",
|
|
2362
|
+
"target_template_sha256": "a739e6e9987cbddce5c874f6b49c64737cde8128399998bd2047d7544619c8f6"
|
|
2363
|
+
},
|
|
2364
|
+
{
|
|
2365
|
+
"source": "backend/internal/common/iamcredential/plaintext.go",
|
|
2366
|
+
"target": "internal/common/iamcredential/plaintext.go",
|
|
2367
|
+
"transformation": "module/import namespace only",
|
|
2368
|
+
"source_sha256": "be5da716c7dddb6723212586cbe19c8dd5579eba4584e2211080f75672b81982",
|
|
2369
|
+
"target_template_sha256": "be5da716c7dddb6723212586cbe19c8dd5579eba4584e2211080f75672b81982"
|
|
2370
|
+
},
|
|
2371
|
+
{
|
|
2372
|
+
"source": "backend/internal/common/iamcredential/plaintext_test.go",
|
|
2373
|
+
"target": "internal/common/iamcredential/plaintext_test.go",
|
|
2374
|
+
"transformation": "module/import namespace only",
|
|
2375
|
+
"source_sha256": "35a887daa1ed3c268548352d65bf208d18762f701910c046624e34d63d625e07",
|
|
2376
|
+
"target_template_sha256": "35a887daa1ed3c268548352d65bf208d18762f701910c046624e34d63d625e07"
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
"source": "backend/internal/common/iamscope/scope.go",
|
|
2380
|
+
"target": "internal/common/iamscope/scope.go",
|
|
2381
|
+
"transformation": "module/import namespace only",
|
|
2382
|
+
"source_sha256": "ff5d7fb3ed7d37e1f514d1eae34456026eb4fe3938f23c0c05823da66a9d5060",
|
|
2383
|
+
"target_template_sha256": "ff5d7fb3ed7d37e1f514d1eae34456026eb4fe3938f23c0c05823da66a9d5060"
|
|
2384
|
+
},
|
|
2385
|
+
{
|
|
2386
|
+
"source": "backend/internal/common/iamscope/scope_binding.go",
|
|
2387
|
+
"target": "internal/common/iamscope/scope_binding.go",
|
|
2388
|
+
"transformation": "module/import namespace only",
|
|
2389
|
+
"source_sha256": "0f94dbb49e1bfd3f01e4a06fb8a4c45fbd074f23ec1ebc529991fa222f938c0f",
|
|
2390
|
+
"target_template_sha256": "0f94dbb49e1bfd3f01e4a06fb8a4c45fbd074f23ec1ebc529991fa222f938c0f"
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
"source": "backend/internal/common/iamscope/scope_filter.go",
|
|
2394
|
+
"target": "internal/common/iamscope/scope_filter.go",
|
|
2395
|
+
"transformation": "module/import namespace only",
|
|
2396
|
+
"source_sha256": "0f4e41c6c3b6a92730ec07b2fd470936740cc70ae1141782ca1db8b4380574c0",
|
|
2397
|
+
"target_template_sha256": "0f4e41c6c3b6a92730ec07b2fd470936740cc70ae1141782ca1db8b4380574c0"
|
|
2398
|
+
},
|
|
2399
|
+
{
|
|
2400
|
+
"source": "backend/internal/common/iamscope/scope_filter_test.go",
|
|
2401
|
+
"target": "internal/common/iamscope/scope_filter_test.go",
|
|
2402
|
+
"transformation": "module/import namespace only",
|
|
2403
|
+
"source_sha256": "512b412c3be3217b1226a26b087a7d804a10f65aa6198b4da5c9b2ec9507ccaa",
|
|
2404
|
+
"target_template_sha256": "512b412c3be3217b1226a26b087a7d804a10f65aa6198b4da5c9b2ec9507ccaa"
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
"source": "backend/internal/common/internalapi/authorization_details.go",
|
|
2408
|
+
"target": "internal/common/internalapi/authorization_details.go",
|
|
2409
|
+
"transformation": "module/import namespace only",
|
|
2410
|
+
"source_sha256": "20014eb92e94767d467dd943691b3bf554b68d25d852044545a8d246738e0771",
|
|
2411
|
+
"target_template_sha256": "20014eb92e94767d467dd943691b3bf554b68d25d852044545a8d246738e0771"
|
|
2412
|
+
},
|
|
2413
|
+
{
|
|
2414
|
+
"source": "backend/internal/common/internalapi/route_permission_policies.go",
|
|
2415
|
+
"target": "internal/common/internalapi/route_permission_policies.go",
|
|
2416
|
+
"transformation": "module/import namespace only",
|
|
2417
|
+
"source_sha256": "129309f7f07aca62e781c7b63c4e2340723f532b6a90ec8096c00417ed6f4aaf",
|
|
2418
|
+
"target_template_sha256": "20052cc3355b0ea46f3c7b26f1fc9e20969036b8cf40165d6d68ee880041b58a"
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
"source": "backend/internal/common/internalapi/route_permission_policies_test.go",
|
|
2422
|
+
"target": "internal/common/internalapi/route_permission_policies_test.go",
|
|
2423
|
+
"transformation": "module/import namespace only",
|
|
2424
|
+
"source_sha256": "b4062b8a90f6603d0fe1ca23bee73bb072aebcbdf64963ef676cf77f5f68d5aa",
|
|
2425
|
+
"target_template_sha256": "3dc15de1247b88dd7652faa82070a530ff121d3233d38e1ec03f28b2de9fcd6e"
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
"source": "backend/internal/common/internalservice/audience_token_source.go",
|
|
2429
|
+
"target": "internal/common/internalservice/audience_token_source.go",
|
|
2430
|
+
"transformation": "module/import namespace only",
|
|
2431
|
+
"source_sha256": "695d117aa36c007aea829e3c6ab3fbc7279a2d9b0ceaa253aa65f1258a801883",
|
|
2432
|
+
"target_template_sha256": "695d117aa36c007aea829e3c6ab3fbc7279a2d9b0ceaa253aa65f1258a801883"
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
"source": "backend/internal/common/internalservice/bootstrap_token_exchanger.go",
|
|
2436
|
+
"target": "internal/common/internalservice/bootstrap_token_exchanger.go",
|
|
2437
|
+
"transformation": "module/import namespace only",
|
|
2438
|
+
"source_sha256": "75c893f5a833cd41cfa8ff5098d74fd0bdd04f92a7b0c0790da5afef6d339768",
|
|
2439
|
+
"target_template_sha256": "64a68417c66164ca21ebdd66729ece28b22ff601bfff9ac18ee546a0738897d8"
|
|
2440
|
+
},
|
|
2441
|
+
{
|
|
2442
|
+
"source": "backend/internal/common/internalservice/bound_service_token_signer.go",
|
|
2443
|
+
"target": "internal/common/internalservice/bound_service_token_signer.go",
|
|
2444
|
+
"transformation": "module/import namespace only",
|
|
2445
|
+
"source_sha256": "c09fa25bbf95c789283144a1c2617138e17a2acb8eaa85108bdece6d12f03fa3",
|
|
2446
|
+
"target_template_sha256": "ae0c41d2a1198815ab3031154d5c937ca3cfe23cf038833d8043067506cbf324"
|
|
2447
|
+
},
|
|
2448
|
+
{
|
|
2449
|
+
"source": "backend/internal/common/internalservice/delegated_access_token_exchanger.go",
|
|
2450
|
+
"target": "internal/common/internalservice/delegated_access_token_exchanger.go",
|
|
2451
|
+
"transformation": "module/import namespace only",
|
|
2452
|
+
"source_sha256": "47ad022c5b65aaa00330f74fb0c161256977be01af61acc633c06bdb2720b958",
|
|
2453
|
+
"target_template_sha256": "ffc9020bfc92ffa7871258be7b9fb88e204482136231f5fd1a4c7a630cd1ff79"
|
|
2454
|
+
},
|
|
2455
|
+
{
|
|
2456
|
+
"source": "backend/internal/common/internalservice/delegated_access_token_exchanger_test.go",
|
|
2457
|
+
"target": "internal/common/internalservice/delegated_access_token_exchanger_test.go",
|
|
2458
|
+
"transformation": "module/import namespace only",
|
|
2459
|
+
"source_sha256": "98635126c633386ba87af8293ea65f46d345550201cb4f52e96928617bb93aea",
|
|
2460
|
+
"target_template_sha256": "f97aeadc626f9d36ee399496f72b6a77a332dc9a22c24801f5a3cac0afcefd60"
|
|
2461
|
+
},
|
|
2462
|
+
{
|
|
2463
|
+
"source": "backend/internal/common/internalservice/product_scoped_service_token_signer.go",
|
|
2464
|
+
"target": "internal/common/internalservice/product_scoped_service_token_signer.go",
|
|
2465
|
+
"transformation": "module/import namespace only",
|
|
2466
|
+
"source_sha256": "94eb9d595892739621aed1298899e692cee5e9cad4e68baed37ab30bb72ba750",
|
|
2467
|
+
"target_template_sha256": "94eb9d595892739621aed1298899e692cee5e9cad4e68baed37ab30bb72ba750"
|
|
2468
|
+
},
|
|
2469
|
+
{
|
|
2470
|
+
"source": "backend/internal/common/internalservice/provider.go",
|
|
2471
|
+
"target": "internal/common/internalservice/provider.go",
|
|
2472
|
+
"transformation": "module/import namespace only",
|
|
2473
|
+
"source_sha256": "88fd93c25921405aab5725ca923ca1e7541b86f9616622a804f3a65f8aa3a574",
|
|
2474
|
+
"target_template_sha256": "88fd93c25921405aab5725ca923ca1e7541b86f9616622a804f3a65f8aa3a574"
|
|
2475
|
+
},
|
|
2476
|
+
{
|
|
2477
|
+
"source": "backend/internal/common/internalservice/request_signer.go",
|
|
2478
|
+
"target": "internal/common/internalservice/request_signer.go",
|
|
2479
|
+
"transformation": "module/import namespace only",
|
|
2480
|
+
"source_sha256": "011d248f4d7efc175ea8d5b87e8f6fa0177f9e8b082f379870deba9da1a1cffb",
|
|
2481
|
+
"target_template_sha256": "afde06c5e233c2d3bf5a3fe2d1c665222379d260ede572b23930368d9a5d36b0"
|
|
2482
|
+
},
|
|
2483
|
+
{
|
|
2484
|
+
"source": "backend/internal/common/internalservice/resolver.go",
|
|
2485
|
+
"target": "internal/common/internalservice/resolver.go",
|
|
2486
|
+
"transformation": "module/import namespace only",
|
|
2487
|
+
"source_sha256": "1aea6cba9d98e9fd87a82f04010740c3ae9ef583d932770470a030bbbdfde5db",
|
|
2488
|
+
"target_template_sha256": "29e1c69f503c590ebb3b02cab9a4a156545f4b3a5b53970f83a39a7ac5645ac0"
|
|
2489
|
+
},
|
|
2490
|
+
{
|
|
2491
|
+
"source": "backend/internal/common/internalservice/resolver_test.go",
|
|
2492
|
+
"target": "internal/common/internalservice/resolver_test.go",
|
|
2493
|
+
"transformation": "module/import namespace only",
|
|
2494
|
+
"source_sha256": "3258bebe9a0edbf562c29ff1bd47b8628d1ee91985bea97f92d62667494fd4b3",
|
|
2495
|
+
"target_template_sha256": "f6eae8a2d07ba083e00b8da99ead4a31c0c323cf34ea5f8363cc5c564176e770"
|
|
2496
|
+
},
|
|
2497
|
+
{
|
|
2498
|
+
"source": "backend/internal/common/internalservice/route_scope.go",
|
|
2499
|
+
"target": "internal/common/internalservice/route_scope.go",
|
|
2500
|
+
"transformation": "module/import namespace only",
|
|
2501
|
+
"source_sha256": "596238407116a5eb9a25011a7e8c24f46b1b6c4604b8c15d97a0096755d89e9a",
|
|
2502
|
+
"target_template_sha256": "596238407116a5eb9a25011a7e8c24f46b1b6c4604b8c15d97a0096755d89e9a"
|
|
2503
|
+
},
|
|
2504
|
+
{
|
|
2505
|
+
"source": "backend/internal/common/internalservice/route_scope_test.go",
|
|
2506
|
+
"target": "internal/common/internalservice/route_scope_test.go",
|
|
2507
|
+
"transformation": "module/import namespace only",
|
|
2508
|
+
"source_sha256": "9bdf13eb47832d055ffd50f55fc8ea1d7663c7bbcf95cac44812f0898828f52c",
|
|
2509
|
+
"target_template_sha256": "9bdf13eb47832d055ffd50f55fc8ea1d7663c7bbcf95cac44812f0898828f52c"
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
"source": "backend/internal/common/internalservice/service_identity_test.go",
|
|
2513
|
+
"target": "internal/common/internalservice/service_identity_test.go",
|
|
2514
|
+
"transformation": "module/import namespace only",
|
|
2515
|
+
"source_sha256": "13e01d0ea79db63e3452442e7bc3d5d2617d76aa4cb15f6a4efb24a7d75ece65",
|
|
2516
|
+
"target_template_sha256": "654cf6f9812dd7b42467536d332a6efb709e0d42e564953354a3358052b65d50"
|
|
2517
|
+
},
|
|
2518
|
+
{
|
|
2519
|
+
"source": "backend/internal/common/jsonschema/compiler.go",
|
|
2520
|
+
"target": "internal/common/jsonschema/compiler.go",
|
|
2521
|
+
"transformation": "module/import namespace only",
|
|
2522
|
+
"source_sha256": "de271be30b313216690b2babd0830dc92b4db88b60f2e41763d16c26ec707558",
|
|
2523
|
+
"target_template_sha256": "de271be30b313216690b2babd0830dc92b4db88b60f2e41763d16c26ec707558"
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"source": "backend/internal/common/jsonschema/compiler_test.go",
|
|
2527
|
+
"target": "internal/common/jsonschema/compiler_test.go",
|
|
2528
|
+
"transformation": "module/import namespace only",
|
|
2529
|
+
"source_sha256": "7e605380ed6c4d7a2e16e43cb9f5fa4f8afa2b87b208a223a699f7649ecdba12",
|
|
2530
|
+
"target_template_sha256": "7e605380ed6c4d7a2e16e43cb9f5fa4f8afa2b87b208a223a699f7649ecdba12"
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
"source": "backend/internal/common/jwksapi/handler.go",
|
|
2534
|
+
"target": "internal/common/jwksapi/handler.go",
|
|
2535
|
+
"transformation": "module/import namespace only",
|
|
2536
|
+
"source_sha256": "4f473bac8ce431fed3d35fa129f138172118b8cba2a5d7bc6a1d7145b71a92cd",
|
|
2537
|
+
"target_template_sha256": "b7d8cb0198faeaf04d09f3f043c8b9df01aa9646e125673ba6c7e488d1589199"
|
|
2538
|
+
},
|
|
2539
|
+
{
|
|
2540
|
+
"source": "backend/internal/common/jwksapi/handler_test.go",
|
|
2541
|
+
"target": "internal/common/jwksapi/handler_test.go",
|
|
2542
|
+
"transformation": "module/import namespace only",
|
|
2543
|
+
"source_sha256": "96dfce4a1ecaef13b14976a9797a09a40e15a9d99cffdd907b44269ede870a70",
|
|
2544
|
+
"target_template_sha256": "552361f78d71c67af48e4d10e97abbc3e7dd7743b641b6ccea52a6e9e7e85765"
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
"source": "backend/internal/common/locale/locale.go",
|
|
2548
|
+
"target": "internal/common/locale/locale.go",
|
|
2549
|
+
"transformation": "module/import namespace only",
|
|
2550
|
+
"source_sha256": "17b5db8f7f0d0667cc88e37351435214e04ad98fe214b22c1c857e77ef7cb02d",
|
|
2551
|
+
"target_template_sha256": "17b5db8f7f0d0667cc88e37351435214e04ad98fe214b22c1c857e77ef7cb02d"
|
|
2552
|
+
},
|
|
2553
|
+
{
|
|
2554
|
+
"source": "backend/internal/common/locale/locale_test.go",
|
|
2555
|
+
"target": "internal/common/locale/locale_test.go",
|
|
2556
|
+
"transformation": "module/import namespace only",
|
|
2557
|
+
"source_sha256": "67c1b6b955603c3797d8231b916ce5ee3f55c7463a600f6bc931a9e2ad706cbc",
|
|
2558
|
+
"target_template_sha256": "67c1b6b955603c3797d8231b916ce5ee3f55c7463a600f6bc931a9e2ad706cbc"
|
|
2559
|
+
},
|
|
2560
|
+
{
|
|
2561
|
+
"source": "backend/internal/common/mediaref/mediaref.go",
|
|
2562
|
+
"target": "internal/common/mediaref/mediaref.go",
|
|
2563
|
+
"transformation": "module/import namespace only",
|
|
2564
|
+
"source_sha256": "62b37fa26f09ee4a3f1921058435be64efceba0fccfb6a3c7c31a82bf821e7fe",
|
|
2565
|
+
"target_template_sha256": "62b37fa26f09ee4a3f1921058435be64efceba0fccfb6a3c7c31a82bf821e7fe"
|
|
2566
|
+
},
|
|
2567
|
+
{
|
|
2568
|
+
"source": "backend/internal/common/mediaref/mediaref_test.go",
|
|
2569
|
+
"target": "internal/common/mediaref/mediaref_test.go",
|
|
2570
|
+
"transformation": "module/import namespace only",
|
|
2571
|
+
"source_sha256": "f1d42871c78fbc47b68df9aae2c002ae8301aa4f36c870f6c41355eb32d5d301",
|
|
2572
|
+
"target_template_sha256": "f1d42871c78fbc47b68df9aae2c002ae8301aa4f36c870f6c41355eb32d5d301"
|
|
2573
|
+
},
|
|
2574
|
+
{
|
|
2575
|
+
"source": "backend/internal/common/middleware/apikey_auth.go",
|
|
2576
|
+
"target": "internal/common/middleware/apikey_auth.go",
|
|
2577
|
+
"transformation": "module/import namespace only",
|
|
2578
|
+
"source_sha256": "3022eca8a9242a5d7de8ec01cf9211a47be5f0ee6d5552c1c3690e65975c9656",
|
|
2579
|
+
"target_template_sha256": "cb775ea064a3b0b0940fa9337d86cfaf4a927f21b9269a43650602b77e78bc7a"
|
|
2580
|
+
},
|
|
2581
|
+
{
|
|
2582
|
+
"source": "backend/internal/common/middleware/apikey_throttle.go",
|
|
2583
|
+
"target": "internal/common/middleware/apikey_throttle.go",
|
|
2584
|
+
"transformation": "module/import namespace only",
|
|
2585
|
+
"source_sha256": "470d2d23782be579e8b18b77c22cda73aad72c42206f7544449744ed55366200",
|
|
2586
|
+
"target_template_sha256": "f08882205ebf6159a9b992caa7cabf12167be50727a4ab900b5da444d7c85117"
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
"source": "backend/internal/common/middleware/auth.go",
|
|
2590
|
+
"target": "internal/common/middleware/auth.go",
|
|
2591
|
+
"transformation": "module/import namespace only",
|
|
2592
|
+
"source_sha256": "fade83c53f65cbf2bc4ae56bc69b5729fe86338ff22a24aadcbf12c855912ae0",
|
|
2593
|
+
"target_template_sha256": "800fe262eee03e9c0ce3716c7da27de13ce596fcf0b2e26746b9a25773e72fc3"
|
|
2594
|
+
},
|
|
2595
|
+
{
|
|
2596
|
+
"source": "backend/internal/common/middleware/auth_test.go",
|
|
2597
|
+
"target": "internal/common/middleware/auth_test.go",
|
|
2598
|
+
"transformation": "module/import namespace only",
|
|
2599
|
+
"source_sha256": "de827413ef37020314ffa6573199529d8647e9353de27b88b4dee4783a21e3cf",
|
|
2600
|
+
"target_template_sha256": "cf72a26f784d8768a9cc5c24b7f2b7e51d0066757579e275a1ef208eaaf7795b"
|
|
2601
|
+
},
|
|
2602
|
+
{
|
|
2603
|
+
"source": "backend/internal/common/middleware/client_context.go",
|
|
2604
|
+
"target": "internal/common/middleware/client_context.go",
|
|
2605
|
+
"transformation": "module/import namespace only",
|
|
2606
|
+
"source_sha256": "663145f65c49d0cb332e9b708f3835b956a266d9f92f4d09661a28a8174d4adf",
|
|
2607
|
+
"target_template_sha256": "1c126c7ba1be96ba2d88eff69a38d87d50150b4d3a58ff3fc2a9ec448bd8f739"
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
"source": "backend/internal/common/middleware/cors.go",
|
|
2611
|
+
"target": "internal/common/middleware/cors.go",
|
|
2612
|
+
"transformation": "module/import namespace only",
|
|
2613
|
+
"source_sha256": "67cb19d27b01e2114ee79ab5a2be961e17e211bf68a14a9f4c2045c0a5572914",
|
|
2614
|
+
"target_template_sha256": "49c0ad60a477611d4097233cc7fe6a819ed7d6bc6a482f6299cdee79e0f00385"
|
|
2615
|
+
},
|
|
2616
|
+
{
|
|
2617
|
+
"source": "backend/internal/common/middleware/event_context.go",
|
|
2618
|
+
"target": "internal/common/middleware/event_context.go",
|
|
2619
|
+
"transformation": "module/import namespace only",
|
|
2620
|
+
"source_sha256": "bbcc6e39f56764382810e948aac4f7690bd299d516f76be50fe48c497c24e086",
|
|
2621
|
+
"target_template_sha256": "b0b1c454837e8bc25573e7b4c259d562c72dd0b5e369ce04717644d0cbecf6a2"
|
|
2622
|
+
},
|
|
2623
|
+
{
|
|
2624
|
+
"source": "backend/internal/common/middleware/gateway_identity.go",
|
|
2625
|
+
"target": "internal/common/middleware/gateway_identity.go",
|
|
2626
|
+
"transformation": "module/import namespace only",
|
|
2627
|
+
"source_sha256": "805cd879c6d637c596349f07fa58e2cc5c90dcb5bbbc3613c0f41fa73d13edda",
|
|
2628
|
+
"target_template_sha256": "57189cb9b2bfa651a60686e23ff864931d6c5690d6d7056c712620410c99adc8"
|
|
2629
|
+
},
|
|
2630
|
+
{
|
|
2631
|
+
"source": "backend/internal/common/middleware/helpers.go",
|
|
2632
|
+
"target": "internal/common/middleware/helpers.go",
|
|
2633
|
+
"transformation": "module/import namespace only",
|
|
2634
|
+
"source_sha256": "ebf70bcb4bd8c6b4ba64a6a438edc3ddc531d7dacf54240590d282217134dfea",
|
|
2635
|
+
"target_template_sha256": "1045a25dba1a610675069569bbfeb7b9f553b7f1d83abcccc6b64e7d0507bf4b"
|
|
2636
|
+
},
|
|
2637
|
+
{
|
|
2638
|
+
"source": "backend/internal/common/middleware/iam_delegated_route_permission.go",
|
|
2639
|
+
"target": "internal/common/middleware/iam_delegated_route_permission.go",
|
|
2640
|
+
"transformation": "module/import namespace only",
|
|
2641
|
+
"source_sha256": "bbc62700954de0969bd0e7769a8ecd68372910d0cb8b6a7055e87b8433ee75c2",
|
|
2642
|
+
"target_template_sha256": "ac3892ee29935b8b4d898a387d598b98c0663064ad4016394b056b31cd05b1a9"
|
|
2643
|
+
},
|
|
2644
|
+
{
|
|
2645
|
+
"source": "backend/internal/common/middleware/iam_delegated_token_auth.go",
|
|
2646
|
+
"target": "internal/common/middleware/iam_delegated_token_auth.go",
|
|
2647
|
+
"transformation": "module/import namespace only",
|
|
2648
|
+
"source_sha256": "29fb97186b79ca0207969b37aebc72163900cf280f5c242d8e0c951a3945ab16",
|
|
2649
|
+
"target_template_sha256": "c49229fbc77fb51833c51874e66b2d15f759991206048f20f46b613fce3d7c35"
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"source": "backend/internal/common/middleware/iam_delegated_token_auth_test.go",
|
|
2653
|
+
"target": "internal/common/middleware/iam_delegated_token_auth_test.go",
|
|
2654
|
+
"transformation": "module/import namespace only",
|
|
2655
|
+
"source_sha256": "aa2b97e9b97c624952dd1a8db21130d2a692fe389a90608eba07617ef2cb9009",
|
|
2656
|
+
"target_template_sha256": "30b315de96e964c8035ff6103554b58d9a86c339b771115f35a5a53e101e1a06"
|
|
2657
|
+
},
|
|
2658
|
+
{
|
|
2659
|
+
"source": "backend/internal/common/middleware/iam_service_identity.go",
|
|
2660
|
+
"target": "internal/common/middleware/iam_service_identity.go",
|
|
2661
|
+
"transformation": "module/import namespace only",
|
|
2662
|
+
"source_sha256": "28e33071aa4221c13c3a60f10786fadcf0e49f8a83d40ccacb9e3953cec53edf",
|
|
2663
|
+
"target_template_sha256": "35e9acab2b7a750e86ff9f235d63314019f24def7254b109cbbd5d8e3f63d15a"
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
"source": "backend/internal/common/middleware/iam_service_token_auth.go",
|
|
2667
|
+
"target": "internal/common/middleware/iam_service_token_auth.go",
|
|
2668
|
+
"transformation": "module/import namespace only",
|
|
2669
|
+
"source_sha256": "9bd464c508df60d23def1c9dfd6edb308dddf8c683c09b2567f9edcd74b575b4",
|
|
2670
|
+
"target_template_sha256": "7e7440be3c2e8adab7c0b17562ad2e6e43e995685fd9346ea7e2ab4da6243a4b"
|
|
2671
|
+
},
|
|
2672
|
+
{
|
|
2673
|
+
"source": "backend/internal/common/middleware/idempotent.go",
|
|
2674
|
+
"target": "internal/common/middleware/idempotent.go",
|
|
2675
|
+
"transformation": "module/import namespace only",
|
|
2676
|
+
"source_sha256": "bd010d59268fb356e5779e42349bf6cd2ae2704634e3e41f7a831d2183342a3f",
|
|
2677
|
+
"target_template_sha256": "977cbe39f4fcc2c9d1aea6d2d04f87da32629c0dd40a44f7f0c81647ffb61624"
|
|
2678
|
+
},
|
|
2679
|
+
{
|
|
2680
|
+
"source": "backend/internal/common/middleware/idempotent_test.go",
|
|
2681
|
+
"target": "internal/common/middleware/idempotent_test.go",
|
|
2682
|
+
"transformation": "module/import namespace only",
|
|
2683
|
+
"source_sha256": "762606de6610090803fc841c5b1c8f70d02c0aca490b430ce8b02c67b53c7295",
|
|
2684
|
+
"target_template_sha256": "250b737c9af554eae4309f25733f2e73755f1a74405bed43f712e6ff397a1a97"
|
|
2685
|
+
},
|
|
2686
|
+
{
|
|
2687
|
+
"source": "backend/internal/common/middleware/internal_route_permission.go",
|
|
2688
|
+
"target": "internal/common/middleware/internal_route_permission.go",
|
|
2689
|
+
"transformation": "module/import namespace only",
|
|
2690
|
+
"source_sha256": "42816ee1b407453f7888c435985f15b6e93a39269c50b754ef141813556dd8a7",
|
|
2691
|
+
"target_template_sha256": "802db8442090240ab5e7e4b5b74b5c020b723b059089f230cdded124556c9894"
|
|
2692
|
+
},
|
|
2693
|
+
{
|
|
2694
|
+
"source": "backend/internal/common/middleware/internal_route_permission_test.go",
|
|
2695
|
+
"target": "internal/common/middleware/internal_route_permission_test.go",
|
|
2696
|
+
"transformation": "module/import namespace only",
|
|
2697
|
+
"source_sha256": "a537e6cd3a7577bf61acebf84add3e887f296b29b8d1a36f78c5d1a6e0c5543f",
|
|
2698
|
+
"target_template_sha256": "47c355fb28af0b7aba2de4f889290c510d0e3ca3152b2b2c56ecc4365c048f17"
|
|
2699
|
+
},
|
|
2700
|
+
{
|
|
2701
|
+
"source": "backend/internal/common/middleware/logging.go",
|
|
2702
|
+
"target": "internal/common/middleware/logging.go",
|
|
2703
|
+
"transformation": "module/import namespace only",
|
|
2704
|
+
"source_sha256": "d5be36adcbfa1dbbe33ffc55e6df334c9dc6cfc7229fbaacaab5933deebc533c",
|
|
2705
|
+
"target_template_sha256": "e94b18d7c24f8193ac6912b3cb2c298d14ced4789dd593abc5d7f3a4e321606a"
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
"source": "backend/internal/common/middleware/metrics.go",
|
|
2709
|
+
"target": "internal/common/middleware/metrics.go",
|
|
2710
|
+
"transformation": "module/import namespace only",
|
|
2711
|
+
"source_sha256": "c8fbb3b1fdef352066a022a8aa1bbc179ac8eac5aa064a24fac803443d154c21",
|
|
2712
|
+
"target_template_sha256": "4194dbb2d3c913b5df2aba0430d9ab93afd259791abab0a365e768578e27c61b"
|
|
2713
|
+
},
|
|
2714
|
+
{
|
|
2715
|
+
"source": "backend/internal/common/middleware/middleware_test.go",
|
|
2716
|
+
"target": "internal/common/middleware/middleware_test.go",
|
|
2717
|
+
"transformation": "module/import namespace only",
|
|
2718
|
+
"source_sha256": "f5721cc4a149aab8f0fd3d4d0d6c7aefcd00ff90a9d79f7587022a3ebc947694",
|
|
2719
|
+
"target_template_sha256": "5266ee4a8e4ced12b43f223370b2365821f742a84b91c50e5c2a46d42dcdce33"
|
|
2720
|
+
},
|
|
2721
|
+
{
|
|
2722
|
+
"source": "backend/internal/common/middleware/principal_context.go",
|
|
2723
|
+
"target": "internal/common/middleware/principal_context.go",
|
|
2724
|
+
"transformation": "module/import namespace only",
|
|
2725
|
+
"source_sha256": "e3c1ccd682868304bf323bfe37feaab9b8a260c04e9e86d43d9c408d93afc46d",
|
|
2726
|
+
"target_template_sha256": "66cce5378df6c787921414990bf1ce01a002cbe09acbf43c2034128fa3921b8b"
|
|
2727
|
+
},
|
|
2728
|
+
{
|
|
2729
|
+
"source": "backend/internal/common/middleware/principal_context_test.go",
|
|
2730
|
+
"target": "internal/common/middleware/principal_context_test.go",
|
|
2731
|
+
"transformation": "module/import namespace only",
|
|
2732
|
+
"source_sha256": "5fa3db28934ed015c650a484e2283e2b4d83d6dbb6c8b849aa70558fae6f260e",
|
|
2733
|
+
"target_template_sha256": "0d826f6217e4dee1d1a3cc58afa879f77f42bfc474d5a1c89c5e2ec96e587658"
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"source": "backend/internal/common/middleware/product_context.go",
|
|
2737
|
+
"target": "internal/common/middleware/product_context.go",
|
|
2738
|
+
"transformation": "module/import namespace only",
|
|
2739
|
+
"source_sha256": "bd7634480c21d4d2a304866f5ea7b2a7d006a217945f973332b44515560a9bbd",
|
|
2740
|
+
"target_template_sha256": "47a07898d1e75e7f97f9b5db8e1684f1c1b464c84e7758ea39629f30f6d650ea"
|
|
2741
|
+
},
|
|
2742
|
+
{
|
|
2743
|
+
"source": "backend/internal/common/middleware/recovery.go",
|
|
2744
|
+
"target": "internal/common/middleware/recovery.go",
|
|
2745
|
+
"transformation": "module/import namespace only",
|
|
2746
|
+
"source_sha256": "973f3d023fe6eb7cda065c60f4d7a950c51984349327ec09b500d51df1953084",
|
|
2747
|
+
"target_template_sha256": "547258e2fd54a0725af8a88593f1c5c53db53346b7a04d409faa0dceab3583fd"
|
|
2748
|
+
},
|
|
2749
|
+
{
|
|
2750
|
+
"source": "backend/internal/common/middleware/referral_attribution.go",
|
|
2751
|
+
"target": "internal/common/middleware/referral_attribution.go",
|
|
2752
|
+
"transformation": "module/import namespace only",
|
|
2753
|
+
"source_sha256": "07855b4b335723da0ef527b91d6ec7d8d84b79aeece3772339370bdafac16815",
|
|
2754
|
+
"target_template_sha256": "c54badeb938a1a5d16cd22b0c69f7212b0e7de85aa0567c1d69439fa1b058875"
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
"source": "backend/internal/common/middleware/requestid.go",
|
|
2758
|
+
"target": "internal/common/middleware/requestid.go",
|
|
2759
|
+
"transformation": "module/import namespace only",
|
|
2760
|
+
"source_sha256": "0e8bd6f0b00382b161436d1757aa5c77a0c784c0f537fb668cc9c91aaff2792c",
|
|
2761
|
+
"target_template_sha256": "f0692ec5aa027ebc5209c274efa43427f748e5f75e4b73e855639bb07a774171"
|
|
2762
|
+
},
|
|
2763
|
+
{
|
|
2764
|
+
"source": "backend/internal/common/middleware/resource_permission.go",
|
|
2765
|
+
"target": "internal/common/middleware/resource_permission.go",
|
|
2766
|
+
"transformation": "module/import namespace only",
|
|
2767
|
+
"source_sha256": "257da0113d48353d245be2629b7cf88da13c42aa8b9f125ccc9b03d7086bb997",
|
|
2768
|
+
"target_template_sha256": "d395aa60cdea6f34e6930533ed2f9fc8be49a406599503dc2bedf6b9bb2c1ac4"
|
|
2769
|
+
},
|
|
2770
|
+
{
|
|
2771
|
+
"source": "backend/internal/common/middleware/resource_permission_test.go",
|
|
2772
|
+
"target": "internal/common/middleware/resource_permission_test.go",
|
|
2773
|
+
"transformation": "module/import namespace only",
|
|
2774
|
+
"source_sha256": "4ea1883d4629fb320c9a59684bdaebe396d0dd355adff5e0c4a5f61291b4798d",
|
|
2775
|
+
"target_template_sha256": "0f296fbcb719f98068859b28752daf424922f992b60a3fb0e51c8e955f48ace0"
|
|
2776
|
+
},
|
|
2777
|
+
{
|
|
2778
|
+
"source": "backend/internal/common/middleware/service_credential_auth.go",
|
|
2779
|
+
"target": "internal/common/middleware/service_credential_auth.go",
|
|
2780
|
+
"transformation": "module/import namespace only",
|
|
2781
|
+
"source_sha256": "e67f7433ebf1c3e327b4be9a5be666268b1fb7fb402220a0010add0f2d345233",
|
|
2782
|
+
"target_template_sha256": "c86d1e51bd2b86605b36eae5d8691a060fd2df4feb2f7784bf9d0795d07f0557"
|
|
2783
|
+
},
|
|
2784
|
+
{
|
|
2785
|
+
"source": "backend/internal/common/middleware/tenant.go",
|
|
2786
|
+
"target": "internal/common/middleware/tenant.go",
|
|
2787
|
+
"transformation": "module/import namespace only",
|
|
2788
|
+
"source_sha256": "67472aa0b416af8f172888ca9127461ddf753c5482ccfcbdb579a517ff9430fc",
|
|
2789
|
+
"target_template_sha256": "e22cde2667b9ca6b4ae007cdd6607ee54898ff986b15b474ad5018351b8a221c"
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"source": "backend/internal/common/middleware/throttle.go",
|
|
2793
|
+
"target": "internal/common/middleware/throttle.go",
|
|
2794
|
+
"transformation": "module/import namespace only",
|
|
2795
|
+
"source_sha256": "428709d342fc43794d2bec9a9ca1d4854734d1ef0d0287cb568b38793ae9ca6b",
|
|
2796
|
+
"target_template_sha256": "f8698dc2739c8ee5cfc70041676149a1333ea3505596f7db720ab53946797b11"
|
|
2797
|
+
},
|
|
2798
|
+
{
|
|
2799
|
+
"source": "backend/internal/common/middleware/trusted_client_ip.go",
|
|
2800
|
+
"target": "internal/common/middleware/trusted_client_ip.go",
|
|
2801
|
+
"transformation": "module/import namespace only",
|
|
2802
|
+
"source_sha256": "163bfd6c4470bc32b3ac6311a0a72512a02b59ddebe9ab108af2eec0b1b198d9",
|
|
2803
|
+
"target_template_sha256": "08028145041d2b4f4dd277449170474561212934615552d86a7ad778bd03abfb"
|
|
2804
|
+
},
|
|
2805
|
+
{
|
|
2806
|
+
"source": "backend/internal/common/middleware/trusted_client_ip_test.go",
|
|
2807
|
+
"target": "internal/common/middleware/trusted_client_ip_test.go",
|
|
2808
|
+
"transformation": "module/import namespace only",
|
|
2809
|
+
"source_sha256": "82cdf560db5ceecb1c73a4dc5b64b38c70d08abca0b2c755b386d17da06e3b29",
|
|
2810
|
+
"target_template_sha256": "7a13cd15fb58b4c2bc40ed1423c487d737004af858acc279597b9c871b7d6f9b"
|
|
2811
|
+
},
|
|
2812
|
+
{
|
|
2813
|
+
"source": "backend/internal/common/money/currency.go",
|
|
2814
|
+
"target": "internal/common/money/currency.go",
|
|
2815
|
+
"transformation": "module/import namespace only",
|
|
2816
|
+
"source_sha256": "7141bee25c42095395e9f6fe7222ad1aeafc88523f54674df380f1b738d2d004",
|
|
2817
|
+
"target_template_sha256": "98918637711c90552fca199b89e6e9aedc4be27cab513429da566443190e3770"
|
|
2818
|
+
},
|
|
2819
|
+
{
|
|
2820
|
+
"source": "backend/internal/common/money/errors.go",
|
|
2821
|
+
"target": "internal/common/money/errors.go",
|
|
2822
|
+
"transformation": "module/import namespace only",
|
|
2823
|
+
"source_sha256": "230032aad19f828aeff050ef64e95b2977402a943c6f2d6dd6178be994727c35",
|
|
2824
|
+
"target_template_sha256": "230032aad19f828aeff050ef64e95b2977402a943c6f2d6dd6178be994727c35"
|
|
2825
|
+
},
|
|
2826
|
+
{
|
|
2827
|
+
"source": "backend/internal/common/money/format.go",
|
|
2828
|
+
"target": "internal/common/money/format.go",
|
|
2829
|
+
"transformation": "module/import namespace only",
|
|
2830
|
+
"source_sha256": "6d478f61379934d56bc56c39b029df2db429daffc32cfc26656cfd1047531e4e",
|
|
2831
|
+
"target_template_sha256": "5384ad8cfbad63ee0ae2f2d759095120e927b2ff79c05077778bbbd4394d7f35"
|
|
2832
|
+
},
|
|
2833
|
+
{
|
|
2834
|
+
"source": "backend/internal/common/money/format_test.go",
|
|
2835
|
+
"target": "internal/common/money/format_test.go",
|
|
2836
|
+
"transformation": "module/import namespace only",
|
|
2837
|
+
"source_sha256": "c3d899271568e80857a9a07161b924962e0e1caa683e889a01b4cc72e840b3ad",
|
|
2838
|
+
"target_template_sha256": "f0570cd9523b05f9d62e3c7068c1043b1b3be9d3add3ff8fc14adf7455301c67"
|
|
2839
|
+
},
|
|
2840
|
+
{
|
|
2841
|
+
"source": "backend/internal/common/money/gateway.go",
|
|
2842
|
+
"target": "internal/common/money/gateway.go",
|
|
2843
|
+
"transformation": "module/import namespace only",
|
|
2844
|
+
"source_sha256": "cb7641b370ff5b6b1c54fbf6d1061f15bb20e4f3962fb319fd2f276946d4e281",
|
|
2845
|
+
"target_template_sha256": "cb7641b370ff5b6b1c54fbf6d1061f15bb20e4f3962fb319fd2f276946d4e281"
|
|
2846
|
+
},
|
|
2847
|
+
{
|
|
2848
|
+
"source": "backend/internal/common/money/gateway_test.go",
|
|
2849
|
+
"target": "internal/common/money/gateway_test.go",
|
|
2850
|
+
"transformation": "module/import namespace only",
|
|
2851
|
+
"source_sha256": "4abdd3ec856bcb1a35bf8fb299d20ea706e72902c1c847faec5884e85e45276b",
|
|
2852
|
+
"target_template_sha256": "4abdd3ec856bcb1a35bf8fb299d20ea706e72902c1c847faec5884e85e45276b"
|
|
2853
|
+
},
|
|
2854
|
+
{
|
|
2855
|
+
"source": "backend/internal/common/money/rounding.go",
|
|
2856
|
+
"target": "internal/common/money/rounding.go",
|
|
2857
|
+
"transformation": "module/import namespace only",
|
|
2858
|
+
"source_sha256": "5fed7a85a75783c460d73997dd2d6d9a7768f60713e5f4f1e4a6cc7ad6423e0b",
|
|
2859
|
+
"target_template_sha256": "5fed7a85a75783c460d73997dd2d6d9a7768f60713e5f4f1e4a6cc7ad6423e0b"
|
|
2860
|
+
},
|
|
2861
|
+
{
|
|
2862
|
+
"source": "backend/internal/common/money/rounding_test.go",
|
|
2863
|
+
"target": "internal/common/money/rounding_test.go",
|
|
2864
|
+
"transformation": "module/import namespace only",
|
|
2865
|
+
"source_sha256": "d6997b7f2c7d01d9f9380c70bd51c6c4e16db7fc1305d4c669e92dffb14a7177",
|
|
2866
|
+
"target_template_sha256": "d6997b7f2c7d01d9f9380c70bd51c6c4e16db7fc1305d4c669e92dffb14a7177"
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
"source": "backend/internal/common/principal/context.go",
|
|
2870
|
+
"target": "internal/common/principal/context.go",
|
|
2871
|
+
"transformation": "module/import namespace only",
|
|
2872
|
+
"source_sha256": "25495699098950659b2ac7415e521b141692f6539e8a3f6cef9cb4ce93ba6961",
|
|
2873
|
+
"target_template_sha256": "25495699098950659b2ac7415e521b141692f6539e8a3f6cef9cb4ce93ba6961"
|
|
2874
|
+
},
|
|
2875
|
+
{
|
|
2876
|
+
"source": "backend/internal/common/principal/principal.go",
|
|
2877
|
+
"target": "internal/common/principal/principal.go",
|
|
2878
|
+
"transformation": "module/import namespace only",
|
|
2879
|
+
"source_sha256": "41076a148483ba9a0378a68f44e8c559c82be8ceea34862a593ede50bd116b9f",
|
|
2880
|
+
"target_template_sha256": "b6eb9891998e28db753584fe517a824776d3d3cd45d9b52dba46a0c1f3a3a670"
|
|
2881
|
+
},
|
|
2882
|
+
{
|
|
2883
|
+
"source": "backend/internal/common/productcode/code.go",
|
|
2884
|
+
"target": "internal/common/productcode/code.go",
|
|
2885
|
+
"transformation": "module/import namespace only",
|
|
2886
|
+
"source_sha256": "61ddf24d2a910a5a01d03c82b326b37f24d40606049ba0dc521b827e42a46f65",
|
|
2887
|
+
"target_template_sha256": "61ddf24d2a910a5a01d03c82b326b37f24d40606049ba0dc521b827e42a46f65"
|
|
2888
|
+
},
|
|
2889
|
+
{
|
|
2890
|
+
"source": "backend/internal/common/productcode/code_test.go",
|
|
2891
|
+
"target": "internal/common/productcode/code_test.go",
|
|
2892
|
+
"transformation": "module/import namespace only",
|
|
2893
|
+
"source_sha256": "bfe081dc91107202faa70f1444f646581fd2402057d2a7410414c9ab407ce6c2",
|
|
2894
|
+
"target_template_sha256": "bfe081dc91107202faa70f1444f646581fd2402057d2a7410414c9ab407ce6c2"
|
|
2895
|
+
},
|
|
2896
|
+
{
|
|
2897
|
+
"source": "backend/internal/common/providerconfig/schema.go",
|
|
2898
|
+
"target": "internal/common/providerconfig/schema.go",
|
|
2899
|
+
"transformation": "module/import namespace only",
|
|
2900
|
+
"source_sha256": "e9c1ed247fdff25eb6571b9cd8094ac6d5974271f093e0d27016a815248dc4a2",
|
|
2901
|
+
"target_template_sha256": "c6934aa19a2eb269e6572b447a7752be9d9007ba607cb1c1240a793e700f3240"
|
|
2902
|
+
},
|
|
2903
|
+
{
|
|
2904
|
+
"source": "backend/internal/common/providerconfig/schema_test.go",
|
|
2905
|
+
"target": "internal/common/providerconfig/schema_test.go",
|
|
2906
|
+
"transformation": "module/import namespace only",
|
|
2907
|
+
"source_sha256": "b76ca153a1a2ef654bd1c1227697270f5d4d805c183b751a305a5e0384424619",
|
|
2908
|
+
"target_template_sha256": "b76ca153a1a2ef654bd1c1227697270f5d4d805c183b751a305a5e0384424619"
|
|
2909
|
+
},
|
|
2910
|
+
{
|
|
2911
|
+
"source": "backend/internal/common/requestprivacy/request.go",
|
|
2912
|
+
"target": "internal/common/requestprivacy/request.go",
|
|
2913
|
+
"transformation": "module/import namespace only",
|
|
2914
|
+
"source_sha256": "31f5567cb7fdf9c52fe1e43e1196c0bb276494c95543fee1172cf1afad0b51ca",
|
|
2915
|
+
"target_template_sha256": "a04da24b3f751780ce7e93e893823237140462089eb8f277a2a6a867bac197be"
|
|
2916
|
+
},
|
|
2917
|
+
{
|
|
2918
|
+
"source": "backend/internal/common/requestprivacy/request_test.go",
|
|
2919
|
+
"target": "internal/common/requestprivacy/request_test.go",
|
|
2920
|
+
"transformation": "module/import namespace only",
|
|
2921
|
+
"source_sha256": "325ca7425d8afc8e90097a91d50196bd7ba28b5dcb47ba2c740b52cf62b769f3",
|
|
2922
|
+
"target_template_sha256": "325ca7425d8afc8e90097a91d50196bd7ba28b5dcb47ba2c740b52cf62b769f3"
|
|
2923
|
+
},
|
|
2924
|
+
{
|
|
2925
|
+
"source": "backend/internal/common/response/pagination.go",
|
|
2926
|
+
"target": "internal/common/response/pagination.go",
|
|
2927
|
+
"transformation": "module/import namespace only",
|
|
2928
|
+
"source_sha256": "26944197282f8352536158dc364f58eb0df73d07e1e941a39a89bfe6b480eabf",
|
|
2929
|
+
"target_template_sha256": "26944197282f8352536158dc364f58eb0df73d07e1e941a39a89bfe6b480eabf"
|
|
2930
|
+
},
|
|
2931
|
+
{
|
|
2932
|
+
"source": "backend/internal/common/response/response.go",
|
|
2933
|
+
"target": "internal/common/response/response.go",
|
|
2934
|
+
"transformation": "module/import namespace only",
|
|
2935
|
+
"source_sha256": "cd7dae20b188836889ce27da3d45abe2326036cf74cf736ab3383b713c8490fd",
|
|
2936
|
+
"target_template_sha256": "686f2c63edbb931f6d9d368a6ae22985d048d4a954ec17074ba1a8aabf22938d"
|
|
2937
|
+
},
|
|
2938
|
+
{
|
|
2939
|
+
"source": "backend/internal/common/response/response_test.go",
|
|
2940
|
+
"target": "internal/common/response/response_test.go",
|
|
2941
|
+
"transformation": "module/import namespace only",
|
|
2942
|
+
"source_sha256": "7a7da5d312c7f30c1388a9262210cdbce3d729473b89d82cdbb601e3fa3b0faa",
|
|
2943
|
+
"target_template_sha256": "5151a28c7ff4be2ca4526bc36d31dc8f850800892bc8cbe4df370e55c28cd89b"
|
|
2944
|
+
},
|
|
2945
|
+
{
|
|
2946
|
+
"source": "backend/internal/common/ruleexpression/ast.go",
|
|
2947
|
+
"target": "internal/common/ruleexpression/ast.go",
|
|
2948
|
+
"transformation": "module/import namespace only",
|
|
2949
|
+
"source_sha256": "ed335b6e20cb5923a52edd5322a99259bfe9c05436092963234418e5694cab53",
|
|
2950
|
+
"target_template_sha256": "ed335b6e20cb5923a52edd5322a99259bfe9c05436092963234418e5694cab53"
|
|
2951
|
+
},
|
|
2952
|
+
{
|
|
2953
|
+
"source": "backend/internal/common/ruleexpression/ast_test.go",
|
|
2954
|
+
"target": "internal/common/ruleexpression/ast_test.go",
|
|
2955
|
+
"transformation": "module/import namespace only",
|
|
2956
|
+
"source_sha256": "50d31f9659e7ad162dc48812e058af6f96990c9a7684da7efbbd3d46d17acc79",
|
|
2957
|
+
"target_template_sha256": "50d31f9659e7ad162dc48812e058af6f96990c9a7684da7efbbd3d46d17acc79"
|
|
2958
|
+
},
|
|
2959
|
+
{
|
|
2960
|
+
"source": "backend/internal/common/ruleexpression/canonical.go",
|
|
2961
|
+
"target": "internal/common/ruleexpression/canonical.go",
|
|
2962
|
+
"transformation": "module/import namespace only",
|
|
2963
|
+
"source_sha256": "edf0bfac77f787836850083ac90fa1ce649a342e3b57f46adce0ac52535d5d4e",
|
|
2964
|
+
"target_template_sha256": "edf0bfac77f787836850083ac90fa1ce649a342e3b57f46adce0ac52535d5d4e"
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"source": "backend/internal/common/ruleexpression/canonical_test.go",
|
|
2968
|
+
"target": "internal/common/ruleexpression/canonical_test.go",
|
|
2969
|
+
"transformation": "module/import namespace only",
|
|
2970
|
+
"source_sha256": "fd7d15ce26afcff6b7fb79bd3f76840317231ca3f5bc0e78a8528a883c000568",
|
|
2971
|
+
"target_template_sha256": "27312404c4bb50b953c23ac60dec83805950f17593e13e623bbfc6bd6423308d"
|
|
2972
|
+
},
|
|
2973
|
+
{
|
|
2974
|
+
"source": "backend/internal/common/ruleexpression/decoder.go",
|
|
2975
|
+
"target": "internal/common/ruleexpression/decoder.go",
|
|
2976
|
+
"transformation": "module/import namespace only",
|
|
2977
|
+
"source_sha256": "2ac94ff35a17136d5a792999155efc7eb7c708d561af1a86ef55716156ee8668",
|
|
2978
|
+
"target_template_sha256": "2ac94ff35a17136d5a792999155efc7eb7c708d561af1a86ef55716156ee8668"
|
|
2979
|
+
},
|
|
2980
|
+
{
|
|
2981
|
+
"source": "backend/internal/common/ruleexpression/decoder_test.go",
|
|
2982
|
+
"target": "internal/common/ruleexpression/decoder_test.go",
|
|
2983
|
+
"transformation": "module/import namespace only",
|
|
2984
|
+
"source_sha256": "8ec2295269623c0120826d11405be07fbe9eb408a10263930cc731b742a47947",
|
|
2985
|
+
"target_template_sha256": "8ec2295269623c0120826d11405be07fbe9eb408a10263930cc731b742a47947"
|
|
2986
|
+
},
|
|
2987
|
+
{
|
|
2988
|
+
"source": "backend/internal/common/ruleexpression/errors.go",
|
|
2989
|
+
"target": "internal/common/ruleexpression/errors.go",
|
|
2990
|
+
"transformation": "module/import namespace only",
|
|
2991
|
+
"source_sha256": "2010646b374b09eb36c3a5ef658fe2cc12a3fbfdc517e44bcced4eb68a1bf887",
|
|
2992
|
+
"target_template_sha256": "2010646b374b09eb36c3a5ef658fe2cc12a3fbfdc517e44bcced4eb68a1bf887"
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
"source": "backend/internal/common/ruleexpression/evaluator.go",
|
|
2996
|
+
"target": "internal/common/ruleexpression/evaluator.go",
|
|
2997
|
+
"transformation": "module/import namespace only",
|
|
2998
|
+
"source_sha256": "b88baeea19bbf685930cfe9641a11768ebbfaaa95e43acc9d551f6ba2d3d9161",
|
|
2999
|
+
"target_template_sha256": "b88baeea19bbf685930cfe9641a11768ebbfaaa95e43acc9d551f6ba2d3d9161"
|
|
3000
|
+
},
|
|
3001
|
+
{
|
|
3002
|
+
"source": "backend/internal/common/ruleexpression/evaluator_test.go",
|
|
3003
|
+
"target": "internal/common/ruleexpression/evaluator_test.go",
|
|
3004
|
+
"transformation": "module/import namespace only",
|
|
3005
|
+
"source_sha256": "b8c17131acae51b6388af11cedad5da436fe193c34dba0efa7cadebc44a8c352",
|
|
3006
|
+
"target_template_sha256": "b8c17131acae51b6388af11cedad5da436fe193c34dba0efa7cadebc44a8c352"
|
|
3007
|
+
},
|
|
3008
|
+
{
|
|
3009
|
+
"source": "backend/internal/common/ruleexpression/fuzz_test.go",
|
|
3010
|
+
"target": "internal/common/ruleexpression/fuzz_test.go",
|
|
3011
|
+
"transformation": "module/import namespace only",
|
|
3012
|
+
"source_sha256": "83adda67b7a4a6fbd8899b245d8b673da2efc490e81bf64bd0b98c88e4a6d6f5",
|
|
3013
|
+
"target_template_sha256": "83adda67b7a4a6fbd8899b245d8b673da2efc490e81bf64bd0b98c88e4a6d6f5"
|
|
3014
|
+
},
|
|
3015
|
+
{
|
|
3016
|
+
"source": "backend/internal/common/ruleexpression/limits.go",
|
|
3017
|
+
"target": "internal/common/ruleexpression/limits.go",
|
|
3018
|
+
"transformation": "module/import namespace only",
|
|
3019
|
+
"source_sha256": "2ed4a88583be1f516f77ddc98351a95dfb8e2d5f1823ff4264fcb61b84c4aae4",
|
|
3020
|
+
"target_template_sha256": "2ed4a88583be1f516f77ddc98351a95dfb8e2d5f1823ff4264fcb61b84c4aae4"
|
|
3021
|
+
},
|
|
3022
|
+
{
|
|
3023
|
+
"source": "backend/internal/common/ruleexpression/schema.go",
|
|
3024
|
+
"target": "internal/common/ruleexpression/schema.go",
|
|
3025
|
+
"transformation": "module/import namespace only",
|
|
3026
|
+
"source_sha256": "030802205945324f7e89b86a929a2e34ea243e367d3fcb05ea9968c2c5120712",
|
|
3027
|
+
"target_template_sha256": "030802205945324f7e89b86a929a2e34ea243e367d3fcb05ea9968c2c5120712"
|
|
3028
|
+
},
|
|
3029
|
+
{
|
|
3030
|
+
"source": "backend/internal/common/ruleexpression/schema_test.go",
|
|
3031
|
+
"target": "internal/common/ruleexpression/schema_test.go",
|
|
3032
|
+
"transformation": "module/import namespace only",
|
|
3033
|
+
"source_sha256": "08241db31ab1991f1b46863653488f4c554adee1ba0e461823ab24c107abd270",
|
|
3034
|
+
"target_template_sha256": "08241db31ab1991f1b46863653488f4c554adee1ba0e461823ab24c107abd270"
|
|
3035
|
+
},
|
|
3036
|
+
{
|
|
3037
|
+
"source": "backend/internal/common/runtimeinput/runtime_input.go",
|
|
3038
|
+
"target": "internal/common/runtimeinput/runtime_input.go",
|
|
3039
|
+
"transformation": "module/import namespace only",
|
|
3040
|
+
"source_sha256": "222b31f9520f8698b4a955f90a4a8b1e9153d215f029f008093069d954acfb75",
|
|
3041
|
+
"target_template_sha256": "222b31f9520f8698b4a955f90a4a8b1e9153d215f029f008093069d954acfb75"
|
|
3042
|
+
},
|
|
3043
|
+
{
|
|
3044
|
+
"source": "backend/internal/common/runtimeinput/runtime_input_test.go",
|
|
3045
|
+
"target": "internal/common/runtimeinput/runtime_input_test.go",
|
|
3046
|
+
"transformation": "module/import namespace only",
|
|
3047
|
+
"source_sha256": "1e1cb6423865e89443dc432ab64c9bb55962186a39f6e3b9f9e41a76845ddaa2",
|
|
3048
|
+
"target_template_sha256": "1e1cb6423865e89443dc432ab64c9bb55962186a39f6e3b9f9e41a76845ddaa2"
|
|
3049
|
+
},
|
|
3050
|
+
{
|
|
3051
|
+
"source": "backend/internal/common/semver/errors.go",
|
|
3052
|
+
"target": "internal/common/semver/errors.go",
|
|
3053
|
+
"transformation": "module/import namespace only",
|
|
3054
|
+
"source_sha256": "e908036b1649e46893861cfcb800691981f7348a83ce327b54d5428fc03f107d",
|
|
3055
|
+
"target_template_sha256": "e908036b1649e46893861cfcb800691981f7348a83ce327b54d5428fc03f107d"
|
|
3056
|
+
},
|
|
3057
|
+
{
|
|
3058
|
+
"source": "backend/internal/common/semver/semver.go",
|
|
3059
|
+
"target": "internal/common/semver/semver.go",
|
|
3060
|
+
"transformation": "module/import namespace only",
|
|
3061
|
+
"source_sha256": "11e46057a9287994d0b80a75e157a42a0077c79c42b2f4d21bcc9ffe52fdd731",
|
|
3062
|
+
"target_template_sha256": "11e46057a9287994d0b80a75e157a42a0077c79c42b2f4d21bcc9ffe52fdd731"
|
|
3063
|
+
},
|
|
3064
|
+
{
|
|
3065
|
+
"source": "backend/internal/common/semver/semver_test.go",
|
|
3066
|
+
"target": "internal/common/semver/semver_test.go",
|
|
3067
|
+
"transformation": "module/import namespace only",
|
|
3068
|
+
"source_sha256": "a294492973c2381b9d80bbfaf084b8552b913a692051ba40f45f2aeb645109b3",
|
|
3069
|
+
"target_template_sha256": "a294492973c2381b9d80bbfaf084b8552b913a692051ba40f45f2aeb645109b3"
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
"source": "backend/internal/common/serviceidentity/audience.go",
|
|
3073
|
+
"target": "internal/common/serviceidentity/audience.go",
|
|
3074
|
+
"transformation": "module/import namespace only",
|
|
3075
|
+
"source_sha256": "75001e940a1a60d2531e4994e5a5b35d86e57d55bd991b1c55e34c19f267cda5",
|
|
3076
|
+
"target_template_sha256": "75001e940a1a60d2531e4994e5a5b35d86e57d55bd991b1c55e34c19f267cda5"
|
|
3077
|
+
},
|
|
3078
|
+
{
|
|
3079
|
+
"source": "backend/internal/common/serviceidentity/audience_test.go",
|
|
3080
|
+
"target": "internal/common/serviceidentity/audience_test.go",
|
|
3081
|
+
"transformation": "module/import namespace only",
|
|
3082
|
+
"source_sha256": "85d89eeace7f4df7c4c10c2683e7a35b03ef371b1c968a788ffbde70e5042dab",
|
|
3083
|
+
"target_template_sha256": "85d89eeace7f4df7c4c10c2683e7a35b03ef371b1c968a788ffbde70e5042dab"
|
|
3084
|
+
},
|
|
3085
|
+
{
|
|
3086
|
+
"source": "backend/internal/common/serviceidentity/resource_identifier.go",
|
|
3087
|
+
"target": "internal/common/serviceidentity/resource_identifier.go",
|
|
3088
|
+
"transformation": "module/import namespace only",
|
|
3089
|
+
"source_sha256": "72f5881966b5baa60a5f2a7fbf3de4517a0c64ef229400ac1a563c60fa705f79",
|
|
3090
|
+
"target_template_sha256": "72f5881966b5baa60a5f2a7fbf3de4517a0c64ef229400ac1a563c60fa705f79"
|
|
3091
|
+
},
|
|
3092
|
+
{
|
|
3093
|
+
"source": "backend/internal/common/serviceidentity/resource_identifier_test.go",
|
|
3094
|
+
"target": "internal/common/serviceidentity/resource_identifier_test.go",
|
|
3095
|
+
"transformation": "module/import namespace only",
|
|
3096
|
+
"source_sha256": "a32c620d6a96833c9c9f362c2e96a4374af904bd182fbc9d60ac5d779650d322",
|
|
3097
|
+
"target_template_sha256": "a32c620d6a96833c9c9f362c2e96a4374af904bd182fbc9d60ac5d779650d322"
|
|
3098
|
+
},
|
|
3099
|
+
{
|
|
3100
|
+
"source": "backend/internal/common/tradeno/generator.go",
|
|
3101
|
+
"target": "internal/common/tradeno/generator.go",
|
|
3102
|
+
"transformation": "module/import namespace only",
|
|
3103
|
+
"source_sha256": "0c6f11dc7b229d67de9e0dd7979ac27c10052d18fddbd7f016244783732c1752",
|
|
3104
|
+
"target_template_sha256": "0c6f11dc7b229d67de9e0dd7979ac27c10052d18fddbd7f016244783732c1752"
|
|
3105
|
+
},
|
|
3106
|
+
{
|
|
3107
|
+
"source": "backend/internal/common/tradeno/generator_test.go",
|
|
3108
|
+
"target": "internal/common/tradeno/generator_test.go",
|
|
3109
|
+
"transformation": "module/import namespace only",
|
|
3110
|
+
"source_sha256": "da38546207f50a29ebd02caaae5659a0827a8e73598a58a93331cbbadcae32c2",
|
|
3111
|
+
"target_template_sha256": "da38546207f50a29ebd02caaae5659a0827a8e73598a58a93331cbbadcae32c2"
|
|
3112
|
+
},
|
|
3113
|
+
{
|
|
3114
|
+
"source": "backend/internal/common/tradeno/prefix.go",
|
|
3115
|
+
"target": "internal/common/tradeno/prefix.go",
|
|
3116
|
+
"transformation": "module/import namespace only",
|
|
3117
|
+
"source_sha256": "4cda220d2327931bc7e3e6a1d33078de73c91392e41ed69855f396300b5300c1",
|
|
3118
|
+
"target_template_sha256": "4cda220d2327931bc7e3e6a1d33078de73c91392e41ed69855f396300b5300c1"
|
|
3119
|
+
},
|
|
3120
|
+
{
|
|
3121
|
+
"source": "backend/internal/common/types/asset_url.go",
|
|
3122
|
+
"target": "internal/common/types/asset_url.go",
|
|
3123
|
+
"transformation": "module/import namespace only",
|
|
3124
|
+
"source_sha256": "981679d79b533e153fc34d5112ad848198a1098d64e2b34e69ebe1cd4bf20e6c",
|
|
3125
|
+
"target_template_sha256": "981679d79b533e153fc34d5112ad848198a1098d64e2b34e69ebe1cd4bf20e6c"
|
|
3126
|
+
},
|
|
3127
|
+
{
|
|
3128
|
+
"source": "backend/internal/common/types/billing.go",
|
|
3129
|
+
"target": "internal/common/types/billing.go",
|
|
3130
|
+
"transformation": "module/import namespace only",
|
|
3131
|
+
"source_sha256": "a3f326238b35279a48e2ab64cf451399ab25e32cf19aab23c3164682812ff4f0",
|
|
3132
|
+
"target_template_sha256": "a3f326238b35279a48e2ab64cf451399ab25e32cf19aab23c3164682812ff4f0"
|
|
3133
|
+
},
|
|
3134
|
+
{
|
|
3135
|
+
"source": "backend/internal/common/types/billing_test.go",
|
|
3136
|
+
"target": "internal/common/types/billing_test.go",
|
|
3137
|
+
"transformation": "module/import namespace only",
|
|
3138
|
+
"source_sha256": "da285965543d5068e24d01017960379839082c4fc3051611e0bf91cf9d35e6b7",
|
|
3139
|
+
"target_template_sha256": "da285965543d5068e24d01017960379839082c4fc3051611e0bf91cf9d35e6b7"
|
|
3140
|
+
},
|
|
3141
|
+
{
|
|
3142
|
+
"source": "backend/internal/common/types/country.go",
|
|
3143
|
+
"target": "internal/common/types/country.go",
|
|
3144
|
+
"transformation": "module/import namespace only",
|
|
3145
|
+
"source_sha256": "33d96807cefab1cdefdfb258a8f503609fd615621a9482263bc082dbef2968d3",
|
|
3146
|
+
"target_template_sha256": "33d96807cefab1cdefdfb258a8f503609fd615621a9482263bc082dbef2968d3"
|
|
3147
|
+
},
|
|
3148
|
+
{
|
|
3149
|
+
"source": "backend/internal/common/types/country_test.go",
|
|
3150
|
+
"target": "internal/common/types/country_test.go",
|
|
3151
|
+
"transformation": "module/import namespace only",
|
|
3152
|
+
"source_sha256": "6e23a350474a519ee0e5dac2804af2590bc8b1a7cb274aa591d040b3b95f7346",
|
|
3153
|
+
"target_template_sha256": "6e23a350474a519ee0e5dac2804af2590bc8b1a7cb274aa591d040b3b95f7346"
|
|
3154
|
+
},
|
|
3155
|
+
{
|
|
3156
|
+
"source": "backend/internal/common/types/currency.go",
|
|
3157
|
+
"target": "internal/common/types/currency.go",
|
|
3158
|
+
"transformation": "module/import namespace only",
|
|
3159
|
+
"source_sha256": "0d10fa751a962512eaa6ce71e8277094f63c63ea0a1cc03c57200f66e9ec290b",
|
|
3160
|
+
"target_template_sha256": "0d10fa751a962512eaa6ce71e8277094f63c63ea0a1cc03c57200f66e9ec290b"
|
|
3161
|
+
},
|
|
3162
|
+
{
|
|
3163
|
+
"source": "backend/internal/common/types/identifiers.go",
|
|
3164
|
+
"target": "internal/common/types/identifiers.go",
|
|
3165
|
+
"transformation": "module/import namespace only",
|
|
3166
|
+
"source_sha256": "9a164cea2ef5ee095926dee95d68a048fcdec775a6b9a7bbd72e34bc2bbb0808",
|
|
3167
|
+
"target_template_sha256": "9a164cea2ef5ee095926dee95d68a048fcdec775a6b9a7bbd72e34bc2bbb0808"
|
|
3168
|
+
},
|
|
3169
|
+
{
|
|
3170
|
+
"source": "backend/internal/common/types/operator.go",
|
|
3171
|
+
"target": "internal/common/types/operator.go",
|
|
3172
|
+
"transformation": "module/import namespace only",
|
|
3173
|
+
"source_sha256": "72b055ea2e62d37cc9b332782955b2b2f7874714fd88509e7358396cc83db02e",
|
|
3174
|
+
"target_template_sha256": "72b055ea2e62d37cc9b332782955b2b2f7874714fd88509e7358396cc83db02e"
|
|
3175
|
+
},
|
|
3176
|
+
{
|
|
3177
|
+
"source": "backend/internal/common/types/subscription_entitlement.go",
|
|
3178
|
+
"target": "internal/common/types/subscription_entitlement.go",
|
|
3179
|
+
"transformation": "module/import namespace only",
|
|
3180
|
+
"source_sha256": "a2a139e45f5c29306ab91e43c8beac50b2baa454598290453ed62ae7bb4860c4",
|
|
3181
|
+
"target_template_sha256": "a2a139e45f5c29306ab91e43c8beac50b2baa454598290453ed62ae7bb4860c4"
|
|
3182
|
+
},
|
|
3183
|
+
{
|
|
3184
|
+
"source": "backend/internal/common/types/subscription_entitlement_test.go",
|
|
3185
|
+
"target": "internal/common/types/subscription_entitlement_test.go",
|
|
3186
|
+
"transformation": "module/import namespace only",
|
|
3187
|
+
"source_sha256": "b006ed3e5d576b99ab1ee2afee6748532ff65b2ef7e49e22699e5db3e75bf804",
|
|
3188
|
+
"target_template_sha256": "b006ed3e5d576b99ab1ee2afee6748532ff65b2ef7e49e22699e5db3e75bf804"
|
|
3189
|
+
},
|
|
3190
|
+
{
|
|
3191
|
+
"source": "backend/internal/common/types/tier.go",
|
|
3192
|
+
"target": "internal/common/types/tier.go",
|
|
3193
|
+
"transformation": "module/import namespace only",
|
|
3194
|
+
"source_sha256": "52a621522013175f5ab8d2e1ce06bd1bc8c172d80f35718adf1599e1fea628eb",
|
|
3195
|
+
"target_template_sha256": "52a621522013175f5ab8d2e1ce06bd1bc8c172d80f35718adf1599e1fea628eb"
|
|
3196
|
+
},
|
|
3197
|
+
{
|
|
3198
|
+
"source": "backend/internal/common/types/types.go",
|
|
3199
|
+
"target": "internal/common/types/types.go",
|
|
3200
|
+
"transformation": "module/import namespace only",
|
|
3201
|
+
"source_sha256": "63461d5e19dcc0a77840b91d698dc034e8bce840c9214fa603a546b622de2826",
|
|
3202
|
+
"target_template_sha256": "63461d5e19dcc0a77840b91d698dc034e8bce840c9214fa603a546b622de2826"
|
|
3203
|
+
},
|
|
3204
|
+
{
|
|
3205
|
+
"source": "backend/internal/common/types/types_test.go",
|
|
3206
|
+
"target": "internal/common/types/types_test.go",
|
|
3207
|
+
"transformation": "module/import namespace only",
|
|
3208
|
+
"source_sha256": "b0ab9cb6504b9068d12d489ca1aa2b4a881447c3efc2f52226bd76bcf4cd959b",
|
|
3209
|
+
"target_template_sha256": "b0ab9cb6504b9068d12d489ca1aa2b4a881447c3efc2f52226bd76bcf4cd959b"
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
"source": "backend/internal/common/utils/constants.go",
|
|
3213
|
+
"target": "internal/common/utils/constants.go",
|
|
3214
|
+
"transformation": "module/import namespace only",
|
|
3215
|
+
"source_sha256": "e045a9cd3ea28cca45db29f63208b8365678e1908730d2b8bf7da2163d39c6a1",
|
|
3216
|
+
"target_template_sha256": "e045a9cd3ea28cca45db29f63208b8365678e1908730d2b8bf7da2163d39c6a1"
|
|
3217
|
+
},
|
|
3218
|
+
{
|
|
3219
|
+
"source": "backend/internal/common/utils/crypto.go",
|
|
3220
|
+
"target": "internal/common/utils/crypto.go",
|
|
3221
|
+
"transformation": "module/import namespace only",
|
|
3222
|
+
"source_sha256": "97e6ce46d74a0b443ba7fcac0c765416e1d5789c752f9979c825e0626056be74",
|
|
3223
|
+
"target_template_sha256": "97e6ce46d74a0b443ba7fcac0c765416e1d5789c752f9979c825e0626056be74"
|
|
3224
|
+
},
|
|
3225
|
+
{
|
|
3226
|
+
"source": "backend/internal/common/utils/crypto_test.go",
|
|
3227
|
+
"target": "internal/common/utils/crypto_test.go",
|
|
3228
|
+
"transformation": "module/import namespace only",
|
|
3229
|
+
"source_sha256": "256098a1e7eb11ca241aa4c7bfaebbb53536b7d2912ca7e8c89f4ade3c6c44e3",
|
|
3230
|
+
"target_template_sha256": "256098a1e7eb11ca241aa4c7bfaebbb53536b7d2912ca7e8c89f4ade3c6c44e3"
|
|
3231
|
+
},
|
|
3232
|
+
{
|
|
3233
|
+
"source": "backend/internal/common/utils/duration.go",
|
|
3234
|
+
"target": "internal/common/utils/duration.go",
|
|
3235
|
+
"transformation": "module/import namespace only",
|
|
3236
|
+
"source_sha256": "148ee9da2ba4749bc8161a5bebdcd7f0361669f350967680055bc53c3b0fab89",
|
|
3237
|
+
"target_template_sha256": "148ee9da2ba4749bc8161a5bebdcd7f0361669f350967680055bc53c3b0fab89"
|
|
3238
|
+
},
|
|
3239
|
+
{
|
|
3240
|
+
"source": "backend/internal/common/utils/helpers.go",
|
|
3241
|
+
"target": "internal/common/utils/helpers.go",
|
|
3242
|
+
"transformation": "module/import namespace only",
|
|
3243
|
+
"source_sha256": "a46423fe03a8b5e70dbee80d4e1382bb161beb733e68e24dd4387a4be21528ba",
|
|
3244
|
+
"target_template_sha256": "a46423fe03a8b5e70dbee80d4e1382bb161beb733e68e24dd4387a4be21528ba"
|
|
3245
|
+
},
|
|
3246
|
+
{
|
|
3247
|
+
"source": "backend/internal/common/utils/json.go",
|
|
3248
|
+
"target": "internal/common/utils/json.go",
|
|
3249
|
+
"transformation": "module/import namespace only",
|
|
3250
|
+
"source_sha256": "0a24622eccbf6df4fc2c5c0ef62f75df1233a838c7fcffec9e9dff9a0d55dd71",
|
|
3251
|
+
"target_template_sha256": "0a24622eccbf6df4fc2c5c0ef62f75df1233a838c7fcffec9e9dff9a0d55dd71"
|
|
3252
|
+
},
|
|
3253
|
+
{
|
|
3254
|
+
"source": "backend/internal/common/utils/json_test.go",
|
|
3255
|
+
"target": "internal/common/utils/json_test.go",
|
|
3256
|
+
"transformation": "module/import namespace only",
|
|
3257
|
+
"source_sha256": "36d9a4ad1a4c7a7b0bdfbfc6d792675e6b5fffdf75c54ad7369a44546251c5e6",
|
|
3258
|
+
"target_template_sha256": "36d9a4ad1a4c7a7b0bdfbfc6d792675e6b5fffdf75c54ad7369a44546251c5e6"
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
"source": "backend/internal/common/utils/pagination.go",
|
|
3262
|
+
"target": "internal/common/utils/pagination.go",
|
|
3263
|
+
"transformation": "module/import namespace only",
|
|
3264
|
+
"source_sha256": "63e7a7e87e8540a3ee72ceba0818019f5978a2829ff47f7812aea758cac33823",
|
|
3265
|
+
"target_template_sha256": "1c3746409398061d5ac8e1ac698da238e8cead38e3b945ce0f9b964f02975ab0"
|
|
3266
|
+
},
|
|
3267
|
+
{
|
|
3268
|
+
"source": "backend/internal/common/utils/pagination_test.go",
|
|
3269
|
+
"target": "internal/common/utils/pagination_test.go",
|
|
3270
|
+
"transformation": "module/import namespace only",
|
|
3271
|
+
"source_sha256": "1389de2e43b81920f529d6a4fbeb0ca1c15a4e62d29455eb2bd33346e4f8c7c0",
|
|
3272
|
+
"target_template_sha256": "8015df9c5bde2019e89c0a4e0fe92a2c69b493c83c214c74ca9a6476b2e2e252"
|
|
3273
|
+
},
|
|
3274
|
+
{
|
|
3275
|
+
"source": "backend/internal/common/utils/pointer.go",
|
|
3276
|
+
"target": "internal/common/utils/pointer.go",
|
|
3277
|
+
"transformation": "module/import namespace only",
|
|
3278
|
+
"source_sha256": "f832bca0770b97c06d15cd618b32b98efe8c9c061fb77657db5020002db93db2",
|
|
3279
|
+
"target_template_sha256": "f832bca0770b97c06d15cd618b32b98efe8c9c061fb77657db5020002db93db2"
|
|
3280
|
+
},
|
|
3281
|
+
{
|
|
3282
|
+
"source": "backend/internal/common/utils/pointer_test.go",
|
|
3283
|
+
"target": "internal/common/utils/pointer_test.go",
|
|
3284
|
+
"transformation": "module/import namespace only",
|
|
3285
|
+
"source_sha256": "78f8ea0d0fb61d466d2e8dc1d9c512c2f18f4ee176bfc1ed131265bcc0780028",
|
|
3286
|
+
"target_template_sha256": "78f8ea0d0fb61d466d2e8dc1d9c512c2f18f4ee176bfc1ed131265bcc0780028"
|
|
3287
|
+
},
|
|
3288
|
+
{
|
|
3289
|
+
"source": "backend/internal/common/utils/slice.go",
|
|
3290
|
+
"target": "internal/common/utils/slice.go",
|
|
3291
|
+
"transformation": "module/import namespace only",
|
|
3292
|
+
"source_sha256": "ffd1c4f1d2439c80ebfee2734d7eb2f533025061c0fc90166859859e0eacfd5b",
|
|
3293
|
+
"target_template_sha256": "ffd1c4f1d2439c80ebfee2734d7eb2f533025061c0fc90166859859e0eacfd5b"
|
|
3294
|
+
},
|
|
3295
|
+
{
|
|
3296
|
+
"source": "backend/internal/common/utils/snowflake.go",
|
|
3297
|
+
"target": "internal/common/utils/snowflake.go",
|
|
3298
|
+
"transformation": "module/import namespace only",
|
|
3299
|
+
"source_sha256": "aa1841a79d58e7b647028c4ebe402a72c45eef00665cf3bff6877d73e9263ae6",
|
|
3300
|
+
"target_template_sha256": "aa1841a79d58e7b647028c4ebe402a72c45eef00665cf3bff6877d73e9263ae6"
|
|
3301
|
+
},
|
|
3302
|
+
{
|
|
3303
|
+
"source": "backend/internal/common/utils/snowflake_test.go",
|
|
3304
|
+
"target": "internal/common/utils/snowflake_test.go",
|
|
3305
|
+
"transformation": "module/import namespace only",
|
|
3306
|
+
"source_sha256": "6b354401f6023e02d52179c463afb92dc5efdca096f551f42e8eb8a3692d0398",
|
|
3307
|
+
"target_template_sha256": "6b354401f6023e02d52179c463afb92dc5efdca096f551f42e8eb8a3692d0398"
|
|
3308
|
+
},
|
|
3309
|
+
{
|
|
3310
|
+
"source": "backend/internal/common/utils/string.go",
|
|
3311
|
+
"target": "internal/common/utils/string.go",
|
|
3312
|
+
"transformation": "module/import namespace only",
|
|
3313
|
+
"source_sha256": "cd94ada8de1d107ed97d7f8f2632cb17cb76eb7ccf12cd8d3d2f4c0a54331624",
|
|
3314
|
+
"target_template_sha256": "cd94ada8de1d107ed97d7f8f2632cb17cb76eb7ccf12cd8d3d2f4c0a54331624"
|
|
3315
|
+
},
|
|
3316
|
+
{
|
|
3317
|
+
"source": "backend/internal/common/utils/timefmt.go",
|
|
3318
|
+
"target": "internal/common/utils/timefmt.go",
|
|
3319
|
+
"transformation": "module/import namespace only",
|
|
3320
|
+
"source_sha256": "3d2613400dafd9474d927675c8fab35ba8f29348901847dd6095f6ae2b21071e",
|
|
3321
|
+
"target_template_sha256": "3d2613400dafd9474d927675c8fab35ba8f29348901847dd6095f6ae2b21071e"
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
"source": "backend/internal/common/validator/validator.go",
|
|
3325
|
+
"target": "internal/common/validator/validator.go",
|
|
3326
|
+
"transformation": "module/import namespace only",
|
|
3327
|
+
"source_sha256": "c892eb66e8486e1f412d7673892bde6b9012d3bce26193da45705ac78dbcb722",
|
|
3328
|
+
"target_template_sha256": "c892eb66e8486e1f412d7673892bde6b9012d3bce26193da45705ac78dbcb722"
|
|
3329
|
+
},
|
|
3330
|
+
{
|
|
3331
|
+
"source": "backend/internal/common/validator/validator_test.go",
|
|
3332
|
+
"target": "internal/common/validator/validator_test.go",
|
|
3333
|
+
"transformation": "module/import namespace only",
|
|
3334
|
+
"source_sha256": "c2b58dc569f5f6c8a282f0258ea1745da472eb73a3c957e56038c232413f6fcc",
|
|
3335
|
+
"target_template_sha256": "c2b58dc569f5f6c8a282f0258ea1745da472eb73a3c957e56038c232413f6fcc"
|
|
3336
|
+
},
|
|
3337
|
+
{
|
|
3338
|
+
"source": "backend/internal/common/youtubeapi/client.go",
|
|
3339
|
+
"target": "internal/common/youtubeapi/client.go",
|
|
3340
|
+
"transformation": "module/import namespace only",
|
|
3341
|
+
"source_sha256": "f09f06e6fa3d669588bda49495cb81c1e6c77c9daa5628a112b720a9149a6578",
|
|
3342
|
+
"target_template_sha256": "11a1e9f57dbd2ea04a8feb3bd1bb44ed673e48ecb387d78a9f1349fb1c04e257"
|
|
3343
|
+
},
|
|
3344
|
+
{
|
|
3345
|
+
"source": "backend/pkg/apierror/error.go",
|
|
3346
|
+
"target": "pkg/apierror/error.go",
|
|
3347
|
+
"transformation": "module/import namespace only",
|
|
3348
|
+
"source_sha256": "4ce60a1e9fee202939a21db34a08009845c727f45fa26e47042dd5281759c8f6",
|
|
3349
|
+
"target_template_sha256": "4ce60a1e9fee202939a21db34a08009845c727f45fa26e47042dd5281759c8f6"
|
|
3350
|
+
},
|
|
3351
|
+
{
|
|
3352
|
+
"source": "backend/pkg/apierror/error_code.go",
|
|
3353
|
+
"target": "pkg/apierror/error_code.go",
|
|
3354
|
+
"transformation": "module/import namespace only",
|
|
3355
|
+
"source_sha256": "93c12930ae4461473729efe6f50cf646513d94b41de1206a9ea14a932899d2ab",
|
|
3356
|
+
"target_template_sha256": "93c12930ae4461473729efe6f50cf646513d94b41de1206a9ea14a932899d2ab"
|
|
3357
|
+
},
|
|
3358
|
+
{
|
|
3359
|
+
"source": "backend/pkg/apierror/error_test.go",
|
|
3360
|
+
"target": "pkg/apierror/error_test.go",
|
|
3361
|
+
"transformation": "module/import namespace only",
|
|
3362
|
+
"source_sha256": "e5506d070c2ea2052a961484661105854d2b32f31daaef6acd7218b40fa10e4b",
|
|
3363
|
+
"target_template_sha256": "e5506d070c2ea2052a961484661105854d2b32f31daaef6acd7218b40fa10e4b"
|
|
3364
|
+
},
|
|
3365
|
+
{
|
|
3366
|
+
"source": "backend/pkg/apierror/error_type.go",
|
|
3367
|
+
"target": "pkg/apierror/error_type.go",
|
|
3368
|
+
"transformation": "module/import namespace only",
|
|
3369
|
+
"source_sha256": "290129346bc5de740d022e068c272efd95410d3682e7f4daf3444913d522e213",
|
|
3370
|
+
"target_template_sha256": "290129346bc5de740d022e068c272efd95410d3682e7f4daf3444913d522e213"
|
|
3371
|
+
},
|
|
3372
|
+
{
|
|
3373
|
+
"source": "backend/pkg/apierror/http_response.go",
|
|
3374
|
+
"target": "pkg/apierror/http_response.go",
|
|
3375
|
+
"transformation": "module/import namespace only",
|
|
3376
|
+
"source_sha256": "b39c8e3634458008f4fd33a54d095608a6b29077ead3c2776ce7991586bbe896",
|
|
3377
|
+
"target_template_sha256": "b39c8e3634458008f4fd33a54d095608a6b29077ead3c2776ce7991586bbe896"
|
|
3378
|
+
},
|
|
3379
|
+
{
|
|
3380
|
+
"source": "backend/pkg/apierror/http_response_test.go",
|
|
3381
|
+
"target": "pkg/apierror/http_response_test.go",
|
|
3382
|
+
"transformation": "module/import namespace only",
|
|
3383
|
+
"source_sha256": "de6cf90075834ff86e4d12ffa6497a86662623eaddb59326f36e7cc80fba34d1",
|
|
3384
|
+
"target_template_sha256": "de6cf90075834ff86e4d12ffa6497a86662623eaddb59326f36e7cc80fba34d1"
|
|
3385
|
+
},
|
|
3386
|
+
{
|
|
3387
|
+
"source": "backend/internal/platform/iam/domain/action.go",
|
|
3388
|
+
"target": "internal/integrations/onex/iam/action.go",
|
|
3389
|
+
"transformation": "module/import namespace only",
|
|
3390
|
+
"source_sha256": "c1001e19314df97a1890be0f393b896e5fefb9df7404e6a94106e99f16512082",
|
|
3391
|
+
"target_template_sha256": "c1001e19314df97a1890be0f393b896e5fefb9df7404e6a94106e99f16512082"
|
|
3392
|
+
},
|
|
3393
|
+
{
|
|
3394
|
+
"source": "backend/internal/platform/iam/domain/action_test.go",
|
|
3395
|
+
"target": "internal/integrations/onex/iam/action_test.go",
|
|
3396
|
+
"transformation": "module/import namespace only",
|
|
3397
|
+
"source_sha256": "c9dd7bf8631b7a4b352e1b8a54b2bc8a5c16de0a41156946e997f7829a643fb0",
|
|
3398
|
+
"target_template_sha256": "c9dd7bf8631b7a4b352e1b8a54b2bc8a5c16de0a41156946e997f7829a643fb0"
|
|
3399
|
+
},
|
|
3400
|
+
{
|
|
3401
|
+
"source": "backend/internal/platform/iam/domain/administrator_bootstrap.go",
|
|
3402
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3403
|
+
"source_sha256": "ab292e4a2f47d2391de5223689801e9557e25b5b534c9fea753c320b811143ad"
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
"source": "backend/internal/platform/iam/domain/authorization_consistency_token.go",
|
|
3407
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3408
|
+
"source_sha256": "eca8fcdbe3563c08598a1283caf038f172aad8ab8e9306ad389d85c142f27382"
|
|
3409
|
+
},
|
|
3410
|
+
{
|
|
3411
|
+
"source": "backend/internal/platform/iam/domain/authorization_projection.go",
|
|
3412
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3413
|
+
"source_sha256": "10f86dd66bd83b7bc78edfd6d92c8ab8f1b9bf8f41cdaecb3906b0301a1dab1c"
|
|
3414
|
+
},
|
|
3415
|
+
{
|
|
3416
|
+
"source": "backend/internal/platform/iam/domain/condition.go",
|
|
3417
|
+
"target": "internal/integrations/onex/iam/condition.go",
|
|
3418
|
+
"transformation": "module/import namespace only",
|
|
3419
|
+
"source_sha256": "350412466404de83a3e233960ffe8b7f242ef21f697b37ecd4bbaf3079dcb96e",
|
|
3420
|
+
"target_template_sha256": "350412466404de83a3e233960ffe8b7f242ef21f697b37ecd4bbaf3079dcb96e"
|
|
3421
|
+
},
|
|
3422
|
+
{
|
|
3423
|
+
"source": "backend/internal/platform/iam/domain/credential_runtime_repository.go",
|
|
3424
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3425
|
+
"source_sha256": "c3399a0649a88a47444fe1ee72096b26d2f0dba426a256ea7a929b651a91ba6c"
|
|
3426
|
+
},
|
|
3427
|
+
{
|
|
3428
|
+
"source": "backend/internal/platform/iam/domain/decision.go",
|
|
3429
|
+
"target": "internal/integrations/onex/iam/decision.go",
|
|
3430
|
+
"transformation": "module/import namespace only",
|
|
3431
|
+
"source_sha256": "5d1a9c527fe2288b22f0f35ceebddc87f0bc967aafaf3da7ac945107ecfc5a35",
|
|
3432
|
+
"target_template_sha256": "5d1a9c527fe2288b22f0f35ceebddc87f0bc967aafaf3da7ac945107ecfc5a35"
|
|
3433
|
+
},
|
|
3434
|
+
{
|
|
3435
|
+
"source": "backend/internal/platform/iam/domain/enum.go",
|
|
3436
|
+
"target": "internal/integrations/onex/iam/enum.go",
|
|
3437
|
+
"transformation": "module/import namespace only",
|
|
3438
|
+
"source_sha256": "276eac0a35d8f6265e05c0e408eef7008171164432437bcc97f71fcf5dea5a19",
|
|
3439
|
+
"target_template_sha256": "276eac0a35d8f6265e05c0e408eef7008171164432437bcc97f71fcf5dea5a19"
|
|
3440
|
+
},
|
|
3441
|
+
{
|
|
3442
|
+
"source": "backend/internal/platform/iam/domain/errors.go",
|
|
3443
|
+
"target": "internal/integrations/onex/iam/errors.go",
|
|
3444
|
+
"transformation": "module/import namespace only",
|
|
3445
|
+
"source_sha256": "9bbdbea9c0a24ee37e5cd45b68a7837ddc6b8cd8c6f508c92b9b7edcd2ec1ad2",
|
|
3446
|
+
"target_template_sha256": "9bbdbea9c0a24ee37e5cd45b68a7837ddc6b8cd8c6f508c92b9b7edcd2ec1ad2"
|
|
3447
|
+
},
|
|
3448
|
+
{
|
|
3449
|
+
"source": "backend/internal/platform/iam/domain/events.go",
|
|
3450
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3451
|
+
"source_sha256": "cee6c91c93ba93200060ac10337cc7ad16eac858ab76d88969264fa88770993c"
|
|
3452
|
+
},
|
|
3453
|
+
{
|
|
3454
|
+
"source": "backend/internal/platform/iam/domain/model.go",
|
|
3455
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3456
|
+
"source_sha256": "3610805ddaae6edf35796f5162a167e7d31151de1259b8abe8da00d221f323c3"
|
|
3457
|
+
},
|
|
3458
|
+
{
|
|
3459
|
+
"source": "backend/internal/platform/iam/domain/organization_provisioning_repository.go",
|
|
3460
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3461
|
+
"source_sha256": "858c21a8b8cecb744586feeee0e83a7eb19f4d82f011d42fdf6b71cfe343e37e"
|
|
3462
|
+
},
|
|
3463
|
+
{
|
|
3464
|
+
"source": "backend/internal/platform/iam/domain/owner_resource.go",
|
|
3465
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3466
|
+
"source_sha256": "ce85607d6c2423743cc14f58065fe2d387e98e9df91990f626784131dd62f7df"
|
|
3467
|
+
},
|
|
3468
|
+
{
|
|
3469
|
+
"source": "backend/internal/platform/iam/domain/owner_resource_test.go",
|
|
3470
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3471
|
+
"source_sha256": "cf267ea02453261c92e0cd4545afa06d52113b6ce238893125a278cc5a469e92"
|
|
3472
|
+
},
|
|
3473
|
+
{
|
|
3474
|
+
"source": "backend/internal/platform/iam/domain/principal_owner.go",
|
|
3475
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3476
|
+
"source_sha256": "31669fe56c8ee21846c42baf6359011d57b4f42210d553c4339f741bb689a52d"
|
|
3477
|
+
},
|
|
3478
|
+
{
|
|
3479
|
+
"source": "backend/internal/platform/iam/domain/principal_owner_repository.go",
|
|
3480
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3481
|
+
"source_sha256": "4ea81cf1b36fc28aafaf0b5ec77afcb773311a229ccecb85789492d6c7b42ed7"
|
|
3482
|
+
},
|
|
3483
|
+
{
|
|
3484
|
+
"source": "backend/internal/platform/iam/domain/product_context.go",
|
|
3485
|
+
"target": "internal/integrations/onex/iam/product_context.go",
|
|
3486
|
+
"transformation": "module/import namespace only",
|
|
3487
|
+
"source_sha256": "e554d6347ea7090b162930028700f73493084a1df0d08c96f92499fcb373d42f",
|
|
3488
|
+
"target_template_sha256": "e554d6347ea7090b162930028700f73493084a1df0d08c96f92499fcb373d42f"
|
|
3489
|
+
},
|
|
3490
|
+
{
|
|
3491
|
+
"source": "backend/internal/platform/iam/domain/public_reference.go",
|
|
3492
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3493
|
+
"source_sha256": "1f8f15e5303302ec30a7f407cb5c60d034f201e39bda1b251732a379e2ab557e"
|
|
3494
|
+
},
|
|
3495
|
+
{
|
|
3496
|
+
"source": "backend/internal/platform/iam/domain/repository.go",
|
|
3497
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3498
|
+
"source_sha256": "4ce7efddc2e3bb8aa4ec9cd324d615388a311280080364038337059a24e63c7c"
|
|
3499
|
+
},
|
|
3500
|
+
{
|
|
3501
|
+
"source": "backend/internal/platform/iam/domain/repository_test.go",
|
|
3502
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3503
|
+
"source_sha256": "e3869eadcc0182da6cf28dbae6b6e872d25ee8cf6d8a0521bf9ff1343e59277c"
|
|
3504
|
+
},
|
|
3505
|
+
{
|
|
3506
|
+
"source": "backend/internal/platform/iam/domain/resource.go",
|
|
3507
|
+
"target": "internal/integrations/onex/iam/resource.go",
|
|
3508
|
+
"transformation": "module/import namespace only",
|
|
3509
|
+
"source_sha256": "806b72a49600279df306f219691a942a3d43d11a71e2e2198ab38598d66d1a9d",
|
|
3510
|
+
"target_template_sha256": "806b72a49600279df306f219691a942a3d43d11a71e2e2198ab38598d66d1a9d"
|
|
3511
|
+
},
|
|
3512
|
+
{
|
|
3513
|
+
"source": "backend/internal/platform/iam/domain/resource_test.go",
|
|
3514
|
+
"target": "internal/integrations/onex/iam/resource_test.go",
|
|
3515
|
+
"transformation": "module/import namespace only",
|
|
3516
|
+
"source_sha256": "f6174a4823cde7f76aa3924ddd75288724e35f891391c055fe0371fd033e1fbf",
|
|
3517
|
+
"target_template_sha256": "f6174a4823cde7f76aa3924ddd75288724e35f891391c055fe0371fd033e1fbf"
|
|
3518
|
+
},
|
|
3519
|
+
{
|
|
3520
|
+
"source": "backend/internal/platform/iam/domain/security_policy.go",
|
|
3521
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3522
|
+
"source_sha256": "8f15239eac48494588bf80eaf78596a6d0a2c33484cc9c3bfb80237176d5116a"
|
|
3523
|
+
},
|
|
3524
|
+
{
|
|
3525
|
+
"source": "backend/internal/platform/iam/domain/service_account_enum.go",
|
|
3526
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3527
|
+
"source_sha256": "18d5cec4d3b15262c97d51dc52858217ed22987240464286b8496e3cdc7e1874"
|
|
3528
|
+
},
|
|
3529
|
+
{
|
|
3530
|
+
"source": "backend/internal/platform/iam/domain/service_account_model.go",
|
|
3531
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3532
|
+
"source_sha256": "0f1fc47e45b41b1a4959312bbaab1e7af3dfcede2e1e51b5040431ff2a4fa5af"
|
|
3533
|
+
},
|
|
3534
|
+
{
|
|
3535
|
+
"source": "backend/internal/platform/iam/domain/service_account_repository.go",
|
|
3536
|
+
"excluded": "IAM persistence model/repository or unrelated IAM domain implementation; middleware value contract closure retained",
|
|
3537
|
+
"source_sha256": "4834aa7729219075d58c7807d7fc4dfe03d0259351a76214432ea73c07dd8ca8"
|
|
3538
|
+
},
|
|
3539
|
+
{
|
|
3540
|
+
"source": "backend/internal/platform/iam/domain/repository.go",
|
|
3541
|
+
"target": "internal/integrations/onex/iam/principal_record.go",
|
|
3542
|
+
"transformation": "source-adapted",
|
|
3543
|
+
"source_sha256": "4ce7efddc2e3bb8aa4ec9cd324d615388a311280080364038337059a24e63c7c",
|
|
3544
|
+
"target_template_sha256": "7c4a207de0d79d71b7fb4f70ca081bc9fbfc563c5ab61d31e8e745696c8552a2"
|
|
3545
|
+
},
|
|
3546
|
+
{
|
|
3547
|
+
"source": "backend/go.mod",
|
|
3548
|
+
"source_sha256": "a8cae6fd2d3bd7e78e4193c84fcd1d04380d10fe366e75e47938ce27744fba04",
|
|
3549
|
+
"target": "go.mod",
|
|
3550
|
+
"target_template_sha256": "32b78b67d6e2bbc7a81dbe34d54cd4b1f7e26562b571d3da5bab9da0545677e1",
|
|
3551
|
+
"transformation": "module namespace only"
|
|
3552
|
+
},
|
|
3553
|
+
{
|
|
3554
|
+
"source": "backend/go.sum",
|
|
3555
|
+
"source_sha256": "33690cd9034d6ee5b881d42890867290d1c6e01f91e64ed9087f88f0949555e0",
|
|
3556
|
+
"target": "go.sum",
|
|
3557
|
+
"target_template_sha256": "33690cd9034d6ee5b881d42890867290d1c6e01f91e64ed9087f88f0949555e0",
|
|
3558
|
+
"transformation": "unchanged"
|
|
3559
|
+
},
|
|
3560
|
+
{
|
|
3561
|
+
"source": "backend/internal/core/cache/redis.go",
|
|
3562
|
+
"source_sha256": "efed683bad56b67fd6ce9dc33376574f5bad335ad9442ba34f63be31be4c7a15",
|
|
3563
|
+
"target": "internal/core/cache/redis_test.go",
|
|
3564
|
+
"target_template_sha256": "21be5f1685dd2b4a2a69e9b69971784e8c109b0e48220d960e549ccd1fff9864",
|
|
3565
|
+
"transformation": "added regression for source constructor failure connection cleanup"
|
|
3566
|
+
}
|
|
3567
|
+
]
|
|
3568
|
+
}
|