@open-mercato/core 0.6.7 → 0.6.8-develop.6875.1.871a4afc94
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/.turbo/turbo-build.log +2 -2
- package/AGENTS.md +3 -3
- package/agentic/standalone-guide.md +13 -0
- package/dist/bootstrap.js +16 -1
- package/dist/bootstrap.js.map +2 -2
- package/dist/generated/entities/attachment_quota_reservation/index.js +33 -0
- package/dist/generated/entities/attachment_quota_reservation/index.js.map +7 -0
- package/dist/generated/entities/customer_deal_person_link/index.js +2 -0
- package/dist/generated/entities/customer_deal_person_link/index.js.map +2 -2
- package/dist/generated/entities/customer_user_invitation/index.js +2 -0
- package/dist/generated/entities/customer_user_invitation/index.js.map +2 -2
- package/dist/generated/entities/gateway_payment_operation/index.js +2 -0
- package/dist/generated/entities/gateway_payment_operation/index.js.map +2 -2
- package/dist/generated/entities/gateway_transaction/index.js +2 -0
- package/dist/generated/entities/gateway_transaction/index.js.map +2 -2
- package/dist/generated/entities/organization/index.js +2 -0
- package/dist/generated/entities/organization/index.js.map +2 -2
- package/dist/generated/entities/resources_resource/index.js +2 -0
- package/dist/generated/entities/resources_resource/index.js.map +2 -2
- package/dist/generated/entities.ids.generated.js +3 -1
- package/dist/generated/entities.ids.generated.js.map +2 -2
- package/dist/generated/entity-fields-registry.js +23 -0
- package/dist/generated/entity-fields-registry.js.map +2 -2
- package/dist/helpers/integration/salesFixtures.js +31 -2
- package/dist/helpers/integration/salesFixtures.js.map +2 -2
- package/dist/helpers/integration/salesUi.js +5 -0
- package/dist/helpers/integration/salesUi.js.map +2 -2
- package/dist/modules/api_keys/backend/api-keys/page.js +2 -1
- package/dist/modules/api_keys/backend/api-keys/page.js.map +2 -2
- package/dist/modules/api_keys/extension-points.js +16 -0
- package/dist/modules/api_keys/extension-points.js.map +7 -0
- package/dist/modules/attachments/api/route.js +120 -10
- package/dist/modules/attachments/api/route.js.map +2 -2
- package/dist/modules/attachments/backend/config/attachments/page.js +1 -1
- package/dist/modules/attachments/backend/config/attachments/page.js.map +2 -2
- package/dist/modules/attachments/data/entities.js +67 -1
- package/dist/modules/attachments/data/entities.js.map +2 -2
- package/dist/modules/attachments/di.js +7 -1
- package/dist/modules/attachments/di.js.map +2 -2
- package/dist/modules/attachments/fields/attachment.js +1 -1
- package/dist/modules/attachments/fields/attachment.js.map +2 -2
- package/dist/modules/attachments/lib/drivers/index.js.map +1 -1
- package/dist/modules/attachments/lib/drivers/localDriver.js +19 -6
- package/dist/modules/attachments/lib/drivers/localDriver.js.map +2 -2
- package/dist/modules/attachments/lib/quota-recovery-queue.js +9 -0
- package/dist/modules/attachments/lib/quota-recovery-queue.js.map +7 -0
- package/dist/modules/attachments/lib/quota-service.js +224 -0
- package/dist/modules/attachments/lib/quota-service.js.map +7 -0
- package/dist/modules/attachments/lib/upload-limits.js +33 -0
- package/dist/modules/attachments/lib/upload-limits.js.map +2 -2
- package/dist/modules/attachments/migrations/Migration20260709234741_attachments.js +13 -0
- package/dist/modules/attachments/migrations/Migration20260709234741_attachments.js.map +7 -0
- package/dist/modules/attachments/workers/quota-recovery.js +45 -0
- package/dist/modules/attachments/workers/quota-recovery.js.map +7 -0
- package/dist/modules/audit_logs/api/audit-logs/access/route.js +5 -1
- package/dist/modules/audit_logs/api/audit-logs/access/route.js.map +2 -2
- package/dist/modules/audit_logs/api/audit-logs/actions/export/route.js +5 -1
- package/dist/modules/audit_logs/api/audit-logs/actions/export/route.js.map +2 -2
- package/dist/modules/audit_logs/api/audit-logs/actions/route.js +5 -1
- package/dist/modules/audit_logs/api/audit-logs/actions/route.js.map +2 -2
- package/dist/modules/audit_logs/api/audit-logs/readScope.js +12 -0
- package/dist/modules/audit_logs/api/audit-logs/readScope.js.map +7 -0
- package/dist/modules/audit_logs/components/AccessLogsTable.js +2 -1
- package/dist/modules/audit_logs/components/AccessLogsTable.js.map +2 -2
- package/dist/modules/audit_logs/components/AuditLogsActions.js +3 -2
- package/dist/modules/audit_logs/components/AuditLogsActions.js.map +2 -2
- package/dist/modules/audit_logs/extension-points.js +14 -0
- package/dist/modules/audit_logs/extension-points.js.map +7 -0
- package/dist/modules/auth/api/admin/nav.js +17 -4
- package/dist/modules/auth/api/admin/nav.js.map +2 -2
- package/dist/modules/auth/api/profile/route.js +8 -2
- package/dist/modules/auth/api/profile/route.js.map +2 -2
- package/dist/modules/auth/api/users/route.js +8 -19
- package/dist/modules/auth/api/users/route.js.map +2 -2
- package/dist/modules/auth/backend/auth/profile/page.js.map +2 -2
- package/dist/modules/auth/backend/profile/change-password/page.js.map +2 -2
- package/dist/modules/auth/backend/roles/page.js +2 -1
- package/dist/modules/auth/backend/roles/page.js.map +2 -2
- package/dist/modules/auth/backend/settings/page.js +14 -9
- package/dist/modules/auth/backend/settings/page.js.map +2 -2
- package/dist/modules/auth/backend/users/page.js +2 -1
- package/dist/modules/auth/backend/users/page.js.map +2 -2
- package/dist/modules/auth/cli.js +1 -1
- package/dist/modules/auth/cli.js.map +2 -2
- package/dist/modules/auth/components/UserConsentsPanel.js +9 -9
- package/dist/modules/auth/components/UserConsentsPanel.js.map +2 -2
- package/dist/modules/auth/extension-points.js +21 -0
- package/dist/modules/auth/extension-points.js.map +7 -0
- package/dist/modules/auth/frontend/login.js +7 -3
- package/dist/modules/auth/frontend/login.js.map +2 -2
- package/dist/modules/auth/frontend/reset.js +2 -2
- package/dist/modules/auth/frontend/reset.js.map +2 -2
- package/dist/modules/auth/lib/backendChrome.js +45 -29
- package/dist/modules/auth/lib/backendChrome.js.map +2 -2
- package/dist/modules/auth/lib/setup-app.js +17 -2
- package/dist/modules/auth/lib/setup-app.js.map +2 -2
- package/dist/modules/auth/lib/tenantAccess.js +7 -0
- package/dist/modules/auth/lib/tenantAccess.js.map +2 -2
- package/dist/modules/auth/services/rbacService.js +29 -44
- package/dist/modules/auth/services/rbacService.js.map +2 -2
- package/dist/modules/business_rules/api/openmercato-call-options/route.js +85 -0
- package/dist/modules/business_rules/api/openmercato-call-options/route.js.map +7 -0
- package/dist/modules/business_rules/api/rules/route.js +71 -4
- package/dist/modules/business_rules/api/rules/route.js.map +2 -2
- package/dist/modules/business_rules/backend/rules/page.js +2 -1
- package/dist/modules/business_rules/backend/rules/page.js.map +2 -2
- package/dist/modules/business_rules/components/ActionBuilder.js +47 -4
- package/dist/modules/business_rules/components/ActionBuilder.js.map +3 -3
- package/dist/modules/business_rules/components/ActionRow.js +106 -16
- package/dist/modules/business_rules/components/ActionRow.js.map +2 -2
- package/dist/modules/business_rules/components/ConditionRow.js +8 -4
- package/dist/modules/business_rules/components/ConditionRow.js.map +2 -2
- package/dist/modules/business_rules/components/utils/actionValidation.js +6 -0
- package/dist/modules/business_rules/components/utils/actionValidation.js.map +2 -2
- package/dist/modules/business_rules/events.js +13 -0
- package/dist/modules/business_rules/events.js.map +7 -0
- package/dist/modules/business_rules/extension-points.js +13 -0
- package/dist/modules/business_rules/extension-points.js.map +7 -0
- package/dist/modules/business_rules/lib/action-executor.js +148 -0
- package/dist/modules/business_rules/lib/action-executor.js.map +2 -2
- package/dist/modules/business_rules/lib/openmercato-call-options-types.js +5 -0
- package/dist/modules/business_rules/lib/openmercato-call-options-types.js.map +7 -0
- package/dist/modules/business_rules/lib/openmercato-call-options.js +231 -0
- package/dist/modules/business_rules/lib/openmercato-call-options.js.map +7 -0
- package/dist/modules/business_rules/lib/rule-engine.js +5 -1
- package/dist/modules/business_rules/lib/rule-engine.js.map +2 -2
- package/dist/modules/catalog/backend/catalog/products/[id]/page.js +6 -5
- package/dist/modules/catalog/backend/catalog/products/[id]/page.js.map +2 -2
- package/dist/modules/catalog/backend/catalog/products/create/page.js +7 -6
- package/dist/modules/catalog/backend/catalog/products/create/page.js.map +2 -2
- package/dist/modules/catalog/components/PriceKindSettings.js +3 -3
- package/dist/modules/catalog/components/PriceKindSettings.js.map +2 -2
- package/dist/modules/catalog/components/categories/CategoriesDataTable.js +2 -1
- package/dist/modules/catalog/components/categories/CategoriesDataTable.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductCategorizeSection.js +3 -3
- package/dist/modules/catalog/components/products/ProductCategorizeSection.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductMediaManager.js +1 -1
- package/dist/modules/catalog/components/products/ProductMediaManager.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductsDataTable.js +3 -2
- package/dist/modules/catalog/components/products/ProductsDataTable.js.map +2 -2
- package/dist/modules/catalog/components/products/VariantBuilder.js +5 -5
- package/dist/modules/catalog/components/products/VariantBuilder.js.map +2 -2
- package/dist/modules/catalog/events.js +1 -0
- package/dist/modules/catalog/events.js.map +2 -2
- package/dist/modules/catalog/extension-points.js +27 -0
- package/dist/modules/catalog/extension-points.js.map +7 -0
- package/dist/modules/catalog/widgets/injection/product-bulk-delete/widget.js +10 -5
- package/dist/modules/catalog/widgets/injection/product-bulk-delete/widget.js.map +2 -2
- package/dist/modules/catalog/widgets/injection/product-seo/widget.js +1 -1
- package/dist/modules/catalog/widgets/injection/product-seo/widget.js.map +2 -2
- package/dist/modules/communication_channels/api/post/test-seed/route.js +52 -2
- package/dist/modules/communication_channels/api/post/test-seed/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/webhook/[provider]/route.js +11 -1
- package/dist/modules/communication_channels/api/post/webhook/[provider]/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/webhooks/gmail/route.js +11 -6
- package/dist/modules/communication_channels/api/post/webhooks/gmail/route.js.map +2 -2
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js +2 -1
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js.map +2 -2
- package/dist/modules/communication_channels/backend/profile/communication-channels/page.js +8 -7
- package/dist/modules/communication_channels/backend/profile/communication-channels/page.js.map +2 -2
- package/dist/modules/communication_channels/data/enrichers.js +4 -4
- package/dist/modules/communication_channels/data/enrichers.js.map +2 -2
- package/dist/modules/communication_channels/extension-points.js +20 -0
- package/dist/modules/communication_channels/extension-points.js.map +7 -0
- package/dist/modules/communication_channels/lib/access-control.js +2 -2
- package/dist/modules/communication_channels/lib/access-control.js.map +2 -2
- package/dist/modules/configs/backend/config/system-status/page.js +2 -1
- package/dist/modules/configs/backend/config/system-status/page.js.map +2 -2
- package/dist/modules/configs/extension-points.js +18 -0
- package/dist/modules/configs/extension-points.js.map +7 -0
- package/dist/modules/configs/lib/upgrade-actions.js +12 -0
- package/dist/modules/configs/lib/upgrade-actions.js.map +2 -2
- package/dist/modules/currencies/backend/currencies/page.js +2 -1
- package/dist/modules/currencies/backend/currencies/page.js.map +2 -2
- package/dist/modules/currencies/backend/exchange-rates/page.js +2 -1
- package/dist/modules/currencies/backend/exchange-rates/page.js.map +2 -2
- package/dist/modules/currencies/di.js +4 -0
- package/dist/modules/currencies/di.js.map +2 -2
- package/dist/modules/currencies/extension-points.js +14 -0
- package/dist/modules/currencies/extension-points.js.map +7 -0
- package/dist/modules/currencies/services/baseCurrencyService.js +42 -0
- package/dist/modules/currencies/services/baseCurrencyService.js.map +7 -0
- package/dist/modules/customer_accounts/api/admin/users/[id].js +10 -1
- package/dist/modules/customer_accounts/api/admin/users/[id].js.map +2 -2
- package/dist/modules/customer_accounts/api/admin/users-invite.js +63 -4
- package/dist/modules/customer_accounts/api/admin/users-invite.js.map +2 -2
- package/dist/modules/customer_accounts/api/invitations/accept.js +1 -2
- package/dist/modules/customer_accounts/api/invitations/accept.js.map +2 -2
- package/dist/modules/customer_accounts/api/login.js +4 -2
- package/dist/modules/customer_accounts/api/login.js.map +2 -2
- package/dist/modules/customer_accounts/api/magic-link/verify.js +4 -2
- package/dist/modules/customer_accounts/api/magic-link/verify.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/feature-check.js +5 -4
- package/dist/modules/customer_accounts/api/portal/feature-check.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/nav.js +6 -4
- package/dist/modules/customer_accounts/api/portal/nav.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/profile.js +5 -1
- package/dist/modules/customer_accounts/api/portal/profile.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/sessions-refresh.js +3 -3
- package/dist/modules/customer_accounts/api/portal/sessions-refresh.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/users-invite.js +22 -2
- package/dist/modules/customer_accounts/api/portal/users-invite.js.map +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/roles/page.js +2 -1
- package/dist/modules/customer_accounts/backend/customer_accounts/roles/page.js.map +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/settings/domain/components/Diagnostics.js +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/settings/domain/components/Diagnostics.js.map +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/users/page.js +2 -1
- package/dist/modules/customer_accounts/backend/customer_accounts/users/page.js.map +2 -2
- package/dist/modules/customer_accounts/data/entities.js +3 -0
- package/dist/modules/customer_accounts/data/entities.js.map +2 -2
- package/dist/modules/customer_accounts/data/validators.js +1 -0
- package/dist/modules/customer_accounts/data/validators.js.map +2 -2
- package/dist/modules/customer_accounts/emails/CustomerInvitationEmail.js +26 -0
- package/dist/modules/customer_accounts/emails/CustomerInvitationEmail.js.map +7 -0
- package/dist/modules/customer_accounts/extension-points.js +14 -0
- package/dist/modules/customer_accounts/extension-points.js.map +7 -0
- package/dist/modules/customer_accounts/lib/customerAuth.js +7 -2
- package/dist/modules/customer_accounts/lib/customerAuth.js.map +2 -2
- package/dist/modules/customer_accounts/lib/customerAuthServer.js +2 -1
- package/dist/modules/customer_accounts/lib/customerAuthServer.js.map +2 -2
- package/dist/modules/customer_accounts/lib/customerEntityOwnership.js +29 -3
- package/dist/modules/customer_accounts/lib/customerEntityOwnership.js.map +2 -2
- package/dist/modules/customer_accounts/lib/customerUrl.js +19 -10
- package/dist/modules/customer_accounts/lib/customerUrl.js.map +2 -2
- package/dist/modules/customer_accounts/lib/invitationEmail.js +35 -0
- package/dist/modules/customer_accounts/lib/invitationEmail.js.map +7 -0
- package/dist/modules/customer_accounts/migrations/Migration20260723120000_customer_accounts.js +13 -0
- package/dist/modules/customer_accounts/migrations/Migration20260723120000_customer_accounts.js.map +7 -0
- package/dist/modules/customer_accounts/services/customerInvitationService.js +32 -2
- package/dist/modules/customer_accounts/services/customerInvitationService.js.map +2 -2
- package/dist/modules/customer_accounts/services/customerRbacService.js +12 -3
- package/dist/modules/customer_accounts/services/customerRbacService.js.map +2 -2
- package/dist/modules/customer_accounts/setup.js +6 -0
- package/dist/modules/customer_accounts/setup.js.map +2 -2
- package/dist/modules/customer_accounts/subscribers/autoLinkCrm.js +47 -7
- package/dist/modules/customer_accounts/subscribers/autoLinkCrm.js.map +2 -2
- package/dist/modules/customer_accounts/widgets/injection/account-status/widget.client.js +2 -2
- package/dist/modules/customer_accounts/widgets/injection/account-status/widget.client.js.map +2 -2
- package/dist/modules/customer_accounts/widgets/injection/portal-ai-assistant-trigger/widget.client.js +1 -1
- package/dist/modules/customer_accounts/widgets/injection/portal-ai-assistant-trigger/widget.client.js.map +2 -2
- package/dist/modules/customer_accounts/widgets/injection-table.js +1 -1
- package/dist/modules/customer_accounts/widgets/injection-table.js.map +2 -2
- package/dist/modules/customers/analytics.js +4 -1
- package/dist/modules/customers/analytics.js.map +2 -2
- package/dist/modules/customers/api/companies/[id]/route.js +3 -4
- package/dist/modules/customers/api/companies/[id]/route.js.map +2 -2
- package/dist/modules/customers/api/deals/[id]/people/route.js +4 -2
- package/dist/modules/customers/api/deals/[id]/people/route.js.map +2 -2
- package/dist/modules/customers/api/deals/[id]/route.js +7 -3
- package/dist/modules/customers/api/deals/[id]/route.js.map +2 -2
- package/dist/modules/customers/api/deals/aggregate/route.js +5 -4
- package/dist/modules/customers/api/deals/aggregate/route.js.map +2 -2
- package/dist/modules/customers/api/deals/summary/route.js +14 -119
- package/dist/modules/customers/api/deals/summary/route.js.map +2 -2
- package/dist/modules/customers/api/people/[id]/companies/enriched/route.js +3 -2
- package/dist/modules/customers/api/people/[id]/companies/enriched/route.js.map +2 -2
- package/dist/modules/customers/api/utils.js +21 -24
- package/dist/modules/customers/api/utils.js.map +2 -2
- package/dist/modules/customers/backend/customers/companies/[id]/page.js +2 -1
- package/dist/modules/customers/backend/customers/companies/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/companies/page.js +2 -1
- package/dist/modules/customers/backend/customers/companies/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/companies-v2/[id]/page.js +16 -5
- package/dist/modules/customers/backend/customers/companies-v2/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/[id]/page.js +18 -11
- package/dist/modules/customers/backend/customers/deals/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/page.js +2 -1
- package/dist/modules/customers/backend/customers/deals/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/pipeline/components/QuickDealDialog.js +17 -3
- package/dist/modules/customers/backend/customers/deals/pipeline/components/QuickDealDialog.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/pipeline/page.js +8 -2
- package/dist/modules/customers/backend/customers/deals/pipeline/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/people/[id]/page.js +2 -1
- package/dist/modules/customers/backend/customers/people/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/people/page.js +2 -1
- package/dist/modules/customers/backend/customers/people/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/people-v2/[id]/page.js +26 -10
- package/dist/modules/customers/backend/customers/people-v2/[id]/page.js.map +2 -2
- package/dist/modules/customers/cli.js +28 -11
- package/dist/modules/customers/cli.js.map +2 -2
- package/dist/modules/customers/commands/deals.js +48 -10
- package/dist/modules/customers/commands/deals.js.map +2 -2
- package/dist/modules/customers/commands/people.js +2 -0
- package/dist/modules/customers/commands/people.js.map +2 -2
- package/dist/modules/customers/components/CustomerTodosTable.js +2 -1
- package/dist/modules/customers/components/CustomerTodosTable.js.map +2 -2
- package/dist/modules/customers/components/calendar/CalendarEventEditor.js +1 -1
- package/dist/modules/customers/components/calendar/CalendarEventEditor.js.map +2 -2
- package/dist/modules/customers/components/detail/ActiveDealCard.js +2 -1
- package/dist/modules/customers/components/detail/ActiveDealCard.js.map +2 -2
- package/dist/modules/customers/components/detail/ActivitiesDayStrip.js +2 -3
- package/dist/modules/customers/components/detail/ActivitiesDayStrip.js.map +2 -2
- package/dist/modules/customers/components/detail/CompanyDetailTabs.js +26 -6
- package/dist/modules/customers/components/detail/CompanyDetailTabs.js.map +2 -2
- package/dist/modules/customers/components/detail/CompanyKpiBar.js +6 -5
- package/dist/modules/customers/components/detail/CompanyKpiBar.js.map +2 -2
- package/dist/modules/customers/components/detail/ConfirmDealLostDialog.js +2 -2
- package/dist/modules/customers/components/detail/ConfirmDealLostDialog.js.map +2 -2
- package/dist/modules/customers/components/detail/DealDetailTabs.js +30 -8
- package/dist/modules/customers/components/detail/DealDetailTabs.js.map +2 -2
- package/dist/modules/customers/components/detail/DealForm.js +2 -1
- package/dist/modules/customers/components/detail/DealForm.js.map +2 -2
- package/dist/modules/customers/components/detail/DealsSection.js +1 -1
- package/dist/modules/customers/components/detail/DealsSection.js.map +2 -2
- package/dist/modules/customers/components/detail/MiniWeekCalendar.js +7 -52
- package/dist/modules/customers/components/detail/MiniWeekCalendar.js.map +2 -2
- package/dist/modules/customers/components/detail/PersonDetailTabs.js +30 -8
- package/dist/modules/customers/components/detail/PersonDetailTabs.js.map +2 -2
- package/dist/modules/customers/components/detail/ScheduleActivityDialog.js +231 -216
- package/dist/modules/customers/components/detail/ScheduleActivityDialog.js.map +2 -2
- package/dist/modules/customers/components/detail/dashboard/helpers.js +4 -3
- package/dist/modules/customers/components/detail/dashboard/helpers.js.map +2 -2
- package/dist/modules/customers/components/detail/legacyActivities.js +69 -0
- package/dist/modules/customers/components/detail/legacyActivities.js.map +7 -0
- package/dist/modules/customers/components/formConfig.js +14 -10
- package/dist/modules/customers/components/formConfig.js.map +2 -2
- package/dist/modules/customers/data/entities.js +8 -0
- package/dist/modules/customers/data/entities.js.map +2 -2
- package/dist/modules/customers/data/validators.js +5 -2
- package/dist/modules/customers/data/validators.js.map +2 -2
- package/dist/modules/customers/extension-points.js +42 -0
- package/dist/modules/customers/extension-points.js.map +7 -0
- package/dist/modules/customers/lib/calendar/format.js +8 -4
- package/dist/modules/customers/lib/calendar/format.js.map +2 -2
- package/dist/modules/customers/lib/dealStatus.js +38 -0
- package/dist/modules/customers/lib/dealStatus.js.map +7 -0
- package/dist/modules/customers/lib/dealsSummaryQueries.js +144 -0
- package/dist/modules/customers/lib/dealsSummaryQueries.js.map +7 -0
- package/dist/modules/customers/lib/optionalBaseCurrency.js +19 -0
- package/dist/modules/customers/lib/optionalBaseCurrency.js.map +7 -0
- package/dist/modules/customers/lib/visibilityFilter.js +6 -4
- package/dist/modules/customers/lib/visibilityFilter.js.map +2 -2
- package/dist/modules/customers/migrations/Migration20260723210000_customers.js +15 -0
- package/dist/modules/customers/migrations/Migration20260723210000_customers.js.map +7 -0
- package/dist/modules/customers/search.js +50 -29
- package/dist/modules/customers/search.js.map +2 -2
- package/dist/modules/customers/utils/phoneDuplicates.js +1 -2
- package/dist/modules/customers/utils/phoneDuplicates.js.map +2 -2
- package/dist/modules/dashboards/api/layout/[itemId]/route.js +6 -3
- package/dist/modules/dashboards/api/layout/[itemId]/route.js.map +2 -2
- package/dist/modules/dashboards/api/layout/route.js +22 -9
- package/dist/modules/dashboards/api/layout/route.js.map +2 -2
- package/dist/modules/dashboards/api/roles/widgets/route.js +9 -3
- package/dist/modules/dashboards/api/roles/widgets/route.js.map +2 -2
- package/dist/modules/dashboards/api/users/widgets/route.js +9 -3
- package/dist/modules/dashboards/api/users/widgets/route.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/catalog.js +6 -3
- package/dist/modules/dashboards/api/widgets/catalog.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/data/batch/route.js +12 -3
- package/dist/modules/dashboards/api/widgets/data/batch/route.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/data/route.js +28 -3
- package/dist/modules/dashboards/api/widgets/data/route.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/data/schema.js +28 -18
- package/dist/modules/dashboards/api/widgets/data/schema.js.map +2 -2
- package/dist/modules/dashboards/components/UnlabelledAmountNotice.js +33 -0
- package/dist/modules/dashboards/components/UnlabelledAmountNotice.js.map +7 -0
- package/dist/modules/dashboards/lib/access.js +5 -3
- package/dist/modules/dashboards/lib/access.js.map +2 -2
- package/dist/modules/dashboards/lib/aggregations.js +113 -46
- package/dist/modules/dashboards/lib/aggregations.js.map +2 -2
- package/dist/modules/dashboards/lib/exactDecimal.js +69 -0
- package/dist/modules/dashboards/lib/exactDecimal.js.map +7 -0
- package/dist/modules/dashboards/lib/formatters.js +84 -11
- package/dist/modules/dashboards/lib/formatters.js.map +2 -2
- package/dist/modules/dashboards/lib/optionalBaseCurrency.js +11 -0
- package/dist/modules/dashboards/lib/optionalBaseCurrency.js.map +7 -0
- package/dist/modules/dashboards/services/widgetDataService.js +316 -14
- package/dist/modules/dashboards/services/widgetDataService.js.map +2 -2
- package/dist/modules/dashboards/subscribers/invalidateWidgetDataCache.js +26 -0
- package/dist/modules/dashboards/subscribers/invalidateWidgetDataCache.js.map +7 -0
- package/dist/modules/dashboards/widgets/dashboard/aov-kpi/widget.client.js +9 -3
- package/dist/modules/dashboards/widgets/dashboard/aov-kpi/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/config.js +52 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/config.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.client.js +52 -30
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.js +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/revenue-kpi/widget.client.js +9 -3
- package/dist/modules/dashboards/widgets/dashboard/revenue-kpi/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/revenue-trend/widget.client.js +8 -3
- package/dist/modules/dashboards/widgets/dashboard/revenue-trend/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/sales-by-region/widget.client.js +26 -18
- package/dist/modules/dashboards/widgets/dashboard/sales-by-region/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/top-customers/widget.client.js +22 -14
- package/dist/modules/dashboards/widgets/dashboard/top-customers/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/top-products/widget.client.js +10 -4
- package/dist/modules/dashboards/widgets/dashboard/top-products/widget.client.js.map +2 -2
- package/dist/modules/data_sync/api/mappings/[id]/route.js +22 -9
- package/dist/modules/data_sync/api/mappings/[id]/route.js.map +2 -2
- package/dist/modules/data_sync/api/mappings/route.js +13 -4
- package/dist/modules/data_sync/api/mappings/route.js.map +2 -2
- package/dist/modules/data_sync/api/options.js +7 -2
- package/dist/modules/data_sync/api/options.js.map +2 -2
- package/dist/modules/data_sync/api/run.js +7 -2
- package/dist/modules/data_sync/api/run.js.map +2 -2
- package/dist/modules/data_sync/api/runs/[id]/cancel.js +8 -3
- package/dist/modules/data_sync/api/runs/[id]/cancel.js.map +2 -2
- package/dist/modules/data_sync/api/runs/[id]/retry.js +7 -2
- package/dist/modules/data_sync/api/runs/[id]/retry.js.map +2 -2
- package/dist/modules/data_sync/api/runs/[id]/route.js +8 -3
- package/dist/modules/data_sync/api/runs/[id]/route.js.map +2 -2
- package/dist/modules/data_sync/api/runs.js +7 -2
- package/dist/modules/data_sync/api/runs.js.map +2 -2
- package/dist/modules/data_sync/api/schedules/[id]/route.js +19 -6
- package/dist/modules/data_sync/api/schedules/[id]/route.js.map +2 -2
- package/dist/modules/data_sync/api/schedules/route.js +13 -4
- package/dist/modules/data_sync/api/schedules/route.js.map +2 -2
- package/dist/modules/data_sync/api/validate.js +9 -4
- package/dist/modules/data_sync/api/validate.js.map +2 -2
- package/dist/modules/data_sync/backend/data-sync/page.js +5 -4
- package/dist/modules/data_sync/backend/data-sync/page.js.map +2 -2
- package/dist/modules/data_sync/components/IntegrationScheduleTab.js +5 -5
- package/dist/modules/data_sync/components/IntegrationScheduleTab.js.map +2 -2
- package/dist/modules/data_sync/extension-points.js +13 -0
- package/dist/modules/data_sync/extension-points.js.map +7 -0
- package/dist/modules/data_sync/lib/queue-policy.js +15 -0
- package/dist/modules/data_sync/lib/queue-policy.js.map +7 -0
- package/dist/modules/data_sync/lib/queue.js +16 -1
- package/dist/modules/data_sync/lib/queue.js.map +2 -2
- package/dist/modules/data_sync/lib/start-run.js +2 -1
- package/dist/modules/data_sync/lib/start-run.js.map +2 -2
- package/dist/modules/data_sync/lib/sync-engine.js +35 -2
- package/dist/modules/data_sync/lib/sync-engine.js.map +2 -2
- package/dist/modules/data_sync/lib/sync-run-service.js +70 -2
- package/dist/modules/data_sync/lib/sync-run-service.js.map +2 -2
- package/dist/modules/data_sync/workers/sync-export.js +9 -2
- package/dist/modules/data_sync/workers/sync-export.js.map +2 -2
- package/dist/modules/data_sync/workers/sync-import.js +9 -2
- package/dist/modules/data_sync/workers/sync-import.js.map +2 -2
- package/dist/modules/design_system/acl.js +9 -0
- package/dist/modules/design_system/acl.js.map +7 -0
- package/dist/modules/design_system/backend/design-system/page.js +11 -0
- package/dist/modules/design_system/backend/design-system/page.js.map +7 -0
- package/dist/modules/design_system/backend/design-system/page.meta.js +15 -0
- package/dist/modules/design_system/backend/design-system/page.meta.js.map +7 -0
- package/dist/modules/design_system/gallery/components/CodeSnippet.js +52 -0
- package/dist/modules/design_system/gallery/components/CodeSnippet.js.map +7 -0
- package/dist/modules/design_system/gallery/components/EntryCard.js +63 -0
- package/dist/modules/design_system/gallery/components/EntryCard.js.map +7 -0
- package/dist/modules/design_system/gallery/components/GalleryShell.js +163 -0
- package/dist/modules/design_system/gallery/components/GalleryShell.js.map +7 -0
- package/dist/modules/design_system/gallery/components/VariantPreview.js +9 -0
- package/dist/modules/design_system/gallery/components/VariantPreview.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/banners.js +186 -0
- package/dist/modules/design_system/gallery/entries/banners.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/buttons.js +361 -0
- package/dist/modules/design_system/gallery/entries/buttons.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/charts.js +457 -0
- package/dist/modules/design_system/gallery/entries/charts.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/dates.js +306 -0
- package/dist/modules/design_system/gallery/entries/dates.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/detail.js +358 -0
- package/dist/modules/design_system/gallery/entries/detail.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/display.js +785 -0
- package/dist/modules/design_system/gallery/entries/display.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/feedback.js +658 -0
- package/dist/modules/design_system/gallery/entries/feedback.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/filters.js +505 -0
- package/dist/modules/design_system/gallery/entries/filters.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/foundations.js +453 -0
- package/dist/modules/design_system/gallery/entries/foundations.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/icons.js +140 -0
- package/dist/modules/design_system/gallery/entries/icons.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/inputs.js +1217 -0
- package/dist/modules/design_system/gallery/entries/inputs.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/messages.js +334 -0
- package/dist/modules/design_system/gallery/entries/messages.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/navigation.js +475 -0
- package/dist/modules/design_system/gallery/entries/navigation.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/notifications.js +257 -0
- package/dist/modules/design_system/gallery/entries/notifications.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/overlays.js +576 -0
- package/dist/modules/design_system/gallery/entries/overlays.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/scaffolding.js +378 -0
- package/dist/modules/design_system/gallery/entries/scaffolding.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/schedule.js +297 -0
- package/dist/modules/design_system/gallery/entries/schedule.js.map +7 -0
- package/dist/modules/design_system/gallery/registry.js +139 -0
- package/dist/modules/design_system/gallery/registry.js.map +7 -0
- package/dist/modules/design_system/gallery/types.js +1 -0
- package/dist/modules/design_system/gallery/types.js.map +7 -0
- package/dist/modules/design_system/index.js +9 -0
- package/dist/modules/design_system/index.js.map +7 -0
- package/dist/modules/design_system/setup.js +14 -0
- package/dist/modules/design_system/setup.js.map +7 -0
- package/dist/modules/dictionaries/api/[dictionaryId]/entries/route.js +34 -12
- package/dist/modules/dictionaries/api/[dictionaryId]/entries/route.js.map +2 -2
- package/dist/modules/dictionaries/api/openapi.js +15 -2
- package/dist/modules/dictionaries/api/openapi.js.map +2 -2
- package/dist/modules/dictionaries/components/DictionaryEntrySelect.js +1 -1
- package/dist/modules/dictionaries/components/DictionaryEntrySelect.js.map +2 -2
- package/dist/modules/dictionaries/components/hooks/useDictionaryEntries.js +30 -29
- package/dist/modules/dictionaries/components/hooks/useDictionaryEntries.js.map +2 -2
- package/dist/modules/dictionaries/data/validators.js +7 -0
- package/dist/modules/dictionaries/data/validators.js.map +2 -2
- package/dist/modules/dictionaries/lib/clientEntries.js +4 -3
- package/dist/modules/dictionaries/lib/clientEntries.js.map +2 -2
- package/dist/modules/dictionaries/lib/fetchAllEntries.js +43 -0
- package/dist/modules/dictionaries/lib/fetchAllEntries.js.map +7 -0
- package/dist/modules/directory/api/organization-branding/route.js +10 -3
- package/dist/modules/directory/api/organization-branding/route.js.map +2 -2
- package/dist/modules/directory/api/organization-switcher/route.js +84 -20
- package/dist/modules/directory/api/organization-switcher/route.js.map +2 -2
- package/dist/modules/directory/api/organizations/route.js +7 -0
- package/dist/modules/directory/api/organizations/route.js.map +3 -3
- package/dist/modules/directory/api/tenants/route.js +8 -2
- package/dist/modules/directory/api/tenants/route.js.map +2 -2
- package/dist/modules/directory/backend/directory/branding/page.js +31 -8
- package/dist/modules/directory/backend/directory/branding/page.js.map +2 -2
- package/dist/modules/directory/backend/directory/organizations/[id]/edit/page.js +7 -16
- package/dist/modules/directory/backend/directory/organizations/[id]/edit/page.js.map +2 -2
- package/dist/modules/directory/backend/directory/organizations/page.js +2 -1
- package/dist/modules/directory/backend/directory/organizations/page.js.map +2 -2
- package/dist/modules/directory/backend/directory/tenants/page.js +2 -1
- package/dist/modules/directory/backend/directory/tenants/page.js.map +2 -2
- package/dist/modules/directory/commands/organizations.js +8 -1
- package/dist/modules/directory/commands/organizations.js.map +2 -2
- package/dist/modules/directory/commands/tenants.js +6 -0
- package/dist/modules/directory/commands/tenants.js.map +2 -2
- package/dist/modules/directory/data/entities.js +4 -0
- package/dist/modules/directory/data/entities.js.map +2 -2
- package/dist/modules/directory/data/validators.js +2 -0
- package/dist/modules/directory/data/validators.js.map +2 -2
- package/dist/modules/directory/extension-points.js +14 -0
- package/dist/modules/directory/extension-points.js.map +7 -0
- package/dist/modules/directory/migrations/Migration20260626145500_directory_logo_preserve_aspect_ratio.js +13 -0
- package/dist/modules/directory/migrations/Migration20260626145500_directory_logo_preserve_aspect_ratio.js.map +7 -0
- package/dist/modules/directory/subscribers/invalidateOrgScopeCache.js +5 -1
- package/dist/modules/directory/subscribers/invalidateOrgScopeCache.js.map +2 -2
- package/dist/modules/directory/utils/organizationScope.js +11 -3
- package/dist/modules/directory/utils/organizationScope.js.map +2 -2
- package/dist/modules/entities/api/definitions.js +53 -3
- package/dist/modules/entities/api/definitions.js.map +2 -2
- package/dist/modules/entities/api/entities.js +21 -2
- package/dist/modules/entities/api/entities.js.map +2 -2
- package/dist/modules/entities/api/entity-settings.js +59 -9
- package/dist/modules/entities/api/entity-settings.js.map +2 -2
- package/dist/modules/entities/api/records.js +11 -28
- package/dist/modules/entities/api/records.js.map +2 -2
- package/dist/modules/entities/api/sidebar-entities.js +34 -12
- package/dist/modules/entities/api/sidebar-entities.js.map +2 -2
- package/dist/modules/entities/backend/config/settings/page.js +10 -0
- package/dist/modules/entities/backend/config/settings/page.js.map +7 -0
- package/dist/modules/entities/backend/config/settings/page.meta.js +36 -0
- package/dist/modules/entities/backend/config/settings/page.meta.js.map +7 -0
- package/dist/modules/entities/backend/entities/user/[entityId]/page.js +1 -1
- package/dist/modules/entities/backend/entities/user/[entityId]/page.js.map +2 -2
- package/dist/modules/entities/backend/entities/user/[entityId]/records/page.js +23 -4
- package/dist/modules/entities/backend/entities/user/[entityId]/records/page.js.map +2 -2
- package/dist/modules/entities/backend/entities/user/create/page.js +16 -7
- package/dist/modules/entities/backend/entities/user/create/page.js.map +2 -2
- package/dist/modules/entities/cli.js +193 -19
- package/dist/modules/entities/cli.js.map +2 -2
- package/dist/modules/entities/components/EntitySettingsManager.js +136 -0
- package/dist/modules/entities/components/EntitySettingsManager.js.map +7 -0
- package/dist/modules/entities/components/RecordListRelationCell.js +63 -0
- package/dist/modules/entities/components/RecordListRelationCell.js.map +7 -0
- package/dist/modules/entities/components/SystemEntitiesTable.js +2 -1
- package/dist/modules/entities/components/SystemEntitiesTable.js.map +2 -2
- package/dist/modules/entities/components/UserEntitiesTable.js +2 -1
- package/dist/modules/entities/components/UserEntitiesTable.js.map +2 -2
- package/dist/modules/entities/components/recordListRelationDisplays.js +80 -0
- package/dist/modules/entities/components/recordListRelationDisplays.js.map +7 -0
- package/dist/modules/entities/extension-points.js +21 -0
- package/dist/modules/entities/extension-points.js.map +7 -0
- package/dist/modules/entities/lib/entityAcl.js +87 -9
- package/dist/modules/entities/lib/entityAcl.js.map +3 -3
- package/dist/modules/feature_toggles/components/FeatureGuard.js +3 -2
- package/dist/modules/feature_toggles/components/FeatureGuard.js.map +2 -2
- package/dist/modules/feature_toggles/components/FeatureToggleOverrideCard.js +1 -1
- package/dist/modules/feature_toggles/components/FeatureToggleOverrideCard.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/staleTime.js +5 -0
- package/dist/modules/feature_toggles/components/hooks/staleTime.js.map +7 -0
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagBoolean.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagBoolean.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagJson.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagJson.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagNumber.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagNumber.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagString.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagString.js.map +2 -2
- package/dist/modules/inbox_ops/ai-tools.js +5 -2
- package/dist/modules/inbox_ops/ai-tools.js.map +2 -2
- package/dist/modules/inbox_ops/api/proposals/[id]/actions/[actionId]/route.js +14 -1
- package/dist/modules/inbox_ops/api/proposals/[id]/actions/[actionId]/route.js.map +2 -2
- package/dist/modules/inbox_ops/api/proposals/route.js +16 -1
- package/dist/modules/inbox_ops/api/proposals/route.js.map +2 -2
- package/dist/modules/inbox_ops/api/webhook/inbound.js +14 -10
- package/dist/modules/inbox_ops/api/webhook/inbound.js.map +2 -2
- package/dist/modules/inbox_ops/backend/inbox-ops/log/page.js +6 -6
- package/dist/modules/inbox_ops/backend/inbox-ops/log/page.js.map +2 -2
- package/dist/modules/inbox_ops/components/proposals/EditActionDialog.js +25 -20
- package/dist/modules/inbox_ops/components/proposals/EditActionDialog.js.map +2 -2
- package/dist/modules/inbox_ops/search.js +15 -4
- package/dist/modules/inbox_ops/search.js.map +2 -2
- package/dist/modules/inbox_ops/subscribers/search-reindex-proposal-created.js +32 -0
- package/dist/modules/inbox_ops/subscribers/search-reindex-proposal-created.js.map +7 -0
- package/dist/modules/integrations/api/[id]/credentials/route.js +11 -5
- package/dist/modules/integrations/api/[id]/credentials/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/health/route.js +6 -3
- package/dist/modules/integrations/api/[id]/health/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/route.js +6 -3
- package/dist/modules/integrations/api/[id]/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/state/route.js +6 -3
- package/dist/modules/integrations/api/[id]/state/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/version/route.js +6 -3
- package/dist/modules/integrations/api/[id]/version/route.js.map +2 -2
- package/dist/modules/integrations/api/logs/route.js +6 -3
- package/dist/modules/integrations/api/logs/route.js.map +2 -2
- package/dist/modules/integrations/api/route.js +6 -3
- package/dist/modules/integrations/api/route.js.map +2 -2
- package/dist/modules/integrations/api/umes-read.js +2 -2
- package/dist/modules/integrations/api/umes-read.js.map +2 -2
- package/dist/modules/integrations/backend/integrations/[id]/page.js +2 -4
- package/dist/modules/integrations/backend/integrations/[id]/page.js.map +2 -2
- package/dist/modules/integrations/extension-points.js +30 -0
- package/dist/modules/integrations/extension-points.js.map +7 -0
- package/dist/modules/integrations/lib/organization-scope.js +2 -9
- package/dist/modules/integrations/lib/organization-scope.js.map +2 -2
- package/dist/modules/integrations/widgets/injection/external-ids/widget.client.js +0 -5
- package/dist/modules/integrations/widgets/injection/external-ids/widget.client.js.map +2 -2
- package/dist/modules/integrations/widgets/injection/external-ids/widget.js +14 -0
- package/dist/modules/integrations/widgets/injection/external-ids/widget.js.map +7 -0
- package/dist/modules/messages/api/[id]/route.js +15 -0
- package/dist/modules/messages/api/[id]/route.js.map +2 -2
- package/dist/modules/messages/api/route.js +77 -8
- package/dist/modules/messages/api/route.js.map +2 -2
- package/dist/modules/messages/components/ComposeMessagePageClient.js +2 -1
- package/dist/modules/messages/components/ComposeMessagePageClient.js.map +2 -2
- package/dist/modules/messages/components/MessageDetailPageClient.js +3 -2
- package/dist/modules/messages/components/MessageDetailPageClient.js.map +2 -2
- package/dist/modules/messages/components/MessagesInboxPageClient.js +2 -1
- package/dist/modules/messages/components/MessagesInboxPageClient.js.map +2 -2
- package/dist/modules/messages/components/message-detail/panels/dialogs.js +1 -1
- package/dist/modules/messages/components/message-detail/panels/dialogs.js.map +1 -1
- package/dist/modules/messages/extension-points.js +16 -0
- package/dist/modules/messages/extension-points.js.map +7 -0
- package/dist/modules/messages/lib/participantScope.js +15 -0
- package/dist/modules/messages/lib/participantScope.js.map +7 -0
- package/dist/modules/messages/lib/routeHelpers.js +1 -3
- package/dist/modules/messages/lib/routeHelpers.js.map +2 -2
- package/dist/modules/messages/lib/searchLookup.js +8 -16
- package/dist/modules/messages/lib/searchLookup.js.map +2 -2
- package/dist/modules/messages/search.js +10 -5
- package/dist/modules/messages/search.js.map +2 -2
- package/dist/modules/notifications/api/route.js +83 -4
- package/dist/modules/notifications/api/route.js.map +2 -2
- package/dist/modules/notifications/api/unread-count/route.js +25 -6
- package/dist/modules/notifications/api/unread-count/route.js.map +2 -2
- package/dist/modules/notifications/di.js +1 -1
- package/dist/modules/notifications/di.js.map +2 -2
- package/dist/modules/notifications/events.js +4 -2
- package/dist/modules/notifications/events.js.map +2 -2
- package/dist/modules/notifications/lib/notificationRecipients.js +6 -7
- package/dist/modules/notifications/lib/notificationRecipients.js.map +2 -2
- package/dist/modules/notifications/lib/notificationScope.js +26 -0
- package/dist/modules/notifications/lib/notificationScope.js.map +7 -0
- package/dist/modules/notifications/lib/notificationService.js +48 -4
- package/dist/modules/notifications/lib/notificationService.js.map +2 -2
- package/dist/modules/notifications/lib/routeHelpers.js +16 -2
- package/dist/modules/notifications/lib/routeHelpers.js.map +2 -2
- package/dist/modules/payment_gateways/api/capture/route.js +1 -1
- package/dist/modules/payment_gateways/api/capture/route.js.map +2 -2
- package/dist/modules/payment_gateways/api/sessions/route.js +6 -3
- package/dist/modules/payment_gateways/api/sessions/route.js.map +2 -2
- package/dist/modules/payment_gateways/api/webhook/[provider]/route.js +11 -1
- package/dist/modules/payment_gateways/api/webhook/[provider]/route.js.map +2 -2
- package/dist/modules/payment_gateways/backend/payment-gateways/page.js +3 -2
- package/dist/modules/payment_gateways/backend/payment-gateways/page.js.map +2 -2
- package/dist/modules/payment_gateways/data/entities.js +11 -0
- package/dist/modules/payment_gateways/data/entities.js.map +2 -2
- package/dist/modules/payment_gateways/di.js +17 -1
- package/dist/modules/payment_gateways/di.js.map +2 -2
- package/dist/modules/payment_gateways/extension-points.js +19 -0
- package/dist/modules/payment_gateways/extension-points.js.map +7 -0
- package/dist/modules/payment_gateways/lib/capture-ledger.js +183 -0
- package/dist/modules/payment_gateways/lib/capture-ledger.js.map +7 -0
- package/dist/modules/payment_gateways/lib/gateway-service.js +93 -14
- package/dist/modules/payment_gateways/lib/gateway-service.js.map +2 -2
- package/dist/modules/payment_gateways/lib/order-amount-reconciliation.js +58 -0
- package/dist/modules/payment_gateways/lib/order-amount-reconciliation.js.map +7 -0
- package/dist/modules/payment_gateways/lib/payment-operation-idempotency.js +1 -0
- package/dist/modules/payment_gateways/lib/payment-operation-idempotency.js.map +2 -2
- package/dist/modules/payment_gateways/lib/session-idempotency.js +33 -0
- package/dist/modules/payment_gateways/lib/session-idempotency.js.map +2 -2
- package/dist/modules/payment_gateways/migrations/Migration20260725101500_payment_gateways.js +16 -0
- package/dist/modules/payment_gateways/migrations/Migration20260725101500_payment_gateways.js.map +7 -0
- package/dist/modules/payment_gateways/migrations/Migration20260803103035_payment_gateways.js +18 -0
- package/dist/modules/payment_gateways/migrations/Migration20260803103035_payment_gateways.js.map +7 -0
- package/dist/modules/payment_gateways/setup.js +47 -0
- package/dist/modules/payment_gateways/setup.js.map +2 -2
- package/dist/modules/payment_gateways/workers/session-initialization-prune.js +50 -0
- package/dist/modules/payment_gateways/workers/session-initialization-prune.js.map +7 -0
- package/dist/modules/planner/components/AvailabilityRulesEditor.js +4 -4
- package/dist/modules/planner/components/AvailabilityRulesEditor.js.map +2 -2
- package/dist/modules/planner/components/unavailabilityReasons.js +3 -3
- package/dist/modules/planner/components/unavailabilityReasons.js.map +2 -2
- package/dist/modules/portal/extension-points.js +32 -0
- package/dist/modules/portal/extension-points.js.map +7 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/dashboard/page.js +3 -3
- package/dist/modules/portal/frontend/[orgSlug]/portal/dashboard/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.js +134 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.js.map +7 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.meta.js +11 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.meta.js.map +7 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/login/page.js +4 -4
- package/dist/modules/portal/frontend/[orgSlug]/portal/login/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/page.js +3 -3
- package/dist/modules/portal/frontend/[orgSlug]/portal/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/profile/page.js +3 -3
- package/dist/modules/portal/frontend/[orgSlug]/portal/profile/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/reset-password/page.js +4 -4
- package/dist/modules/portal/frontend/[orgSlug]/portal/reset-password/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/signup/page.js +4 -4
- package/dist/modules/portal/frontend/[orgSlug]/portal/signup/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/verify/page.js +1 -1
- package/dist/modules/portal/frontend/[orgSlug]/portal/verify/page.js.map +2 -2
- package/dist/modules/portal/lib/navigation.js +7 -0
- package/dist/modules/portal/lib/navigation.js.map +7 -0
- package/dist/modules/progress/lib/progressService.js +2 -0
- package/dist/modules/progress/lib/progressService.js.map +2 -2
- package/dist/modules/progress/lib/progressServiceImpl.js +322 -104
- package/dist/modules/progress/lib/progressServiceImpl.js.map +2 -2
- package/dist/modules/query_index/api/openapi.js +13 -1
- package/dist/modules/query_index/api/openapi.js.map +2 -2
- package/dist/modules/query_index/api/reindex.js +10 -0
- package/dist/modules/query_index/api/reindex.js.map +2 -2
- package/dist/modules/query_index/api/status.js +165 -105
- package/dist/modules/query_index/api/status.js.map +2 -2
- package/dist/modules/query_index/cli.js +125 -1
- package/dist/modules/query_index/cli.js.map +2 -2
- package/dist/modules/query_index/components/QueryIndexesTable.js +130 -42
- package/dist/modules/query_index/components/QueryIndexesTable.js.map +2 -2
- package/dist/modules/query_index/data/entities.js +2 -1
- package/dist/modules/query_index/data/entities.js.map +2 -2
- package/dist/modules/query_index/di.js +3 -0
- package/dist/modules/query_index/di.js.map +2 -2
- package/dist/modules/query_index/events.js +20 -0
- package/dist/modules/query_index/events.js.map +7 -0
- package/dist/modules/query_index/extension-points.js +13 -0
- package/dist/modules/query_index/extension-points.js.map +7 -0
- package/dist/modules/query_index/lib/batch.js +11 -4
- package/dist/modules/query_index/lib/batch.js.map +2 -2
- package/dist/modules/query_index/lib/coverage.js +21 -9
- package/dist/modules/query_index/lib/coverage.js.map +2 -2
- package/dist/modules/query_index/lib/document.js +12 -5
- package/dist/modules/query_index/lib/document.js.map +2 -2
- package/dist/modules/query_index/lib/engine.js +105 -48
- package/dist/modules/query_index/lib/engine.js.map +2 -2
- package/dist/modules/query_index/lib/indexer.js +95 -19
- package/dist/modules/query_index/lib/indexer.js.map +2 -2
- package/dist/modules/query_index/lib/reindexer.js +43 -37
- package/dist/modules/query_index/lib/reindexer.js.map +2 -2
- package/dist/modules/query_index/lib/search-tokens.js +34 -15
- package/dist/modules/query_index/lib/search-tokens.js.map +2 -2
- package/dist/modules/query_index/lib/subscriber-scope.js +2 -3
- package/dist/modules/query_index/lib/subscriber-scope.js.map +2 -2
- package/dist/modules/query_index/migrations/Migration20260731105052_query_index.js +17 -0
- package/dist/modules/query_index/migrations/Migration20260731105052_query_index.js.map +7 -0
- package/dist/modules/query_index/subscribers/coverage_refresh.js +4 -0
- package/dist/modules/query_index/subscribers/coverage_refresh.js.map +2 -2
- package/dist/modules/query_index/subscribers/delete_one.js +53 -1
- package/dist/modules/query_index/subscribers/delete_one.js.map +3 -3
- package/dist/modules/query_index/subscribers/upsert_one.js +60 -0
- package/dist/modules/query_index/subscribers/upsert_one.js.map +3 -3
- package/dist/modules/resources/api/resources.js +2 -0
- package/dist/modules/resources/api/resources.js.map +2 -2
- package/dist/modules/resources/backend/resources/resource-types/page.js +2 -1
- package/dist/modules/resources/backend/resources/resource-types/page.js.map +2 -2
- package/dist/modules/resources/backend/resources/resources/[id]/page.js +3 -2
- package/dist/modules/resources/backend/resources/resources/[id]/page.js.map +2 -2
- package/dist/modules/resources/backend/resources/resources/page.js +2 -1
- package/dist/modules/resources/backend/resources/resources/page.js.map +2 -2
- package/dist/modules/resources/commands/resources.js +9 -0
- package/dist/modules/resources/commands/resources.js.map +2 -2
- package/dist/modules/resources/components/detail/dictionaries.js +3 -3
- package/dist/modules/resources/components/detail/dictionaries.js.map +2 -2
- package/dist/modules/resources/data/entities.js +3 -0
- package/dist/modules/resources/data/entities.js.map +2 -2
- package/dist/modules/resources/data/validators.js +6 -2
- package/dist/modules/resources/data/validators.js.map +2 -2
- package/dist/modules/resources/extension-points.js +14 -0
- package/dist/modules/resources/extension-points.js.map +7 -0
- package/dist/modules/resources/lib/seeds.js +16 -9
- package/dist/modules/resources/lib/seeds.js.map +2 -2
- package/dist/modules/resources/migrations/Migration20260608231000.js +13 -0
- package/dist/modules/resources/migrations/Migration20260608231000.js.map +7 -0
- package/dist/modules/sales/analytics.js +7 -3
- package/dist/modules/sales/analytics.js.map +2 -2
- package/dist/modules/sales/api/document-history/route.js +2 -1
- package/dist/modules/sales/api/document-history/route.js.map +2 -2
- package/dist/modules/sales/api/documents/factory.js +14 -3
- package/dist/modules/sales/api/documents/factory.js.map +2 -2
- package/dist/modules/sales/backend/sales/documents/[id]/page.js +11 -3
- package/dist/modules/sales/backend/sales/documents/[id]/page.js.map +2 -2
- package/dist/modules/sales/backend/sales/documents/create/page.js +11 -14
- package/dist/modules/sales/backend/sales/documents/create/page.js.map +2 -2
- package/dist/modules/sales/commands/documents.js +184 -23
- package/dist/modules/sales/commands/documents.js.map +2 -2
- package/dist/modules/sales/components/documents/ItemsSection.js +31 -11
- package/dist/modules/sales/components/documents/ItemsSection.js.map +2 -2
- package/dist/modules/sales/components/documents/LineItemDialog.js +12 -5
- package/dist/modules/sales/components/documents/LineItemDialog.js.map +2 -2
- package/dist/modules/sales/components/documents/SalesDocumentForm.js +48 -2
- package/dist/modules/sales/components/documents/SalesDocumentForm.js.map +2 -2
- package/dist/modules/sales/components/documents/SalesDocumentsTable.js +4 -1
- package/dist/modules/sales/components/documents/SalesDocumentsTable.js.map +2 -2
- package/dist/modules/sales/components/documents/SalesOrderDraftLines.js +167 -0
- package/dist/modules/sales/components/documents/SalesOrderDraftLines.js.map +7 -0
- package/dist/modules/sales/components/useSalesChannelsEnabled.js +2 -35
- package/dist/modules/sales/components/useSalesChannelsEnabled.js.map +2 -2
- package/dist/modules/sales/data/validators.js +32 -5
- package/dist/modules/sales/data/validators.js.map +2 -2
- package/dist/modules/sales/di.js +7 -0
- package/dist/modules/sales/di.js.map +2 -2
- package/dist/modules/sales/events.js +1 -0
- package/dist/modules/sales/events.js.map +2 -2
- package/dist/modules/sales/extension-points.js +36 -0
- package/dist/modules/sales/extension-points.js.map +7 -0
- package/dist/modules/sales/lib/historyHelpers.js +69 -1
- package/dist/modules/sales/lib/historyHelpers.js.map +2 -2
- package/dist/modules/sales/services/paymentOrderTotalResolver.js +52 -0
- package/dist/modules/sales/services/paymentOrderTotalResolver.js.map +7 -0
- package/dist/modules/sales/widgets/injection/document-history/widget.client.js +51 -2
- package/dist/modules/sales/widgets/injection/document-history/widget.client.js.map +2 -2
- package/dist/modules/sales/workflows.js +10 -7
- package/dist/modules/sales/workflows.js.map +2 -2
- package/dist/modules/shipping_carriers/api/webhook/[provider]/route.js +11 -1
- package/dist/modules/shipping_carriers/api/webhook/[provider]/route.js.map +2 -2
- package/dist/modules/shipping_carriers/lib/shipment-wizard/components/PackageEditor.js +1 -1
- package/dist/modules/shipping_carriers/lib/shipment-wizard/components/PackageEditor.js.map +1 -1
- package/dist/modules/staff/api/interceptors.js +5 -3
- package/dist/modules/staff/api/interceptors.js.map +2 -2
- package/dist/modules/staff/api/leave-requests.js +45 -42
- package/dist/modules/staff/api/leave-requests.js.map +2 -2
- package/dist/modules/staff/components/detail/dictionaries.js +3 -3
- package/dist/modules/staff/components/detail/dictionaries.js.map +2 -2
- package/dist/modules/sync_excel/api/upload/route.js +15 -2
- package/dist/modules/sync_excel/api/upload/route.js.map +2 -2
- package/dist/modules/sync_excel/widgets/injection/upload-config/widget.client.js +1 -1
- package/dist/modules/sync_excel/widgets/injection/upload-config/widget.client.js.map +2 -2
- package/dist/modules/wms/components/backend/ReleaseReservationDialog.js +1 -1
- package/dist/modules/wms/components/backend/ReleaseReservationDialog.js.map +1 -1
- package/dist/modules/wms/components/backend/WmsConfigurationPage.js +5 -4
- package/dist/modules/wms/components/backend/WmsConfigurationPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsInventoryConsolePage.js +4 -3
- package/dist/modules/wms/components/backend/WmsInventoryConsolePage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsLocationDetailPage.js +3 -2
- package/dist/modules/wms/components/backend/WmsLocationDetailPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsLotDetailPage.js +3 -2
- package/dist/modules/wms/components/backend/WmsLotDetailPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsLotsListPage.js +2 -1
- package/dist/modules/wms/components/backend/WmsLotsListPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsSkuDetailPage.js +3 -2
- package/dist/modules/wms/components/backend/WmsSkuDetailPage.js.map +2 -2
- package/dist/modules/wms/extension-points.js +26 -0
- package/dist/modules/wms/extension-points.js.map +7 -0
- package/dist/modules/workflows/backend/definitions/[id]/page.js +2 -2
- package/dist/modules/workflows/backend/definitions/[id]/page.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/create/page.js +1 -1
- package/dist/modules/workflows/backend/definitions/create/page.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/page.js +3 -2
- package/dist/modules/workflows/backend/definitions/page.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/visual-editor/page.js +9 -6
- package/dist/modules/workflows/backend/definitions/visual-editor/page.js.map +2 -2
- package/dist/modules/workflows/backend/instances/page.js +10 -9
- package/dist/modules/workflows/backend/instances/page.js.map +2 -2
- package/dist/modules/workflows/backend/tasks/page.js +8 -7
- package/dist/modules/workflows/backend/tasks/page.js.map +2 -2
- package/dist/modules/workflows/components/ActivitiesEditor.js +69 -13
- package/dist/modules/workflows/components/ActivitiesEditor.js.map +2 -2
- package/dist/modules/workflows/components/BusinessRulesSelector.js +1 -1
- package/dist/modules/workflows/components/BusinessRulesSelector.js.map +2 -2
- package/dist/modules/workflows/components/DefinitionTriggersEditor.js +3 -3
- package/dist/modules/workflows/components/DefinitionTriggersEditor.js.map +2 -2
- package/dist/modules/workflows/components/EdgeEditDialogCrudForm.js +1 -2
- package/dist/modules/workflows/components/EdgeEditDialogCrudForm.js.map +2 -2
- package/dist/modules/workflows/components/NodeEditDialog.js +3 -3
- package/dist/modules/workflows/components/NodeEditDialog.js.map +2 -2
- package/dist/modules/workflows/components/NodeEditDialogCrudForm.js +4 -5
- package/dist/modules/workflows/components/NodeEditDialogCrudForm.js.map +2 -2
- package/dist/modules/workflows/components/StepsEditor.js +2 -2
- package/dist/modules/workflows/components/StepsEditor.js.map +2 -2
- package/dist/modules/workflows/components/TransitionsEditor.js +207 -165
- package/dist/modules/workflows/components/TransitionsEditor.js.map +2 -2
- package/dist/modules/workflows/components/WorkflowGraphImpl.js +1 -1
- package/dist/modules/workflows/components/WorkflowGraphImpl.js.map +2 -2
- package/dist/modules/workflows/components/WorkflowLegend.js +1 -1
- package/dist/modules/workflows/components/WorkflowLegend.js.map +2 -2
- package/dist/modules/workflows/components/WorkflowSelector.js +1 -1
- package/dist/modules/workflows/components/WorkflowSelector.js.map +2 -2
- package/dist/modules/workflows/components/fields/BusinessRuleConditionsEditor.js +1 -1
- package/dist/modules/workflows/components/fields/BusinessRuleConditionsEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/FormFieldArrayEditor.js +2 -2
- package/dist/modules/workflows/components/fields/FormFieldArrayEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/MappingArrayEditor.js +1 -1
- package/dist/modules/workflows/components/fields/MappingArrayEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/StartPreConditionsEditor.js +1 -1
- package/dist/modules/workflows/components/fields/StartPreConditionsEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/WorkflowSelectorField.js +4 -4
- package/dist/modules/workflows/components/fields/WorkflowSelectorField.js.map +2 -2
- package/dist/modules/workflows/data/validators.js +34 -1
- package/dist/modules/workflows/data/validators.js.map +3 -3
- package/dist/modules/workflows/events.js +1 -0
- package/dist/modules/workflows/events.js.map +2 -2
- package/dist/modules/workflows/extension-points.js +15 -0
- package/dist/modules/workflows/extension-points.js.map +7 -0
- package/dist/modules/workflows/lib/activity-executor.js +59 -14
- package/dist/modules/workflows/lib/activity-executor.js.map +2 -2
- package/dist/modules/workflows/lib/format-validation-error.js +46 -1
- package/dist/modules/workflows/lib/format-validation-error.js.map +2 -2
- package/dist/modules/workflows/widgets/injection/order-approval/context-keys.js +10 -0
- package/dist/modules/workflows/widgets/injection/order-approval/context-keys.js.map +7 -0
- package/dist/modules/workflows/widgets/injection/order-approval/widget.client.js +21 -10
- package/dist/modules/workflows/widgets/injection/order-approval/widget.client.js.map +2 -2
- package/generated/entities/attachment_quota_reservation/index.ts +15 -0
- package/generated/entities/customer_deal_person_link/index.ts +1 -0
- package/generated/entities/customer_user_invitation/index.ts +1 -0
- package/generated/entities/gateway_payment_operation/index.ts +1 -0
- package/generated/entities/gateway_transaction/index.ts +1 -0
- package/generated/entities/organization/index.ts +1 -0
- package/generated/entities/resources_resource/index.ts +1 -0
- package/generated/entities.ids.generated.ts +3 -1
- package/generated/entity-fields-registry.ts +23 -0
- package/package.json +19 -18
- package/src/bootstrap.ts +17 -2
- package/src/helpers/integration/salesFixtures.ts +34 -2
- package/src/helpers/integration/salesUi.ts +8 -0
- package/src/modules/api_keys/backend/api-keys/page.tsx +2 -1
- package/src/modules/api_keys/extension-points.ts +13 -0
- package/src/modules/api_keys/i18n/ko.json +42 -0
- package/src/modules/attachments/api/route.ts +130 -9
- package/src/modules/attachments/backend/config/attachments/page.tsx +1 -1
- package/src/modules/attachments/data/entities.ts +59 -0
- package/src/modules/attachments/di.ts +9 -1
- package/src/modules/attachments/fields/attachment.tsx +1 -1
- package/src/modules/attachments/i18n/de.json +15 -0
- package/src/modules/attachments/i18n/en.json +15 -0
- package/src/modules/attachments/i18n/es.json +15 -0
- package/src/modules/attachments/i18n/ko.json +175 -0
- package/src/modules/attachments/i18n/pl.json +15 -0
- package/src/modules/attachments/lib/drivers/index.ts +1 -1
- package/src/modules/attachments/lib/drivers/localDriver.ts +23 -8
- package/src/modules/attachments/lib/drivers/types.ts +5 -0
- package/src/modules/attachments/lib/quota-recovery-queue.ts +16 -0
- package/src/modules/attachments/lib/quota-service.ts +442 -0
- package/src/modules/attachments/lib/upload-limits.ts +35 -0
- package/src/modules/attachments/migrations/.snapshot-open-mercato.json +648 -120
- package/src/modules/attachments/migrations/Migration20260709234741_attachments.ts +12 -0
- package/src/modules/attachments/workers/quota-recovery.ts +68 -0
- package/src/modules/audit_logs/api/audit-logs/access/route.ts +5 -0
- package/src/modules/audit_logs/api/audit-logs/actions/export/route.ts +5 -0
- package/src/modules/audit_logs/api/audit-logs/actions/route.ts +5 -0
- package/src/modules/audit_logs/api/audit-logs/readScope.ts +28 -0
- package/src/modules/audit_logs/components/AccessLogsTable.tsx +2 -1
- package/src/modules/audit_logs/components/AuditLogsActions.tsx +3 -2
- package/src/modules/audit_logs/extension-points.ts +11 -0
- package/src/modules/audit_logs/i18n/ko.json +66 -0
- package/src/modules/auth/AGENTS.md +12 -8
- package/src/modules/auth/api/admin/nav.ts +28 -4
- package/src/modules/auth/api/profile/route.ts +8 -2
- package/src/modules/auth/api/users/route.ts +8 -28
- package/src/modules/auth/backend/auth/profile/page.tsx +1 -0
- package/src/modules/auth/backend/profile/change-password/page.tsx +1 -0
- package/src/modules/auth/backend/roles/page.tsx +2 -1
- package/src/modules/auth/backend/settings/page.tsx +17 -8
- package/src/modules/auth/backend/users/page.tsx +2 -1
- package/src/modules/auth/cli.ts +1 -1
- package/src/modules/auth/components/UserConsentsPanel.tsx +9 -9
- package/src/modules/auth/extension-points.ts +18 -0
- package/src/modules/auth/frontend/login.tsx +7 -3
- package/src/modules/auth/frontend/reset.tsx +2 -2
- package/src/modules/auth/i18n/de.json +1 -0
- package/src/modules/auth/i18n/en.json +1 -0
- package/src/modules/auth/i18n/es.json +1 -0
- package/src/modules/auth/i18n/ko.json +255 -0
- package/src/modules/auth/i18n/pl.json +1 -0
- package/src/modules/auth/lib/backendChrome.tsx +71 -33
- package/src/modules/auth/lib/setup-app.ts +21 -2
- package/src/modules/auth/lib/tenantAccess.ts +8 -0
- package/src/modules/auth/services/rbacService.ts +41 -46
- package/src/modules/business_rules/api/openmercato-call-options/route.ts +94 -0
- package/src/modules/business_rules/api/rules/route.ts +92 -4
- package/src/modules/business_rules/backend/rules/page.tsx +2 -1
- package/src/modules/business_rules/components/ActionBuilder.tsx +54 -5
- package/src/modules/business_rules/components/ActionRow.tsx +156 -18
- package/src/modules/business_rules/components/ConditionRow.tsx +9 -6
- package/src/modules/business_rules/components/utils/actionValidation.ts +6 -0
- package/src/modules/business_rules/events.ts +10 -0
- package/src/modules/business_rules/extension-points.ts +10 -0
- package/src/modules/business_rules/i18n/de.json +12 -0
- package/src/modules/business_rules/i18n/en.json +12 -0
- package/src/modules/business_rules/i18n/es.json +12 -0
- package/src/modules/business_rules/i18n/ko.json +396 -0
- package/src/modules/business_rules/i18n/pl.json +12 -0
- package/src/modules/business_rules/lib/action-executor.ts +198 -0
- package/src/modules/business_rules/lib/openmercato-call-options-types.ts +31 -0
- package/src/modules/business_rules/lib/openmercato-call-options.ts +297 -0
- package/src/modules/business_rules/lib/rule-engine.ts +4 -0
- package/src/modules/catalog/backend/catalog/products/[id]/page.tsx +6 -5
- package/src/modules/catalog/backend/catalog/products/create/page.tsx +7 -6
- package/src/modules/catalog/components/PriceKindSettings.tsx +3 -3
- package/src/modules/catalog/components/categories/CategoriesDataTable.tsx +2 -1
- package/src/modules/catalog/components/products/ProductCategorizeSection.tsx +3 -3
- package/src/modules/catalog/components/products/ProductMediaManager.tsx +1 -1
- package/src/modules/catalog/components/products/ProductsDataTable.tsx +3 -2
- package/src/modules/catalog/components/products/VariantBuilder.tsx +5 -5
- package/src/modules/catalog/events.ts +1 -0
- package/src/modules/catalog/extension-points.ts +24 -0
- package/src/modules/catalog/i18n/de.json +18 -0
- package/src/modules/catalog/i18n/en.json +18 -0
- package/src/modules/catalog/i18n/es.json +18 -0
- package/src/modules/catalog/i18n/ko.json +723 -0
- package/src/modules/catalog/i18n/pl.json +18 -0
- package/src/modules/catalog/widgets/injection/product-bulk-delete/widget.ts +15 -5
- package/src/modules/catalog/widgets/injection/product-seo/widget.ts +1 -1
- package/src/modules/communication_channels/api/post/test-seed/route.ts +69 -2
- package/src/modules/communication_channels/api/post/webhook/[provider]/route.ts +11 -1
- package/src/modules/communication_channels/api/post/webhooks/gmail/route.ts +17 -11
- package/src/modules/communication_channels/backend/communication_channels/channels/page.tsx +2 -1
- package/src/modules/communication_channels/backend/profile/communication-channels/page.tsx +8 -7
- package/src/modules/communication_channels/data/enrichers.ts +6 -26
- package/src/modules/communication_channels/extension-points.ts +17 -0
- package/src/modules/communication_channels/i18n/de.json +2 -2
- package/src/modules/communication_channels/i18n/en.json +2 -2
- package/src/modules/communication_channels/i18n/es.json +2 -2
- package/src/modules/communication_channels/i18n/ko.json +138 -0
- package/src/modules/communication_channels/i18n/pl.json +2 -2
- package/src/modules/communication_channels/lib/access-control.ts +3 -3
- package/src/modules/configs/backend/config/system-status/page.tsx +2 -1
- package/src/modules/configs/extension-points.ts +15 -0
- package/src/modules/configs/i18n/ko.json +197 -0
- package/src/modules/configs/lib/upgrade-actions.ts +14 -0
- package/src/modules/currencies/backend/currencies/page.tsx +2 -1
- package/src/modules/currencies/backend/exchange-rates/page.tsx +2 -1
- package/src/modules/currencies/di.ts +4 -1
- package/src/modules/currencies/extension-points.ts +11 -0
- package/src/modules/currencies/i18n/de.json +1 -0
- package/src/modules/currencies/i18n/en.json +1 -0
- package/src/modules/currencies/i18n/es.json +1 -0
- package/src/modules/currencies/i18n/ko.json +160 -0
- package/src/modules/currencies/i18n/pl.json +1 -0
- package/src/modules/currencies/services/baseCurrencyService.ts +59 -0
- package/src/modules/customer_accounts/AGENTS.md +3 -3
- package/src/modules/customer_accounts/api/admin/users/[id].ts +16 -1
- package/src/modules/customer_accounts/api/admin/users-invite.ts +81 -3
- package/src/modules/customer_accounts/api/invitations/accept.ts +1 -2
- package/src/modules/customer_accounts/api/login.ts +4 -2
- package/src/modules/customer_accounts/api/magic-link/verify.ts +4 -2
- package/src/modules/customer_accounts/api/portal/feature-check.ts +5 -7
- package/src/modules/customer_accounts/api/portal/nav.ts +5 -3
- package/src/modules/customer_accounts/api/portal/profile.ts +5 -1
- package/src/modules/customer_accounts/api/portal/sessions-refresh.ts +3 -3
- package/src/modules/customer_accounts/api/portal/users-invite.ts +25 -1
- package/src/modules/customer_accounts/backend/customer_accounts/roles/page.tsx +2 -1
- package/src/modules/customer_accounts/backend/customer_accounts/settings/domain/components/Diagnostics.tsx +2 -2
- package/src/modules/customer_accounts/backend/customer_accounts/users/page.tsx +2 -1
- package/src/modules/customer_accounts/data/entities.ts +3 -0
- package/src/modules/customer_accounts/data/validators.ts +1 -0
- package/src/modules/customer_accounts/emails/CustomerInvitationEmail.tsx +45 -0
- package/src/modules/customer_accounts/extension-points.ts +11 -0
- package/src/modules/customer_accounts/i18n/de.json +6 -0
- package/src/modules/customer_accounts/i18n/en.json +6 -0
- package/src/modules/customer_accounts/i18n/es.json +6 -0
- package/src/modules/customer_accounts/i18n/ko.json +354 -0
- package/src/modules/customer_accounts/i18n/pl.json +6 -0
- package/src/modules/customer_accounts/lib/customerAuth.ts +8 -2
- package/src/modules/customer_accounts/lib/customerAuthServer.ts +1 -0
- package/src/modules/customer_accounts/lib/customerEntityOwnership.ts +68 -2
- package/src/modules/customer_accounts/lib/customerUrl.ts +27 -11
- package/src/modules/customer_accounts/lib/invitationEmail.ts +42 -0
- package/src/modules/customer_accounts/migrations/.snapshot-open-mercato.json +16 -0
- package/src/modules/customer_accounts/migrations/Migration20260723120000_customer_accounts.ts +13 -0
- package/src/modules/customer_accounts/services/customerInvitationService.ts +56 -3
- package/src/modules/customer_accounts/services/customerRbacService.ts +16 -3
- package/src/modules/customer_accounts/setup.ts +7 -0
- package/src/modules/customer_accounts/subscribers/autoLinkCrm.ts +75 -8
- package/src/modules/customer_accounts/widgets/injection/account-status/widget.client.tsx +2 -2
- package/src/modules/customer_accounts/widgets/injection/portal-ai-assistant-trigger/widget.client.tsx +1 -3
- package/src/modules/customer_accounts/widgets/injection-table.ts +4 -1
- package/src/modules/customers/analytics.ts +3 -0
- package/src/modules/customers/api/companies/[id]/route.ts +3 -4
- package/src/modules/customers/api/deals/[id]/people/route.ts +3 -0
- package/src/modules/customers/api/deals/[id]/route.ts +10 -2
- package/src/modules/customers/api/deals/aggregate/route.ts +5 -4
- package/src/modules/customers/api/deals/summary/route.ts +15 -162
- package/src/modules/customers/api/people/[id]/companies/enriched/route.ts +3 -2
- package/src/modules/customers/api/utils.ts +25 -37
- package/src/modules/customers/backend/customers/companies/[id]/page.tsx +2 -1
- package/src/modules/customers/backend/customers/companies/page.tsx +2 -1
- package/src/modules/customers/backend/customers/companies-v2/[id]/page.tsx +17 -5
- package/src/modules/customers/backend/customers/deals/[id]/hooks/types.ts +1 -0
- package/src/modules/customers/backend/customers/deals/[id]/page.tsx +19 -12
- package/src/modules/customers/backend/customers/deals/page.tsx +2 -1
- package/src/modules/customers/backend/customers/deals/pipeline/components/QuickDealDialog.tsx +35 -3
- package/src/modules/customers/backend/customers/deals/pipeline/page.tsx +11 -2
- package/src/modules/customers/backend/customers/people/[id]/page.tsx +2 -1
- package/src/modules/customers/backend/customers/people/page.tsx +2 -1
- package/src/modules/customers/backend/customers/people-v2/[id]/page.tsx +29 -10
- package/src/modules/customers/cli.ts +28 -11
- package/src/modules/customers/commands/deals.ts +50 -9
- package/src/modules/customers/commands/people.ts +3 -0
- package/src/modules/customers/components/CustomerTodosTable.tsx +2 -1
- package/src/modules/customers/components/calendar/CalendarEventEditor.tsx +1 -1
- package/src/modules/customers/components/detail/ActiveDealCard.tsx +2 -1
- package/src/modules/customers/components/detail/ActivitiesDayStrip.tsx +2 -3
- package/src/modules/customers/components/detail/CompanyDetailTabs.tsx +30 -7
- package/src/modules/customers/components/detail/CompanyKpiBar.tsx +6 -5
- package/src/modules/customers/components/detail/ConfirmDealLostDialog.tsx +2 -2
- package/src/modules/customers/components/detail/DealDetailTabs.tsx +34 -9
- package/src/modules/customers/components/detail/DealForm.tsx +5 -1
- package/src/modules/customers/components/detail/DealsSection.tsx +1 -1
- package/src/modules/customers/components/detail/MiniWeekCalendar.tsx +8 -57
- package/src/modules/customers/components/detail/PersonDetailTabs.tsx +34 -9
- package/src/modules/customers/components/detail/ScheduleActivityDialog.tsx +29 -14
- package/src/modules/customers/components/detail/dashboard/helpers.ts +4 -3
- package/src/modules/customers/components/detail/legacyActivities.ts +79 -0
- package/src/modules/customers/components/formConfig.tsx +12 -8
- package/src/modules/customers/data/entities.ts +9 -1
- package/src/modules/customers/data/validators.ts +6 -1
- package/src/modules/customers/extension-points.ts +40 -0
- package/src/modules/customers/i18n/de.json +72 -0
- package/src/modules/customers/i18n/en.json +72 -0
- package/src/modules/customers/i18n/es.json +72 -0
- package/src/modules/customers/i18n/ko.json +2855 -0
- package/src/modules/customers/i18n/pl.json +72 -0
- package/src/modules/customers/lib/calendar/format.ts +10 -4
- package/src/modules/customers/lib/dealStatus.ts +48 -0
- package/src/modules/customers/lib/dealsSummaryQueries.ts +211 -0
- package/src/modules/customers/lib/optionalBaseCurrency.ts +34 -0
- package/src/modules/customers/lib/visibilityFilter.ts +7 -5
- package/src/modules/customers/migrations/.snapshot-open-mercato.json +27 -1
- package/src/modules/customers/migrations/Migration20260723210000_customers.ts +15 -0
- package/src/modules/customers/search.ts +59 -27
- package/src/modules/customers/utils/phoneDuplicates.ts +6 -3
- package/src/modules/dashboards/api/layout/[itemId]/route.ts +6 -3
- package/src/modules/dashboards/api/layout/route.ts +22 -9
- package/src/modules/dashboards/api/roles/widgets/route.ts +9 -3
- package/src/modules/dashboards/api/users/widgets/route.ts +9 -3
- package/src/modules/dashboards/api/widgets/catalog.ts +6 -3
- package/src/modules/dashboards/api/widgets/data/batch/route.ts +12 -1
- package/src/modules/dashboards/api/widgets/data/route.ts +29 -1
- package/src/modules/dashboards/api/widgets/data/schema.ts +49 -19
- package/src/modules/dashboards/components/UnlabelledAmountNotice.tsx +43 -0
- package/src/modules/dashboards/i18n/de.json +5 -0
- package/src/modules/dashboards/i18n/en.json +5 -0
- package/src/modules/dashboards/i18n/es.json +5 -0
- package/src/modules/dashboards/i18n/ko.json +118 -0
- package/src/modules/dashboards/i18n/pl.json +5 -0
- package/src/modules/dashboards/lib/access.ts +5 -3
- package/src/modules/dashboards/lib/aggregations.ts +198 -48
- package/src/modules/dashboards/lib/exactDecimal.ts +96 -0
- package/src/modules/dashboards/lib/formatters.ts +137 -12
- package/src/modules/dashboards/lib/optionalBaseCurrency.ts +22 -0
- package/src/modules/dashboards/services/widgetDataService.ts +453 -12
- package/src/modules/dashboards/subscribers/invalidateWidgetDataCache.ts +32 -0
- package/src/modules/dashboards/widgets/dashboard/aov-kpi/widget.client.tsx +9 -3
- package/src/modules/dashboards/widgets/dashboard/pipeline-summary/config.ts +86 -0
- package/src/modules/dashboards/widgets/dashboard/pipeline-summary/widget.client.tsx +42 -21
- package/src/modules/dashboards/widgets/dashboard/pipeline-summary/widget.ts +2 -2
- package/src/modules/dashboards/widgets/dashboard/revenue-kpi/widget.client.tsx +9 -3
- package/src/modules/dashboards/widgets/dashboard/revenue-trend/widget.client.tsx +7 -2
- package/src/modules/dashboards/widgets/dashboard/sales-by-region/widget.client.tsx +25 -15
- package/src/modules/dashboards/widgets/dashboard/top-customers/widget.client.tsx +21 -11
- package/src/modules/dashboards/widgets/dashboard/top-products/widget.client.tsx +9 -3
- package/src/modules/data_sync/AGENTS.md +1 -0
- package/src/modules/data_sync/api/mappings/[id]/route.ts +22 -9
- package/src/modules/data_sync/api/mappings/route.ts +13 -4
- package/src/modules/data_sync/api/options.ts +7 -2
- package/src/modules/data_sync/api/run.ts +7 -2
- package/src/modules/data_sync/api/runs/[id]/cancel.ts +8 -3
- package/src/modules/data_sync/api/runs/[id]/retry.ts +7 -2
- package/src/modules/data_sync/api/runs/[id]/route.ts +8 -3
- package/src/modules/data_sync/api/runs.ts +7 -2
- package/src/modules/data_sync/api/schedules/[id]/route.ts +19 -6
- package/src/modules/data_sync/api/schedules/route.ts +13 -4
- package/src/modules/data_sync/api/validate.ts +9 -4
- package/src/modules/data_sync/backend/data-sync/page.tsx +5 -4
- package/src/modules/data_sync/components/IntegrationScheduleTab.tsx +5 -5
- package/src/modules/data_sync/extension-points.ts +10 -0
- package/src/modules/data_sync/i18n/ko.json +125 -0
- package/src/modules/data_sync/lib/adapter.ts +18 -0
- package/src/modules/data_sync/lib/queue-policy.ts +30 -0
- package/src/modules/data_sync/lib/queue.ts +19 -1
- package/src/modules/data_sync/lib/start-run.ts +2 -1
- package/src/modules/data_sync/lib/sync-engine.ts +46 -0
- package/src/modules/data_sync/lib/sync-run-service.ts +82 -1
- package/src/modules/data_sync/workers/sync-export.ts +8 -1
- package/src/modules/data_sync/workers/sync-import.ts +8 -1
- package/src/modules/design_system/AGENTS.md +34 -0
- package/src/modules/design_system/acl.ts +5 -0
- package/src/modules/design_system/backend/design-system/page.meta.ts +11 -0
- package/src/modules/design_system/backend/design-system/page.tsx +14 -0
- package/src/modules/design_system/gallery/components/CodeSnippet.tsx +55 -0
- package/src/modules/design_system/gallery/components/EntryCard.tsx +95 -0
- package/src/modules/design_system/gallery/components/GalleryShell.tsx +206 -0
- package/src/modules/design_system/gallery/components/VariantPreview.tsx +15 -0
- package/src/modules/design_system/gallery/entries/banners.tsx +226 -0
- package/src/modules/design_system/gallery/entries/buttons.tsx +422 -0
- package/src/modules/design_system/gallery/entries/charts.tsx +518 -0
- package/src/modules/design_system/gallery/entries/dates.tsx +325 -0
- package/src/modules/design_system/gallery/entries/detail.tsx +403 -0
- package/src/modules/design_system/gallery/entries/display.tsx +893 -0
- package/src/modules/design_system/gallery/entries/feedback.tsx +746 -0
- package/src/modules/design_system/gallery/entries/filters.tsx +570 -0
- package/src/modules/design_system/gallery/entries/foundations.tsx +529 -0
- package/src/modules/design_system/gallery/entries/icons.tsx +168 -0
- package/src/modules/design_system/gallery/entries/inputs.tsx +1516 -0
- package/src/modules/design_system/gallery/entries/messages.tsx +339 -0
- package/src/modules/design_system/gallery/entries/navigation.tsx +573 -0
- package/src/modules/design_system/gallery/entries/notifications.tsx +285 -0
- package/src/modules/design_system/gallery/entries/overlays.tsx +677 -0
- package/src/modules/design_system/gallery/entries/scaffolding.tsx +430 -0
- package/src/modules/design_system/gallery/entries/schedule.tsx +307 -0
- package/src/modules/design_system/gallery/registry.ts +152 -0
- package/src/modules/design_system/gallery/types.ts +32 -0
- package/src/modules/design_system/i18n/.hardcoded-allowlist.json +71 -0
- package/src/modules/design_system/i18n/de.json +58 -0
- package/src/modules/design_system/i18n/en.json +58 -0
- package/src/modules/design_system/i18n/es.json +58 -0
- package/src/modules/design_system/i18n/ko.json +58 -0
- package/src/modules/design_system/i18n/pl.json +58 -0
- package/src/modules/design_system/index.ts +7 -0
- package/src/modules/design_system/setup.ts +12 -0
- package/src/modules/dictionaries/api/[dictionaryId]/entries/route.ts +39 -11
- package/src/modules/dictionaries/api/openapi.ts +19 -0
- package/src/modules/dictionaries/components/DictionaryEntrySelect.tsx +1 -1
- package/src/modules/dictionaries/components/hooks/useDictionaryEntries.ts +35 -36
- package/src/modules/dictionaries/data/validators.ts +14 -0
- package/src/modules/dictionaries/i18n/ko.json +130 -0
- package/src/modules/dictionaries/lib/clientEntries.ts +4 -3
- package/src/modules/dictionaries/lib/fetchAllEntries.ts +72 -0
- package/src/modules/directory/api/organization-branding/route.ts +12 -1
- package/src/modules/directory/api/organization-switcher/route.ts +97 -26
- package/src/modules/directory/api/organizations/route.ts +7 -0
- package/src/modules/directory/api/tenants/route.ts +9 -1
- package/src/modules/directory/backend/directory/branding/page.tsx +34 -9
- package/src/modules/directory/backend/directory/organizations/[id]/edit/page.tsx +10 -14
- package/src/modules/directory/backend/directory/organizations/page.tsx +2 -1
- package/src/modules/directory/backend/directory/tenants/page.tsx +2 -1
- package/src/modules/directory/commands/organizations.ts +9 -1
- package/src/modules/directory/commands/tenants.ts +6 -0
- package/src/modules/directory/data/entities.ts +3 -0
- package/src/modules/directory/data/validators.ts +2 -0
- package/src/modules/directory/extension-points.ts +11 -0
- package/src/modules/directory/i18n/de.json +4 -1
- package/src/modules/directory/i18n/en.json +4 -1
- package/src/modules/directory/i18n/es.json +4 -1
- package/src/modules/directory/i18n/ko.json +105 -0
- package/src/modules/directory/i18n/pl.json +4 -1
- package/src/modules/directory/migrations/.snapshot-open-mercato.json +18 -1
- package/src/modules/directory/migrations/Migration20260626145500_directory_logo_preserve_aspect_ratio.ts +13 -0
- package/src/modules/directory/subscribers/invalidateOrgScopeCache.ts +4 -1
- package/src/modules/directory/utils/organizationScope.ts +9 -3
- package/src/modules/entities/api/definitions.ts +55 -3
- package/src/modules/entities/api/entities.ts +30 -2
- package/src/modules/entities/api/entity-settings.ts +66 -22
- package/src/modules/entities/api/records.ts +15 -31
- package/src/modules/entities/api/sidebar-entities.ts +43 -14
- package/src/modules/entities/backend/config/settings/page.meta.ts +34 -0
- package/src/modules/entities/backend/config/settings/page.tsx +12 -0
- package/src/modules/entities/backend/entities/user/[entityId]/page.tsx +1 -1
- package/src/modules/entities/backend/entities/user/[entityId]/records/page.tsx +96 -75
- package/src/modules/entities/backend/entities/user/create/page.tsx +16 -7
- package/src/modules/entities/cli.ts +238 -21
- package/src/modules/entities/components/EntitySettingsManager.tsx +160 -0
- package/src/modules/entities/components/RecordListRelationCell.tsx +90 -0
- package/src/modules/entities/components/SystemEntitiesTable.tsx +2 -1
- package/src/modules/entities/components/UserEntitiesTable.tsx +2 -1
- package/src/modules/entities/components/recordListRelationDisplays.ts +109 -0
- package/src/modules/entities/extension-points.ts +18 -0
- package/src/modules/entities/i18n/de.json +9 -0
- package/src/modules/entities/i18n/en.json +9 -0
- package/src/modules/entities/i18n/es.json +9 -0
- package/src/modules/entities/i18n/ko.json +260 -0
- package/src/modules/entities/i18n/pl.json +9 -0
- package/src/modules/entities/lib/entityAcl.ts +98 -11
- package/src/modules/feature_toggles/components/FeatureGuard.tsx +9 -2
- package/src/modules/feature_toggles/components/FeatureToggleOverrideCard.tsx +1 -1
- package/src/modules/feature_toggles/components/hooks/staleTime.ts +5 -0
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagBoolean.ts +13 -1
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagJson.ts +12 -3
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagNumber.ts +10 -1
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagString.ts +10 -1
- package/src/modules/feature_toggles/i18n/ko.json +96 -0
- package/src/modules/inbox_ops/ai-tools.ts +5 -3
- package/src/modules/inbox_ops/api/proposals/[id]/actions/[actionId]/route.ts +17 -1
- package/src/modules/inbox_ops/api/proposals/route.ts +20 -1
- package/src/modules/inbox_ops/api/webhook/inbound.ts +14 -12
- package/src/modules/inbox_ops/backend/inbox-ops/log/page.tsx +6 -6
- package/src/modules/inbox_ops/components/proposals/EditActionDialog.tsx +24 -19
- package/src/modules/inbox_ops/components/proposals/types.ts +1 -0
- package/src/modules/inbox_ops/i18n/de.json +3 -0
- package/src/modules/inbox_ops/i18n/en.json +3 -0
- package/src/modules/inbox_ops/i18n/es.json +3 -0
- package/src/modules/inbox_ops/i18n/ko.json +196 -0
- package/src/modules/inbox_ops/i18n/pl.json +3 -0
- package/src/modules/inbox_ops/search.ts +20 -4
- package/src/modules/inbox_ops/subscribers/search-reindex-proposal-created.ts +39 -0
- package/src/modules/integrations/api/[id]/credentials/route.ts +11 -5
- package/src/modules/integrations/api/[id]/health/route.ts +6 -3
- package/src/modules/integrations/api/[id]/route.ts +6 -3
- package/src/modules/integrations/api/[id]/state/route.ts +6 -3
- package/src/modules/integrations/api/[id]/version/route.ts +6 -3
- package/src/modules/integrations/api/logs/route.ts +6 -3
- package/src/modules/integrations/api/route.ts +6 -3
- package/src/modules/integrations/api/umes-read.ts +2 -2
- package/src/modules/integrations/backend/integrations/[id]/page.tsx +2 -2
- package/src/modules/integrations/extension-points.ts +27 -0
- package/src/modules/integrations/i18n/ko.json +129 -0
- package/src/modules/integrations/lib/organization-scope.ts +5 -25
- package/src/modules/integrations/widgets/injection/external-ids/widget.client.tsx +0 -5
- package/src/modules/integrations/widgets/injection/external-ids/widget.ts +13 -0
- package/src/modules/messages/api/[id]/route.ts +21 -0
- package/src/modules/messages/api/route.ts +109 -9
- package/src/modules/messages/components/ComposeMessagePageClient.tsx +2 -1
- package/src/modules/messages/components/MessageDetailPageClient.tsx +3 -2
- package/src/modules/messages/components/MessagesInboxPageClient.tsx +2 -1
- package/src/modules/messages/components/message-detail/panels/dialogs.tsx +1 -1
- package/src/modules/messages/extension-points.ts +13 -0
- package/src/modules/messages/i18n/de.json +2 -0
- package/src/modules/messages/i18n/en.json +2 -0
- package/src/modules/messages/i18n/es.json +2 -0
- package/src/modules/messages/i18n/ko.json +263 -0
- package/src/modules/messages/i18n/pl.json +2 -0
- package/src/modules/messages/lib/participantScope.ts +64 -0
- package/src/modules/messages/lib/routeHelpers.ts +4 -6
- package/src/modules/messages/lib/searchLookup.ts +11 -34
- package/src/modules/messages/search.ts +11 -5
- package/src/modules/notifications/api/route.ts +123 -3
- package/src/modules/notifications/api/unread-count/route.ts +42 -5
- package/src/modules/notifications/di.ts +1 -1
- package/src/modules/notifications/events.ts +2 -0
- package/src/modules/notifications/i18n/ko.json +55 -0
- package/src/modules/notifications/lib/notificationRecipients.ts +6 -8
- package/src/modules/notifications/lib/notificationScope.ts +40 -0
- package/src/modules/notifications/lib/notificationService.ts +63 -1
- package/src/modules/notifications/lib/routeHelpers.ts +19 -2
- package/src/modules/payment_gateways/api/capture/route.ts +1 -1
- package/src/modules/payment_gateways/api/sessions/route.ts +6 -3
- package/src/modules/payment_gateways/api/webhook/[provider]/route.ts +13 -1
- package/src/modules/payment_gateways/backend/payment-gateways/page.tsx +3 -2
- package/src/modules/payment_gateways/data/entities.ts +13 -2
- package/src/modules/payment_gateways/di.ts +28 -2
- package/src/modules/payment_gateways/extension-points.ts +16 -0
- package/src/modules/payment_gateways/i18n/de.json +8 -1
- package/src/modules/payment_gateways/i18n/en.json +8 -1
- package/src/modules/payment_gateways/i18n/es.json +8 -1
- package/src/modules/payment_gateways/i18n/ko.json +87 -0
- package/src/modules/payment_gateways/i18n/pl.json +8 -1
- package/src/modules/payment_gateways/lib/capture-ledger.ts +260 -0
- package/src/modules/payment_gateways/lib/gateway-service.ts +114 -18
- package/src/modules/payment_gateways/lib/order-amount-reconciliation.ts +93 -0
- package/src/modules/payment_gateways/lib/payment-operation-idempotency.ts +1 -0
- package/src/modules/payment_gateways/lib/session-idempotency.ts +36 -0
- package/src/modules/payment_gateways/migrations/.snapshot-open-mercato.json +44 -1
- package/src/modules/payment_gateways/migrations/Migration20260725101500_payment_gateways.ts +21 -0
- package/src/modules/payment_gateways/migrations/Migration20260803103035_payment_gateways.ts +17 -0
- package/src/modules/payment_gateways/setup.ts +62 -0
- package/src/modules/payment_gateways/workers/session-initialization-prune.ts +63 -0
- package/src/modules/planner/components/AvailabilityRulesEditor.tsx +4 -4
- package/src/modules/planner/components/unavailabilityReasons.ts +3 -3
- package/src/modules/planner/i18n/ko.json +565 -0
- package/src/modules/portal/extension-points.ts +30 -0
- package/src/modules/portal/frontend/[orgSlug]/portal/dashboard/page.tsx +3 -3
- package/src/modules/portal/frontend/[orgSlug]/portal/invite/page.meta.ts +9 -0
- package/src/modules/portal/frontend/[orgSlug]/portal/invite/page.tsx +164 -0
- package/src/modules/portal/frontend/[orgSlug]/portal/login/page.tsx +4 -4
- package/src/modules/portal/frontend/[orgSlug]/portal/page.tsx +3 -3
- package/src/modules/portal/frontend/[orgSlug]/portal/profile/page.tsx +3 -3
- package/src/modules/portal/frontend/[orgSlug]/portal/reset-password/page.tsx +5 -5
- package/src/modules/portal/frontend/[orgSlug]/portal/signup/page.tsx +4 -4
- package/src/modules/portal/frontend/[orgSlug]/portal/verify/page.tsx +1 -1
- package/src/modules/portal/i18n/de.json +18 -0
- package/src/modules/portal/i18n/en.json +18 -0
- package/src/modules/portal/i18n/es.json +18 -0
- package/src/modules/portal/i18n/ko.json +143 -0
- package/src/modules/portal/i18n/pl.json +18 -0
- package/src/modules/portal/lib/navigation.ts +3 -0
- package/src/modules/progress/AGENTS.md +11 -1
- package/src/modules/progress/i18n/ko.json +20 -0
- package/src/modules/progress/lib/progressService.ts +1 -0
- package/src/modules/progress/lib/progressServiceImpl.ts +385 -117
- package/src/modules/query_index/api/openapi.ts +12 -0
- package/src/modules/query_index/api/reindex.ts +15 -0
- package/src/modules/query_index/api/status.ts +238 -136
- package/src/modules/query_index/cli.ts +180 -1
- package/src/modules/query_index/components/QueryIndexesTable.tsx +194 -47
- package/src/modules/query_index/data/entities.ts +7 -0
- package/src/modules/query_index/di.ts +6 -0
- package/src/modules/query_index/events.ts +17 -0
- package/src/modules/query_index/extension-points.ts +10 -0
- package/src/modules/query_index/i18n/de.json +5 -3
- package/src/modules/query_index/i18n/en.json +5 -3
- package/src/modules/query_index/i18n/es.json +5 -3
- package/src/modules/query_index/i18n/ko.json +69 -0
- package/src/modules/query_index/i18n/pl.json +5 -3
- package/src/modules/query_index/lib/batch.ts +11 -4
- package/src/modules/query_index/lib/coverage.ts +47 -14
- package/src/modules/query_index/lib/document.ts +35 -4
- package/src/modules/query_index/lib/engine.ts +136 -59
- package/src/modules/query_index/lib/indexer.ts +130 -21
- package/src/modules/query_index/lib/reindexer.ts +62 -40
- package/src/modules/query_index/lib/search-tokens.ts +48 -16
- package/src/modules/query_index/lib/subscriber-scope.ts +2 -7
- package/src/modules/query_index/migrations/.snapshot-open-mercato.json +12 -0
- package/src/modules/query_index/migrations/Migration20260731105052_query_index.ts +35 -0
- package/src/modules/query_index/subscribers/coverage_refresh.ts +4 -0
- package/src/modules/query_index/subscribers/delete_one.ts +65 -1
- package/src/modules/query_index/subscribers/upsert_one.ts +68 -1
- package/src/modules/resources/api/resources.ts +2 -0
- package/src/modules/resources/backend/resources/resource-types/page.tsx +2 -1
- package/src/modules/resources/backend/resources/resources/[id]/page.tsx +9 -3
- package/src/modules/resources/backend/resources/resources/page.tsx +2 -1
- package/src/modules/resources/commands/resources.ts +10 -0
- package/src/modules/resources/components/detail/dictionaries.ts +3 -3
- package/src/modules/resources/data/entities.ts +3 -0
- package/src/modules/resources/data/validators.ts +5 -0
- package/src/modules/resources/extension-points.ts +11 -0
- package/src/modules/resources/i18n/ko.json +770 -0
- package/src/modules/resources/lib/seeds.ts +16 -9
- package/src/modules/resources/migrations/.snapshot-open-mercato.json +17 -1
- package/src/modules/resources/migrations/Migration20260608231000.ts +13 -0
- package/src/modules/sales/analytics.ts +4 -0
- package/src/modules/sales/api/document-history/route.ts +1 -0
- package/src/modules/sales/api/documents/factory.ts +28 -3
- package/src/modules/sales/backend/sales/documents/[id]/page.tsx +11 -3
- package/src/modules/sales/backend/sales/documents/create/page.tsx +2 -4
- package/src/modules/sales/commands/documents.ts +298 -31
- package/src/modules/sales/components/documents/ItemsSection.tsx +34 -11
- package/src/modules/sales/components/documents/LineItemDialog.tsx +13 -5
- package/src/modules/sales/components/documents/SalesDocumentForm.tsx +48 -6
- package/src/modules/sales/components/documents/SalesDocumentsTable.tsx +6 -1
- package/src/modules/sales/components/documents/SalesOrderDraftLines.tsx +198 -0
- package/src/modules/sales/components/documents/lineItemTypes.ts +1 -0
- package/src/modules/sales/components/useSalesChannelsEnabled.ts +2 -48
- package/src/modules/sales/data/validators.ts +59 -6
- package/src/modules/sales/di.ts +9 -0
- package/src/modules/sales/events.ts +1 -0
- package/src/modules/sales/extension-points.ts +33 -0
- package/src/modules/sales/i18n/de.json +22 -0
- package/src/modules/sales/i18n/en.json +22 -0
- package/src/modules/sales/i18n/es.json +22 -0
- package/src/modules/sales/i18n/ko.json +1442 -0
- package/src/modules/sales/i18n/pl.json +22 -0
- package/src/modules/sales/lib/historyHelpers.ts +88 -1
- package/src/modules/sales/services/paymentOrderTotalResolver.ts +67 -0
- package/src/modules/sales/widgets/injection/document-history/widget.client.tsx +64 -3
- package/src/modules/sales/workflows.ts +10 -7
- package/src/modules/shipping_carriers/api/webhook/[provider]/route.ts +11 -1
- package/src/modules/shipping_carriers/i18n/ko.json +85 -0
- package/src/modules/shipping_carriers/lib/shipment-wizard/components/PackageEditor.tsx +1 -1
- package/src/modules/staff/api/interceptors.ts +6 -4
- package/src/modules/staff/api/leave-requests.ts +54 -47
- package/src/modules/staff/components/detail/dictionaries.ts +3 -3
- package/src/modules/staff/i18n/ko.json +1162 -0
- package/src/modules/sync_excel/api/upload/route.ts +15 -2
- package/src/modules/sync_excel/i18n/ko.json +107 -0
- package/src/modules/sync_excel/widgets/injection/upload-config/widget.client.tsx +1 -1
- package/src/modules/translations/i18n/ko.json +45 -0
- package/src/modules/wms/components/backend/ReleaseReservationDialog.tsx +1 -1
- package/src/modules/wms/components/backend/WmsConfigurationPage.tsx +5 -4
- package/src/modules/wms/components/backend/WmsInventoryConsolePage.tsx +4 -3
- package/src/modules/wms/components/backend/WmsLocationDetailPage.tsx +3 -2
- package/src/modules/wms/components/backend/WmsLotDetailPage.tsx +3 -2
- package/src/modules/wms/components/backend/WmsLotsListPage.tsx +2 -1
- package/src/modules/wms/components/backend/WmsSkuDetailPage.tsx +3 -2
- package/src/modules/wms/extension-points.ts +23 -0
- package/src/modules/wms/i18n/de.json +2 -0
- package/src/modules/wms/i18n/en.json +2 -0
- package/src/modules/wms/i18n/es.json +2 -0
- package/src/modules/wms/i18n/ko.json +1053 -0
- package/src/modules/wms/i18n/pl.json +2 -0
- package/src/modules/workflows/backend/definitions/[id]/page.tsx +2 -2
- package/src/modules/workflows/backend/definitions/create/page.tsx +1 -1
- package/src/modules/workflows/backend/definitions/page.tsx +3 -2
- package/src/modules/workflows/backend/definitions/visual-editor/page.tsx +16 -7
- package/src/modules/workflows/backend/instances/page.tsx +10 -9
- package/src/modules/workflows/backend/tasks/page.tsx +8 -7
- package/src/modules/workflows/components/ActivitiesEditor.tsx +98 -14
- package/src/modules/workflows/components/BusinessRulesSelector.tsx +1 -1
- package/src/modules/workflows/components/DefinitionTriggersEditor.tsx +3 -3
- package/src/modules/workflows/components/EdgeEditDialogCrudForm.tsx +1 -2
- package/src/modules/workflows/components/NodeEditDialog.tsx +3 -3
- package/src/modules/workflows/components/NodeEditDialogCrudForm.tsx +4 -5
- package/src/modules/workflows/components/StepsEditor.tsx +2 -2
- package/src/modules/workflows/components/TransitionsEditor.tsx +78 -20
- package/src/modules/workflows/components/WorkflowGraphImpl.tsx +1 -1
- package/src/modules/workflows/components/WorkflowLegend.tsx +1 -1
- package/src/modules/workflows/components/WorkflowSelector.tsx +1 -1
- package/src/modules/workflows/components/fields/BusinessRuleConditionsEditor.tsx +1 -1
- package/src/modules/workflows/components/fields/FormFieldArrayEditor.tsx +2 -2
- package/src/modules/workflows/components/fields/MappingArrayEditor.tsx +1 -1
- package/src/modules/workflows/components/fields/StartPreConditionsEditor.tsx +1 -1
- package/src/modules/workflows/components/fields/WorkflowSelectorField.tsx +4 -4
- package/src/modules/workflows/data/validators.ts +52 -1
- package/src/modules/workflows/events.ts +1 -0
- package/src/modules/workflows/extension-points.ts +12 -0
- package/src/modules/workflows/i18n/de.json +3 -0
- package/src/modules/workflows/i18n/en.json +3 -0
- package/src/modules/workflows/i18n/es.json +3 -0
- package/src/modules/workflows/i18n/ko.json +1204 -0
- package/src/modules/workflows/i18n/pl.json +3 -0
- package/src/modules/workflows/lib/activity-executor.ts +99 -20
- package/src/modules/workflows/lib/format-validation-error.ts +60 -0
- package/src/modules/workflows/widgets/injection/order-approval/context-keys.ts +18 -0
- package/src/modules/workflows/widgets/injection/order-approval/widget.client.tsx +27 -11
|
@@ -0,0 +1,1204 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common.all": "전체",
|
|
3
|
+
"common.cancel": "취소",
|
|
4
|
+
"common.delete": "삭제",
|
|
5
|
+
"common.details": "상세 정보",
|
|
6
|
+
"common.disable": "비활성화",
|
|
7
|
+
"common.disabled": "비활성화됨",
|
|
8
|
+
"common.done": "완료",
|
|
9
|
+
"common.duplicate": "복제",
|
|
10
|
+
"common.edit": "편집",
|
|
11
|
+
"common.enable": "활성화",
|
|
12
|
+
"common.enabled": "활성화됨",
|
|
13
|
+
"common.loading": "로딩 중...",
|
|
14
|
+
"common.no": "아니요",
|
|
15
|
+
"common.off": "끔",
|
|
16
|
+
"common.on": "켬",
|
|
17
|
+
"common.refresh": "새로고침",
|
|
18
|
+
"common.refreshing": "새로고침 중...",
|
|
19
|
+
"common.retry": "다시 시도",
|
|
20
|
+
"common.yes": "예",
|
|
21
|
+
"demo.subWorkflow.addMapping": "매핑 추가",
|
|
22
|
+
"demo.subWorkflow.childInstanceId": "하위 워크플로우 인스턴스",
|
|
23
|
+
"demo.subWorkflow.description": "다른 워크플로우를 하위 프로세스로 호출합니다",
|
|
24
|
+
"demo.subWorkflow.failed": "하위 워크플로우가 실패했습니다",
|
|
25
|
+
"demo.subWorkflow.inputMapping": "입력 매핑",
|
|
26
|
+
"demo.subWorkflow.inputMappingDescription": "상위 워크플로우의 데이터를 하위 워크플로우 컨텍스트로 매핑합니다",
|
|
27
|
+
"demo.subWorkflow.invoking": "하위 워크플로우 호출 중...",
|
|
28
|
+
"demo.subWorkflow.mappingKey": "대상 키",
|
|
29
|
+
"demo.subWorkflow.mappingValue": "소스 경로",
|
|
30
|
+
"demo.subWorkflow.noMappings": "정의된 매핑이 없습니다. 데이터가 변환 없이 전달됩니다.",
|
|
31
|
+
"demo.subWorkflow.outputMapping": "출력 매핑",
|
|
32
|
+
"demo.subWorkflow.outputMappingDescription": "하위 워크플로우의 데이터를 상위 컨텍스트로 다시 매핑합니다",
|
|
33
|
+
"demo.subWorkflow.parentInstanceId": "상위 워크플로우 인스턴스",
|
|
34
|
+
"demo.subWorkflow.removeMapping": "매핑 제거",
|
|
35
|
+
"demo.subWorkflow.subWorkflowId": "호출할 워크플로우",
|
|
36
|
+
"demo.subWorkflow.subWorkflowIdPlaceholder": "워크플로우 선택...",
|
|
37
|
+
"demo.subWorkflow.success": "하위 워크플로우가 성공적으로 완료되었습니다",
|
|
38
|
+
"demo.subWorkflow.timeoutMs": "타임아웃 (밀리초)",
|
|
39
|
+
"demo.subWorkflow.title": "하위 워크플로우 설정",
|
|
40
|
+
"demo.subWorkflow.version": "버전",
|
|
41
|
+
"demo.subWorkflow.versionPlaceholder": "최신 버전",
|
|
42
|
+
"demo.userTask.completeButton": "작업 완료",
|
|
43
|
+
"demo.userTask.description": "이 워크플로우는 사용자 입력을 기다리며 일시 중지되었습니다. 계속하려면 아래 작업을 완료해 주세요.",
|
|
44
|
+
"demo.userTask.dueLabel": "기한",
|
|
45
|
+
"demo.userTask.title": "사용자 작업 필요",
|
|
46
|
+
"orderApproval.approveButton": "승인",
|
|
47
|
+
"orderApproval.approvedStatus": "승인됨",
|
|
48
|
+
"orderApproval.commentsLabel": "코멘트",
|
|
49
|
+
"orderApproval.commentsPlaceholder": "선택적으로 코멘트를 추가하세요...",
|
|
50
|
+
"orderApproval.completeError": "승인 작업을 완료하지 못했습니다",
|
|
51
|
+
"orderApproval.completed": "승인 워크플로우가 완료되었습니다.",
|
|
52
|
+
"orderApproval.decisionLabel": "결정",
|
|
53
|
+
"orderApproval.groupDescription": "이 주문을 검토하여 승인 또는 반려합니다",
|
|
54
|
+
"orderApproval.groupLabel": "주문 승인",
|
|
55
|
+
"orderApproval.missingStatuses": "주문 상태 항목이 누락되었습니다. sales.order_status 딕셔너리에 pending_approval, approved, rejected 상태가 존재하는지 확인해 주세요.",
|
|
56
|
+
"orderApproval.noWorkflowActive": "이 주문에 대해 활성화된 승인 워크플로우가 없습니다.",
|
|
57
|
+
"orderApproval.pendingDescription": "이 주문은 처리 전 승인이 필요합니다",
|
|
58
|
+
"orderApproval.pendingTitle": "승인 대기 중",
|
|
59
|
+
"orderApproval.processing": "워크플로우 처리 중...",
|
|
60
|
+
"orderApproval.rejectButton": "반려",
|
|
61
|
+
"orderApproval.rejectedStatus": "반려됨",
|
|
62
|
+
"orderApproval.requestApproval": "승인 요청",
|
|
63
|
+
"orderApproval.startError": "승인 워크플로우를 시작하지 못했습니다",
|
|
64
|
+
"orderApproval.submitDecision": "결정 제출",
|
|
65
|
+
"workflows.actions.cancel": "취소",
|
|
66
|
+
"workflows.actions.create": "워크플로우 생성",
|
|
67
|
+
"workflows.actions.createVisual": "워크플로우 생성 (비주얼)",
|
|
68
|
+
"workflows.actions.customize": "커스터마이즈",
|
|
69
|
+
"workflows.actions.editStep": "단계 편집",
|
|
70
|
+
"workflows.actions.editVisually": "비주얼로 편집",
|
|
71
|
+
"workflows.actions.openVisualEditor": "비주얼 에디터 열기",
|
|
72
|
+
"workflows.actions.resetConfirm": "이 작업은 사용자 지정 내용을 삭제하고 코드로 정의된 버전으로 복원합니다. 계속하시겠습니까?",
|
|
73
|
+
"workflows.actions.resetToCode": "코드 버전으로 재설정",
|
|
74
|
+
"workflows.actions.saveChanges": "변경 사항 저장",
|
|
75
|
+
"workflows.actions.toggleEnabled": "클릭하여 활성화/비활성화",
|
|
76
|
+
"workflows.activities.activityId": "액티비티 ID",
|
|
77
|
+
"workflows.activities.activityName": "액티비티 이름",
|
|
78
|
+
"workflows.activities.activityType": "액티비티 유형",
|
|
79
|
+
"workflows.activities.addActivity": "액티비티 추가",
|
|
80
|
+
"workflows.activities.async": "비동기",
|
|
81
|
+
"workflows.activities.compensation": "보상 처리",
|
|
82
|
+
"workflows.activities.config": "설정",
|
|
83
|
+
"workflows.activities.configInvalidJson": "잘못된 JSON",
|
|
84
|
+
"workflows.activities.configMustBeObject": "구성은 JSON 객체여야 합니다.",
|
|
85
|
+
"workflows.activities.deleteActivity": "액티비티 삭제",
|
|
86
|
+
"workflows.activities.editActivity": "액티비티 편집",
|
|
87
|
+
"workflows.activities.plural": "액티비티",
|
|
88
|
+
"workflows.activities.retryPolicy": "재시도 정책",
|
|
89
|
+
"workflows.activities.singular": "액티비티",
|
|
90
|
+
"workflows.activities.timeout": "타임아웃",
|
|
91
|
+
"workflows.activities.title": "액티비티",
|
|
92
|
+
"workflows.activities.types.CALL_API": "API 호출",
|
|
93
|
+
"workflows.activities.types.CALL_WEBHOOK": "웹훅 호출",
|
|
94
|
+
"workflows.activities.types.EMIT_EVENT": "이벤트 발생",
|
|
95
|
+
"workflows.activities.types.EXECUTE_FUNCTION": "함수 실행",
|
|
96
|
+
"workflows.activities.types.SEND_EMAIL": "이메일 전송",
|
|
97
|
+
"workflows.activities.types.UPDATE_ENTITY": "엔티티 업데이트",
|
|
98
|
+
"workflows.activities.types.WAIT": "대기 / 지연",
|
|
99
|
+
"workflows.activities.waitDuration": "지속 시간",
|
|
100
|
+
"workflows.activities.waitDurationDescription": "ISO 8601 형식의 기간(예: 5분은 PT5M, 1시간은 PT1H, 1일은 P1D) 또는 간단한 형식(5m, 1h, 3d)",
|
|
101
|
+
"workflows.activities.waitDurationPlaceholder": "PT5M",
|
|
102
|
+
"workflows.activities.waitOr": "또는",
|
|
103
|
+
"workflows.activities.waitUntil": "다음 시점까지 대기",
|
|
104
|
+
"workflows.activities.waitUntilDescription": "대기할 특정 날짜와 시간",
|
|
105
|
+
"workflows.backToList": "워크플로우 목록으로 돌아가기",
|
|
106
|
+
"workflows.backend.definitions.visual_editor.title": "비주얼 워크플로우 에디터",
|
|
107
|
+
"workflows.checkoutDemo.cart.decreaseQty": "수량 줄이기",
|
|
108
|
+
"workflows.checkoutDemo.cart.empty.hint": "위 드롭다운에서 상품을 추가하세요",
|
|
109
|
+
"workflows.checkoutDemo.cart.empty.title": "장바구니가 비어 있습니다",
|
|
110
|
+
"workflows.checkoutDemo.cart.increaseQty": "수량 늘리기",
|
|
111
|
+
"workflows.checkoutDemo.cart.pricePerUnitSuffix": "개당",
|
|
112
|
+
"workflows.checkoutDemo.cart.removeItemTitle": "장바구니에서 제거",
|
|
113
|
+
"workflows.checkoutDemo.cart.selectHint": "드롭다운에서 상품을 선택하여 장바구니에 추가하세요",
|
|
114
|
+
"workflows.checkoutDemo.cart.shipping": "배송비",
|
|
115
|
+
"workflows.checkoutDemo.cart.subtotal": "소계",
|
|
116
|
+
"workflows.checkoutDemo.cart.tax": "세금 (8%)",
|
|
117
|
+
"workflows.checkoutDemo.cart.total": "합계",
|
|
118
|
+
"workflows.checkoutDemo.cartValidation.available": "✓ 재고 있음",
|
|
119
|
+
"workflows.checkoutDemo.cartValidation.inventoryCheck": "장바구니 항목과 재고 가용성을 확인하는 중...",
|
|
120
|
+
"workflows.checkoutDemo.cartValidation.processingActivities": "백그라운드 액티비티 처리 중...",
|
|
121
|
+
"workflows.checkoutDemo.cartValidation.processingActivitiesHint": "워크플로우가 진행되기 전에 비동기 작업이 완료되기를 기다리고 있습니다.",
|
|
122
|
+
"workflows.checkoutDemo.cartValidation.qtyPrefix": "수량:",
|
|
123
|
+
"workflows.checkoutDemo.cartValidation.title": "장바구니 검증 중",
|
|
124
|
+
"workflows.checkoutDemo.cartValidation.totalPrefix": "합계:",
|
|
125
|
+
"workflows.checkoutDemo.checkout.fixValidationErrors": "유효성 검사 오류 수정",
|
|
126
|
+
"workflows.checkoutDemo.checkout.pleaseSelectCustomer": "계속하려면 고객을 선택해 주세요",
|
|
127
|
+
"workflows.checkoutDemo.checkout.selectCustomerFirst": "계속하려면 고객을 선택하세요",
|
|
128
|
+
"workflows.checkoutDemo.checkout.start": "결제 워크플로우 시작",
|
|
129
|
+
"workflows.checkoutDemo.checkout.starting": "시작하는 중...",
|
|
130
|
+
"workflows.checkoutDemo.checkout.validating": "검증 중...",
|
|
131
|
+
"workflows.checkoutDemo.checkout.workflowStarted": "워크플로우 시작됨",
|
|
132
|
+
"workflows.checkoutDemo.completed.emailSent": "✉️ 확인 이메일이 demo@example.com으로 전송되었습니다",
|
|
133
|
+
"workflows.checkoutDemo.completed.orderDateLabel": "주문 일자:",
|
|
134
|
+
"workflows.checkoutDemo.completed.orderItemsLabel": "주문 항목:",
|
|
135
|
+
"workflows.checkoutDemo.completed.orderNumberPrefix": "주문 #",
|
|
136
|
+
"workflows.checkoutDemo.completed.paymentMethodLabel": "결제 수단:",
|
|
137
|
+
"workflows.checkoutDemo.completed.paymentMethodValue": "신용카드 ****4242",
|
|
138
|
+
"workflows.checkoutDemo.completed.startNew": "새 주문 시작",
|
|
139
|
+
"workflows.checkoutDemo.completed.title": "주문이 확정되었습니다!",
|
|
140
|
+
"workflows.checkoutDemo.completed.totalPaidLabel": "결제 금액:",
|
|
141
|
+
"workflows.checkoutDemo.currency.label": "통화",
|
|
142
|
+
"workflows.checkoutDemo.customer.loading": "고객 목록 로딩 중...",
|
|
143
|
+
"workflows.checkoutDemo.customer.noneFound": "고객을 찾을 수 없습니다. 먼저 고객을 생성해 주세요.",
|
|
144
|
+
"workflows.checkoutDemo.customer.selectLabel": "고객 선택",
|
|
145
|
+
"workflows.checkoutDemo.customer.selectPlaceholder": "-- 고객 선택 --",
|
|
146
|
+
"workflows.checkoutDemo.customerInfo.errorLoadingTask": "작업을 불러오는 중 오류가 발생했습니다",
|
|
147
|
+
"workflows.checkoutDemo.customerInfo.loading": "작업 로딩 중...",
|
|
148
|
+
"workflows.checkoutDemo.customerInfo.noTaskHint": "사용자 작업이 아직 생성 중일 수 있습니다. 보통 1초 이내에 완료됩니다.",
|
|
149
|
+
"workflows.checkoutDemo.customerInfo.noTaskTitle": "작업을 찾을 수 없습니다",
|
|
150
|
+
"workflows.checkoutDemo.customerInfo.promptHint": "워크플로우가 고객 정보 입력을 기다리며 일시 중지되었습니다. 결제를 계속하려면 양식을 작성해 주세요.",
|
|
151
|
+
"workflows.checkoutDemo.customerInfo.promptTitle": "배송 정보를 입력해 주세요",
|
|
152
|
+
"workflows.checkoutDemo.customerInfo.refresh": "새로고침",
|
|
153
|
+
"workflows.checkoutDemo.customerInfo.retry": "다시 시도",
|
|
154
|
+
"workflows.checkoutDemo.customerInfo.submit": "완료하고 결제 계속하기",
|
|
155
|
+
"workflows.checkoutDemo.customerInfo.submitting": "제출 중...",
|
|
156
|
+
"workflows.checkoutDemo.customerInfo.title": "고객 정보 필요",
|
|
157
|
+
"workflows.checkoutDemo.customerInfo.unknownError": "알 수 없는 오류",
|
|
158
|
+
"workflows.checkoutDemo.events.detailsLink": "상세 정보",
|
|
159
|
+
"workflows.checkoutDemo.events.liveBadge": "실시간",
|
|
160
|
+
"workflows.checkoutDemo.events.title": "워크플로우 이벤트",
|
|
161
|
+
"workflows.checkoutDemo.events.viewAllLink": "모든 이벤트 보기 →",
|
|
162
|
+
"workflows.checkoutDemo.events.viewAllPrefix": "모든",
|
|
163
|
+
"workflows.checkoutDemo.events.viewAllSuffix": "이벤트 보기 →",
|
|
164
|
+
"workflows.checkoutDemo.events.viewData": "이벤트 데이터 보기",
|
|
165
|
+
"workflows.checkoutDemo.failed.message": "아쉽게도 주문을 처리하지 못했습니다. 다시 시도해 주세요.",
|
|
166
|
+
"workflows.checkoutDemo.failed.title": "주문 실패",
|
|
167
|
+
"workflows.checkoutDemo.failed.tryAgain": "다시 시도",
|
|
168
|
+
"workflows.checkoutDemo.features.businessRulesIntegration.body": " 가드 규칙이 상세한 실패 정보와 함께 전환을 검증합니다",
|
|
169
|
+
"workflows.checkoutDemo.features.businessRulesIntegration.label": "비즈니스 규칙 통합:",
|
|
170
|
+
"workflows.checkoutDemo.features.completeOrderFlow.body": " 비동기 결제 처리와 함께 장바구니부터 확정까지 전체 결제 과정을 체험해 보세요",
|
|
171
|
+
"workflows.checkoutDemo.features.completeOrderFlow.label": "전체 주문 흐름:",
|
|
172
|
+
"workflows.checkoutDemo.features.interactiveUi.body": " 왼쪽 패널이 동적으로 업데이트되어 장바구니 검증, 결제 시작, 웹훅 대기, 주문 확정 화면을 표시합니다",
|
|
173
|
+
"workflows.checkoutDemo.features.interactiveUi.label": "인터랙티브 UI 변경:",
|
|
174
|
+
"workflows.checkoutDemo.features.liveEventTimeline.body": " SIGNAL_AWAITING 및 SIGNAL_RECEIVED를 포함한 새로운 워크플로우 이벤트가 실시간으로 표시됩니다",
|
|
175
|
+
"workflows.checkoutDemo.features.liveEventTimeline.label": "실시간 이벤트 타임라인:",
|
|
176
|
+
"workflows.checkoutDemo.features.realtimeProgress.body": " 실시간 상태 업데이트와 함께 워크플로우가 단계별로 자동 진행되는 과정을 확인하세요",
|
|
177
|
+
"workflows.checkoutDemo.features.realtimeProgress.label": "실시간 진행 상황 추적:",
|
|
178
|
+
"workflows.checkoutDemo.features.signalFlow.body": " WAIT_FOR_SIGNAL 단계 유형을 사용한 실제 웹훅 패턴을 시연합니다",
|
|
179
|
+
"workflows.checkoutDemo.features.signalFlow.label": "시그널 기반 결제 흐름:",
|
|
180
|
+
"workflows.checkoutDemo.features.startPreconditions.body": " 워크플로우 시작 전에 비즈니스 규칙을 검증합니다(예: 장바구니가 비어 있지 않은지) 지역화된 오류 메시지와 함께",
|
|
181
|
+
"workflows.checkoutDemo.features.startPreconditions.label": "START 단계 사전 조건:",
|
|
182
|
+
"workflows.checkoutDemo.features.title": "기능",
|
|
183
|
+
"workflows.checkoutDemo.features.userTaskIntegration.body": " 작업 완료 시 워크플로우 일시 중지/재개 기능이 있는 양식 기반 사용자 입력",
|
|
184
|
+
"workflows.checkoutDemo.features.userTaskIntegration.label": "사용자 작업 통합:",
|
|
185
|
+
"workflows.checkoutDemo.features.viewAllWorkflowsLink": "모든 워크플로우 보기 →",
|
|
186
|
+
"workflows.checkoutDemo.features.webhookSimulation.body": " 시뮬레이션된 결제 제공업체 웹훅으로 시그널 기반 워크플로우 재개를 테스트합니다",
|
|
187
|
+
"workflows.checkoutDemo.features.webhookSimulation.label": "웹훅 시뮬레이션:",
|
|
188
|
+
"workflows.checkoutDemo.formField.selectOption": "-- 옵션 선택 --",
|
|
189
|
+
"workflows.checkoutDemo.orderConfirmation.creatingRecord": "주문 레코드 생성 중",
|
|
190
|
+
"workflows.checkoutDemo.orderConfirmation.paymentSuccess": "결제 성공!",
|
|
191
|
+
"workflows.checkoutDemo.orderConfirmation.sendingEmail": "확인 이메일 전송 중",
|
|
192
|
+
"workflows.checkoutDemo.orderConfirmation.title": "주문 생성 중",
|
|
193
|
+
"workflows.checkoutDemo.orderConfirmation.transactionIdPrefix": "거래 ID: ",
|
|
194
|
+
"workflows.checkoutDemo.orderConfirmation.updatingInventory": "재고 업데이트 중",
|
|
195
|
+
"workflows.checkoutDemo.orderSummary.title": "주문 요약",
|
|
196
|
+
"workflows.checkoutDemo.paymentInitiation.amountLabel": "금액:",
|
|
197
|
+
"workflows.checkoutDemo.paymentInitiation.detailsTitle": "결제 상세 정보",
|
|
198
|
+
"workflows.checkoutDemo.paymentInitiation.methodLabel": "결제 수단:",
|
|
199
|
+
"workflows.checkoutDemo.paymentInitiation.methodValue": "신용카드 ****4242",
|
|
200
|
+
"workflows.checkoutDemo.paymentInitiation.sending": "결제 요청 전송 중...",
|
|
201
|
+
"workflows.checkoutDemo.paymentInitiation.title": "결제 시작 중",
|
|
202
|
+
"workflows.checkoutDemo.product.addLabel": "장바구니에 상품 추가",
|
|
203
|
+
"workflows.checkoutDemo.product.loading": "상품 로딩 중...",
|
|
204
|
+
"workflows.checkoutDemo.product.noneFound": "상품을 찾을 수 없습니다. 먼저 카탈로그에 상품을 생성해 주세요.",
|
|
205
|
+
"workflows.checkoutDemo.product.selectPlaceholder": "-- 추가할 상품 선택 --",
|
|
206
|
+
"workflows.checkoutDemo.progress.advance": "다음 단계로 진행 →",
|
|
207
|
+
"workflows.checkoutDemo.progress.advancing": "진행 중...",
|
|
208
|
+
"workflows.checkoutDemo.progress.completeTask": "작업 완료 →",
|
|
209
|
+
"workflows.checkoutDemo.progress.duePrefix": "기한: ",
|
|
210
|
+
"workflows.checkoutDemo.progress.errorDismiss": "닫기",
|
|
211
|
+
"workflows.checkoutDemo.progress.errorTitle": "오류",
|
|
212
|
+
"workflows.checkoutDemo.progress.manualProgression": "수동 진행",
|
|
213
|
+
"workflows.checkoutDemo.progress.manualProgressionHint": "테스트를 위해 다음 단계로 수동으로 진행합니다",
|
|
214
|
+
"workflows.checkoutDemo.progress.processing": "처리 중...",
|
|
215
|
+
"workflows.checkoutDemo.progress.prompt": "시작하려면 \"결제 워크플로우 시작\"을 클릭하세요",
|
|
216
|
+
"workflows.checkoutDemo.progress.startNewCheckout": "새 결제 시작",
|
|
217
|
+
"workflows.checkoutDemo.progress.startingWorkflow": "워크플로우 시작 중...",
|
|
218
|
+
"workflows.checkoutDemo.progress.statusLabel": "상태",
|
|
219
|
+
"workflows.checkoutDemo.progress.stepsLabel": "단계",
|
|
220
|
+
"workflows.checkoutDemo.progress.title": "워크플로우 진행 상황",
|
|
221
|
+
"workflows.checkoutDemo.progress.userActionHint": "이 워크플로우는 사용자 입력을 기다리며 일시 중지되었습니다. 계속하려면 아래 작업을 완료해 주세요.",
|
|
222
|
+
"workflows.checkoutDemo.progress.userActionTitle": "사용자 작업 필요",
|
|
223
|
+
"workflows.checkoutDemo.progress.viewInAdmin": "관리자 화면에서 보기",
|
|
224
|
+
"workflows.checkoutDemo.progress.waitingForInput": "입력 대기 중",
|
|
225
|
+
"workflows.checkoutDemo.progress.workflowCompleted": "워크플로우가 완료되었습니다!",
|
|
226
|
+
"workflows.checkoutDemo.progress.workflowCompletedHint": "모든 단계가 성공적으로 실행되었습니다",
|
|
227
|
+
"workflows.checkoutDemo.subtitle": "시그널 기반 결제 확인(WAIT_FOR_SIGNAL)을 활용한 인터랙티브 워크플로우 시연",
|
|
228
|
+
"workflows.checkoutDemo.title": "결제 웹훅을 사용한 체크아웃 데모",
|
|
229
|
+
"workflows.checkoutDemo.validation.errorTitle": "결제를 시작할 수 없습니다",
|
|
230
|
+
"workflows.checkoutDemo.waitPayment.demoTestingHint": "아래 버튼을 클릭하여 거래를 확인하는 결제 제공업체 웹훅을 시뮬레이션하세요.",
|
|
231
|
+
"workflows.checkoutDemo.waitPayment.demoTestingTitle": "데모 테스트용:",
|
|
232
|
+
"workflows.checkoutDemo.waitPayment.description": "워크플로우가 결제 제공업체의 웹훅을 통한 거래 확인을 기다리며 일시 중지되었습니다. 실제 운영 환경에서는 Stripe, PayPal 등에서 자동으로 전송됩니다.",
|
|
233
|
+
"workflows.checkoutDemo.waitPayment.dismiss": "닫기",
|
|
234
|
+
"workflows.checkoutDemo.waitPayment.heading": "결제 제공업체 웹훅 대기 중",
|
|
235
|
+
"workflows.checkoutDemo.waitPayment.noteLabel": "참고:",
|
|
236
|
+
"workflows.checkoutDemo.waitPayment.noteStatusPrefix": "워크플로우 상태는 ",
|
|
237
|
+
"workflows.checkoutDemo.waitPayment.noteStatusSuffix": "입니다. 워크플로우가 이 단계에서 완전히 일시 중지되면 시그널 버튼이 표시됩니다.",
|
|
238
|
+
"workflows.checkoutDemo.waitPayment.realWorldLabel": "실제 사용 시나리오:",
|
|
239
|
+
"workflows.checkoutDemo.waitPayment.realWorldPart1": "결제 제공업체(Stripe, PayPal)가 서버 엔드포인트(예: ",
|
|
240
|
+
"workflows.checkoutDemo.waitPayment.realWorldPart2": ")로 웹훅을 전송하면, 이후 ",
|
|
241
|
+
"workflows.checkoutDemo.waitPayment.realWorldPart3": "을(를) 호출하여 워크플로우를 재개합니다.",
|
|
242
|
+
"workflows.checkoutDemo.waitPayment.sendingSignal": "시그널 전송 중...",
|
|
243
|
+
"workflows.checkoutDemo.waitPayment.sendsPrefix": "이 작업은 ",
|
|
244
|
+
"workflows.checkoutDemo.waitPayment.sendsSuffix": " 이벤트를 전송합니다",
|
|
245
|
+
"workflows.checkoutDemo.waitPayment.signalErrorTitle": "시그널 오류",
|
|
246
|
+
"workflows.checkoutDemo.waitPayment.signalNameLabel": "시그널 이름:",
|
|
247
|
+
"workflows.checkoutDemo.waitPayment.simulateWebhook": "🔔 결제 웹훅 시뮬레이션",
|
|
248
|
+
"workflows.checkoutDemo.waitPayment.statusLabel": "상태:",
|
|
249
|
+
"workflows.checkoutDemo.waitPayment.timeout": "타임아웃: 5분",
|
|
250
|
+
"workflows.checkoutDemo.waitPayment.title": "결제 확인 대기 중",
|
|
251
|
+
"workflows.common.back": "뒤로",
|
|
252
|
+
"workflows.common.browse": "찾아보기",
|
|
253
|
+
"workflows.common.cancel": "취소",
|
|
254
|
+
"workflows.common.change": "변경",
|
|
255
|
+
"workflows.common.clear": "지우기",
|
|
256
|
+
"workflows.common.confirmCancel": "이 워크플로우를 취소하시겠습니까?",
|
|
257
|
+
"workflows.common.confirmDelete": "정말 삭제하시겠습니까?",
|
|
258
|
+
"workflows.common.create": "생성",
|
|
259
|
+
"workflows.common.delete": "삭제",
|
|
260
|
+
"workflows.common.disable": "비활성화",
|
|
261
|
+
"workflows.common.duplicate": "복제",
|
|
262
|
+
"workflows.common.edit": "편집",
|
|
263
|
+
"workflows.common.enable": "활성화",
|
|
264
|
+
"workflows.common.error": "오류",
|
|
265
|
+
"workflows.common.export": "내보내기",
|
|
266
|
+
"workflows.common.filter": "필터",
|
|
267
|
+
"workflows.common.finish": "완료",
|
|
268
|
+
"workflows.common.import": "가져오기",
|
|
269
|
+
"workflows.common.info": "정보",
|
|
270
|
+
"workflows.common.loading": "로딩 중...",
|
|
271
|
+
"workflows.common.loadingDetails": "상세 정보 로딩 중...",
|
|
272
|
+
"workflows.common.moveDown": "아래로 이동",
|
|
273
|
+
"workflows.common.moveUp": "위로 이동",
|
|
274
|
+
"workflows.common.newActivity": "새 액티비티",
|
|
275
|
+
"workflows.common.newStep": "새 단계",
|
|
276
|
+
"workflows.common.newTransition": "새 전환",
|
|
277
|
+
"workflows.common.next": "다음",
|
|
278
|
+
"workflows.common.noData": "표시할 데이터가 없습니다",
|
|
279
|
+
"workflows.common.noValueSet": "설정된 값 없음",
|
|
280
|
+
"workflows.common.operationFailed": "작업에 실패했습니다",
|
|
281
|
+
"workflows.common.operationSuccess": "작업이 성공적으로 완료되었습니다",
|
|
282
|
+
"workflows.common.previous": "이전",
|
|
283
|
+
"workflows.common.ruleNotFound": "규칙을 찾을 수 없거나 사용할 수 없습니다",
|
|
284
|
+
"workflows.common.save": "저장",
|
|
285
|
+
"workflows.common.search": "검색",
|
|
286
|
+
"workflows.common.success": "성공",
|
|
287
|
+
"workflows.common.update": "업데이트",
|
|
288
|
+
"workflows.common.view": "보기",
|
|
289
|
+
"workflows.common.warning": "경고",
|
|
290
|
+
"workflows.common.workflowNotFoundOrUnavailable": "워크플로우를 찾을 수 없거나 사용할 수 없습니다",
|
|
291
|
+
"workflows.confirm.delete": "워크플로우 '{{name}}'을(를) 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.",
|
|
292
|
+
"workflows.confirm.deleteStep": "단계 \"{{name}}\"을(를) 삭제하시겠습니까?",
|
|
293
|
+
"workflows.confirm.deleteStepTitle": "단계 삭제",
|
|
294
|
+
"workflows.confirm.deleteTitle": "워크플로우 삭제",
|
|
295
|
+
"workflows.confirm.deleteTransitionText": "이 전환을 삭제하시겠습니까?",
|
|
296
|
+
"workflows.confirm.deleteTransitionTitle": "전환 삭제",
|
|
297
|
+
"workflows.confirm.removeField": "이 필드를 제거하시겠습니까?",
|
|
298
|
+
"workflows.create.description": "단계, 전환, 액티비티로 새 워크플로우를 정의합니다",
|
|
299
|
+
"workflows.create.eventTriggersDescription": "이 워크플로우 정의를 생성한 후, 시스템에서 특정 이벤트가 발생할 때 워크플로우를 자동으로 시작하도록 이벤트 트리거를 설정할 수 있습니다.",
|
|
300
|
+
"workflows.create.eventTriggersTitle": "이벤트 트리거",
|
|
301
|
+
"workflows.create.title": "워크플로우 정의 생성",
|
|
302
|
+
"workflows.definitions.activities": "액티비티",
|
|
303
|
+
"workflows.definitions.backToList": "정의 목록으로 돌아가기",
|
|
304
|
+
"workflows.definitions.category": "카테고리",
|
|
305
|
+
"workflows.definitions.create": "워크플로우 생성",
|
|
306
|
+
"workflows.definitions.create.summary": "워크플로우 요약 생성",
|
|
307
|
+
"workflows.definitions.createdAt": "생성일",
|
|
308
|
+
"workflows.definitions.createdBy": "생성자",
|
|
309
|
+
"workflows.definitions.delete": "워크플로우 삭제",
|
|
310
|
+
"workflows.definitions.description": "설명",
|
|
311
|
+
"workflows.definitions.detail.summary": "정의 요약",
|
|
312
|
+
"workflows.definitions.disable": "워크플로우 비활성화",
|
|
313
|
+
"workflows.definitions.duplicate": "워크플로우 복제",
|
|
314
|
+
"workflows.definitions.edit": "워크플로우 편집",
|
|
315
|
+
"workflows.definitions.effectiveFrom": "적용 시작일",
|
|
316
|
+
"workflows.definitions.effectiveTo": "적용 종료일",
|
|
317
|
+
"workflows.definitions.enable": "워크플로우 활성화",
|
|
318
|
+
"workflows.definitions.enabled": "활성화됨",
|
|
319
|
+
"workflows.definitions.icon": "아이콘",
|
|
320
|
+
"workflows.definitions.metadata": "메타데이터",
|
|
321
|
+
"workflows.definitions.plural": "워크플로우 정의",
|
|
322
|
+
"workflows.definitions.singular": "워크플로우 정의",
|
|
323
|
+
"workflows.definitions.steps": "단계",
|
|
324
|
+
"workflows.definitions.tags": "태그",
|
|
325
|
+
"workflows.definitions.title": "워크플로우 정의",
|
|
326
|
+
"workflows.definitions.transitions": "전환",
|
|
327
|
+
"workflows.definitions.updatedAt": "수정일",
|
|
328
|
+
"workflows.definitions.updatedBy": "수정자",
|
|
329
|
+
"workflows.definitions.version": "버전",
|
|
330
|
+
"workflows.definitions.workflowId": "워크플로우 ID",
|
|
331
|
+
"workflows.definitions.workflowName": "워크플로우 이름",
|
|
332
|
+
"workflows.dialogs.selectSubWorkflow": "하위 워크플로우 선택",
|
|
333
|
+
"workflows.dialogs.selectSubWorkflowDescription": "하위 워크플로우 단계로 호출할 워크플로우를 선택하세요",
|
|
334
|
+
"workflows.edgeEditor.activities": "액티비티",
|
|
335
|
+
"workflows.edgeEditor.activityId": "액티비티 ID",
|
|
336
|
+
"workflows.edgeEditor.activityIdPlaceholder": "activity_name",
|
|
337
|
+
"workflows.edgeEditor.activityName": "액티비티 이름",
|
|
338
|
+
"workflows.edgeEditor.activityNamePlaceholder": "액티비티 이름",
|
|
339
|
+
"workflows.edgeEditor.activityOptions": "액티비티 옵션",
|
|
340
|
+
"workflows.edgeEditor.activityType": "액티비티 유형",
|
|
341
|
+
"workflows.edgeEditor.addActivity": "액티비티 추가",
|
|
342
|
+
"workflows.edgeEditor.addRule": "규칙 추가",
|
|
343
|
+
"workflows.edgeEditor.advancedConfigHint": "CALL_API, SEND_EMAIL, EXECUTE_FUNCTION 등을 포함하는 액티비티 배열과 같은 복잡한 설정을 추가합니다.",
|
|
344
|
+
"workflows.edgeEditor.advancedConfiguration": "고급 설정 (JSON)",
|
|
345
|
+
"workflows.edgeEditor.asyncOption": "비동기 (백그라운드에서 실행)",
|
|
346
|
+
"workflows.edgeEditor.backoffCoefficient": "백오프 계수",
|
|
347
|
+
"workflows.edgeEditor.businessRuleDetails": "비즈니스 규칙 상세 정보",
|
|
348
|
+
"workflows.edgeEditor.cancel": "취소",
|
|
349
|
+
"workflows.edgeEditor.compensateOption": "보상 처리 (실패 시 보상 작업 실행)",
|
|
350
|
+
"workflows.edgeEditor.configurationHint": "액티비티별 설정을 JSON으로 입력합니다",
|
|
351
|
+
"workflows.edgeEditor.configurationJson": "설정 (JSON)",
|
|
352
|
+
"workflows.edgeEditor.confirmDelete": "이 전환을 삭제하시겠습니까?",
|
|
353
|
+
"workflows.edgeEditor.confirmRemoveActivity": "이 액티비티를 제거하시겠습니까?",
|
|
354
|
+
"workflows.edgeEditor.continueOnActivityFailure": "액티비티 실패 시에도 계속 진행",
|
|
355
|
+
"workflows.edgeEditor.continueOnActivityFailureHint": "선택하지 않으면 액티비티가 실패할 경우 전환도 실패합니다 (기본값: 선택 안 함)",
|
|
356
|
+
"workflows.edgeEditor.deleteTransition": "전환 삭제",
|
|
357
|
+
"workflows.edgeEditor.description": "전환 속성, 조건, 액티비티를 설정합니다",
|
|
358
|
+
"workflows.edgeEditor.entityType": "엔티티 유형",
|
|
359
|
+
"workflows.edgeEditor.eventType": "이벤트 유형",
|
|
360
|
+
"workflows.edgeEditor.flow": "흐름",
|
|
361
|
+
"workflows.edgeEditor.id": "ID",
|
|
362
|
+
"workflows.edgeEditor.initialInterval": "초기 간격 (ms)",
|
|
363
|
+
"workflows.edgeEditor.maxAttempts": "최대 시도 횟수",
|
|
364
|
+
"workflows.edgeEditor.maxInterval": "최대 간격 (ms)",
|
|
365
|
+
"workflows.edgeEditor.noActivities": "정의된 액티비티가 없습니다. \"액티비티 추가\"를 클릭하여 생성하세요.",
|
|
366
|
+
"workflows.edgeEditor.noPostConditions": "정의된 사후 조건이 없습니다. 전환 이후 검증할 비즈니스 규칙을 추가하세요.",
|
|
367
|
+
"workflows.edgeEditor.noPreConditions": "정의된 사전 조건이 없습니다. 전환 전 검증할 비즈니스 규칙을 추가하세요.",
|
|
368
|
+
"workflows.edgeEditor.postConditions": "사후 조건",
|
|
369
|
+
"workflows.edgeEditor.postConditionsHint": "전환이 발생한 후(AFTER) 검증할 비즈니스 규칙 (기록만 됨)",
|
|
370
|
+
"workflows.edgeEditor.preConditions": "사전 조건",
|
|
371
|
+
"workflows.edgeEditor.preConditionsHint": "전환이 발생하기 전(BEFORE) 반드시 통과해야 하는 비즈니스 규칙",
|
|
372
|
+
"workflows.edgeEditor.priority": "우선순위",
|
|
373
|
+
"workflows.edgeEditor.priorityHint": "우선순위가 높은 전환이 먼저 평가됩니다 (기본값: 100, 범위: 0-9999)",
|
|
374
|
+
"workflows.edgeEditor.removeActivity": "액티비티 제거",
|
|
375
|
+
"workflows.edgeEditor.removePostCondition": "사후 조건 제거",
|
|
376
|
+
"workflows.edgeEditor.removePreCondition": "사전 조건 제거",
|
|
377
|
+
"workflows.edgeEditor.required": "필수",
|
|
378
|
+
"workflows.edgeEditor.requiredCheckbox": "필수 (규칙 실패 시 전환 차단)",
|
|
379
|
+
"workflows.edgeEditor.requiredPostCheckbox": "필수 (규칙 실패 시 경고 기록)",
|
|
380
|
+
"workflows.edgeEditor.retryPolicy": "재시도 정책",
|
|
381
|
+
"workflows.edgeEditor.ruleCategory": "카테고리",
|
|
382
|
+
"workflows.edgeEditor.ruleDescription": "설명",
|
|
383
|
+
"workflows.edgeEditor.ruleId": "규칙 ID",
|
|
384
|
+
"workflows.edgeEditor.ruleName": "이름",
|
|
385
|
+
"workflows.edgeEditor.ruleType": "유형",
|
|
386
|
+
"workflows.edgeEditor.saveChanges": "변경 사항 저장",
|
|
387
|
+
"workflows.edgeEditor.selectBusinessRule": "비즈니스 규칙 선택",
|
|
388
|
+
"workflows.edgeEditor.selectBusinessRuleDescription": "{{mode}}(으)로 추가할 규칙을 선택하세요",
|
|
389
|
+
"workflows.edgeEditor.timeout": "타임아웃",
|
|
390
|
+
"workflows.edgeEditor.timeoutHint": "ISO 8601 형식의 기간 또는 밀리초",
|
|
391
|
+
"workflows.edgeEditor.timeoutPlaceholder": "PT30S 또는 30000",
|
|
392
|
+
"workflows.edgeEditor.title": "전환 편집",
|
|
393
|
+
"workflows.edgeEditor.transitionName": "전환 이름",
|
|
394
|
+
"workflows.edgeEditor.transitionNameHint": "이 전환의 사용자 지정 이름입니다 (비워두면 자동 생성된 이름을 사용합니다)",
|
|
395
|
+
"workflows.edgeEditor.transitionNamePlaceholder": "자동 생성됨: {{name}}",
|
|
396
|
+
"workflows.edgeEditor.triggerDescriptions.auto": "단계가 완료되면 즉시 전환이 발생합니다",
|
|
397
|
+
"workflows.edgeEditor.triggerDescriptions.manual": "진행하려면 명시적인 사용자 작업이 필요합니다",
|
|
398
|
+
"workflows.edgeEditor.triggerDescriptions.signal": "외부 시그널/이벤트를 기다립니다",
|
|
399
|
+
"workflows.edgeEditor.triggerDescriptions.timer": "지정된 기간 또는 시각까지 기다립니다",
|
|
400
|
+
"workflows.edgeEditor.triggerType": "트리거 유형",
|
|
401
|
+
"workflows.edit.description": "다음 워크플로우의 단계, 전환, 액티비티를 수정합니다:",
|
|
402
|
+
"workflows.edit.loading": "워크플로우 로딩 중...",
|
|
403
|
+
"workflows.edit.title": "워크플로우 정의 편집",
|
|
404
|
+
"workflows.edit.visualEditorAvailable": "비주얼 에디터 사용 가능",
|
|
405
|
+
"workflows.edit.visualEditorDescription": "드래그 앤 드롭 방식의 비주얼 에디터로 이 워크플로우를 편집합니다",
|
|
406
|
+
"workflows.errors.createFailed": "워크플로우 생성에 실패했습니다",
|
|
407
|
+
"workflows.errors.fetchFailed": "워크플로우를 가져오는 데 실패했습니다",
|
|
408
|
+
"workflows.errors.loadFailed": "워크플로우를 불러오지 못했습니다. 다시 시도해 주세요.",
|
|
409
|
+
"workflows.errors.notFound": "워크플로우를 찾을 수 없습니다.",
|
|
410
|
+
"workflows.errors.updateFailed": "워크플로우 업데이트에 실패했습니다",
|
|
411
|
+
"workflows.events.backToList": "이벤트 목록으로 돌아가기",
|
|
412
|
+
"workflows.events.detail.eventData": "이벤트 데이터",
|
|
413
|
+
"workflows.events.detail.eventId": "이벤트 ID",
|
|
414
|
+
"workflows.events.detail.organizationId": "조직 ID",
|
|
415
|
+
"workflows.events.detail.stepInstanceId": "단계 인스턴스 ID",
|
|
416
|
+
"workflows.events.detail.summary": "이벤트 요약",
|
|
417
|
+
"workflows.events.detail.technicalDetails": "기술 세부 정보",
|
|
418
|
+
"workflows.events.detail.tenantId": "테넌트 ID",
|
|
419
|
+
"workflows.events.detail.title": "워크플로우 이벤트 상세 정보",
|
|
420
|
+
"workflows.events.detail.type": "이벤트 유형",
|
|
421
|
+
"workflows.events.detail.workflowContext": "워크플로우 컨텍스트",
|
|
422
|
+
"workflows.events.detail.workflowInstance": "워크플로우 인스턴스",
|
|
423
|
+
"workflows.events.eventData": "이벤트 데이터",
|
|
424
|
+
"workflows.events.eventType": "이벤트 유형",
|
|
425
|
+
"workflows.events.fields.eventData": "이벤트 데이터",
|
|
426
|
+
"workflows.events.fields.eventType": "이벤트 유형",
|
|
427
|
+
"workflows.events.fields.instance": "인스턴스",
|
|
428
|
+
"workflows.events.fields.occurredAt": "발생 시각",
|
|
429
|
+
"workflows.events.fields.status": "상태",
|
|
430
|
+
"workflows.events.fields.userId": "사용자 ID",
|
|
431
|
+
"workflows.events.fields.workflow": "워크플로우",
|
|
432
|
+
"workflows.events.filters.eventType": "이벤트 유형",
|
|
433
|
+
"workflows.events.filters.userId": "사용자 ID",
|
|
434
|
+
"workflows.events.filters.userIdPlaceholder": "사용자 ID를 입력하세요...",
|
|
435
|
+
"workflows.events.filters.workflowInstanceId": "워크플로우 인스턴스 ID",
|
|
436
|
+
"workflows.events.filters.workflowInstanceIdPlaceholder": "워크플로우 인스턴스 ID를 입력하세요...",
|
|
437
|
+
"workflows.events.list.title": "워크플로우 이벤트",
|
|
438
|
+
"workflows.events.messages.loadFailed": "워크플로우 이벤트를 불러오지 못했습니다",
|
|
439
|
+
"workflows.events.notFound": "이벤트를 찾을 수 없습니다",
|
|
440
|
+
"workflows.events.occurredAt": "발생 시각",
|
|
441
|
+
"workflows.events.plural": "이벤트",
|
|
442
|
+
"workflows.events.singular": "이벤트",
|
|
443
|
+
"workflows.events.title": "워크플로우 이벤트",
|
|
444
|
+
"workflows.events.types.ACTIVITY_COMPLETED": "활동 완료",
|
|
445
|
+
"workflows.events.types.ACTIVITY_FAILED": "활동 실패",
|
|
446
|
+
"workflows.events.types.ACTIVITY_QUEUED": "활동 대기열 등록",
|
|
447
|
+
"workflows.events.types.ACTIVITY_STARTED": "활동 시작됨",
|
|
448
|
+
"workflows.events.types.ActivityCompleted": "활동 완료",
|
|
449
|
+
"workflows.events.types.ActivityFailed": "활동 실패",
|
|
450
|
+
"workflows.events.types.ActivityQueued": "활동 대기열 등록",
|
|
451
|
+
"workflows.events.types.ActivityScheduled": "활동 예약됨",
|
|
452
|
+
"workflows.events.types.COMPENSATION_ACTIVITY_COMPLETED": "활동 보상 처리됨",
|
|
453
|
+
"workflows.events.types.COMPENSATION_ACTIVITY_FAILED": "보상 활동 실패",
|
|
454
|
+
"workflows.events.types.COMPENSATION_ACTIVITY_STARTED": "보상 활동 처리 중",
|
|
455
|
+
"workflows.events.types.COMPENSATION_COMPLETED": "보상 완료",
|
|
456
|
+
"workflows.events.types.COMPENSATION_FAILED": "보상 실패",
|
|
457
|
+
"workflows.events.types.COMPENSATION_PARTIAL": "부분 보상",
|
|
458
|
+
"workflows.events.types.COMPENSATION_STARTED": "보상 시작됨",
|
|
459
|
+
"workflows.events.types.CompensationCompleted": "보상 완료",
|
|
460
|
+
"workflows.events.types.CompensationStarted": "보상 시작됨",
|
|
461
|
+
"workflows.events.types.SIGNAL_AWAITING": "신호 대기 중",
|
|
462
|
+
"workflows.events.types.SIGNAL_RECEIVED": "신호 수신됨",
|
|
463
|
+
"workflows.events.types.SIGNAL_TIMEOUT": "신호 시간 초과",
|
|
464
|
+
"workflows.events.types.STEP_ENTERED": "단계 진입",
|
|
465
|
+
"workflows.events.types.STEP_EXITED": "단계 종료",
|
|
466
|
+
"workflows.events.types.STEP_FAILED": "단계 실패",
|
|
467
|
+
"workflows.events.types.SUB_WORKFLOW_COMPLETED": "하위 워크플로우 완료",
|
|
468
|
+
"workflows.events.types.SUB_WORKFLOW_FAILED": "하위 워크플로우 실패",
|
|
469
|
+
"workflows.events.types.SUB_WORKFLOW_STARTED": "하위 워크플로우 시작됨",
|
|
470
|
+
"workflows.events.types.SignalReceived": "신호 수신됨",
|
|
471
|
+
"workflows.events.types.StepEntered": "단계 진입",
|
|
472
|
+
"workflows.events.types.StepExited": "단계 종료",
|
|
473
|
+
"workflows.events.types.StepFailed": "단계 실패",
|
|
474
|
+
"workflows.events.types.TRANSITION_EXECUTED": "전환 실행됨",
|
|
475
|
+
"workflows.events.types.TRANSITION_PAUSED_FOR_ACTIVITIES": "활동 대기로 전환 일시 중지",
|
|
476
|
+
"workflows.events.types.TRANSITION_REJECTED": "전환 거부됨",
|
|
477
|
+
"workflows.events.types.TimerFired": "타이머 발동",
|
|
478
|
+
"workflows.events.types.TransitionBlocked": "전환 차단됨",
|
|
479
|
+
"workflows.events.types.TransitionFired": "전환 발동됨",
|
|
480
|
+
"workflows.events.types.TransitionPausedForActivities": "활동 대기로 전환 일시 중지",
|
|
481
|
+
"workflows.events.types.USER_TASK_ASSIGNED": "사용자 작업 할당됨",
|
|
482
|
+
"workflows.events.types.USER_TASK_CLAIMED": "사용자 작업 수령됨",
|
|
483
|
+
"workflows.events.types.USER_TASK_COMPLETED": "사용자 작업 완료",
|
|
484
|
+
"workflows.events.types.USER_TASK_CREATED": "사용자 작업 생성됨",
|
|
485
|
+
"workflows.events.types.USER_TASK_ESCALATED": "사용자 작업 에스컬레이션됨",
|
|
486
|
+
"workflows.events.types.UserTaskAssigned": "사용자 작업 할당됨",
|
|
487
|
+
"workflows.events.types.UserTaskClaimed": "사용자 작업 수령됨",
|
|
488
|
+
"workflows.events.types.UserTaskCompleted": "사용자 작업 완료",
|
|
489
|
+
"workflows.events.types.UserTaskCreated": "사용자 작업 생성됨",
|
|
490
|
+
"workflows.events.types.UserTaskEscalated": "사용자 작업 에스컬레이션됨",
|
|
491
|
+
"workflows.events.types.WORKFLOW_CANCELLED": "워크플로우 취소됨",
|
|
492
|
+
"workflows.events.types.WORKFLOW_COMPLETED": "워크플로우 완료",
|
|
493
|
+
"workflows.events.types.WORKFLOW_FAILED": "워크플로우 실패",
|
|
494
|
+
"workflows.events.types.WORKFLOW_PAUSED": "워크플로우 일시 중지됨",
|
|
495
|
+
"workflows.events.types.WORKFLOW_RESUMED": "워크플로우 재개됨",
|
|
496
|
+
"workflows.events.types.WORKFLOW_STARTED": "워크플로우 시작됨",
|
|
497
|
+
"workflows.events.types.WORKFLOW_WAITING_FOR_ACTIVITIES": "활동 대기 중",
|
|
498
|
+
"workflows.events.types.WorkflowCancelled": "워크플로우 취소됨",
|
|
499
|
+
"workflows.events.types.WorkflowCompleted": "워크플로우 완료",
|
|
500
|
+
"workflows.events.types.WorkflowFailed": "워크플로우 실패",
|
|
501
|
+
"workflows.events.types.WorkflowPaused": "워크플로우 일시 중지됨",
|
|
502
|
+
"workflows.events.types.WorkflowResumed": "워크플로우 재개됨",
|
|
503
|
+
"workflows.events.types.WorkflowStarted": "워크플로우 시작됨",
|
|
504
|
+
"workflows.events.types.WorkflowWaitingForActivities": "활동 대기 중",
|
|
505
|
+
"workflows.events.types.activity_completed": "활동 완료",
|
|
506
|
+
"workflows.events.types.activity_failed": "활동 실패",
|
|
507
|
+
"workflows.events.types.activity_queued": "활동 대기열 등록",
|
|
508
|
+
"workflows.events.types.activity_started": "활동 시작됨",
|
|
509
|
+
"workflows.events.types.step_entered": "단계 진입",
|
|
510
|
+
"workflows.events.types.step_exited": "단계 종료",
|
|
511
|
+
"workflows.events.types.step_failed": "단계 실패",
|
|
512
|
+
"workflows.events.types.transition_executed": "전환 실행됨",
|
|
513
|
+
"workflows.events.types.transition_paused_for_activities": "활동 대기로 전환 일시 중지",
|
|
514
|
+
"workflows.events.types.transition_rejected": "전환 거부됨",
|
|
515
|
+
"workflows.events.types.workflow_cancelled": "워크플로우 취소됨",
|
|
516
|
+
"workflows.events.types.workflow_completed": "워크플로우 완료",
|
|
517
|
+
"workflows.events.types.workflow_failed": "워크플로우 실패",
|
|
518
|
+
"workflows.events.types.workflow_paused": "워크플로우 일시 중지됨",
|
|
519
|
+
"workflows.events.types.workflow_resumed": "워크플로우 재개됨",
|
|
520
|
+
"workflows.events.types.workflow_started": "워크플로우 시작됨",
|
|
521
|
+
"workflows.events.types.workflow_waiting_for_activities": "활동 대기 중",
|
|
522
|
+
"workflows.events.userId": "사용자 ID",
|
|
523
|
+
"workflows.events.workflowNotFound": "워크플로우를 찾을 수 없습니다",
|
|
524
|
+
"workflows.features.complete_tasks": "사용자 작업 완료 처리",
|
|
525
|
+
"workflows.features.create": "워크플로우 생성",
|
|
526
|
+
"workflows.features.delete": "워크플로우 삭제",
|
|
527
|
+
"workflows.features.edit": "워크플로우 편집",
|
|
528
|
+
"workflows.features.execute": "워크플로우 실행",
|
|
529
|
+
"workflows.features.manage_instances": "워크플로우 인스턴스 관리",
|
|
530
|
+
"workflows.features.view": "워크플로우 조회",
|
|
531
|
+
"workflows.features.view_instances": "워크플로우 인스턴스 조회",
|
|
532
|
+
"workflows.features.view_logs": "워크플로우 로그 조회",
|
|
533
|
+
"workflows.features.view_tasks": "사용자 작업 조회",
|
|
534
|
+
"workflows.fieldEditors.activities.activityId": "활동 ID",
|
|
535
|
+
"workflows.fieldEditors.activities.activityIdPlaceholder": "activity_name",
|
|
536
|
+
"workflows.fieldEditors.activities.activityName": "활동 이름",
|
|
537
|
+
"workflows.fieldEditors.activities.activityNamePlaceholder": "활동 이름",
|
|
538
|
+
"workflows.fieldEditors.activities.activityOptions": "활동 옵션",
|
|
539
|
+
"workflows.fieldEditors.activities.activityType": "활동 유형",
|
|
540
|
+
"workflows.fieldEditors.activities.addActivity": "활동 추가",
|
|
541
|
+
"workflows.fieldEditors.activities.asyncOption": "비동기 (백그라운드 실행)",
|
|
542
|
+
"workflows.fieldEditors.activities.backoffCoefficient": "백오프 계수",
|
|
543
|
+
"workflows.fieldEditors.activities.compensateOption": "보상 처리 (실패 시 보상 작업 실행)",
|
|
544
|
+
"workflows.fieldEditors.activities.configurationHint": "활동별 설정을 JSON 형식으로 입력",
|
|
545
|
+
"workflows.fieldEditors.activities.configurationJson": "설정 (JSON)",
|
|
546
|
+
"workflows.fieldEditors.activities.confirmRemove": "이 활동을 삭제하시겠습니까?",
|
|
547
|
+
"workflows.fieldEditors.activities.emptyState": "정의된 활동이 없습니다. \"활동 추가\"를 클릭하여 새로 만드세요.",
|
|
548
|
+
"workflows.fieldEditors.activities.initialInterval": "초기 간격 (ms)",
|
|
549
|
+
"workflows.fieldEditors.activities.maxAttempts": "최대 시도 횟수",
|
|
550
|
+
"workflows.fieldEditors.activities.maxInterval": "최대 간격 (ms)",
|
|
551
|
+
"workflows.fieldEditors.activities.removeActivity": "활동 삭제",
|
|
552
|
+
"workflows.fieldEditors.activities.retryPolicy": "재시도 정책",
|
|
553
|
+
"workflows.fieldEditors.activities.timeout": "제한 시간",
|
|
554
|
+
"workflows.fieldEditors.activities.timeoutHint": "ISO 8601 기간 형식 또는 밀리초 단위로 입력하세요",
|
|
555
|
+
"workflows.fieldEditors.activities.timeoutPlaceholder": "PT30S 또는 30000",
|
|
556
|
+
"workflows.fieldEditors.businessRuleConditions.addRule": "규칙 추가",
|
|
557
|
+
"workflows.fieldEditors.businessRuleConditions.confirmRemove": "이 조건을 삭제하시겠습니까?",
|
|
558
|
+
"workflows.fieldEditors.businessRuleConditions.emptyDescription": "이 전환에 대한 비즈니스 규칙 조건을 추가하세요.",
|
|
559
|
+
"workflows.fieldEditors.businessRuleConditions.emptyTitle": "정의된 조건이 없습니다",
|
|
560
|
+
"workflows.fieldEditors.businessRuleConditions.removeCondition": "조건 삭제",
|
|
561
|
+
"workflows.fieldEditors.businessRuleConditions.requiredLabel": "필수 (규칙이 실패하면 전환이 차단됨)",
|
|
562
|
+
"workflows.fieldEditors.businessRuleConditions.selectBusinessRule": "비즈니스 규칙 선택",
|
|
563
|
+
"workflows.fieldEditors.businessRuleConditions.selectBusinessRuleDescription": "조건으로 추가할 비즈니스 규칙을 선택하세요",
|
|
564
|
+
"workflows.fieldEditors.formFields.addField": "필드 추가",
|
|
565
|
+
"workflows.fieldEditors.formFields.confirmRemove": "이 필드를 삭제하시겠습니까?",
|
|
566
|
+
"workflows.fieldEditors.formFields.defaultValue": "기본값",
|
|
567
|
+
"workflows.fieldEditors.formFields.defaultValuePlaceholder": "기본값...",
|
|
568
|
+
"workflows.fieldEditors.formFields.description": "이 사용자 작업의 양식 구조를 정의하세요",
|
|
569
|
+
"workflows.fieldEditors.formFields.emptyState": "정의된 양식 필드가 없습니다. \"필드 추가\"를 클릭하여 새로 만드세요.",
|
|
570
|
+
"workflows.fieldEditors.formFields.fieldLabel": "필드 라벨",
|
|
571
|
+
"workflows.fieldEditors.formFields.fieldLabelHint": "사용자에게 표시되는 라벨",
|
|
572
|
+
"workflows.fieldEditors.formFields.fieldLabelPlaceholder": "필드 라벨",
|
|
573
|
+
"workflows.fieldEditors.formFields.fieldName": "필드 이름",
|
|
574
|
+
"workflows.fieldEditors.formFields.fieldNameHint": "이 필드의 고유 식별자",
|
|
575
|
+
"workflows.fieldEditors.formFields.fieldNamePlaceholder": "field_name",
|
|
576
|
+
"workflows.fieldEditors.formFields.fieldType": "필드 유형",
|
|
577
|
+
"workflows.fieldEditors.formFields.jsonSchemaNotice": "이 양식은 JSON 스키마 형식을 사용합니다. 시각적 편집을 위해 필드가 변환되었습니다. 저장하면 단순화된 형식으로 변환됩니다. 원본 JSON 스키마를 유지하려면 아래 \"고급 설정 (JSON)\" 섹션에서 편집하세요.",
|
|
578
|
+
"workflows.fieldEditors.formFields.options": "옵션 (쉼표로 구분)",
|
|
579
|
+
"workflows.fieldEditors.formFields.optionsHint": "쉼표로 구분된 옵션 목록",
|
|
580
|
+
"workflows.fieldEditors.formFields.optionsPlaceholder": "옵션 1, 옵션 2, 옵션 3",
|
|
581
|
+
"workflows.fieldEditors.formFields.placeholder": "플레이스홀더",
|
|
582
|
+
"workflows.fieldEditors.formFields.placeholderPlaceholder": "플레이스홀더 텍스트를 입력하세요...",
|
|
583
|
+
"workflows.fieldEditors.formFields.removeField": "필드 삭제",
|
|
584
|
+
"workflows.fieldEditors.formFields.requiredField": "필수 필드",
|
|
585
|
+
"workflows.fieldEditors.formFields.title": "양식 필드",
|
|
586
|
+
"workflows.fieldEditors.mappings.addMapping": "매핑 추가",
|
|
587
|
+
"workflows.fieldEditors.mappings.confirmRemove": "이 매핑을 삭제하시겠습니까?",
|
|
588
|
+
"workflows.fieldEditors.mappings.description": "데이터 변환을 위한 키-값 매핑을 정의하세요",
|
|
589
|
+
"workflows.fieldEditors.mappings.emptyState": "정의된 매핑이 없습니다. \"매핑 추가\"를 클릭하여 새로 만드세요.",
|
|
590
|
+
"workflows.fieldEditors.mappings.key": "키",
|
|
591
|
+
"workflows.fieldEditors.mappings.keyHint": "이 매핑의 키 이름",
|
|
592
|
+
"workflows.fieldEditors.mappings.keyPlaceholder": "key_name",
|
|
593
|
+
"workflows.fieldEditors.mappings.label": "매핑",
|
|
594
|
+
"workflows.fieldEditors.mappings.removeMapping": "매핑 삭제",
|
|
595
|
+
"workflows.fieldEditors.mappings.value": "값",
|
|
596
|
+
"workflows.fieldEditors.mappings.valueHint": "동적 값에는 {{context.foo}}와 같은 템플릿 표현식을 사용하세요",
|
|
597
|
+
"workflows.fieldEditors.mappings.valuePlaceholder": "{{context.fieldName}} 또는 정적 값",
|
|
598
|
+
"workflows.fieldEditors.preConditions.addRule": "규칙 추가",
|
|
599
|
+
"workflows.fieldEditors.preConditions.confirmRemove": "이 사전 조건을 삭제하시겠습니까?",
|
|
600
|
+
"workflows.fieldEditors.preConditions.description": "워크플로우를 시작하기 전에 통과해야 하는 비즈니스 규칙",
|
|
601
|
+
"workflows.fieldEditors.preConditions.emptyDescription": "워크플로우를 시작하기 전에 통과해야 하는 비즈니스 규칙을 추가하세요.",
|
|
602
|
+
"workflows.fieldEditors.preConditions.emptyTitle": "정의된 사전 조건이 없습니다",
|
|
603
|
+
"workflows.fieldEditors.preConditions.removePreCondition": "사전 조건 삭제",
|
|
604
|
+
"workflows.fieldEditors.preConditions.requiredLabel": "필수 (이 규칙이 실패하면 워크플로우를 시작할 수 없음)",
|
|
605
|
+
"workflows.fieldEditors.preConditions.selectBusinessRule": "비즈니스 규칙 선택",
|
|
606
|
+
"workflows.fieldEditors.preConditions.selectBusinessRuleDescription": "워크플로우 시작을 위한 사전 조건으로 추가할 비즈니스 규칙을 선택하세요",
|
|
607
|
+
"workflows.fieldEditors.preConditions.validationMessages": "검증 메시지 (로케일: 메시지, 줄당 하나씩)",
|
|
608
|
+
"workflows.fieldEditors.preConditions.validationMessagesHint": "형식: 로케일: 메시지 (예: en: Error message, pl: Komunikat błędu)",
|
|
609
|
+
"workflows.fieldEditors.preConditions.validationMessagesPlaceholder": "en: Your cart is empty. Please add items before checkout.\npl: Twój koszyk jest pusty. Dodaj produkty przed zakupem.",
|
|
610
|
+
"workflows.fieldEditors.workflowSelector.browseWorkflows": "워크플로우 찾아보기",
|
|
611
|
+
"workflows.fieldEditors.workflowSelector.confirmClear": "선택한 워크플로우를 지우시겠습니까?",
|
|
612
|
+
"workflows.fieldEditors.workflowSelector.description": "하위 워크플로우로 호출할 워크플로우를 선택하세요",
|
|
613
|
+
"workflows.fieldEditors.workflowSelector.label": "하위 워크플로우",
|
|
614
|
+
"workflows.fieldEditors.workflowSelector.noWorkflowSelected": "선택된 워크플로우가 없습니다",
|
|
615
|
+
"workflows.fieldEditors.workflowSelector.selectSubWorkflow": "하위 워크플로우 선택",
|
|
616
|
+
"workflows.fieldEditors.workflowSelector.selectSubWorkflowDescription": "하위 워크플로우로 호출할 워크플로우를 선택하세요",
|
|
617
|
+
"workflows.fields.createdAt": "생성일",
|
|
618
|
+
"workflows.fields.description": "설명",
|
|
619
|
+
"workflows.fields.enabled": "사용 여부",
|
|
620
|
+
"workflows.fields.id": "ID",
|
|
621
|
+
"workflows.fields.name": "이름",
|
|
622
|
+
"workflows.fields.tags": "태그",
|
|
623
|
+
"workflows.fields.version": "버전",
|
|
624
|
+
"workflows.fields.workflowId": "워크플로우 ID",
|
|
625
|
+
"workflows.fields.workflowName": "워크플로우 이름",
|
|
626
|
+
"workflows.filters.search": "검색",
|
|
627
|
+
"workflows.filters.searchPlaceholder": "워크플로우 이름 또는 ID로 검색...",
|
|
628
|
+
"workflows.filters.status": "상태",
|
|
629
|
+
"workflows.filters.workflowId": "워크플로우 ID",
|
|
630
|
+
"workflows.filters.workflowIdPlaceholder": "워크플로우 ID로 필터링...",
|
|
631
|
+
"workflows.form.activitiesLabel": "활동",
|
|
632
|
+
"workflows.form.activityId": "활동 ID",
|
|
633
|
+
"workflows.form.activityName": "활동 이름",
|
|
634
|
+
"workflows.form.activityType": "활동 유형",
|
|
635
|
+
"workflows.form.addActivity": "활동 추가",
|
|
636
|
+
"workflows.form.addField": "필드 추가",
|
|
637
|
+
"workflows.form.addMapping": "매핑 추가",
|
|
638
|
+
"workflows.form.addStep": "단계 추가",
|
|
639
|
+
"workflows.form.addTransition": "전환 추가",
|
|
640
|
+
"workflows.form.advancedConfiguration": "고급 설정 (JSON)",
|
|
641
|
+
"workflows.form.assignedTo": "담당자 (사용자 ID)",
|
|
642
|
+
"workflows.form.assignedToRoles": "담당 역할",
|
|
643
|
+
"workflows.form.async": "비동기",
|
|
644
|
+
"workflows.form.backoffCoefficient": "백오프 계수",
|
|
645
|
+
"workflows.form.backoffMultiplier": "백오프 배수",
|
|
646
|
+
"workflows.form.browse": "찾아보기...",
|
|
647
|
+
"workflows.form.category": "카테고리",
|
|
648
|
+
"workflows.form.configuration": "설정 (JSON)",
|
|
649
|
+
"workflows.form.create": "워크플로우 생성",
|
|
650
|
+
"workflows.form.defaultValue": "기본값",
|
|
651
|
+
"workflows.form.deleteActivity": "활동 삭제",
|
|
652
|
+
"workflows.form.deleteStep": "단계 삭제",
|
|
653
|
+
"workflows.form.description": "설명",
|
|
654
|
+
"workflows.form.descriptions.activities": "전환 중에 실행할 수 있는 재사용 가능한 활동을 정의하세요.",
|
|
655
|
+
"workflows.form.descriptions.activityConfig": "활동별 설정입니다. {{context.field}}, {{workflow.instanceId}}와 같은 변수 치환을 지원합니다",
|
|
656
|
+
"workflows.form.descriptions.advancedConfig": "userTaskConfig, retryPolicy 등 단계별 사용자 정의 필드를 추가하세요",
|
|
657
|
+
"workflows.form.descriptions.assignedTo": "이 작업을 할당할 특정 사용자 ID",
|
|
658
|
+
"workflows.form.descriptions.assignedToRoles": "쉼표로 구분된 역할 목록 (예: \"Manager, Reviewer\")",
|
|
659
|
+
"workflows.form.descriptions.childKey": "하위 컨텍스트의 대상 키",
|
|
660
|
+
"workflows.form.descriptions.childPath": "하위 컨텍스트의 소스 경로",
|
|
661
|
+
"workflows.form.descriptions.description": "이 단계에 대한 추가 설명",
|
|
662
|
+
"workflows.form.descriptions.effectiveFrom": "이 날짜부터 워크플로우가 활성화됩니다",
|
|
663
|
+
"workflows.form.descriptions.effectiveTo": "이 날짜 이후 워크플로우가 비활성화됩니다",
|
|
664
|
+
"workflows.form.descriptions.enabled": "사용 설정된 워크플로우만 시작할 수 있습니다",
|
|
665
|
+
"workflows.form.descriptions.fieldLabel": "사용자에게 표시되는 라벨",
|
|
666
|
+
"workflows.form.descriptions.fieldName": "이 필드의 고유 식별자",
|
|
667
|
+
"workflows.form.descriptions.formFields": "이 사용자 작업의 양식 구조를 정의하세요",
|
|
668
|
+
"workflows.form.descriptions.formKey": "사용자에게 표시할 양식의 식별자",
|
|
669
|
+
"workflows.form.descriptions.icon": "시각적 식별을 위한 아이콘 이름",
|
|
670
|
+
"workflows.form.descriptions.inputMapping": "상위 워크플로우의 데이터를 하위 워크플로우 컨텍스트로 매핑합니다",
|
|
671
|
+
"workflows.form.descriptions.options": "쉼표로 구분된 옵션 목록",
|
|
672
|
+
"workflows.form.descriptions.outputMapping": "하위 워크플로우의 데이터를 상위 컨텍스트로 다시 매핑합니다",
|
|
673
|
+
"workflows.form.descriptions.parentKey": "상위 컨텍스트의 대상 키",
|
|
674
|
+
"workflows.form.descriptions.parentPath": "상위 컨텍스트의 소스 경로",
|
|
675
|
+
"workflows.form.descriptions.signalName": "대기할 신호의 이름 (예: payment_confirmed, approval_received)",
|
|
676
|
+
"workflows.form.descriptions.signalTimeout": "ISO 8601 기간 형식 (예: 5분은 PT5M, 1시간은 PT1H, 30초는 PT30S)",
|
|
677
|
+
"workflows.form.descriptions.stepName": "단계에 표시되는 이름",
|
|
678
|
+
"workflows.form.descriptions.steps": "워크플로우의 단계 순서를 정의하세요. 각 단계는 상태 또는 작업을 나타냅니다.",
|
|
679
|
+
"workflows.form.descriptions.subWorkflowId": "호출할 하위 워크플로우의 워크플로우 ID",
|
|
680
|
+
"workflows.form.descriptions.subWorkflowVersion": "호출할 특정 버전 (비워두면 최신 버전 사용)",
|
|
681
|
+
"workflows.form.descriptions.tags": "분류 및 검색을 위한 키워드",
|
|
682
|
+
"workflows.form.descriptions.timeout": "ISO 8601 기간 형식 (예: PT30S) 또는 밀리초 (예: 30000)",
|
|
683
|
+
"workflows.form.descriptions.timeoutMs": "밀리초 단위의 제한 시간 (예: 30000 = 30초)",
|
|
684
|
+
"workflows.form.descriptions.transitions": "워크플로우가 단계 간에 이동하는 방식을 정의하세요. 전환에는 조건과 활동을 지정할 수 있습니다.",
|
|
685
|
+
"workflows.form.descriptions.version": "버전 번호 (주요 변경 시 증가)",
|
|
686
|
+
"workflows.form.descriptions.workflowId": "고유 식별자 (소문자, 숫자, 하이픈, 밑줄만 사용 가능)",
|
|
687
|
+
"workflows.form.effectiveFrom": "적용 시작일",
|
|
688
|
+
"workflows.form.effectiveTo": "적용 종료일",
|
|
689
|
+
"workflows.form.enabled": "사용 여부",
|
|
690
|
+
"workflows.form.executeAsync": "비동기 실행",
|
|
691
|
+
"workflows.form.fieldLabel": "필드 라벨",
|
|
692
|
+
"workflows.form.fieldName": "필드 이름",
|
|
693
|
+
"workflows.form.fieldType": "필드 유형",
|
|
694
|
+
"workflows.form.fieldTypes.checkbox": "체크박스",
|
|
695
|
+
"workflows.form.fieldTypes.date": "날짜",
|
|
696
|
+
"workflows.form.fieldTypes.datetime-local": "날짜 및 시간",
|
|
697
|
+
"workflows.form.fieldTypes.email": "이메일",
|
|
698
|
+
"workflows.form.fieldTypes.number": "숫자",
|
|
699
|
+
"workflows.form.fieldTypes.radio": "라디오 버튼",
|
|
700
|
+
"workflows.form.fieldTypes.select": "선택 (드롭다운)",
|
|
701
|
+
"workflows.form.fieldTypes.tel": "전화번호",
|
|
702
|
+
"workflows.form.fieldTypes.text": "텍스트",
|
|
703
|
+
"workflows.form.fieldTypes.textarea": "텍스트 영역",
|
|
704
|
+
"workflows.form.fieldTypes.time": "시간",
|
|
705
|
+
"workflows.form.fieldTypes.url": "URL",
|
|
706
|
+
"workflows.form.formFields": "양식 필드 ({{count}})",
|
|
707
|
+
"workflows.form.formKey": "양식 키",
|
|
708
|
+
"workflows.form.groups.activities": "활동",
|
|
709
|
+
"workflows.form.groups.basic": "기본 정보",
|
|
710
|
+
"workflows.form.groups.metadata": "메타데이터",
|
|
711
|
+
"workflows.form.groups.steps": "워크플로우 단계",
|
|
712
|
+
"workflows.form.groups.transitions": "전환",
|
|
713
|
+
"workflows.form.icon": "아이콘",
|
|
714
|
+
"workflows.form.initialInterval": "초기 간격 (ms)",
|
|
715
|
+
"workflows.form.inputMapping": "입력 매핑 ({{count}})",
|
|
716
|
+
"workflows.form.maxAttempts": "최대 시도 횟수",
|
|
717
|
+
"workflows.form.maxInterval": "최대 간격 (ms)",
|
|
718
|
+
"workflows.form.maxRetryAttempts": "최대 재시도 횟수",
|
|
719
|
+
"workflows.form.newField": "새 필드",
|
|
720
|
+
"workflows.form.noActivities": "아직 정의된 활동이 없습니다. 활동은 선택 사항이지만 복잡한 워크플로우에 유용합니다.",
|
|
721
|
+
"workflows.form.noActivitiesInTransition": "이 전환에 대한 활동이 없습니다. \"활동 추가\"를 클릭하여 새로 만드세요.",
|
|
722
|
+
"workflows.form.noSteps": "아직 정의된 단계가 없습니다. 첫 번째 단계를 추가해 시작하세요.",
|
|
723
|
+
"workflows.form.noTransitions": "아직 정의된 전환이 없습니다. 전환을 추가해 단계를 연결하세요.",
|
|
724
|
+
"workflows.form.options": "옵션 (쉼표로 구분)",
|
|
725
|
+
"workflows.form.outputMapping": "출력 매핑 ({{count}})",
|
|
726
|
+
"workflows.form.placeholder": "플레이스홀더",
|
|
727
|
+
"workflows.form.placeholders.activityId": "send_email",
|
|
728
|
+
"workflows.form.placeholders.activityName": "환영 이메일 발송",
|
|
729
|
+
"workflows.form.placeholders.category": "예: 영업, 고객 서비스, 재무",
|
|
730
|
+
"workflows.form.placeholders.childKey": "childKey",
|
|
731
|
+
"workflows.form.placeholders.childPath": "child.result.path",
|
|
732
|
+
"workflows.form.placeholders.defaultValue": "기본값...",
|
|
733
|
+
"workflows.form.placeholders.description": "선택 사항: 이 워크플로우의 목적을 설명하세요",
|
|
734
|
+
"workflows.form.placeholders.fieldLabel": "필드 라벨",
|
|
735
|
+
"workflows.form.placeholders.fieldName": "field_name",
|
|
736
|
+
"workflows.form.placeholders.formKey": "approval_form",
|
|
737
|
+
"workflows.form.placeholders.icon": "예: ShoppingCart, User, FileText",
|
|
738
|
+
"workflows.form.placeholders.options": "옵션 1, 옵션 2, 옵션 3",
|
|
739
|
+
"workflows.form.placeholders.parentKey": "parentKey",
|
|
740
|
+
"workflows.form.placeholders.parentPath": "parent.field.path",
|
|
741
|
+
"workflows.form.placeholders.placeholder": "플레이스홀더 텍스트를 입력하세요...",
|
|
742
|
+
"workflows.form.placeholders.roles": "Manager, Reviewer",
|
|
743
|
+
"workflows.form.placeholders.signalName": "payment_confirmed",
|
|
744
|
+
"workflows.form.placeholders.signalTimeout": "PT5M",
|
|
745
|
+
"workflows.form.placeholders.stepName": "단계 이름을 입력하세요",
|
|
746
|
+
"workflows.form.placeholders.subWorkflowId": "child-workflow",
|
|
747
|
+
"workflows.form.placeholders.tags": "Enter 키를 눌러 태그를 추가하세요",
|
|
748
|
+
"workflows.form.placeholders.timeout": "PT30S 또는 30000",
|
|
749
|
+
"workflows.form.placeholders.timeoutMs": "30000",
|
|
750
|
+
"workflows.form.placeholders.userId": "user123",
|
|
751
|
+
"workflows.form.placeholders.version": "최신 버전",
|
|
752
|
+
"workflows.form.placeholders.workflowId": "checkout_workflow",
|
|
753
|
+
"workflows.form.placeholders.workflowName": "워크플로우 이름을 설명적으로 입력하세요",
|
|
754
|
+
"workflows.form.removeField": "필드 삭제",
|
|
755
|
+
"workflows.form.required": "필수",
|
|
756
|
+
"workflows.form.requiredField": "필수 필드",
|
|
757
|
+
"workflows.form.retryDelay": "재시도 지연",
|
|
758
|
+
"workflows.form.retryPolicy": "재시도 정책",
|
|
759
|
+
"workflows.form.selectStep": "단계를 선택하세요",
|
|
760
|
+
"workflows.form.signalConfig": "신호 설정",
|
|
761
|
+
"workflows.form.signalName": "신호 이름",
|
|
762
|
+
"workflows.form.stepActivities": "단계 활동 ({{count}})",
|
|
763
|
+
"workflows.form.stepName": "단계 이름",
|
|
764
|
+
"workflows.form.stepsLabel": "단계",
|
|
765
|
+
"workflows.form.subWorkflowConfig": "하위 워크플로우 설정",
|
|
766
|
+
"workflows.form.tags": "태그",
|
|
767
|
+
"workflows.form.timeout": "제한 시간",
|
|
768
|
+
"workflows.form.transitionsLabel": "전환",
|
|
769
|
+
"workflows.form.update": "워크플로우 업데이트",
|
|
770
|
+
"workflows.form.version": "버전",
|
|
771
|
+
"workflows.form.workflowId": "워크플로우 ID",
|
|
772
|
+
"workflows.form.workflowName": "워크플로우 이름",
|
|
773
|
+
"workflows.form.workflowToInvoke": "호출할 워크플로우",
|
|
774
|
+
"workflows.graph.editModeInfo": "편집 모드: 노드를 드래그하여 위치를 조정하세요",
|
|
775
|
+
"workflows.graph.visualization": "워크플로우 시각화",
|
|
776
|
+
"workflows.instances.actions.backToList": "인스턴스 목록으로 돌아가기",
|
|
777
|
+
"workflows.instances.actions.cancel": "취소",
|
|
778
|
+
"workflows.instances.actions.retry": "재시도",
|
|
779
|
+
"workflows.instances.actions.viewDetails": "상세 보기",
|
|
780
|
+
"workflows.instances.backToList": "인스턴스 목록으로 돌아가기",
|
|
781
|
+
"workflows.instances.cancelFailed": "워크플로우 인스턴스를 취소하지 못했습니다.",
|
|
782
|
+
"workflows.instances.compensation.activities": "보상 활동",
|
|
783
|
+
"workflows.instances.compensation.completed": "보상 완료",
|
|
784
|
+
"workflows.instances.compensation.inProgress": "보상 처리 중",
|
|
785
|
+
"workflows.instances.confirm.cancel": "'{{workflowId}}' 워크플로우를 취소하시겠습니까?",
|
|
786
|
+
"workflows.instances.confirm.retry": "'{{workflowId}}' 워크플로우를 재시도하시겠습니까?",
|
|
787
|
+
"workflows.instances.confirmCancel": "이 워크플로우 인스턴스를 취소하시겠습니까?",
|
|
788
|
+
"workflows.instances.confirmRetry": "이 워크플로우 인스턴스를 재시도하시겠습니까?",
|
|
789
|
+
"workflows.instances.detail.loading": "워크플로우 인스턴스를 불러오는 중...",
|
|
790
|
+
"workflows.instances.detail.notFound": "워크플로우 인스턴스를 찾을 수 없습니다.",
|
|
791
|
+
"workflows.instances.detail.type": "인스턴스 유형",
|
|
792
|
+
"workflows.instances.duration": "소요 시간",
|
|
793
|
+
"workflows.instances.elapsed": "경과 시간",
|
|
794
|
+
"workflows.instances.fields.cancelledAt": "취소 시각",
|
|
795
|
+
"workflows.instances.fields.completedAt": "완료 시각",
|
|
796
|
+
"workflows.instances.fields.correlationKey": "연관 키",
|
|
797
|
+
"workflows.instances.fields.currentStep": "현재 단계",
|
|
798
|
+
"workflows.instances.fields.duration": "소요 시간",
|
|
799
|
+
"workflows.instances.fields.elapsed": "경과 시간",
|
|
800
|
+
"workflows.instances.fields.instanceId": "인스턴스 ID",
|
|
801
|
+
"workflows.instances.fields.lastError": "마지막 오류",
|
|
802
|
+
"workflows.instances.fields.pausedAt": "일시 중지 시각",
|
|
803
|
+
"workflows.instances.fields.retryCount": "재시도 횟수",
|
|
804
|
+
"workflows.instances.fields.startedAt": "시작 시각",
|
|
805
|
+
"workflows.instances.fields.status": "상태",
|
|
806
|
+
"workflows.instances.fields.timing": "타이밍",
|
|
807
|
+
"workflows.instances.fields.version": "버전",
|
|
808
|
+
"workflows.instances.fields.workflowId": "워크플로우 ID",
|
|
809
|
+
"workflows.instances.filters.correlationKey": "상관 키",
|
|
810
|
+
"workflows.instances.filters.correlationKeyPlaceholder": "상관 키로 필터링...",
|
|
811
|
+
"workflows.instances.filters.entityId": "엔터티 ID",
|
|
812
|
+
"workflows.instances.filters.entityIdPlaceholder": "엔터티 ID로 필터링...",
|
|
813
|
+
"workflows.instances.filters.entityType": "엔터티 유형",
|
|
814
|
+
"workflows.instances.filters.entityTypePlaceholder": "엔터티 유형으로 필터링...",
|
|
815
|
+
"workflows.instances.filters.search": "검색",
|
|
816
|
+
"workflows.instances.filters.searchPlaceholder": "워크플로우 ID 또는 상관 키로 검색...",
|
|
817
|
+
"workflows.instances.filters.status": "상태",
|
|
818
|
+
"workflows.instances.filters.workflowId": "워크플로우 ID",
|
|
819
|
+
"workflows.instances.filters.workflowIdPlaceholder": "워크플로우 ID로 필터링...",
|
|
820
|
+
"workflows.instances.list.title": "워크플로우 인스턴스",
|
|
821
|
+
"workflows.instances.loadFailed": "워크플로우 인스턴스를 불러오지 못했습니다.",
|
|
822
|
+
"workflows.instances.messages.cancelFailed": "워크플로우 인스턴스를 취소하지 못했습니다",
|
|
823
|
+
"workflows.instances.messages.cancelled": "워크플로우 인스턴스가 취소되었습니다",
|
|
824
|
+
"workflows.instances.messages.loadFailed": "워크플로우 인스턴스를 불러오지 못했습니다",
|
|
825
|
+
"workflows.instances.messages.retried": "워크플로우 인스턴스가 재시도되었습니다",
|
|
826
|
+
"workflows.instances.messages.retryFailed": "워크플로우 인스턴스를 재시도하지 못했습니다",
|
|
827
|
+
"workflows.instances.noExecutionHistory": "실행 이력이 없습니다",
|
|
828
|
+
"workflows.instances.notFound": "워크플로우 인스턴스를 찾을 수 없습니다.",
|
|
829
|
+
"workflows.instances.plural": "워크플로우 인스턴스",
|
|
830
|
+
"workflows.instances.retryFailed": "워크플로우 인스턴스를 재시도하지 못했습니다.",
|
|
831
|
+
"workflows.instances.sections.compensation": "보상 처리",
|
|
832
|
+
"workflows.instances.sections.context": "컨텍스트 데이터",
|
|
833
|
+
"workflows.instances.sections.executionHistory": "이벤트 로그",
|
|
834
|
+
"workflows.instances.sections.executionTimeline": "실행 타임라인",
|
|
835
|
+
"workflows.instances.sections.metadata": "메타데이터",
|
|
836
|
+
"workflows.instances.sections.overview": "개요",
|
|
837
|
+
"workflows.instances.sections.stepExecutionTimeline": "단계 실행 타임라인",
|
|
838
|
+
"workflows.instances.sections.visualFlow": "워크플로우 시각화",
|
|
839
|
+
"workflows.instances.singular": "워크플로우 인스턴스",
|
|
840
|
+
"workflows.instances.status.CANCELLED": "취소됨",
|
|
841
|
+
"workflows.instances.status.COMPENSATED": "보상 처리됨",
|
|
842
|
+
"workflows.instances.status.COMPENSATING": "보상 처리 중",
|
|
843
|
+
"workflows.instances.status.COMPLETED": "완료됨",
|
|
844
|
+
"workflows.instances.status.FAILED": "실패",
|
|
845
|
+
"workflows.instances.status.PAUSED": "일시중지됨",
|
|
846
|
+
"workflows.instances.status.RUNNING": "실행 중",
|
|
847
|
+
"workflows.instances.status.WAITING_FOR_ACTIVITIES": "액티비티 대기 중",
|
|
848
|
+
"workflows.instances.title": "워크플로우 인스턴스",
|
|
849
|
+
"workflows.legend.edgeState.completed": "완료됨",
|
|
850
|
+
"workflows.legend.edgeState.pending": "대기 중/다음",
|
|
851
|
+
"workflows.legend.edgeStatesTitle": "연결선 상태",
|
|
852
|
+
"workflows.legend.status.completed": "완료됨",
|
|
853
|
+
"workflows.legend.status.inProgress": "진행 중",
|
|
854
|
+
"workflows.legend.status.notStarted": "시작 안 됨",
|
|
855
|
+
"workflows.legend.status.pending": "대기 중 (준비됨)",
|
|
856
|
+
"workflows.legend.statusTitle": "워크플로우 상태 범례",
|
|
857
|
+
"workflows.list.title": "워크플로우 정의",
|
|
858
|
+
"workflows.messages.deleteFailed": "워크플로우를 삭제하지 못했습니다",
|
|
859
|
+
"workflows.messages.deleted": "워크플로우가 삭제되었습니다",
|
|
860
|
+
"workflows.messages.duplicateNotYetImplemented": "복제 기능은 아직 구현되지 않았습니다",
|
|
861
|
+
"workflows.messages.instanceCancelled": "워크플로우 인스턴스가 취소되었습니다",
|
|
862
|
+
"workflows.messages.instanceNotFound": "워크플로우 인스턴스를 찾을 수 없습니다",
|
|
863
|
+
"workflows.messages.instanceRetried": "워크플로우 인스턴스가 재시도되었습니다",
|
|
864
|
+
"workflows.messages.instanceStarted": "워크플로우 인스턴스가 시작되었습니다",
|
|
865
|
+
"workflows.messages.invalidWorkflow": "잘못된 워크플로우 정의입니다",
|
|
866
|
+
"workflows.messages.loadFailed": "워크플로우를 불러오지 못했습니다",
|
|
867
|
+
"workflows.messages.saveFailed": "저장하지 못했습니다",
|
|
868
|
+
"workflows.messages.taskAlreadyClaimed": "이미 다른 사용자가 처리 중인 작업입니다",
|
|
869
|
+
"workflows.messages.taskClaimed": "작업을 가져왔습니다",
|
|
870
|
+
"workflows.messages.taskCompleted": "작업이 완료되었습니다",
|
|
871
|
+
"workflows.messages.taskNotAvailable": "사용할 수 없는 작업입니다",
|
|
872
|
+
"workflows.messages.taskNotFound": "작업을 찾을 수 없습니다",
|
|
873
|
+
"workflows.messages.updateFailed": "워크플로우를 수정하지 못했습니다",
|
|
874
|
+
"workflows.messages.updated": "워크플로우가 수정되었습니다",
|
|
875
|
+
"workflows.messages.workflowCreated": "워크플로우가 생성되었습니다",
|
|
876
|
+
"workflows.messages.workflowDeleted": "워크플로우가 삭제되었습니다",
|
|
877
|
+
"workflows.messages.workflowDisabled": "워크플로우가 비활성화되었습니다",
|
|
878
|
+
"workflows.messages.workflowDuplicated": "워크플로우가 복제되었습니다",
|
|
879
|
+
"workflows.messages.workflowEnabled": "워크플로우가 활성화되었습니다",
|
|
880
|
+
"workflows.messages.workflowNotFound": "워크플로우를 찾을 수 없습니다",
|
|
881
|
+
"workflows.messages.workflowUpdated": "워크플로우가 수정되었습니다",
|
|
882
|
+
"workflows.mobile.addStep": "단계 추가",
|
|
883
|
+
"workflows.mobile.addTransition": "전환 추가",
|
|
884
|
+
"workflows.mobile.clear": "지우기",
|
|
885
|
+
"workflows.mobile.deleteStep": "단계 삭제",
|
|
886
|
+
"workflows.mobile.deleteTransition": "전환 삭제",
|
|
887
|
+
"workflows.mobile.editStep": "단계 편집",
|
|
888
|
+
"workflows.mobile.editTransition": "전환 편집",
|
|
889
|
+
"workflows.mobile.eventLog": "이벤트 로그",
|
|
890
|
+
"workflows.mobile.hideDetails": "상세정보 숨기기",
|
|
891
|
+
"workflows.mobile.loadExample": "예제 워크플로우 불러오기",
|
|
892
|
+
"workflows.mobile.metadata": "메타데이터",
|
|
893
|
+
"workflows.mobile.moreActions": "추가 작업",
|
|
894
|
+
"workflows.mobile.noSteps": "아직 정의된 단계가 없습니다.",
|
|
895
|
+
"workflows.mobile.noTransitions": "아직 정의된 전환이 없습니다.",
|
|
896
|
+
"workflows.mobile.runTest": "테스트 실행",
|
|
897
|
+
"workflows.mobile.save": "저장",
|
|
898
|
+
"workflows.mobile.saving": "저장 중...",
|
|
899
|
+
"workflows.mobile.showDetails": "상세정보 표시",
|
|
900
|
+
"workflows.mobile.startBuilding": "만들기 시작",
|
|
901
|
+
"workflows.mobile.startBuildingHint": "위의 단계 유형을 탭하여 추가하세요",
|
|
902
|
+
"workflows.mobile.stepTimeline": "단계 타임라인",
|
|
903
|
+
"workflows.mobile.validate": "검증",
|
|
904
|
+
"workflows.mobile.viewFullGraph": "전체 그래프 보기",
|
|
905
|
+
"workflows.module.description": "비즈니스 프로세스를 자동화 관리합니다",
|
|
906
|
+
"workflows.module.name": "워크플로우 엔진",
|
|
907
|
+
"workflows.nav.graphTest": "그래프 테스트",
|
|
908
|
+
"workflows.nodeEditor.endStepsNotEditable": "END 단계는 편집할 수 없습니다. 이는 워크플로우의 고정된 종료 지점을 나타냅니다.",
|
|
909
|
+
"workflows.nodeEditor.jsonSchemaFormat": "이 폼은 JSON 스키마 형식을 사용합니다. 시각적 편집을 위해 필드가 변환되었습니다. 저장하면 단순화된 형식으로 다시 변환됩니다. 원본 JSON 스키마를 유지하려면 아래 \"고급 설정 (JSON)\" 섹션에서 편집하세요.",
|
|
910
|
+
"workflows.nodeEditor.noActivities": "정의된 액티비티가 없습니다. \"액티비티 추가\"를 클릭하여 생성하세요.",
|
|
911
|
+
"workflows.nodeEditor.noFormFields": "정의된 폼 필드가 없습니다. \"필드 추가\"를 클릭하여 생성하세요.",
|
|
912
|
+
"workflows.nodeEditor.noInputMappings": "입력 매핑이 없습니다. 상위 컨텍스트 전체가 하위로 전달됩니다.",
|
|
913
|
+
"workflows.nodeEditor.noOutputMappings": "출력 매핑이 없습니다. 하위 컨텍스트 전체가 상위로 반환됩니다.",
|
|
914
|
+
"workflows.nodeEditor.startStepsInfo": "START 단계는 워크플로우의 시작을 나타냅니다. 워크플로우 시작 전에 통과해야 하는 사전 조건을 정의할 수 있습니다.",
|
|
915
|
+
"workflows.nodeEditor.stepIdSanitized": "단계 ID가 스키마 요구사항(소문자, 숫자, 하이픈, 밑줄만 허용)에 맞게 \"{{from}}\"에서 \"{{to}}\"(으)로 자동 변환되었습니다.",
|
|
916
|
+
"workflows.nodeEditor.title": "단계 편집",
|
|
917
|
+
"workflows.nodeEditor.userTaskConfig": "사용자 작업 설정",
|
|
918
|
+
"workflows.nodeTypes.automated": "자동",
|
|
919
|
+
"workflows.nodeTypes.decision": "분기",
|
|
920
|
+
"workflows.nodeTypes.end": "종료",
|
|
921
|
+
"workflows.nodeTypes.parallelFork": "병렬 분기",
|
|
922
|
+
"workflows.nodeTypes.parallelJoin": "병렬 합류",
|
|
923
|
+
"workflows.nodeTypes.start": "시작",
|
|
924
|
+
"workflows.nodeTypes.subWorkflow": "하위 워크플로우",
|
|
925
|
+
"workflows.nodeTypes.userTask": "사용자 작업",
|
|
926
|
+
"workflows.nodeTypes.waitForSignal": "신호 대기",
|
|
927
|
+
"workflows.nodeTypes.waitForTimer": "타이머 대기",
|
|
928
|
+
"workflows.notifications.task.assigned.body": "워크플로우 \"{workflowName}\"의 작업 \"{taskName}\"이(가) 회원님에게 배정되었습니다{dueDate, select, other { (기한: {dueDate})}}",
|
|
929
|
+
"workflows.notifications.task.assigned.title": "작업 배정됨",
|
|
930
|
+
"workflows.orderApproval.approveButton": "승인",
|
|
931
|
+
"workflows.orderApproval.commentsLabel": "코멘트",
|
|
932
|
+
"workflows.orderApproval.commentsPlaceholder": "선택적으로 코멘트를 추가하세요…",
|
|
933
|
+
"workflows.orderApproval.completeError": "승인 작업을 완료하지 못했습니다.",
|
|
934
|
+
"workflows.orderApproval.completed": "승인 워크플로우가 완료되었습니다.",
|
|
935
|
+
"workflows.orderApproval.decisionLabel": "결정",
|
|
936
|
+
"workflows.orderApproval.groupDescription": "이 주문을 검토하여 승인하거나 반려하세요.",
|
|
937
|
+
"workflows.orderApproval.groupLabel": "주문 승인",
|
|
938
|
+
"workflows.orderApproval.missingOrderId": "주문이 로드되기 전에는 승인 워크플로를 시작할 수 없습니다.",
|
|
939
|
+
"workflows.orderApproval.missingStatuses": "주문 상태 항목이 누락되었습니다. pending_approval, approved, rejected 상태가 존재하는지 확인하세요.",
|
|
940
|
+
"workflows.orderApproval.noWorkflowActive": "이 주문에 대해 활성화된 승인 워크플로우가 없습니다.",
|
|
941
|
+
"workflows.orderApproval.pendingDescription": "이 주문은 처리 전에 승인이 필요합니다.",
|
|
942
|
+
"workflows.orderApproval.pendingTitle": "승인 대기 중",
|
|
943
|
+
"workflows.orderApproval.processing": "워크플로우가 처리 중입니다…",
|
|
944
|
+
"workflows.orderApproval.rejectButton": "반려",
|
|
945
|
+
"workflows.orderApproval.requestApproval": "승인 요청",
|
|
946
|
+
"workflows.orderApproval.startError": "승인 워크플로우를 시작하지 못했습니다.",
|
|
947
|
+
"workflows.orderApproval.submitDecision": "결정 제출",
|
|
948
|
+
"workflows.parallel.branch.label": "분기",
|
|
949
|
+
"workflows.parallel.branch.status.ACTIVE": "진행 중",
|
|
950
|
+
"workflows.parallel.branch.status.CANCELLED": "취소됨",
|
|
951
|
+
"workflows.parallel.branch.status.COMPLETED": "완료됨",
|
|
952
|
+
"workflows.parallel.branch.status.FAILED": "실패",
|
|
953
|
+
"workflows.parallel.branch.status.PAUSED": "일시중지됨",
|
|
954
|
+
"workflows.parallel.branch.status.WAITING_FOR_ACTIVITIES": "액티비티 대기 중",
|
|
955
|
+
"workflows.parallel.fork.label": "병렬 분기",
|
|
956
|
+
"workflows.parallel.join.label": "병렬 합류",
|
|
957
|
+
"workflows.parallel.validation.title": "병렬 분기/합류 검증 실패",
|
|
958
|
+
"workflows.signals.awaiting": "신호 대기 중",
|
|
959
|
+
"workflows.signals.correlationKey": "상관 키",
|
|
960
|
+
"workflows.signals.payload": "신호 페이로드",
|
|
961
|
+
"workflows.signals.plural": "신호",
|
|
962
|
+
"workflows.signals.received": "신호가 수신되었습니다",
|
|
963
|
+
"workflows.signals.send": "신호 전송",
|
|
964
|
+
"workflows.signals.sendByCorrelationKey": "여러 워크플로우로 전송",
|
|
965
|
+
"workflows.signals.sendSignal": "신호 전송",
|
|
966
|
+
"workflows.signals.signalConfig.description": "설명",
|
|
967
|
+
"workflows.signals.signalConfig.signalName": "신호 이름",
|
|
968
|
+
"workflows.signals.signalConfig.timeout": "타임아웃",
|
|
969
|
+
"workflows.signals.signalConfig.title": "신호 설정",
|
|
970
|
+
"workflows.signals.signalName": "신호 이름",
|
|
971
|
+
"workflows.signals.singular": "신호",
|
|
972
|
+
"workflows.signals.timeout": "신호 타임아웃",
|
|
973
|
+
"workflows.signals.title": "신호",
|
|
974
|
+
"workflows.source.code": "코드 정의",
|
|
975
|
+
"workflows.source.code.readonlyBanner": "이 워크플로우는 코드로 정의되어 있습니다. 변경하려면 커스터마이즈하세요.",
|
|
976
|
+
"workflows.source.code_override": "커스터마이즈됨",
|
|
977
|
+
"workflows.source.code_override.banner": "이 워크플로우는 코드 정의 버전에서 커스터마이즈되었습니다.",
|
|
978
|
+
"workflows.source.user": "사용자 생성",
|
|
979
|
+
"workflows.steps.addStep": "단계 추가",
|
|
980
|
+
"workflows.steps.config": "설정",
|
|
981
|
+
"workflows.steps.deleteStep": "단계 삭제",
|
|
982
|
+
"workflows.steps.editStep": "단계 편집",
|
|
983
|
+
"workflows.steps.plural": "단계",
|
|
984
|
+
"workflows.steps.retryPolicy": "재시도 정책",
|
|
985
|
+
"workflows.steps.singular": "단계",
|
|
986
|
+
"workflows.steps.statuses.ACTIVE": "진행 중",
|
|
987
|
+
"workflows.steps.statuses.CANCELLED": "취소됨",
|
|
988
|
+
"workflows.steps.statuses.COMPLETED": "완료됨",
|
|
989
|
+
"workflows.steps.statuses.FAILED": "실패",
|
|
990
|
+
"workflows.steps.statuses.PENDING": "대기 중",
|
|
991
|
+
"workflows.steps.statuses.SKIPPED": "건너뜀",
|
|
992
|
+
"workflows.steps.stepId": "단계 ID",
|
|
993
|
+
"workflows.steps.stepName": "단계 이름",
|
|
994
|
+
"workflows.steps.stepType": "단계 유형",
|
|
995
|
+
"workflows.steps.timeout": "타임아웃",
|
|
996
|
+
"workflows.steps.title": "워크플로우 단계",
|
|
997
|
+
"workflows.steps.types.AUTOMATED": "자동",
|
|
998
|
+
"workflows.steps.types.END": "종료",
|
|
999
|
+
"workflows.steps.types.PARALLEL_FORK": "병렬 분기",
|
|
1000
|
+
"workflows.steps.types.PARALLEL_JOIN": "병렬 합류",
|
|
1001
|
+
"workflows.steps.types.START": "시작",
|
|
1002
|
+
"workflows.steps.types.SUB_WORKFLOW": "하위 워크플로우",
|
|
1003
|
+
"workflows.steps.types.USER_TASK": "사용자 작업",
|
|
1004
|
+
"workflows.steps.types.WAIT_FOR_SIGNAL": "신호 대기",
|
|
1005
|
+
"workflows.steps.types.WAIT_FOR_TIMER": "타이머 대기",
|
|
1006
|
+
"workflows.tasks.actions.claim": "작업 가져오기",
|
|
1007
|
+
"workflows.tasks.actions.complete": "작업 완료",
|
|
1008
|
+
"workflows.tasks.actions.viewDetails": "상세보기",
|
|
1009
|
+
"workflows.tasks.allTasks": "전체 작업",
|
|
1010
|
+
"workflows.tasks.assignedTo": "담당자",
|
|
1011
|
+
"workflows.tasks.assignedToRoles": "배정된 역할",
|
|
1012
|
+
"workflows.tasks.backToList": "작업 목록으로",
|
|
1013
|
+
"workflows.tasks.claim": "작업 가져오기",
|
|
1014
|
+
"workflows.tasks.claimedAt": "가져온 시각",
|
|
1015
|
+
"workflows.tasks.claimedBy": "가져온 사람",
|
|
1016
|
+
"workflows.tasks.comments": "코멘트",
|
|
1017
|
+
"workflows.tasks.complete": "작업 완료",
|
|
1018
|
+
"workflows.tasks.completedAt": "완료 시각",
|
|
1019
|
+
"workflows.tasks.completedBy": "완료한 사람",
|
|
1020
|
+
"workflows.tasks.confirm.claim": "작업 '{{name}}'을(를) 가져오시겠습니까?",
|
|
1021
|
+
"workflows.tasks.description": "설명",
|
|
1022
|
+
"workflows.tasks.detail.assignedTo": "담당자",
|
|
1023
|
+
"workflows.tasks.detail.backToList": "작업 목록으로",
|
|
1024
|
+
"workflows.tasks.detail.cannotComplete": "이 작업은 이미 완료 또는 취소되어 수정할 수 없습니다.",
|
|
1025
|
+
"workflows.tasks.detail.comments": "코멘트",
|
|
1026
|
+
"workflows.tasks.detail.commentsPlaceholder": "이 작업에 대한 코멘트나 메모를 추가하세요...",
|
|
1027
|
+
"workflows.tasks.detail.completeTask": "작업 완료",
|
|
1028
|
+
"workflows.tasks.detail.form.selectOption": "-- 옵션 선택 --",
|
|
1029
|
+
"workflows.tasks.detail.loadFailed": "작업을 불러오지 못했습니다",
|
|
1030
|
+
"workflows.tasks.detail.loading": "작업을 불러오는 중...",
|
|
1031
|
+
"workflows.tasks.detail.noFormSchema": "이 작업에는 작성할 폼이 없습니다. 선택적으로 코멘트를 추가하고 제출할 수 있습니다.",
|
|
1032
|
+
"workflows.tasks.detail.notFound": "작업을 찾을 수 없습니다",
|
|
1033
|
+
"workflows.tasks.detail.optional": "선택 사항",
|
|
1034
|
+
"workflows.tasks.detail.overdueWarning": "⚠ 이 작업은 기한이 지났습니다!",
|
|
1035
|
+
"workflows.tasks.detail.sections.form": "작업 폼",
|
|
1036
|
+
"workflows.tasks.detail.sections.submittedData": "제출된 데이터",
|
|
1037
|
+
"workflows.tasks.detail.sections.taskInfo": "작업 정보",
|
|
1038
|
+
"workflows.tasks.detail.submitting": "제출 중...",
|
|
1039
|
+
"workflows.tasks.detail.type": "사용자 작업",
|
|
1040
|
+
"workflows.tasks.detail.validation.requiredField": "필수 필드가 누락되었습니다: {{field}}",
|
|
1041
|
+
"workflows.tasks.detail.workflowInstance": "워크플로우 인스턴스",
|
|
1042
|
+
"workflows.tasks.dueDate": "기한",
|
|
1043
|
+
"workflows.tasks.fields.assignment": "배정",
|
|
1044
|
+
"workflows.tasks.fields.createdAt": "생성 시각",
|
|
1045
|
+
"workflows.tasks.fields.dueDate": "기한",
|
|
1046
|
+
"workflows.tasks.fields.status": "상태",
|
|
1047
|
+
"workflows.tasks.fields.taskName": "작업 이름",
|
|
1048
|
+
"workflows.tasks.filters.allTasks": "전체 작업",
|
|
1049
|
+
"workflows.tasks.filters.myTasks": "내 작업",
|
|
1050
|
+
"workflows.tasks.filters.overdue": "기한 초과",
|
|
1051
|
+
"workflows.tasks.filters.overdueOnly": "기한 초과만",
|
|
1052
|
+
"workflows.tasks.filters.status": "상태",
|
|
1053
|
+
"workflows.tasks.filters.view": "보기",
|
|
1054
|
+
"workflows.tasks.filters.workflowInstanceId": "워크플로우 인스턴스 ID",
|
|
1055
|
+
"workflows.tasks.filters.workflowInstanceIdPlaceholder": "워크플로우 인스턴스로 필터링...",
|
|
1056
|
+
"workflows.tasks.formData": "폼 데이터",
|
|
1057
|
+
"workflows.tasks.formSchema": "폼 스키마",
|
|
1058
|
+
"workflows.tasks.list.title": "사용자 작업",
|
|
1059
|
+
"workflows.tasks.messages.claimFailed": "작업을 가져오지 못했습니다",
|
|
1060
|
+
"workflows.tasks.messages.claimed": "작업을 가져왔습니다",
|
|
1061
|
+
"workflows.tasks.messages.completeFailed": "작업을 완료하지 못했습니다",
|
|
1062
|
+
"workflows.tasks.messages.completed": "작업이 완료되었습니다",
|
|
1063
|
+
"workflows.tasks.messages.loadFailed": "사용자 작업을 불러오지 못했습니다",
|
|
1064
|
+
"workflows.tasks.myTasks": "내 작업",
|
|
1065
|
+
"workflows.tasks.overdue": "기한 초과",
|
|
1066
|
+
"workflows.tasks.plural": "사용자 작업",
|
|
1067
|
+
"workflows.tasks.roles": "역할",
|
|
1068
|
+
"workflows.tasks.singular": "사용자 작업",
|
|
1069
|
+
"workflows.tasks.statuses.CANCELLED": "취소됨",
|
|
1070
|
+
"workflows.tasks.statuses.COMPLETED": "완료됨",
|
|
1071
|
+
"workflows.tasks.statuses.ESCALATED": "에스컬레이션됨",
|
|
1072
|
+
"workflows.tasks.statuses.IN_PROGRESS": "진행 중",
|
|
1073
|
+
"workflows.tasks.statuses.PENDING": "대기 중",
|
|
1074
|
+
"workflows.tasks.taskName": "작업 이름",
|
|
1075
|
+
"workflows.tasks.title": "사용자 작업",
|
|
1076
|
+
"workflows.tasks.userTaskConfig.assignedTo": "담당자",
|
|
1077
|
+
"workflows.tasks.userTaskConfig.assignmentRule": "배정 규칙",
|
|
1078
|
+
"workflows.tasks.userTaskConfig.escalationRules": "에스컬레이션 규칙",
|
|
1079
|
+
"workflows.tasks.userTaskConfig.formSchema": "폼 스키마",
|
|
1080
|
+
"workflows.tasks.userTaskConfig.slaDuration": "SLA 기간",
|
|
1081
|
+
"workflows.tasks.userTaskConfig.title": "사용자 작업 설정",
|
|
1082
|
+
"workflows.tasks.viewTask": "작업 보기",
|
|
1083
|
+
"workflows.transitions.activities": "액티비티",
|
|
1084
|
+
"workflows.transitions.addTransition": "전환 추가",
|
|
1085
|
+
"workflows.transitions.deleteTransition": "전환 삭제",
|
|
1086
|
+
"workflows.transitions.editTransition": "전환 편집",
|
|
1087
|
+
"workflows.transitions.fromStep": "출발 단계",
|
|
1088
|
+
"workflows.transitions.plural": "전환",
|
|
1089
|
+
"workflows.transitions.postConditions": "사후 조건",
|
|
1090
|
+
"workflows.transitions.preConditions": "사전 조건",
|
|
1091
|
+
"workflows.transitions.priority": "우선순위",
|
|
1092
|
+
"workflows.transitions.singular": "전환",
|
|
1093
|
+
"workflows.transitions.title": "전환",
|
|
1094
|
+
"workflows.transitions.toStep": "도착 단계",
|
|
1095
|
+
"workflows.transitions.transitionId": "전환 ID",
|
|
1096
|
+
"workflows.transitions.transitionName": "전환 이름",
|
|
1097
|
+
"workflows.transitions.trigger": "트리거",
|
|
1098
|
+
"workflows.transitions.triggers.auto": "자동",
|
|
1099
|
+
"workflows.transitions.triggers.manual": "수동",
|
|
1100
|
+
"workflows.transitions.triggers.signal": "신호",
|
|
1101
|
+
"workflows.transitions.triggers.timer": "타이머",
|
|
1102
|
+
"workflows.triggers.add": "트리거 추가",
|
|
1103
|
+
"workflows.triggers.addCondition": "조건 추가",
|
|
1104
|
+
"workflows.triggers.addMapping": "매핑 추가",
|
|
1105
|
+
"workflows.triggers.delete.description": "이 이벤트 트리거가 영구적으로 삭제됩니다. 이 트리거로는 더 이상 워크플로우가 자동 시작되지 않습니다.",
|
|
1106
|
+
"workflows.triggers.delete.title": "이벤트 트리거를 삭제하시겠습니까?",
|
|
1107
|
+
"workflows.triggers.description": "이 워크플로우를 자동으로 시작할 이벤트를 설정하세요. 시스템에서 일치하는 이벤트가 발생하면 매핑된 컨텍스트로 새 워크플로우 인스턴스가 생성됩니다.",
|
|
1108
|
+
"workflows.triggers.dialog.create.title": "이벤트 트리거 생성",
|
|
1109
|
+
"workflows.triggers.dialog.description": "시스템 이벤트를 기준으로 이 워크플로우를 언제 자동 시작할지 설정하세요.",
|
|
1110
|
+
"workflows.triggers.dialog.edit.title": "이벤트 트리거 편집",
|
|
1111
|
+
"workflows.triggers.empty.description": "\"트리거 추가\"를 클릭하여 이 워크플로우를 자동으로 시작하는 이벤트 트리거를 생성하세요.",
|
|
1112
|
+
"workflows.triggers.empty.title": "설정된 트리거가 없습니다",
|
|
1113
|
+
"workflows.triggers.fields.contextMapping": "컨텍스트 매핑",
|
|
1114
|
+
"workflows.triggers.fields.debounceMs": "디바운스 (ms)",
|
|
1115
|
+
"workflows.triggers.fields.description": "설명",
|
|
1116
|
+
"workflows.triggers.fields.enabled": "활성화",
|
|
1117
|
+
"workflows.triggers.fields.eventPattern": "이벤트 패턴",
|
|
1118
|
+
"workflows.triggers.fields.filterConditions": "필터 조건",
|
|
1119
|
+
"workflows.triggers.fields.maxConcurrent": "최대 동시 인스턴스 수",
|
|
1120
|
+
"workflows.triggers.fields.name": "이름",
|
|
1121
|
+
"workflows.triggers.fields.priority": "우선순위",
|
|
1122
|
+
"workflows.triggers.hints.contextMapping": "이벤트 페이로드의 값을 워크플로우의 초기 컨텍스트에 매핑합니다",
|
|
1123
|
+
"workflows.triggers.hints.debounce": "잦은 재트리거를 방지하기 위한 지연 시간",
|
|
1124
|
+
"workflows.triggers.hints.eventPattern": "와일드카드로 *를 사용하세요: \"sales.orders.*\"는 모든 주문 이벤트와 일치합니다",
|
|
1125
|
+
"workflows.triggers.hints.filterConditions": "이벤트 페이로드가 이 조건들과 모두 일치할 때만 트리거됩니다",
|
|
1126
|
+
"workflows.triggers.hints.maxConcurrent": "동시에 실행되는 워크플로우 인스턴스 수를 제한합니다",
|
|
1127
|
+
"workflows.triggers.hints.priority": "우선순위가 높은 트리거가 먼저 실행됩니다",
|
|
1128
|
+
"workflows.triggers.messages.createFailed": "트리거를 생성하지 못했습니다",
|
|
1129
|
+
"workflows.triggers.messages.created": "이벤트 트리거가 생성되었습니다",
|
|
1130
|
+
"workflows.triggers.messages.deleteFailed": "트리거를 삭제하지 못했습니다",
|
|
1131
|
+
"workflows.triggers.messages.deleted": "이벤트 트리거가 삭제되었습니다",
|
|
1132
|
+
"workflows.triggers.messages.eventPatternRequired": "이벤트 패턴은 필수입니다",
|
|
1133
|
+
"workflows.triggers.messages.loadFailed": "트리거를 불러오지 못했습니다",
|
|
1134
|
+
"workflows.triggers.messages.nameRequired": "이름은 필수입니다",
|
|
1135
|
+
"workflows.triggers.messages.updateFailed": "트리거를 수정하지 못했습니다",
|
|
1136
|
+
"workflows.triggers.messages.updated": "이벤트 트리거가 수정되었습니다",
|
|
1137
|
+
"workflows.triggers.operators.contains": "포함",
|
|
1138
|
+
"workflows.triggers.operators.endsWith": "다음으로 끝남",
|
|
1139
|
+
"workflows.triggers.operators.eq": "같음",
|
|
1140
|
+
"workflows.triggers.operators.exists": "존재함",
|
|
1141
|
+
"workflows.triggers.operators.gt": "보다 큼",
|
|
1142
|
+
"workflows.triggers.operators.gte": "크거나 같음",
|
|
1143
|
+
"workflows.triggers.operators.in": "포함됨 (배열)",
|
|
1144
|
+
"workflows.triggers.operators.lt": "보다 작음",
|
|
1145
|
+
"workflows.triggers.operators.lte": "작거나 같음",
|
|
1146
|
+
"workflows.triggers.operators.neq": "같지 않음",
|
|
1147
|
+
"workflows.triggers.operators.notExists": "존재하지 않음",
|
|
1148
|
+
"workflows.triggers.operators.notIn": "포함되지 않음 (배열)",
|
|
1149
|
+
"workflows.triggers.operators.regex": "정규식 일치",
|
|
1150
|
+
"workflows.triggers.operators.startsWith": "다음으로 시작함",
|
|
1151
|
+
"workflows.triggers.placeholders.defaultValue": "default",
|
|
1152
|
+
"workflows.triggers.placeholders.description": "이 트리거가 발생해야 하는 조건을 설명하세요...",
|
|
1153
|
+
"workflows.triggers.placeholders.eventPattern": "sales.orders.updated",
|
|
1154
|
+
"workflows.triggers.placeholders.name": "주문 승인 트리거",
|
|
1155
|
+
"workflows.triggers.placeholders.orderId": "orderId",
|
|
1156
|
+
"workflows.triggers.placeholders.quickSelect": "빠른 선택...",
|
|
1157
|
+
"workflows.triggers.placeholders.sourceExpression": "id",
|
|
1158
|
+
"workflows.triggers.placeholders.status": "status",
|
|
1159
|
+
"workflows.triggers.placeholders.submitted": "submitted",
|
|
1160
|
+
"workflows.triggers.placeholders.unlimited": "무제한",
|
|
1161
|
+
"workflows.triggers.status.active": "활성",
|
|
1162
|
+
"workflows.triggers.status.disabled": "비활성",
|
|
1163
|
+
"workflows.triggers.title": "이벤트 트리거",
|
|
1164
|
+
"workflows.validation.descriptionMaxLength": "설명은 5000자 이하여야 합니다",
|
|
1165
|
+
"workflows.validation.invalidDuration": "잘못된 기간 형식입니다. ISO 8601 형식(예: PT5M, PT1H, P1D) 또는 간단한 형식(5m, 1h, 3d)을 사용하세요.",
|
|
1166
|
+
"workflows.validation.invalidFormat": "잘못된 형식입니다",
|
|
1167
|
+
"workflows.validation.invalidTransition": "잘못된 전환 설정입니다",
|
|
1168
|
+
"workflows.validation.invalidWorkflowId": "워크플로우 ID는 소문자, 숫자, 하이픈, 밑줄만 포함할 수 있습니다",
|
|
1169
|
+
"workflows.validation.maxLength": "최대 길이는 {{max}}자입니다",
|
|
1170
|
+
"workflows.validation.minLength": "최소 길이는 {{min}}자입니다",
|
|
1171
|
+
"workflows.validation.mustHaveStartEnd": "워크플로우에는 START와 END 단계가 있어야 합니다",
|
|
1172
|
+
"workflows.validation.noOrphanSteps": "모든 단계는 연결되어 있어야 합니다",
|
|
1173
|
+
"workflows.validation.required": "이 필드는 필수입니다",
|
|
1174
|
+
"workflows.validation.uniqueId": "ID는 고유해야 합니다",
|
|
1175
|
+
"workflows.validation.untilMustBeFuture": "대기 종료 시각은 미래의 날짜와 시간이어야 합니다.",
|
|
1176
|
+
"workflows.validation.workflowIdFormat": "워크플로우 ID는 소문자, 숫자, 하이픈, 밑줄만 포함해야 합니다",
|
|
1177
|
+
"workflows.validation.workflowIdMaxLength": "워크플로우 ID는 50자 이하여야 합니다",
|
|
1178
|
+
"workflows.validation.workflowIdRequired": "워크플로우 ID는 필수입니다",
|
|
1179
|
+
"workflows.validation.workflowNameMaxLength": "워크플로우 이름은 200자 이하여야 합니다",
|
|
1180
|
+
"workflows.validation.workflowNameRequired": "워크플로우 이름은 필수입니다",
|
|
1181
|
+
"workflows.visualEditor.clear": "지우기",
|
|
1182
|
+
"workflows.visualEditor.clearDescription": "모든 메타데이터와 워크플로우 캔버스가 지워집니다. 이 작업은 되돌릴 수 없습니다.",
|
|
1183
|
+
"workflows.visualEditor.clearTitle": "전체를 지우시겠습니까?",
|
|
1184
|
+
"workflows.visualEditor.clickToAdd": "단계 유형을 클릭하여 캔버스에 추가하세요",
|
|
1185
|
+
"workflows.visualEditor.clickToAddFromPalette": "팔레트에서 단계 유형을 클릭하여 캔버스에 추가하세요",
|
|
1186
|
+
"workflows.visualEditor.hideMetadata": "메타데이터 숨기기",
|
|
1187
|
+
"workflows.visualEditor.hint.addSteps": "단계 유형을 클릭하여 추가하세요",
|
|
1188
|
+
"workflows.visualEditor.hint.connectSteps": "핸들을 드래그하여 단계를 연결하세요",
|
|
1189
|
+
"workflows.visualEditor.hint.dragSteps": "단계를 드래그하여 위치를 조정하세요",
|
|
1190
|
+
"workflows.visualEditor.hint.editSteps": "단계와 전환을 클릭하여 편집하세요",
|
|
1191
|
+
"workflows.visualEditor.hint.validate": "저장 전에 검증하세요",
|
|
1192
|
+
"workflows.visualEditor.howToUse": "사용 방법:",
|
|
1193
|
+
"workflows.visualEditor.loadExample": "예제 불러오기",
|
|
1194
|
+
"workflows.visualEditor.loadExampleWorkflow": "예제 워크플로우 불러오기",
|
|
1195
|
+
"workflows.visualEditor.readOnly": "읽기 전용",
|
|
1196
|
+
"workflows.visualEditor.runTest": "테스트 실행",
|
|
1197
|
+
"workflows.visualEditor.showMetadata": "메타데이터 표시",
|
|
1198
|
+
"workflows.visualEditor.startBuilding": "워크플로우 만들기 시작",
|
|
1199
|
+
"workflows.visualEditor.stepPalette": "단계 팔레트",
|
|
1200
|
+
"workflows.visualEditor.tapToAdd": "단계 유형을 탭하여 캔버스에 추가하세요",
|
|
1201
|
+
"workflows.visualEditor.tapToAddBelow": "아래의 단계 유형을 탭하여 캔버스에 추가하세요",
|
|
1202
|
+
"workflows.visualEditor.validate": "검증",
|
|
1203
|
+
"workflows.visualEditor.workflowMetadata": "워크플로우 메타데이터"
|
|
1204
|
+
}
|