@wundergraph/cosmo-connect 0.11.0 → 0.13.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.
@@ -997,96 +997,6 @@ export class FederatedGraph extends Message {
997
997
  return proto3.util.equals(FederatedGraph, a, b);
998
998
  }
999
999
  }
1000
- /**
1001
- * @generated from message wg.cosmo.platform.v1.FederatedGraphChangelog
1002
- */
1003
- export class FederatedGraphChangelog extends Message {
1004
- /**
1005
- * @generated from field: string id = 1;
1006
- */
1007
- id = "";
1008
- /**
1009
- * @generated from field: string path = 2;
1010
- */
1011
- path = "";
1012
- /**
1013
- * @generated from field: string changeType = 3;
1014
- */
1015
- changeType = "";
1016
- /**
1017
- * @generated from field: string changeMessage = 4;
1018
- */
1019
- changeMessage = "";
1020
- /**
1021
- * @generated from field: string createdAt = 5;
1022
- */
1023
- createdAt = "";
1024
- constructor(data) {
1025
- super();
1026
- proto3.util.initPartial(data, this);
1027
- }
1028
- static runtime = proto3;
1029
- static typeName = "wg.cosmo.platform.v1.FederatedGraphChangelog";
1030
- static fields = proto3.util.newFieldList(() => [
1031
- { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1032
- { no: 2, name: "path", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1033
- { no: 3, name: "changeType", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1034
- { no: 4, name: "changeMessage", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1035
- { no: 5, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1036
- ]);
1037
- static fromBinary(bytes, options) {
1038
- return new FederatedGraphChangelog().fromBinary(bytes, options);
1039
- }
1040
- static fromJson(jsonValue, options) {
1041
- return new FederatedGraphChangelog().fromJson(jsonValue, options);
1042
- }
1043
- static fromJsonString(jsonString, options) {
1044
- return new FederatedGraphChangelog().fromJsonString(jsonString, options);
1045
- }
1046
- static equals(a, b) {
1047
- return proto3.util.equals(FederatedGraphChangelog, a, b);
1048
- }
1049
- }
1050
- /**
1051
- * @generated from message wg.cosmo.platform.v1.FederatedGraphChangelogOutput
1052
- */
1053
- export class FederatedGraphChangelogOutput extends Message {
1054
- /**
1055
- * @generated from field: string createdAt = 1;
1056
- */
1057
- createdAt = "";
1058
- /**
1059
- * @generated from field: string schemaVersionId = 2;
1060
- */
1061
- schemaVersionId = "";
1062
- /**
1063
- * @generated from field: repeated wg.cosmo.platform.v1.FederatedGraphChangelog changelogs = 3;
1064
- */
1065
- changelogs = [];
1066
- constructor(data) {
1067
- super();
1068
- proto3.util.initPartial(data, this);
1069
- }
1070
- static runtime = proto3;
1071
- static typeName = "wg.cosmo.platform.v1.FederatedGraphChangelogOutput";
1072
- static fields = proto3.util.newFieldList(() => [
1073
- { no: 1, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1074
- { no: 2, name: "schemaVersionId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1075
- { no: 3, name: "changelogs", kind: "message", T: FederatedGraphChangelog, repeated: true },
1076
- ]);
1077
- static fromBinary(bytes, options) {
1078
- return new FederatedGraphChangelogOutput().fromBinary(bytes, options);
1079
- }
1080
- static fromJson(jsonValue, options) {
1081
- return new FederatedGraphChangelogOutput().fromJson(jsonValue, options);
1082
- }
1083
- static fromJsonString(jsonString, options) {
1084
- return new FederatedGraphChangelogOutput().fromJsonString(jsonString, options);
1085
- }
1086
- static equals(a, b) {
1087
- return proto3.util.equals(FederatedGraphChangelogOutput, a, b);
1088
- }
1089
- }
1090
1000
  /**
1091
1001
  * @generated from message wg.cosmo.platform.v1.GetFederatedGraphsResponse
1092
1002
  */
@@ -1745,6 +1655,10 @@ export class GetFederatedGraphChangelogRequest extends Message {
1745
1655
  * @generated from field: string name = 1;
1746
1656
  */
1747
1657
  name = "";
1658
+ /**
1659
+ * @generated from field: wg.cosmo.platform.v1.Pagination pagination = 2;
1660
+ */
1661
+ pagination;
1748
1662
  constructor(data) {
1749
1663
  super();
1750
1664
  proto3.util.initPartial(data, this);
@@ -1753,6 +1667,7 @@ export class GetFederatedGraphChangelogRequest extends Message {
1753
1667
  static typeName = "wg.cosmo.platform.v1.GetFederatedGraphChangelogRequest";
1754
1668
  static fields = proto3.util.newFieldList(() => [
1755
1669
  { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1670
+ { no: 2, name: "pagination", kind: "message", T: Pagination },
1756
1671
  ]);
1757
1672
  static fromBinary(bytes, options) {
1758
1673
  return new GetFederatedGraphChangelogRequest().fromBinary(bytes, options);
@@ -1767,6 +1682,96 @@ export class GetFederatedGraphChangelogRequest extends Message {
1767
1682
  return proto3.util.equals(GetFederatedGraphChangelogRequest, a, b);
1768
1683
  }
1769
1684
  }
1685
+ /**
1686
+ * @generated from message wg.cosmo.platform.v1.FederatedGraphChangelog
1687
+ */
1688
+ export class FederatedGraphChangelog extends Message {
1689
+ /**
1690
+ * @generated from field: string id = 1;
1691
+ */
1692
+ id = "";
1693
+ /**
1694
+ * @generated from field: string path = 2;
1695
+ */
1696
+ path = "";
1697
+ /**
1698
+ * @generated from field: string changeType = 3;
1699
+ */
1700
+ changeType = "";
1701
+ /**
1702
+ * @generated from field: string changeMessage = 4;
1703
+ */
1704
+ changeMessage = "";
1705
+ /**
1706
+ * @generated from field: string createdAt = 5;
1707
+ */
1708
+ createdAt = "";
1709
+ constructor(data) {
1710
+ super();
1711
+ proto3.util.initPartial(data, this);
1712
+ }
1713
+ static runtime = proto3;
1714
+ static typeName = "wg.cosmo.platform.v1.FederatedGraphChangelog";
1715
+ static fields = proto3.util.newFieldList(() => [
1716
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1717
+ { no: 2, name: "path", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1718
+ { no: 3, name: "changeType", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1719
+ { no: 4, name: "changeMessage", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1720
+ { no: 5, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1721
+ ]);
1722
+ static fromBinary(bytes, options) {
1723
+ return new FederatedGraphChangelog().fromBinary(bytes, options);
1724
+ }
1725
+ static fromJson(jsonValue, options) {
1726
+ return new FederatedGraphChangelog().fromJson(jsonValue, options);
1727
+ }
1728
+ static fromJsonString(jsonString, options) {
1729
+ return new FederatedGraphChangelog().fromJsonString(jsonString, options);
1730
+ }
1731
+ static equals(a, b) {
1732
+ return proto3.util.equals(FederatedGraphChangelog, a, b);
1733
+ }
1734
+ }
1735
+ /**
1736
+ * @generated from message wg.cosmo.platform.v1.FederatedGraphChangelogOutput
1737
+ */
1738
+ export class FederatedGraphChangelogOutput extends Message {
1739
+ /**
1740
+ * @generated from field: string createdAt = 1;
1741
+ */
1742
+ createdAt = "";
1743
+ /**
1744
+ * @generated from field: string schemaVersionId = 2;
1745
+ */
1746
+ schemaVersionId = "";
1747
+ /**
1748
+ * @generated from field: repeated wg.cosmo.platform.v1.FederatedGraphChangelog changelogs = 3;
1749
+ */
1750
+ changelogs = [];
1751
+ constructor(data) {
1752
+ super();
1753
+ proto3.util.initPartial(data, this);
1754
+ }
1755
+ static runtime = proto3;
1756
+ static typeName = "wg.cosmo.platform.v1.FederatedGraphChangelogOutput";
1757
+ static fields = proto3.util.newFieldList(() => [
1758
+ { no: 1, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1759
+ { no: 2, name: "schemaVersionId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1760
+ { no: 3, name: "changelogs", kind: "message", T: FederatedGraphChangelog, repeated: true },
1761
+ ]);
1762
+ static fromBinary(bytes, options) {
1763
+ return new FederatedGraphChangelogOutput().fromBinary(bytes, options);
1764
+ }
1765
+ static fromJson(jsonValue, options) {
1766
+ return new FederatedGraphChangelogOutput().fromJson(jsonValue, options);
1767
+ }
1768
+ static fromJsonString(jsonString, options) {
1769
+ return new FederatedGraphChangelogOutput().fromJsonString(jsonString, options);
1770
+ }
1771
+ static equals(a, b) {
1772
+ return proto3.util.equals(FederatedGraphChangelogOutput, a, b);
1773
+ }
1774
+ }
1770
1775
  /**
1771
1776
  * @generated from message wg.cosmo.platform.v1.GetFederatedGraphChangelogResponse
1772
1777
  */
@@ -1779,6 +1784,10 @@ export class GetFederatedGraphChangelogResponse extends Message {
1779
1784
  * @generated from field: repeated wg.cosmo.platform.v1.FederatedGraphChangelogOutput federatedGraphChangelogOutput = 2;
1780
1785
  */
1781
1786
  federatedGraphChangelogOutput = [];
1787
+ /**
1788
+ * @generated from field: bool hasNextPage = 3;
1789
+ */
1790
+ hasNextPage = false;
1782
1791
  constructor(data) {
1783
1792
  super();
1784
1793
  proto3.util.initPartial(data, this);
@@ -1788,6 +1797,7 @@ export class GetFederatedGraphChangelogResponse extends Message {
1788
1797
  static fields = proto3.util.newFieldList(() => [
1789
1798
  { no: 1, name: "response", kind: "message", T: Response },
1790
1799
  { no: 2, name: "federatedGraphChangelogOutput", kind: "message", T: FederatedGraphChangelogOutput, repeated: true },
1800
+ { no: 3, name: "hasNextPage", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1791
1801
  ]);
1792
1802
  static fromBinary(bytes, options) {
1793
1803
  return new GetFederatedGraphChangelogResponse().fromBinary(bytes, options);
@@ -3348,6 +3358,10 @@ export class SpanAttributes extends Message {
3348
3358
  * @generated from field: string httpTarget = 10;
3349
3359
  */
3350
3360
  httpTarget = "";
3361
+ /**
3362
+ * @generated from field: string subgraphName = 11;
3363
+ */
3364
+ subgraphName = "";
3351
3365
  constructor(data) {
3352
3366
  super();
3353
3367
  proto3.util.initPartial(data, this);
@@ -3365,6 +3379,7 @@ export class SpanAttributes extends Message {
3365
3379
  { no: 8, name: "httpUserAgent", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3366
3380
  { no: 9, name: "httpMethod", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3367
3381
  { no: 10, name: "httpTarget", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3382
+ { no: 11, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3368
3383
  ]);
3369
3384
  static fromBinary(bytes, options) {
3370
3385
  return new SpanAttributes().fromBinary(bytes, options);