kurtosis-sdk 0.80.12 → 0.80.13
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/core/kurtosis_core_rpc_api_bindings/api_container_service_grpc_web_pb.js +1 -1
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_pb.d.ts +4 -0
- package/build/core/kurtosis_core_rpc_api_bindings/api_container_service_pb.js +38 -2
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_grpc_web_pb.js +1 -1
- package/build/engine/kurtosis_engine_rpc_api_bindings/engine_service_pb.js +7 -1
- package/build/kurtosis_version/kurtosis_version.js +1 -1
- package/package.json +1 -1
|
@@ -344,6 +344,9 @@ export class StarlarkInstruction extends jspb.Message {
|
|
|
344
344
|
getExecutableInstruction(): string;
|
|
345
345
|
setExecutableInstruction(value: string): StarlarkInstruction;
|
|
346
346
|
|
|
347
|
+
getIsSkipped(): boolean;
|
|
348
|
+
setIsSkipped(value: boolean): StarlarkInstruction;
|
|
349
|
+
|
|
347
350
|
serializeBinary(): Uint8Array;
|
|
348
351
|
toObject(includeInstance?: boolean): StarlarkInstruction.AsObject;
|
|
349
352
|
static toObject(includeInstance: boolean, msg: StarlarkInstruction): StarlarkInstruction.AsObject;
|
|
@@ -358,6 +361,7 @@ export namespace StarlarkInstruction {
|
|
|
358
361
|
instructionName: string,
|
|
359
362
|
argumentsList: Array<StarlarkInstructionArg.AsObject>,
|
|
360
363
|
executableInstruction: string,
|
|
364
|
+
isSkipped: boolean,
|
|
361
365
|
}
|
|
362
366
|
}
|
|
363
367
|
|
|
@@ -13,7 +13,13 @@
|
|
|
13
13
|
|
|
14
14
|
var jspb = require('google-protobuf');
|
|
15
15
|
var goog = jspb;
|
|
16
|
-
var global =
|
|
16
|
+
var global = (function() {
|
|
17
|
+
if (this) { return this; }
|
|
18
|
+
if (typeof window !== 'undefined') { return window; }
|
|
19
|
+
if (typeof global !== 'undefined') { return global; }
|
|
20
|
+
if (typeof self !== 'undefined') { return self; }
|
|
21
|
+
return Function('return this')();
|
|
22
|
+
}.call(null));
|
|
17
23
|
|
|
18
24
|
var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js');
|
|
19
25
|
goog.object.extend(proto, google_protobuf_empty_pb);
|
|
@@ -3072,7 +3078,8 @@ proto.api_container_api.StarlarkInstruction.toObject = function(includeInstance,
|
|
|
3072
3078
|
instructionName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
3073
3079
|
argumentsList: jspb.Message.toObjectList(msg.getArgumentsList(),
|
|
3074
3080
|
proto.api_container_api.StarlarkInstructionArg.toObject, includeInstance),
|
|
3075
|
-
executableInstruction: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
3081
|
+
executableInstruction: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
3082
|
+
isSkipped: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
|
|
3076
3083
|
};
|
|
3077
3084
|
|
|
3078
3085
|
if (includeInstance) {
|
|
@@ -3127,6 +3134,10 @@ proto.api_container_api.StarlarkInstruction.deserializeBinaryFromReader = functi
|
|
|
3127
3134
|
var value = /** @type {string} */ (reader.readString());
|
|
3128
3135
|
msg.setExecutableInstruction(value);
|
|
3129
3136
|
break;
|
|
3137
|
+
case 5:
|
|
3138
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
3139
|
+
msg.setIsSkipped(value);
|
|
3140
|
+
break;
|
|
3130
3141
|
default:
|
|
3131
3142
|
reader.skipField();
|
|
3132
3143
|
break;
|
|
@@ -3186,6 +3197,13 @@ proto.api_container_api.StarlarkInstruction.serializeBinaryToWriter = function(m
|
|
|
3186
3197
|
f
|
|
3187
3198
|
);
|
|
3188
3199
|
}
|
|
3200
|
+
f = message.getIsSkipped();
|
|
3201
|
+
if (f) {
|
|
3202
|
+
writer.writeBool(
|
|
3203
|
+
5,
|
|
3204
|
+
f
|
|
3205
|
+
);
|
|
3206
|
+
}
|
|
3189
3207
|
};
|
|
3190
3208
|
|
|
3191
3209
|
|
|
@@ -3300,6 +3318,24 @@ proto.api_container_api.StarlarkInstruction.prototype.setExecutableInstruction =
|
|
|
3300
3318
|
};
|
|
3301
3319
|
|
|
3302
3320
|
|
|
3321
|
+
/**
|
|
3322
|
+
* optional bool is_skipped = 5;
|
|
3323
|
+
* @return {boolean}
|
|
3324
|
+
*/
|
|
3325
|
+
proto.api_container_api.StarlarkInstruction.prototype.getIsSkipped = function() {
|
|
3326
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
|
3327
|
+
};
|
|
3328
|
+
|
|
3329
|
+
|
|
3330
|
+
/**
|
|
3331
|
+
* @param {boolean} value
|
|
3332
|
+
* @return {!proto.api_container_api.StarlarkInstruction} returns this
|
|
3333
|
+
*/
|
|
3334
|
+
proto.api_container_api.StarlarkInstruction.prototype.setIsSkipped = function(value) {
|
|
3335
|
+
return jspb.Message.setProto3BooleanField(this, 5, value);
|
|
3336
|
+
};
|
|
3337
|
+
|
|
3338
|
+
|
|
3303
3339
|
|
|
3304
3340
|
|
|
3305
3341
|
|
|
@@ -13,7 +13,13 @@
|
|
|
13
13
|
|
|
14
14
|
var jspb = require('google-protobuf');
|
|
15
15
|
var goog = jspb;
|
|
16
|
-
var global =
|
|
16
|
+
var global = (function() {
|
|
17
|
+
if (this) { return this; }
|
|
18
|
+
if (typeof window !== 'undefined') { return window; }
|
|
19
|
+
if (typeof global !== 'undefined') { return global; }
|
|
20
|
+
if (typeof self !== 'undefined') { return self; }
|
|
21
|
+
return Function('return this')();
|
|
22
|
+
}.call(null));
|
|
17
23
|
|
|
18
24
|
var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js');
|
|
19
25
|
goog.object.extend(proto, google_protobuf_empty_pb);
|
|
@@ -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.80.
|
|
7
|
+
exports.KURTOSIS_VERSION = "0.80.13";
|
|
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.80.
|
|
4
|
+
"version": "0.80.13",
|
|
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",
|