kurtosis-sdk 0.52.0 → 0.52.2

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.
@@ -4,11 +4,7 @@
4
4
  * @public
5
5
  */
6
6
 
7
- // Code generated by protoc-gen-grpc-web. DO NOT EDIT.
8
- // versions:
9
- // protoc-gen-grpc-web v1.4.2
10
- // protoc v3.15.6
11
- // source: api_container_service.proto
7
+ // GENERATED CODE -- DO NOT EDIT!
12
8
 
13
9
 
14
10
  /* eslint-disable */
@@ -49,7 +45,7 @@ proto.api_container_api.ApiContainerServiceClient =
49
45
  /**
50
46
  * @private @const {string} The hostname
51
47
  */
52
- this.hostname_ = hostname.replace(/\/+$/, '');
48
+ this.hostname_ = hostname;
53
49
 
54
50
  };
55
51
 
@@ -75,7 +71,7 @@ proto.api_container_api.ApiContainerServicePromiseClient =
75
71
  /**
76
72
  * @private @const {string} The hostname
77
73
  */
78
- this.hostname_ = hostname.replace(/\/+$/, '');
74
+ this.hostname_ = hostname;
79
75
 
80
76
  };
81
77
 
@@ -1240,6 +1240,11 @@ export class HttpRequestFactRecipe extends jspb.Message {
1240
1240
  getBody(): string;
1241
1241
  setBody(value: string): HttpRequestFactRecipe;
1242
1242
 
1243
+ getFieldExtractor(): string;
1244
+ setFieldExtractor(value: string): HttpRequestFactRecipe;
1245
+ hasFieldExtractor(): boolean;
1246
+ clearFieldExtractor(): HttpRequestFactRecipe;
1247
+
1243
1248
  serializeBinary(): Uint8Array;
1244
1249
  toObject(includeInstance?: boolean): HttpRequestFactRecipe.AsObject;
1245
1250
  static toObject(includeInstance: boolean, msg: HttpRequestFactRecipe): HttpRequestFactRecipe.AsObject;
@@ -1255,6 +1260,12 @@ export namespace HttpRequestFactRecipe {
1255
1260
  method: HttpRequestMethod,
1256
1261
  contentType: string,
1257
1262
  body: string,
1263
+ fieldExtractor?: string,
1264
+ }
1265
+
1266
+ export enum FieldExtractorCase {
1267
+ _FIELD_EXTRACTOR_NOT_SET = 0,
1268
+ FIELD_EXTRACTOR = 6,
1258
1269
  }
1259
1270
  }
1260
1271
 
@@ -10172,7 +10172,8 @@ proto.api_container_api.HttpRequestFactRecipe.toObject = function(includeInstanc
10172
10172
  endpoint: jspb.Message.getFieldWithDefault(msg, 2, ""),
10173
10173
  method: jspb.Message.getFieldWithDefault(msg, 3, 0),
10174
10174
  contentType: jspb.Message.getFieldWithDefault(msg, 4, ""),
10175
- body: jspb.Message.getFieldWithDefault(msg, 5, "")
10175
+ body: jspb.Message.getFieldWithDefault(msg, 5, ""),
10176
+ fieldExtractor: jspb.Message.getFieldWithDefault(msg, 6, "")
10176
10177
  };
10177
10178
 
10178
10179
  if (includeInstance) {
@@ -10229,6 +10230,10 @@ proto.api_container_api.HttpRequestFactRecipe.deserializeBinaryFromReader = func
10229
10230
  var value = /** @type {string} */ (reader.readString());
10230
10231
  msg.setBody(value);
10231
10232
  break;
10233
+ case 6:
10234
+ var value = /** @type {string} */ (reader.readString());
10235
+ msg.setFieldExtractor(value);
10236
+ break;
10232
10237
  default:
10233
10238
  reader.skipField();
10234
10239
  break;
@@ -10293,6 +10298,13 @@ proto.api_container_api.HttpRequestFactRecipe.serializeBinaryToWriter = function
10293
10298
  f
10294
10299
  );
10295
10300
  }
10301
+ f = /** @type {string} */ (jspb.Message.getField(message, 6));
10302
+ if (f != null) {
10303
+ writer.writeString(
10304
+ 6,
10305
+ f
10306
+ );
10307
+ }
10296
10308
  };
10297
10309
 
10298
10310
 
@@ -10386,6 +10398,42 @@ proto.api_container_api.HttpRequestFactRecipe.prototype.setBody = function(value
10386
10398
  };
10387
10399
 
10388
10400
 
10401
+ /**
10402
+ * optional string field_extractor = 6;
10403
+ * @return {string}
10404
+ */
10405
+ proto.api_container_api.HttpRequestFactRecipe.prototype.getFieldExtractor = function() {
10406
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
10407
+ };
10408
+
10409
+
10410
+ /**
10411
+ * @param {string} value
10412
+ * @return {!proto.api_container_api.HttpRequestFactRecipe} returns this
10413
+ */
10414
+ proto.api_container_api.HttpRequestFactRecipe.prototype.setFieldExtractor = function(value) {
10415
+ return jspb.Message.setField(this, 6, value);
10416
+ };
10417
+
10418
+
10419
+ /**
10420
+ * Clears the field making it undefined.
10421
+ * @return {!proto.api_container_api.HttpRequestFactRecipe} returns this
10422
+ */
10423
+ proto.api_container_api.HttpRequestFactRecipe.prototype.clearFieldExtractor = function() {
10424
+ return jspb.Message.setField(this, 6, undefined);
10425
+ };
10426
+
10427
+
10428
+ /**
10429
+ * Returns whether this field is set.
10430
+ * @return {boolean}
10431
+ */
10432
+ proto.api_container_api.HttpRequestFactRecipe.prototype.hasFieldExtractor = function() {
10433
+ return jspb.Message.getField(this, 6) != null;
10434
+ };
10435
+
10436
+
10389
10437
 
10390
10438
  /**
10391
10439
  * Oneof group definitions for this message. Each group defines the field
@@ -4,11 +4,7 @@
4
4
  * @public
5
5
  */
6
6
 
7
- // Code generated by protoc-gen-grpc-web. DO NOT EDIT.
8
- // versions:
9
- // protoc-gen-grpc-web v1.4.2
10
- // protoc v3.15.6
11
- // source: executable_module_service.proto
7
+ // GENERATED CODE -- DO NOT EDIT!
12
8
 
13
9
 
14
10
  /* eslint-disable */
@@ -45,7 +41,7 @@ proto.module_api.ExecutableModuleServiceClient =
45
41
  /**
46
42
  * @private @const {string} The hostname
47
43
  */
48
- this.hostname_ = hostname.replace(/\/+$/, '');
44
+ this.hostname_ = hostname;
49
45
 
50
46
  };
51
47
 
@@ -71,7 +67,7 @@ proto.module_api.ExecutableModuleServicePromiseClient =
71
67
  /**
72
68
  * @private @const {string} The hostname
73
69
  */
74
- this.hostname_ = hostname.replace(/\/+$/, '');
70
+ this.hostname_ = hostname;
75
71
 
76
72
  };
77
73
 
@@ -4,11 +4,7 @@
4
4
  * @public
5
5
  */
6
6
 
7
- // Code generated by protoc-gen-grpc-web. DO NOT EDIT.
8
- // versions:
9
- // protoc-gen-grpc-web v1.4.2
10
- // protoc v3.15.6
11
- // source: engine_service.proto
7
+ // GENERATED CODE -- DO NOT EDIT!
12
8
 
13
9
 
14
10
  /* eslint-disable */
@@ -45,7 +41,7 @@ proto.engine_api.EngineServiceClient =
45
41
  /**
46
42
  * @private @const {string} The hostname
47
43
  */
48
- this.hostname_ = hostname.replace(/\/+$/, '');
44
+ this.hostname_ = hostname;
49
45
 
50
46
  };
51
47
 
@@ -71,7 +67,7 @@ proto.engine_api.EngineServicePromiseClient =
71
67
  /**
72
68
  * @private @const {string} The hostname
73
69
  */
74
- this.hostname_ = hostname.replace(/\/+$/, '');
70
+ this.hostname_ = hostname;
75
71
 
76
72
  };
77
73
 
@@ -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.52.0";
7
+ exports.KURTOSIS_VERSION = "0.52.2";
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.52.0",
4
+ "version": "0.52.2",
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",