@wundergraph/cosmo-connect 0.106.0 → 0.107.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";
|
|
@@ -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);
|