@wundergraph/cosmo-connect 0.37.0 → 0.38.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.
@@ -1141,6 +1141,10 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
1141
1141
  * @generated from field: bool isDeleted = 9;
1142
1142
  */
1143
1143
  isDeleted: boolean;
1144
+ /**
1145
+ * @generated from field: optional wg.cosmo.platform.v1.SchemaCheckGhDetails ghDetails = 10;
1146
+ */
1147
+ ghDetails?: SchemaCheckGhDetails;
1144
1148
  constructor(data?: PartialMessage<SchemaCheck>);
1145
1149
  static readonly runtime: typeof proto3;
1146
1150
  static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck";
@@ -1150,6 +1154,35 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
1150
1154
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SchemaCheck;
1151
1155
  static equals(a: SchemaCheck | PlainMessage<SchemaCheck> | undefined, b: SchemaCheck | PlainMessage<SchemaCheck> | undefined): boolean;
1152
1156
  }
1157
+ /**
1158
+ * @generated from message wg.cosmo.platform.v1.SchemaCheckGhDetails
1159
+ */
1160
+ export declare class SchemaCheckGhDetails extends Message<SchemaCheckGhDetails> {
1161
+ /**
1162
+ * @generated from field: string commitSha = 1;
1163
+ */
1164
+ commitSha: string;
1165
+ /**
1166
+ * @generated from field: string ownerSlug = 3;
1167
+ */
1168
+ ownerSlug: string;
1169
+ /**
1170
+ * @generated from field: string repositorySlug = 4;
1171
+ */
1172
+ repositorySlug: string;
1173
+ /**
1174
+ * @generated from field: int32 checkRunId = 5;
1175
+ */
1176
+ checkRunId: number;
1177
+ constructor(data?: PartialMessage<SchemaCheckGhDetails>);
1178
+ static readonly runtime: typeof proto3;
1179
+ static readonly typeName = "wg.cosmo.platform.v1.SchemaCheckGhDetails";
1180
+ static readonly fields: FieldList;
1181
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SchemaCheckGhDetails;
1182
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SchemaCheckGhDetails;
1183
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SchemaCheckGhDetails;
1184
+ static equals(a: SchemaCheckGhDetails | PlainMessage<SchemaCheckGhDetails> | undefined, b: SchemaCheckGhDetails | PlainMessage<SchemaCheckGhDetails> | undefined): boolean;
1185
+ }
1153
1186
  /**
1154
1187
  * @generated from message wg.cosmo.platform.v1.GetChecksByFederatedGraphNameResponse
1155
1188
  */
@@ -1735,6 +1735,10 @@ export class SchemaCheck extends Message {
1735
1735
  * @generated from field: bool isDeleted = 9;
1736
1736
  */
1737
1737
  isDeleted = false;
1738
+ /**
1739
+ * @generated from field: optional wg.cosmo.platform.v1.SchemaCheckGhDetails ghDetails = 10;
1740
+ */
1741
+ ghDetails;
1738
1742
  constructor(data) {
1739
1743
  super();
1740
1744
  proto3.util.initPartial(data, this);
@@ -1751,6 +1755,7 @@ export class SchemaCheck extends Message {
1751
1755
  { no: 7, name: "hasClientTraffic", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1752
1756
  { no: 8, name: "isForcedSuccess", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1753
1757
  { no: 9, name: "isDeleted", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1758
+ { no: 10, name: "ghDetails", kind: "message", T: SchemaCheckGhDetails, opt: true },
1754
1759
  ]);
1755
1760
  static fromBinary(bytes, options) {
1756
1761
  return new SchemaCheck().fromBinary(bytes, options);
@@ -1765,6 +1770,51 @@ export class SchemaCheck extends Message {
1765
1770
  return proto3.util.equals(SchemaCheck, a, b);
1766
1771
  }
1767
1772
  }
1773
+ /**
1774
+ * @generated from message wg.cosmo.platform.v1.SchemaCheckGhDetails
1775
+ */
1776
+ export class SchemaCheckGhDetails extends Message {
1777
+ /**
1778
+ * @generated from field: string commitSha = 1;
1779
+ */
1780
+ commitSha = "";
1781
+ /**
1782
+ * @generated from field: string ownerSlug = 3;
1783
+ */
1784
+ ownerSlug = "";
1785
+ /**
1786
+ * @generated from field: string repositorySlug = 4;
1787
+ */
1788
+ repositorySlug = "";
1789
+ /**
1790
+ * @generated from field: int32 checkRunId = 5;
1791
+ */
1792
+ checkRunId = 0;
1793
+ constructor(data) {
1794
+ super();
1795
+ proto3.util.initPartial(data, this);
1796
+ }
1797
+ static runtime = proto3;
1798
+ static typeName = "wg.cosmo.platform.v1.SchemaCheckGhDetails";
1799
+ static fields = proto3.util.newFieldList(() => [
1800
+ { no: 1, name: "commitSha", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1801
+ { no: 3, name: "ownerSlug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1802
+ { no: 4, name: "repositorySlug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1803
+ { no: 5, name: "checkRunId", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
1804
+ ]);
1805
+ static fromBinary(bytes, options) {
1806
+ return new SchemaCheckGhDetails().fromBinary(bytes, options);
1807
+ }
1808
+ static fromJson(jsonValue, options) {
1809
+ return new SchemaCheckGhDetails().fromJson(jsonValue, options);
1810
+ }
1811
+ static fromJsonString(jsonString, options) {
1812
+ return new SchemaCheckGhDetails().fromJsonString(jsonString, options);
1813
+ }
1814
+ static equals(a, b) {
1815
+ return proto3.util.equals(SchemaCheckGhDetails, a, b);
1816
+ }
1817
+ }
1768
1818
  /**
1769
1819
  * @generated from message wg.cosmo.platform.v1.GetChecksByFederatedGraphNameResponse
1770
1820
  */