win-portal-auth-sdk 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/api/auth.api.d.ts +14 -3
- package/dist/client/api/auth.api.d.ts.map +1 -1
- package/dist/client/api/auth.api.js +12 -4
- package/dist/client/auth-client.d.ts +16 -5
- package/dist/client/auth-client.d.ts.map +1 -1
- package/dist/client/auth-client.js +70 -44
- package/dist/middleware/express.middleware.d.ts +1 -1
- package/dist/middleware/express.middleware.d.ts.map +1 -1
- package/dist/middleware/express.middleware.js +19 -92
- package/dist/middleware/nestjs.guard.d.ts.map +1 -1
- package/dist/middleware/nestjs.guard.js +24 -114
- package/dist/middleware/shared/auth-service.d.ts +36 -0
- package/dist/middleware/shared/auth-service.d.ts.map +1 -0
- package/dist/middleware/shared/auth-service.js +98 -0
- package/dist/middleware/shared/index.d.ts +7 -0
- package/dist/middleware/shared/index.d.ts.map +1 -0
- package/dist/middleware/shared/index.js +22 -0
- package/dist/middleware/shared/token-extractor.d.ts +15 -0
- package/dist/middleware/shared/token-extractor.d.ts.map +1 -0
- package/dist/middleware/shared/token-extractor.js +47 -0
- package/dist/middleware/shared/user-cache.d.ts +51 -0
- package/dist/middleware/shared/user-cache.d.ts.map +1 -0
- package/dist/middleware/shared/user-cache.js +81 -0
- package/dist/types/event-log.types.d.ts +103 -1
- package/dist/types/event-log.types.d.ts.map +1 -1
- package/dist/types/event-log.types.js +5 -1
- package/dist/types/index.d.ts +30 -29
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +7 -3
- package/dist/types/system-config.types.d.ts +2 -5
- package/dist/types/system-config.types.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/types/event-log.interfaces.d.ts +0 -108
- package/dist/types/event-log.interfaces.d.ts.map +0 -1
- package/dist/types/event-log.interfaces.js +0 -7
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* Event Log
|
|
3
|
+
* Event Log Types
|
|
4
4
|
*
|
|
5
|
+
* Complete type definitions for event logging
|
|
5
6
|
* Copied from @win-portal/shared for SDK independence
|
|
6
7
|
*/
|
|
7
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
9
|
exports.ActorType = exports.EventRiskLevel = exports.EventCategory = exports.EventOutcome = exports.EventSeverity = void 0;
|
|
10
|
+
// ============================================================================
|
|
11
|
+
// Enums
|
|
12
|
+
// ============================================================================
|
|
9
13
|
/**
|
|
10
14
|
* Event severity levels
|
|
11
15
|
*/
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Shared Types for Auth SDK
|
|
3
|
+
*
|
|
4
|
+
* Central type definitions for the authentication SDK
|
|
3
5
|
*/
|
|
4
6
|
/**
|
|
5
7
|
* API Response wrapper - matches @win-portal/shared ApiResponse
|
|
@@ -14,6 +16,33 @@ export interface ApiResponse<T> {
|
|
|
14
16
|
[key: string]: any;
|
|
15
17
|
};
|
|
16
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* Auth SDK Configuration
|
|
21
|
+
*/
|
|
22
|
+
export interface AuthSdkConfig {
|
|
23
|
+
apiKey: string;
|
|
24
|
+
baseURL?: string;
|
|
25
|
+
apiKeyHeader?: string;
|
|
26
|
+
timeout?: number;
|
|
27
|
+
/**
|
|
28
|
+
* Advanced configuration options
|
|
29
|
+
* สำหรับปรับแต่ง internal behavior ของ SDK
|
|
30
|
+
*/
|
|
31
|
+
advanced?: {
|
|
32
|
+
/**
|
|
33
|
+
* Activity throttle time (milliseconds)
|
|
34
|
+
* ระยะเวลาที่ throttle activity handler เพื่อลด CPU usage
|
|
35
|
+
* Default: 1000ms (1 second)
|
|
36
|
+
*/
|
|
37
|
+
activityThrottleMs?: number;
|
|
38
|
+
/**
|
|
39
|
+
* Refresh token timeout (milliseconds)
|
|
40
|
+
* ระยะเวลาที่รอ refresh token request ก่อน timeout
|
|
41
|
+
* Default: 5000ms (5 seconds)
|
|
42
|
+
*/
|
|
43
|
+
refreshTimeoutMs?: number;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
17
46
|
/**
|
|
18
47
|
* API Key Context - ข้อมูลจาก API Key validation
|
|
19
48
|
*/
|
|
@@ -59,33 +88,6 @@ export interface ApiKeyValidationResponse {
|
|
|
59
88
|
apiKey?: ApiKeyRecordContext;
|
|
60
89
|
error?: string;
|
|
61
90
|
}
|
|
62
|
-
/**
|
|
63
|
-
* Auth SDK Configuration
|
|
64
|
-
*/
|
|
65
|
-
export interface AuthSdkConfig {
|
|
66
|
-
apiKey: string;
|
|
67
|
-
baseURL?: string;
|
|
68
|
-
apiKeyHeader?: string;
|
|
69
|
-
timeout?: number;
|
|
70
|
-
/**
|
|
71
|
-
* Advanced configuration options
|
|
72
|
-
* สำหรับปรับแต่ง internal behavior ของ SDK
|
|
73
|
-
*/
|
|
74
|
-
advanced?: {
|
|
75
|
-
/**
|
|
76
|
-
* Activity throttle time (milliseconds)
|
|
77
|
-
* ระยะเวลาที่ throttle activity handler เพื่อลด CPU usage
|
|
78
|
-
* Default: 1000ms (1 second)
|
|
79
|
-
*/
|
|
80
|
-
activityThrottleMs?: number;
|
|
81
|
-
/**
|
|
82
|
-
* Refresh token timeout (milliseconds)
|
|
83
|
-
* ระยะเวลาที่รอ refresh token request ก่อน timeout
|
|
84
|
-
* Default: 5000ms (5 seconds)
|
|
85
|
-
*/
|
|
86
|
-
refreshTimeoutMs?: number;
|
|
87
|
-
};
|
|
88
|
-
}
|
|
89
91
|
/**
|
|
90
92
|
* NestJS Module Configuration
|
|
91
93
|
*/
|
|
@@ -94,9 +96,8 @@ export interface ApiKeyAuthModuleConfig {
|
|
|
94
96
|
validationEndpoint: string;
|
|
95
97
|
cacheTimeout?: number;
|
|
96
98
|
}
|
|
97
|
-
export * from './event-log.types';
|
|
98
|
-
export * from './event-log.interfaces';
|
|
99
99
|
export * from './auth.types';
|
|
100
|
+
export * from './event-log.types';
|
|
100
101
|
export * from './file.types';
|
|
101
102
|
export * from './system-config.types';
|
|
102
103
|
export * from './todo.types';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAMH;;GAEG;AACH,MAAM,WAAW,WAAW,CAAC,CAAC;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,CAAC,CAAC;IACT,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,CAAC,EAAE;QACL,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;OAGG;IACH,QAAQ,CAAC,EAAE;QACT;;;;WAIG;QACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;QAC5B;;;;WAIG;QACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;KAC3B,CAAC;CACH;AAMD;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,WAAW,EAAE,kBAAkB,CAAC;IAChC,YAAY,EAAE,mBAAmB,CAAC;CACnC;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IAGf,iBAAiB,EAAE,OAAO,CAAC;IAG3B,qBAAqB,EAAE,MAAM,CAAC;IAG9B,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IAGxB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,aAAa,GAAG,SAAS,GAAG,YAAY,CAAC;IAGtD,SAAS,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,IAAI,CAAC;IAGlB,YAAY,CAAC,EAAE,IAAI,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IAGpB,UAAU,EAAE,IAAI,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC,KAAK,EAAE,OAAO,CAAC;IACf,WAAW,CAAC,EAAE,kBAAkB,CAAC;IACjC,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAOD,cAAc,cAAc,CAAC;AAG7B,cAAc,mBAAmB,CAAC;AAGlC,cAAc,cAAc,CAAC;AAG7B,cAAc,uBAAuB,CAAC;AAGtC,cAAc,cAAc,CAAC"}
|
package/dist/types/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
3
|
* Shared Types for Auth SDK
|
|
4
|
+
*
|
|
5
|
+
* Central type definitions for the authentication SDK
|
|
4
6
|
*/
|
|
5
7
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
8
|
if (k2 === undefined) k2 = k;
|
|
@@ -17,11 +19,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17
19
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
18
20
|
};
|
|
19
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
+
// ============================================================================
|
|
23
|
+
// Domain Types
|
|
24
|
+
// ============================================================================
|
|
25
|
+
// Authentication Types
|
|
26
|
+
__exportStar(require("./auth.types"), exports);
|
|
20
27
|
// Event Log Types
|
|
21
28
|
__exportStar(require("./event-log.types"), exports);
|
|
22
|
-
__exportStar(require("./event-log.interfaces"), exports);
|
|
23
|
-
// Auth Types
|
|
24
|
-
__exportStar(require("./auth.types"), exports);
|
|
25
29
|
// File Types
|
|
26
30
|
__exportStar(require("./file.types"), exports);
|
|
27
31
|
// System Config Types
|
|
@@ -50,15 +50,12 @@ export interface SecurityJwtConfig {
|
|
|
50
50
|
export interface SessionManagementConfig {
|
|
51
51
|
inactivity: {
|
|
52
52
|
enabled: boolean;
|
|
53
|
-
|
|
54
|
-
timeout_unit: 'minutes' | 'hours' | 'days';
|
|
53
|
+
timeout_minutes: number;
|
|
55
54
|
warning_minutes: number;
|
|
56
|
-
extend_on_activity: boolean;
|
|
57
55
|
};
|
|
58
56
|
lifetime: {
|
|
59
57
|
enabled: boolean;
|
|
60
|
-
|
|
61
|
-
max_unit: 'minutes' | 'hours' | 'days';
|
|
58
|
+
max_lifetime_days: number;
|
|
62
59
|
};
|
|
63
60
|
concurrent: {
|
|
64
61
|
max_sessions: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"system-config.types.d.ts","sourceRoot":"","sources":["../../src/types/system-config.types.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,GAAG,CAAC;IACX,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,OAAO,CAAC;IAC9D,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,EAAE,OAAO,CAAC;IACtB,SAAS,EAAE,OAAO,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;GAGG;AACH,MAAM,MAAM,sBAAsB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAEzD;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB,2BAA2B,EAAE,MAAM,CAAC;IACpC,yBAAyB,EAAE,MAAM,CAAC;IAClC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,yBAAyB,EAAE,MAAM,CAAC;IAClC,oBAAoB,EAAE,OAAO,CAAC;IAC9B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,oBAAoB,EAAE,MAAM,CAAC;CAC9B;AAED;;;GAGG;AACH,MAAM,WAAW,uBAAuB;IACtC,UAAU,EAAE;QACV,OAAO,EAAE,OAAO,CAAC;QACjB,
|
|
1
|
+
{"version":3,"file":"system-config.types.d.ts","sourceRoot":"","sources":["../../src/types/system-config.types.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;GAGG;AACH,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,GAAG,CAAC;IACX,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,OAAO,CAAC;IAC9D,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,EAAE,OAAO,CAAC;IACtB,SAAS,EAAE,OAAO,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC/B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;GAGG;AACH,MAAM,MAAM,sBAAsB,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAEzD;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAChC,UAAU,EAAE,MAAM,CAAC;IACnB,2BAA2B,EAAE,MAAM,CAAC;IACpC,yBAAyB,EAAE,MAAM,CAAC;IAClC,iBAAiB,EAAE,OAAO,CAAC;IAC3B,yBAAyB,EAAE,MAAM,CAAC;IAClC,oBAAoB,EAAE,OAAO,CAAC;IAC9B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,oBAAoB,EAAE,MAAM,CAAC;CAC9B;AAED;;;GAGG;AACH,MAAM,WAAW,uBAAuB;IACtC,UAAU,EAAE;QACV,OAAO,EAAE,OAAO,CAAC;QACjB,eAAe,EAAE,MAAM,CAAC;QACxB,eAAe,EAAE,MAAM,CAAC;KACzB,CAAC;IACF,QAAQ,EAAE;QACR,OAAO,EAAE,OAAO,CAAC;QACjB,iBAAiB,EAAE,MAAM,CAAC;KAC3B,CAAC;IACF,UAAU,EAAE;QACV,YAAY,EAAE,MAAM,CAAC;QACrB,eAAe,EAAE,OAAO,CAAC;QACzB,UAAU,EAAE,OAAO,CAAC;KACrB,CAAC;CACH"}
|
package/package.json
CHANGED
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Event Log Interfaces
|
|
3
|
-
*
|
|
4
|
-
* Copied from @win-portal/shared for SDK independence
|
|
5
|
-
*/
|
|
6
|
-
import { ActorType, EventSeverity, EventOutcome, EventCategory, EventRiskLevel } from './event-log.types';
|
|
7
|
-
/**
|
|
8
|
-
* Event Log Actor Information
|
|
9
|
-
*/
|
|
10
|
-
export interface IEventLogActor {
|
|
11
|
-
type: ActorType;
|
|
12
|
-
id?: string;
|
|
13
|
-
name?: string;
|
|
14
|
-
session_id?: string;
|
|
15
|
-
ip_address?: string;
|
|
16
|
-
user_agent?: string;
|
|
17
|
-
}
|
|
18
|
-
/**
|
|
19
|
-
* Event Log Target Information
|
|
20
|
-
*/
|
|
21
|
-
export interface IEventLogTarget {
|
|
22
|
-
type: string;
|
|
23
|
-
id?: string;
|
|
24
|
-
name?: string;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* Event Log Error Information
|
|
28
|
-
*/
|
|
29
|
-
export interface IEventLogError {
|
|
30
|
-
code?: string;
|
|
31
|
-
message?: string;
|
|
32
|
-
details?: any;
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* Create Event Log Request DTO
|
|
36
|
-
*
|
|
37
|
-
* Complete interface for creating event logs
|
|
38
|
-
*/
|
|
39
|
-
export interface CreateEventLogRequestDto {
|
|
40
|
-
source: string;
|
|
41
|
-
event_type: string;
|
|
42
|
-
subject?: string;
|
|
43
|
-
event_time?: Date | string;
|
|
44
|
-
application_id?: string | null;
|
|
45
|
-
application_code?: string;
|
|
46
|
-
severity?: EventSeverity;
|
|
47
|
-
outcome?: EventOutcome;
|
|
48
|
-
category?: EventCategory;
|
|
49
|
-
risk_level?: EventRiskLevel;
|
|
50
|
-
actor?: IEventLogActor;
|
|
51
|
-
target?: IEventLogTarget;
|
|
52
|
-
action?: string;
|
|
53
|
-
message?: string;
|
|
54
|
-
before_state?: Record<string, any>;
|
|
55
|
-
after_state?: Record<string, any>;
|
|
56
|
-
changed_fields?: Record<string, any>;
|
|
57
|
-
metadata?: Record<string, any>;
|
|
58
|
-
tags?: string[];
|
|
59
|
-
error?: IEventLogError;
|
|
60
|
-
trace_id?: string;
|
|
61
|
-
span_id?: string;
|
|
62
|
-
parent_span_id?: string;
|
|
63
|
-
trace_flags?: string;
|
|
64
|
-
correlation_id?: string;
|
|
65
|
-
request_id?: string;
|
|
66
|
-
business_reason?: string;
|
|
67
|
-
application_version?: string;
|
|
68
|
-
service_version?: string;
|
|
69
|
-
performance?: {
|
|
70
|
-
duration_ms?: number;
|
|
71
|
-
resource_usage?: Record<string, any>;
|
|
72
|
-
};
|
|
73
|
-
requires_approval?: boolean;
|
|
74
|
-
approval?: {
|
|
75
|
-
required: boolean;
|
|
76
|
-
approved_by?: string;
|
|
77
|
-
approved_at?: Date;
|
|
78
|
-
rejected_by?: string;
|
|
79
|
-
rejected_at?: Date;
|
|
80
|
-
reason?: string;
|
|
81
|
-
};
|
|
82
|
-
review?: {
|
|
83
|
-
required: boolean;
|
|
84
|
-
reviewed_by?: string;
|
|
85
|
-
reviewed_at?: Date;
|
|
86
|
-
status?: 'pending' | 'approved' | 'rejected';
|
|
87
|
-
notes?: string;
|
|
88
|
-
};
|
|
89
|
-
retention_period?: string;
|
|
90
|
-
expires_at?: Date;
|
|
91
|
-
}
|
|
92
|
-
/**
|
|
93
|
-
* Event Log Response DTO
|
|
94
|
-
*/
|
|
95
|
-
export interface EventLogResponseDto {
|
|
96
|
-
id: string;
|
|
97
|
-
source: string;
|
|
98
|
-
event_type: string;
|
|
99
|
-
subject?: string;
|
|
100
|
-
event_time: string;
|
|
101
|
-
severity: string;
|
|
102
|
-
outcome: string;
|
|
103
|
-
category?: string;
|
|
104
|
-
risk_level?: string;
|
|
105
|
-
created_at: string;
|
|
106
|
-
updated_at: string;
|
|
107
|
-
}
|
|
108
|
-
//# sourceMappingURL=event-log.interfaces.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"event-log.interfaces.d.ts","sourceRoot":"","sources":["../../src/types/event-log.interfaces.ts"],"names":[],"mappings":"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"}
|