@wundergraph/cosmo-connect 0.90.0 → 0.91.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.
@@ -9910,3 +9910,282 @@ export declare class GetNamespaceResponse extends Message<GetNamespaceResponse>
9910
9910
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetNamespaceResponse;
9911
9911
  static equals(a: GetNamespaceResponse | PlainMessage<GetNamespaceResponse> | undefined, b: GetNamespaceResponse | PlainMessage<GetNamespaceResponse> | undefined): boolean;
9912
9912
  }
9913
+ /**
9914
+ * @generated from message wg.cosmo.platform.v1.PushCacheWarmerOperationRequest
9915
+ */
9916
+ export declare class PushCacheWarmerOperationRequest extends Message<PushCacheWarmerOperationRequest> {
9917
+ /**
9918
+ * @generated from field: string federatedGraphName = 1;
9919
+ */
9920
+ federatedGraphName: string;
9921
+ /**
9922
+ * @generated from field: string operationContent = 2;
9923
+ */
9924
+ operationContent: string;
9925
+ /**
9926
+ * @generated from field: string operationName = 3;
9927
+ */
9928
+ operationName: string;
9929
+ /**
9930
+ * @generated from field: string operationPersistedId = 4;
9931
+ */
9932
+ operationPersistedId: string;
9933
+ /**
9934
+ * @generated from field: string namespace = 5;
9935
+ */
9936
+ namespace: string;
9937
+ constructor(data?: PartialMessage<PushCacheWarmerOperationRequest>);
9938
+ static readonly runtime: typeof proto3;
9939
+ static readonly typeName = "wg.cosmo.platform.v1.PushCacheWarmerOperationRequest";
9940
+ static readonly fields: FieldList;
9941
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PushCacheWarmerOperationRequest;
9942
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PushCacheWarmerOperationRequest;
9943
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PushCacheWarmerOperationRequest;
9944
+ static equals(a: PushCacheWarmerOperationRequest | PlainMessage<PushCacheWarmerOperationRequest> | undefined, b: PushCacheWarmerOperationRequest | PlainMessage<PushCacheWarmerOperationRequest> | undefined): boolean;
9945
+ }
9946
+ /**
9947
+ * @generated from message wg.cosmo.platform.v1.PushCacheWarmerOperationResponse
9948
+ */
9949
+ export declare class PushCacheWarmerOperationResponse extends Message<PushCacheWarmerOperationResponse> {
9950
+ /**
9951
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
9952
+ */
9953
+ response?: Response;
9954
+ constructor(data?: PartialMessage<PushCacheWarmerOperationResponse>);
9955
+ static readonly runtime: typeof proto3;
9956
+ static readonly typeName = "wg.cosmo.platform.v1.PushCacheWarmerOperationResponse";
9957
+ static readonly fields: FieldList;
9958
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PushCacheWarmerOperationResponse;
9959
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PushCacheWarmerOperationResponse;
9960
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PushCacheWarmerOperationResponse;
9961
+ static equals(a: PushCacheWarmerOperationResponse | PlainMessage<PushCacheWarmerOperationResponse> | undefined, b: PushCacheWarmerOperationResponse | PlainMessage<PushCacheWarmerOperationResponse> | undefined): boolean;
9962
+ }
9963
+ /**
9964
+ * @generated from message wg.cosmo.platform.v1.GetCacheWarmerOperationsRequest
9965
+ */
9966
+ export declare class GetCacheWarmerOperationsRequest extends Message<GetCacheWarmerOperationsRequest> {
9967
+ /**
9968
+ * @generated from field: string federatedGraphName = 1;
9969
+ */
9970
+ federatedGraphName: string;
9971
+ /**
9972
+ * @generated from field: string namespace = 2;
9973
+ */
9974
+ namespace: string;
9975
+ /**
9976
+ * @generated from field: int32 limit = 3;
9977
+ */
9978
+ limit: number;
9979
+ /**
9980
+ * @generated from field: int32 offset = 4;
9981
+ */
9982
+ offset: number;
9983
+ constructor(data?: PartialMessage<GetCacheWarmerOperationsRequest>);
9984
+ static readonly runtime: typeof proto3;
9985
+ static readonly typeName = "wg.cosmo.platform.v1.GetCacheWarmerOperationsRequest";
9986
+ static readonly fields: FieldList;
9987
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCacheWarmerOperationsRequest;
9988
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCacheWarmerOperationsRequest;
9989
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCacheWarmerOperationsRequest;
9990
+ static equals(a: GetCacheWarmerOperationsRequest | PlainMessage<GetCacheWarmerOperationsRequest> | undefined, b: GetCacheWarmerOperationsRequest | PlainMessage<GetCacheWarmerOperationsRequest> | undefined): boolean;
9991
+ }
9992
+ /**
9993
+ * @generated from message wg.cosmo.platform.v1.CacheWarmerOperation
9994
+ */
9995
+ export declare class CacheWarmerOperation extends Message<CacheWarmerOperation> {
9996
+ /**
9997
+ * @generated from field: string id = 1;
9998
+ */
9999
+ id: string;
10000
+ /**
10001
+ * @generated from field: string operationContent = 2;
10002
+ */
10003
+ operationContent: string;
10004
+ /**
10005
+ * @generated from field: string operationName = 3;
10006
+ */
10007
+ operationName: string;
10008
+ /**
10009
+ * @generated from field: string operationPersistedId = 4;
10010
+ */
10011
+ operationPersistedId: string;
10012
+ /**
10013
+ * @generated from field: string operationHash = 5;
10014
+ */
10015
+ operationHash: string;
10016
+ /**
10017
+ * @generated from field: string clientName = 6;
10018
+ */
10019
+ clientName: string;
10020
+ /**
10021
+ * @generated from field: string clientVersion = 7;
10022
+ */
10023
+ clientVersion: string;
10024
+ /**
10025
+ * @generated from field: float planningTime = 8;
10026
+ */
10027
+ planningTime: number;
10028
+ /**
10029
+ * @generated from field: bool isManuallyAdded = 9;
10030
+ */
10031
+ isManuallyAdded: boolean;
10032
+ /**
10033
+ * @generated from field: string createdAt = 10;
10034
+ */
10035
+ createdAt: string;
10036
+ /**
10037
+ * @generated from field: string createdBy = 11;
10038
+ */
10039
+ createdBy: string;
10040
+ constructor(data?: PartialMessage<CacheWarmerOperation>);
10041
+ static readonly runtime: typeof proto3;
10042
+ static readonly typeName = "wg.cosmo.platform.v1.CacheWarmerOperation";
10043
+ static readonly fields: FieldList;
10044
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CacheWarmerOperation;
10045
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CacheWarmerOperation;
10046
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CacheWarmerOperation;
10047
+ static equals(a: CacheWarmerOperation | PlainMessage<CacheWarmerOperation> | undefined, b: CacheWarmerOperation | PlainMessage<CacheWarmerOperation> | undefined): boolean;
10048
+ }
10049
+ /**
10050
+ * @generated from message wg.cosmo.platform.v1.GetCacheWarmerOperationsResponse
10051
+ */
10052
+ export declare class GetCacheWarmerOperationsResponse extends Message<GetCacheWarmerOperationsResponse> {
10053
+ /**
10054
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
10055
+ */
10056
+ response?: Response;
10057
+ /**
10058
+ * @generated from field: repeated wg.cosmo.platform.v1.CacheWarmerOperation operations = 2;
10059
+ */
10060
+ operations: CacheWarmerOperation[];
10061
+ /**
10062
+ * @generated from field: int32 total_count = 3;
10063
+ */
10064
+ totalCount: number;
10065
+ /**
10066
+ * @generated from field: bool isCacheWarmerEnabled = 4;
10067
+ */
10068
+ isCacheWarmerEnabled: boolean;
10069
+ constructor(data?: PartialMessage<GetCacheWarmerOperationsResponse>);
10070
+ static readonly runtime: typeof proto3;
10071
+ static readonly typeName = "wg.cosmo.platform.v1.GetCacheWarmerOperationsResponse";
10072
+ static readonly fields: FieldList;
10073
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCacheWarmerOperationsResponse;
10074
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCacheWarmerOperationsResponse;
10075
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCacheWarmerOperationsResponse;
10076
+ static equals(a: GetCacheWarmerOperationsResponse | PlainMessage<GetCacheWarmerOperationsResponse> | undefined, b: GetCacheWarmerOperationsResponse | PlainMessage<GetCacheWarmerOperationsResponse> | undefined): boolean;
10077
+ }
10078
+ /**
10079
+ * @generated from message wg.cosmo.platform.v1.ComputeCacheWarmerOperationsRequest
10080
+ */
10081
+ export declare class ComputeCacheWarmerOperationsRequest extends Message<ComputeCacheWarmerOperationsRequest> {
10082
+ /**
10083
+ * @generated from field: string federatedGraphName = 1;
10084
+ */
10085
+ federatedGraphName: string;
10086
+ /**
10087
+ * @generated from field: string namespace = 2;
10088
+ */
10089
+ namespace: string;
10090
+ constructor(data?: PartialMessage<ComputeCacheWarmerOperationsRequest>);
10091
+ static readonly runtime: typeof proto3;
10092
+ static readonly typeName = "wg.cosmo.platform.v1.ComputeCacheWarmerOperationsRequest";
10093
+ static readonly fields: FieldList;
10094
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ComputeCacheWarmerOperationsRequest;
10095
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ComputeCacheWarmerOperationsRequest;
10096
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ComputeCacheWarmerOperationsRequest;
10097
+ static equals(a: ComputeCacheWarmerOperationsRequest | PlainMessage<ComputeCacheWarmerOperationsRequest> | undefined, b: ComputeCacheWarmerOperationsRequest | PlainMessage<ComputeCacheWarmerOperationsRequest> | undefined): boolean;
10098
+ }
10099
+ /**
10100
+ * @generated from message wg.cosmo.platform.v1.ComputeCacheWarmerOperationsResponse
10101
+ */
10102
+ export declare class ComputeCacheWarmerOperationsResponse extends Message<ComputeCacheWarmerOperationsResponse> {
10103
+ /**
10104
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
10105
+ */
10106
+ response?: Response;
10107
+ constructor(data?: PartialMessage<ComputeCacheWarmerOperationsResponse>);
10108
+ static readonly runtime: typeof proto3;
10109
+ static readonly typeName = "wg.cosmo.platform.v1.ComputeCacheWarmerOperationsResponse";
10110
+ static readonly fields: FieldList;
10111
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ComputeCacheWarmerOperationsResponse;
10112
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ComputeCacheWarmerOperationsResponse;
10113
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ComputeCacheWarmerOperationsResponse;
10114
+ static equals(a: ComputeCacheWarmerOperationsResponse | PlainMessage<ComputeCacheWarmerOperationsResponse> | undefined, b: ComputeCacheWarmerOperationsResponse | PlainMessage<ComputeCacheWarmerOperationsResponse> | undefined): boolean;
10115
+ }
10116
+ /**
10117
+ * @generated from message wg.cosmo.platform.v1.ConfigureCacheWarmerRequest
10118
+ */
10119
+ export declare class ConfigureCacheWarmerRequest extends Message<ConfigureCacheWarmerRequest> {
10120
+ /**
10121
+ * @generated from field: string namespace = 1;
10122
+ */
10123
+ namespace: string;
10124
+ /**
10125
+ * @generated from field: bool enableCacheWarmer = 2;
10126
+ */
10127
+ enableCacheWarmer: boolean;
10128
+ constructor(data?: PartialMessage<ConfigureCacheWarmerRequest>);
10129
+ static readonly runtime: typeof proto3;
10130
+ static readonly typeName = "wg.cosmo.platform.v1.ConfigureCacheWarmerRequest";
10131
+ static readonly fields: FieldList;
10132
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfigureCacheWarmerRequest;
10133
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfigureCacheWarmerRequest;
10134
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ConfigureCacheWarmerRequest;
10135
+ static equals(a: ConfigureCacheWarmerRequest | PlainMessage<ConfigureCacheWarmerRequest> | undefined, b: ConfigureCacheWarmerRequest | PlainMessage<ConfigureCacheWarmerRequest> | undefined): boolean;
10136
+ }
10137
+ /**
10138
+ * @generated from message wg.cosmo.platform.v1.ConfigureCacheWarmerResponse
10139
+ */
10140
+ export declare class ConfigureCacheWarmerResponse extends Message<ConfigureCacheWarmerResponse> {
10141
+ /**
10142
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
10143
+ */
10144
+ response?: Response;
10145
+ constructor(data?: PartialMessage<ConfigureCacheWarmerResponse>);
10146
+ static readonly runtime: typeof proto3;
10147
+ static readonly typeName = "wg.cosmo.platform.v1.ConfigureCacheWarmerResponse";
10148
+ static readonly fields: FieldList;
10149
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfigureCacheWarmerResponse;
10150
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfigureCacheWarmerResponse;
10151
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ConfigureCacheWarmerResponse;
10152
+ static equals(a: ConfigureCacheWarmerResponse | PlainMessage<ConfigureCacheWarmerResponse> | undefined, b: ConfigureCacheWarmerResponse | PlainMessage<ConfigureCacheWarmerResponse> | undefined): boolean;
10153
+ }
10154
+ /**
10155
+ * @generated from message wg.cosmo.platform.v1.GetCacheWarmerConfigRequest
10156
+ */
10157
+ export declare class GetCacheWarmerConfigRequest extends Message<GetCacheWarmerConfigRequest> {
10158
+ /**
10159
+ * @generated from field: string namespace = 1;
10160
+ */
10161
+ namespace: string;
10162
+ constructor(data?: PartialMessage<GetCacheWarmerConfigRequest>);
10163
+ static readonly runtime: typeof proto3;
10164
+ static readonly typeName = "wg.cosmo.platform.v1.GetCacheWarmerConfigRequest";
10165
+ static readonly fields: FieldList;
10166
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCacheWarmerConfigRequest;
10167
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCacheWarmerConfigRequest;
10168
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCacheWarmerConfigRequest;
10169
+ static equals(a: GetCacheWarmerConfigRequest | PlainMessage<GetCacheWarmerConfigRequest> | undefined, b: GetCacheWarmerConfigRequest | PlainMessage<GetCacheWarmerConfigRequest> | undefined): boolean;
10170
+ }
10171
+ /**
10172
+ * @generated from message wg.cosmo.platform.v1.GetCacheWarmerConfigResponse
10173
+ */
10174
+ export declare class GetCacheWarmerConfigResponse extends Message<GetCacheWarmerConfigResponse> {
10175
+ /**
10176
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
10177
+ */
10178
+ response?: Response;
10179
+ /**
10180
+ * @generated from field: bool isCacheWarmerEnabled = 2;
10181
+ */
10182
+ isCacheWarmerEnabled: boolean;
10183
+ constructor(data?: PartialMessage<GetCacheWarmerConfigResponse>);
10184
+ static readonly runtime: typeof proto3;
10185
+ static readonly typeName = "wg.cosmo.platform.v1.GetCacheWarmerConfigResponse";
10186
+ static readonly fields: FieldList;
10187
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCacheWarmerConfigResponse;
10188
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCacheWarmerConfigResponse;
10189
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCacheWarmerConfigResponse;
10190
+ static equals(a: GetCacheWarmerConfigResponse | PlainMessage<GetCacheWarmerConfigResponse> | undefined, b: GetCacheWarmerConfigResponse | PlainMessage<GetCacheWarmerConfigResponse> | undefined): boolean;
10191
+ }