@wundergraph/cosmo-connect 0.38.0 → 0.40.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 +76 -1
- package/dist/node/v1/node_pb.js +114 -0
- package/dist/node/v1/node_pb.js.map +1 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +54 -3
- package/dist/platform/v1/platform-PlatformService_connectquery.js +54 -3
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +35 -2
- package/dist/platform/v1/platform_connect.js +35 -2
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +150 -0
- package/dist/platform/v1/platform_pb.js +239 -0
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -416,6 +416,12 @@ export declare class CreateFederatedGraphRequest extends Message<CreateFederated
|
|
|
416
416
|
* @generated from field: repeated string label_matchers = 3;
|
|
417
417
|
*/
|
|
418
418
|
labelMatchers: string[];
|
|
419
|
+
/**
|
|
420
|
+
* readme of the fed graph
|
|
421
|
+
*
|
|
422
|
+
* @generated from field: optional string readme = 4;
|
|
423
|
+
*/
|
|
424
|
+
readme?: string;
|
|
419
425
|
constructor(data?: PartialMessage<CreateFederatedGraphRequest>);
|
|
420
426
|
static readonly runtime: typeof proto3;
|
|
421
427
|
static readonly typeName = "wg.cosmo.platform.v1.CreateFederatedGraphRequest";
|
|
@@ -465,6 +471,12 @@ export declare class CreateFederatedSubgraphRequest extends Message<CreateFedera
|
|
|
465
471
|
* @generated from field: optional string subscription_url = 6;
|
|
466
472
|
*/
|
|
467
473
|
subscriptionUrl?: string;
|
|
474
|
+
/**
|
|
475
|
+
* readme of the subgraph
|
|
476
|
+
*
|
|
477
|
+
* @generated from field: optional string readme = 7;
|
|
478
|
+
*/
|
|
479
|
+
readme?: string;
|
|
468
480
|
constructor(data?: PartialMessage<CreateFederatedSubgraphRequest>);
|
|
469
481
|
static readonly runtime: typeof proto3;
|
|
470
482
|
static readonly typeName = "wg.cosmo.platform.v1.CreateFederatedSubgraphRequest";
|
|
@@ -787,6 +799,10 @@ export declare class FederatedGraph extends Message<FederatedGraph> {
|
|
|
787
799
|
* @generated from field: repeated wg.cosmo.platform.v1.RequestSeriesItem requestSeries = 9;
|
|
788
800
|
*/
|
|
789
801
|
requestSeries: RequestSeriesItem[];
|
|
802
|
+
/**
|
|
803
|
+
* @generated from field: optional string readme = 10;
|
|
804
|
+
*/
|
|
805
|
+
readme?: string;
|
|
790
806
|
constructor(data?: PartialMessage<FederatedGraph>);
|
|
791
807
|
static readonly runtime: typeof proto3;
|
|
792
808
|
static readonly typeName = "wg.cosmo.platform.v1.FederatedGraph";
|
|
@@ -817,6 +833,44 @@ export declare class GetFederatedGraphsResponse extends Message<GetFederatedGrap
|
|
|
817
833
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetFederatedGraphsResponse;
|
|
818
834
|
static equals(a: GetFederatedGraphsResponse | PlainMessage<GetFederatedGraphsResponse> | undefined, b: GetFederatedGraphsResponse | PlainMessage<GetFederatedGraphsResponse> | undefined): boolean;
|
|
819
835
|
}
|
|
836
|
+
/**
|
|
837
|
+
* @generated from message wg.cosmo.platform.v1.GetFederatedGraphsBySubgraphLabelsRequest
|
|
838
|
+
*/
|
|
839
|
+
export declare class GetFederatedGraphsBySubgraphLabelsRequest extends Message<GetFederatedGraphsBySubgraphLabelsRequest> {
|
|
840
|
+
/**
|
|
841
|
+
* @generated from field: string subgraphName = 1;
|
|
842
|
+
*/
|
|
843
|
+
subgraphName: string;
|
|
844
|
+
constructor(data?: PartialMessage<GetFederatedGraphsBySubgraphLabelsRequest>);
|
|
845
|
+
static readonly runtime: typeof proto3;
|
|
846
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphsBySubgraphLabelsRequest";
|
|
847
|
+
static readonly fields: FieldList;
|
|
848
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetFederatedGraphsBySubgraphLabelsRequest;
|
|
849
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetFederatedGraphsBySubgraphLabelsRequest;
|
|
850
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetFederatedGraphsBySubgraphLabelsRequest;
|
|
851
|
+
static equals(a: GetFederatedGraphsBySubgraphLabelsRequest | PlainMessage<GetFederatedGraphsBySubgraphLabelsRequest> | undefined, b: GetFederatedGraphsBySubgraphLabelsRequest | PlainMessage<GetFederatedGraphsBySubgraphLabelsRequest> | undefined): boolean;
|
|
852
|
+
}
|
|
853
|
+
/**
|
|
854
|
+
* @generated from message wg.cosmo.platform.v1.GetFederatedGraphsBySubgraphLabelsResponse
|
|
855
|
+
*/
|
|
856
|
+
export declare class GetFederatedGraphsBySubgraphLabelsResponse extends Message<GetFederatedGraphsBySubgraphLabelsResponse> {
|
|
857
|
+
/**
|
|
858
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
859
|
+
*/
|
|
860
|
+
response?: Response;
|
|
861
|
+
/**
|
|
862
|
+
* @generated from field: repeated wg.cosmo.platform.v1.FederatedGraph graphs = 2;
|
|
863
|
+
*/
|
|
864
|
+
graphs: FederatedGraph[];
|
|
865
|
+
constructor(data?: PartialMessage<GetFederatedGraphsBySubgraphLabelsResponse>);
|
|
866
|
+
static readonly runtime: typeof proto3;
|
|
867
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphsBySubgraphLabelsResponse";
|
|
868
|
+
static readonly fields: FieldList;
|
|
869
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetFederatedGraphsBySubgraphLabelsResponse;
|
|
870
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetFederatedGraphsBySubgraphLabelsResponse;
|
|
871
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetFederatedGraphsBySubgraphLabelsResponse;
|
|
872
|
+
static equals(a: GetFederatedGraphsBySubgraphLabelsResponse | PlainMessage<GetFederatedGraphsBySubgraphLabelsResponse> | undefined, b: GetFederatedGraphsBySubgraphLabelsResponse | PlainMessage<GetFederatedGraphsBySubgraphLabelsResponse> | undefined): boolean;
|
|
873
|
+
}
|
|
820
874
|
/**
|
|
821
875
|
* @generated from message wg.cosmo.platform.v1.GetSubgraphsRequest
|
|
822
876
|
*/
|
|
@@ -866,6 +920,14 @@ export declare class Subgraph extends Message<Subgraph> {
|
|
|
866
920
|
* @generated from field: optional string creatorUserId = 6;
|
|
867
921
|
*/
|
|
868
922
|
creatorUserId?: string;
|
|
923
|
+
/**
|
|
924
|
+
* @generated from field: optional string readme = 7;
|
|
925
|
+
*/
|
|
926
|
+
readme?: string;
|
|
927
|
+
/**
|
|
928
|
+
* @generated from field: string subscriptionUrl = 8;
|
|
929
|
+
*/
|
|
930
|
+
subscriptionUrl: string;
|
|
869
931
|
constructor(data?: PartialMessage<Subgraph>);
|
|
870
932
|
static readonly runtime: typeof proto3;
|
|
871
933
|
static readonly typeName = "wg.cosmo.platform.v1.Subgraph";
|
|
@@ -1017,6 +1079,10 @@ export declare class GetSubgraphByNameResponse extends Message<GetSubgraphByName
|
|
|
1017
1079
|
* @generated from field: wg.cosmo.platform.v1.Subgraph graph = 2;
|
|
1018
1080
|
*/
|
|
1019
1081
|
graph?: Subgraph;
|
|
1082
|
+
/**
|
|
1083
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SubgraphMember members = 3;
|
|
1084
|
+
*/
|
|
1085
|
+
members: SubgraphMember[];
|
|
1020
1086
|
constructor(data?: PartialMessage<GetSubgraphByNameResponse>);
|
|
1021
1087
|
static readonly runtime: typeof proto3;
|
|
1022
1088
|
static readonly typeName = "wg.cosmo.platform.v1.GetSubgraphByNameResponse";
|
|
@@ -1068,6 +1134,44 @@ export declare class GetLatestValidSubgraphSDLByNameResponse extends Message<Get
|
|
|
1068
1134
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetLatestValidSubgraphSDLByNameResponse;
|
|
1069
1135
|
static equals(a: GetLatestValidSubgraphSDLByNameResponse | PlainMessage<GetLatestValidSubgraphSDLByNameResponse> | undefined, b: GetLatestValidSubgraphSDLByNameResponse | PlainMessage<GetLatestValidSubgraphSDLByNameResponse> | undefined): boolean;
|
|
1070
1136
|
}
|
|
1137
|
+
/**
|
|
1138
|
+
* @generated from message wg.cosmo.platform.v1.GetLatestSubgraphSDLByNameRequest
|
|
1139
|
+
*/
|
|
1140
|
+
export declare class GetLatestSubgraphSDLByNameRequest extends Message<GetLatestSubgraphSDLByNameRequest> {
|
|
1141
|
+
/**
|
|
1142
|
+
* @generated from field: string name = 1;
|
|
1143
|
+
*/
|
|
1144
|
+
name: string;
|
|
1145
|
+
constructor(data?: PartialMessage<GetLatestSubgraphSDLByNameRequest>);
|
|
1146
|
+
static readonly runtime: typeof proto3;
|
|
1147
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetLatestSubgraphSDLByNameRequest";
|
|
1148
|
+
static readonly fields: FieldList;
|
|
1149
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetLatestSubgraphSDLByNameRequest;
|
|
1150
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetLatestSubgraphSDLByNameRequest;
|
|
1151
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetLatestSubgraphSDLByNameRequest;
|
|
1152
|
+
static equals(a: GetLatestSubgraphSDLByNameRequest | PlainMessage<GetLatestSubgraphSDLByNameRequest> | undefined, b: GetLatestSubgraphSDLByNameRequest | PlainMessage<GetLatestSubgraphSDLByNameRequest> | undefined): boolean;
|
|
1153
|
+
}
|
|
1154
|
+
/**
|
|
1155
|
+
* @generated from message wg.cosmo.platform.v1.GetLatestSubgraphSDLByNameResponse
|
|
1156
|
+
*/
|
|
1157
|
+
export declare class GetLatestSubgraphSDLByNameResponse extends Message<GetLatestSubgraphSDLByNameResponse> {
|
|
1158
|
+
/**
|
|
1159
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
1160
|
+
*/
|
|
1161
|
+
response?: Response;
|
|
1162
|
+
/**
|
|
1163
|
+
* @generated from field: optional string sdl = 2;
|
|
1164
|
+
*/
|
|
1165
|
+
sdl?: string;
|
|
1166
|
+
constructor(data?: PartialMessage<GetLatestSubgraphSDLByNameResponse>);
|
|
1167
|
+
static readonly runtime: typeof proto3;
|
|
1168
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetLatestSubgraphSDLByNameResponse";
|
|
1169
|
+
static readonly fields: FieldList;
|
|
1170
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetLatestSubgraphSDLByNameResponse;
|
|
1171
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetLatestSubgraphSDLByNameResponse;
|
|
1172
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetLatestSubgraphSDLByNameResponse;
|
|
1173
|
+
static equals(a: GetLatestSubgraphSDLByNameResponse | PlainMessage<GetLatestSubgraphSDLByNameResponse> | undefined, b: GetLatestSubgraphSDLByNameResponse | PlainMessage<GetLatestSubgraphSDLByNameResponse> | undefined): boolean;
|
|
1174
|
+
}
|
|
1071
1175
|
/**
|
|
1072
1176
|
* @generated from message wg.cosmo.platform.v1.GetChecksByFederatedGraphNameRequest
|
|
1073
1177
|
*/
|
|
@@ -1656,6 +1760,10 @@ export declare class UpdateSubgraphRequest extends Message<UpdateSubgraphRequest
|
|
|
1656
1760
|
* @generated from field: optional string subscription_url = 6;
|
|
1657
1761
|
*/
|
|
1658
1762
|
subscriptionUrl?: string;
|
|
1763
|
+
/**
|
|
1764
|
+
* @generated from field: optional string readme = 7;
|
|
1765
|
+
*/
|
|
1766
|
+
readme?: string;
|
|
1659
1767
|
constructor(data?: PartialMessage<UpdateSubgraphRequest>);
|
|
1660
1768
|
static readonly runtime: typeof proto3;
|
|
1661
1769
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateSubgraphRequest";
|
|
@@ -1702,6 +1810,10 @@ export declare class UpdateFederatedGraphRequest extends Message<UpdateFederated
|
|
|
1702
1810
|
* @generated from field: repeated string label_matchers = 3;
|
|
1703
1811
|
*/
|
|
1704
1812
|
labelMatchers: string[];
|
|
1813
|
+
/**
|
|
1814
|
+
* @generated from field: optional string readme = 4;
|
|
1815
|
+
*/
|
|
1816
|
+
readme?: string;
|
|
1705
1817
|
constructor(data?: PartialMessage<UpdateFederatedGraphRequest>);
|
|
1706
1818
|
static readonly runtime: typeof proto3;
|
|
1707
1819
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateFederatedGraphRequest";
|
|
@@ -4945,6 +5057,44 @@ export declare class GetSubgraphMembersResponse extends Message<GetSubgraphMembe
|
|
|
4945
5057
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetSubgraphMembersResponse;
|
|
4946
5058
|
static equals(a: GetSubgraphMembersResponse | PlainMessage<GetSubgraphMembersResponse> | undefined, b: GetSubgraphMembersResponse | PlainMessage<GetSubgraphMembersResponse> | undefined): boolean;
|
|
4947
5059
|
}
|
|
5060
|
+
/**
|
|
5061
|
+
* @generated from message wg.cosmo.platform.v1.AddReadmeRequest
|
|
5062
|
+
*/
|
|
5063
|
+
export declare class AddReadmeRequest extends Message<AddReadmeRequest> {
|
|
5064
|
+
/**
|
|
5065
|
+
* @generated from field: string targetName = 1;
|
|
5066
|
+
*/
|
|
5067
|
+
targetName: string;
|
|
5068
|
+
/**
|
|
5069
|
+
* @generated from field: string readme = 2;
|
|
5070
|
+
*/
|
|
5071
|
+
readme: string;
|
|
5072
|
+
constructor(data?: PartialMessage<AddReadmeRequest>);
|
|
5073
|
+
static readonly runtime: typeof proto3;
|
|
5074
|
+
static readonly typeName = "wg.cosmo.platform.v1.AddReadmeRequest";
|
|
5075
|
+
static readonly fields: FieldList;
|
|
5076
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AddReadmeRequest;
|
|
5077
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AddReadmeRequest;
|
|
5078
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AddReadmeRequest;
|
|
5079
|
+
static equals(a: AddReadmeRequest | PlainMessage<AddReadmeRequest> | undefined, b: AddReadmeRequest | PlainMessage<AddReadmeRequest> | undefined): boolean;
|
|
5080
|
+
}
|
|
5081
|
+
/**
|
|
5082
|
+
* @generated from message wg.cosmo.platform.v1.AddReadmeResponse
|
|
5083
|
+
*/
|
|
5084
|
+
export declare class AddReadmeResponse extends Message<AddReadmeResponse> {
|
|
5085
|
+
/**
|
|
5086
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
5087
|
+
*/
|
|
5088
|
+
response?: Response;
|
|
5089
|
+
constructor(data?: PartialMessage<AddReadmeResponse>);
|
|
5090
|
+
static readonly runtime: typeof proto3;
|
|
5091
|
+
static readonly typeName = "wg.cosmo.platform.v1.AddReadmeResponse";
|
|
5092
|
+
static readonly fields: FieldList;
|
|
5093
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AddReadmeResponse;
|
|
5094
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AddReadmeResponse;
|
|
5095
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AddReadmeResponse;
|
|
5096
|
+
static equals(a: AddReadmeResponse | PlainMessage<AddReadmeResponse> | undefined, b: AddReadmeResponse | PlainMessage<AddReadmeResponse> | undefined): boolean;
|
|
5097
|
+
}
|
|
4948
5098
|
/**
|
|
4949
5099
|
* @generated from message wg.cosmo.platform.v1.ClientInfo
|
|
4950
5100
|
*/
|
|
@@ -594,6 +594,12 @@ export class CreateFederatedGraphRequest extends Message {
|
|
|
594
594
|
* @generated from field: repeated string label_matchers = 3;
|
|
595
595
|
*/
|
|
596
596
|
labelMatchers = [];
|
|
597
|
+
/**
|
|
598
|
+
* readme of the fed graph
|
|
599
|
+
*
|
|
600
|
+
* @generated from field: optional string readme = 4;
|
|
601
|
+
*/
|
|
602
|
+
readme;
|
|
597
603
|
constructor(data) {
|
|
598
604
|
super();
|
|
599
605
|
proto3.util.initPartial(data, this);
|
|
@@ -604,6 +610,7 @@ export class CreateFederatedGraphRequest extends Message {
|
|
|
604
610
|
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
605
611
|
{ no: 2, name: "routing_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
606
612
|
{ no: 3, name: "label_matchers", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
613
|
+
{ no: 4, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
607
614
|
]);
|
|
608
615
|
static fromBinary(bytes, options) {
|
|
609
616
|
return new CreateFederatedGraphRequest().fromBinary(bytes, options);
|
|
@@ -658,6 +665,12 @@ export class CreateFederatedSubgraphRequest extends Message {
|
|
|
658
665
|
* @generated from field: optional string subscription_url = 6;
|
|
659
666
|
*/
|
|
660
667
|
subscriptionUrl;
|
|
668
|
+
/**
|
|
669
|
+
* readme of the subgraph
|
|
670
|
+
*
|
|
671
|
+
* @generated from field: optional string readme = 7;
|
|
672
|
+
*/
|
|
673
|
+
readme;
|
|
661
674
|
constructor(data) {
|
|
662
675
|
super();
|
|
663
676
|
proto3.util.initPartial(data, this);
|
|
@@ -671,6 +684,7 @@ export class CreateFederatedSubgraphRequest extends Message {
|
|
|
671
684
|
{ no: 4, name: "headers", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
672
685
|
{ no: 5, name: "subscription_protocol", kind: "enum", T: proto3.getEnumType(GraphQLSubscriptionProtocol), opt: true },
|
|
673
686
|
{ no: 6, name: "subscription_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
687
|
+
{ no: 7, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
674
688
|
]);
|
|
675
689
|
static fromBinary(bytes, options) {
|
|
676
690
|
return new CreateFederatedSubgraphRequest().fromBinary(bytes, options);
|
|
@@ -1170,6 +1184,10 @@ export class FederatedGraph extends Message {
|
|
|
1170
1184
|
* @generated from field: repeated wg.cosmo.platform.v1.RequestSeriesItem requestSeries = 9;
|
|
1171
1185
|
*/
|
|
1172
1186
|
requestSeries = [];
|
|
1187
|
+
/**
|
|
1188
|
+
* @generated from field: optional string readme = 10;
|
|
1189
|
+
*/
|
|
1190
|
+
readme;
|
|
1173
1191
|
constructor(data) {
|
|
1174
1192
|
super();
|
|
1175
1193
|
proto3.util.initPartial(data, this);
|
|
@@ -1186,6 +1204,7 @@ export class FederatedGraph extends Message {
|
|
|
1186
1204
|
{ no: 7, name: "compositionErrors", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1187
1205
|
{ no: 8, name: "connectedSubgraphs", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
1188
1206
|
{ no: 9, name: "requestSeries", kind: "message", T: RequestSeriesItem, repeated: true },
|
|
1207
|
+
{ no: 10, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1189
1208
|
]);
|
|
1190
1209
|
static fromBinary(bytes, options) {
|
|
1191
1210
|
return new FederatedGraph().fromBinary(bytes, options);
|
|
@@ -1235,6 +1254,71 @@ export class GetFederatedGraphsResponse extends Message {
|
|
|
1235
1254
|
return proto3.util.equals(GetFederatedGraphsResponse, a, b);
|
|
1236
1255
|
}
|
|
1237
1256
|
}
|
|
1257
|
+
/**
|
|
1258
|
+
* @generated from message wg.cosmo.platform.v1.GetFederatedGraphsBySubgraphLabelsRequest
|
|
1259
|
+
*/
|
|
1260
|
+
export class GetFederatedGraphsBySubgraphLabelsRequest extends Message {
|
|
1261
|
+
/**
|
|
1262
|
+
* @generated from field: string subgraphName = 1;
|
|
1263
|
+
*/
|
|
1264
|
+
subgraphName = "";
|
|
1265
|
+
constructor(data) {
|
|
1266
|
+
super();
|
|
1267
|
+
proto3.util.initPartial(data, this);
|
|
1268
|
+
}
|
|
1269
|
+
static runtime = proto3;
|
|
1270
|
+
static typeName = "wg.cosmo.platform.v1.GetFederatedGraphsBySubgraphLabelsRequest";
|
|
1271
|
+
static fields = proto3.util.newFieldList(() => [
|
|
1272
|
+
{ no: 1, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1273
|
+
]);
|
|
1274
|
+
static fromBinary(bytes, options) {
|
|
1275
|
+
return new GetFederatedGraphsBySubgraphLabelsRequest().fromBinary(bytes, options);
|
|
1276
|
+
}
|
|
1277
|
+
static fromJson(jsonValue, options) {
|
|
1278
|
+
return new GetFederatedGraphsBySubgraphLabelsRequest().fromJson(jsonValue, options);
|
|
1279
|
+
}
|
|
1280
|
+
static fromJsonString(jsonString, options) {
|
|
1281
|
+
return new GetFederatedGraphsBySubgraphLabelsRequest().fromJsonString(jsonString, options);
|
|
1282
|
+
}
|
|
1283
|
+
static equals(a, b) {
|
|
1284
|
+
return proto3.util.equals(GetFederatedGraphsBySubgraphLabelsRequest, a, b);
|
|
1285
|
+
}
|
|
1286
|
+
}
|
|
1287
|
+
/**
|
|
1288
|
+
* @generated from message wg.cosmo.platform.v1.GetFederatedGraphsBySubgraphLabelsResponse
|
|
1289
|
+
*/
|
|
1290
|
+
export class GetFederatedGraphsBySubgraphLabelsResponse extends Message {
|
|
1291
|
+
/**
|
|
1292
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
1293
|
+
*/
|
|
1294
|
+
response;
|
|
1295
|
+
/**
|
|
1296
|
+
* @generated from field: repeated wg.cosmo.platform.v1.FederatedGraph graphs = 2;
|
|
1297
|
+
*/
|
|
1298
|
+
graphs = [];
|
|
1299
|
+
constructor(data) {
|
|
1300
|
+
super();
|
|
1301
|
+
proto3.util.initPartial(data, this);
|
|
1302
|
+
}
|
|
1303
|
+
static runtime = proto3;
|
|
1304
|
+
static typeName = "wg.cosmo.platform.v1.GetFederatedGraphsBySubgraphLabelsResponse";
|
|
1305
|
+
static fields = proto3.util.newFieldList(() => [
|
|
1306
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
1307
|
+
{ no: 2, name: "graphs", kind: "message", T: FederatedGraph, repeated: true },
|
|
1308
|
+
]);
|
|
1309
|
+
static fromBinary(bytes, options) {
|
|
1310
|
+
return new GetFederatedGraphsBySubgraphLabelsResponse().fromBinary(bytes, options);
|
|
1311
|
+
}
|
|
1312
|
+
static fromJson(jsonValue, options) {
|
|
1313
|
+
return new GetFederatedGraphsBySubgraphLabelsResponse().fromJson(jsonValue, options);
|
|
1314
|
+
}
|
|
1315
|
+
static fromJsonString(jsonString, options) {
|
|
1316
|
+
return new GetFederatedGraphsBySubgraphLabelsResponse().fromJsonString(jsonString, options);
|
|
1317
|
+
}
|
|
1318
|
+
static equals(a, b) {
|
|
1319
|
+
return proto3.util.equals(GetFederatedGraphsBySubgraphLabelsResponse, a, b);
|
|
1320
|
+
}
|
|
1321
|
+
}
|
|
1238
1322
|
/**
|
|
1239
1323
|
* @generated from message wg.cosmo.platform.v1.GetSubgraphsRequest
|
|
1240
1324
|
*/
|
|
@@ -1298,6 +1382,14 @@ export class Subgraph extends Message {
|
|
|
1298
1382
|
* @generated from field: optional string creatorUserId = 6;
|
|
1299
1383
|
*/
|
|
1300
1384
|
creatorUserId;
|
|
1385
|
+
/**
|
|
1386
|
+
* @generated from field: optional string readme = 7;
|
|
1387
|
+
*/
|
|
1388
|
+
readme;
|
|
1389
|
+
/**
|
|
1390
|
+
* @generated from field: string subscriptionUrl = 8;
|
|
1391
|
+
*/
|
|
1392
|
+
subscriptionUrl = "";
|
|
1301
1393
|
constructor(data) {
|
|
1302
1394
|
super();
|
|
1303
1395
|
proto3.util.initPartial(data, this);
|
|
@@ -1311,6 +1403,8 @@ export class Subgraph extends Message {
|
|
|
1311
1403
|
{ no: 4, name: "lastUpdatedAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1312
1404
|
{ no: 5, name: "labels", kind: "message", T: Label, repeated: true },
|
|
1313
1405
|
{ no: 6, name: "creatorUserId", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1406
|
+
{ no: 7, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1407
|
+
{ no: 8, name: "subscriptionUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1314
1408
|
]);
|
|
1315
1409
|
static fromBinary(bytes, options) {
|
|
1316
1410
|
return new Subgraph().fromBinary(bytes, options);
|
|
@@ -1552,6 +1646,10 @@ export class GetSubgraphByNameResponse extends Message {
|
|
|
1552
1646
|
* @generated from field: wg.cosmo.platform.v1.Subgraph graph = 2;
|
|
1553
1647
|
*/
|
|
1554
1648
|
graph;
|
|
1649
|
+
/**
|
|
1650
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SubgraphMember members = 3;
|
|
1651
|
+
*/
|
|
1652
|
+
members = [];
|
|
1555
1653
|
constructor(data) {
|
|
1556
1654
|
super();
|
|
1557
1655
|
proto3.util.initPartial(data, this);
|
|
@@ -1561,6 +1659,7 @@ export class GetSubgraphByNameResponse extends Message {
|
|
|
1561
1659
|
static fields = proto3.util.newFieldList(() => [
|
|
1562
1660
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
1563
1661
|
{ no: 2, name: "graph", kind: "message", T: Subgraph },
|
|
1662
|
+
{ no: 3, name: "members", kind: "message", T: SubgraphMember, repeated: true },
|
|
1564
1663
|
]);
|
|
1565
1664
|
static fromBinary(bytes, options) {
|
|
1566
1665
|
return new GetSubgraphByNameResponse().fromBinary(bytes, options);
|
|
@@ -1645,6 +1744,71 @@ export class GetLatestValidSubgraphSDLByNameResponse extends Message {
|
|
|
1645
1744
|
return proto3.util.equals(GetLatestValidSubgraphSDLByNameResponse, a, b);
|
|
1646
1745
|
}
|
|
1647
1746
|
}
|
|
1747
|
+
/**
|
|
1748
|
+
* @generated from message wg.cosmo.platform.v1.GetLatestSubgraphSDLByNameRequest
|
|
1749
|
+
*/
|
|
1750
|
+
export class GetLatestSubgraphSDLByNameRequest extends Message {
|
|
1751
|
+
/**
|
|
1752
|
+
* @generated from field: string name = 1;
|
|
1753
|
+
*/
|
|
1754
|
+
name = "";
|
|
1755
|
+
constructor(data) {
|
|
1756
|
+
super();
|
|
1757
|
+
proto3.util.initPartial(data, this);
|
|
1758
|
+
}
|
|
1759
|
+
static runtime = proto3;
|
|
1760
|
+
static typeName = "wg.cosmo.platform.v1.GetLatestSubgraphSDLByNameRequest";
|
|
1761
|
+
static fields = proto3.util.newFieldList(() => [
|
|
1762
|
+
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1763
|
+
]);
|
|
1764
|
+
static fromBinary(bytes, options) {
|
|
1765
|
+
return new GetLatestSubgraphSDLByNameRequest().fromBinary(bytes, options);
|
|
1766
|
+
}
|
|
1767
|
+
static fromJson(jsonValue, options) {
|
|
1768
|
+
return new GetLatestSubgraphSDLByNameRequest().fromJson(jsonValue, options);
|
|
1769
|
+
}
|
|
1770
|
+
static fromJsonString(jsonString, options) {
|
|
1771
|
+
return new GetLatestSubgraphSDLByNameRequest().fromJsonString(jsonString, options);
|
|
1772
|
+
}
|
|
1773
|
+
static equals(a, b) {
|
|
1774
|
+
return proto3.util.equals(GetLatestSubgraphSDLByNameRequest, a, b);
|
|
1775
|
+
}
|
|
1776
|
+
}
|
|
1777
|
+
/**
|
|
1778
|
+
* @generated from message wg.cosmo.platform.v1.GetLatestSubgraphSDLByNameResponse
|
|
1779
|
+
*/
|
|
1780
|
+
export class GetLatestSubgraphSDLByNameResponse extends Message {
|
|
1781
|
+
/**
|
|
1782
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
1783
|
+
*/
|
|
1784
|
+
response;
|
|
1785
|
+
/**
|
|
1786
|
+
* @generated from field: optional string sdl = 2;
|
|
1787
|
+
*/
|
|
1788
|
+
sdl;
|
|
1789
|
+
constructor(data) {
|
|
1790
|
+
super();
|
|
1791
|
+
proto3.util.initPartial(data, this);
|
|
1792
|
+
}
|
|
1793
|
+
static runtime = proto3;
|
|
1794
|
+
static typeName = "wg.cosmo.platform.v1.GetLatestSubgraphSDLByNameResponse";
|
|
1795
|
+
static fields = proto3.util.newFieldList(() => [
|
|
1796
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
1797
|
+
{ no: 2, name: "sdl", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1798
|
+
]);
|
|
1799
|
+
static fromBinary(bytes, options) {
|
|
1800
|
+
return new GetLatestSubgraphSDLByNameResponse().fromBinary(bytes, options);
|
|
1801
|
+
}
|
|
1802
|
+
static fromJson(jsonValue, options) {
|
|
1803
|
+
return new GetLatestSubgraphSDLByNameResponse().fromJson(jsonValue, options);
|
|
1804
|
+
}
|
|
1805
|
+
static fromJsonString(jsonString, options) {
|
|
1806
|
+
return new GetLatestSubgraphSDLByNameResponse().fromJsonString(jsonString, options);
|
|
1807
|
+
}
|
|
1808
|
+
static equals(a, b) {
|
|
1809
|
+
return proto3.util.equals(GetLatestSubgraphSDLByNameResponse, a, b);
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1648
1812
|
/**
|
|
1649
1813
|
* @generated from message wg.cosmo.platform.v1.GetChecksByFederatedGraphNameRequest
|
|
1650
1814
|
*/
|
|
@@ -2547,6 +2711,10 @@ export class UpdateSubgraphRequest extends Message {
|
|
|
2547
2711
|
* @generated from field: optional string subscription_url = 6;
|
|
2548
2712
|
*/
|
|
2549
2713
|
subscriptionUrl;
|
|
2714
|
+
/**
|
|
2715
|
+
* @generated from field: optional string readme = 7;
|
|
2716
|
+
*/
|
|
2717
|
+
readme;
|
|
2550
2718
|
constructor(data) {
|
|
2551
2719
|
super();
|
|
2552
2720
|
proto3.util.initPartial(data, this);
|
|
@@ -2560,6 +2728,7 @@ export class UpdateSubgraphRequest extends Message {
|
|
|
2560
2728
|
{ no: 4, name: "headers", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
2561
2729
|
{ no: 5, name: "subscription_protocol", kind: "enum", T: proto3.getEnumType(GraphQLSubscriptionProtocol), opt: true },
|
|
2562
2730
|
{ no: 6, name: "subscription_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2731
|
+
{ no: 7, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2563
2732
|
]);
|
|
2564
2733
|
static fromBinary(bytes, options) {
|
|
2565
2734
|
return new UpdateSubgraphRequest().fromBinary(bytes, options);
|
|
@@ -2625,6 +2794,10 @@ export class UpdateFederatedGraphRequest extends Message {
|
|
|
2625
2794
|
* @generated from field: repeated string label_matchers = 3;
|
|
2626
2795
|
*/
|
|
2627
2796
|
labelMatchers = [];
|
|
2797
|
+
/**
|
|
2798
|
+
* @generated from field: optional string readme = 4;
|
|
2799
|
+
*/
|
|
2800
|
+
readme;
|
|
2628
2801
|
constructor(data) {
|
|
2629
2802
|
super();
|
|
2630
2803
|
proto3.util.initPartial(data, this);
|
|
@@ -2635,6 +2808,7 @@ export class UpdateFederatedGraphRequest extends Message {
|
|
|
2635
2808
|
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2636
2809
|
{ no: 2, name: "routing_url", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2637
2810
|
{ no: 3, name: "label_matchers", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
2811
|
+
{ no: 4, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2638
2812
|
]);
|
|
2639
2813
|
static fromBinary(bytes, options) {
|
|
2640
2814
|
return new UpdateFederatedGraphRequest().fromBinary(bytes, options);
|
|
@@ -7865,6 +8039,71 @@ export class GetSubgraphMembersResponse extends Message {
|
|
|
7865
8039
|
return proto3.util.equals(GetSubgraphMembersResponse, a, b);
|
|
7866
8040
|
}
|
|
7867
8041
|
}
|
|
8042
|
+
/**
|
|
8043
|
+
* @generated from message wg.cosmo.platform.v1.AddReadmeRequest
|
|
8044
|
+
*/
|
|
8045
|
+
export class AddReadmeRequest extends Message {
|
|
8046
|
+
/**
|
|
8047
|
+
* @generated from field: string targetName = 1;
|
|
8048
|
+
*/
|
|
8049
|
+
targetName = "";
|
|
8050
|
+
/**
|
|
8051
|
+
* @generated from field: string readme = 2;
|
|
8052
|
+
*/
|
|
8053
|
+
readme = "";
|
|
8054
|
+
constructor(data) {
|
|
8055
|
+
super();
|
|
8056
|
+
proto3.util.initPartial(data, this);
|
|
8057
|
+
}
|
|
8058
|
+
static runtime = proto3;
|
|
8059
|
+
static typeName = "wg.cosmo.platform.v1.AddReadmeRequest";
|
|
8060
|
+
static fields = proto3.util.newFieldList(() => [
|
|
8061
|
+
{ no: 1, name: "targetName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
8062
|
+
{ no: 2, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
8063
|
+
]);
|
|
8064
|
+
static fromBinary(bytes, options) {
|
|
8065
|
+
return new AddReadmeRequest().fromBinary(bytes, options);
|
|
8066
|
+
}
|
|
8067
|
+
static fromJson(jsonValue, options) {
|
|
8068
|
+
return new AddReadmeRequest().fromJson(jsonValue, options);
|
|
8069
|
+
}
|
|
8070
|
+
static fromJsonString(jsonString, options) {
|
|
8071
|
+
return new AddReadmeRequest().fromJsonString(jsonString, options);
|
|
8072
|
+
}
|
|
8073
|
+
static equals(a, b) {
|
|
8074
|
+
return proto3.util.equals(AddReadmeRequest, a, b);
|
|
8075
|
+
}
|
|
8076
|
+
}
|
|
8077
|
+
/**
|
|
8078
|
+
* @generated from message wg.cosmo.platform.v1.AddReadmeResponse
|
|
8079
|
+
*/
|
|
8080
|
+
export class AddReadmeResponse extends Message {
|
|
8081
|
+
/**
|
|
8082
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
8083
|
+
*/
|
|
8084
|
+
response;
|
|
8085
|
+
constructor(data) {
|
|
8086
|
+
super();
|
|
8087
|
+
proto3.util.initPartial(data, this);
|
|
8088
|
+
}
|
|
8089
|
+
static runtime = proto3;
|
|
8090
|
+
static typeName = "wg.cosmo.platform.v1.AddReadmeResponse";
|
|
8091
|
+
static fields = proto3.util.newFieldList(() => [
|
|
8092
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
8093
|
+
]);
|
|
8094
|
+
static fromBinary(bytes, options) {
|
|
8095
|
+
return new AddReadmeResponse().fromBinary(bytes, options);
|
|
8096
|
+
}
|
|
8097
|
+
static fromJson(jsonValue, options) {
|
|
8098
|
+
return new AddReadmeResponse().fromJson(jsonValue, options);
|
|
8099
|
+
}
|
|
8100
|
+
static fromJsonString(jsonString, options) {
|
|
8101
|
+
return new AddReadmeResponse().fromJsonString(jsonString, options);
|
|
8102
|
+
}
|
|
8103
|
+
static equals(a, b) {
|
|
8104
|
+
return proto3.util.equals(AddReadmeResponse, a, b);
|
|
8105
|
+
}
|
|
8106
|
+
}
|
|
7868
8107
|
/**
|
|
7869
8108
|
* @generated from message wg.cosmo.platform.v1.ClientInfo
|
|
7870
8109
|
*/
|