sinfactura-types 1.6.19 → 1.6.20
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/userActivity.d.ts +5 -1
- package/dist/userActivity.js +2 -1
- package/package.json +1 -1
package/dist/userActivity.d.ts
CHANGED
|
@@ -31,6 +31,10 @@ declare global {
|
|
|
31
31
|
interface TwoFactorDisabledEvent extends UserActivityEventBase {
|
|
32
32
|
event: 'Two-Factor Disabled';
|
|
33
33
|
}
|
|
34
|
+
interface TwoFactorResetEvent extends UserActivityEventBase {
|
|
35
|
+
event: 'Two-Factor Reset';
|
|
36
|
+
target_user_id: string;
|
|
37
|
+
}
|
|
34
38
|
interface StorePaletteChangedEvent extends UserActivityEventBase {
|
|
35
39
|
event: 'Store Palette Changed';
|
|
36
40
|
before: Record<string, unknown>;
|
|
@@ -319,7 +323,7 @@ declare global {
|
|
|
319
323
|
event: 'Impersonation UI Ended';
|
|
320
324
|
target_store_id: string;
|
|
321
325
|
}
|
|
322
|
-
type UserActivityEvent = UserLoggedInEvent | UserLoggedOutEvent | UserPasswordChangedEvent | UserSuspendedEvent | TwoFactorEnrolledEvent | TwoFactorDisabledEvent | StorePaletteChangedEvent | StoreSettingsUpdatedEvent | PlanChangedEvent | InvoiceCreatedEvent | OrderCreatedEvent | OrderCancelledEvent | ProductPriceChangedEvent | CustomerCreatedEvent | CustomerEditedEvent | CashDrawerOpenedEvent | CashDrawerClosedEvent | TenantImpersonatedEvent | SecretRotatedEvent | UserCreatedEvent | UserUpdatedEvent | ProductCreatedEvent | ProductUpdatedEvent | StockIncomeCreatedEvent | CategoryCreatedEvent | CategoryUpdatedEvent | BrandCreatedEvent | BrandUpdatedEvent | SupplierCreatedEvent | SupplierUpdatedEvent | SupplierInvoiceCreatedEvent | SupplierAccountCreatedEvent | SupplierAccountUpdatedEvent | AccountCreatedEvent | AccountDeletedEvent | BasketUpdatedEvent | BasketDeletedEvent | CashDrawerMovementEvent | PaymentCreatedEvent | PaymentLinkedEvent | PaymentUnlinkedEvent | PaymentLinkageUpdatedEvent | NotificationReadEvent | LogDeletedEvent | PlanCreatedEvent | StoreMaintenanceToggledEvent | PlatformMaintenanceToggledEvent | TenantCreatedEvent | LiteralUpdatedEvent | SupportTicketCreatedEvent | SupportTicketUpdatedEvent | AuditTrailViewedEvent | ReportViewedEvent | CustomerPiiViewedEvent | CashDrawerUiOpenedEvent | CashDrawerUiClosedEvent | ExportInitiatedEvent | ImpersonationUiStartedEvent | ImpersonationUiEndedEvent;
|
|
326
|
+
type UserActivityEvent = UserLoggedInEvent | UserLoggedOutEvent | UserPasswordChangedEvent | UserSuspendedEvent | TwoFactorEnrolledEvent | TwoFactorDisabledEvent | TwoFactorResetEvent | StorePaletteChangedEvent | StoreSettingsUpdatedEvent | PlanChangedEvent | InvoiceCreatedEvent | OrderCreatedEvent | OrderCancelledEvent | ProductPriceChangedEvent | CustomerCreatedEvent | CustomerEditedEvent | CashDrawerOpenedEvent | CashDrawerClosedEvent | TenantImpersonatedEvent | SecretRotatedEvent | UserCreatedEvent | UserUpdatedEvent | ProductCreatedEvent | ProductUpdatedEvent | StockIncomeCreatedEvent | CategoryCreatedEvent | CategoryUpdatedEvent | BrandCreatedEvent | BrandUpdatedEvent | SupplierCreatedEvent | SupplierUpdatedEvent | SupplierInvoiceCreatedEvent | SupplierAccountCreatedEvent | SupplierAccountUpdatedEvent | AccountCreatedEvent | AccountDeletedEvent | BasketUpdatedEvent | BasketDeletedEvent | CashDrawerMovementEvent | PaymentCreatedEvent | PaymentLinkedEvent | PaymentUnlinkedEvent | PaymentLinkageUpdatedEvent | NotificationReadEvent | LogDeletedEvent | PlanCreatedEvent | StoreMaintenanceToggledEvent | PlatformMaintenanceToggledEvent | TenantCreatedEvent | LiteralUpdatedEvent | SupportTicketCreatedEvent | SupportTicketUpdatedEvent | AuditTrailViewedEvent | ReportViewedEvent | CustomerPiiViewedEvent | CashDrawerUiOpenedEvent | CashDrawerUiClosedEvent | ExportInitiatedEvent | ImpersonationUiStartedEvent | ImpersonationUiEndedEvent;
|
|
323
327
|
}
|
|
324
328
|
/**
|
|
325
329
|
* Canonical whitelist of UI-only `UserActivityEvent` variant names — the 8
|
package/dist/userActivity.js
CHANGED
|
@@ -14,11 +14,12 @@
|
|
|
14
14
|
// - Erasure: append-only / anti-erasure per Ley 25.326 audit-trail exemption
|
|
15
15
|
// - Ingest: synchronous REST-handler helper (WS ingest explicitly disallowed)
|
|
16
16
|
//
|
|
17
|
-
//
|
|
17
|
+
// 60 variants:
|
|
18
18
|
// - 1.6.11 (Phase 1, 17 variants) — MVP wire-ins covering the hot paths
|
|
19
19
|
// - 1.6.12 (Phase 2, +32 variants) — full mutating admin-handler coverage
|
|
20
20
|
// - 1.6.13 (Phase 3, +8 UI-only variants) — FE companion (app#1642, api#1247)
|
|
21
21
|
// - 1.6.18 (+2 variants) — TOTP 2FA enroll/disable lifecycle (types#68, api#636)
|
|
22
|
+
// - 1.6.20 (+1 variant) — operator 2FA reset, target_user_id (api#1335)
|
|
22
23
|
/**
|
|
23
24
|
* Canonical whitelist of UI-only `UserActivityEvent` variant names — the 8
|
|
24
25
|
* Phase 3 verbs shipped in 1.6.13 (types#74). Imported by the api side
|