@wundergraph/cosmo-connect 0.28.0 → 0.29.0

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.
@@ -337,6 +337,12 @@ export declare class CheckSubgraphSchemaRequest extends Message<CheckSubgraphSch
337
337
  * @generated from field: wg.cosmo.platform.v1.GitInfo gitInfo = 3;
338
338
  */
339
339
  gitInfo?: GitInfo;
340
+ /**
341
+ * Check breaking changes and composition when this subgraph is deleted
342
+ *
343
+ * @generated from field: optional bool delete = 4;
344
+ */
345
+ delete?: boolean;
340
346
  constructor(data?: PartialMessage<CheckSubgraphSchemaRequest>);
341
347
  static readonly runtime: typeof proto3;
342
348
  static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaRequest";
@@ -1099,6 +1105,10 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
1099
1105
  * @generated from field: bool isForcedSuccess = 8;
1100
1106
  */
1101
1107
  isForcedSuccess: boolean;
1108
+ /**
1109
+ * @generated from field: bool isDeleted = 9;
1110
+ */
1111
+ isDeleted: boolean;
1102
1112
  constructor(data?: PartialMessage<SchemaCheck>);
1103
1113
  static readonly runtime: typeof proto3;
1104
1114
  static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck";
@@ -478,6 +478,12 @@ export class CheckSubgraphSchemaRequest extends Message {
478
478
  * @generated from field: wg.cosmo.platform.v1.GitInfo gitInfo = 3;
479
479
  */
480
480
  gitInfo;
481
+ /**
482
+ * Check breaking changes and composition when this subgraph is deleted
483
+ *
484
+ * @generated from field: optional bool delete = 4;
485
+ */
486
+ delete;
481
487
  constructor(data) {
482
488
  super();
483
489
  proto3.util.initPartial(data, this);
@@ -488,6 +494,7 @@ export class CheckSubgraphSchemaRequest extends Message {
488
494
  { no: 1, name: "subgraph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
489
495
  { no: 2, name: "schema", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
490
496
  { no: 3, name: "gitInfo", kind: "message", T: GitInfo },
497
+ { no: 4, name: "delete", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
491
498
  ]);
492
499
  static fromBinary(bytes, options) {
493
500
  return new CheckSubgraphSchemaRequest().fromBinary(bytes, options);
@@ -1682,6 +1689,10 @@ export class SchemaCheck extends Message {
1682
1689
  * @generated from field: bool isForcedSuccess = 8;
1683
1690
  */
1684
1691
  isForcedSuccess = false;
1692
+ /**
1693
+ * @generated from field: bool isDeleted = 9;
1694
+ */
1695
+ isDeleted = false;
1685
1696
  constructor(data) {
1686
1697
  super();
1687
1698
  proto3.util.initPartial(data, this);
@@ -1697,6 +1708,7 @@ export class SchemaCheck extends Message {
1697
1708
  { no: 6, name: "isBreaking", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1698
1709
  { no: 7, name: "hasClientTraffic", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1699
1710
  { no: 8, name: "isForcedSuccess", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1711
+ { no: 9, name: "isDeleted", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1700
1712
  ]);
1701
1713
  static fromBinary(bytes, options) {
1702
1714
  return new SchemaCheck().fromBinary(bytes, options);