@wundergraph/cosmo-connect 0.92.0 → 0.93.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.
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +16 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js +16 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +12 -1
- package/dist/platform/v1/platform_connect.js +12 -1
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +42 -0
- package/dist/platform/v1/platform_pb.js +70 -0
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -16037,4 +16037,74 @@ export class GetCacheWarmerConfigResponse extends Message {
|
|
|
16037
16037
|
return proto3.util.equals(GetCacheWarmerConfigResponse, a, b);
|
|
16038
16038
|
}
|
|
16039
16039
|
}
|
|
16040
|
+
/**
|
|
16041
|
+
* @generated from message wg.cosmo.platform.v1.DeleteCacheWarmerOperationRequest
|
|
16042
|
+
*/
|
|
16043
|
+
export class DeleteCacheWarmerOperationRequest extends Message {
|
|
16044
|
+
/**
|
|
16045
|
+
* @generated from field: string id = 1;
|
|
16046
|
+
*/
|
|
16047
|
+
id = "";
|
|
16048
|
+
/**
|
|
16049
|
+
* @generated from field: string federatedGraphName = 2;
|
|
16050
|
+
*/
|
|
16051
|
+
federatedGraphName = "";
|
|
16052
|
+
/**
|
|
16053
|
+
* @generated from field: string namespace = 3;
|
|
16054
|
+
*/
|
|
16055
|
+
namespace = "";
|
|
16056
|
+
constructor(data) {
|
|
16057
|
+
super();
|
|
16058
|
+
proto3.util.initPartial(data, this);
|
|
16059
|
+
}
|
|
16060
|
+
static runtime = proto3;
|
|
16061
|
+
static typeName = "wg.cosmo.platform.v1.DeleteCacheWarmerOperationRequest";
|
|
16062
|
+
static fields = proto3.util.newFieldList(() => [
|
|
16063
|
+
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
16064
|
+
{ no: 2, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
16065
|
+
{ no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
16066
|
+
]);
|
|
16067
|
+
static fromBinary(bytes, options) {
|
|
16068
|
+
return new DeleteCacheWarmerOperationRequest().fromBinary(bytes, options);
|
|
16069
|
+
}
|
|
16070
|
+
static fromJson(jsonValue, options) {
|
|
16071
|
+
return new DeleteCacheWarmerOperationRequest().fromJson(jsonValue, options);
|
|
16072
|
+
}
|
|
16073
|
+
static fromJsonString(jsonString, options) {
|
|
16074
|
+
return new DeleteCacheWarmerOperationRequest().fromJsonString(jsonString, options);
|
|
16075
|
+
}
|
|
16076
|
+
static equals(a, b) {
|
|
16077
|
+
return proto3.util.equals(DeleteCacheWarmerOperationRequest, a, b);
|
|
16078
|
+
}
|
|
16079
|
+
}
|
|
16080
|
+
/**
|
|
16081
|
+
* @generated from message wg.cosmo.platform.v1.DeleteCacheWarmerOperationResponse
|
|
16082
|
+
*/
|
|
16083
|
+
export class DeleteCacheWarmerOperationResponse extends Message {
|
|
16084
|
+
/**
|
|
16085
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
16086
|
+
*/
|
|
16087
|
+
response;
|
|
16088
|
+
constructor(data) {
|
|
16089
|
+
super();
|
|
16090
|
+
proto3.util.initPartial(data, this);
|
|
16091
|
+
}
|
|
16092
|
+
static runtime = proto3;
|
|
16093
|
+
static typeName = "wg.cosmo.platform.v1.DeleteCacheWarmerOperationResponse";
|
|
16094
|
+
static fields = proto3.util.newFieldList(() => [
|
|
16095
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
16096
|
+
]);
|
|
16097
|
+
static fromBinary(bytes, options) {
|
|
16098
|
+
return new DeleteCacheWarmerOperationResponse().fromBinary(bytes, options);
|
|
16099
|
+
}
|
|
16100
|
+
static fromJson(jsonValue, options) {
|
|
16101
|
+
return new DeleteCacheWarmerOperationResponse().fromJson(jsonValue, options);
|
|
16102
|
+
}
|
|
16103
|
+
static fromJsonString(jsonString, options) {
|
|
16104
|
+
return new DeleteCacheWarmerOperationResponse().fromJsonString(jsonString, options);
|
|
16105
|
+
}
|
|
16106
|
+
static equals(a, b) {
|
|
16107
|
+
return proto3.util.equals(DeleteCacheWarmerOperationResponse, a, b);
|
|
16108
|
+
}
|
|
16109
|
+
}
|
|
16040
16110
|
//# sourceMappingURL=platform_pb.js.map
|