@maxim_mazurok/gapi.client.logging-v2 0.1.20260619 → 0.2.20260619
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/index.d.ts +2 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -303,9 +303,7 @@ declare namespace gapi.client {
|
|
|
303
303
|
fieldPath?: string;
|
|
304
304
|
/** Required. The type of data in this index. */
|
|
305
305
|
type?:
|
|
306
|
-
| '
|
|
307
|
-
| 'INDEX_TYPE_STRING'
|
|
308
|
-
| 'INDEX_TYPE_INTEGER';
|
|
306
|
+
'INDEX_TYPE_UNSPECIFIED' | 'INDEX_TYPE_STRING' | 'INDEX_TYPE_INTEGER';
|
|
309
307
|
}
|
|
310
308
|
interface LabelDescriptor {
|
|
311
309
|
/** A human-readable description for the label. */
|
|
@@ -853,10 +851,7 @@ declare namespace gapi.client {
|
|
|
853
851
|
field?: string;
|
|
854
852
|
/** Specifies the role of this field (direct selection, grouping, or aggregation). */
|
|
855
853
|
operation?:
|
|
856
|
-
| '
|
|
857
|
-
| 'NO_SETTING'
|
|
858
|
-
| 'GROUP_BY'
|
|
859
|
-
| 'AGGREGATE';
|
|
854
|
+
'FIELD_OPERATION_UNSPECIFIED' | 'NO_SETTING' | 'GROUP_BY' | 'AGGREGATE';
|
|
860
855
|
/** The re2 extraction for the field. This will be used to extract the value from the field using REGEXP_EXTRACT. More information on re2 can be found here: https://github.com/google/re2/wiki/Syntax. Meta characters like +?()| will need to be escaped. Examples: - ".(autoscaler.*)$" will be converted to REGEXP_EXTRACT(JSON_VALUE(field),"request(.*(autoscaler.*)$)")in SQL. - "\(test_value\)$" will be converted to REGEXP_EXTRACT(JSON_VALUE(field),"request(\(test_value\)$)") in SQL. */
|
|
861
856
|
regexExtraction?: string;
|
|
862
857
|
/** The function to apply to the field. */
|