@wundergraph/cosmo-connect 0.113.0 → 0.114.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.
@@ -215,6 +215,19 @@ export declare enum Feature {
215
215
  */
216
216
  scim = 2
217
217
  }
218
+ /**
219
+ * @generated from enum wg.cosmo.platform.v1.ProposalNamingConvention
220
+ */
221
+ export declare enum ProposalNamingConvention {
222
+ /**
223
+ * @generated from enum value: NORMAL = 0;
224
+ */
225
+ NORMAL = 0,
226
+ /**
227
+ * @generated from enum value: INCREMENTAL = 1;
228
+ */
229
+ INCREMENTAL = 1
230
+ }
218
231
  /**
219
232
  * @generated from message wg.cosmo.platform.v1.Label
220
233
  */
@@ -10788,6 +10801,10 @@ export declare class CreateProposalRequest extends Message<CreateProposalRequest
10788
10801
  * @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 4;
10789
10802
  */
10790
10803
  subgraphs: ProposalSubgraph[];
10804
+ /**
10805
+ * @generated from field: wg.cosmo.platform.v1.ProposalNamingConvention namingConvention = 5;
10806
+ */
10807
+ namingConvention: ProposalNamingConvention;
10791
10808
  constructor(data?: PartialMessage<CreateProposalRequest>);
10792
10809
  static readonly runtime: typeof proto3;
10793
10810
  static readonly typeName = "wg.cosmo.platform.v1.CreateProposalRequest";
@@ -10865,6 +10882,10 @@ export declare class CreateProposalResponse extends Message<CreateProposalRespon
10865
10882
  * @generated from field: string proposalUrl = 16;
10866
10883
  */
10867
10884
  proposalUrl: string;
10885
+ /**
10886
+ * @generated from field: string proposalName = 17;
10887
+ */
10888
+ proposalName: string;
10868
10889
  constructor(data?: PartialMessage<CreateProposalResponse>);
10869
10890
  static readonly runtime: typeof proto3;
10870
10891
  static readonly typeName = "wg.cosmo.platform.v1.CreateProposalResponse";
@@ -293,6 +293,25 @@ proto3.util.setEnumType(Feature, "wg.cosmo.platform.v1.Feature", [
293
293
  { no: 1, name: "ai" },
294
294
  { no: 2, name: "scim" },
295
295
  ]);
296
+ /**
297
+ * @generated from enum wg.cosmo.platform.v1.ProposalNamingConvention
298
+ */
299
+ export var ProposalNamingConvention;
300
+ (function (ProposalNamingConvention) {
301
+ /**
302
+ * @generated from enum value: NORMAL = 0;
303
+ */
304
+ ProposalNamingConvention[ProposalNamingConvention["NORMAL"] = 0] = "NORMAL";
305
+ /**
306
+ * @generated from enum value: INCREMENTAL = 1;
307
+ */
308
+ ProposalNamingConvention[ProposalNamingConvention["INCREMENTAL"] = 1] = "INCREMENTAL";
309
+ })(ProposalNamingConvention || (ProposalNamingConvention = {}));
310
+ // Retrieve enum metadata with: proto3.getEnumType(ProposalNamingConvention)
311
+ proto3.util.setEnumType(ProposalNamingConvention, "wg.cosmo.platform.v1.ProposalNamingConvention", [
312
+ { no: 0, name: "NORMAL" },
313
+ { no: 1, name: "INCREMENTAL" },
314
+ ]);
296
315
  /**
297
316
  * @generated from message wg.cosmo.platform.v1.Label
298
317
  */
@@ -16942,6 +16961,10 @@ export class CreateProposalRequest extends Message {
16942
16961
  * @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 4;
16943
16962
  */
16944
16963
  subgraphs = [];
16964
+ /**
16965
+ * @generated from field: wg.cosmo.platform.v1.ProposalNamingConvention namingConvention = 5;
16966
+ */
16967
+ namingConvention = ProposalNamingConvention.NORMAL;
16945
16968
  constructor(data) {
16946
16969
  super();
16947
16970
  proto3.util.initPartial(data, this);
@@ -16953,6 +16976,7 @@ export class CreateProposalRequest extends Message {
16953
16976
  { no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
16954
16977
  { no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
16955
16978
  { no: 4, name: "subgraphs", kind: "message", T: ProposalSubgraph, repeated: true },
16979
+ { no: 5, name: "namingConvention", kind: "enum", T: proto3.getEnumType(ProposalNamingConvention) },
16956
16980
  ]);
16957
16981
  static fromBinary(bytes, options) {
16958
16982
  return new CreateProposalRequest().fromBinary(bytes, options);
@@ -17035,6 +17059,10 @@ export class CreateProposalResponse extends Message {
17035
17059
  * @generated from field: string proposalUrl = 16;
17036
17060
  */
17037
17061
  proposalUrl = "";
17062
+ /**
17063
+ * @generated from field: string proposalName = 17;
17064
+ */
17065
+ proposalName = "";
17038
17066
  constructor(data) {
17039
17067
  super();
17040
17068
  proto3.util.initPartial(data, this);
@@ -17058,6 +17086,7 @@ export class CreateProposalResponse extends Message {
17058
17086
  { no: 14, name: "graphPruningSkipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
17059
17087
  { no: 15, name: "checkUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17060
17088
  { no: 16, name: "proposalUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17089
+ { no: 17, name: "proposalName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17061
17090
  ]);
17062
17091
  static fromBinary(bytes, options) {
17063
17092
  return new CreateProposalResponse().fromBinary(bytes, options);