@liquidmetal-ai/drizzle 0.5.0 → 0.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/CHANGELOG.md +6 -0
- package/dist/liquidmetal/v1alpha1/riverjack_pb.d.ts +316 -3
- package/dist/liquidmetal/v1alpha1/riverjack_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/riverjack_pb.js +48 -2
- package/dist/liquidmetal/v1alpha1/smartsql_pb.d.ts +44 -80
- package/dist/liquidmetal/v1alpha1/smartsql_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/smartsql_pb.js +39 -18
- package/package.json +2 -2
- package/src/liquidmetal/v1alpha1/riverjack_pb.ts +368 -5
- package/src/liquidmetal/v1alpha1/smartsql_pb.ts +56 -95
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
2
3
|
import type { Message } from "@bufbuild/protobuf";
|
|
3
4
|
/**
|
|
4
5
|
* Describes the file liquidmetal/v1alpha1/riverjack.proto.
|
|
@@ -38,22 +39,326 @@ export type StreamLogsRequest = Message<"liquidmetal.v1alpha1.StreamLogsRequest"
|
|
|
38
39
|
* Use `create(StreamLogsRequestSchema)` to create a new message.
|
|
39
40
|
*/
|
|
40
41
|
export declare const StreamLogsRequestSchema: GenMessage<StreamLogsRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* @generated from message liquidmetal.v1alpha1.QueryLogsRequest
|
|
44
|
+
*/
|
|
45
|
+
export type QueryLogsRequest = Message<"liquidmetal.v1alpha1.QueryLogsRequest"> & {
|
|
46
|
+
/**
|
|
47
|
+
* organization_id is the organization context for the log query
|
|
48
|
+
*
|
|
49
|
+
* @generated from field: string organization_id = 1;
|
|
50
|
+
*/
|
|
51
|
+
organizationId: string;
|
|
52
|
+
/**
|
|
53
|
+
* user_id is the user context for the log query (optional)
|
|
54
|
+
*
|
|
55
|
+
* @generated from field: optional string user_id = 2;
|
|
56
|
+
*/
|
|
57
|
+
userId?: string;
|
|
58
|
+
/**
|
|
59
|
+
* application_name is the name of the application to filter logs (optional)
|
|
60
|
+
*
|
|
61
|
+
* @generated from field: optional string application_name = 3;
|
|
62
|
+
*/
|
|
63
|
+
applicationName?: string;
|
|
64
|
+
/**
|
|
65
|
+
* application_version_id is the version of the application to filter logs (optional)
|
|
66
|
+
*
|
|
67
|
+
* @generated from field: optional string application_version_id = 4;
|
|
68
|
+
*/
|
|
69
|
+
applicationVersionId?: string;
|
|
70
|
+
/**
|
|
71
|
+
* time_query defines the time range for the log query (optional)
|
|
72
|
+
*
|
|
73
|
+
* @generated from field: optional liquidmetal.v1alpha1.TimeQuery time_query = 5;
|
|
74
|
+
*/
|
|
75
|
+
timeQuery?: TimeQuery;
|
|
76
|
+
/**
|
|
77
|
+
* limit specifies the maximum number of log entries to return (optional)
|
|
78
|
+
*
|
|
79
|
+
* @generated from field: optional int32 limit = 6;
|
|
80
|
+
*/
|
|
81
|
+
limit?: number;
|
|
82
|
+
/**
|
|
83
|
+
* trace_id filters logs by a specific trace ID (optional)
|
|
84
|
+
*
|
|
85
|
+
* @generated from field: optional string trace_id = 7;
|
|
86
|
+
*/
|
|
87
|
+
traceId?: string;
|
|
88
|
+
/**
|
|
89
|
+
* status filters logs by event status (ok, error) (optional)
|
|
90
|
+
*
|
|
91
|
+
* @generated from field: optional string status = 8;
|
|
92
|
+
*/
|
|
93
|
+
status?: string;
|
|
94
|
+
/**
|
|
95
|
+
* attributes filters logs by key-value attribute pairs (optional)
|
|
96
|
+
*
|
|
97
|
+
* @generated from field: map<string, string> attributes = 9;
|
|
98
|
+
*/
|
|
99
|
+
attributes: {
|
|
100
|
+
[key: string]: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* Describes the message liquidmetal.v1alpha1.QueryLogsRequest.
|
|
105
|
+
* Use `create(QueryLogsRequestSchema)` to create a new message.
|
|
106
|
+
*/
|
|
107
|
+
export declare const QueryLogsRequestSchema: GenMessage<QueryLogsRequest>;
|
|
108
|
+
/**
|
|
109
|
+
* @generated from message liquidmetal.v1alpha1.TimeQuery
|
|
110
|
+
*/
|
|
111
|
+
export type TimeQuery = Message<"liquidmetal.v1alpha1.TimeQuery"> & {
|
|
112
|
+
/**
|
|
113
|
+
* start_time is the start of the time range for the query
|
|
114
|
+
*
|
|
115
|
+
* @generated from field: google.protobuf.Timestamp start_time = 1;
|
|
116
|
+
*/
|
|
117
|
+
startTime?: Timestamp;
|
|
118
|
+
/**
|
|
119
|
+
* end_time is the end of the time range for the query
|
|
120
|
+
*
|
|
121
|
+
* @generated from field: google.protobuf.Timestamp end_time = 2;
|
|
122
|
+
*/
|
|
123
|
+
endTime?: Timestamp;
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* Describes the message liquidmetal.v1alpha1.TimeQuery.
|
|
127
|
+
* Use `create(TimeQuerySchema)` to create a new message.
|
|
128
|
+
*/
|
|
129
|
+
export declare const TimeQuerySchema: GenMessage<TimeQuery>;
|
|
130
|
+
/**
|
|
131
|
+
* @generated from message liquidmetal.v1alpha1.QueryLogsResponse
|
|
132
|
+
*/
|
|
133
|
+
export type QueryLogsResponse = Message<"liquidmetal.v1alpha1.QueryLogsResponse"> & {
|
|
134
|
+
/**
|
|
135
|
+
* events contains the structured log events matching the query
|
|
136
|
+
*
|
|
137
|
+
* @generated from field: repeated liquidmetal.v1alpha1.LogEvent events = 1;
|
|
138
|
+
*/
|
|
139
|
+
events: LogEvent[];
|
|
140
|
+
/**
|
|
141
|
+
* total_count indicates the total number of events that match the query
|
|
142
|
+
*
|
|
143
|
+
* @generated from field: int32 total_count = 2;
|
|
144
|
+
*/
|
|
145
|
+
totalCount: number;
|
|
146
|
+
/**
|
|
147
|
+
* has_more indicates if there are more results available beyond the limit
|
|
148
|
+
*
|
|
149
|
+
* @generated from field: bool has_more = 3;
|
|
150
|
+
*/
|
|
151
|
+
hasMore: boolean;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Describes the message liquidmetal.v1alpha1.QueryLogsResponse.
|
|
155
|
+
* Use `create(QueryLogsResponseSchema)` to create a new message.
|
|
156
|
+
*/
|
|
157
|
+
export declare const QueryLogsResponseSchema: GenMessage<QueryLogsResponse>;
|
|
41
158
|
/**
|
|
42
159
|
* @generated from message liquidmetal.v1alpha1.StreamLogsResponse
|
|
43
160
|
*/
|
|
44
161
|
export type StreamLogsResponse = Message<"liquidmetal.v1alpha1.StreamLogsResponse"> & {
|
|
45
162
|
/**
|
|
46
|
-
*
|
|
163
|
+
* For structured event streaming, use events field
|
|
47
164
|
*
|
|
48
|
-
* @generated from field:
|
|
165
|
+
* @generated from field: repeated liquidmetal.v1alpha1.LogEvent events = 1;
|
|
49
166
|
*/
|
|
50
|
-
|
|
167
|
+
events: LogEvent[];
|
|
168
|
+
/**
|
|
169
|
+
* For control messages (heartbeat, stream_started, etc), use message field
|
|
170
|
+
*
|
|
171
|
+
* @generated from field: optional string message = 2;
|
|
172
|
+
*/
|
|
173
|
+
message?: string;
|
|
174
|
+
/**
|
|
175
|
+
* response_type indicates the type of response (events, heartbeat, stream_started, etc)
|
|
176
|
+
*
|
|
177
|
+
* @generated from field: string response_type = 3;
|
|
178
|
+
*/
|
|
179
|
+
responseType: string;
|
|
180
|
+
/**
|
|
181
|
+
* timestamp of the response
|
|
182
|
+
*
|
|
183
|
+
* @generated from field: string timestamp = 4;
|
|
184
|
+
*/
|
|
185
|
+
timestamp: string;
|
|
51
186
|
};
|
|
52
187
|
/**
|
|
53
188
|
* Describes the message liquidmetal.v1alpha1.StreamLogsResponse.
|
|
54
189
|
* Use `create(StreamLogsResponseSchema)` to create a new message.
|
|
55
190
|
*/
|
|
56
191
|
export declare const StreamLogsResponseSchema: GenMessage<StreamLogsResponse>;
|
|
192
|
+
/**
|
|
193
|
+
* @generated from message liquidmetal.v1alpha1.LogEvent
|
|
194
|
+
*/
|
|
195
|
+
export type LogEvent = Message<"liquidmetal.v1alpha1.LogEvent"> & {
|
|
196
|
+
/**
|
|
197
|
+
* trace contains tracing information for the event
|
|
198
|
+
*
|
|
199
|
+
* @generated from field: liquidmetal.v1alpha1.TraceInfo trace = 1;
|
|
200
|
+
*/
|
|
201
|
+
trace?: TraceInfo;
|
|
202
|
+
/**
|
|
203
|
+
* event_order is the order of this event within its trace
|
|
204
|
+
*
|
|
205
|
+
* @generated from field: int32 event_order = 2;
|
|
206
|
+
*/
|
|
207
|
+
eventOrder: number;
|
|
208
|
+
/**
|
|
209
|
+
* name is the optional name of the event
|
|
210
|
+
*
|
|
211
|
+
* @generated from field: optional string name = 3;
|
|
212
|
+
*/
|
|
213
|
+
name?: string;
|
|
214
|
+
/**
|
|
215
|
+
* status indicates the event status (ok, error)
|
|
216
|
+
*
|
|
217
|
+
* @generated from field: optional string status = 4;
|
|
218
|
+
*/
|
|
219
|
+
status?: string;
|
|
220
|
+
/**
|
|
221
|
+
* attributes contains additional event attributes (any key-value pairs)
|
|
222
|
+
*
|
|
223
|
+
* @generated from field: map<string, string> attributes = 5;
|
|
224
|
+
*/
|
|
225
|
+
attributes: {
|
|
226
|
+
[key: string]: string;
|
|
227
|
+
};
|
|
228
|
+
/**
|
|
229
|
+
* organization contains organization context
|
|
230
|
+
*
|
|
231
|
+
* @generated from field: optional liquidmetal.v1alpha1.OrganizationInfo organization = 6;
|
|
232
|
+
*/
|
|
233
|
+
organization?: OrganizationInfo;
|
|
234
|
+
/**
|
|
235
|
+
* application contains application context
|
|
236
|
+
*
|
|
237
|
+
* @generated from field: optional liquidmetal.v1alpha1.ApplicationInfo application = 7;
|
|
238
|
+
*/
|
|
239
|
+
application?: ApplicationInfo;
|
|
240
|
+
/**
|
|
241
|
+
* script contains script context
|
|
242
|
+
*
|
|
243
|
+
* @generated from field: optional liquidmetal.v1alpha1.ScriptInfo script = 8;
|
|
244
|
+
*/
|
|
245
|
+
script?: ScriptInfo;
|
|
246
|
+
};
|
|
247
|
+
/**
|
|
248
|
+
* Describes the message liquidmetal.v1alpha1.LogEvent.
|
|
249
|
+
* Use `create(LogEventSchema)` to create a new message.
|
|
250
|
+
*/
|
|
251
|
+
export declare const LogEventSchema: GenMessage<LogEvent>;
|
|
252
|
+
/**
|
|
253
|
+
* @generated from message liquidmetal.v1alpha1.TraceInfo
|
|
254
|
+
*/
|
|
255
|
+
export type TraceInfo = Message<"liquidmetal.v1alpha1.TraceInfo"> & {
|
|
256
|
+
/**
|
|
257
|
+
* event_id is the unique identifier for this event
|
|
258
|
+
*
|
|
259
|
+
* @generated from field: string event_id = 1;
|
|
260
|
+
*/
|
|
261
|
+
eventId: string;
|
|
262
|
+
/**
|
|
263
|
+
* parent_id is the optional parent event identifier
|
|
264
|
+
*
|
|
265
|
+
* @generated from field: optional string parent_id = 2;
|
|
266
|
+
*/
|
|
267
|
+
parentId?: string;
|
|
268
|
+
/**
|
|
269
|
+
* current_id is the current trace identifier
|
|
270
|
+
*
|
|
271
|
+
* @generated from field: string current_id = 3;
|
|
272
|
+
*/
|
|
273
|
+
currentId: string;
|
|
274
|
+
/**
|
|
275
|
+
* start_time is the start time as a timestamp
|
|
276
|
+
*
|
|
277
|
+
* @generated from field: google.protobuf.Timestamp start_time = 4;
|
|
278
|
+
*/
|
|
279
|
+
startTime?: Timestamp;
|
|
280
|
+
/**
|
|
281
|
+
* end_time is the optional end time as a timestamp
|
|
282
|
+
*
|
|
283
|
+
* @generated from field: optional google.protobuf.Timestamp end_time = 5;
|
|
284
|
+
*/
|
|
285
|
+
endTime?: Timestamp;
|
|
286
|
+
};
|
|
287
|
+
/**
|
|
288
|
+
* Describes the message liquidmetal.v1alpha1.TraceInfo.
|
|
289
|
+
* Use `create(TraceInfoSchema)` to create a new message.
|
|
290
|
+
*/
|
|
291
|
+
export declare const TraceInfoSchema: GenMessage<TraceInfo>;
|
|
292
|
+
/**
|
|
293
|
+
* @generated from message liquidmetal.v1alpha1.OrganizationInfo
|
|
294
|
+
*/
|
|
295
|
+
export type OrganizationInfo = Message<"liquidmetal.v1alpha1.OrganizationInfo"> & {
|
|
296
|
+
/**
|
|
297
|
+
* id is the organization identifier
|
|
298
|
+
*
|
|
299
|
+
* @generated from field: string id = 1;
|
|
300
|
+
*/
|
|
301
|
+
id: string;
|
|
302
|
+
};
|
|
303
|
+
/**
|
|
304
|
+
* Describes the message liquidmetal.v1alpha1.OrganizationInfo.
|
|
305
|
+
* Use `create(OrganizationInfoSchema)` to create a new message.
|
|
306
|
+
*/
|
|
307
|
+
export declare const OrganizationInfoSchema: GenMessage<OrganizationInfo>;
|
|
308
|
+
/**
|
|
309
|
+
* @generated from message liquidmetal.v1alpha1.ApplicationInfo
|
|
310
|
+
*/
|
|
311
|
+
export type ApplicationInfo = Message<"liquidmetal.v1alpha1.ApplicationInfo"> & {
|
|
312
|
+
/**
|
|
313
|
+
* name is the application name
|
|
314
|
+
*
|
|
315
|
+
* @generated from field: string name = 1;
|
|
316
|
+
*/
|
|
317
|
+
name: string;
|
|
318
|
+
/**
|
|
319
|
+
* version contains version information
|
|
320
|
+
*
|
|
321
|
+
* @generated from field: optional liquidmetal.v1alpha1.ApplicationVersion version = 2;
|
|
322
|
+
*/
|
|
323
|
+
version?: ApplicationVersion;
|
|
324
|
+
};
|
|
325
|
+
/**
|
|
326
|
+
* Describes the message liquidmetal.v1alpha1.ApplicationInfo.
|
|
327
|
+
* Use `create(ApplicationInfoSchema)` to create a new message.
|
|
328
|
+
*/
|
|
329
|
+
export declare const ApplicationInfoSchema: GenMessage<ApplicationInfo>;
|
|
330
|
+
/**
|
|
331
|
+
* @generated from message liquidmetal.v1alpha1.ApplicationVersion
|
|
332
|
+
*/
|
|
333
|
+
export type ApplicationVersion = Message<"liquidmetal.v1alpha1.ApplicationVersion"> & {
|
|
334
|
+
/**
|
|
335
|
+
* id is the version identifier
|
|
336
|
+
*
|
|
337
|
+
* @generated from field: string id = 1;
|
|
338
|
+
*/
|
|
339
|
+
id: string;
|
|
340
|
+
};
|
|
341
|
+
/**
|
|
342
|
+
* Describes the message liquidmetal.v1alpha1.ApplicationVersion.
|
|
343
|
+
* Use `create(ApplicationVersionSchema)` to create a new message.
|
|
344
|
+
*/
|
|
345
|
+
export declare const ApplicationVersionSchema: GenMessage<ApplicationVersion>;
|
|
346
|
+
/**
|
|
347
|
+
* @generated from message liquidmetal.v1alpha1.ScriptInfo
|
|
348
|
+
*/
|
|
349
|
+
export type ScriptInfo = Message<"liquidmetal.v1alpha1.ScriptInfo"> & {
|
|
350
|
+
/**
|
|
351
|
+
* name is the script name
|
|
352
|
+
*
|
|
353
|
+
* @generated from field: string name = 1;
|
|
354
|
+
*/
|
|
355
|
+
name: string;
|
|
356
|
+
};
|
|
357
|
+
/**
|
|
358
|
+
* Describes the message liquidmetal.v1alpha1.ScriptInfo.
|
|
359
|
+
* Use `create(ScriptInfoSchema)` to create a new message.
|
|
360
|
+
*/
|
|
361
|
+
export declare const ScriptInfoSchema: GenMessage<ScriptInfo>;
|
|
57
362
|
/**
|
|
58
363
|
* Riverjack defines the interface for log storage and retrieval operations.
|
|
59
364
|
*
|
|
@@ -70,5 +375,13 @@ export declare const RiverjackService: GenService<{
|
|
|
70
375
|
input: typeof StreamLogsRequestSchema;
|
|
71
376
|
output: typeof StreamLogsResponseSchema;
|
|
72
377
|
};
|
|
378
|
+
/**
|
|
379
|
+
* @generated from rpc liquidmetal.v1alpha1.RiverjackService.QueryLogs
|
|
380
|
+
*/
|
|
381
|
+
queryLogs: {
|
|
382
|
+
methodKind: "unary";
|
|
383
|
+
input: typeof QueryLogsRequestSchema;
|
|
384
|
+
output: typeof QueryLogsResponseSchema;
|
|
385
|
+
};
|
|
73
386
|
}>;
|
|
74
387
|
//# sourceMappingURL=riverjack_pb.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"riverjack_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/riverjack_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAEpF,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,
|
|
1
|
+
{"version":3,"file":"riverjack_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/riverjack_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,20 +2,66 @@
|
|
|
2
2
|
// @generated from file liquidmetal/v1alpha1/riverjack.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
5
6
|
/**
|
|
6
7
|
* Describes the file liquidmetal/v1alpha1/riverjack.proto.
|
|
7
8
|
*/
|
|
8
|
-
export const file_liquidmetal_v1alpha1_riverjack = /*@__PURE__*/ fileDesc("
|
|
9
|
+
export const file_liquidmetal_v1alpha1_riverjack = /*@__PURE__*/ fileDesc("CiRsaXF1aWRtZXRhbC92MWFscGhhMS9yaXZlcmphY2sucHJvdG8SFGxpcXVpZG1ldGFsLnYxYWxwaGExIncKEVN0cmVhbUxvZ3NSZXF1ZXN0EhcKD29yZ2FuaXphdGlvbl9pZBgBIAEoCRIPCgd1c2VyX2lkGAIgASgJEhgKEGFwcGxpY2F0aW9uX25hbWUYAyABKAkSHgoWYXBwbGljYXRpb25fdmVyc2lvbl9pZBgEIAEoCSLrAwoQUXVlcnlMb2dzUmVxdWVzdBIXCg9vcmdhbml6YXRpb25faWQYASABKAkSFAoHdXNlcl9pZBgCIAEoCUgAiAEBEh0KEGFwcGxpY2F0aW9uX25hbWUYAyABKAlIAYgBARIjChZhcHBsaWNhdGlvbl92ZXJzaW9uX2lkGAQgASgJSAKIAQESOAoKdGltZV9xdWVyeRgFIAEoCzIfLmxpcXVpZG1ldGFsLnYxYWxwaGExLlRpbWVRdWVyeUgDiAEBEhIKBWxpbWl0GAYgASgFSASIAQESFQoIdHJhY2VfaWQYByABKAlIBYgBARITCgZzdGF0dXMYCCABKAlIBogBARJKCgphdHRyaWJ1dGVzGAkgAygLMjYubGlxdWlkbWV0YWwudjFhbHBoYTEuUXVlcnlMb2dzUmVxdWVzdC5BdHRyaWJ1dGVzRW50cnkaMQoPQXR0cmlidXRlc0VudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAFCCgoIX3VzZXJfaWRCEwoRX2FwcGxpY2F0aW9uX25hbWVCGQoXX2FwcGxpY2F0aW9uX3ZlcnNpb25faWRCDQoLX3RpbWVfcXVlcnlCCAoGX2xpbWl0QgsKCV90cmFjZV9pZEIJCgdfc3RhdHVzImkKCVRpbWVRdWVyeRIuCgpzdGFydF90aW1lGAEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIsCghlbmRfdGltZRgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiagoRUXVlcnlMb2dzUmVzcG9uc2USLgoGZXZlbnRzGAEgAygLMh4ubGlxdWlkbWV0YWwudjFhbHBoYTEuTG9nRXZlbnQSEwoLdG90YWxfY291bnQYAiABKAUSEAoIaGFzX21vcmUYAyABKAgikAEKElN0cmVhbUxvZ3NSZXNwb25zZRIuCgZldmVudHMYASADKAsyHi5saXF1aWRtZXRhbC52MWFscGhhMS5Mb2dFdmVudBIUCgdtZXNzYWdlGAIgASgJSACIAQESFQoNcmVzcG9uc2VfdHlwZRgDIAEoCRIRCgl0aW1lc3RhbXAYBCABKAlCCgoIX21lc3NhZ2Ui6QMKCExvZ0V2ZW50Ei4KBXRyYWNlGAEgASgLMh8ubGlxdWlkbWV0YWwudjFhbHBoYTEuVHJhY2VJbmZvEhMKC2V2ZW50X29yZGVyGAIgASgFEhEKBG5hbWUYAyABKAlIAIgBARITCgZzdGF0dXMYBCABKAlIAYgBARJCCgphdHRyaWJ1dGVzGAUgAygLMi4ubGlxdWlkbWV0YWwudjFhbHBoYTEuTG9nRXZlbnQuQXR0cmlidXRlc0VudHJ5EkEKDG9yZ2FuaXphdGlvbhgGIAEoCzImLmxpcXVpZG1ldGFsLnYxYWxwaGExLk9yZ2FuaXphdGlvbkluZm9IAogBARI/CgthcHBsaWNhdGlvbhgHIAEoCzIlLmxpcXVpZG1ldGFsLnYxYWxwaGExLkFwcGxpY2F0aW9uSW5mb0gDiAEBEjUKBnNjcmlwdBgIIAEoCzIgLmxpcXVpZG1ldGFsLnYxYWxwaGExLlNjcmlwdEluZm9IBIgBARoxCg9BdHRyaWJ1dGVzRW50cnkSCwoDa2V5GAEgASgJEg0KBXZhbHVlGAIgASgJOgI4AUIHCgVfbmFtZUIJCgdfc3RhdHVzQg8KDV9vcmdhbml6YXRpb25CDgoMX2FwcGxpY2F0aW9uQgkKB19zY3JpcHQixwEKCVRyYWNlSW5mbxIQCghldmVudF9pZBgBIAEoCRIWCglwYXJlbnRfaWQYAiABKAlIAIgBARISCgpjdXJyZW50X2lkGAMgASgJEi4KCnN0YXJ0X3RpbWUYBCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjEKCGVuZF90aW1lGAUgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgBiAEBQgwKCl9wYXJlbnRfaWRCCwoJX2VuZF90aW1lIh4KEE9yZ2FuaXphdGlvbkluZm8SCgoCaWQYASABKAkiawoPQXBwbGljYXRpb25JbmZvEgwKBG5hbWUYASABKAkSPgoHdmVyc2lvbhgCIAEoCzIoLmxpcXVpZG1ldGFsLnYxYWxwaGExLkFwcGxpY2F0aW9uVmVyc2lvbkgAiAEBQgoKCF92ZXJzaW9uIiAKEkFwcGxpY2F0aW9uVmVyc2lvbhIKCgJpZBgBIAEoCSIaCgpTY3JpcHRJbmZvEgwKBG5hbWUYASABKAky0wEKEFJpdmVyamFja1NlcnZpY2USYQoKU3RyZWFtTG9ncxInLmxpcXVpZG1ldGFsLnYxYWxwaGExLlN0cmVhbUxvZ3NSZXF1ZXN0GigubGlxdWlkbWV0YWwudjFhbHBoYTEuU3RyZWFtTG9nc1Jlc3BvbnNlMAESXAoJUXVlcnlMb2dzEiYubGlxdWlkbWV0YWwudjFhbHBoYTEuUXVlcnlMb2dzUmVxdWVzdBonLmxpcXVpZG1ldGFsLnYxYWxwaGExLlF1ZXJ5TG9nc1Jlc3BvbnNlQukBChhjb20ubGlxdWlkbWV0YWwudjFhbHBoYTFCDlJpdmVyamFja1Byb3RvUAFaTGdpdGh1Yi5jb20vbGlxdWlkbWV0YWwtYWkvcHJvdG9nZW4yL2xpcXVpZG1ldGFsL3YxYWxwaGExO2xpcXVpZG1ldGFsdjFhbHBoYTGiAgNMWFiqAhRMaXF1aWRtZXRhbC5WMWFscGhhMcoCFExpcXVpZG1ldGFsXFYxYWxwaGEx4gIgTGlxdWlkbWV0YWxcVjFhbHBoYTFcR1BCTWV0YWRhdGHqAhVMaXF1aWRtZXRhbDo6VjFhbHBoYTFiBnByb3RvMw", [file_google_protobuf_timestamp]);
|
|
9
10
|
/**
|
|
10
11
|
* Describes the message liquidmetal.v1alpha1.StreamLogsRequest.
|
|
11
12
|
* Use `create(StreamLogsRequestSchema)` to create a new message.
|
|
12
13
|
*/
|
|
13
14
|
export const StreamLogsRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 0);
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message liquidmetal.v1alpha1.QueryLogsRequest.
|
|
17
|
+
* Use `create(QueryLogsRequestSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const QueryLogsRequestSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 1);
|
|
20
|
+
/**
|
|
21
|
+
* Describes the message liquidmetal.v1alpha1.TimeQuery.
|
|
22
|
+
* Use `create(TimeQuerySchema)` to create a new message.
|
|
23
|
+
*/
|
|
24
|
+
export const TimeQuerySchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 2);
|
|
25
|
+
/**
|
|
26
|
+
* Describes the message liquidmetal.v1alpha1.QueryLogsResponse.
|
|
27
|
+
* Use `create(QueryLogsResponseSchema)` to create a new message.
|
|
28
|
+
*/
|
|
29
|
+
export const QueryLogsResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 3);
|
|
14
30
|
/**
|
|
15
31
|
* Describes the message liquidmetal.v1alpha1.StreamLogsResponse.
|
|
16
32
|
* Use `create(StreamLogsResponseSchema)` to create a new message.
|
|
17
33
|
*/
|
|
18
|
-
export const StreamLogsResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack,
|
|
34
|
+
export const StreamLogsResponseSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 4);
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message liquidmetal.v1alpha1.LogEvent.
|
|
37
|
+
* Use `create(LogEventSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export const LogEventSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 5);
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message liquidmetal.v1alpha1.TraceInfo.
|
|
42
|
+
* Use `create(TraceInfoSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
export const TraceInfoSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 6);
|
|
45
|
+
/**
|
|
46
|
+
* Describes the message liquidmetal.v1alpha1.OrganizationInfo.
|
|
47
|
+
* Use `create(OrganizationInfoSchema)` to create a new message.
|
|
48
|
+
*/
|
|
49
|
+
export const OrganizationInfoSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 7);
|
|
50
|
+
/**
|
|
51
|
+
* Describes the message liquidmetal.v1alpha1.ApplicationInfo.
|
|
52
|
+
* Use `create(ApplicationInfoSchema)` to create a new message.
|
|
53
|
+
*/
|
|
54
|
+
export const ApplicationInfoSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 8);
|
|
55
|
+
/**
|
|
56
|
+
* Describes the message liquidmetal.v1alpha1.ApplicationVersion.
|
|
57
|
+
* Use `create(ApplicationVersionSchema)` to create a new message.
|
|
58
|
+
*/
|
|
59
|
+
export const ApplicationVersionSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 9);
|
|
60
|
+
/**
|
|
61
|
+
* Describes the message liquidmetal.v1alpha1.ScriptInfo.
|
|
62
|
+
* Use `create(ScriptInfoSchema)` to create a new message.
|
|
63
|
+
*/
|
|
64
|
+
export const ScriptInfoSchema = /*@__PURE__*/ messageDesc(file_liquidmetal_v1alpha1_riverjack, 10);
|
|
19
65
|
/**
|
|
20
66
|
* Riverjack defines the interface for log storage and retrieval operations.
|
|
21
67
|
*
|
|
@@ -196,11 +196,19 @@ export type UpdateMetadataRequest = Message<"liquidmetal.v1alpha1.UpdateMetadata
|
|
|
196
196
|
*/
|
|
197
197
|
tables: TableMetadata[];
|
|
198
198
|
/**
|
|
199
|
-
*
|
|
199
|
+
* __DESCRIPTION__ Update mode: replace (overwrite), merge (preserve existing), or append (only new entries)
|
|
200
|
+
* __EXAMPLE__ UPDATE_MODE_MERGE
|
|
201
|
+
* __REQUIRED__ FALSE
|
|
202
|
+
*
|
|
203
|
+
* @generated from field: optional liquidmetal.v1alpha1.UpdateMode mode = 3;
|
|
204
|
+
*/
|
|
205
|
+
mode?: UpdateMode;
|
|
206
|
+
/**
|
|
207
|
+
* @generated from field: string user_id = 4;
|
|
200
208
|
*/
|
|
201
209
|
userId: string;
|
|
202
210
|
/**
|
|
203
|
-
* @generated from field: string organization_id =
|
|
211
|
+
* @generated from field: string organization_id = 5;
|
|
204
212
|
*/
|
|
205
213
|
organizationId: string;
|
|
206
214
|
};
|
|
@@ -295,62 +303,6 @@ export type GetPiiDataResponse = Message<"liquidmetal.v1alpha1.GetPiiDataRespons
|
|
|
295
303
|
* Use `create(GetPiiDataResponseSchema)` to create a new message.
|
|
296
304
|
*/
|
|
297
305
|
export declare const GetPiiDataResponseSchema: GenMessage<GetPiiDataResponse>;
|
|
298
|
-
/**
|
|
299
|
-
* @generated from message liquidmetal.v1alpha1.AnalyzePiiRequest
|
|
300
|
-
*/
|
|
301
|
-
export type AnalyzePiiRequest = Message<"liquidmetal.v1alpha1.AnalyzePiiRequest"> & {
|
|
302
|
-
/**
|
|
303
|
-
* __DESCRIPTION__ Smart SQL locator for targeting the correct smart SQL instance
|
|
304
|
-
* __EXAMPLE__ { module_id: "01jtryx2f2f61ryk06vd8mr91p" }
|
|
305
|
-
* __REQUIRED__ TRUE
|
|
306
|
-
*
|
|
307
|
-
* @generated from field: liquidmetal.v1alpha1.SmartSqlLocator smart_sql_location = 1;
|
|
308
|
-
*/
|
|
309
|
-
smartSqlLocation?: SmartSqlLocator;
|
|
310
|
-
/**
|
|
311
|
-
* __DESCRIPTION__ Text content to analyze for PII
|
|
312
|
-
* __EXAMPLE__ "John Doe's email is john.doe@example.com and his phone is 555-123-4567"
|
|
313
|
-
* __REQUIRED__ TRUE
|
|
314
|
-
*
|
|
315
|
-
* @generated from field: string content = 2;
|
|
316
|
-
*/
|
|
317
|
-
content: string;
|
|
318
|
-
/**
|
|
319
|
-
* @generated from field: string user_id = 3;
|
|
320
|
-
*/
|
|
321
|
-
userId: string;
|
|
322
|
-
/**
|
|
323
|
-
* @generated from field: string organization_id = 4;
|
|
324
|
-
*/
|
|
325
|
-
organizationId: string;
|
|
326
|
-
};
|
|
327
|
-
/**
|
|
328
|
-
* Describes the message liquidmetal.v1alpha1.AnalyzePiiRequest.
|
|
329
|
-
* Use `create(AnalyzePiiRequestSchema)` to create a new message.
|
|
330
|
-
*/
|
|
331
|
-
export declare const AnalyzePiiRequestSchema: GenMessage<AnalyzePiiRequest>;
|
|
332
|
-
/**
|
|
333
|
-
* @generated from message liquidmetal.v1alpha1.AnalyzePiiResponse
|
|
334
|
-
*/
|
|
335
|
-
export type AnalyzePiiResponse = Message<"liquidmetal.v1alpha1.AnalyzePiiResponse"> & {
|
|
336
|
-
/**
|
|
337
|
-
* __DESCRIPTION__ List of detected PII entities
|
|
338
|
-
*
|
|
339
|
-
* @generated from field: repeated liquidmetal.v1alpha1.PiiEntity entities = 1;
|
|
340
|
-
*/
|
|
341
|
-
entities: PiiEntity[];
|
|
342
|
-
/**
|
|
343
|
-
* __DESCRIPTION__ Overall confidence score for the analysis
|
|
344
|
-
*
|
|
345
|
-
* @generated from field: float confidence_score = 2;
|
|
346
|
-
*/
|
|
347
|
-
confidenceScore: number;
|
|
348
|
-
};
|
|
349
|
-
/**
|
|
350
|
-
* Describes the message liquidmetal.v1alpha1.AnalyzePiiResponse.
|
|
351
|
-
* Use `create(AnalyzePiiResponseSchema)` to create a new message.
|
|
352
|
-
*/
|
|
353
|
-
export declare const AnalyzePiiResponseSchema: GenMessage<AnalyzePiiResponse>;
|
|
354
306
|
/**
|
|
355
307
|
* @generated from message liquidmetal.v1alpha1.TableMetadata
|
|
356
308
|
*/
|
|
@@ -545,12 +497,42 @@ export declare enum OutputFormat {
|
|
|
545
497
|
* Describes the enum liquidmetal.v1alpha1.OutputFormat.
|
|
546
498
|
*/
|
|
547
499
|
export declare const OutputFormatSchema: GenEnum<OutputFormat>;
|
|
500
|
+
/**
|
|
501
|
+
* @generated from enum liquidmetal.v1alpha1.UpdateMode
|
|
502
|
+
*/
|
|
503
|
+
export declare enum UpdateMode {
|
|
504
|
+
/**
|
|
505
|
+
* @generated from enum value: UPDATE_MODE_UNSPECIFIED = 0;
|
|
506
|
+
*/
|
|
507
|
+
UNSPECIFIED = 0,
|
|
508
|
+
/**
|
|
509
|
+
* Replace mode: completely overwrites existing metadata (current behavior)
|
|
510
|
+
*
|
|
511
|
+
* @generated from enum value: UPDATE_MODE_REPLACE = 1;
|
|
512
|
+
*/
|
|
513
|
+
REPLACE = 1,
|
|
514
|
+
/**
|
|
515
|
+
* Merge mode: preserves existing fields, updates only provided fields
|
|
516
|
+
*
|
|
517
|
+
* @generated from enum value: UPDATE_MODE_MERGE = 2;
|
|
518
|
+
*/
|
|
519
|
+
MERGE = 2,
|
|
520
|
+
/**
|
|
521
|
+
* Append mode: only adds new entries, never updates existing ones
|
|
522
|
+
*
|
|
523
|
+
* @generated from enum value: UPDATE_MODE_APPEND = 3;
|
|
524
|
+
*/
|
|
525
|
+
APPEND = 3
|
|
526
|
+
}
|
|
527
|
+
/**
|
|
528
|
+
* Describes the enum liquidmetal.v1alpha1.UpdateMode.
|
|
529
|
+
*/
|
|
530
|
+
export declare const UpdateModeSchema: GenEnum<UpdateMode>;
|
|
548
531
|
/**
|
|
549
532
|
* __TITLE__ Smart SQL
|
|
550
533
|
* The Smart SQL service provides intelligent SQL query execution capabilities with natural language
|
|
551
|
-
* to SQL conversion
|
|
552
|
-
* with databases using both direct SQL queries and natural language descriptions
|
|
553
|
-
* security and data governance through automated PII detection and metadata tracking.
|
|
534
|
+
* to SQL conversion and automatic metadata management. It enables users to interact
|
|
535
|
+
* with databases using both direct SQL queries and natural language descriptions.
|
|
554
536
|
*
|
|
555
537
|
* @generated from service liquidmetal.v1alpha1.SmartSqlService
|
|
556
538
|
*/
|
|
@@ -564,7 +546,7 @@ export declare const SmartSqlService: GenService<{
|
|
|
564
546
|
* - Direct SQL query execution
|
|
565
547
|
* - Natural language to SQL conversion using AI
|
|
566
548
|
* - Automatic metadata tracking for schema changes
|
|
567
|
-
* - PII detection
|
|
549
|
+
* - PII detection for security
|
|
568
550
|
* - Multiple output formats (JSON, CSV)
|
|
569
551
|
*
|
|
570
552
|
* @generated from rpc liquidmetal.v1alpha1.SmartSqlService.ExecuteQuery
|
|
@@ -627,23 +609,5 @@ export declare const SmartSqlService: GenService<{
|
|
|
627
609
|
input: typeof GetPiiDataRequestSchema;
|
|
628
610
|
output: typeof GetPiiDataResponseSchema;
|
|
629
611
|
};
|
|
630
|
-
/**
|
|
631
|
-
* Analyzes text content for PII without storing results.
|
|
632
|
-
* Provides real-time PII detection for validation or preview purposes
|
|
633
|
-
* before data insertion or processing.
|
|
634
|
-
*
|
|
635
|
-
* Analysis features:
|
|
636
|
-
* - Real-time PII detection
|
|
637
|
-
* - Multiple entity type support
|
|
638
|
-
* - Confidence scoring
|
|
639
|
-
* - No data persistence
|
|
640
|
-
*
|
|
641
|
-
* @generated from rpc liquidmetal.v1alpha1.SmartSqlService.AnalyzePii
|
|
642
|
-
*/
|
|
643
|
-
analyzePii: {
|
|
644
|
-
methodKind: "unary";
|
|
645
|
-
input: typeof AnalyzePiiRequestSchema;
|
|
646
|
-
output: typeof AnalyzePiiResponseSchema;
|
|
647
|
-
};
|
|
648
612
|
}>;
|
|
649
613
|
//# sourceMappingURL=smartsql_pb.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smartsql_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/smartsql_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAE7F,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAExD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAE7D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,kCAAkC,EAAE,
|
|
1
|
+
{"version":3,"file":"smartsql_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/smartsql_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAE7F,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAExD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAE7D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,kCAAkC,EAAE,OACg/H,CAAC;AAEliI;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,0CAA0C,CAAC,GAAG;IACtF;;;;;;OAMG;IACH,gBAAgB,CAAC,EAAE,eAAe,CAAC;IAEnC;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,YAAY,CAAC;IAEtB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,mBAAmB,CAClB,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,2CAA2C,CAAC,GAAG;IACxF;;;;;OAKG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;;;OAKG;IACH,OAAO,EAAE;QACP;;;;WAIG;QACH,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,aAAa,CAAC;KACrB,GAAG;QACF;;;;WAIG;QACH,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,YAAY,CAAC;KACpB,GAAG;QAAE,IAAI,EAAE,SAAS,CAAC;QAAC,KAAK,CAAC,EAAE,SAAS,CAAA;KAAE,CAAC;IAE3C;;;;;OAKG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;;;;OAKG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;;;;OAKG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,oBAAoB,CACpB,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,yCAAyC,CAAC,GAAG;IACpF;;;;;;OAMG;IACH,gBAAgB,CAAC,EAAE,eAAe,CAAC;IAEnC;;;;;;OAMG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,kBAAkB,CAChB,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,0CAA0C,CAAC,GAAG;IACtF;;;;OAIG;IACH,MAAM,EAAE,aAAa,EAAE,CAAC;IAExB;;;;OAIG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;CACzB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,mBAAmB,CAClB,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,4CAA4C,CAAC,GAAG;IAC1F;;;;;;OAMG;IACH,gBAAgB,CAAC,EAAE,eAAe,CAAC;IAEnC;;;;;OAKG;IACH,MAAM,EAAE,aAAa,EAAE,CAAC;IAExB;;;;;;OAMG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;IAElB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,qBAAqB,CACtB,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC,6CAA6C,CAAC,GAAG;IAC5F;;;;OAIG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,4BAA4B,EAAE,UAAU,CAAC,sBAAsB,CACxB,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,wCAAwC,CAAC,GAAG;IAClF;;;;;;OAMG;IACH,gBAAgB,CAAC,EAAE,eAAe,CAAC;IAEnC;;;;;;OAMG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;;;OAMG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,iBAAiB,CACd,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,yCAAyC,CAAC,GAAG;IACpF;;;;OAIG;IACH,aAAa,EAAE,YAAY,EAAE,CAAC;CAC/B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,kBAAkB,CAChB,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,OAAO,CAAC,oCAAoC,CAAC,GAAG;IAC1E;;;;;OAKG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,OAAO,EAAE,cAAc,EAAE,CAAC;IAE1B;;;;OAIG;IACH,SAAS,CAAC,EAAE,SAAS,CAAC;IAEtB;;;;OAIG;IACH,SAAS,CAAC,EAAE,SAAS,CAAC;CACvB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,aAAa,CACN,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC,qCAAqC,CAAC,GAAG;IAC5E;;;;;OAKG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;;;OAKG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;OAIG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;;;OAIG;IACH,YAAY,EAAE,OAAO,CAAC;CACvB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,cAAc,CACR,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,CAAC,mCAAmC,CAAC,GAAG;IACxE;;;;;OAKG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;;;;OAKG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;;OAKG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;OAIG;IACH,QAAQ,EAAE,SAAS,EAAE,CAAC;IAEtB;;;;OAIG;IACH,UAAU,CAAC,EAAE,SAAS,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,YAAY,CACH,CAAC;AAEtD;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,OAAO,CAAC,gCAAgC,CAAC,GAAG;IAClE;;;;;OAKG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;;;OAKG;IACH,eAAe,EAAE,MAAM,CAAC;IAExB;;;;;OAKG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;;;;OAKG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;;;;OAKG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;;;;OAKG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,SAAS,CACG,CAAC;AAEtD;;GAEG;AACH,oBAAY,YAAY;IACtB;;OAEG;IACH,WAAW,IAAI;IAEf;;OAEG;IACH,IAAI,IAAI;IAER;;OAEG;IACH,GAAG,IAAI;CACR;AAED;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,OAAO,CAAC,YAAY,CACJ,CAAC;AAElD;;GAEG;AACH,oBAAY,UAAU;IACpB;;OAEG;IACH,WAAW,IAAI;IAEf;;;;OAIG;IACH,OAAO,IAAI;IAEX;;;;OAIG;IACH,KAAK,IAAI;IAET;;;;OAIG;IACH,MAAM,IAAI;CACX;AAED;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,OAAO,CAAC,UAAU,CACA,CAAC;AAElD;;;;;;;GAOG;AACH,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC;IACvC;;;;;;;;;;;;;OAaG;IACH,YAAY,EAAE;QACZ,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,yBAAyB,CAAC;QACxC,MAAM,EAAE,OAAO,0BAA0B,CAAC;KAC3C,CAAC;IACF;;;;;;;;;;;;OAYG;IACH,WAAW,EAAE;QACX,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,wBAAwB,CAAC;QACvC,MAAM,EAAE,OAAO,yBAAyB,CAAC;KAC1C,CAAC;IACF;;;;;;;;;;;OAWG;IACH,cAAc,EAAE;QACd,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,2BAA2B,CAAC;QAC1C,MAAM,EAAE,OAAO,4BAA4B,CAAC;KAC7C,CAAC;IACF;;;;;;;;;;;;OAYG;IACH,UAAU,EAAE;QACV,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,uBAAuB,CAAC;QACtC,MAAM,EAAE,OAAO,wBAAwB,CAAC;KACzC,CAAC;CACH,CACmD,CAAC"}
|