@gadgetinc/dateilager 0.12.3 → 0.12.5

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.
@@ -195,6 +195,10 @@ export interface GetCompressResponse {
195
195
  * @generated from protobuf field: optional string pack_path = 4;
196
196
  */
197
197
  packPath?: string;
198
+ /**
199
+ * @generated from protobuf field: bool continued = 5;
200
+ */
201
+ continued: boolean;
198
202
  }
199
203
  /**
200
204
  * @generated from protobuf enum pb.GetCompressResponse.Format
@@ -678,7 +678,8 @@ class GetCompressResponse$Type extends MessageType {
678
678
  { no: 1, name: "version", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
679
679
  { no: 2, name: "format", kind: "enum", T: () => ["pb.GetCompressResponse.Format", GetCompressResponse_Format] },
680
680
  { no: 3, name: "bytes", kind: "scalar", T: 12 /*ScalarType.BYTES*/ },
681
- { no: 4, name: "pack_path", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ }
681
+ { no: 4, name: "pack_path", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
682
+ { no: 5, name: "continued", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }
682
683
  ]);
683
684
  }
684
685
  create(value) {
@@ -686,6 +687,7 @@ class GetCompressResponse$Type extends MessageType {
686
687
  message.version = 0n;
687
688
  message.format = 0;
688
689
  message.bytes = new Uint8Array(0);
690
+ message.continued = false;
689
691
  if (value !== undefined)
690
692
  reflectionMergePartial(this, message, value);
691
693
  return message;
@@ -707,6 +709,9 @@ class GetCompressResponse$Type extends MessageType {
707
709
  case /* optional string pack_path */ 4:
708
710
  message.packPath = reader.string();
709
711
  break;
712
+ case /* bool continued */ 5:
713
+ message.continued = reader.bool();
714
+ break;
710
715
  default:
711
716
  let u = options.readUnknownField;
712
717
  if (u === "throw")
@@ -731,6 +736,9 @@ class GetCompressResponse$Type extends MessageType {
731
736
  /* optional string pack_path = 4; */
732
737
  if (message.packPath !== undefined)
733
738
  writer.tag(4, WireType.LengthDelimited).string(message.packPath);
739
+ /* bool continued = 5; */
740
+ if (message.continued !== false)
741
+ writer.tag(5, WireType.Varint).bool(message.continued);
734
742
  let u = options.writeUnknownFields;
735
743
  if (u !== false)
736
744
  (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);