@wundergraph/cosmo-connect 0.106.0 → 0.108.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.
@@ -3557,6 +3557,10 @@ export declare class OrganizationGroup extends Message<OrganizationGroup> {
3557
3557
  * @generated from field: bool hasOidcMappers = 7;
3558
3558
  */
3559
3559
  hasOidcMappers: boolean;
3560
+ /**
3561
+ * @generated from field: int32 apiKeysCount = 8;
3562
+ */
3563
+ apiKeysCount: number;
3560
3564
  constructor(data?: PartialMessage<OrganizationGroup>);
3561
3565
  static readonly runtime: typeof proto3;
3562
3566
  static readonly typeName = "wg.cosmo.platform.v1.OrganizationGroup";
@@ -11305,6 +11309,10 @@ export declare class GetOperationsRequest extends Message<GetOperationsRequest>
11305
11309
  * @generated from field: string namespace = 2;
11306
11310
  */
11307
11311
  namespace: string;
11312
+ /**
11313
+ * @generated from field: optional string clientName = 3;
11314
+ */
11315
+ clientName?: string;
11308
11316
  constructor(data?: PartialMessage<GetOperationsRequest>);
11309
11317
  static readonly runtime: typeof proto3;
11310
11318
  static readonly typeName = "wg.cosmo.platform.v1.GetOperationsRequest";
@@ -5319,6 +5319,10 @@ export class OrganizationGroup extends Message {
5319
5319
  * @generated from field: bool hasOidcMappers = 7;
5320
5320
  */
5321
5321
  hasOidcMappers = false;
5322
+ /**
5323
+ * @generated from field: int32 apiKeysCount = 8;
5324
+ */
5325
+ apiKeysCount = 0;
5322
5326
  constructor(data) {
5323
5327
  super();
5324
5328
  proto3.util.initPartial(data, this);
@@ -5333,6 +5337,7 @@ export class OrganizationGroup extends Message {
5333
5337
  { no: 5, name: "membersCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
5334
5338
  { no: 6, name: "rules", kind: "message", T: OrganizationGroupRule, repeated: true },
5335
5339
  { no: 7, name: "hasOidcMappers", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
5340
+ { no: 8, name: "apiKeysCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
5336
5341
  ]);
5337
5342
  static fromBinary(bytes, options) {
5338
5343
  return new OrganizationGroup().fromBinary(bytes, options);
@@ -17731,6 +17736,10 @@ export class GetOperationsRequest extends Message {
17731
17736
  * @generated from field: string namespace = 2;
17732
17737
  */
17733
17738
  namespace = "";
17739
+ /**
17740
+ * @generated from field: optional string clientName = 3;
17741
+ */
17742
+ clientName;
17734
17743
  constructor(data) {
17735
17744
  super();
17736
17745
  proto3.util.initPartial(data, this);
@@ -17740,6 +17749,7 @@ export class GetOperationsRequest extends Message {
17740
17749
  static fields = proto3.util.newFieldList(() => [
17741
17750
  { no: 1, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17742
17751
  { no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17752
+ { no: 3, name: "clientName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
17743
17753
  ]);
17744
17754
  static fromBinary(bytes, options) {
17745
17755
  return new GetOperationsRequest().fromBinary(bytes, options);