@wundergraph/cosmo-connect 0.2.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.
@@ -0,0 +1,527 @@
1
+ // https://protobuf.dev/programming-guides/style/
2
+ // @generated by protoc-gen-connect-query v0.4.1 with parameter "target=ts"
3
+ // @generated from file wg/cosmo/platform/v1/platform.proto (package wg.cosmo.platform.v1, syntax proto3)
4
+ /* eslint-disable */
5
+ // @ts-nocheck
6
+ import { createQueryService } from "@bufbuild/connect-query";
7
+ import { MethodIdempotency, MethodKind } from "@bufbuild/protobuf";
8
+ import { CheckFederatedGraphRequest, CheckFederatedGraphResponse, CheckSubgraphSchemaRequest, CheckSubgraphSchemaResponse, CreateAPIKeyRequest, CreateAPIKeyResponse, CreateFederatedGraphRequest, CreateFederatedGraphResponse, CreateFederatedGraphTokenRequest, CreateFederatedGraphTokenResponse, CreateFederatedSubgraphRequest, CreateFederatedSubgraphResponse, DeleteAPIKeyRequest, DeleteAPIKeyResponse, DeleteFederatedGraphRequest, DeleteFederatedGraphResponse, DeleteFederatedSubgraphRequest, DeleteFederatedSubgraphResponse, FixSubgraphSchemaRequest, FixSubgraphSchemaResponse, GetAnalyticsViewRequest, GetAnalyticsViewResponse, GetAPIKeysRequest, GetAPIKeysResponse, GetCheckDetailsRequest, GetCheckDetailsResponse, GetChecksByFederatedGraphNameRequest, GetChecksByFederatedGraphNameResponse, GetDashboardAnalyticsViewRequest, GetDashboardAnalyticsViewResponse, GetFederatedGraphByNameRequest, GetFederatedGraphByNameResponse, GetFederatedGraphChangelogRequest, GetFederatedGraphChangelogResponse, GetFederatedGraphSDLByNameRequest, GetFederatedGraphSDLByNameResponse, GetFederatedGraphsRequest, GetFederatedGraphsResponse, GetFederatedSubgraphSDLByNameRequest, GetFederatedSubgraphSDLByNameResponse, GetOrganizationMembersRequest, GetOrganizationMembersResponse, GetSubgraphByNameRequest, GetSubgraphByNameResponse, GetSubgraphsRequest, GetSubgraphsResponse, GetTraceRequest, GetTraceResponse, InviteUserRequest, InviteUserResponse, PublishFederatedSubgraphRequest, PublishFederatedSubgraphResponse, UpdateFederatedGraphRequest, UpdateFederatedGraphResponse, UpdateSubgraphRequest, UpdateSubgraphResponse } from "./platform_pb.js";
9
+ import { GetConfigRequest, GetConfigResponse } from "../../node/v1/node_pb.js";
10
+ export const typeName = "wg.cosmo.platform.v1.PlatformService";
11
+ /**
12
+ * CreateFederatedGraph creates a federated graph on the control plane.
13
+ *
14
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.CreateFederatedGraph
15
+ */
16
+ export const createFederatedGraph = createQueryService({
17
+ service: {
18
+ methods: {
19
+ createFederatedGraph: {
20
+ name: "CreateFederatedGraph",
21
+ kind: MethodKind.Unary,
22
+ I: CreateFederatedGraphRequest,
23
+ O: CreateFederatedGraphResponse,
24
+ },
25
+ },
26
+ typeName: "wg.cosmo.platform.v1.PlatformService",
27
+ },
28
+ }).createFederatedGraph;
29
+ /**
30
+ * CreateFederatedSubgraph creates a federated subgraph on the control plane.
31
+ *
32
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.CreateFederatedSubgraph
33
+ */
34
+ export const createFederatedSubgraph = createQueryService({
35
+ service: {
36
+ methods: {
37
+ createFederatedSubgraph: {
38
+ name: "CreateFederatedSubgraph",
39
+ kind: MethodKind.Unary,
40
+ I: CreateFederatedSubgraphRequest,
41
+ O: CreateFederatedSubgraphResponse,
42
+ },
43
+ },
44
+ typeName: "wg.cosmo.platform.v1.PlatformService",
45
+ },
46
+ }).createFederatedSubgraph;
47
+ /**
48
+ * PublishFederatedSubgraph pushes the schema of the subgraph to the control plane.
49
+ *
50
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.PublishFederatedSubgraph
51
+ */
52
+ export const publishFederatedSubgraph = createQueryService({
53
+ service: {
54
+ methods: {
55
+ publishFederatedSubgraph: {
56
+ name: "PublishFederatedSubgraph",
57
+ kind: MethodKind.Unary,
58
+ I: PublishFederatedSubgraphRequest,
59
+ O: PublishFederatedSubgraphResponse,
60
+ },
61
+ },
62
+ typeName: "wg.cosmo.platform.v1.PlatformService",
63
+ },
64
+ }).publishFederatedSubgraph;
65
+ /**
66
+ * DeleteFederatedGraph deletes a federated graph from the control plane.
67
+ *
68
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.DeleteFederatedGraph
69
+ */
70
+ export const deleteFederatedGraph = createQueryService({
71
+ service: {
72
+ methods: {
73
+ deleteFederatedGraph: {
74
+ name: "DeleteFederatedGraph",
75
+ kind: MethodKind.Unary,
76
+ I: DeleteFederatedGraphRequest,
77
+ O: DeleteFederatedGraphResponse,
78
+ },
79
+ },
80
+ typeName: "wg.cosmo.platform.v1.PlatformService",
81
+ },
82
+ }).deleteFederatedGraph;
83
+ /**
84
+ * DeleteFederatedSubgraph deletes a federated subgraph from the control plane.
85
+ *
86
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.DeleteFederatedSubgraph
87
+ */
88
+ export const deleteFederatedSubgraph = createQueryService({
89
+ service: {
90
+ methods: {
91
+ deleteFederatedSubgraph: {
92
+ name: "DeleteFederatedSubgraph",
93
+ kind: MethodKind.Unary,
94
+ I: DeleteFederatedSubgraphRequest,
95
+ O: DeleteFederatedSubgraphResponse,
96
+ },
97
+ },
98
+ typeName: "wg.cosmo.platform.v1.PlatformService",
99
+ },
100
+ }).deleteFederatedSubgraph;
101
+ /**
102
+ * CheckSubgraphSchema checks if the schema is valid and if it can be composed without conflicts with the provided new subgraph schema.
103
+ *
104
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.CheckSubgraphSchema
105
+ */
106
+ export const checkSubgraphSchema = createQueryService({
107
+ service: {
108
+ methods: {
109
+ checkSubgraphSchema: {
110
+ name: "CheckSubgraphSchema",
111
+ kind: MethodKind.Unary,
112
+ I: CheckSubgraphSchemaRequest,
113
+ O: CheckSubgraphSchemaResponse,
114
+ },
115
+ },
116
+ typeName: "wg.cosmo.platform.v1.PlatformService",
117
+ },
118
+ }).checkSubgraphSchema;
119
+ /**
120
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.FixSubgraphSchema
121
+ */
122
+ export const fixSubgraphSchema = createQueryService({
123
+ service: {
124
+ methods: {
125
+ fixSubgraphSchema: {
126
+ name: "FixSubgraphSchema",
127
+ kind: MethodKind.Unary,
128
+ I: FixSubgraphSchemaRequest,
129
+ O: FixSubgraphSchemaResponse,
130
+ },
131
+ },
132
+ typeName: "wg.cosmo.platform.v1.PlatformService",
133
+ },
134
+ }).fixSubgraphSchema;
135
+ /**
136
+ * UpdateFederatedGraph updates a federated graph with new labels and routing url
137
+ *
138
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.UpdateFederatedGraph
139
+ */
140
+ export const updateFederatedGraph = createQueryService({
141
+ service: {
142
+ methods: {
143
+ updateFederatedGraph: {
144
+ name: "UpdateFederatedGraph",
145
+ kind: MethodKind.Unary,
146
+ I: UpdateFederatedGraphRequest,
147
+ O: UpdateFederatedGraphResponse,
148
+ },
149
+ },
150
+ typeName: "wg.cosmo.platform.v1.PlatformService",
151
+ },
152
+ }).updateFederatedGraph;
153
+ /**
154
+ * UpdateSubgraph updates a subgraph with new labels and routing url
155
+ *
156
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.UpdateSubgraph
157
+ */
158
+ export const updateSubgraph = createQueryService({
159
+ service: {
160
+ methods: {
161
+ updateSubgraph: {
162
+ name: "UpdateSubgraph",
163
+ kind: MethodKind.Unary,
164
+ I: UpdateSubgraphRequest,
165
+ O: UpdateSubgraphResponse,
166
+ },
167
+ },
168
+ typeName: "wg.cosmo.platform.v1.PlatformService",
169
+ },
170
+ }).updateSubgraph;
171
+ /**
172
+ * CheckFederatedGraph checks if the federated graph can be composed with the new labels provided.
173
+ *
174
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.CheckFederatedGraph
175
+ */
176
+ export const checkFederatedGraph = createQueryService({
177
+ service: {
178
+ methods: {
179
+ checkFederatedGraph: {
180
+ name: "CheckFederatedGraph",
181
+ kind: MethodKind.Unary,
182
+ I: CheckFederatedGraphRequest,
183
+ O: CheckFederatedGraphResponse,
184
+ },
185
+ },
186
+ typeName: "wg.cosmo.platform.v1.PlatformService",
187
+ },
188
+ }).checkFederatedGraph;
189
+ /**
190
+ * GetFederatedGraphs returns the list of federated graphs.
191
+ *
192
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFederatedGraphs
193
+ */
194
+ export const getFederatedGraphs = createQueryService({
195
+ service: {
196
+ methods: {
197
+ getFederatedGraphs: {
198
+ name: "GetFederatedGraphs",
199
+ kind: MethodKind.Unary,
200
+ I: GetFederatedGraphsRequest,
201
+ O: GetFederatedGraphsResponse,
202
+ },
203
+ },
204
+ typeName: "wg.cosmo.platform.v1.PlatformService",
205
+ },
206
+ }).getFederatedGraphs;
207
+ /**
208
+ * GetFederatedGraphByName returns the federated graph by name.
209
+ *
210
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFederatedGraphByName
211
+ */
212
+ export const getFederatedGraphByName = createQueryService({
213
+ service: {
214
+ methods: {
215
+ getFederatedGraphByName: {
216
+ name: "GetFederatedGraphByName",
217
+ kind: MethodKind.Unary,
218
+ I: GetFederatedGraphByNameRequest,
219
+ O: GetFederatedGraphByNameResponse,
220
+ },
221
+ },
222
+ typeName: "wg.cosmo.platform.v1.PlatformService",
223
+ },
224
+ }).getFederatedGraphByName;
225
+ /**
226
+ * GetFederatedGraphSDLByName returns the SDL of the federated graph by name.
227
+ *
228
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFederatedGraphSDLByName
229
+ */
230
+ export const getFederatedGraphSDLByName = createQueryService({
231
+ service: {
232
+ methods: {
233
+ getFederatedGraphSDLByName: {
234
+ name: "GetFederatedGraphSDLByName",
235
+ kind: MethodKind.Unary,
236
+ I: GetFederatedGraphSDLByNameRequest,
237
+ O: GetFederatedGraphSDLByNameResponse,
238
+ },
239
+ },
240
+ typeName: "wg.cosmo.platform.v1.PlatformService",
241
+ },
242
+ }).getFederatedGraphSDLByName;
243
+ /**
244
+ * GetSubgraphs returns the list of subgraphs.
245
+ *
246
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetSubgraphs
247
+ */
248
+ export const getSubgraphs = createQueryService({
249
+ service: {
250
+ methods: {
251
+ getSubgraphs: {
252
+ name: "GetSubgraphs",
253
+ kind: MethodKind.Unary,
254
+ I: GetSubgraphsRequest,
255
+ O: GetSubgraphsResponse,
256
+ },
257
+ },
258
+ typeName: "wg.cosmo.platform.v1.PlatformService",
259
+ },
260
+ }).getSubgraphs;
261
+ /**
262
+ * GetSubgraphByName returns the subgraph by name.
263
+ *
264
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetSubgraphByName
265
+ */
266
+ export const getSubgraphByName = createQueryService({
267
+ service: {
268
+ methods: {
269
+ getSubgraphByName: {
270
+ name: "GetSubgraphByName",
271
+ kind: MethodKind.Unary,
272
+ I: GetSubgraphByNameRequest,
273
+ O: GetSubgraphByNameResponse,
274
+ },
275
+ },
276
+ typeName: "wg.cosmo.platform.v1.PlatformService",
277
+ },
278
+ }).getSubgraphByName;
279
+ /**
280
+ * GetFederatedSubgraphSDLByName returns the SDL of the subgraph by name.
281
+ *
282
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFederatedSubgraphSDLByName
283
+ */
284
+ export const getFederatedSubgraphSDLByName = createQueryService({
285
+ service: {
286
+ methods: {
287
+ getFederatedSubgraphSDLByName: {
288
+ name: "GetFederatedSubgraphSDLByName",
289
+ kind: MethodKind.Unary,
290
+ I: GetFederatedSubgraphSDLByNameRequest,
291
+ O: GetFederatedSubgraphSDLByNameResponse,
292
+ },
293
+ },
294
+ typeName: "wg.cosmo.platform.v1.PlatformService",
295
+ },
296
+ }).getFederatedSubgraphSDLByName;
297
+ /**
298
+ * GetChecksByFederatedGraphName return schema and composition checks that concern a federated graph
299
+ *
300
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetChecksByFederatedGraphName
301
+ */
302
+ export const getChecksByFederatedGraphName = createQueryService({
303
+ service: {
304
+ methods: {
305
+ getChecksByFederatedGraphName: {
306
+ name: "GetChecksByFederatedGraphName",
307
+ kind: MethodKind.Unary,
308
+ I: GetChecksByFederatedGraphNameRequest,
309
+ O: GetChecksByFederatedGraphNameResponse,
310
+ },
311
+ },
312
+ typeName: "wg.cosmo.platform.v1.PlatformService",
313
+ },
314
+ }).getChecksByFederatedGraphName;
315
+ /**
316
+ * GetCheckDetails returns changes and composition errors recorded for a check
317
+ *
318
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetCheckDetails
319
+ */
320
+ export const getCheckDetails = createQueryService({
321
+ service: {
322
+ methods: {
323
+ getCheckDetails: {
324
+ name: "GetCheckDetails",
325
+ kind: MethodKind.Unary,
326
+ I: GetCheckDetailsRequest,
327
+ O: GetCheckDetailsResponse,
328
+ },
329
+ },
330
+ typeName: "wg.cosmo.platform.v1.PlatformService",
331
+ },
332
+ }).getCheckDetails;
333
+ /**
334
+ * GetFederatedGraphChangelog returns the changelog of the federated graph.
335
+ *
336
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetFederatedGraphChangelog
337
+ */
338
+ export const getFederatedGraphChangelog = createQueryService({
339
+ service: {
340
+ methods: {
341
+ getFederatedGraphChangelog: {
342
+ name: "GetFederatedGraphChangelog",
343
+ kind: MethodKind.Unary,
344
+ I: GetFederatedGraphChangelogRequest,
345
+ O: GetFederatedGraphChangelogResponse,
346
+ },
347
+ },
348
+ typeName: "wg.cosmo.platform.v1.PlatformService",
349
+ },
350
+ }).getFederatedGraphChangelog;
351
+ /**
352
+ * CreateFederatedGraphToken creates a federated graph token that is consumed by the router to authenticate requests.
353
+ *
354
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.CreateFederatedGraphToken
355
+ */
356
+ export const createFederatedGraphToken = createQueryService({
357
+ service: {
358
+ methods: {
359
+ createFederatedGraphToken: {
360
+ name: "CreateFederatedGraphToken",
361
+ kind: MethodKind.Unary,
362
+ I: CreateFederatedGraphTokenRequest,
363
+ O: CreateFederatedGraphTokenResponse,
364
+ },
365
+ },
366
+ typeName: "wg.cosmo.platform.v1.PlatformService",
367
+ },
368
+ }).createFederatedGraphToken;
369
+ /**
370
+ * GetOrganizationMembers returns the list of organization members
371
+ *
372
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetOrganizationMembers
373
+ */
374
+ export const getOrganizationMembers = createQueryService({
375
+ service: {
376
+ methods: {
377
+ getOrganizationMembers: {
378
+ name: "GetOrganizationMembers",
379
+ kind: MethodKind.Unary,
380
+ I: GetOrganizationMembersRequest,
381
+ O: GetOrganizationMembersResponse,
382
+ },
383
+ },
384
+ typeName: "wg.cosmo.platform.v1.PlatformService",
385
+ },
386
+ }).getOrganizationMembers;
387
+ /**
388
+ * InviteUser invites an user to join the organization
389
+ *
390
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.InviteUser
391
+ */
392
+ export const inviteUser = createQueryService({
393
+ service: {
394
+ methods: {
395
+ inviteUser: {
396
+ name: "InviteUser",
397
+ kind: MethodKind.Unary,
398
+ I: InviteUserRequest,
399
+ O: InviteUserResponse,
400
+ },
401
+ },
402
+ typeName: "wg.cosmo.platform.v1.PlatformService",
403
+ },
404
+ }).inviteUser;
405
+ /**
406
+ * GetAPIKeys returns a list of API keys of the organization
407
+ *
408
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetAPIKeys
409
+ */
410
+ export const getAPIKeys = createQueryService({
411
+ service: {
412
+ methods: {
413
+ getAPIKeys: {
414
+ name: "GetAPIKeys",
415
+ kind: MethodKind.Unary,
416
+ I: GetAPIKeysRequest,
417
+ O: GetAPIKeysResponse,
418
+ },
419
+ },
420
+ typeName: "wg.cosmo.platform.v1.PlatformService",
421
+ },
422
+ }).getAPIKeys;
423
+ /**
424
+ * CreateAPIKey creates an API key for the organization
425
+ *
426
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.CreateAPIKey
427
+ */
428
+ export const createAPIKey = createQueryService({
429
+ service: {
430
+ methods: {
431
+ createAPIKey: {
432
+ name: "CreateAPIKey",
433
+ kind: MethodKind.Unary,
434
+ I: CreateAPIKeyRequest,
435
+ O: CreateAPIKeyResponse,
436
+ },
437
+ },
438
+ typeName: "wg.cosmo.platform.v1.PlatformService",
439
+ },
440
+ }).createAPIKey;
441
+ /**
442
+ * DeleteAPIKey deletes an API key for the organization
443
+ *
444
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.DeleteAPIKey
445
+ */
446
+ export const deleteAPIKey = createQueryService({
447
+ service: {
448
+ methods: {
449
+ deleteAPIKey: {
450
+ name: "DeleteAPIKey",
451
+ kind: MethodKind.Unary,
452
+ I: DeleteAPIKeyRequest,
453
+ O: DeleteAPIKeyResponse,
454
+ },
455
+ },
456
+ typeName: "wg.cosmo.platform.v1.PlatformService",
457
+ },
458
+ }).deleteAPIKey;
459
+ /**
460
+ * GetLatestValidRouterConfig returns the router config for the federated graph
461
+ *
462
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetLatestValidRouterConfig
463
+ */
464
+ export const getLatestValidRouterConfig = createQueryService({
465
+ service: {
466
+ methods: {
467
+ getLatestValidRouterConfig: {
468
+ name: "GetLatestValidRouterConfig",
469
+ kind: MethodKind.Unary,
470
+ I: GetConfigRequest,
471
+ O: GetConfigResponse,
472
+ },
473
+ },
474
+ typeName: "wg.cosmo.platform.v1.PlatformService",
475
+ },
476
+ }).getLatestValidRouterConfig;
477
+ /**
478
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetAnalyticsView
479
+ */
480
+ export const getAnalyticsView = createQueryService({
481
+ service: {
482
+ methods: {
483
+ getAnalyticsView: {
484
+ name: "GetAnalyticsView",
485
+ kind: MethodKind.Unary,
486
+ I: GetAnalyticsViewRequest,
487
+ O: GetAnalyticsViewResponse,
488
+ idempotency: MethodIdempotency.NoSideEffects,
489
+ },
490
+ },
491
+ typeName: "wg.cosmo.platform.v1.PlatformService",
492
+ },
493
+ }).getAnalyticsView;
494
+ /**
495
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetDashboardAnalyticsView
496
+ */
497
+ export const getDashboardAnalyticsView = createQueryService({
498
+ service: {
499
+ methods: {
500
+ getDashboardAnalyticsView: {
501
+ name: "GetDashboardAnalyticsView",
502
+ kind: MethodKind.Unary,
503
+ I: GetDashboardAnalyticsViewRequest,
504
+ O: GetDashboardAnalyticsViewResponse,
505
+ idempotency: MethodIdempotency.NoSideEffects,
506
+ },
507
+ },
508
+ typeName: "wg.cosmo.platform.v1.PlatformService",
509
+ },
510
+ }).getDashboardAnalyticsView;
511
+ /**
512
+ * @generated from rpc wg.cosmo.platform.v1.PlatformService.GetTrace
513
+ */
514
+ export const getTrace = createQueryService({
515
+ service: {
516
+ methods: {
517
+ getTrace: {
518
+ name: "GetTrace",
519
+ kind: MethodKind.Unary,
520
+ I: GetTraceRequest,
521
+ O: GetTraceResponse,
522
+ },
523
+ },
524
+ typeName: "wg.cosmo.platform.v1.PlatformService",
525
+ },
526
+ }).getTrace;
527
+ //# sourceMappingURL=platform-PlatformService_connectquery.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"platform-PlatformService_connectquery.js","sourceRoot":"","sources":["../../../src/wg/cosmo/platform/v1/platform-PlatformService_connectquery.ts"],"names":[],"mappings":"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"}