@wundergraph/cosmo-connect 0.72.1 → 0.72.2
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.
|
@@ -1249,6 +1249,10 @@ export declare class FederatedGraph extends Message<FederatedGraph> {
|
|
|
1249
1249
|
* @generated from field: optional wg.cosmo.platform.v1.Contract contract = 15;
|
|
1250
1250
|
*/
|
|
1251
1251
|
contract?: Contract;
|
|
1252
|
+
/**
|
|
1253
|
+
* @generated from field: optional string admission_webhook_url = 16;
|
|
1254
|
+
*/
|
|
1255
|
+
admissionWebhookUrl?: string;
|
|
1252
1256
|
constructor(data?: PartialMessage<FederatedGraph>);
|
|
1253
1257
|
static readonly runtime: typeof proto3;
|
|
1254
1258
|
static readonly typeName = "wg.cosmo.platform.v1.FederatedGraph";
|
|
@@ -1844,6 +1844,10 @@ export class FederatedGraph extends Message {
|
|
|
1844
1844
|
* @generated from field: optional wg.cosmo.platform.v1.Contract contract = 15;
|
|
1845
1845
|
*/
|
|
1846
1846
|
contract;
|
|
1847
|
+
/**
|
|
1848
|
+
* @generated from field: optional string admission_webhook_url = 16;
|
|
1849
|
+
*/
|
|
1850
|
+
admissionWebhookUrl;
|
|
1847
1851
|
constructor(data) {
|
|
1848
1852
|
super();
|
|
1849
1853
|
proto3.util.initPartial(data, this);
|
|
@@ -1866,6 +1870,7 @@ export class FederatedGraph extends Message {
|
|
|
1866
1870
|
{ no: 13, name: "compositionId", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1867
1871
|
{ no: 14, name: "supports_federation", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1868
1872
|
{ no: 15, name: "contract", kind: "message", T: Contract, opt: true },
|
|
1873
|
+
{ no: 16, name: "admission_webhook_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1869
1874
|
]);
|
|
1870
1875
|
static fromBinary(bytes, options) {
|
|
1871
1876
|
return new FederatedGraph().fromBinary(bytes, options);
|