@yuno-payments/sdk-event-log 1.0.0-beta.14 → 1.0.0-beta.15
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/cjs/types/index.d.ts +11 -2
- package/dist/esm/types/index.d.ts +11 -2
- package/package.json +1 -1
|
@@ -16,7 +16,15 @@ type BaseEventLog = {
|
|
|
16
16
|
url?: string | null;
|
|
17
17
|
os?: string | null;
|
|
18
18
|
sdk_version: string;
|
|
19
|
-
|
|
19
|
+
application_session: string;
|
|
20
|
+
application_name: string;
|
|
21
|
+
environment: string;
|
|
22
|
+
step_name: string;
|
|
23
|
+
step_function: string;
|
|
24
|
+
step_location: string;
|
|
25
|
+
step_line?: number;
|
|
26
|
+
public_api_key: string;
|
|
27
|
+
organization_name?: string | null;
|
|
20
28
|
};
|
|
21
29
|
export type Log = BaseEventLog & {
|
|
22
30
|
method?: string | null;
|
|
@@ -26,8 +34,9 @@ export type Log = BaseEventLog & {
|
|
|
26
34
|
status_code?: string | null;
|
|
27
35
|
trace_id?: string | null;
|
|
28
36
|
country?: string | null;
|
|
29
|
-
organization_name?: string | null;
|
|
30
37
|
stack_trace?: string;
|
|
38
|
+
error_origin?: string;
|
|
39
|
+
level: Level;
|
|
31
40
|
};
|
|
32
41
|
export type Event = BaseEventLog & {
|
|
33
42
|
source: string;
|
|
@@ -16,7 +16,15 @@ type BaseEventLog = {
|
|
|
16
16
|
url?: string | null;
|
|
17
17
|
os?: string | null;
|
|
18
18
|
sdk_version: string;
|
|
19
|
-
|
|
19
|
+
application_session: string;
|
|
20
|
+
application_name: string;
|
|
21
|
+
environment: string;
|
|
22
|
+
step_name: string;
|
|
23
|
+
step_function: string;
|
|
24
|
+
step_location: string;
|
|
25
|
+
step_line?: number;
|
|
26
|
+
public_api_key: string;
|
|
27
|
+
organization_name?: string | null;
|
|
20
28
|
};
|
|
21
29
|
export type Log = BaseEventLog & {
|
|
22
30
|
method?: string | null;
|
|
@@ -26,8 +34,9 @@ export type Log = BaseEventLog & {
|
|
|
26
34
|
status_code?: string | null;
|
|
27
35
|
trace_id?: string | null;
|
|
28
36
|
country?: string | null;
|
|
29
|
-
organization_name?: string | null;
|
|
30
37
|
stack_trace?: string;
|
|
38
|
+
error_origin?: string;
|
|
39
|
+
level: Level;
|
|
31
40
|
};
|
|
32
41
|
export type Event = BaseEventLog & {
|
|
33
42
|
source: string;
|