@unifiedcommerce/core 0.4.4 → 0.4.5
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/adapters/console-email.d.ts +23 -0
- package/dist/adapters/console-email.d.ts.map +1 -0
- package/dist/adapters/console-email.js +38 -0
- package/dist/auth/access.d.ts +101 -0
- package/dist/auth/access.d.ts.map +1 -0
- package/dist/auth/access.js +128 -0
- package/dist/auth/auth-schema.d.ts +1475 -0
- package/dist/auth/auth-schema.d.ts.map +1 -0
- package/dist/auth/auth-schema.js +124 -0
- package/dist/auth/middleware.d.ts +5 -0
- package/dist/auth/middleware.d.ts.map +1 -0
- package/dist/auth/middleware.js +141 -0
- package/dist/auth/org.d.ts +22 -0
- package/dist/auth/org.d.ts.map +1 -0
- package/dist/auth/org.js +36 -0
- package/dist/auth/permissions.d.ts +4 -0
- package/dist/auth/permissions.d.ts.map +1 -0
- package/dist/auth/permissions.js +24 -0
- package/dist/auth/setup.d.ts +29 -0
- package/dist/auth/setup.d.ts.map +1 -0
- package/dist/auth/setup.js +117 -0
- package/dist/auth/system-actor.d.ts +7 -0
- package/dist/auth/system-actor.d.ts.map +1 -0
- package/dist/auth/system-actor.js +17 -0
- package/dist/auth/types.d.ts +11 -0
- package/dist/auth/types.d.ts.map +1 -0
- package/dist/auth/types.js +1 -0
- package/dist/config/defaults.d.ts +3 -0
- package/dist/config/defaults.d.ts.map +1 -0
- package/dist/config/defaults.js +80 -0
- package/dist/config/define-config.d.ts +9 -0
- package/dist/config/define-config.d.ts.map +1 -0
- package/dist/config/define-config.js +44 -0
- package/dist/config/types.d.ts +327 -0
- package/dist/config/types.d.ts.map +1 -0
- package/dist/config/types.js +1 -0
- package/dist/generated/plugin-manifest.d.ts +48 -0
- package/dist/generated/plugin-manifest.d.ts.map +1 -0
- package/dist/generated/plugin-manifest.js +20 -0
- package/dist/hooks/checkout-completion.d.ts +58 -0
- package/dist/hooks/checkout-completion.d.ts.map +1 -0
- package/dist/hooks/checkout-completion.js +137 -0
- package/dist/hooks/checkout.d.ts +99 -0
- package/dist/hooks/checkout.d.ts.map +1 -0
- package/dist/hooks/checkout.js +317 -0
- package/dist/hooks/order-emails.d.ts +16 -0
- package/dist/hooks/order-emails.d.ts.map +1 -0
- package/dist/hooks/order-emails.js +44 -0
- package/dist/index.d.ts +77 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +45 -0
- package/dist/interfaces/mcp/agent-prompt.d.ts +16 -0
- package/dist/interfaces/mcp/agent-prompt.d.ts.map +1 -0
- package/dist/interfaces/mcp/agent-prompt.js +172 -0
- package/dist/interfaces/mcp/context-enrichment.d.ts +39 -0
- package/dist/interfaces/mcp/context-enrichment.d.ts.map +1 -0
- package/dist/interfaces/mcp/context-enrichment.js +119 -0
- package/dist/interfaces/mcp/server.d.ts +5 -0
- package/dist/interfaces/mcp/server.d.ts.map +1 -0
- package/dist/interfaces/mcp/server.js +30 -0
- package/dist/interfaces/mcp/tool-builder.d.ts +120 -0
- package/dist/interfaces/mcp/tool-builder.d.ts.map +1 -0
- package/dist/interfaces/mcp/tool-builder.js +224 -0
- package/dist/interfaces/mcp/tools/analytics.d.ts +42 -0
- package/dist/interfaces/mcp/tools/analytics.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/analytics.js +70 -0
- package/dist/interfaces/mcp/tools/cart.d.ts +14 -0
- package/dist/interfaces/mcp/tools/cart.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/cart.js +47 -0
- package/dist/interfaces/mcp/tools/catalog.d.ts +53 -0
- package/dist/interfaces/mcp/tools/catalog.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/catalog.js +284 -0
- package/dist/interfaces/mcp/tools/index.d.ts +3 -0
- package/dist/interfaces/mcp/tools/index.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/index.js +20 -0
- package/dist/interfaces/mcp/tools/inventory.d.ts +27 -0
- package/dist/interfaces/mcp/tools/inventory.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/inventory.js +143 -0
- package/dist/interfaces/mcp/tools/orders.d.ts +18 -0
- package/dist/interfaces/mcp/tools/orders.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/orders.js +82 -0
- package/dist/interfaces/mcp/tools/pricing.d.ts +29 -0
- package/dist/interfaces/mcp/tools/pricing.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/pricing.js +90 -0
- package/dist/interfaces/mcp/tools/promotions.d.ts +44 -0
- package/dist/interfaces/mcp/tools/promotions.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/promotions.js +109 -0
- package/dist/interfaces/mcp/tools/registry.d.ts +32 -0
- package/dist/interfaces/mcp/tools/registry.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/registry.js +55 -0
- package/dist/interfaces/mcp/tools/search.d.ts +14 -0
- package/dist/interfaces/mcp/tools/search.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/search.js +39 -0
- package/dist/interfaces/mcp/tools/webhooks.d.ts +15 -0
- package/dist/interfaces/mcp/tools/webhooks.d.ts.map +1 -0
- package/dist/interfaces/mcp/tools/webhooks.js +48 -0
- package/dist/interfaces/mcp/transport.d.ts +20 -0
- package/dist/interfaces/mcp/transport.d.ts.map +1 -0
- package/dist/interfaces/mcp/transport.js +99 -0
- package/dist/interfaces/rest/customer-portal.d.ts +5 -0
- package/dist/interfaces/rest/customer-portal.d.ts.map +1 -0
- package/dist/interfaces/rest/customer-portal.js +206 -0
- package/dist/interfaces/rest/router.d.ts +164 -0
- package/dist/interfaces/rest/router.d.ts.map +1 -0
- package/dist/interfaces/rest/router.js +259 -0
- package/dist/interfaces/rest/routes/admin-jobs.d.ts +5 -0
- package/dist/interfaces/rest/routes/admin-jobs.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/admin-jobs.js +48 -0
- package/dist/interfaces/rest/routes/audit.d.ts +5 -0
- package/dist/interfaces/rest/routes/audit.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/audit.js +43 -0
- package/dist/interfaces/rest/routes/carts.d.ts +5 -0
- package/dist/interfaces/rest/routes/carts.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/carts.js +55 -0
- package/dist/interfaces/rest/routes/catalog.d.ts +5 -0
- package/dist/interfaces/rest/routes/catalog.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/catalog.js +256 -0
- package/dist/interfaces/rest/routes/checkout.d.ts +5 -0
- package/dist/interfaces/rest/routes/checkout.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/checkout.js +216 -0
- package/dist/interfaces/rest/routes/customers.d.ts +5 -0
- package/dist/interfaces/rest/routes/customers.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/customers.js +74 -0
- package/dist/interfaces/rest/routes/entity-aliases.d.ts +18 -0
- package/dist/interfaces/rest/routes/entity-aliases.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/entity-aliases.js +39 -0
- package/dist/interfaces/rest/routes/inventory.d.ts +5 -0
- package/dist/interfaces/rest/routes/inventory.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/inventory.js +72 -0
- package/dist/interfaces/rest/routes/media.d.ts +5 -0
- package/dist/interfaces/rest/routes/media.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/media.js +65 -0
- package/dist/interfaces/rest/routes/orders.d.ts +5 -0
- package/dist/interfaces/rest/routes/orders.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/orders.js +64 -0
- package/dist/interfaces/rest/routes/payments.d.ts +5 -0
- package/dist/interfaces/rest/routes/payments.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/payments.js +45 -0
- package/dist/interfaces/rest/routes/pricing.d.ts +5 -0
- package/dist/interfaces/rest/routes/pricing.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/pricing.js +48 -0
- package/dist/interfaces/rest/routes/promotions.d.ts +5 -0
- package/dist/interfaces/rest/routes/promotions.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/promotions.js +76 -0
- package/dist/interfaces/rest/routes/search.d.ts +5 -0
- package/dist/interfaces/rest/routes/search.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/search.js +60 -0
- package/dist/interfaces/rest/routes/webhooks.d.ts +5 -0
- package/dist/interfaces/rest/routes/webhooks.d.ts.map +1 -0
- package/dist/interfaces/rest/routes/webhooks.js +39 -0
- package/dist/interfaces/rest/schemas/admin-jobs.d.ts +327 -0
- package/dist/interfaces/rest/schemas/admin-jobs.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/admin-jobs.js +37 -0
- package/dist/interfaces/rest/schemas/audit.d.ts +59 -0
- package/dist/interfaces/rest/schemas/audit.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/audit.js +43 -0
- package/dist/interfaces/rest/schemas/carts.d.ts +1456 -0
- package/dist/interfaces/rest/schemas/carts.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/carts.js +109 -0
- package/dist/interfaces/rest/schemas/catalog.d.ts +5452 -0
- package/dist/interfaces/rest/schemas/catalog.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/catalog.js +397 -0
- package/dist/interfaces/rest/schemas/checkout.d.ts +160 -0
- package/dist/interfaces/rest/schemas/checkout.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/checkout.js +60 -0
- package/dist/interfaces/rest/schemas/customer-portal.d.ts +2203 -0
- package/dist/interfaces/rest/schemas/customer-portal.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/customer-portal.js +177 -0
- package/dist/interfaces/rest/schemas/customers.d.ts +422 -0
- package/dist/interfaces/rest/schemas/customers.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/customers.js +150 -0
- package/dist/interfaces/rest/schemas/inventory.d.ts +561 -0
- package/dist/interfaces/rest/schemas/inventory.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/inventory.js +148 -0
- package/dist/interfaces/rest/schemas/media.d.ts +303 -0
- package/dist/interfaces/rest/schemas/media.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/media.js +69 -0
- package/dist/interfaces/rest/schemas/orders.d.ts +1792 -0
- package/dist/interfaces/rest/schemas/orders.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/orders.js +93 -0
- package/dist/interfaces/rest/schemas/pricing.d.ts +256 -0
- package/dist/interfaces/rest/schemas/pricing.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/pricing.js +72 -0
- package/dist/interfaces/rest/schemas/promotions.d.ts +363 -0
- package/dist/interfaces/rest/schemas/promotions.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/promotions.js +98 -0
- package/dist/interfaces/rest/schemas/responses.d.ts +4086 -0
- package/dist/interfaces/rest/schemas/responses.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/responses.js +74 -0
- package/dist/interfaces/rest/schemas/search.d.ts +247 -0
- package/dist/interfaces/rest/schemas/search.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/search.js +55 -0
- package/dist/interfaces/rest/schemas/shared.d.ts +95 -0
- package/dist/interfaces/rest/schemas/shared.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/shared.js +51 -0
- package/dist/interfaces/rest/schemas/webhooks.d.ts +221 -0
- package/dist/interfaces/rest/schemas/webhooks.d.ts.map +1 -0
- package/dist/interfaces/rest/schemas/webhooks.js +62 -0
- package/dist/interfaces/rest/utils.d.ts +45 -0
- package/dist/interfaces/rest/utils.d.ts.map +1 -0
- package/dist/interfaces/rest/utils.js +71 -0
- package/dist/interfaces/rest/webhook-router.d.ts +41 -0
- package/dist/interfaces/rest/webhook-router.d.ts.map +1 -0
- package/dist/interfaces/rest/webhook-router.js +36 -0
- package/dist/kernel/compensation/executor.d.ts +21 -0
- package/dist/kernel/compensation/executor.d.ts.map +1 -0
- package/dist/kernel/compensation/executor.js +36 -0
- package/dist/kernel/compensation/types.d.ts +25 -0
- package/dist/kernel/compensation/types.d.ts.map +1 -0
- package/dist/kernel/compensation/types.js +1 -0
- package/dist/kernel/database/adapter.d.ts +18 -0
- package/dist/kernel/database/adapter.d.ts.map +1 -0
- package/dist/kernel/database/adapter.js +3 -0
- package/dist/kernel/database/drizzle-db.d.ts +49 -0
- package/dist/kernel/database/drizzle-db.d.ts.map +1 -0
- package/dist/kernel/database/drizzle-db.js +20 -0
- package/dist/kernel/database/migrate.d.ts +38 -0
- package/dist/kernel/database/migrate.d.ts.map +1 -0
- package/dist/kernel/database/migrate.js +61 -0
- package/dist/kernel/database/plugin-types.d.ts +32 -0
- package/dist/kernel/database/plugin-types.d.ts.map +1 -0
- package/dist/kernel/database/plugin-types.js +10 -0
- package/dist/kernel/database/schema.d.ts +24 -0
- package/dist/kernel/database/schema.d.ts.map +1 -0
- package/dist/kernel/database/schema.js +36 -0
- package/dist/kernel/database/scoped-db.d.ts +20 -0
- package/dist/kernel/database/scoped-db.d.ts.map +1 -0
- package/dist/kernel/database/scoped-db.js +62 -0
- package/dist/kernel/database/tx-context.d.ts +15 -0
- package/dist/kernel/database/tx-context.d.ts.map +1 -0
- package/dist/kernel/database/tx-context.js +19 -0
- package/dist/kernel/error-mapper.d.ts +3 -0
- package/dist/kernel/error-mapper.d.ts.map +1 -0
- package/dist/kernel/error-mapper.js +12 -0
- package/dist/kernel/errors.d.ts +38 -0
- package/dist/kernel/errors.d.ts.map +1 -0
- package/dist/kernel/errors.js +69 -0
- package/dist/kernel/factory/repository-factory.d.ts +71 -0
- package/dist/kernel/factory/repository-factory.d.ts.map +1 -0
- package/dist/kernel/factory/repository-factory.js +138 -0
- package/dist/kernel/hooks/create-context.d.ts +25 -0
- package/dist/kernel/hooks/create-context.d.ts.map +1 -0
- package/dist/kernel/hooks/create-context.js +22 -0
- package/dist/kernel/hooks/executor.d.ts +12 -0
- package/dist/kernel/hooks/executor.d.ts.map +1 -0
- package/dist/kernel/hooks/executor.js +50 -0
- package/dist/kernel/hooks/registry.d.ts +28 -0
- package/dist/kernel/hooks/registry.d.ts.map +1 -0
- package/dist/kernel/hooks/registry.js +58 -0
- package/dist/kernel/hooks/types.d.ts +37 -0
- package/dist/kernel/hooks/types.d.ts.map +1 -0
- package/dist/kernel/hooks/types.js +1 -0
- package/dist/kernel/http-error.d.ts +30 -0
- package/dist/kernel/http-error.d.ts.map +1 -0
- package/dist/kernel/http-error.js +35 -0
- package/dist/kernel/jobs/adapter.d.ts +25 -0
- package/dist/kernel/jobs/adapter.d.ts.map +1 -0
- package/dist/kernel/jobs/adapter.js +9 -0
- package/dist/kernel/jobs/drizzle-adapter.d.ts +15 -0
- package/dist/kernel/jobs/drizzle-adapter.d.ts.map +1 -0
- package/dist/kernel/jobs/drizzle-adapter.js +42 -0
- package/dist/kernel/jobs/runner.d.ts +24 -0
- package/dist/kernel/jobs/runner.d.ts.map +1 -0
- package/dist/kernel/jobs/runner.js +114 -0
- package/dist/kernel/jobs/schema.d.ts +280 -0
- package/dist/kernel/jobs/schema.d.ts.map +1 -0
- package/dist/kernel/jobs/schema.js +37 -0
- package/dist/kernel/jobs/types.d.ts +30 -0
- package/dist/kernel/jobs/types.d.ts.map +1 -0
- package/dist/kernel/jobs/types.js +1 -0
- package/dist/kernel/local-api.d.ts +103 -0
- package/dist/kernel/local-api.d.ts.map +1 -0
- package/dist/kernel/local-api.js +89 -0
- package/dist/kernel/plugin/manifest.d.ts +90 -0
- package/dist/kernel/plugin/manifest.d.ts.map +1 -0
- package/dist/kernel/plugin/manifest.js +169 -0
- package/dist/kernel/query/executor.d.ts +21 -0
- package/dist/kernel/query/executor.d.ts.map +1 -0
- package/dist/kernel/query/executor.js +128 -0
- package/dist/kernel/query/registry.d.ts +33 -0
- package/dist/kernel/query/registry.d.ts.map +1 -0
- package/dist/kernel/query/registry.js +20 -0
- package/dist/kernel/result.d.ts +36 -0
- package/dist/kernel/result.d.ts.map +1 -0
- package/dist/kernel/result.js +16 -0
- package/dist/kernel/schema/extra-columns.d.ts +23 -0
- package/dist/kernel/schema/extra-columns.d.ts.map +1 -0
- package/dist/kernel/schema/extra-columns.js +10 -0
- package/dist/kernel/service-registry.d.ts +109 -0
- package/dist/kernel/service-registry.d.ts.map +1 -0
- package/dist/kernel/service-registry.js +26 -0
- package/dist/kernel/service-timing.d.ts +25 -0
- package/dist/kernel/service-timing.d.ts.map +1 -0
- package/dist/kernel/service-timing.js +62 -0
- package/dist/kernel/state-machine/machine.d.ts +24 -0
- package/dist/kernel/state-machine/machine.d.ts.map +1 -0
- package/dist/kernel/state-machine/machine.js +70 -0
- package/dist/modules/analytics/drizzle-adapter.d.ts +13 -0
- package/dist/modules/analytics/drizzle-adapter.d.ts.map +1 -0
- package/dist/modules/analytics/drizzle-adapter.js +358 -0
- package/dist/modules/analytics/hooks.d.ts +13 -0
- package/dist/modules/analytics/hooks.d.ts.map +1 -0
- package/dist/modules/analytics/hooks.js +12 -0
- package/dist/modules/analytics/models.d.ts +14 -0
- package/dist/modules/analytics/models.d.ts.map +1 -0
- package/dist/modules/analytics/models.js +118 -0
- package/dist/modules/analytics/repository/index.d.ts +5 -0
- package/dist/modules/analytics/repository/index.d.ts.map +1 -0
- package/dist/modules/analytics/repository/index.js +1 -0
- package/dist/modules/analytics/service.d.ts +45 -0
- package/dist/modules/analytics/service.d.ts.map +1 -0
- package/dist/modules/analytics/service.js +196 -0
- package/dist/modules/analytics/types.d.ts +119 -0
- package/dist/modules/analytics/types.d.ts.map +1 -0
- package/dist/modules/analytics/types.js +25 -0
- package/dist/modules/audit/hooks.d.ts +7 -0
- package/dist/modules/audit/hooks.d.ts.map +1 -0
- package/dist/modules/audit/hooks.js +67 -0
- package/dist/modules/audit/schema.d.ts +178 -0
- package/dist/modules/audit/schema.d.ts.map +1 -0
- package/dist/modules/audit/schema.js +21 -0
- package/dist/modules/audit/service.d.ts +38 -0
- package/dist/modules/audit/service.d.ts.map +1 -0
- package/dist/modules/audit/service.js +109 -0
- package/dist/modules/cart/access.d.ts +11 -0
- package/dist/modules/cart/access.d.ts.map +1 -0
- package/dist/modules/cart/access.js +18 -0
- package/dist/modules/cart/matcher.d.ts +20 -0
- package/dist/modules/cart/matcher.d.ts.map +1 -0
- package/dist/modules/cart/matcher.js +2 -0
- package/dist/modules/cart/repository/index.d.ts +45 -0
- package/dist/modules/cart/repository/index.d.ts.map +1 -0
- package/dist/modules/cart/repository/index.js +158 -0
- package/dist/modules/cart/schema.d.ts +359 -0
- package/dist/modules/cart/schema.d.ts.map +1 -0
- package/dist/modules/cart/schema.js +40 -0
- package/dist/modules/cart/schemas.d.ts +29 -0
- package/dist/modules/cart/schemas.d.ts.map +1 -0
- package/dist/modules/cart/schemas.js +14 -0
- package/dist/modules/cart/service.d.ts +63 -0
- package/dist/modules/cart/service.d.ts.map +1 -0
- package/dist/modules/cart/service.js +339 -0
- package/dist/modules/catalog/repository/index.d.ts +106 -0
- package/dist/modules/catalog/repository/index.d.ts.map +1 -0
- package/dist/modules/catalog/repository/index.js +455 -0
- package/dist/modules/catalog/schema.d.ts +1193 -0
- package/dist/modules/catalog/schema.d.ts.map +1 -0
- package/dist/modules/catalog/schema.js +149 -0
- package/dist/modules/catalog/schemas.d.ts +81 -0
- package/dist/modules/catalog/schemas.d.ts.map +1 -0
- package/dist/modules/catalog/schemas.js +62 -0
- package/dist/modules/catalog/service.d.ts +160 -0
- package/dist/modules/catalog/service.d.ts.map +1 -0
- package/dist/modules/catalog/service.js +759 -0
- package/dist/modules/customers/repository/index.d.ts +47 -0
- package/dist/modules/customers/repository/index.d.ts.map +1 -0
- package/dist/modules/customers/repository/index.js +206 -0
- package/dist/modules/customers/schema.d.ts +560 -0
- package/dist/modules/customers/schema.d.ts.map +1 -0
- package/dist/modules/customers/schema.js +60 -0
- package/dist/modules/customers/service.d.ts +27 -0
- package/dist/modules/customers/service.d.ts.map +1 -0
- package/dist/modules/customers/service.js +106 -0
- package/dist/modules/fulfillment/repository/index.d.ts +63 -0
- package/dist/modules/fulfillment/repository/index.d.ts.map +1 -0
- package/dist/modules/fulfillment/repository/index.js +268 -0
- package/dist/modules/fulfillment/schema.d.ts +655 -0
- package/dist/modules/fulfillment/schema.d.ts.map +1 -0
- package/dist/modules/fulfillment/schema.js +83 -0
- package/dist/modules/fulfillment/service.d.ts +58 -0
- package/dist/modules/fulfillment/service.d.ts.map +1 -0
- package/dist/modules/fulfillment/service.js +338 -0
- package/dist/modules/fulfillment/types.d.ts +44 -0
- package/dist/modules/fulfillment/types.d.ts.map +1 -0
- package/dist/modules/fulfillment/types.js +1 -0
- package/dist/modules/inventory/repository/index.d.ts +81 -0
- package/dist/modules/inventory/repository/index.d.ts.map +1 -0
- package/dist/modules/inventory/repository/index.js +310 -0
- package/dist/modules/inventory/schema.d.ts +570 -0
- package/dist/modules/inventory/schema.d.ts.map +1 -0
- package/dist/modules/inventory/schema.js +69 -0
- package/dist/modules/inventory/schemas.d.ts +31 -0
- package/dist/modules/inventory/schemas.d.ts.map +1 -0
- package/dist/modules/inventory/schemas.js +28 -0
- package/dist/modules/inventory/service.d.ts +69 -0
- package/dist/modules/inventory/service.d.ts.map +1 -0
- package/dist/modules/inventory/service.js +283 -0
- package/dist/modules/media/adapter.d.ts +16 -0
- package/dist/modules/media/adapter.d.ts.map +1 -0
- package/dist/modules/media/adapter.js +1 -0
- package/dist/modules/media/repository/index.d.ts +35 -0
- package/dist/modules/media/repository/index.d.ts.map +1 -0
- package/dist/modules/media/repository/index.js +176 -0
- package/dist/modules/media/schema.d.ts +289 -0
- package/dist/modules/media/schema.d.ts.map +1 -0
- package/dist/modules/media/schema.js +35 -0
- package/dist/modules/media/service.d.ts +42 -0
- package/dist/modules/media/service.d.ts.map +1 -0
- package/dist/modules/media/service.js +89 -0
- package/dist/modules/orders/repository/index.d.ts +48 -0
- package/dist/modules/orders/repository/index.d.ts.map +1 -0
- package/dist/modules/orders/repository/index.js +199 -0
- package/dist/modules/orders/schema.d.ts +672 -0
- package/dist/modules/orders/schema.d.ts.map +1 -0
- package/dist/modules/orders/schema.js +63 -0
- package/dist/modules/orders/service.d.ts +85 -0
- package/dist/modules/orders/service.d.ts.map +1 -0
- package/dist/modules/orders/service.js +313 -0
- package/dist/modules/orders/stale-order-cleanup.d.ts +27 -0
- package/dist/modules/orders/stale-order-cleanup.d.ts.map +1 -0
- package/dist/modules/orders/stale-order-cleanup.js +55 -0
- package/dist/modules/organization/service.d.ts +53 -0
- package/dist/modules/organization/service.d.ts.map +1 -0
- package/dist/modules/organization/service.js +151 -0
- package/dist/modules/payments/adapter.d.ts +42 -0
- package/dist/modules/payments/adapter.d.ts.map +1 -0
- package/dist/modules/payments/adapter.js +1 -0
- package/dist/modules/payments/repository/index.d.ts +5 -0
- package/dist/modules/payments/repository/index.d.ts.map +1 -0
- package/dist/modules/payments/repository/index.js +1 -0
- package/dist/modules/payments/service.d.ts +23 -0
- package/dist/modules/payments/service.d.ts.map +1 -0
- package/dist/modules/payments/service.js +72 -0
- package/dist/modules/pricing/repository/index.d.ts +34 -0
- package/dist/modules/pricing/repository/index.d.ts.map +1 -0
- package/dist/modules/pricing/repository/index.js +176 -0
- package/dist/modules/pricing/schema.d.ts +565 -0
- package/dist/modules/pricing/schema.d.ts.map +1 -0
- package/dist/modules/pricing/schema.js +57 -0
- package/dist/modules/pricing/schemas.d.ts +37 -0
- package/dist/modules/pricing/schemas.d.ts.map +1 -0
- package/dist/modules/pricing/schemas.js +30 -0
- package/dist/modules/pricing/service.d.ts +62 -0
- package/dist/modules/pricing/service.d.ts.map +1 -0
- package/dist/modules/pricing/service.js +308 -0
- package/dist/modules/promotions/repository/index.d.ts +41 -0
- package/dist/modules/promotions/repository/index.d.ts.map +1 -0
- package/dist/modules/promotions/repository/index.js +204 -0
- package/dist/modules/promotions/schema.d.ts +427 -0
- package/dist/modules/promotions/schema.d.ts.map +1 -0
- package/dist/modules/promotions/schema.js +52 -0
- package/dist/modules/promotions/schemas.d.ts +33 -0
- package/dist/modules/promotions/schemas.d.ts.map +1 -0
- package/dist/modules/promotions/schemas.js +32 -0
- package/dist/modules/promotions/service.d.ts +80 -0
- package/dist/modules/promotions/service.d.ts.map +1 -0
- package/dist/modules/promotions/service.js +347 -0
- package/dist/modules/search/adapter.d.ts +51 -0
- package/dist/modules/search/adapter.d.ts.map +1 -0
- package/dist/modules/search/adapter.js +1 -0
- package/dist/modules/search/hooks.d.ts +8 -0
- package/dist/modules/search/hooks.d.ts.map +1 -0
- package/dist/modules/search/hooks.js +6 -0
- package/dist/modules/search/repository/index.d.ts +5 -0
- package/dist/modules/search/repository/index.d.ts.map +1 -0
- package/dist/modules/search/repository/index.js +1 -0
- package/dist/modules/search/service.d.ts +24 -0
- package/dist/modules/search/service.d.ts.map +1 -0
- package/dist/modules/search/service.js +217 -0
- package/dist/modules/shipping/calculator.d.ts +42 -0
- package/dist/modules/shipping/calculator.d.ts.map +1 -0
- package/dist/modules/shipping/calculator.js +91 -0
- package/dist/modules/shipping/repository/index.d.ts +5 -0
- package/dist/modules/shipping/repository/index.d.ts.map +1 -0
- package/dist/modules/shipping/repository/index.js +1 -0
- package/dist/modules/shipping/service.d.ts +28 -0
- package/dist/modules/shipping/service.d.ts.map +1 -0
- package/dist/modules/shipping/service.js +20 -0
- package/dist/modules/tax/adapter.d.ts +58 -0
- package/dist/modules/tax/adapter.d.ts.map +1 -0
- package/dist/modules/tax/adapter.js +1 -0
- package/dist/modules/tax/repository/index.d.ts +5 -0
- package/dist/modules/tax/repository/index.d.ts.map +1 -0
- package/dist/modules/tax/repository/index.js +1 -0
- package/dist/modules/tax/service.d.ts +19 -0
- package/dist/modules/tax/service.d.ts.map +1 -0
- package/dist/modules/tax/service.js +34 -0
- package/dist/modules/webhooks/hook.d.ts +13 -0
- package/dist/modules/webhooks/hook.d.ts.map +1 -0
- package/dist/modules/webhooks/hook.js +29 -0
- package/dist/modules/webhooks/repository/index.d.ts +40 -0
- package/dist/modules/webhooks/repository/index.d.ts.map +1 -0
- package/dist/modules/webhooks/repository/index.js +175 -0
- package/dist/modules/webhooks/schema.d.ts +404 -0
- package/dist/modules/webhooks/schema.d.ts.map +1 -0
- package/dist/modules/webhooks/schema.js +40 -0
- package/dist/modules/webhooks/service.d.ts +23 -0
- package/dist/modules/webhooks/service.d.ts.map +1 -0
- package/dist/modules/webhooks/service.js +92 -0
- package/dist/modules/webhooks/signing.d.ts +2 -0
- package/dist/modules/webhooks/signing.d.ts.map +1 -0
- package/dist/modules/webhooks/signing.js +5 -0
- package/dist/modules/webhooks/ssrf-guard.d.ts +19 -0
- package/dist/modules/webhooks/ssrf-guard.d.ts.map +1 -0
- package/dist/modules/webhooks/ssrf-guard.js +79 -0
- package/dist/modules/webhooks/tasks.d.ts +16 -0
- package/dist/modules/webhooks/tasks.d.ts.map +1 -0
- package/dist/modules/webhooks/tasks.js +35 -0
- package/dist/modules/webhooks/worker.d.ts +21 -0
- package/dist/modules/webhooks/worker.d.ts.map +1 -0
- package/dist/modules/webhooks/worker.js +113 -0
- package/dist/runtime/commerce.d.ts +110 -0
- package/dist/runtime/commerce.d.ts.map +1 -0
- package/dist/runtime/commerce.js +37 -0
- package/dist/runtime/kernel.d.ts +71 -0
- package/dist/runtime/kernel.d.ts.map +1 -0
- package/dist/runtime/kernel.js +306 -0
- package/dist/runtime/logger.d.ts +11 -0
- package/dist/runtime/logger.d.ts.map +1 -0
- package/dist/runtime/logger.js +32 -0
- package/dist/runtime/shutdown.d.ts +15 -0
- package/dist/runtime/shutdown.d.ts.map +1 -0
- package/dist/runtime/shutdown.js +34 -0
- package/dist/test-utils/create-pglite-adapter.d.ts +32 -0
- package/dist/test-utils/create-pglite-adapter.d.ts.map +1 -0
- package/dist/test-utils/create-pglite-adapter.js +107 -0
- package/dist/test-utils/create-plugin-test-app.d.ts +50 -0
- package/dist/test-utils/create-plugin-test-app.d.ts.map +1 -0
- package/dist/test-utils/create-plugin-test-app.js +74 -0
- package/dist/test-utils/create-repository-test-harness.d.ts +8 -0
- package/dist/test-utils/create-repository-test-harness.d.ts.map +1 -0
- package/dist/test-utils/create-repository-test-harness.js +7 -0
- package/dist/test-utils/create-test-config.d.ts +18 -0
- package/dist/test-utils/create-test-config.d.ts.map +1 -0
- package/dist/test-utils/create-test-config.js +172 -0
- package/dist/test-utils/create-test-kernel.d.ts +3 -0
- package/dist/test-utils/create-test-kernel.d.ts.map +1 -0
- package/dist/test-utils/create-test-kernel.js +5 -0
- package/dist/test-utils/create-test-plugin-context.d.ts +42 -0
- package/dist/test-utils/create-test-plugin-context.d.ts.map +1 -0
- package/dist/test-utils/create-test-plugin-context.js +46 -0
- package/dist/test-utils/rest-api-test-utils.d.ts +64 -0
- package/dist/test-utils/rest-api-test-utils.d.ts.map +1 -0
- package/dist/test-utils/rest-api-test-utils.js +207 -0
- package/dist/test-utils/test-actors.d.ts +15 -0
- package/dist/test-utils/test-actors.d.ts.map +1 -0
- package/dist/test-utils/test-actors.js +57 -0
- package/dist/test-utils/typed-hooks.d.ts +43 -0
- package/dist/test-utils/typed-hooks.d.ts.map +1 -0
- package/dist/test-utils/typed-hooks.js +35 -0
- package/dist/testing.d.ts +14 -0
- package/dist/testing.d.ts.map +1 -0
- package/dist/testing.js +13 -0
- package/dist/types/commerce-types.d.ts +34 -0
- package/dist/types/commerce-types.d.ts.map +1 -0
- package/dist/types/commerce-types.js +1 -0
- package/dist/utils/id.d.ts +2 -0
- package/dist/utils/id.d.ts.map +1 -0
- package/dist/utils/id.js +3 -0
- package/dist/utils/logger.d.ts +3 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +16 -0
- package/dist/utils/pagination.d.ts +11 -0
- package/dist/utils/pagination.d.ts.map +1 -0
- package/dist/utils/pagination.js +15 -0
- package/package.json +1 -1
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { resolveOrgId } from "../../auth/org.js";
|
|
2
|
+
import { CommerceNotFoundError } from "../../kernel/errors.js";
|
|
3
|
+
import { Err, Ok } from "../../kernel/result.js";
|
|
4
|
+
export class CustomerService {
|
|
5
|
+
deps;
|
|
6
|
+
repo;
|
|
7
|
+
constructor(deps) {
|
|
8
|
+
this.deps = deps;
|
|
9
|
+
this.repo = deps.repository;
|
|
10
|
+
}
|
|
11
|
+
async getOrCreateByUserId(orgId, userId, ctx) {
|
|
12
|
+
const existing = await this.repo.findByUserId(orgId, userId, ctx);
|
|
13
|
+
if (existing) {
|
|
14
|
+
return existing;
|
|
15
|
+
}
|
|
16
|
+
const customer = await this.repo.create({
|
|
17
|
+
organizationId: orgId,
|
|
18
|
+
userId,
|
|
19
|
+
metadata: {},
|
|
20
|
+
}, ctx);
|
|
21
|
+
return customer;
|
|
22
|
+
}
|
|
23
|
+
async list(actor, ctx) {
|
|
24
|
+
const orgId = resolveOrgId(actor ?? ctx?.actor ?? null);
|
|
25
|
+
const customers = await this.repo.findAll(orgId, ctx);
|
|
26
|
+
return Ok(customers);
|
|
27
|
+
}
|
|
28
|
+
async getById(id, actor, ctx) {
|
|
29
|
+
const orgId = resolveOrgId(actor ?? ctx?.actor ?? null);
|
|
30
|
+
const customer = await this.repo.findById(orgId, id, ctx);
|
|
31
|
+
if (!customer)
|
|
32
|
+
return Err(new CommerceNotFoundError("Customer not found."));
|
|
33
|
+
return Ok(customer);
|
|
34
|
+
}
|
|
35
|
+
async getByUserId(userId, actor, ctx) {
|
|
36
|
+
const orgId = resolveOrgId(actor ?? ctx?.actor ?? null);
|
|
37
|
+
const customer = await this.getOrCreateByUserId(orgId, userId, ctx);
|
|
38
|
+
return Ok(customer);
|
|
39
|
+
}
|
|
40
|
+
async update(id, updates, actor, ctx) {
|
|
41
|
+
const orgId = resolveOrgId(actor ?? ctx?.actor ?? null);
|
|
42
|
+
const existing = await this.repo.findById(orgId, id, ctx);
|
|
43
|
+
if (!existing)
|
|
44
|
+
return Err(new CommerceNotFoundError("Customer not found."));
|
|
45
|
+
const updated = await this.repo.update(id, updates, ctx);
|
|
46
|
+
if (!updated)
|
|
47
|
+
return Err(new CommerceNotFoundError("Customer not found."));
|
|
48
|
+
return Ok(updated);
|
|
49
|
+
}
|
|
50
|
+
async updateByUserId(userId, updates, actor, ctx) {
|
|
51
|
+
const orgId = resolveOrgId(actor ?? ctx?.actor ?? null);
|
|
52
|
+
const customer = await this.getOrCreateByUserId(orgId, userId, ctx);
|
|
53
|
+
const updated = await this.repo.update(customer.id, updates, ctx);
|
|
54
|
+
if (!updated) {
|
|
55
|
+
return Err(new CommerceNotFoundError("Customer not found."));
|
|
56
|
+
}
|
|
57
|
+
return Ok(updated);
|
|
58
|
+
}
|
|
59
|
+
async getAddresses(userId, actor, ctx) {
|
|
60
|
+
const orgId = resolveOrgId(actor ?? ctx?.actor ?? null);
|
|
61
|
+
const customer = await this.getOrCreateByUserId(orgId, userId, ctx);
|
|
62
|
+
const addresses = await this.repo.findAddressesByCustomerId(customer.id, ctx);
|
|
63
|
+
return Ok(addresses);
|
|
64
|
+
}
|
|
65
|
+
async addAddress(userId, input, actor, ctx) {
|
|
66
|
+
const orgId = resolveOrgId(actor ?? ctx?.actor ?? null);
|
|
67
|
+
const customer = await this.getOrCreateByUserId(orgId, userId, ctx);
|
|
68
|
+
// If new address is default, unset other defaults of same type
|
|
69
|
+
if (input.isDefault) {
|
|
70
|
+
const addresses = await this.repo.findAddressesByCustomerId(customer.id, ctx);
|
|
71
|
+
for (const addr of addresses) {
|
|
72
|
+
if (addr.type === input.type && addr.isDefault) {
|
|
73
|
+
await this.repo.updateAddress(addr.id, { isDefault: false }, ctx);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
const address = await this.repo.createAddress({
|
|
78
|
+
...input,
|
|
79
|
+
customerId: customer.id,
|
|
80
|
+
}, ctx);
|
|
81
|
+
return Ok(address);
|
|
82
|
+
}
|
|
83
|
+
async deleteAddress(userId, addressId, actor, ctx) {
|
|
84
|
+
const orgId = resolveOrgId(actor ?? ctx?.actor ?? null);
|
|
85
|
+
const customer = await this.getOrCreateByUserId(orgId, userId, ctx);
|
|
86
|
+
const addresses = await this.repo.findAddressesByCustomerId(customer.id, ctx);
|
|
87
|
+
const addressExists = addresses.some((addr) => addr.id === addressId);
|
|
88
|
+
if (!addressExists) {
|
|
89
|
+
return Err(new CommerceNotFoundError("Address not found."));
|
|
90
|
+
}
|
|
91
|
+
await this.repo.deleteAddress(addressId, ctx);
|
|
92
|
+
return Ok(undefined);
|
|
93
|
+
}
|
|
94
|
+
async findPOSOperatorByPin(hashedPin, actor, ctx) {
|
|
95
|
+
const orgId = resolveOrgId(actor ?? ctx?.actor ?? null);
|
|
96
|
+
const user = await this.repo.findByPosPin(orgId, hashedPin, ctx);
|
|
97
|
+
if (!user)
|
|
98
|
+
return null;
|
|
99
|
+
return {
|
|
100
|
+
id: user.userId,
|
|
101
|
+
name: [user.firstName, user.lastName].filter(Boolean).join(" ") ||
|
|
102
|
+
user.email ||
|
|
103
|
+
"POS Operator",
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import type { TxContext } from "../../../kernel/database/tx-context.js";
|
|
2
|
+
import type { DrizzleDatabase } from "../../../kernel/database/drizzle-db.js";
|
|
3
|
+
import { fulfillmentRecords, fulfillmentLineItems, fulfillmentEvents } from "../schema.js";
|
|
4
|
+
export type FulfillmentRecord = typeof fulfillmentRecords.$inferSelect;
|
|
5
|
+
export type FulfillmentRecordInsert = typeof fulfillmentRecords.$inferInsert;
|
|
6
|
+
export type FulfillmentLineItem = typeof fulfillmentLineItems.$inferSelect;
|
|
7
|
+
export type FulfillmentLineItemInsert = typeof fulfillmentLineItems.$inferInsert;
|
|
8
|
+
export type FulfillmentEvent = typeof fulfillmentEvents.$inferSelect;
|
|
9
|
+
export type FulfillmentEventInsert = typeof fulfillmentEvents.$inferInsert;
|
|
10
|
+
/**
|
|
11
|
+
* FulfillmentRepository provides type-safe database operations for fulfillments.
|
|
12
|
+
*
|
|
13
|
+
* This repository manages fulfillment records, line item associations, and events.
|
|
14
|
+
* Supports physical shipments, digital deliveries, and access grants.
|
|
15
|
+
* All methods support an optional TxContext parameter for transaction participation.
|
|
16
|
+
*/
|
|
17
|
+
export declare class FulfillmentRepository {
|
|
18
|
+
private readonly db;
|
|
19
|
+
constructor(db: DrizzleDatabase);
|
|
20
|
+
private getDb;
|
|
21
|
+
findById(id: string, ctx?: TxContext): Promise<FulfillmentRecord | undefined>;
|
|
22
|
+
findByOrderId(orderId: string, ctx?: TxContext): Promise<FulfillmentRecord[]>;
|
|
23
|
+
findByCustomerId(customerId: string, ctx?: TxContext): Promise<FulfillmentRecord[]>;
|
|
24
|
+
findByStatus(status: string, ctx?: TxContext): Promise<FulfillmentRecord[]>;
|
|
25
|
+
findByType(type: string, ctx?: TxContext): Promise<FulfillmentRecord[]>;
|
|
26
|
+
findByOrderIdAndStatus(orderId: string, status: string, ctx?: TxContext): Promise<FulfillmentRecord[]>;
|
|
27
|
+
findActiveAccessGrants(customerId: string, ctx?: TxContext): Promise<FulfillmentRecord[]>;
|
|
28
|
+
findAll(options?: {
|
|
29
|
+
limit?: number;
|
|
30
|
+
offset?: number;
|
|
31
|
+
}, ctx?: TxContext): Promise<FulfillmentRecord[]>;
|
|
32
|
+
create(data: FulfillmentRecordInsert, ctx?: TxContext): Promise<FulfillmentRecord>;
|
|
33
|
+
update(id: string, data: Partial<Omit<FulfillmentRecordInsert, "id">>, ctx?: TxContext): Promise<FulfillmentRecord | undefined>;
|
|
34
|
+
updateStatus(id: string, status: string, ctx?: TxContext): Promise<FulfillmentRecord | undefined>;
|
|
35
|
+
delete(id: string, ctx?: TxContext): Promise<boolean>;
|
|
36
|
+
incrementDownloadCount(id: string, ctx?: TxContext): Promise<FulfillmentRecord | undefined>;
|
|
37
|
+
isDownloadAllowed(id: string, ctx?: TxContext): Promise<boolean>;
|
|
38
|
+
deactivateAccessGrant(id: string, ctx?: TxContext): Promise<FulfillmentRecord | undefined>;
|
|
39
|
+
activateAccessGrant(id: string, ctx?: TxContext): Promise<FulfillmentRecord | undefined>;
|
|
40
|
+
isAccessGrantActive(id: string, ctx?: TxContext): Promise<boolean>;
|
|
41
|
+
findLineItemsByFulfillmentId(fulfillmentId: string, ctx?: TxContext): Promise<FulfillmentLineItem[]>;
|
|
42
|
+
findLineItemsByOrderLineItemId(orderLineItemId: string, ctx?: TxContext): Promise<FulfillmentLineItem[]>;
|
|
43
|
+
createLineItem(data: FulfillmentLineItemInsert, ctx?: TxContext): Promise<FulfillmentLineItem>;
|
|
44
|
+
createLineItems(data: FulfillmentLineItemInsert[], ctx?: TxContext): Promise<FulfillmentLineItem[]>;
|
|
45
|
+
deleteLineItemsByFulfillmentId(fulfillmentId: string, ctx?: TxContext): Promise<void>;
|
|
46
|
+
findEventsByFulfillmentId(fulfillmentId: string, ctx?: TxContext): Promise<FulfillmentEvent[]>;
|
|
47
|
+
createEvent(data: FulfillmentEventInsert, ctx?: TxContext): Promise<FulfillmentEvent>;
|
|
48
|
+
recordStatusChange(fulfillmentId: string, fromStatus: string, toStatus: string, actorId?: string, description?: string, ctx?: TxContext): Promise<FulfillmentEvent>;
|
|
49
|
+
findWithLineItems(id: string, ctx?: TxContext): Promise<{
|
|
50
|
+
fulfillment: FulfillmentRecord;
|
|
51
|
+
lineItems: FulfillmentLineItem[];
|
|
52
|
+
} | undefined>;
|
|
53
|
+
findWithEvents(id: string, ctx?: TxContext): Promise<{
|
|
54
|
+
fulfillment: FulfillmentRecord;
|
|
55
|
+
events: FulfillmentEvent[];
|
|
56
|
+
} | undefined>;
|
|
57
|
+
/**
|
|
58
|
+
* Get fulfilled quantity for an order line item.
|
|
59
|
+
* Sums all fulfillment line items linked to the order line item.
|
|
60
|
+
*/
|
|
61
|
+
getFulfilledQuantity(orderLineItemId: string, ctx?: TxContext): Promise<number>;
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/fulfillment/repository/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
import { eq, desc, and, sql } from "drizzle-orm";
|
|
2
|
+
import { fulfillmentRecords, fulfillmentLineItems, fulfillmentEvents, } from "../schema.js";
|
|
3
|
+
/**
|
|
4
|
+
* FulfillmentRepository provides type-safe database operations for fulfillments.
|
|
5
|
+
*
|
|
6
|
+
* This repository manages fulfillment records, line item associations, and events.
|
|
7
|
+
* Supports physical shipments, digital deliveries, and access grants.
|
|
8
|
+
* All methods support an optional TxContext parameter for transaction participation.
|
|
9
|
+
*/
|
|
10
|
+
export class FulfillmentRepository {
|
|
11
|
+
db;
|
|
12
|
+
constructor(db) {
|
|
13
|
+
this.db = db;
|
|
14
|
+
}
|
|
15
|
+
getDb(ctx) {
|
|
16
|
+
return ctx?.tx ?? this.db;
|
|
17
|
+
}
|
|
18
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
19
|
+
// Fulfillment Records
|
|
20
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
21
|
+
async findById(id, ctx) {
|
|
22
|
+
const db = this.getDb(ctx);
|
|
23
|
+
const rows = await db
|
|
24
|
+
.select()
|
|
25
|
+
.from(fulfillmentRecords)
|
|
26
|
+
.where(eq(fulfillmentRecords.id, id));
|
|
27
|
+
return rows[0];
|
|
28
|
+
}
|
|
29
|
+
async findByOrderId(orderId, ctx) {
|
|
30
|
+
const db = this.getDb(ctx);
|
|
31
|
+
return db
|
|
32
|
+
.select()
|
|
33
|
+
.from(fulfillmentRecords)
|
|
34
|
+
.where(eq(fulfillmentRecords.orderId, orderId))
|
|
35
|
+
.orderBy(desc(fulfillmentRecords.createdAt));
|
|
36
|
+
}
|
|
37
|
+
async findByCustomerId(customerId, ctx) {
|
|
38
|
+
const db = this.getDb(ctx);
|
|
39
|
+
return db
|
|
40
|
+
.select()
|
|
41
|
+
.from(fulfillmentRecords)
|
|
42
|
+
.where(eq(fulfillmentRecords.customerId, customerId))
|
|
43
|
+
.orderBy(desc(fulfillmentRecords.createdAt));
|
|
44
|
+
}
|
|
45
|
+
async findByStatus(status, ctx) {
|
|
46
|
+
const db = this.getDb(ctx);
|
|
47
|
+
return db
|
|
48
|
+
.select()
|
|
49
|
+
.from(fulfillmentRecords)
|
|
50
|
+
.where(eq(fulfillmentRecords.status, status))
|
|
51
|
+
.orderBy(desc(fulfillmentRecords.createdAt));
|
|
52
|
+
}
|
|
53
|
+
async findByType(type, ctx) {
|
|
54
|
+
const db = this.getDb(ctx);
|
|
55
|
+
return db
|
|
56
|
+
.select()
|
|
57
|
+
.from(fulfillmentRecords)
|
|
58
|
+
.where(eq(fulfillmentRecords.type, type))
|
|
59
|
+
.orderBy(desc(fulfillmentRecords.createdAt));
|
|
60
|
+
}
|
|
61
|
+
async findByOrderIdAndStatus(orderId, status, ctx) {
|
|
62
|
+
const db = this.getDb(ctx);
|
|
63
|
+
return db
|
|
64
|
+
.select()
|
|
65
|
+
.from(fulfillmentRecords)
|
|
66
|
+
.where(and(eq(fulfillmentRecords.orderId, orderId), eq(fulfillmentRecords.status, status)))
|
|
67
|
+
.orderBy(desc(fulfillmentRecords.createdAt));
|
|
68
|
+
}
|
|
69
|
+
async findActiveAccessGrants(customerId, ctx) {
|
|
70
|
+
const db = this.getDb(ctx);
|
|
71
|
+
return db
|
|
72
|
+
.select()
|
|
73
|
+
.from(fulfillmentRecords)
|
|
74
|
+
.where(and(eq(fulfillmentRecords.customerId, customerId), eq(fulfillmentRecords.type, "access_grant"), eq(fulfillmentRecords.isActive, true)))
|
|
75
|
+
.orderBy(desc(fulfillmentRecords.grantedAt));
|
|
76
|
+
}
|
|
77
|
+
async findAll(options, ctx) {
|
|
78
|
+
const db = this.getDb(ctx);
|
|
79
|
+
let query = db
|
|
80
|
+
.select()
|
|
81
|
+
.from(fulfillmentRecords)
|
|
82
|
+
.orderBy(desc(fulfillmentRecords.createdAt))
|
|
83
|
+
.$dynamic();
|
|
84
|
+
if (options?.limit !== undefined) {
|
|
85
|
+
query = query.limit(options.limit);
|
|
86
|
+
}
|
|
87
|
+
if (options?.offset !== undefined) {
|
|
88
|
+
query = query.offset(options.offset);
|
|
89
|
+
}
|
|
90
|
+
return query;
|
|
91
|
+
}
|
|
92
|
+
async create(data, ctx) {
|
|
93
|
+
const db = this.getDb(ctx);
|
|
94
|
+
const rows = await db.insert(fulfillmentRecords).values(data).returning();
|
|
95
|
+
return rows[0];
|
|
96
|
+
}
|
|
97
|
+
async update(id, data, ctx) {
|
|
98
|
+
const db = this.getDb(ctx);
|
|
99
|
+
const rows = await db
|
|
100
|
+
.update(fulfillmentRecords)
|
|
101
|
+
.set({ ...data, updatedAt: new Date() })
|
|
102
|
+
.where(eq(fulfillmentRecords.id, id))
|
|
103
|
+
.returning();
|
|
104
|
+
return rows[0];
|
|
105
|
+
}
|
|
106
|
+
async updateStatus(id, status, ctx) {
|
|
107
|
+
const data = { status };
|
|
108
|
+
// Set timestamps based on status
|
|
109
|
+
if (status === "shipped") {
|
|
110
|
+
data.shippedAt = new Date();
|
|
111
|
+
}
|
|
112
|
+
else if (status === "delivered") {
|
|
113
|
+
data.deliveredAt = new Date();
|
|
114
|
+
}
|
|
115
|
+
return this.update(id, data, ctx);
|
|
116
|
+
}
|
|
117
|
+
async delete(id, ctx) {
|
|
118
|
+
const db = this.getDb(ctx);
|
|
119
|
+
const result = await db
|
|
120
|
+
.delete(fulfillmentRecords)
|
|
121
|
+
.where(eq(fulfillmentRecords.id, id))
|
|
122
|
+
.returning();
|
|
123
|
+
return result.length > 0;
|
|
124
|
+
}
|
|
125
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
126
|
+
// Digital Delivery Operations
|
|
127
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
128
|
+
async incrementDownloadCount(id, ctx) {
|
|
129
|
+
const db = this.getDb(ctx);
|
|
130
|
+
const rows = await db
|
|
131
|
+
.update(fulfillmentRecords)
|
|
132
|
+
.set({
|
|
133
|
+
downloadCount: sql `${fulfillmentRecords.downloadCount} + 1`,
|
|
134
|
+
updatedAt: new Date(),
|
|
135
|
+
})
|
|
136
|
+
.where(eq(fulfillmentRecords.id, id))
|
|
137
|
+
.returning();
|
|
138
|
+
return rows[0];
|
|
139
|
+
}
|
|
140
|
+
async isDownloadAllowed(id, ctx) {
|
|
141
|
+
const fulfillment = await this.findById(id, ctx);
|
|
142
|
+
if (!fulfillment || fulfillment.type !== "digital")
|
|
143
|
+
return false;
|
|
144
|
+
// Check expiration
|
|
145
|
+
if (fulfillment.downloadExpiresAt &&
|
|
146
|
+
new Date() > fulfillment.downloadExpiresAt) {
|
|
147
|
+
return false;
|
|
148
|
+
}
|
|
149
|
+
// Check download limit
|
|
150
|
+
if (fulfillment.maxDownloads !== null &&
|
|
151
|
+
fulfillment.downloadCount >= fulfillment.maxDownloads) {
|
|
152
|
+
return false;
|
|
153
|
+
}
|
|
154
|
+
return true;
|
|
155
|
+
}
|
|
156
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
157
|
+
// Access Grant Operations
|
|
158
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
159
|
+
async deactivateAccessGrant(id, ctx) {
|
|
160
|
+
return this.update(id, { isActive: false }, ctx);
|
|
161
|
+
}
|
|
162
|
+
async activateAccessGrant(id, ctx) {
|
|
163
|
+
return this.update(id, { isActive: true, grantedAt: new Date() }, ctx);
|
|
164
|
+
}
|
|
165
|
+
async isAccessGrantActive(id, ctx) {
|
|
166
|
+
const fulfillment = await this.findById(id, ctx);
|
|
167
|
+
if (!fulfillment || fulfillment.type !== "access_grant")
|
|
168
|
+
return false;
|
|
169
|
+
if (!fulfillment.isActive)
|
|
170
|
+
return false;
|
|
171
|
+
// Check expiration
|
|
172
|
+
if (fulfillment.expiresAt && new Date() > fulfillment.expiresAt) {
|
|
173
|
+
return false;
|
|
174
|
+
}
|
|
175
|
+
return true;
|
|
176
|
+
}
|
|
177
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
178
|
+
// Fulfillment Line Items
|
|
179
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
180
|
+
async findLineItemsByFulfillmentId(fulfillmentId, ctx) {
|
|
181
|
+
const db = this.getDb(ctx);
|
|
182
|
+
return db
|
|
183
|
+
.select()
|
|
184
|
+
.from(fulfillmentLineItems)
|
|
185
|
+
.where(eq(fulfillmentLineItems.fulfillmentId, fulfillmentId));
|
|
186
|
+
}
|
|
187
|
+
async findLineItemsByOrderLineItemId(orderLineItemId, ctx) {
|
|
188
|
+
const db = this.getDb(ctx);
|
|
189
|
+
return db
|
|
190
|
+
.select()
|
|
191
|
+
.from(fulfillmentLineItems)
|
|
192
|
+
.where(eq(fulfillmentLineItems.orderLineItemId, orderLineItemId));
|
|
193
|
+
}
|
|
194
|
+
async createLineItem(data, ctx) {
|
|
195
|
+
const db = this.getDb(ctx);
|
|
196
|
+
const rows = await db.insert(fulfillmentLineItems).values(data).returning();
|
|
197
|
+
return rows[0];
|
|
198
|
+
}
|
|
199
|
+
async createLineItems(data, ctx) {
|
|
200
|
+
if (data.length === 0)
|
|
201
|
+
return [];
|
|
202
|
+
const db = this.getDb(ctx);
|
|
203
|
+
return db.insert(fulfillmentLineItems).values(data).returning();
|
|
204
|
+
}
|
|
205
|
+
async deleteLineItemsByFulfillmentId(fulfillmentId, ctx) {
|
|
206
|
+
const db = this.getDb(ctx);
|
|
207
|
+
await db
|
|
208
|
+
.delete(fulfillmentLineItems)
|
|
209
|
+
.where(eq(fulfillmentLineItems.fulfillmentId, fulfillmentId));
|
|
210
|
+
}
|
|
211
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
212
|
+
// Fulfillment Events
|
|
213
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
214
|
+
async findEventsByFulfillmentId(fulfillmentId, ctx) {
|
|
215
|
+
const db = this.getDb(ctx);
|
|
216
|
+
return db
|
|
217
|
+
.select()
|
|
218
|
+
.from(fulfillmentEvents)
|
|
219
|
+
.where(eq(fulfillmentEvents.fulfillmentId, fulfillmentId))
|
|
220
|
+
.orderBy(desc(fulfillmentEvents.occurredAt));
|
|
221
|
+
}
|
|
222
|
+
async createEvent(data, ctx) {
|
|
223
|
+
const db = this.getDb(ctx);
|
|
224
|
+
const rows = await db.insert(fulfillmentEvents).values(data).returning();
|
|
225
|
+
return rows[0];
|
|
226
|
+
}
|
|
227
|
+
async recordStatusChange(fulfillmentId, fromStatus, toStatus, actorId, description, ctx) {
|
|
228
|
+
return this.createEvent({
|
|
229
|
+
fulfillmentId,
|
|
230
|
+
eventType: "status_change",
|
|
231
|
+
fromStatus,
|
|
232
|
+
toStatus,
|
|
233
|
+
actorId,
|
|
234
|
+
description,
|
|
235
|
+
}, ctx);
|
|
236
|
+
}
|
|
237
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
238
|
+
// Aggregate Operations
|
|
239
|
+
// ─────────────────────────────────────────────────────────────────────────────
|
|
240
|
+
async findWithLineItems(id, ctx) {
|
|
241
|
+
const fulfillment = await this.findById(id, ctx);
|
|
242
|
+
if (!fulfillment)
|
|
243
|
+
return undefined;
|
|
244
|
+
const lineItems = await this.findLineItemsByFulfillmentId(id, ctx);
|
|
245
|
+
return { fulfillment, lineItems };
|
|
246
|
+
}
|
|
247
|
+
async findWithEvents(id, ctx) {
|
|
248
|
+
const fulfillment = await this.findById(id, ctx);
|
|
249
|
+
if (!fulfillment)
|
|
250
|
+
return undefined;
|
|
251
|
+
const events = await this.findEventsByFulfillmentId(id, ctx);
|
|
252
|
+
return { fulfillment, events };
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* Get fulfilled quantity for an order line item.
|
|
256
|
+
* Sums all fulfillment line items linked to the order line item.
|
|
257
|
+
*/
|
|
258
|
+
async getFulfilledQuantity(orderLineItemId, ctx) {
|
|
259
|
+
const db = this.getDb(ctx);
|
|
260
|
+
const result = await db
|
|
261
|
+
.select({
|
|
262
|
+
total: sql `COALESCE(SUM(${fulfillmentLineItems.quantity}), 0)::int`,
|
|
263
|
+
})
|
|
264
|
+
.from(fulfillmentLineItems)
|
|
265
|
+
.where(eq(fulfillmentLineItems.orderLineItemId, orderLineItemId));
|
|
266
|
+
return result[0]?.total ?? 0;
|
|
267
|
+
}
|
|
268
|
+
}
|