kurtosis-sdk 0.85.1 → 0.85.3
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/build/engine/kurtosis_engine_rpc_api_bindings/connect/engine_service_pb.d.ts +5 -2
- package/build/engine/kurtosis_engine_rpc_api_bindings/connect/engine_service_pb.js +1 -2
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_pb.d.ts +6 -0
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_pb.js +52 -1
- package/build/kurtosis_version/kurtosis_version.js +1 -1
- package/package.json +1 -1
|
@@ -719,8 +719,6 @@ export declare class GetServiceLogsResponse extends Message<GetServiceLogsRespon
|
|
|
719
719
|
}
|
|
720
720
|
|
|
721
721
|
/**
|
|
722
|
-
* TODO add timestamp as well, for when we do timestamp-handling on the client side
|
|
723
|
-
*
|
|
724
722
|
* @generated from message engine_api.LogLine
|
|
725
723
|
*/
|
|
726
724
|
export declare class LogLine extends Message<LogLine> {
|
|
@@ -729,6 +727,11 @@ export declare class LogLine extends Message<LogLine> {
|
|
|
729
727
|
*/
|
|
730
728
|
line: string[];
|
|
731
729
|
|
|
730
|
+
/**
|
|
731
|
+
* @generated from field: google.protobuf.Timestamp timestamp = 2;
|
|
732
|
+
*/
|
|
733
|
+
timestamp?: Timestamp;
|
|
734
|
+
|
|
732
735
|
constructor(data?: PartialMessage<LogLine>);
|
|
733
736
|
|
|
734
737
|
static readonly runtime: typeof proto3;
|
|
@@ -279,14 +279,13 @@ export const GetServiceLogsResponse = proto3.makeMessageType(
|
|
|
279
279
|
);
|
|
280
280
|
|
|
281
281
|
/**
|
|
282
|
-
* TODO add timestamp as well, for when we do timestamp-handling on the client side
|
|
283
|
-
*
|
|
284
282
|
* @generated from message engine_api.LogLine
|
|
285
283
|
*/
|
|
286
284
|
export const LogLine = proto3.makeMessageType(
|
|
287
285
|
"engine_api.LogLine",
|
|
288
286
|
() => [
|
|
289
287
|
{ no: 1, name: "line", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
288
|
+
{ no: 2, name: "timestamp", kind: "message", T: Timestamp },
|
|
290
289
|
],
|
|
291
290
|
);
|
|
292
291
|
|
|
@@ -464,6 +464,11 @@ export class LogLine extends jspb.Message {
|
|
|
464
464
|
clearLineList(): LogLine;
|
|
465
465
|
addLine(value: string, index?: number): LogLine;
|
|
466
466
|
|
|
467
|
+
getTimestamp(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
468
|
+
setTimestamp(value?: google_protobuf_timestamp_pb.Timestamp): LogLine;
|
|
469
|
+
hasTimestamp(): boolean;
|
|
470
|
+
clearTimestamp(): LogLine;
|
|
471
|
+
|
|
467
472
|
serializeBinary(): Uint8Array;
|
|
468
473
|
toObject(includeInstance?: boolean): LogLine.AsObject;
|
|
469
474
|
static toObject(includeInstance: boolean, msg: LogLine): LogLine.AsObject;
|
|
@@ -475,6 +480,7 @@ export class LogLine extends jspb.Message {
|
|
|
475
480
|
export namespace LogLine {
|
|
476
481
|
export type AsObject = {
|
|
477
482
|
lineList: Array<string>,
|
|
483
|
+
timestamp?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
478
484
|
}
|
|
479
485
|
}
|
|
480
486
|
|
|
@@ -3594,7 +3594,8 @@ proto.engine_api.LogLine.prototype.toObject = function(opt_includeInstance) {
|
|
|
3594
3594
|
*/
|
|
3595
3595
|
proto.engine_api.LogLine.toObject = function(includeInstance, msg) {
|
|
3596
3596
|
var f, obj = {
|
|
3597
|
-
lineList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f
|
|
3597
|
+
lineList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
3598
|
+
timestamp: (f = msg.getTimestamp()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f)
|
|
3598
3599
|
};
|
|
3599
3600
|
|
|
3600
3601
|
if (includeInstance) {
|
|
@@ -3635,6 +3636,11 @@ proto.engine_api.LogLine.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
3635
3636
|
var value = /** @type {string} */ (reader.readString());
|
|
3636
3637
|
msg.addLine(value);
|
|
3637
3638
|
break;
|
|
3639
|
+
case 2:
|
|
3640
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
3641
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
3642
|
+
msg.setTimestamp(value);
|
|
3643
|
+
break;
|
|
3638
3644
|
default:
|
|
3639
3645
|
reader.skipField();
|
|
3640
3646
|
break;
|
|
@@ -3671,6 +3677,14 @@ proto.engine_api.LogLine.serializeBinaryToWriter = function(message, writer) {
|
|
|
3671
3677
|
f
|
|
3672
3678
|
);
|
|
3673
3679
|
}
|
|
3680
|
+
f = message.getTimestamp();
|
|
3681
|
+
if (f != null) {
|
|
3682
|
+
writer.writeMessage(
|
|
3683
|
+
2,
|
|
3684
|
+
f,
|
|
3685
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
3686
|
+
);
|
|
3687
|
+
}
|
|
3674
3688
|
};
|
|
3675
3689
|
|
|
3676
3690
|
|
|
@@ -3711,6 +3725,43 @@ proto.engine_api.LogLine.prototype.clearLineList = function() {
|
|
|
3711
3725
|
};
|
|
3712
3726
|
|
|
3713
3727
|
|
|
3728
|
+
/**
|
|
3729
|
+
* optional google.protobuf.Timestamp timestamp = 2;
|
|
3730
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
3731
|
+
*/
|
|
3732
|
+
proto.engine_api.LogLine.prototype.getTimestamp = function() {
|
|
3733
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
3734
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 2));
|
|
3735
|
+
};
|
|
3736
|
+
|
|
3737
|
+
|
|
3738
|
+
/**
|
|
3739
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
3740
|
+
* @return {!proto.engine_api.LogLine} returns this
|
|
3741
|
+
*/
|
|
3742
|
+
proto.engine_api.LogLine.prototype.setTimestamp = function(value) {
|
|
3743
|
+
return jspb.Message.setWrapperField(this, 2, value);
|
|
3744
|
+
};
|
|
3745
|
+
|
|
3746
|
+
|
|
3747
|
+
/**
|
|
3748
|
+
* Clears the message field making it undefined.
|
|
3749
|
+
* @return {!proto.engine_api.LogLine} returns this
|
|
3750
|
+
*/
|
|
3751
|
+
proto.engine_api.LogLine.prototype.clearTimestamp = function() {
|
|
3752
|
+
return this.setTimestamp(undefined);
|
|
3753
|
+
};
|
|
3754
|
+
|
|
3755
|
+
|
|
3756
|
+
/**
|
|
3757
|
+
* Returns whether this field is set.
|
|
3758
|
+
* @return {boolean}
|
|
3759
|
+
*/
|
|
3760
|
+
proto.engine_api.LogLine.prototype.hasTimestamp = function() {
|
|
3761
|
+
return jspb.Message.getField(this, 2) != null;
|
|
3762
|
+
};
|
|
3763
|
+
|
|
3764
|
+
|
|
3714
3765
|
|
|
3715
3766
|
|
|
3716
3767
|
|
|
@@ -4,5 +4,5 @@ exports.KURTOSIS_VERSION = void 0;
|
|
|
4
4
|
// !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!!
|
|
5
5
|
// This is necessary so that Kurt Core consumers (e.g. modules) will know if they're compatible with the currently-running
|
|
6
6
|
// API container
|
|
7
|
-
exports.KURTOSIS_VERSION = "0.85.
|
|
7
|
+
exports.KURTOSIS_VERSION = "0.85.3";
|
|
8
8
|
// !!!!!!!!!!! DO NOT UPDATE! WILL BE MANUALLY UPDATED DURING THE RELEASE PROCESS !!!!!!!!!!!!!!!!!!!!!!
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kurtosis-sdk",
|
|
3
3
|
"//": "NOTE: DO NOT UPDATE THIS VERSION MANUALLY - IT WILL BE UPDATED DURING THE RELEASE PROCESS!",
|
|
4
|
-
"version": "0.85.
|
|
4
|
+
"version": "0.85.3",
|
|
5
5
|
"main": "./build/index",
|
|
6
6
|
"description": "This repo contains a Typescript client for communicating with the Kurtosis Engine server, which is responsible for creating, managing and destroying Kurtosis Enclaves.",
|
|
7
7
|
"types": "./build/index",
|