@wundergraph/cosmo-connect 0.119.1 → 0.121.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.
@@ -232,6 +232,19 @@ export declare enum Feature {
232
232
  */
233
233
  scim = 2
234
234
  }
235
+ /**
236
+ * @generated from enum wg.cosmo.platform.v1.ProposalOrigin
237
+ */
238
+ export declare enum ProposalOrigin {
239
+ /**
240
+ * @generated from enum value: INTERNAL = 0;
241
+ */
242
+ INTERNAL = 0,
243
+ /**
244
+ * @generated from enum value: EXTERNAL = 1;
245
+ */
246
+ EXTERNAL = 1
247
+ }
235
248
  /**
236
249
  * @generated from enum wg.cosmo.platform.v1.ProposalNamingConvention
237
250
  */
@@ -11141,6 +11154,10 @@ export declare class Proposal extends Message<Proposal> {
11141
11154
  * @generated from field: string latestCheckId = 10;
11142
11155
  */
11143
11156
  latestCheckId: string;
11157
+ /**
11158
+ * @generated from field: wg.cosmo.platform.v1.ProposalOrigin origin = 11;
11159
+ */
11160
+ origin: ProposalOrigin;
11144
11161
  constructor(data?: PartialMessage<Proposal>);
11145
11162
  static readonly runtime: typeof proto3;
11146
11163
  static readonly typeName = "wg.cosmo.platform.v1.Proposal";
@@ -11207,6 +11224,10 @@ export declare class CreateProposalRequest extends Message<CreateProposalRequest
11207
11224
  * @generated from field: wg.cosmo.platform.v1.ProposalNamingConvention namingConvention = 5;
11208
11225
  */
11209
11226
  namingConvention: ProposalNamingConvention;
11227
+ /**
11228
+ * @generated from field: wg.cosmo.platform.v1.ProposalOrigin origin = 6;
11229
+ */
11230
+ origin: ProposalOrigin;
11210
11231
  constructor(data?: PartialMessage<CreateProposalRequest>);
11211
11232
  static readonly runtime: typeof proto3;
11212
11233
  static readonly typeName = "wg.cosmo.platform.v1.CreateProposalRequest";
@@ -11300,6 +11321,10 @@ export declare class CreateProposalResponse extends Message<CreateProposalRespon
11300
11321
  * @generated from field: optional bool isLinkedPruningCheckFailed = 19;
11301
11322
  */
11302
11323
  isLinkedPruningCheckFailed?: boolean;
11324
+ /**
11325
+ * @generated from field: optional bool hasLinkedSchemaChecks = 20;
11326
+ */
11327
+ hasLinkedSchemaChecks?: boolean;
11303
11328
  constructor(data?: PartialMessage<CreateProposalResponse>);
11304
11329
  static readonly runtime: typeof proto3;
11305
11330
  static readonly typeName = "wg.cosmo.platform.v1.CreateProposalResponse";
@@ -11625,6 +11650,10 @@ export declare class UpdateProposalResponse extends Message<UpdateProposalRespon
11625
11650
  * @generated from field: optional bool isLinkedPruningCheckFailed = 16;
11626
11651
  */
11627
11652
  isLinkedPruningCheckFailed?: boolean;
11653
+ /**
11654
+ * @generated from field: optional bool hasLinkedSchemaChecks = 17;
11655
+ */
11656
+ hasLinkedSchemaChecks?: boolean;
11628
11657
  constructor(data?: PartialMessage<UpdateProposalResponse>);
11629
11658
  static readonly runtime: typeof proto3;
11630
11659
  static readonly typeName = "wg.cosmo.platform.v1.UpdateProposalResponse";
@@ -317,6 +317,25 @@ proto3.util.setEnumType(Feature, "wg.cosmo.platform.v1.Feature", [
317
317
  { no: 1, name: "ai" },
318
318
  { no: 2, name: "scim" },
319
319
  ]);
320
+ /**
321
+ * @generated from enum wg.cosmo.platform.v1.ProposalOrigin
322
+ */
323
+ export var ProposalOrigin;
324
+ (function (ProposalOrigin) {
325
+ /**
326
+ * @generated from enum value: INTERNAL = 0;
327
+ */
328
+ ProposalOrigin[ProposalOrigin["INTERNAL"] = 0] = "INTERNAL";
329
+ /**
330
+ * @generated from enum value: EXTERNAL = 1;
331
+ */
332
+ ProposalOrigin[ProposalOrigin["EXTERNAL"] = 1] = "EXTERNAL";
333
+ })(ProposalOrigin || (ProposalOrigin = {}));
334
+ // Retrieve enum metadata with: proto3.getEnumType(ProposalOrigin)
335
+ proto3.util.setEnumType(ProposalOrigin, "wg.cosmo.platform.v1.ProposalOrigin", [
336
+ { no: 0, name: "INTERNAL" },
337
+ { no: 1, name: "EXTERNAL" },
338
+ ]);
320
339
  /**
321
340
  * @generated from enum wg.cosmo.platform.v1.ProposalNamingConvention
322
341
  */
@@ -17442,6 +17461,10 @@ export class Proposal extends Message {
17442
17461
  * @generated from field: string latestCheckId = 10;
17443
17462
  */
17444
17463
  latestCheckId = "";
17464
+ /**
17465
+ * @generated from field: wg.cosmo.platform.v1.ProposalOrigin origin = 11;
17466
+ */
17467
+ origin = ProposalOrigin.INTERNAL;
17445
17468
  constructor(data) {
17446
17469
  super();
17447
17470
  proto3.util.initPartial(data, this);
@@ -17459,6 +17482,7 @@ export class Proposal extends Message {
17459
17482
  { no: 8, name: "subgraphs", kind: "message", T: ProposalSubgraph, repeated: true },
17460
17483
  { no: 9, name: "latestCheckSuccess", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
17461
17484
  { no: 10, name: "latestCheckId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17485
+ { no: 11, name: "origin", kind: "enum", T: proto3.getEnumType(ProposalOrigin) },
17462
17486
  ]);
17463
17487
  static fromBinary(bytes, options) {
17464
17488
  return new Proposal().fromBinary(bytes, options);
@@ -17547,6 +17571,10 @@ export class CreateProposalRequest extends Message {
17547
17571
  * @generated from field: wg.cosmo.platform.v1.ProposalNamingConvention namingConvention = 5;
17548
17572
  */
17549
17573
  namingConvention = ProposalNamingConvention.NORMAL;
17574
+ /**
17575
+ * @generated from field: wg.cosmo.platform.v1.ProposalOrigin origin = 6;
17576
+ */
17577
+ origin = ProposalOrigin.INTERNAL;
17550
17578
  constructor(data) {
17551
17579
  super();
17552
17580
  proto3.util.initPartial(data, this);
@@ -17559,6 +17587,7 @@ export class CreateProposalRequest extends Message {
17559
17587
  { no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17560
17588
  { no: 4, name: "subgraphs", kind: "message", T: ProposalSubgraph, repeated: true },
17561
17589
  { no: 5, name: "namingConvention", kind: "enum", T: proto3.getEnumType(ProposalNamingConvention) },
17590
+ { no: 6, name: "origin", kind: "enum", T: proto3.getEnumType(ProposalOrigin) },
17562
17591
  ]);
17563
17592
  static fromBinary(bytes, options) {
17564
17593
  return new CreateProposalRequest().fromBinary(bytes, options);
@@ -17657,6 +17686,10 @@ export class CreateProposalResponse extends Message {
17657
17686
  * @generated from field: optional bool isLinkedPruningCheckFailed = 19;
17658
17687
  */
17659
17688
  isLinkedPruningCheckFailed;
17689
+ /**
17690
+ * @generated from field: optional bool hasLinkedSchemaChecks = 20;
17691
+ */
17692
+ hasLinkedSchemaChecks;
17660
17693
  constructor(data) {
17661
17694
  super();
17662
17695
  proto3.util.initPartial(data, this);
@@ -17683,6 +17716,7 @@ export class CreateProposalResponse extends Message {
17683
17716
  { no: 17, name: "proposalName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17684
17717
  { no: 18, name: "isLinkedTrafficCheckFailed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
17685
17718
  { no: 19, name: "isLinkedPruningCheckFailed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
17719
+ { no: 20, name: "hasLinkedSchemaChecks", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
17686
17720
  ]);
17687
17721
  static fromBinary(bytes, options) {
17688
17722
  return new CreateProposalResponse().fromBinary(bytes, options);
@@ -18135,6 +18169,10 @@ export class UpdateProposalResponse extends Message {
18135
18169
  * @generated from field: optional bool isLinkedPruningCheckFailed = 16;
18136
18170
  */
18137
18171
  isLinkedPruningCheckFailed;
18172
+ /**
18173
+ * @generated from field: optional bool hasLinkedSchemaChecks = 17;
18174
+ */
18175
+ hasLinkedSchemaChecks;
18138
18176
  constructor(data) {
18139
18177
  super();
18140
18178
  proto3.util.initPartial(data, this);
@@ -18158,6 +18196,7 @@ export class UpdateProposalResponse extends Message {
18158
18196
  { no: 14, name: "checkUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
18159
18197
  { no: 15, name: "isLinkedTrafficCheckFailed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
18160
18198
  { no: 16, name: "isLinkedPruningCheckFailed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
18199
+ { no: 17, name: "hasLinkedSchemaChecks", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
18161
18200
  ]);
18162
18201
  static fromBinary(bytes, options) {
18163
18202
  return new UpdateProposalResponse().fromBinary(bytes, options);