@wundergraph/cosmo-connect 0.94.1 → 0.95.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.
|
@@ -10171,6 +10171,10 @@ export declare class ConfigureCacheWarmerRequest extends Message<ConfigureCacheW
|
|
|
10171
10171
|
* @generated from field: bool enableCacheWarmer = 2;
|
|
10172
10172
|
*/
|
|
10173
10173
|
enableCacheWarmer: boolean;
|
|
10174
|
+
/**
|
|
10175
|
+
* @generated from field: int32 maxOperationsCount = 3;
|
|
10176
|
+
*/
|
|
10177
|
+
maxOperationsCount: number;
|
|
10174
10178
|
constructor(data?: PartialMessage<ConfigureCacheWarmerRequest>);
|
|
10175
10179
|
static readonly runtime: typeof proto3;
|
|
10176
10180
|
static readonly typeName = "wg.cosmo.platform.v1.ConfigureCacheWarmerRequest";
|
|
@@ -10226,6 +10230,10 @@ export declare class GetCacheWarmerConfigResponse extends Message<GetCacheWarmer
|
|
|
10226
10230
|
* @generated from field: bool isCacheWarmerEnabled = 2;
|
|
10227
10231
|
*/
|
|
10228
10232
|
isCacheWarmerEnabled: boolean;
|
|
10233
|
+
/**
|
|
10234
|
+
* @generated from field: int32 maxOperationsCount = 3;
|
|
10235
|
+
*/
|
|
10236
|
+
maxOperationsCount: number;
|
|
10229
10237
|
constructor(data?: PartialMessage<GetCacheWarmerConfigResponse>);
|
|
10230
10238
|
static readonly runtime: typeof proto3;
|
|
10231
10239
|
static readonly typeName = "wg.cosmo.platform.v1.GetCacheWarmerConfigResponse";
|
|
@@ -15994,6 +15994,10 @@ export class ConfigureCacheWarmerRequest extends Message {
|
|
|
15994
15994
|
* @generated from field: bool enableCacheWarmer = 2;
|
|
15995
15995
|
*/
|
|
15996
15996
|
enableCacheWarmer = false;
|
|
15997
|
+
/**
|
|
15998
|
+
* @generated from field: int32 maxOperationsCount = 3;
|
|
15999
|
+
*/
|
|
16000
|
+
maxOperationsCount = 0;
|
|
15997
16001
|
constructor(data) {
|
|
15998
16002
|
super();
|
|
15999
16003
|
proto3.util.initPartial(data, this);
|
|
@@ -16003,6 +16007,7 @@ export class ConfigureCacheWarmerRequest extends Message {
|
|
|
16003
16007
|
static fields = proto3.util.newFieldList(() => [
|
|
16004
16008
|
{ no: 1, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
16005
16009
|
{ no: 2, name: "enableCacheWarmer", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
16010
|
+
{ no: 3, name: "maxOperationsCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
16006
16011
|
]);
|
|
16007
16012
|
static fromBinary(bytes, options) {
|
|
16008
16013
|
return new ConfigureCacheWarmerRequest().fromBinary(bytes, options);
|
|
@@ -16089,6 +16094,10 @@ export class GetCacheWarmerConfigResponse extends Message {
|
|
|
16089
16094
|
* @generated from field: bool isCacheWarmerEnabled = 2;
|
|
16090
16095
|
*/
|
|
16091
16096
|
isCacheWarmerEnabled = false;
|
|
16097
|
+
/**
|
|
16098
|
+
* @generated from field: int32 maxOperationsCount = 3;
|
|
16099
|
+
*/
|
|
16100
|
+
maxOperationsCount = 0;
|
|
16092
16101
|
constructor(data) {
|
|
16093
16102
|
super();
|
|
16094
16103
|
proto3.util.initPartial(data, this);
|
|
@@ -16098,6 +16107,7 @@ export class GetCacheWarmerConfigResponse extends Message {
|
|
|
16098
16107
|
static fields = proto3.util.newFieldList(() => [
|
|
16099
16108
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
16100
16109
|
{ no: 2, name: "isCacheWarmerEnabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
16110
|
+
{ no: 3, name: "maxOperationsCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
16101
16111
|
]);
|
|
16102
16112
|
static fromBinary(bytes, options) {
|
|
16103
16113
|
return new GetCacheWarmerConfigResponse().fromBinary(bytes, options);
|