@wundergraph/cosmo-connect 0.94.1 → 0.96.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.
@@ -6520,6 +6520,10 @@ export declare class AuditLog extends Message<AuditLog> {
6520
6520
  * @generated from field: string targetNamespaceDisplayName = 11;
6521
6521
  */
6522
6522
  targetNamespaceDisplayName: string;
6523
+ /**
6524
+ * @generated from field: string apiKeyName = 12;
6525
+ */
6526
+ apiKeyName: string;
6523
6527
  constructor(data?: PartialMessage<AuditLog>);
6524
6528
  static readonly runtime: typeof proto3;
6525
6529
  static readonly typeName = "wg.cosmo.platform.v1.AuditLog";
@@ -10171,6 +10175,10 @@ export declare class ConfigureCacheWarmerRequest extends Message<ConfigureCacheW
10171
10175
  * @generated from field: bool enableCacheWarmer = 2;
10172
10176
  */
10173
10177
  enableCacheWarmer: boolean;
10178
+ /**
10179
+ * @generated from field: int32 maxOperationsCount = 3;
10180
+ */
10181
+ maxOperationsCount: number;
10174
10182
  constructor(data?: PartialMessage<ConfigureCacheWarmerRequest>);
10175
10183
  static readonly runtime: typeof proto3;
10176
10184
  static readonly typeName = "wg.cosmo.platform.v1.ConfigureCacheWarmerRequest";
@@ -10226,6 +10234,10 @@ export declare class GetCacheWarmerConfigResponse extends Message<GetCacheWarmer
10226
10234
  * @generated from field: bool isCacheWarmerEnabled = 2;
10227
10235
  */
10228
10236
  isCacheWarmerEnabled: boolean;
10237
+ /**
10238
+ * @generated from field: int32 maxOperationsCount = 3;
10239
+ */
10240
+ maxOperationsCount: number;
10229
10241
  constructor(data?: PartialMessage<GetCacheWarmerConfigResponse>);
10230
10242
  static readonly runtime: typeof proto3;
10231
10243
  static readonly typeName = "wg.cosmo.platform.v1.GetCacheWarmerConfigResponse";
@@ -10133,6 +10133,10 @@ export class AuditLog extends Message {
10133
10133
  * @generated from field: string targetNamespaceDisplayName = 11;
10134
10134
  */
10135
10135
  targetNamespaceDisplayName = "";
10136
+ /**
10137
+ * @generated from field: string apiKeyName = 12;
10138
+ */
10139
+ apiKeyName = "";
10136
10140
  constructor(data) {
10137
10141
  super();
10138
10142
  proto3.util.initPartial(data, this);
@@ -10151,6 +10155,7 @@ export class AuditLog extends Message {
10151
10155
  { no: 9, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
10152
10156
  { no: 10, name: "targetNamespaceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
10153
10157
  { no: 11, name: "targetNamespaceDisplayName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
10158
+ { no: 12, name: "apiKeyName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
10154
10159
  ]);
10155
10160
  static fromBinary(bytes, options) {
10156
10161
  return new AuditLog().fromBinary(bytes, options);
@@ -15994,6 +15999,10 @@ export class ConfigureCacheWarmerRequest extends Message {
15994
15999
  * @generated from field: bool enableCacheWarmer = 2;
15995
16000
  */
15996
16001
  enableCacheWarmer = false;
16002
+ /**
16003
+ * @generated from field: int32 maxOperationsCount = 3;
16004
+ */
16005
+ maxOperationsCount = 0;
15997
16006
  constructor(data) {
15998
16007
  super();
15999
16008
  proto3.util.initPartial(data, this);
@@ -16003,6 +16012,7 @@ export class ConfigureCacheWarmerRequest extends Message {
16003
16012
  static fields = proto3.util.newFieldList(() => [
16004
16013
  { no: 1, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
16005
16014
  { no: 2, name: "enableCacheWarmer", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
16015
+ { no: 3, name: "maxOperationsCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
16006
16016
  ]);
16007
16017
  static fromBinary(bytes, options) {
16008
16018
  return new ConfigureCacheWarmerRequest().fromBinary(bytes, options);
@@ -16089,6 +16099,10 @@ export class GetCacheWarmerConfigResponse extends Message {
16089
16099
  * @generated from field: bool isCacheWarmerEnabled = 2;
16090
16100
  */
16091
16101
  isCacheWarmerEnabled = false;
16102
+ /**
16103
+ * @generated from field: int32 maxOperationsCount = 3;
16104
+ */
16105
+ maxOperationsCount = 0;
16092
16106
  constructor(data) {
16093
16107
  super();
16094
16108
  proto3.util.initPartial(data, this);
@@ -16098,6 +16112,7 @@ export class GetCacheWarmerConfigResponse extends Message {
16098
16112
  static fields = proto3.util.newFieldList(() => [
16099
16113
  { no: 1, name: "response", kind: "message", T: Response },
16100
16114
  { no: 2, name: "isCacheWarmerEnabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
16115
+ { no: 3, name: "maxOperationsCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
16101
16116
  ]);
16102
16117
  static fromBinary(bytes, options) {
16103
16118
  return new GetCacheWarmerConfigResponse().fromBinary(bytes, options);