@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
@@ -681,7 +681,8 @@ class GetCompressResponse$Type extends runtime_4.MessageType {
681
681
  { no: 1, name: "version", kind: "scalar", T: 3 /*ScalarType.INT64*/, L: 0 /*LongType.BIGINT*/ },
682
682
  { no: 2, name: "format", kind: "enum", T: () => ["pb.GetCompressResponse.Format", GetCompressResponse_Format] },
683
683
  { no: 3, name: "bytes", kind: "scalar", T: 12 /*ScalarType.BYTES*/ },
684
- { no: 4, name: "pack_path", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ }
684
+ { no: 4, name: "pack_path", kind: "scalar", opt: true, T: 9 /*ScalarType.STRING*/ },
685
+ { no: 5, name: "continued", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }
685
686
  ]);
686
687
  }
687
688
  create(value) {
@@ -689,6 +690,7 @@ class GetCompressResponse$Type extends runtime_4.MessageType {
689
690
  message.version = 0n;
690
691
  message.format = 0;
691
692
  message.bytes = new Uint8Array(0);
693
+ message.continued = false;
692
694
  if (value !== undefined)
693
695
  (0, runtime_3.reflectionMergePartial)(this, message, value);
694
696
  return message;
@@ -710,6 +712,9 @@ class GetCompressResponse$Type extends runtime_4.MessageType {
710
712
  case /* optional string pack_path */ 4:
711
713
  message.packPath = reader.string();
712
714
  break;
715
+ case /* bool continued */ 5:
716
+ message.continued = reader.bool();
717
+ break;
713
718
  default:
714
719
  let u = options.readUnknownField;
715
720
  if (u === "throw")
@@ -734,6 +739,9 @@ class GetCompressResponse$Type extends runtime_4.MessageType {
734
739
  /* optional string pack_path = 4; */
735
740
  if (message.packPath !== undefined)
736
741
  writer.tag(4, runtime_1.WireType.LengthDelimited).string(message.packPath);
742
+ /* bool continued = 5; */
743
+ if (message.continued !== false)
744
+ writer.tag(5, runtime_1.WireType.Varint).bool(message.continued);
737
745
  let u = options.writeUnknownFields;
738
746
  if (u !== false)
739
747
  (u == true ? runtime_2.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);