@wundergraph/cosmo-connect 0.129.0 → 0.130.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.
|
@@ -4486,6 +4486,10 @@ export declare class APIKey extends Message<APIKey> {
|
|
|
4486
4486
|
* @generated from field: optional wg.cosmo.platform.v1.APIKey.Group group = 7;
|
|
4487
4487
|
*/
|
|
4488
4488
|
group?: APIKey_Group;
|
|
4489
|
+
/**
|
|
4490
|
+
* @generated from field: bool external = 8;
|
|
4491
|
+
*/
|
|
4492
|
+
external: boolean;
|
|
4489
4493
|
constructor(data?: PartialMessage<APIKey>);
|
|
4490
4494
|
static readonly runtime: typeof proto3;
|
|
4491
4495
|
static readonly typeName = "wg.cosmo.platform.v1.APIKey";
|
|
@@ -4586,6 +4590,10 @@ export declare class CreateAPIKeyRequest extends Message<CreateAPIKeyRequest> {
|
|
|
4586
4590
|
* @generated from field: repeated string permissions = 5;
|
|
4587
4591
|
*/
|
|
4588
4592
|
permissions: string[];
|
|
4593
|
+
/**
|
|
4594
|
+
* @generated from field: optional bool external = 6;
|
|
4595
|
+
*/
|
|
4596
|
+
external?: boolean;
|
|
4589
4597
|
constructor(data?: PartialMessage<CreateAPIKeyRequest>);
|
|
4590
4598
|
static readonly runtime: typeof proto3;
|
|
4591
4599
|
static readonly typeName = "wg.cosmo.platform.v1.CreateAPIKeyRequest";
|
|
@@ -6737,6 +6737,10 @@ export class APIKey extends Message {
|
|
|
6737
6737
|
* @generated from field: optional wg.cosmo.platform.v1.APIKey.Group group = 7;
|
|
6738
6738
|
*/
|
|
6739
6739
|
group;
|
|
6740
|
+
/**
|
|
6741
|
+
* @generated from field: bool external = 8;
|
|
6742
|
+
*/
|
|
6743
|
+
external = false;
|
|
6740
6744
|
constructor(data) {
|
|
6741
6745
|
super();
|
|
6742
6746
|
proto3.util.initPartial(data, this);
|
|
@@ -6751,6 +6755,7 @@ export class APIKey extends Message {
|
|
|
6751
6755
|
{ no: 5, name: "lastUsedAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6752
6756
|
{ no: 6, name: "expiresAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6753
6757
|
{ no: 7, name: "group", kind: "message", T: APIKey_Group, opt: true },
|
|
6758
|
+
{ no: 8, name: "external", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
6754
6759
|
]);
|
|
6755
6760
|
static fromBinary(bytes, options) {
|
|
6756
6761
|
return new APIKey().fromBinary(bytes, options);
|
|
@@ -6899,6 +6904,10 @@ export class CreateAPIKeyRequest extends Message {
|
|
|
6899
6904
|
* @generated from field: repeated string permissions = 5;
|
|
6900
6905
|
*/
|
|
6901
6906
|
permissions = [];
|
|
6907
|
+
/**
|
|
6908
|
+
* @generated from field: optional bool external = 6;
|
|
6909
|
+
*/
|
|
6910
|
+
external;
|
|
6902
6911
|
constructor(data) {
|
|
6903
6912
|
super();
|
|
6904
6913
|
proto3.util.initPartial(data, this);
|
|
@@ -6911,6 +6920,7 @@ export class CreateAPIKeyRequest extends Message {
|
|
|
6911
6920
|
{ no: 3, name: "expires", kind: "enum", T: proto3.getEnumType(ExpiresAt) },
|
|
6912
6921
|
{ no: 4, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6913
6922
|
{ no: 5, name: "permissions", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
6923
|
+
{ no: 6, name: "external", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
6914
6924
|
]);
|
|
6915
6925
|
static fromBinary(bytes, options) {
|
|
6916
6926
|
return new CreateAPIKeyRequest().fromBinary(bytes, options);
|