@wundergraph/cosmo-connect 0.59.0 → 0.59.1

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.
@@ -253,11 +253,11 @@ export declare class PublishFederatedSubgraphRequest extends Message<PublishFede
253
253
  */
254
254
  name: string;
255
255
  /**
256
- * The binary representation of the schema, the content of the file
256
+ * The string representation of the schema, the content of the file
257
257
  *
258
- * @generated from field: bytes schema = 2;
258
+ * @generated from field: string schema = 2;
259
259
  */
260
- schema: Uint8Array;
260
+ schema: string;
261
261
  /**
262
262
  * routing_url is the URL of the service which will be used to route the requests to the subgraph.
263
263
  *
@@ -405,11 +405,11 @@ export declare class FixSubgraphSchemaRequest extends Message<FixSubgraphSchemaR
405
405
  */
406
406
  subgraphName: string;
407
407
  /**
408
- * The binary representation of the schema, the content of the file
408
+ * The string representation of the schema, the content of the file
409
409
  *
410
- * @generated from field: bytes schema = 2;
410
+ * @generated from field: string schema = 2;
411
411
  */
412
- schema: Uint8Array;
412
+ schema: string;
413
413
  /**
414
414
  * @generated from field: string namespace = 3;
415
415
  */
@@ -358,11 +358,11 @@ export class PublishFederatedSubgraphRequest extends Message {
358
358
  */
359
359
  name = "";
360
360
  /**
361
- * The binary representation of the schema, the content of the file
361
+ * The string representation of the schema, the content of the file
362
362
  *
363
- * @generated from field: bytes schema = 2;
363
+ * @generated from field: string schema = 2;
364
364
  */
365
- schema = new Uint8Array(0);
365
+ schema = "";
366
366
  /**
367
367
  * routing_url is the URL of the service which will be used to route the requests to the subgraph.
368
368
  *
@@ -409,7 +409,7 @@ export class PublishFederatedSubgraphRequest extends Message {
409
409
  static typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphRequest";
410
410
  static fields = proto3.util.newFieldList(() => [
411
411
  { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
412
- { no: 2, name: "schema", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
412
+ { no: 2, name: "schema", kind: "scalar", T: 9 /* ScalarType.STRING */ },
413
413
  { no: 3, name: "routing_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
414
414
  { no: 4, name: "labels", kind: "message", T: Label, repeated: true },
415
415
  { no: 5, name: "headers", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
@@ -578,11 +578,11 @@ export class FixSubgraphSchemaRequest extends Message {
578
578
  */
579
579
  subgraphName = "";
580
580
  /**
581
- * The binary representation of the schema, the content of the file
581
+ * The string representation of the schema, the content of the file
582
582
  *
583
- * @generated from field: bytes schema = 2;
583
+ * @generated from field: string schema = 2;
584
584
  */
585
- schema = new Uint8Array(0);
585
+ schema = "";
586
586
  /**
587
587
  * @generated from field: string namespace = 3;
588
588
  */
@@ -595,7 +595,7 @@ export class FixSubgraphSchemaRequest extends Message {
595
595
  static typeName = "wg.cosmo.platform.v1.FixSubgraphSchemaRequest";
596
596
  static fields = proto3.util.newFieldList(() => [
597
597
  { no: 1, name: "subgraph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
598
- { no: 2, name: "schema", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
598
+ { no: 2, name: "schema", kind: "scalar", T: 9 /* ScalarType.STRING */ },
599
599
  { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
600
600
  ]);
601
601
  static fromBinary(bytes, options) {