@open-mercato/core 0.4.6-develop-c2b70de148 → 0.4.6-develop-03a1e82e85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/modules/auth/frontend/login.js +13 -2
- package/dist/modules/auth/frontend/login.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductCategorizeSection.js +1 -0
- package/dist/modules/catalog/components/products/ProductCategorizeSection.js.map +2 -2
- package/dist/modules/data_sync/lib/sync-engine.js +8 -2
- package/dist/modules/data_sync/lib/sync-engine.js.map +2 -2
- package/dist/modules/dictionaries/components/DictionaryEntrySelect.js +1 -1
- package/dist/modules/dictionaries/components/DictionaryEntrySelect.js.map +1 -1
- package/dist/modules/feature_toggles/components/formConfig.js +1 -0
- package/dist/modules/feature_toggles/components/formConfig.js.map +2 -2
- package/dist/modules/feature_toggles/components/overrideFormConfig.js +1 -0
- package/dist/modules/feature_toggles/components/overrideFormConfig.js.map +2 -2
- package/dist/modules/integrations/backend/integrations/filters.js +40 -0
- package/dist/modules/integrations/backend/integrations/filters.js.map +7 -0
- package/dist/modules/integrations/backend/integrations/page.js +34 -22
- package/dist/modules/integrations/backend/integrations/page.js.map +2 -2
- package/package.json +2 -2
- package/src/modules/auth/frontend/login-injection.ts +2 -0
- package/src/modules/auth/frontend/login.tsx +15 -2
- package/src/modules/catalog/components/products/ProductCategorizeSection.tsx +1 -0
- package/src/modules/data_sync/lib/sync-engine.ts +8 -2
- package/src/modules/dictionaries/components/DictionaryEntrySelect.tsx +1 -1
- package/src/modules/feature_toggles/components/formConfig.tsx +1 -0
- package/src/modules/feature_toggles/components/overrideFormConfig.tsx +1 -0
- package/src/modules/integrations/backend/integrations/filters.ts +39 -0
- package/src/modules/integrations/backend/integrations/page.tsx +51 -37
- package/src/modules/integrations/i18n/de.json +88 -11
- package/src/modules/integrations/i18n/en.json +79 -2
- package/src/modules/integrations/i18n/es.json +96 -19
- package/src/modules/integrations/i18n/pl.json +105 -28
|
@@ -1,19 +1,95 @@
|
|
|
1
1
|
{
|
|
2
|
+
"example.mutationLifecycle.description": "Validation page for mutation guards, sync event subscribers, client-side event filtering, and command interceptors.",
|
|
3
|
+
"example.mutationLifecycle.hintHeading": "What should be visible and how it should work",
|
|
4
|
+
"example.mutationLifecycle.m1.createFailed": "Guard probe failed: expected 201, got {value}.",
|
|
5
|
+
"example.mutationLifecycle.m1.description": "Create a todo via the CRUD pipeline to verify the mutation guard registry evaluates the `example.todo-limit` guard on POST.",
|
|
6
|
+
"example.mutationLifecycle.m1.hint1": "1. Guard `example.todo-limit` targets `example.todo` on `create` operations with priority 50.",
|
|
7
|
+
"example.mutationLifecycle.m1.hint2": "2. Guard validates `organizationId` presence — creation fails with 422 if missing.",
|
|
8
|
+
"example.mutationLifecycle.m1.hint3": "3. Multiple guards run by priority order; first rejection stops the pipeline.",
|
|
9
|
+
"example.mutationLifecycle.m1.hint4": "4. Legacy `crudMutationGuardService` is automatically bridged as a guard with priority 0.",
|
|
10
|
+
"example.mutationLifecycle.m1.run": "Run guard probe",
|
|
11
|
+
"example.mutationLifecycle.m1.title": "Phase m1 — Mutation Guard Registry",
|
|
12
|
+
"example.mutationLifecycle.m2.createFailed": "Could not create todo for sync subscriber probe.",
|
|
13
|
+
"example.mutationLifecycle.m2.description": "Run a multi-step probe: create a todo (verify auto-default-priority), mark as done then try to revert (verify prevent-uncomplete blocks with 422), and delete (verify audit-delete fires).",
|
|
14
|
+
"example.mutationLifecycle.m2.hint1": "1. `auto-default-priority`: Injects `priority: 'normal'` when creating a todo without explicit priority (sync before-create).",
|
|
15
|
+
"example.mutationLifecycle.m2.hint2": "2. `prevent-uncomplete`: Blocks reverting completed todos to pending with 422 (sync before-update).",
|
|
16
|
+
"example.mutationLifecycle.m2.hint3": "3. `audit-delete`: Logs deletion audit trail to server console (sync after-delete, non-blocking).",
|
|
17
|
+
"example.mutationLifecycle.m2.hint4": "4. Sync subscribers run inside the CRUD pipeline, before/after the actual mutation — unlike async subscribers which run post-commit.",
|
|
18
|
+
"example.mutationLifecycle.m2.partial": "One or more sync subscriber probes failed. Review rows below.",
|
|
19
|
+
"example.mutationLifecycle.m2.probe.auditDelete.error": "Expected 200, got {value}.",
|
|
20
|
+
"example.mutationLifecycle.m2.probe.auditDelete.label": "audit-delete (after-delete)",
|
|
21
|
+
"example.mutationLifecycle.m2.probe.auditDelete.ok": "Todo deleted (200). Sync after-event example.todo.deleted fired — audit-delete subscriber logged to server console.",
|
|
22
|
+
"example.mutationLifecycle.m2.probe.defaultPriority.error": "Expected 201, got {value}.",
|
|
23
|
+
"example.mutationLifecycle.m2.probe.defaultPriority.label": "auto-default-priority (before-create)",
|
|
24
|
+
"example.mutationLifecycle.m2.probe.defaultPriority.ok": "Todo created (201). Sync before-event example.todo.creating fired — auto-default-priority subscriber injects priority if absent.",
|
|
25
|
+
"example.mutationLifecycle.m2.probe.preventUncomplete.error": "Expected 422 (blocked), got {value}.",
|
|
26
|
+
"example.mutationLifecycle.m2.probe.preventUncomplete.label": "prevent-uncomplete (before-update)",
|
|
27
|
+
"example.mutationLifecycle.m2.probe.preventUncomplete.markDoneFailed": "Failed to mark todo as done: status {value}.",
|
|
28
|
+
"example.mutationLifecycle.m2.probe.preventUncomplete.ok": "Revert blocked (422). Sync before-event example.todo.updating fired — prevent-uncomplete subscriber rejected the operation.",
|
|
29
|
+
"example.mutationLifecycle.m2.probe.skipped": "Skipped — no todo was created in probe 1.",
|
|
30
|
+
"example.mutationLifecycle.m2.run": "Run sync subscriber probe",
|
|
31
|
+
"example.mutationLifecycle.m2.title": "Phase m2 — Sync Event Subscribers",
|
|
32
|
+
"example.mutationLifecycle.m3.description": "Widget injection event handlers can now declare an operation filter to skip events for specific CRUD operations.",
|
|
33
|
+
"example.mutationLifecycle.m3.hint1": "1. Widgets can declare `eventHandlers.filter.operations` to skip specific CRUD operations (e.g., only fire on `update`).",
|
|
34
|
+
"example.mutationLifecycle.m3.hint2": "2. CrudForm now passes `operation` ('create' or 'update') in the injection context.",
|
|
35
|
+
"example.mutationLifecycle.m3.hint3": "3. Widgets without a filter continue to fire for all operations (backward compatible).",
|
|
36
|
+
"example.mutationLifecycle.m3.hint4": "4. Type: `WidgetInjectionEventFilter = { operations?: ('create' | 'update' | 'delete')[] }`",
|
|
37
|
+
"example.mutationLifecycle.m3.note": "The filter is a type-level extension. See Phase G page for CrudForm injection demo.",
|
|
38
|
+
"example.mutationLifecycle.m3.openPhaseG": "Open Phase G — CrudForm injection",
|
|
39
|
+
"example.mutationLifecycle.m3.title": "Phase m3 — Client-Side Event Filtering",
|
|
40
|
+
"example.mutationLifecycle.m4.description": "The `example.audit-logging` interceptor wraps all `customers.*` command bus operations with timing metadata.",
|
|
41
|
+
"example.mutationLifecycle.m4.hint1": "1. `example.audit-logging` intercepts all `customers.*` commands (wildcard pattern).",
|
|
42
|
+
"example.mutationLifecycle.m4.hint2": "2. `beforeExecute` stores `auditStartedAt` timestamp in metadata.",
|
|
43
|
+
"example.mutationLifecycle.m4.hint3": "3. `afterExecute` reads metadata and logs: `[example:audit] Command {id} completed in {ms}ms`.",
|
|
44
|
+
"example.mutationLifecycle.m4.hint4": "4. Pattern matching supports `*` (all), exact ID, and `prefix.*` (namespace wildcard).",
|
|
45
|
+
"example.mutationLifecycle.m4.hint5": "5. Interceptors run on both `execute()` and `undo()` code paths.",
|
|
46
|
+
"example.mutationLifecycle.m4.note": "Create or edit a customer, then check server console for the audit log entry.",
|
|
47
|
+
"example.mutationLifecycle.m4.openCustomers": "Open customers",
|
|
48
|
+
"example.mutationLifecycle.m4.title": "Phase m4 — Command Interceptors",
|
|
49
|
+
"example.mutationLifecycle.title": "UMES Phase M — Mutation Lifecycle",
|
|
50
|
+
"example.umes.queryExtensions.description": "Validation page for Phase N query engine extensions: enricher opt-in, surface-aware registry, sync query events, and scope guard re-application.",
|
|
51
|
+
"example.umes.queryExtensions.enrichers.description": "Registers three enrichers (API-only, query-enabled for all engines, basic-only) and probes `getEnrichersForEntity` with different surface selectors.",
|
|
52
|
+
"example.umes.queryExtensions.enrichers.hint1": "1. No selector / `api-response` surface: returns all 3 enrichers (backward compatible).",
|
|
53
|
+
"example.umes.queryExtensions.enrichers.hint2": "2. `query-engine` surface (no engine filter): returns 2 enrichers (query-enabled + basic-only).",
|
|
54
|
+
"example.umes.queryExtensions.enrichers.hint3": "3. `query-engine` + `basic` engine: returns 2 enrichers (query-enabled defaults to both, basic-only matches).",
|
|
55
|
+
"example.umes.queryExtensions.enrichers.hint4": "4. `query-engine` + `hybrid` engine: returns 1 enricher (only query-enabled, basic-only excluded).",
|
|
56
|
+
"example.umes.queryExtensions.enrichers.run": "Run enricher registry probe",
|
|
57
|
+
"example.umes.queryExtensions.enrichers.title": "N.1 Surface-Aware Enricher Registry",
|
|
58
|
+
"example.umes.queryExtensions.entityIds.description": "Validates `entityIdToEventEntity` which converts query engine format (`module:entity`) to event format (`module.entity`).",
|
|
59
|
+
"example.umes.queryExtensions.entityIds.hint1": "1. `customers:person` should convert to `customers.person`.",
|
|
60
|
+
"example.umes.queryExtensions.entityIds.hint2": "2. `catalog:product:variant` should convert to `catalog.product.variant` (multiple colons).",
|
|
61
|
+
"example.umes.queryExtensions.entityIds.hint3": "3. All conversions should show `ok: true`.",
|
|
62
|
+
"example.umes.queryExtensions.entityIds.run": "Run entity ID conversion probe",
|
|
63
|
+
"example.umes.queryExtensions.entityIds.title": "N.4 Entity ID Conversion",
|
|
64
|
+
"example.umes.queryExtensions.hintHeading": "What should be visible and how it should work",
|
|
65
|
+
"example.umes.queryExtensions.scopeGuards.description": "Demonstrates that `reapplyScopeGuards` restores tenant/org constraints after subscriber modifications while preserving other query options.",
|
|
66
|
+
"example.umes.queryExtensions.scopeGuards.hint1": "1. Tampered tenantId/organizationId should be restored to original values.",
|
|
67
|
+
"example.umes.queryExtensions.scopeGuards.hint2": "2. Non-scope fields (filters, withDeleted) should remain unchanged.",
|
|
68
|
+
"example.umes.queryExtensions.scopeGuards.hint3": "3. This ensures subscribers cannot bypass multi-tenant isolation.",
|
|
69
|
+
"example.umes.queryExtensions.scopeGuards.run": "Run scope guard probe",
|
|
70
|
+
"example.umes.queryExtensions.scopeGuards.title": "N.3 Scope Guard Re-application",
|
|
71
|
+
"example.umes.queryExtensions.subscribers.description": "Registers three sync subscribers (querying, queried, wildcard) and probes `collectQuerySubscribers` with different event IDs.",
|
|
72
|
+
"example.umes.queryExtensions.subscribers.hint1": "1. `example.todo.querying` should match 2 subscribers (exact + wildcard `example.*.querying`).",
|
|
73
|
+
"example.umes.queryExtensions.subscribers.hint2": "2. `example.todo.queried` should match 1 subscriber (exact match only).",
|
|
74
|
+
"example.umes.queryExtensions.subscribers.hint3": "3. `customers.person.querying` should match 0 subscribers (no cross-entity leakage).",
|
|
75
|
+
"example.umes.queryExtensions.subscribers.run": "Run subscriber collection probe",
|
|
76
|
+
"example.umes.queryExtensions.subscribers.title": "N.2 Sync Query Event Subscribers",
|
|
77
|
+
"example.umes.queryExtensions.title": "UMES Phase N — Query Engine Extensibility",
|
|
2
78
|
"integrations.bundle.configureIntegration": "Konfiguruj",
|
|
3
79
|
"integrations.bundle.integrationToggles": "Integracje",
|
|
4
|
-
"integrations.bundle.sharedCredentials": "
|
|
80
|
+
"integrations.bundle.sharedCredentials": "Współdzielone dane",
|
|
5
81
|
"integrations.bundle.title": "Pakiet",
|
|
6
|
-
"integrations.detail.back": "
|
|
7
|
-
"integrations.detail.credentials.bundleShared": "
|
|
82
|
+
"integrations.detail.back": "Powrót do integracji",
|
|
83
|
+
"integrations.detail.credentials.bundleShared": "Współdzielone dane z pakietu: {bundle}",
|
|
8
84
|
"integrations.detail.credentials.notConfigured": "Brak skonfigurowanych danych",
|
|
9
85
|
"integrations.detail.credentials.save": "Zapisz dane",
|
|
10
|
-
"integrations.detail.credentials.saveError": "Nie
|
|
86
|
+
"integrations.detail.credentials.saveError": "Nie udało się zapisać danych",
|
|
11
87
|
"integrations.detail.credentials.saved": "Dane zapisane",
|
|
12
|
-
"integrations.detail.disable": "
|
|
13
|
-
"integrations.detail.enable": "
|
|
14
|
-
"integrations.detail.health.check": "
|
|
15
|
-
"integrations.detail.health.checkError": "Sprawdzenie stanu nie
|
|
16
|
-
"integrations.detail.health.checking": "Sprawdzanie
|
|
88
|
+
"integrations.detail.disable": "Wyłącz",
|
|
89
|
+
"integrations.detail.enable": "Włącz",
|
|
90
|
+
"integrations.detail.health.check": "Sprawdź",
|
|
91
|
+
"integrations.detail.health.checkError": "Sprawdzenie stanu nie powiodło się",
|
|
92
|
+
"integrations.detail.health.checking": "Sprawdzanie…",
|
|
17
93
|
"integrations.detail.health.degraded": "Pogorszony",
|
|
18
94
|
"integrations.detail.health.healthy": "Zdrowy",
|
|
19
95
|
"integrations.detail.health.lastChecked": "Ostatnie sprawdzenie: {date}",
|
|
@@ -21,19 +97,19 @@
|
|
|
21
97
|
"integrations.detail.health.title": "Stan zdrowia",
|
|
22
98
|
"integrations.detail.health.unhealthy": "Niezdrowy",
|
|
23
99
|
"integrations.detail.health.unknown": "Nieznany",
|
|
24
|
-
"integrations.detail.loadError": "Nie
|
|
100
|
+
"integrations.detail.loadError": "Nie udało się załadować integracji",
|
|
25
101
|
"integrations.detail.logs.columns.level": "Poziom",
|
|
26
|
-
"integrations.detail.logs.columns.message": "
|
|
102
|
+
"integrations.detail.logs.columns.message": "Wiadomość",
|
|
27
103
|
"integrations.detail.logs.columns.time": "Czas",
|
|
28
|
-
"integrations.detail.logs.empty": "Brak
|
|
104
|
+
"integrations.detail.logs.empty": "Brak wpisów w logach",
|
|
29
105
|
"integrations.detail.logs.level.all": "Wszystkie poziomy",
|
|
30
|
-
"integrations.detail.logs.level.error": "
|
|
106
|
+
"integrations.detail.logs.level.error": "Błąd",
|
|
31
107
|
"integrations.detail.logs.level.info": "Info",
|
|
32
|
-
"integrations.detail.logs.level.warn": "
|
|
108
|
+
"integrations.detail.logs.level.warn": "Ostrzeżenie",
|
|
33
109
|
"integrations.detail.logs.title": "Logi operacji",
|
|
34
|
-
"integrations.detail.stateError": "Nie
|
|
110
|
+
"integrations.detail.stateError": "Nie udało się zaktualizować stanu",
|
|
35
111
|
"integrations.detail.stateUpdated": "Stan integracji zaktualizowany",
|
|
36
|
-
"integrations.detail.tabs.credentials": "Dane
|
|
112
|
+
"integrations.detail.tabs.credentials": "Dane uwierzytelniające",
|
|
37
113
|
"integrations.detail.tabs.health": "Stan",
|
|
38
114
|
"integrations.detail.tabs.logs": "Logi",
|
|
39
115
|
"integrations.detail.tabs.version": "Wersja",
|
|
@@ -41,30 +117,31 @@
|
|
|
41
117
|
"integrations.detail.version.current": "Aktualna wersja",
|
|
42
118
|
"integrations.detail.version.deprecated": "Wycofana",
|
|
43
119
|
"integrations.detail.version.experimental": "Eksperymentalna",
|
|
44
|
-
"integrations.detail.version.noVersions": "Ta integracja nie
|
|
45
|
-
"integrations.detail.version.saveError": "Nie
|
|
120
|
+
"integrations.detail.version.noVersions": "Ta integracja nie używa wersjonowania API",
|
|
121
|
+
"integrations.detail.version.saveError": "Nie udało się zaktualizować wersji",
|
|
46
122
|
"integrations.detail.version.saved": "Wersja API zaktualizowana",
|
|
47
|
-
"integrations.detail.version.select": "Wybierz
|
|
123
|
+
"integrations.detail.version.select": "Wybierz wersję",
|
|
48
124
|
"integrations.detail.version.stable": "Stabilna",
|
|
49
125
|
"integrations.detail.version.sunsetAt": "Wygasa: {date}",
|
|
50
126
|
"integrations.marketplace.categories.all": "Wszystkie",
|
|
51
127
|
"integrations.marketplace.categories.communication": "Komunikacja",
|
|
52
128
|
"integrations.marketplace.categories.data_sync": "Synchronizacja",
|
|
53
129
|
"integrations.marketplace.categories.notification": "Powiadomienia",
|
|
54
|
-
"integrations.marketplace.categories.payment": "
|
|
55
|
-
"integrations.marketplace.categories.shipping": "
|
|
130
|
+
"integrations.marketplace.categories.payment": "Płatności",
|
|
131
|
+
"integrations.marketplace.categories.shipping": "Wysyłka",
|
|
56
132
|
"integrations.marketplace.categories.storage": "Przechowywanie",
|
|
57
133
|
"integrations.marketplace.categories.webhook": "Webhook",
|
|
58
134
|
"integrations.marketplace.configure": "Konfiguruj",
|
|
59
|
-
"integrations.marketplace.description": "
|
|
60
|
-
"integrations.marketplace.disableAll": "
|
|
61
|
-
"integrations.marketplace.disabled": "
|
|
62
|
-
"integrations.marketplace.enableAll": "
|
|
63
|
-
"integrations.marketplace.enabled": "
|
|
135
|
+
"integrations.marketplace.description": "Połącz zewnętrzne usługi, zarządzaj danymi uwierzytelniającymi i monitoruj stan integracji.",
|
|
136
|
+
"integrations.marketplace.disableAll": "Wyłącz wszystkie",
|
|
137
|
+
"integrations.marketplace.disabled": "Wyłączona",
|
|
138
|
+
"integrations.marketplace.enableAll": "Włącz wszystkie",
|
|
139
|
+
"integrations.marketplace.enabled": "Włączona",
|
|
140
|
+
"integrations.marketplace.filters.category": "Category",
|
|
64
141
|
"integrations.marketplace.integrations": "{count} integracji",
|
|
65
|
-
"integrations.marketplace.loadError": "Nie
|
|
142
|
+
"integrations.marketplace.loadError": "Nie udało się załadować integracji",
|
|
66
143
|
"integrations.marketplace.noResults": "Nie znaleziono integracji",
|
|
67
|
-
"integrations.marketplace.search": "Szukaj integracji
|
|
144
|
+
"integrations.marketplace.search": "Szukaj integracji…",
|
|
68
145
|
"integrations.marketplace.title": "Integracje",
|
|
69
146
|
"integrations.nav.title": "Integracje"
|
|
70
147
|
}
|