evo360-types 1.3.252 → 1.3.258
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.
|
@@ -37,6 +37,11 @@ export interface IEvoLogResultSummary {
|
|
|
37
37
|
summary?: string | null;
|
|
38
38
|
changedFields?: string[] | null;
|
|
39
39
|
}
|
|
40
|
+
/**
|
|
41
|
+
* JSON string used for flexible fields in BigQuery sinks.
|
|
42
|
+
* Prefer `null` when absent (avoid the literal string `"null"`).
|
|
43
|
+
*/
|
|
44
|
+
export type EvoLogJsonString = string;
|
|
40
45
|
/**
|
|
41
46
|
* Canonical audit event payload published to {@link EvoLogEventsPubSubTopic}.
|
|
42
47
|
* `params` must follow a per-endpoint whitelist (no full raw payloads).
|
|
@@ -52,8 +57,14 @@ export interface IEvoLogEvent {
|
|
|
52
57
|
actor: IEvoLogActor;
|
|
53
58
|
request: IEvoLogRequestMeta;
|
|
54
59
|
target?: IEvoLogTarget | null;
|
|
55
|
-
|
|
56
|
-
|
|
60
|
+
/**
|
|
61
|
+
* Whitelisted parameters as JSON string (sink-friendly).
|
|
62
|
+
*/
|
|
63
|
+
params: EvoLogJsonString | null;
|
|
64
|
+
/**
|
|
65
|
+
* Optional result summary as JSON string (sink-friendly).
|
|
66
|
+
*/
|
|
67
|
+
result?: EvoLogJsonString | null;
|
|
57
68
|
error?: IEvoLogError | null;
|
|
58
69
|
labels?: Record<string, string>;
|
|
59
70
|
}
|
|
@@ -45,6 +45,12 @@ export interface IEvoLogResultSummary {
|
|
|
45
45
|
changedFields?: string[] | null;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
/**
|
|
49
|
+
* JSON string used for flexible fields in BigQuery sinks.
|
|
50
|
+
* Prefer `null` when absent (avoid the literal string `"null"`).
|
|
51
|
+
*/
|
|
52
|
+
export type EvoLogJsonString = string;
|
|
53
|
+
|
|
48
54
|
/**
|
|
49
55
|
* Canonical audit event payload published to {@link EvoLogEventsPubSubTopic}.
|
|
50
56
|
* `params` must follow a per-endpoint whitelist (no full raw payloads).
|
|
@@ -60,8 +66,14 @@ export interface IEvoLogEvent {
|
|
|
60
66
|
actor: IEvoLogActor;
|
|
61
67
|
request: IEvoLogRequestMeta;
|
|
62
68
|
target?: IEvoLogTarget | null;
|
|
63
|
-
|
|
64
|
-
|
|
69
|
+
/**
|
|
70
|
+
* Whitelisted parameters as JSON string (sink-friendly).
|
|
71
|
+
*/
|
|
72
|
+
params: EvoLogJsonString | null;
|
|
73
|
+
/**
|
|
74
|
+
* Optional result summary as JSON string (sink-friendly).
|
|
75
|
+
*/
|
|
76
|
+
result?: EvoLogJsonString | null;
|
|
65
77
|
error?: IEvoLogError | null;
|
|
66
78
|
labels?: Record<string, string>;
|
|
67
79
|
}
|