kurtosis-sdk 0.88.13 → 0.88.15

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.
@@ -1,7 +1,7 @@
1
1
  import * as grpcWeb from 'grpc-web';
2
2
 
3
- import * as api_container_service_pb from './api_container_service_pb';
4
- import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
3
+ import * as api_container_service_pb from './api_container_service_pb'; // proto import: "api_container_service.proto"
4
+ import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb'; // proto import: "google/protobuf/empty.proto"
5
5
 
6
6
 
7
7
  export class ApiContainerServiceClient {
@@ -6,7 +6,7 @@
6
6
 
7
7
  // Code generated by protoc-gen-grpc-web. DO NOT EDIT.
8
8
  // versions:
9
- // protoc-gen-grpc-web v1.4.2
9
+ // protoc-gen-grpc-web v1.5.0
10
10
  // protoc v3.19.1
11
11
  // source: api_container_service.proto
12
12
 
@@ -1,6 +1,6 @@
1
1
  import * as jspb from 'google-protobuf'
2
2
 
3
- import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
3
+ import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb'; // proto import: "google/protobuf/empty.proto"
4
4
 
5
5
 
6
6
  export class Port extends jspb.Message {
@@ -16,6 +16,11 @@ export class Port extends jspb.Message {
16
16
  getMaybeWaitTimeout(): string;
17
17
  setMaybeWaitTimeout(value: string): Port;
18
18
 
19
+ getLocked(): boolean;
20
+ setLocked(value: boolean): Port;
21
+ hasLocked(): boolean;
22
+ clearLocked(): Port;
23
+
19
24
  serializeBinary(): Uint8Array;
20
25
  toObject(includeInstance?: boolean): Port.AsObject;
21
26
  static toObject(includeInstance: boolean, msg: Port): Port.AsObject;
@@ -30,6 +35,7 @@ export namespace Port {
30
35
  transportProtocol: Port.TransportProtocol,
31
36
  maybeApplicationProtocol: string,
32
37
  maybeWaitTimeout: string,
38
+ locked?: boolean,
33
39
  }
34
40
 
35
41
  export enum TransportProtocol {
@@ -37,6 +43,11 @@ export namespace Port {
37
43
  SCTP = 1,
38
44
  UDP = 2,
39
45
  }
46
+
47
+ export enum LockedCase {
48
+ _LOCKED_NOT_SET = 0,
49
+ LOCKED = 5,
50
+ }
40
51
  }
41
52
 
42
53
  export class Container extends jspb.Message {
@@ -1058,7 +1058,8 @@ proto.api_container_api.Port.toObject = function(includeInstance, msg) {
1058
1058
  number: jspb.Message.getFieldWithDefault(msg, 1, 0),
1059
1059
  transportProtocol: jspb.Message.getFieldWithDefault(msg, 2, 0),
1060
1060
  maybeApplicationProtocol: jspb.Message.getFieldWithDefault(msg, 3, ""),
1061
- maybeWaitTimeout: jspb.Message.getFieldWithDefault(msg, 4, "")
1061
+ maybeWaitTimeout: jspb.Message.getFieldWithDefault(msg, 4, ""),
1062
+ locked: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
1062
1063
  };
1063
1064
 
1064
1065
  if (includeInstance) {
@@ -1111,6 +1112,10 @@ proto.api_container_api.Port.deserializeBinaryFromReader = function(msg, reader)
1111
1112
  var value = /** @type {string} */ (reader.readString());
1112
1113
  msg.setMaybeWaitTimeout(value);
1113
1114
  break;
1115
+ case 5:
1116
+ var value = /** @type {boolean} */ (reader.readBool());
1117
+ msg.setLocked(value);
1118
+ break;
1114
1119
  default:
1115
1120
  reader.skipField();
1116
1121
  break;
@@ -1168,6 +1173,13 @@ proto.api_container_api.Port.serializeBinaryToWriter = function(message, writer)
1168
1173
  f
1169
1174
  );
1170
1175
  }
1176
+ f = /** @type {boolean} */ (jspb.Message.getField(message, 5));
1177
+ if (f != null) {
1178
+ writer.writeBool(
1179
+ 5,
1180
+ f
1181
+ );
1182
+ }
1171
1183
  };
1172
1184
 
1173
1185
 
@@ -1252,6 +1264,42 @@ proto.api_container_api.Port.prototype.setMaybeWaitTimeout = function(value) {
1252
1264
  };
1253
1265
 
1254
1266
 
1267
+ /**
1268
+ * optional bool locked = 5;
1269
+ * @return {boolean}
1270
+ */
1271
+ proto.api_container_api.Port.prototype.getLocked = function() {
1272
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
1273
+ };
1274
+
1275
+
1276
+ /**
1277
+ * @param {boolean} value
1278
+ * @return {!proto.api_container_api.Port} returns this
1279
+ */
1280
+ proto.api_container_api.Port.prototype.setLocked = function(value) {
1281
+ return jspb.Message.setField(this, 5, value);
1282
+ };
1283
+
1284
+
1285
+ /**
1286
+ * Clears the field making it undefined.
1287
+ * @return {!proto.api_container_api.Port} returns this
1288
+ */
1289
+ proto.api_container_api.Port.prototype.clearLocked = function() {
1290
+ return jspb.Message.setField(this, 5, undefined);
1291
+ };
1292
+
1293
+
1294
+ /**
1295
+ * Returns whether this field is set.
1296
+ * @return {boolean}
1297
+ */
1298
+ proto.api_container_api.Port.prototype.hasLocked = function() {
1299
+ return jspb.Message.getField(this, 5) != null;
1300
+ };
1301
+
1302
+
1255
1303
 
1256
1304
  /**
1257
1305
  * List of repeated fields within this message type.
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-connect-es v1.3.0 with parameter "target=js+dts"
1
+ // @generated by protoc-gen-connect-es v0.13.2 with parameter "target=js+dts"
2
2
  // @generated from file api_container_service.proto (package api_container_api, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-connect-es v1.3.0 with parameter "target=js+dts"
1
+ // @generated by protoc-gen-connect-es v0.13.2 with parameter "target=js+dts"
2
2
  // @generated from file api_container_service.proto (package api_container_api, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
1
+ // @generated by protoc-gen-es v1.5.1 with parameter "target=js+dts"
2
2
  // @generated from file api_container_service.proto (package api_container_api, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
@@ -122,6 +122,13 @@ export declare class Port extends Message<Port> {
122
122
  */
123
123
  maybeWaitTimeout: string;
124
124
 
125
+ /**
126
+ * this is useful in the cloud context; ignore in local
127
+ *
128
+ * @generated from field: optional bool locked = 5;
129
+ */
130
+ locked?: boolean;
131
+
125
132
  constructor(data?: PartialMessage<Port>);
126
133
 
127
134
  static readonly runtime: typeof proto3;
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
1
+ // @generated by protoc-gen-es v1.5.1 with parameter "target=js+dts"
2
2
  // @generated from file api_container_service.proto (package api_container_api, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
@@ -76,6 +76,7 @@ export const Port = proto3.makeMessageType(
76
76
  { no: 2, name: "transport_protocol", kind: "enum", T: proto3.getEnumType(Port_TransportProtocol) },
77
77
  { no: 3, name: "maybe_application_protocol", kind: "scalar", T: 9 /* ScalarType.STRING */ },
78
78
  { no: 4, name: "maybe_wait_timeout", kind: "scalar", T: 9 /* ScalarType.STRING */ },
79
+ { no: 5, name: "locked", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
79
80
  ],
80
81
  );
81
82
 
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-connect-es v1.3.0 with parameter "target=js+dts"
1
+ // @generated by protoc-gen-connect-es v0.13.2 with parameter "target=js+dts"
2
2
  // @generated from file engine_service.proto (package engine_api, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-connect-es v1.3.0 with parameter "target=js+dts"
1
+ // @generated by protoc-gen-connect-es v0.13.2 with parameter "target=js+dts"
2
2
  // @generated from file engine_service.proto (package engine_api, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
1
+ // @generated by protoc-gen-es v1.5.1 with parameter "target=js+dts"
2
2
  // @generated from file engine_service.proto (package engine_api, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
@@ -1,4 +1,4 @@
1
- // @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
1
+ // @generated by protoc-gen-es v1.5.1 with parameter "target=js+dts"
2
2
  // @generated from file engine_service.proto (package engine_api, syntax proto3)
3
3
  /* eslint-disable */
4
4
  // @ts-nocheck
@@ -1,7 +1,7 @@
1
1
  import * as grpcWeb from 'grpc-web';
2
2
 
3
- import * as engine_service_pb from './engine_service_pb';
4
- import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
3
+ import * as engine_service_pb from './engine_service_pb'; // proto import: "engine_service.proto"
4
+ import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb'; // proto import: "google/protobuf/empty.proto"
5
5
 
6
6
 
7
7
  export class EngineServiceClient {
@@ -6,7 +6,7 @@
6
6
 
7
7
  // Code generated by protoc-gen-grpc-web. DO NOT EDIT.
8
8
  // versions:
9
- // protoc-gen-grpc-web v1.4.2
9
+ // protoc-gen-grpc-web v1.5.0
10
10
  // protoc v3.19.1
11
11
  // source: engine_service.proto
12
12
 
@@ -1,7 +1,7 @@
1
1
  import * as jspb from 'google-protobuf'
2
2
 
3
- import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb';
4
- import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb';
3
+ import * as google_protobuf_empty_pb from 'google-protobuf/google/protobuf/empty_pb'; // proto import: "google/protobuf/empty.proto"
4
+ import * as google_protobuf_timestamp_pb from 'google-protobuf/google/protobuf/timestamp_pb'; // proto import: "google/protobuf/timestamp.proto"
5
5
 
6
6
 
7
7
  export class GetEngineInfoResponse extends jspb.Message {
@@ -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.88.13";
7
+ exports.KURTOSIS_VERSION = "0.88.15";
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.88.13",
4
+ "version": "0.88.15",
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",