@pulumi/pulumi 3.198.0-alpha.xe854557 → 3.199.0-alpha.x508f06a

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/pulumi",
3
- "version": "3.198.0-alpha.xe854557",
3
+ "version": "3.199.0-alpha.x508f06a",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -926,6 +926,8 @@ export class LinkRequest extends jspb.Message {
926
926
 
927
927
  getLocalDependenciesMap(): jspb.Map<string, string>;
928
928
  clearLocalDependenciesMap(): void;
929
+ getLoaderTarget(): string;
930
+ setLoaderTarget(value: string): LinkRequest;
929
931
 
930
932
  serializeBinary(): Uint8Array;
931
933
  toObject(includeInstance?: boolean): LinkRequest.AsObject;
@@ -942,6 +944,7 @@ export namespace LinkRequest {
942
944
  info?: ProgramInfo.AsObject,
943
945
 
944
946
  localDependenciesMap: Array<[string, string]>,
947
+ loaderTarget: string,
945
948
  }
946
949
  }
947
950
 
@@ -7429,7 +7429,8 @@ proto.pulumirpc.LinkRequest.prototype.toObject = function(opt_includeInstance) {
7429
7429
  proto.pulumirpc.LinkRequest.toObject = function(includeInstance, msg) {
7430
7430
  var f, obj = {
7431
7431
  info: (f = msg.getInfo()) && proto.pulumirpc.ProgramInfo.toObject(includeInstance, f),
7432
- localDependenciesMap: (f = msg.getLocalDependenciesMap()) ? f.toObject(includeInstance, undefined) : []
7432
+ localDependenciesMap: (f = msg.getLocalDependenciesMap()) ? f.toObject(includeInstance, undefined) : [],
7433
+ loaderTarget: jspb.Message.getFieldWithDefault(msg, 3, "")
7433
7434
  };
7434
7435
 
7435
7436
  if (includeInstance) {
@@ -7477,6 +7478,10 @@ proto.pulumirpc.LinkRequest.deserializeBinaryFromReader = function(msg, reader)
7477
7478
  jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
7478
7479
  });
7479
7480
  break;
7481
+ case 3:
7482
+ var value = /** @type {string} */ (reader.readString());
7483
+ msg.setLoaderTarget(value);
7484
+ break;
7480
7485
  default:
7481
7486
  reader.skipField();
7482
7487
  break;
@@ -7518,6 +7523,13 @@ proto.pulumirpc.LinkRequest.serializeBinaryToWriter = function(message, writer)
7518
7523
  if (f && f.getLength() > 0) {
7519
7524
  f.serializeBinary(2, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
7520
7525
  }
7526
+ f = message.getLoaderTarget();
7527
+ if (f.length > 0) {
7528
+ writer.writeString(
7529
+ 3,
7530
+ f
7531
+ );
7532
+ }
7521
7533
  };
7522
7534
 
7523
7535
 
@@ -7581,6 +7593,24 @@ proto.pulumirpc.LinkRequest.prototype.clearLocalDependenciesMap = function() {
7581
7593
  };
7582
7594
 
7583
7595
 
7596
+ /**
7597
+ * optional string loader_target = 3;
7598
+ * @return {string}
7599
+ */
7600
+ proto.pulumirpc.LinkRequest.prototype.getLoaderTarget = function() {
7601
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
7602
+ };
7603
+
7604
+
7605
+ /**
7606
+ * @param {string} value
7607
+ * @return {!proto.pulumirpc.LinkRequest} returns this
7608
+ */
7609
+ proto.pulumirpc.LinkRequest.prototype.setLoaderTarget = function(value) {
7610
+ return jspb.Message.setProto3StringField(this, 3, value);
7611
+ };
7612
+
7613
+
7584
7614
 
7585
7615
 
7586
7616
 
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "3.198.0";
1
+ export declare const version = "3.199.0";
package/version.js CHANGED
@@ -13,5 +13,5 @@
13
13
  // See the License for the specific language governing permissions and
14
14
  // limitations under the License.
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.version = "3.198.0-alpha.xe854557";
16
+ exports.version = "3.199.0-alpha.x508f06a";
17
17
  //# sourceMappingURL=version.js.map