@liquidmetal-ai/drizzle 0.0.2 → 0.0.4
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/.changeset/moody-eagles-knock.md +6 -0
- package/.turbo/turbo-lint.log +6 -0
- package/dist/appify/index.test.js +1 -1
- package/dist/codestore.test.js +3 -3
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +4 -0
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.js +5 -0
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts +26 -0
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts.map +1 -0
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.js +29 -0
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts +202 -0
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts.map +1 -0
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.js +298 -0
- package/dist/unsafe/codestore.d.ts.map +1 -1
- package/dist/unsafe/codestore.js +1 -0
- package/package.json +1 -1
- package/src/appify/index.test.ts +1 -1
- package/src/codestore.test.ts +3 -3
- package/src/liquidmetal/v1alpha1/catalog_pb.ts +6 -0
- package/src/liquidmetal/v1alpha1/rainbow_public_connect.ts +32 -0
- package/src/liquidmetal/v1alpha1/rainbow_public_pb.ts +366 -0
- package/src/unsafe/codestore.ts +2 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,366 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.10.0 with parameter "target=ts"
|
|
2
|
+
// @generated from file liquidmetal/v1alpha1/rainbow_public.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
|
|
7
|
+
import { Message, proto3, Timestamp } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from message liquidmetal.v1alpha1.TailRequest
|
|
11
|
+
*/
|
|
12
|
+
export class TailRequest extends Message<TailRequest> {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from field: string user_id = 1;
|
|
15
|
+
*/
|
|
16
|
+
userId = "";
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: string organization_id = 2;
|
|
20
|
+
*/
|
|
21
|
+
organizationId = "";
|
|
22
|
+
|
|
23
|
+
constructor(data?: PartialMessage<TailRequest>) {
|
|
24
|
+
super();
|
|
25
|
+
proto3.util.initPartial(data, this);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
29
|
+
static readonly typeName = "liquidmetal.v1alpha1.TailRequest";
|
|
30
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
31
|
+
{ no: 1, name: "user_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
32
|
+
{ no: 2, name: "organization_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
33
|
+
]);
|
|
34
|
+
|
|
35
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TailRequest {
|
|
36
|
+
return new TailRequest().fromBinary(bytes, options);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TailRequest {
|
|
40
|
+
return new TailRequest().fromJson(jsonValue, options);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TailRequest {
|
|
44
|
+
return new TailRequest().fromJsonString(jsonString, options);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
static equals(a: TailRequest | PlainMessage<TailRequest> | undefined, b: TailRequest | PlainMessage<TailRequest> | undefined): boolean {
|
|
48
|
+
return proto3.util.equals(TailRequest, a, b);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* @generated from message liquidmetal.v1alpha1.TailResponse
|
|
54
|
+
*/
|
|
55
|
+
export class TailResponse extends Message<TailResponse> {
|
|
56
|
+
/**
|
|
57
|
+
* @generated from field: string websocket_url = 1;
|
|
58
|
+
*/
|
|
59
|
+
websocketUrl = "";
|
|
60
|
+
|
|
61
|
+
constructor(data?: PartialMessage<TailResponse>) {
|
|
62
|
+
super();
|
|
63
|
+
proto3.util.initPartial(data, this);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
67
|
+
static readonly typeName = "liquidmetal.v1alpha1.TailResponse";
|
|
68
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
69
|
+
{ no: 1, name: "websocket_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
70
|
+
]);
|
|
71
|
+
|
|
72
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TailResponse {
|
|
73
|
+
return new TailResponse().fromBinary(bytes, options);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TailResponse {
|
|
77
|
+
return new TailResponse().fromJson(jsonValue, options);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TailResponse {
|
|
81
|
+
return new TailResponse().fromJsonString(jsonString, options);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
static equals(a: TailResponse | PlainMessage<TailResponse> | undefined, b: TailResponse | PlainMessage<TailResponse> | undefined): boolean {
|
|
85
|
+
return proto3.util.equals(TailResponse, a, b);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* @generated from message liquidmetal.v1alpha1.TailWebsocketMessage
|
|
91
|
+
*/
|
|
92
|
+
export class TailWebsocketMessage extends Message<TailWebsocketMessage> {
|
|
93
|
+
/**
|
|
94
|
+
* @generated from field: liquidmetal.v1alpha1.TailWebsocketMessage.Outcome outcome = 1;
|
|
95
|
+
*/
|
|
96
|
+
outcome = TailWebsocketMessage_Outcome.UNSPECIFIED;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* @generated from field: optional string script_name = 2;
|
|
100
|
+
*/
|
|
101
|
+
scriptName?: string;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* @generated from field: repeated liquidmetal.v1alpha1.TailWebsocketMessage.Exception exceptions = 3;
|
|
105
|
+
*/
|
|
106
|
+
exceptions: TailWebsocketMessage_Exception[] = [];
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* @generated from field: repeated liquidmetal.v1alpha1.TailWebsocketMessage.Log logs = 4;
|
|
110
|
+
*/
|
|
111
|
+
logs: TailWebsocketMessage_Log[] = [];
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* @generated from field: google.protobuf.Timestamp event_timestamp = 5;
|
|
115
|
+
*/
|
|
116
|
+
eventTimestamp?: Timestamp;
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* @generated from oneof liquidmetal.v1alpha1.TailWebsocketMessage.event
|
|
120
|
+
*/
|
|
121
|
+
event: {
|
|
122
|
+
/**
|
|
123
|
+
* @generated from field: liquidmetal.v1alpha1.TailWebsocketMessage.RequestEvent request_event = 6;
|
|
124
|
+
*/
|
|
125
|
+
value: TailWebsocketMessage_RequestEvent;
|
|
126
|
+
case: "requestEvent";
|
|
127
|
+
} | { case: undefined; value?: undefined } = { case: undefined };
|
|
128
|
+
|
|
129
|
+
constructor(data?: PartialMessage<TailWebsocketMessage>) {
|
|
130
|
+
super();
|
|
131
|
+
proto3.util.initPartial(data, this);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
135
|
+
static readonly typeName = "liquidmetal.v1alpha1.TailWebsocketMessage";
|
|
136
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
137
|
+
{ no: 1, name: "outcome", kind: "enum", T: proto3.getEnumType(TailWebsocketMessage_Outcome) },
|
|
138
|
+
{ no: 2, name: "script_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
139
|
+
{ no: 3, name: "exceptions", kind: "message", T: TailWebsocketMessage_Exception, repeated: true },
|
|
140
|
+
{ no: 4, name: "logs", kind: "message", T: TailWebsocketMessage_Log, repeated: true },
|
|
141
|
+
{ no: 5, name: "event_timestamp", kind: "message", T: Timestamp },
|
|
142
|
+
{ no: 6, name: "request_event", kind: "message", T: TailWebsocketMessage_RequestEvent, oneof: "event" },
|
|
143
|
+
]);
|
|
144
|
+
|
|
145
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TailWebsocketMessage {
|
|
146
|
+
return new TailWebsocketMessage().fromBinary(bytes, options);
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TailWebsocketMessage {
|
|
150
|
+
return new TailWebsocketMessage().fromJson(jsonValue, options);
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TailWebsocketMessage {
|
|
154
|
+
return new TailWebsocketMessage().fromJsonString(jsonString, options);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
static equals(a: TailWebsocketMessage | PlainMessage<TailWebsocketMessage> | undefined, b: TailWebsocketMessage | PlainMessage<TailWebsocketMessage> | undefined): boolean {
|
|
158
|
+
return proto3.util.equals(TailWebsocketMessage, a, b);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* @generated from enum liquidmetal.v1alpha1.TailWebsocketMessage.Outcome
|
|
164
|
+
*/
|
|
165
|
+
export enum TailWebsocketMessage_Outcome {
|
|
166
|
+
/**
|
|
167
|
+
* @generated from enum value: OUTCOME_UNSPECIFIED = 0;
|
|
168
|
+
*/
|
|
169
|
+
UNSPECIFIED = 0,
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* @generated from enum value: OUTCOME_OK = 1;
|
|
173
|
+
*/
|
|
174
|
+
OK = 1,
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* @generated from enum value: OUTCOME_CANCELLED = 2;
|
|
178
|
+
*/
|
|
179
|
+
CANCELLED = 2,
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* @generated from enum value: OUTCOME_EXCEPTION = 3;
|
|
183
|
+
*/
|
|
184
|
+
EXCEPTION = 3,
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* @generated from enum value: OUTCOME_EXCEEDED_CPU = 4;
|
|
188
|
+
*/
|
|
189
|
+
EXCEEDED_CPU = 4,
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* @generated from enum value: OUTCOME_EXCEEDED_MEMORY = 5;
|
|
193
|
+
*/
|
|
194
|
+
EXCEEDED_MEMORY = 5,
|
|
195
|
+
}
|
|
196
|
+
// Retrieve enum metadata with: proto3.getEnumType(TailWebsocketMessage_Outcome)
|
|
197
|
+
proto3.util.setEnumType(TailWebsocketMessage_Outcome, "liquidmetal.v1alpha1.TailWebsocketMessage.Outcome", [
|
|
198
|
+
{ no: 0, name: "OUTCOME_UNSPECIFIED" },
|
|
199
|
+
{ no: 1, name: "OUTCOME_OK" },
|
|
200
|
+
{ no: 2, name: "OUTCOME_CANCELLED" },
|
|
201
|
+
{ no: 3, name: "OUTCOME_EXCEPTION" },
|
|
202
|
+
{ no: 4, name: "OUTCOME_EXCEEDED_CPU" },
|
|
203
|
+
{ no: 5, name: "OUTCOME_EXCEEDED_MEMORY" },
|
|
204
|
+
]);
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* @generated from message liquidmetal.v1alpha1.TailWebsocketMessage.Exception
|
|
208
|
+
*/
|
|
209
|
+
export class TailWebsocketMessage_Exception extends Message<TailWebsocketMessage_Exception> {
|
|
210
|
+
/**
|
|
211
|
+
* @generated from field: string name = 1;
|
|
212
|
+
*/
|
|
213
|
+
name = "";
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* @generated from field: string message = 2;
|
|
217
|
+
*/
|
|
218
|
+
message = "";
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* @generated from field: google.protobuf.Timestamp timestamp = 3;
|
|
222
|
+
*/
|
|
223
|
+
timestamp?: Timestamp;
|
|
224
|
+
|
|
225
|
+
constructor(data?: PartialMessage<TailWebsocketMessage_Exception>) {
|
|
226
|
+
super();
|
|
227
|
+
proto3.util.initPartial(data, this);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
231
|
+
static readonly typeName = "liquidmetal.v1alpha1.TailWebsocketMessage.Exception";
|
|
232
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
233
|
+
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
234
|
+
{ no: 2, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
235
|
+
{ no: 3, name: "timestamp", kind: "message", T: Timestamp },
|
|
236
|
+
]);
|
|
237
|
+
|
|
238
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TailWebsocketMessage_Exception {
|
|
239
|
+
return new TailWebsocketMessage_Exception().fromBinary(bytes, options);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TailWebsocketMessage_Exception {
|
|
243
|
+
return new TailWebsocketMessage_Exception().fromJson(jsonValue, options);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TailWebsocketMessage_Exception {
|
|
247
|
+
return new TailWebsocketMessage_Exception().fromJsonString(jsonString, options);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
static equals(a: TailWebsocketMessage_Exception | PlainMessage<TailWebsocketMessage_Exception> | undefined, b: TailWebsocketMessage_Exception | PlainMessage<TailWebsocketMessage_Exception> | undefined): boolean {
|
|
251
|
+
return proto3.util.equals(TailWebsocketMessage_Exception, a, b);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
/**
|
|
256
|
+
* @generated from message liquidmetal.v1alpha1.TailWebsocketMessage.Log
|
|
257
|
+
*/
|
|
258
|
+
export class TailWebsocketMessage_Log extends Message<TailWebsocketMessage_Log> {
|
|
259
|
+
/**
|
|
260
|
+
* @generated from field: string message = 1;
|
|
261
|
+
*/
|
|
262
|
+
message = "";
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* @generated from field: liquidmetal.v1alpha1.TailWebsocketMessage.Log.LogLevel level = 2;
|
|
266
|
+
*/
|
|
267
|
+
level = TailWebsocketMessage_Log_LogLevel.UNSPECIFIED;
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* @generated from field: google.protobuf.Timestamp timestamp = 3;
|
|
271
|
+
*/
|
|
272
|
+
timestamp?: Timestamp;
|
|
273
|
+
|
|
274
|
+
constructor(data?: PartialMessage<TailWebsocketMessage_Log>) {
|
|
275
|
+
super();
|
|
276
|
+
proto3.util.initPartial(data, this);
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
280
|
+
static readonly typeName = "liquidmetal.v1alpha1.TailWebsocketMessage.Log";
|
|
281
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
282
|
+
{ no: 1, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
283
|
+
{ no: 2, name: "level", kind: "enum", T: proto3.getEnumType(TailWebsocketMessage_Log_LogLevel) },
|
|
284
|
+
{ no: 3, name: "timestamp", kind: "message", T: Timestamp },
|
|
285
|
+
]);
|
|
286
|
+
|
|
287
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TailWebsocketMessage_Log {
|
|
288
|
+
return new TailWebsocketMessage_Log().fromBinary(bytes, options);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TailWebsocketMessage_Log {
|
|
292
|
+
return new TailWebsocketMessage_Log().fromJson(jsonValue, options);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TailWebsocketMessage_Log {
|
|
296
|
+
return new TailWebsocketMessage_Log().fromJsonString(jsonString, options);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
static equals(a: TailWebsocketMessage_Log | PlainMessage<TailWebsocketMessage_Log> | undefined, b: TailWebsocketMessage_Log | PlainMessage<TailWebsocketMessage_Log> | undefined): boolean {
|
|
300
|
+
return proto3.util.equals(TailWebsocketMessage_Log, a, b);
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
/**
|
|
305
|
+
* @generated from enum liquidmetal.v1alpha1.TailWebsocketMessage.Log.LogLevel
|
|
306
|
+
*/
|
|
307
|
+
export enum TailWebsocketMessage_Log_LogLevel {
|
|
308
|
+
/**
|
|
309
|
+
* @generated from enum value: LOG_LEVEL_UNSPECIFIED = 0;
|
|
310
|
+
*/
|
|
311
|
+
UNSPECIFIED = 0,
|
|
312
|
+
}
|
|
313
|
+
// Retrieve enum metadata with: proto3.getEnumType(TailWebsocketMessage_Log_LogLevel)
|
|
314
|
+
proto3.util.setEnumType(TailWebsocketMessage_Log_LogLevel, "liquidmetal.v1alpha1.TailWebsocketMessage.Log.LogLevel", [
|
|
315
|
+
{ no: 0, name: "LOG_LEVEL_UNSPECIFIED" },
|
|
316
|
+
]);
|
|
317
|
+
|
|
318
|
+
/**
|
|
319
|
+
* @generated from message liquidmetal.v1alpha1.TailWebsocketMessage.RequestEvent
|
|
320
|
+
*/
|
|
321
|
+
export class TailWebsocketMessage_RequestEvent extends Message<TailWebsocketMessage_RequestEvent> {
|
|
322
|
+
/**
|
|
323
|
+
* @generated from field: string url = 1;
|
|
324
|
+
*/
|
|
325
|
+
url = "";
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* @generated from field: string method = 2;
|
|
329
|
+
*/
|
|
330
|
+
method = "";
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* @generated from field: map<string, string> headers = 3;
|
|
334
|
+
*/
|
|
335
|
+
headers: { [key: string]: string } = {};
|
|
336
|
+
|
|
337
|
+
constructor(data?: PartialMessage<TailWebsocketMessage_RequestEvent>) {
|
|
338
|
+
super();
|
|
339
|
+
proto3.util.initPartial(data, this);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
static readonly runtime: typeof proto3 = proto3;
|
|
343
|
+
static readonly typeName = "liquidmetal.v1alpha1.TailWebsocketMessage.RequestEvent";
|
|
344
|
+
static readonly fields: FieldList = proto3.util.newFieldList(() => [
|
|
345
|
+
{ no: 1, name: "url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
346
|
+
{ no: 2, name: "method", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
347
|
+
{ no: 3, name: "headers", kind: "map", K: 9 /* ScalarType.STRING */, V: {kind: "scalar", T: 9 /* ScalarType.STRING */} },
|
|
348
|
+
]);
|
|
349
|
+
|
|
350
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TailWebsocketMessage_RequestEvent {
|
|
351
|
+
return new TailWebsocketMessage_RequestEvent().fromBinary(bytes, options);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TailWebsocketMessage_RequestEvent {
|
|
355
|
+
return new TailWebsocketMessage_RequestEvent().fromJson(jsonValue, options);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TailWebsocketMessage_RequestEvent {
|
|
359
|
+
return new TailWebsocketMessage_RequestEvent().fromJsonString(jsonString, options);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
static equals(a: TailWebsocketMessage_RequestEvent | PlainMessage<TailWebsocketMessage_RequestEvent> | undefined, b: TailWebsocketMessage_RequestEvent | PlainMessage<TailWebsocketMessage_RequestEvent> | undefined): boolean {
|
|
363
|
+
return proto3.util.equals(TailWebsocketMessage_RequestEvent, a, b);
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
|
package/src/unsafe/codestore.ts
CHANGED
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/codestore.test.ts","./src/codestore.ts","./src/appify/build.test.ts","./src/appify/build.ts","./src/appify/index.test.ts","./src/appify/index.ts","./src/appify/parse.test.ts","./src/appify/parse.ts","./src/appify/validate.test.ts","./src/appify/validate.ts","./src/liquidmetal/v1alpha1/catalog_connect.ts","./src/liquidmetal/v1alpha1/catalog_pb.ts","./src/liquidmetal/v1alpha1/rainbow_auth_connect.ts","./src/liquidmetal/v1alpha1/rainbow_auth_pb.ts","./src/liquidmetal/v1alpha1/raindrop_pb.ts","./src/unsafe/codestore.test.ts","./src/unsafe/codestore.ts"],"version":"5.6.3"}
|
|
1
|
+
{"root":["./src/codestore.test.ts","./src/codestore.ts","./src/appify/build.test.ts","./src/appify/build.ts","./src/appify/index.test.ts","./src/appify/index.ts","./src/appify/parse.test.ts","./src/appify/parse.ts","./src/appify/validate.test.ts","./src/appify/validate.ts","./src/liquidmetal/v1alpha1/catalog_connect.ts","./src/liquidmetal/v1alpha1/catalog_pb.ts","./src/liquidmetal/v1alpha1/rainbow_auth_connect.ts","./src/liquidmetal/v1alpha1/rainbow_auth_pb.ts","./src/liquidmetal/v1alpha1/rainbow_public_connect.ts","./src/liquidmetal/v1alpha1/rainbow_public_pb.ts","./src/liquidmetal/v1alpha1/raindrop_pb.ts","./src/unsafe/codestore.test.ts","./src/unsafe/codestore.ts"],"version":"5.6.3"}
|