@pulumi/pulumi 3.128.0-alpha.xe9ebdab → 3.128.1-alpha.x1416a34

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.128.0-alpha.xe9ebdab",
3
+ "version": "3.128.1-alpha.x1416a34",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -711,6 +711,8 @@ export class GeneratePackageRequest extends jspb.Message {
711
711
 
712
712
  getLocalDependenciesMap(): jspb.Map<string, string>;
713
713
  clearLocalDependenciesMap(): void;
714
+ getLocal(): boolean;
715
+ setLocal(value: boolean): GeneratePackageRequest;
714
716
 
715
717
  serializeBinary(): Uint8Array;
716
718
  toObject(includeInstance?: boolean): GeneratePackageRequest.AsObject;
@@ -731,6 +733,7 @@ export namespace GeneratePackageRequest {
731
733
  loaderTarget: string,
732
734
 
733
735
  localDependenciesMap: Array<[string, string]>,
736
+ local: boolean,
734
737
  }
735
738
  }
736
739
 
@@ -5703,7 +5703,8 @@ proto.pulumirpc.GeneratePackageRequest.toObject = function(includeInstance, msg)
5703
5703
  schema: jspb.Message.getFieldWithDefault(msg, 2, ""),
5704
5704
  extraFilesMap: (f = msg.getExtraFilesMap()) ? f.toObject(includeInstance, undefined) : [],
5705
5705
  loaderTarget: jspb.Message.getFieldWithDefault(msg, 4, ""),
5706
- localDependenciesMap: (f = msg.getLocalDependenciesMap()) ? f.toObject(includeInstance, undefined) : []
5706
+ localDependenciesMap: (f = msg.getLocalDependenciesMap()) ? f.toObject(includeInstance, undefined) : [],
5707
+ local: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
5707
5708
  };
5708
5709
 
5709
5710
  if (includeInstance) {
@@ -5764,6 +5765,10 @@ proto.pulumirpc.GeneratePackageRequest.deserializeBinaryFromReader = function(ms
5764
5765
  jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, "", "");
5765
5766
  });
5766
5767
  break;
5768
+ case 6:
5769
+ var value = /** @type {boolean} */ (reader.readBool());
5770
+ msg.setLocal(value);
5771
+ break;
5767
5772
  default:
5768
5773
  reader.skipField();
5769
5774
  break;
@@ -5822,6 +5827,13 @@ proto.pulumirpc.GeneratePackageRequest.serializeBinaryToWriter = function(messag
5822
5827
  if (f && f.getLength() > 0) {
5823
5828
  f.serializeBinary(5, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeString);
5824
5829
  }
5830
+ f = message.getLocal();
5831
+ if (f) {
5832
+ writer.writeBool(
5833
+ 6,
5834
+ f
5835
+ );
5836
+ }
5825
5837
  };
5826
5838
 
5827
5839
 
@@ -5923,6 +5935,24 @@ proto.pulumirpc.GeneratePackageRequest.prototype.clearLocalDependenciesMap = fun
5923
5935
  return this;};
5924
5936
 
5925
5937
 
5938
+ /**
5939
+ * optional bool local = 6;
5940
+ * @return {boolean}
5941
+ */
5942
+ proto.pulumirpc.GeneratePackageRequest.prototype.getLocal = function() {
5943
+ return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 6, false));
5944
+ };
5945
+
5946
+
5947
+ /**
5948
+ * @param {boolean} value
5949
+ * @return {!proto.pulumirpc.GeneratePackageRequest} returns this
5950
+ */
5951
+ proto.pulumirpc.GeneratePackageRequest.prototype.setLocal = function(value) {
5952
+ return jspb.Message.setProto3BooleanField(this, 6, value);
5953
+ };
5954
+
5955
+
5926
5956
 
5927
5957
  /**
5928
5958
  * List of repeated fields within this message type.
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "3.128.0";
1
+ export declare const version = "3.128.1";
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.128.0-alpha.xe9ebdab";
16
+ exports.version = "3.128.1-alpha.x1416a34";
17
17
  //# sourceMappingURL=version.js.map