@wundergraph/cosmo-connect 0.135.0 → 0.137.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/node/v1/node_pb.d.ts +105 -0
- package/dist/node/v1/node_pb.js +150 -0
- package/dist/node/v1/node_pb.js.map +1 -1
- 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 +66 -0
- package/dist/platform/v1/platform_pb.js +100 -0
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -20288,4 +20288,104 @@ export class ListOrganizationsResponse_OrganizationMembership extends Message {
|
|
|
20288
20288
|
return proto3.util.equals(ListOrganizationsResponse_OrganizationMembership, a, b);
|
|
20289
20289
|
}
|
|
20290
20290
|
}
|
|
20291
|
+
/**
|
|
20292
|
+
* @generated from message wg.cosmo.platform.v1.RecomposeGraphRequest
|
|
20293
|
+
*/
|
|
20294
|
+
export class RecomposeGraphRequest extends Message {
|
|
20295
|
+
/**
|
|
20296
|
+
* @generated from field: string name = 1;
|
|
20297
|
+
*/
|
|
20298
|
+
name = "";
|
|
20299
|
+
/**
|
|
20300
|
+
* @generated from field: string namespace = 2;
|
|
20301
|
+
*/
|
|
20302
|
+
namespace = "";
|
|
20303
|
+
/**
|
|
20304
|
+
* @generated from field: bool is_monograph = 3;
|
|
20305
|
+
*/
|
|
20306
|
+
isMonograph = false;
|
|
20307
|
+
/**
|
|
20308
|
+
* @generated from field: optional int32 limit = 4;
|
|
20309
|
+
*/
|
|
20310
|
+
limit;
|
|
20311
|
+
/**
|
|
20312
|
+
* @generated from field: optional bool disable_resolvability_validation = 5;
|
|
20313
|
+
*/
|
|
20314
|
+
disableResolvabilityValidation;
|
|
20315
|
+
constructor(data) {
|
|
20316
|
+
super();
|
|
20317
|
+
proto3.util.initPartial(data, this);
|
|
20318
|
+
}
|
|
20319
|
+
static runtime = proto3;
|
|
20320
|
+
static typeName = "wg.cosmo.platform.v1.RecomposeGraphRequest";
|
|
20321
|
+
static fields = proto3.util.newFieldList(() => [
|
|
20322
|
+
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
20323
|
+
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
20324
|
+
{ no: 3, name: "is_monograph", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
20325
|
+
{ no: 4, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
20326
|
+
{ no: 5, name: "disable_resolvability_validation", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
20327
|
+
]);
|
|
20328
|
+
static fromBinary(bytes, options) {
|
|
20329
|
+
return new RecomposeGraphRequest().fromBinary(bytes, options);
|
|
20330
|
+
}
|
|
20331
|
+
static fromJson(jsonValue, options) {
|
|
20332
|
+
return new RecomposeGraphRequest().fromJson(jsonValue, options);
|
|
20333
|
+
}
|
|
20334
|
+
static fromJsonString(jsonString, options) {
|
|
20335
|
+
return new RecomposeGraphRequest().fromJsonString(jsonString, options);
|
|
20336
|
+
}
|
|
20337
|
+
static equals(a, b) {
|
|
20338
|
+
return proto3.util.equals(RecomposeGraphRequest, a, b);
|
|
20339
|
+
}
|
|
20340
|
+
}
|
|
20341
|
+
/**
|
|
20342
|
+
* @generated from message wg.cosmo.platform.v1.RecomposeGraphResponse
|
|
20343
|
+
*/
|
|
20344
|
+
export class RecomposeGraphResponse extends Message {
|
|
20345
|
+
/**
|
|
20346
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
20347
|
+
*/
|
|
20348
|
+
response;
|
|
20349
|
+
/**
|
|
20350
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionError compositionErrors = 2;
|
|
20351
|
+
*/
|
|
20352
|
+
compositionErrors = [];
|
|
20353
|
+
/**
|
|
20354
|
+
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
20355
|
+
*/
|
|
20356
|
+
deploymentErrors = [];
|
|
20357
|
+
/**
|
|
20358
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
20359
|
+
*/
|
|
20360
|
+
compositionWarnings = [];
|
|
20361
|
+
/**
|
|
20362
|
+
* @generated from field: optional wg.cosmo.platform.v1.SubgraphPublishStats errorCounts = 5;
|
|
20363
|
+
*/
|
|
20364
|
+
errorCounts;
|
|
20365
|
+
constructor(data) {
|
|
20366
|
+
super();
|
|
20367
|
+
proto3.util.initPartial(data, this);
|
|
20368
|
+
}
|
|
20369
|
+
static runtime = proto3;
|
|
20370
|
+
static typeName = "wg.cosmo.platform.v1.RecomposeGraphResponse";
|
|
20371
|
+
static fields = proto3.util.newFieldList(() => [
|
|
20372
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
20373
|
+
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
20374
|
+
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
20375
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
20376
|
+
{ no: 5, name: "errorCounts", kind: "message", T: SubgraphPublishStats, opt: true },
|
|
20377
|
+
]);
|
|
20378
|
+
static fromBinary(bytes, options) {
|
|
20379
|
+
return new RecomposeGraphResponse().fromBinary(bytes, options);
|
|
20380
|
+
}
|
|
20381
|
+
static fromJson(jsonValue, options) {
|
|
20382
|
+
return new RecomposeGraphResponse().fromJson(jsonValue, options);
|
|
20383
|
+
}
|
|
20384
|
+
static fromJsonString(jsonString, options) {
|
|
20385
|
+
return new RecomposeGraphResponse().fromJsonString(jsonString, options);
|
|
20386
|
+
}
|
|
20387
|
+
static equals(a, b) {
|
|
20388
|
+
return proto3.util.equals(RecomposeGraphResponse, a, b);
|
|
20389
|
+
}
|
|
20390
|
+
}
|
|
20291
20391
|
//# sourceMappingURL=platform_pb.js.map
|