@wundergraph/cosmo-connect 0.127.3 → 0.128.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.
|
@@ -4520,6 +4520,14 @@ export declare class APIKey_Group extends Message<APIKey_Group> {
|
|
|
4520
4520
|
* @generated from message wg.cosmo.platform.v1.GetAPIKeysRequest
|
|
4521
4521
|
*/
|
|
4522
4522
|
export declare class GetAPIKeysRequest extends Message<GetAPIKeysRequest> {
|
|
4523
|
+
/**
|
|
4524
|
+
* @generated from field: int32 limit = 1;
|
|
4525
|
+
*/
|
|
4526
|
+
limit: number;
|
|
4527
|
+
/**
|
|
4528
|
+
* @generated from field: int32 offset = 2;
|
|
4529
|
+
*/
|
|
4530
|
+
offset: number;
|
|
4523
4531
|
constructor(data?: PartialMessage<GetAPIKeysRequest>);
|
|
4524
4532
|
static readonly runtime: typeof proto3;
|
|
4525
4533
|
static readonly typeName = "wg.cosmo.platform.v1.GetAPIKeysRequest";
|
|
@@ -4541,6 +4549,10 @@ export declare class GetAPIKeysResponse extends Message<GetAPIKeysResponse> {
|
|
|
4541
4549
|
* @generated from field: repeated wg.cosmo.platform.v1.APIKey apiKeys = 2;
|
|
4542
4550
|
*/
|
|
4543
4551
|
apiKeys: APIKey[];
|
|
4552
|
+
/**
|
|
4553
|
+
* @generated from field: int32 count = 3;
|
|
4554
|
+
*/
|
|
4555
|
+
count: number;
|
|
4544
4556
|
constructor(data?: PartialMessage<GetAPIKeysResponse>);
|
|
4545
4557
|
static readonly runtime: typeof proto3;
|
|
4546
4558
|
static readonly typeName = "wg.cosmo.platform.v1.GetAPIKeysResponse";
|
|
@@ -6804,13 +6804,24 @@ export class APIKey_Group extends Message {
|
|
|
6804
6804
|
* @generated from message wg.cosmo.platform.v1.GetAPIKeysRequest
|
|
6805
6805
|
*/
|
|
6806
6806
|
export class GetAPIKeysRequest extends Message {
|
|
6807
|
+
/**
|
|
6808
|
+
* @generated from field: int32 limit = 1;
|
|
6809
|
+
*/
|
|
6810
|
+
limit = 0;
|
|
6811
|
+
/**
|
|
6812
|
+
* @generated from field: int32 offset = 2;
|
|
6813
|
+
*/
|
|
6814
|
+
offset = 0;
|
|
6807
6815
|
constructor(data) {
|
|
6808
6816
|
super();
|
|
6809
6817
|
proto3.util.initPartial(data, this);
|
|
6810
6818
|
}
|
|
6811
6819
|
static runtime = proto3;
|
|
6812
6820
|
static typeName = "wg.cosmo.platform.v1.GetAPIKeysRequest";
|
|
6813
|
-
static fields = proto3.util.newFieldList(() => [
|
|
6821
|
+
static fields = proto3.util.newFieldList(() => [
|
|
6822
|
+
{ no: 1, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
6823
|
+
{ no: 2, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
6824
|
+
]);
|
|
6814
6825
|
static fromBinary(bytes, options) {
|
|
6815
6826
|
return new GetAPIKeysRequest().fromBinary(bytes, options);
|
|
6816
6827
|
}
|
|
@@ -6836,6 +6847,10 @@ export class GetAPIKeysResponse extends Message {
|
|
|
6836
6847
|
* @generated from field: repeated wg.cosmo.platform.v1.APIKey apiKeys = 2;
|
|
6837
6848
|
*/
|
|
6838
6849
|
apiKeys = [];
|
|
6850
|
+
/**
|
|
6851
|
+
* @generated from field: int32 count = 3;
|
|
6852
|
+
*/
|
|
6853
|
+
count = 0;
|
|
6839
6854
|
constructor(data) {
|
|
6840
6855
|
super();
|
|
6841
6856
|
proto3.util.initPartial(data, this);
|
|
@@ -6845,6 +6860,7 @@ export class GetAPIKeysResponse extends Message {
|
|
|
6845
6860
|
static fields = proto3.util.newFieldList(() => [
|
|
6846
6861
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
6847
6862
|
{ no: 2, name: "apiKeys", kind: "message", T: APIKey, repeated: true },
|
|
6863
|
+
{ no: 3, name: "count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
6848
6864
|
]);
|
|
6849
6865
|
static fromBinary(bytes, options) {
|
|
6850
6866
|
return new GetAPIKeysResponse().fromBinary(bytes, options);
|