@wundergraph/cosmo-connect 0.47.0 → 0.49.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 +7 -1
- package/dist/node/v1/node_pb.js +8 -1
- package/dist/node/v1/node_pb.js.map +1 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +86 -21
- package/dist/platform/v1/platform-PlatformService_connectquery.js +86 -21
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +59 -14
- package/dist/platform/v1/platform_connect.js +59 -14
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +435 -124
- package/dist/platform/v1/platform_pb.js +653 -189
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -275,6 +275,10 @@ export declare class PublishFederatedSubgraphRequest extends Message<PublishFede
|
|
|
275
275
|
* @generated from field: optional string subscription_url = 7;
|
|
276
276
|
*/
|
|
277
277
|
subscriptionUrl?: string;
|
|
278
|
+
/**
|
|
279
|
+
* @generated from field: string namespace = 8;
|
|
280
|
+
*/
|
|
281
|
+
namespace: string;
|
|
278
282
|
constructor(data?: PartialMessage<PublishFederatedSubgraphRequest>);
|
|
279
283
|
static readonly runtime: typeof proto3;
|
|
280
284
|
static readonly typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphRequest";
|
|
@@ -360,6 +364,10 @@ export declare class CheckSubgraphSchemaRequest extends Message<CheckSubgraphSch
|
|
|
360
364
|
* @generated from field: optional bool delete = 4;
|
|
361
365
|
*/
|
|
362
366
|
delete?: boolean;
|
|
367
|
+
/**
|
|
368
|
+
* @generated from field: string namespace = 5;
|
|
369
|
+
*/
|
|
370
|
+
namespace: string;
|
|
363
371
|
constructor(data?: PartialMessage<CheckSubgraphSchemaRequest>);
|
|
364
372
|
static readonly runtime: typeof proto3;
|
|
365
373
|
static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaRequest";
|
|
@@ -385,6 +393,10 @@ export declare class FixSubgraphSchemaRequest extends Message<FixSubgraphSchemaR
|
|
|
385
393
|
* @generated from field: bytes schema = 2;
|
|
386
394
|
*/
|
|
387
395
|
schema: Uint8Array;
|
|
396
|
+
/**
|
|
397
|
+
* @generated from field: string namespace = 3;
|
|
398
|
+
*/
|
|
399
|
+
namespace: string;
|
|
388
400
|
constructor(data?: PartialMessage<FixSubgraphSchemaRequest>);
|
|
389
401
|
static readonly runtime: typeof proto3;
|
|
390
402
|
static readonly typeName = "wg.cosmo.platform.v1.FixSubgraphSchemaRequest";
|
|
@@ -422,6 +434,10 @@ export declare class CreateFederatedGraphRequest extends Message<CreateFederated
|
|
|
422
434
|
* @generated from field: optional string readme = 4;
|
|
423
435
|
*/
|
|
424
436
|
readme?: string;
|
|
437
|
+
/**
|
|
438
|
+
* @generated from field: string namespace = 5;
|
|
439
|
+
*/
|
|
440
|
+
namespace: string;
|
|
425
441
|
constructor(data?: PartialMessage<CreateFederatedGraphRequest>);
|
|
426
442
|
static readonly runtime: typeof proto3;
|
|
427
443
|
static readonly typeName = "wg.cosmo.platform.v1.CreateFederatedGraphRequest";
|
|
@@ -477,6 +493,10 @@ export declare class CreateFederatedSubgraphRequest extends Message<CreateFedera
|
|
|
477
493
|
* @generated from field: optional string readme = 7;
|
|
478
494
|
*/
|
|
479
495
|
readme?: string;
|
|
496
|
+
/**
|
|
497
|
+
* @generated from field: string namespace = 8;
|
|
498
|
+
*/
|
|
499
|
+
namespace: string;
|
|
480
500
|
constructor(data?: PartialMessage<CreateFederatedSubgraphRequest>);
|
|
481
501
|
static readonly runtime: typeof proto3;
|
|
482
502
|
static readonly typeName = "wg.cosmo.platform.v1.CreateFederatedSubgraphRequest";
|
|
@@ -494,6 +514,10 @@ export declare class DeleteFederatedGraphRequest extends Message<DeleteFederated
|
|
|
494
514
|
* @generated from field: string name = 1;
|
|
495
515
|
*/
|
|
496
516
|
name: string;
|
|
517
|
+
/**
|
|
518
|
+
* @generated from field: string namespace = 2;
|
|
519
|
+
*/
|
|
520
|
+
namespace: string;
|
|
497
521
|
constructor(data?: PartialMessage<DeleteFederatedGraphRequest>);
|
|
498
522
|
static readonly runtime: typeof proto3;
|
|
499
523
|
static readonly typeName = "wg.cosmo.platform.v1.DeleteFederatedGraphRequest";
|
|
@@ -513,6 +537,10 @@ export declare class DeleteFederatedSubgraphRequest extends Message<DeleteFedera
|
|
|
513
537
|
* @generated from field: string subgraph_name = 1;
|
|
514
538
|
*/
|
|
515
539
|
subgraphName: string;
|
|
540
|
+
/**
|
|
541
|
+
* @generated from field: string namespace = 2;
|
|
542
|
+
*/
|
|
543
|
+
namespace: string;
|
|
516
544
|
constructor(data?: PartialMessage<DeleteFederatedSubgraphRequest>);
|
|
517
545
|
static readonly runtime: typeof proto3;
|
|
518
546
|
static readonly typeName = "wg.cosmo.platform.v1.DeleteFederatedSubgraphRequest";
|
|
@@ -563,6 +591,10 @@ export declare class CompositionError extends Message<CompositionError> {
|
|
|
563
591
|
* @generated from field: string federatedGraphName = 2;
|
|
564
592
|
*/
|
|
565
593
|
federatedGraphName: string;
|
|
594
|
+
/**
|
|
595
|
+
* @generated from field: string namespace = 3;
|
|
596
|
+
*/
|
|
597
|
+
namespace: string;
|
|
566
598
|
constructor(data?: PartialMessage<CompositionError>);
|
|
567
599
|
static readonly runtime: typeof proto3;
|
|
568
600
|
static readonly typeName = "wg.cosmo.platform.v1.CompositionError";
|
|
@@ -750,6 +782,10 @@ export declare class GetFederatedGraphsRequest extends Message<GetFederatedGraph
|
|
|
750
782
|
* @generated from field: bool includeMetrics = 3;
|
|
751
783
|
*/
|
|
752
784
|
includeMetrics: boolean;
|
|
785
|
+
/**
|
|
786
|
+
* @generated from field: string namespace = 4;
|
|
787
|
+
*/
|
|
788
|
+
namespace: string;
|
|
753
789
|
constructor(data?: PartialMessage<GetFederatedGraphsRequest>);
|
|
754
790
|
static readonly runtime: typeof proto3;
|
|
755
791
|
static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphsRequest";
|
|
@@ -807,6 +843,10 @@ export declare class FederatedGraph extends Message<FederatedGraph> {
|
|
|
807
843
|
* @generated from field: string target_id = 11;
|
|
808
844
|
*/
|
|
809
845
|
targetId: string;
|
|
846
|
+
/**
|
|
847
|
+
* @generated from field: string namespace = 12;
|
|
848
|
+
*/
|
|
849
|
+
namespace: string;
|
|
810
850
|
constructor(data?: PartialMessage<FederatedGraph>);
|
|
811
851
|
static readonly runtime: typeof proto3;
|
|
812
852
|
static readonly typeName = "wg.cosmo.platform.v1.FederatedGraph";
|
|
@@ -845,6 +885,10 @@ export declare class GetFederatedGraphsBySubgraphLabelsRequest extends Message<G
|
|
|
845
885
|
* @generated from field: string subgraphName = 1;
|
|
846
886
|
*/
|
|
847
887
|
subgraphName: string;
|
|
888
|
+
/**
|
|
889
|
+
* @generated from field: string namespace = 2;
|
|
890
|
+
*/
|
|
891
|
+
namespace: string;
|
|
848
892
|
constructor(data?: PartialMessage<GetFederatedGraphsBySubgraphLabelsRequest>);
|
|
849
893
|
static readonly runtime: typeof proto3;
|
|
850
894
|
static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphsBySubgraphLabelsRequest";
|
|
@@ -887,6 +931,10 @@ export declare class GetSubgraphsRequest extends Message<GetSubgraphsRequest> {
|
|
|
887
931
|
* @generated from field: int32 offset = 2;
|
|
888
932
|
*/
|
|
889
933
|
offset: number;
|
|
934
|
+
/**
|
|
935
|
+
* @generated from field: string namespace = 3;
|
|
936
|
+
*/
|
|
937
|
+
namespace: string;
|
|
890
938
|
constructor(data?: PartialMessage<GetSubgraphsRequest>);
|
|
891
939
|
static readonly runtime: typeof proto3;
|
|
892
940
|
static readonly typeName = "wg.cosmo.platform.v1.GetSubgraphsRequest";
|
|
@@ -936,6 +984,10 @@ export declare class Subgraph extends Message<Subgraph> {
|
|
|
936
984
|
* @generated from field: string target_id = 9;
|
|
937
985
|
*/
|
|
938
986
|
targetId: string;
|
|
987
|
+
/**
|
|
988
|
+
* @generated from field: string namespace = 10;
|
|
989
|
+
*/
|
|
990
|
+
namespace: string;
|
|
939
991
|
constructor(data?: PartialMessage<Subgraph>);
|
|
940
992
|
static readonly runtime: typeof proto3;
|
|
941
993
|
static readonly typeName = "wg.cosmo.platform.v1.Subgraph";
|
|
@@ -978,6 +1030,10 @@ export declare class GetFederatedGraphByNameRequest extends Message<GetFederated
|
|
|
978
1030
|
* @generated from field: bool includeMetrics = 2;
|
|
979
1031
|
*/
|
|
980
1032
|
includeMetrics: boolean;
|
|
1033
|
+
/**
|
|
1034
|
+
* @generated from field: string namespace = 3;
|
|
1035
|
+
*/
|
|
1036
|
+
namespace: string;
|
|
981
1037
|
constructor(data?: PartialMessage<GetFederatedGraphByNameRequest>);
|
|
982
1038
|
static readonly runtime: typeof proto3;
|
|
983
1039
|
static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphByNameRequest";
|
|
@@ -1028,6 +1084,10 @@ export declare class GetFederatedGraphSDLByNameRequest extends Message<GetFedera
|
|
|
1028
1084
|
* @generated from field: string name = 1;
|
|
1029
1085
|
*/
|
|
1030
1086
|
name: string;
|
|
1087
|
+
/**
|
|
1088
|
+
* @generated from field: string namespace = 2;
|
|
1089
|
+
*/
|
|
1090
|
+
namespace: string;
|
|
1031
1091
|
constructor(data?: PartialMessage<GetFederatedGraphSDLByNameRequest>);
|
|
1032
1092
|
static readonly runtime: typeof proto3;
|
|
1033
1093
|
static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphSDLByNameRequest";
|
|
@@ -1070,6 +1130,10 @@ export declare class GetSubgraphByNameRequest extends Message<GetSubgraphByNameR
|
|
|
1070
1130
|
* @generated from field: string name = 1;
|
|
1071
1131
|
*/
|
|
1072
1132
|
name: string;
|
|
1133
|
+
/**
|
|
1134
|
+
* @generated from field: string namespace = 2;
|
|
1135
|
+
*/
|
|
1136
|
+
namespace: string;
|
|
1073
1137
|
constructor(data?: PartialMessage<GetSubgraphByNameRequest>);
|
|
1074
1138
|
static readonly runtime: typeof proto3;
|
|
1075
1139
|
static readonly typeName = "wg.cosmo.platform.v1.GetSubgraphByNameRequest";
|
|
@@ -1116,6 +1180,10 @@ export declare class GetLatestValidSubgraphSDLByNameRequest extends Message<GetL
|
|
|
1116
1180
|
* @generated from field: string fedGraphName = 2;
|
|
1117
1181
|
*/
|
|
1118
1182
|
fedGraphName: string;
|
|
1183
|
+
/**
|
|
1184
|
+
* @generated from field: string namespace = 3;
|
|
1185
|
+
*/
|
|
1186
|
+
namespace: string;
|
|
1119
1187
|
constructor(data?: PartialMessage<GetLatestValidSubgraphSDLByNameRequest>);
|
|
1120
1188
|
static readonly runtime: typeof proto3;
|
|
1121
1189
|
static readonly typeName = "wg.cosmo.platform.v1.GetLatestValidSubgraphSDLByNameRequest";
|
|
@@ -1158,6 +1226,10 @@ export declare class GetLatestSubgraphSDLByNameRequest extends Message<GetLatest
|
|
|
1158
1226
|
* @generated from field: string name = 1;
|
|
1159
1227
|
*/
|
|
1160
1228
|
name: string;
|
|
1229
|
+
/**
|
|
1230
|
+
* @generated from field: string namespace = 2;
|
|
1231
|
+
*/
|
|
1232
|
+
namespace: string;
|
|
1161
1233
|
constructor(data?: PartialMessage<GetLatestSubgraphSDLByNameRequest>);
|
|
1162
1234
|
static readonly runtime: typeof proto3;
|
|
1163
1235
|
static readonly typeName = "wg.cosmo.platform.v1.GetLatestSubgraphSDLByNameRequest";
|
|
@@ -1216,6 +1288,10 @@ export declare class GetChecksByFederatedGraphNameRequest extends Message<GetChe
|
|
|
1216
1288
|
* @generated from field: string endDate = 5;
|
|
1217
1289
|
*/
|
|
1218
1290
|
endDate: string;
|
|
1291
|
+
/**
|
|
1292
|
+
* @generated from field: string namespace = 6;
|
|
1293
|
+
*/
|
|
1294
|
+
namespace: string;
|
|
1219
1295
|
constructor(data?: PartialMessage<GetChecksByFederatedGraphNameRequest>);
|
|
1220
1296
|
static readonly runtime: typeof proto3;
|
|
1221
1297
|
static readonly typeName = "wg.cosmo.platform.v1.GetChecksByFederatedGraphNameRequest";
|
|
@@ -1348,6 +1424,10 @@ export declare class GetCheckSummaryRequest extends Message<GetCheckSummaryReque
|
|
|
1348
1424
|
* @generated from field: string graph_name = 2;
|
|
1349
1425
|
*/
|
|
1350
1426
|
graphName: string;
|
|
1427
|
+
/**
|
|
1428
|
+
* @generated from field: string namespace = 3;
|
|
1429
|
+
*/
|
|
1430
|
+
namespace: string;
|
|
1351
1431
|
constructor(data?: PartialMessage<GetCheckSummaryRequest>);
|
|
1352
1432
|
static readonly runtime: typeof proto3;
|
|
1353
1433
|
static readonly typeName = "wg.cosmo.platform.v1.GetCheckSummaryRequest";
|
|
@@ -1440,60 +1520,6 @@ export declare class GetCheckSummaryResponse_AffectedGraph extends Message<GetCh
|
|
|
1440
1520
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCheckSummaryResponse_AffectedGraph;
|
|
1441
1521
|
static equals(a: GetCheckSummaryResponse_AffectedGraph | PlainMessage<GetCheckSummaryResponse_AffectedGraph> | undefined, b: GetCheckSummaryResponse_AffectedGraph | PlainMessage<GetCheckSummaryResponse_AffectedGraph> | undefined): boolean;
|
|
1442
1522
|
}
|
|
1443
|
-
/**
|
|
1444
|
-
* @generated from message wg.cosmo.platform.v1.GetCheckDetailsRequest
|
|
1445
|
-
*/
|
|
1446
|
-
export declare class GetCheckDetailsRequest extends Message<GetCheckDetailsRequest> {
|
|
1447
|
-
/**
|
|
1448
|
-
* @generated from field: string check_id = 1;
|
|
1449
|
-
*/
|
|
1450
|
-
checkId: string;
|
|
1451
|
-
/**
|
|
1452
|
-
* @generated from field: string graph_name = 2;
|
|
1453
|
-
*/
|
|
1454
|
-
graphName: string;
|
|
1455
|
-
constructor(data?: PartialMessage<GetCheckDetailsRequest>);
|
|
1456
|
-
static readonly runtime: typeof proto3;
|
|
1457
|
-
static readonly typeName = "wg.cosmo.platform.v1.GetCheckDetailsRequest";
|
|
1458
|
-
static readonly fields: FieldList;
|
|
1459
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCheckDetailsRequest;
|
|
1460
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCheckDetailsRequest;
|
|
1461
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCheckDetailsRequest;
|
|
1462
|
-
static equals(a: GetCheckDetailsRequest | PlainMessage<GetCheckDetailsRequest> | undefined, b: GetCheckDetailsRequest | PlainMessage<GetCheckDetailsRequest> | undefined): boolean;
|
|
1463
|
-
}
|
|
1464
|
-
/**
|
|
1465
|
-
* @generated from message wg.cosmo.platform.v1.GetCheckDetailsResponse
|
|
1466
|
-
*/
|
|
1467
|
-
export declare class GetCheckDetailsResponse extends Message<GetCheckDetailsResponse> {
|
|
1468
|
-
/**
|
|
1469
|
-
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
1470
|
-
*/
|
|
1471
|
-
response?: Response;
|
|
1472
|
-
/**
|
|
1473
|
-
* @generated from field: repeated wg.cosmo.platform.v1.SchemaChange changes = 2;
|
|
1474
|
-
*/
|
|
1475
|
-
changes: SchemaChange[];
|
|
1476
|
-
/**
|
|
1477
|
-
* @generated from field: repeated string compositionErrors = 3;
|
|
1478
|
-
*/
|
|
1479
|
-
compositionErrors: string[];
|
|
1480
|
-
/**
|
|
1481
|
-
* @generated from field: int32 traffic_check_days = 4;
|
|
1482
|
-
*/
|
|
1483
|
-
trafficCheckDays: number;
|
|
1484
|
-
/**
|
|
1485
|
-
* @generated from field: string created_at = 5;
|
|
1486
|
-
*/
|
|
1487
|
-
createdAt: string;
|
|
1488
|
-
constructor(data?: PartialMessage<GetCheckDetailsResponse>);
|
|
1489
|
-
static readonly runtime: typeof proto3;
|
|
1490
|
-
static readonly typeName = "wg.cosmo.platform.v1.GetCheckDetailsResponse";
|
|
1491
|
-
static readonly fields: FieldList;
|
|
1492
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCheckDetailsResponse;
|
|
1493
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCheckDetailsResponse;
|
|
1494
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCheckDetailsResponse;
|
|
1495
|
-
static equals(a: GetCheckDetailsResponse | PlainMessage<GetCheckDetailsResponse> | undefined, b: GetCheckDetailsResponse | PlainMessage<GetCheckDetailsResponse> | undefined): boolean;
|
|
1496
|
-
}
|
|
1497
1523
|
/**
|
|
1498
1524
|
* @generated from message wg.cosmo.platform.v1.GetCheckOperationsRequest
|
|
1499
1525
|
*/
|
|
@@ -1506,6 +1532,10 @@ export declare class GetCheckOperationsRequest extends Message<GetCheckOperation
|
|
|
1506
1532
|
* @generated from field: string graph_name = 2;
|
|
1507
1533
|
*/
|
|
1508
1534
|
graphName: string;
|
|
1535
|
+
/**
|
|
1536
|
+
* @generated from field: string namespace = 3;
|
|
1537
|
+
*/
|
|
1538
|
+
namespace: string;
|
|
1509
1539
|
constructor(data?: PartialMessage<GetCheckOperationsRequest>);
|
|
1510
1540
|
static readonly runtime: typeof proto3;
|
|
1511
1541
|
static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsRequest";
|
|
@@ -1635,6 +1665,10 @@ export declare class GetFederatedGraphChangelogRequest extends Message<GetFedera
|
|
|
1635
1665
|
* @generated from field: wg.cosmo.platform.v1.DateRange dateRange = 3;
|
|
1636
1666
|
*/
|
|
1637
1667
|
dateRange?: DateRange;
|
|
1668
|
+
/**
|
|
1669
|
+
* @generated from field: string namespace = 4;
|
|
1670
|
+
*/
|
|
1671
|
+
namespace: string;
|
|
1638
1672
|
constructor(data?: PartialMessage<GetFederatedGraphChangelogRequest>);
|
|
1639
1673
|
static readonly runtime: typeof proto3;
|
|
1640
1674
|
static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphChangelogRequest";
|
|
@@ -1784,6 +1818,10 @@ export declare class UpdateSubgraphRequest extends Message<UpdateSubgraphRequest
|
|
|
1784
1818
|
* @generated from field: optional string readme = 7;
|
|
1785
1819
|
*/
|
|
1786
1820
|
readme?: string;
|
|
1821
|
+
/**
|
|
1822
|
+
* @generated from field: string namespace = 8;
|
|
1823
|
+
*/
|
|
1824
|
+
namespace: string;
|
|
1787
1825
|
constructor(data?: PartialMessage<UpdateSubgraphRequest>);
|
|
1788
1826
|
static readonly runtime: typeof proto3;
|
|
1789
1827
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateSubgraphRequest";
|
|
@@ -1834,6 +1872,10 @@ export declare class UpdateFederatedGraphRequest extends Message<UpdateFederated
|
|
|
1834
1872
|
* @generated from field: optional string readme = 4;
|
|
1835
1873
|
*/
|
|
1836
1874
|
readme?: string;
|
|
1875
|
+
/**
|
|
1876
|
+
* @generated from field: string namespace = 5;
|
|
1877
|
+
*/
|
|
1878
|
+
namespace: string;
|
|
1837
1879
|
constructor(data?: PartialMessage<UpdateFederatedGraphRequest>);
|
|
1838
1880
|
static readonly runtime: typeof proto3;
|
|
1839
1881
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateFederatedGraphRequest";
|
|
@@ -1876,6 +1918,10 @@ export declare class CheckFederatedGraphRequest extends Message<CheckFederatedGr
|
|
|
1876
1918
|
* @generated from field: repeated string label_matchers = 2;
|
|
1877
1919
|
*/
|
|
1878
1920
|
labelMatchers: string[];
|
|
1921
|
+
/**
|
|
1922
|
+
* @generated from field: string namespace = 3;
|
|
1923
|
+
*/
|
|
1924
|
+
namespace: string;
|
|
1879
1925
|
constructor(data?: PartialMessage<CheckFederatedGraphRequest>);
|
|
1880
1926
|
static readonly runtime: typeof proto3;
|
|
1881
1927
|
static readonly typeName = "wg.cosmo.platform.v1.CheckFederatedGraphRequest";
|
|
@@ -2057,6 +2103,10 @@ export declare class GetAnalyticsViewRequest extends Message<GetAnalyticsViewReq
|
|
|
2057
2103
|
* @generated from field: wg.cosmo.platform.v1.AnalyticsConfig config = 3;
|
|
2058
2104
|
*/
|
|
2059
2105
|
config?: AnalyticsConfig;
|
|
2106
|
+
/**
|
|
2107
|
+
* @generated from field: string namespace = 4;
|
|
2108
|
+
*/
|
|
2109
|
+
namespace: string;
|
|
2060
2110
|
constructor(data?: PartialMessage<GetAnalyticsViewRequest>);
|
|
2061
2111
|
static readonly runtime: typeof proto3;
|
|
2062
2112
|
static readonly typeName = "wg.cosmo.platform.v1.GetAnalyticsViewRequest";
|
|
@@ -2292,6 +2342,10 @@ export declare class GetDashboardAnalyticsViewRequest extends Message<GetDashboa
|
|
|
2292
2342
|
* @generated from field: int32 range = 4;
|
|
2293
2343
|
*/
|
|
2294
2344
|
range: number;
|
|
2345
|
+
/**
|
|
2346
|
+
* @generated from field: string namespace = 5;
|
|
2347
|
+
*/
|
|
2348
|
+
namespace: string;
|
|
2295
2349
|
constructor(data?: PartialMessage<GetDashboardAnalyticsViewRequest>);
|
|
2296
2350
|
static readonly runtime: typeof proto3;
|
|
2297
2351
|
static readonly typeName = "wg.cosmo.platform.v1.GetDashboardAnalyticsViewRequest";
|
|
@@ -2454,6 +2508,10 @@ export declare class CreateFederatedGraphTokenRequest extends Message<CreateFede
|
|
|
2454
2508
|
* @generated from field: string tokenName = 2;
|
|
2455
2509
|
*/
|
|
2456
2510
|
tokenName: string;
|
|
2511
|
+
/**
|
|
2512
|
+
* @generated from field: string namespace = 3;
|
|
2513
|
+
*/
|
|
2514
|
+
namespace: string;
|
|
2457
2515
|
constructor(data?: PartialMessage<CreateFederatedGraphTokenRequest>);
|
|
2458
2516
|
static readonly runtime: typeof proto3;
|
|
2459
2517
|
static readonly typeName = "wg.cosmo.platform.v1.CreateFederatedGraphTokenRequest";
|
|
@@ -2845,6 +2903,10 @@ export declare class MigrateFromApolloRequest extends Message<MigrateFromApolloR
|
|
|
2845
2903
|
* @generated from field: string variantName = 2;
|
|
2846
2904
|
*/
|
|
2847
2905
|
variantName: string;
|
|
2906
|
+
/**
|
|
2907
|
+
* @generated from field: string namespace = 3;
|
|
2908
|
+
*/
|
|
2909
|
+
namespace: string;
|
|
2848
2910
|
constructor(data?: PartialMessage<MigrateFromApolloRequest>);
|
|
2849
2911
|
static readonly runtime: typeof proto3;
|
|
2850
2912
|
static readonly typeName = "wg.cosmo.platform.v1.MigrateFromApolloRequest";
|
|
@@ -2875,63 +2937,6 @@ export declare class MigrateFromApolloResponse extends Message<MigrateFromApollo
|
|
|
2875
2937
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MigrateFromApolloResponse;
|
|
2876
2938
|
static equals(a: MigrateFromApolloResponse | PlainMessage<MigrateFromApolloResponse> | undefined, b: MigrateFromApolloResponse | PlainMessage<MigrateFromApolloResponse> | undefined): boolean;
|
|
2877
2939
|
}
|
|
2878
|
-
/**
|
|
2879
|
-
* @generated from message wg.cosmo.platform.v1.SpanAttributes
|
|
2880
|
-
*/
|
|
2881
|
-
export declare class SpanAttributes extends Message<SpanAttributes> {
|
|
2882
|
-
/**
|
|
2883
|
-
* @generated from field: string httpStatusCode = 1;
|
|
2884
|
-
*/
|
|
2885
|
-
httpStatusCode: string;
|
|
2886
|
-
/**
|
|
2887
|
-
* @generated from field: string componentName = 2;
|
|
2888
|
-
*/
|
|
2889
|
-
componentName: string;
|
|
2890
|
-
/**
|
|
2891
|
-
* @generated from field: string operationName = 3;
|
|
2892
|
-
*/
|
|
2893
|
-
operationName: string;
|
|
2894
|
-
/**
|
|
2895
|
-
* @generated from field: string operationType = 4;
|
|
2896
|
-
*/
|
|
2897
|
-
operationType: string;
|
|
2898
|
-
/**
|
|
2899
|
-
* @generated from field: string operationContent = 5;
|
|
2900
|
-
*/
|
|
2901
|
-
operationContent: string;
|
|
2902
|
-
/**
|
|
2903
|
-
* @generated from field: string httpURL = 6;
|
|
2904
|
-
*/
|
|
2905
|
-
httpURL: string;
|
|
2906
|
-
/**
|
|
2907
|
-
* @generated from field: string httpHost = 7;
|
|
2908
|
-
*/
|
|
2909
|
-
httpHost: string;
|
|
2910
|
-
/**
|
|
2911
|
-
* @generated from field: string httpUserAgent = 8;
|
|
2912
|
-
*/
|
|
2913
|
-
httpUserAgent: string;
|
|
2914
|
-
/**
|
|
2915
|
-
* @generated from field: string httpMethod = 9;
|
|
2916
|
-
*/
|
|
2917
|
-
httpMethod: string;
|
|
2918
|
-
/**
|
|
2919
|
-
* @generated from field: string httpTarget = 10;
|
|
2920
|
-
*/
|
|
2921
|
-
httpTarget: string;
|
|
2922
|
-
/**
|
|
2923
|
-
* @generated from field: string subgraphName = 11;
|
|
2924
|
-
*/
|
|
2925
|
-
subgraphName: string;
|
|
2926
|
-
constructor(data?: PartialMessage<SpanAttributes>);
|
|
2927
|
-
static readonly runtime: typeof proto3;
|
|
2928
|
-
static readonly typeName = "wg.cosmo.platform.v1.SpanAttributes";
|
|
2929
|
-
static readonly fields: FieldList;
|
|
2930
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SpanAttributes;
|
|
2931
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SpanAttributes;
|
|
2932
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SpanAttributes;
|
|
2933
|
-
static equals(a: SpanAttributes | PlainMessage<SpanAttributes> | undefined, b: SpanAttributes | PlainMessage<SpanAttributes> | undefined): boolean;
|
|
2934
|
-
}
|
|
2935
2940
|
/**
|
|
2936
2941
|
* @generated from message wg.cosmo.platform.v1.Span
|
|
2937
2942
|
*/
|
|
@@ -2941,45 +2946,51 @@ export declare class Span extends Message<Span> {
|
|
|
2941
2946
|
*/
|
|
2942
2947
|
timestamp: bigint;
|
|
2943
2948
|
/**
|
|
2944
|
-
* @generated from field: string
|
|
2949
|
+
* @generated from field: string scopeName = 2;
|
|
2950
|
+
*/
|
|
2951
|
+
scopeName: string;
|
|
2952
|
+
/**
|
|
2953
|
+
* @generated from field: string traceID = 3;
|
|
2945
2954
|
*/
|
|
2946
2955
|
traceID: string;
|
|
2947
2956
|
/**
|
|
2948
|
-
* @generated from field: string spanID =
|
|
2957
|
+
* @generated from field: string spanID = 4;
|
|
2949
2958
|
*/
|
|
2950
2959
|
spanID: string;
|
|
2951
2960
|
/**
|
|
2952
|
-
* @generated from field: string parentSpanID =
|
|
2961
|
+
* @generated from field: string parentSpanID = 5;
|
|
2953
2962
|
*/
|
|
2954
2963
|
parentSpanID: string;
|
|
2955
2964
|
/**
|
|
2956
|
-
* @generated from field: string spanName =
|
|
2965
|
+
* @generated from field: string spanName = 6;
|
|
2957
2966
|
*/
|
|
2958
2967
|
spanName: string;
|
|
2959
2968
|
/**
|
|
2960
|
-
* @generated from field: string spanKind =
|
|
2969
|
+
* @generated from field: string spanKind = 7;
|
|
2961
2970
|
*/
|
|
2962
2971
|
spanKind: string;
|
|
2963
2972
|
/**
|
|
2964
|
-
* @generated from field: int64 duration =
|
|
2973
|
+
* @generated from field: int64 duration = 8;
|
|
2965
2974
|
*/
|
|
2966
2975
|
duration: bigint;
|
|
2967
2976
|
/**
|
|
2968
|
-
* @generated from field: string serviceName =
|
|
2977
|
+
* @generated from field: string serviceName = 9;
|
|
2969
2978
|
*/
|
|
2970
2979
|
serviceName: string;
|
|
2971
2980
|
/**
|
|
2972
|
-
* @generated from field: string statusCode =
|
|
2981
|
+
* @generated from field: string statusCode = 10;
|
|
2973
2982
|
*/
|
|
2974
2983
|
statusCode: string;
|
|
2975
2984
|
/**
|
|
2976
|
-
* @generated from field: string statusMessage =
|
|
2985
|
+
* @generated from field: string statusMessage = 11;
|
|
2977
2986
|
*/
|
|
2978
2987
|
statusMessage: string;
|
|
2979
2988
|
/**
|
|
2980
|
-
* @generated from field:
|
|
2989
|
+
* @generated from field: map<string, string> attributes = 12;
|
|
2981
2990
|
*/
|
|
2982
|
-
attributes
|
|
2991
|
+
attributes: {
|
|
2992
|
+
[key: string]: string;
|
|
2993
|
+
};
|
|
2983
2994
|
constructor(data?: PartialMessage<Span>);
|
|
2984
2995
|
static readonly runtime: typeof proto3;
|
|
2985
2996
|
static readonly typeName = "wg.cosmo.platform.v1.Span";
|
|
@@ -3102,6 +3113,10 @@ export declare class GetRouterTokensRequest extends Message<GetRouterTokensReque
|
|
|
3102
3113
|
* @generated from field: string fedGraphName = 1;
|
|
3103
3114
|
*/
|
|
3104
3115
|
fedGraphName: string;
|
|
3116
|
+
/**
|
|
3117
|
+
* @generated from field: string namespace = 2;
|
|
3118
|
+
*/
|
|
3119
|
+
namespace: string;
|
|
3105
3120
|
constructor(data?: PartialMessage<GetRouterTokensRequest>);
|
|
3106
3121
|
static readonly runtime: typeof proto3;
|
|
3107
3122
|
static readonly typeName = "wg.cosmo.platform.v1.GetRouterTokensRequest";
|
|
@@ -3144,6 +3159,10 @@ export declare class DeleteRouterTokenRequest extends Message<DeleteRouterTokenR
|
|
|
3144
3159
|
* @generated from field: string fedGraphName = 2;
|
|
3145
3160
|
*/
|
|
3146
3161
|
fedGraphName: string;
|
|
3162
|
+
/**
|
|
3163
|
+
* @generated from field: string namespace = 3;
|
|
3164
|
+
*/
|
|
3165
|
+
namespace: string;
|
|
3147
3166
|
constructor(data?: PartialMessage<DeleteRouterTokenRequest>);
|
|
3148
3167
|
static readonly runtime: typeof proto3;
|
|
3149
3168
|
static readonly typeName = "wg.cosmo.platform.v1.DeleteRouterTokenRequest";
|
|
@@ -3207,6 +3226,10 @@ export declare class PublishPersistedOperationsRequest extends Message<PublishPe
|
|
|
3207
3226
|
* @generated from field: repeated wg.cosmo.platform.v1.PersistedOperation operations = 3;
|
|
3208
3227
|
*/
|
|
3209
3228
|
operations: PersistedOperation[];
|
|
3229
|
+
/**
|
|
3230
|
+
* @generated from field: string namespace = 4;
|
|
3231
|
+
*/
|
|
3232
|
+
namespace: string;
|
|
3210
3233
|
constructor(data?: PartialMessage<PublishPersistedOperationsRequest>);
|
|
3211
3234
|
static readonly runtime: typeof proto3;
|
|
3212
3235
|
static readonly typeName = "wg.cosmo.platform.v1.PublishPersistedOperationsRequest";
|
|
@@ -3278,6 +3301,10 @@ export declare class GetPersistedOperationsRequest extends Message<GetPersistedO
|
|
|
3278
3301
|
* @generated from field: string client_id = 2;
|
|
3279
3302
|
*/
|
|
3280
3303
|
clientId: string;
|
|
3304
|
+
/**
|
|
3305
|
+
* @generated from field: string namespace = 3;
|
|
3306
|
+
*/
|
|
3307
|
+
namespace: string;
|
|
3281
3308
|
constructor(data?: PartialMessage<GetPersistedOperationsRequest>);
|
|
3282
3309
|
static readonly runtime: typeof proto3;
|
|
3283
3310
|
static readonly typeName = "wg.cosmo.platform.v1.GetPersistedOperationsRequest";
|
|
@@ -4300,6 +4327,10 @@ export declare class GetGraphMetricsRequest extends Message<GetGraphMetricsReque
|
|
|
4300
4327
|
* @generated from field: repeated wg.cosmo.platform.v1.AnalyticsFilter filters = 4;
|
|
4301
4328
|
*/
|
|
4302
4329
|
filters: AnalyticsFilter[];
|
|
4330
|
+
/**
|
|
4331
|
+
* @generated from field: string namespace = 5;
|
|
4332
|
+
*/
|
|
4333
|
+
namespace: string;
|
|
4303
4334
|
constructor(data?: PartialMessage<GetGraphMetricsRequest>);
|
|
4304
4335
|
static readonly runtime: typeof proto3;
|
|
4305
4336
|
static readonly typeName = "wg.cosmo.platform.v1.GetGraphMetricsRequest";
|
|
@@ -4486,6 +4517,10 @@ export declare class GetMetricsErrorRateRequest extends Message<GetMetricsErrorR
|
|
|
4486
4517
|
* @generated from field: repeated wg.cosmo.platform.v1.AnalyticsFilter filters = 4;
|
|
4487
4518
|
*/
|
|
4488
4519
|
filters: AnalyticsFilter[];
|
|
4520
|
+
/**
|
|
4521
|
+
* @generated from field: string namespace = 5;
|
|
4522
|
+
*/
|
|
4523
|
+
namespace: string;
|
|
4489
4524
|
constructor(data?: PartialMessage<GetMetricsErrorRateRequest>);
|
|
4490
4525
|
static readonly runtime: typeof proto3;
|
|
4491
4526
|
static readonly typeName = "wg.cosmo.platform.v1.GetMetricsErrorRateRequest";
|
|
@@ -4557,6 +4592,10 @@ export declare class ForceCheckSuccessRequest extends Message<ForceCheckSuccessR
|
|
|
4557
4592
|
* @generated from field: string graph_name = 2;
|
|
4558
4593
|
*/
|
|
4559
4594
|
graphName: string;
|
|
4595
|
+
/**
|
|
4596
|
+
* @generated from field: string namespace = 3;
|
|
4597
|
+
*/
|
|
4598
|
+
namespace: string;
|
|
4560
4599
|
constructor(data?: PartialMessage<ForceCheckSuccessRequest>);
|
|
4561
4600
|
static readonly runtime: typeof proto3;
|
|
4562
4601
|
static readonly typeName = "wg.cosmo.platform.v1.ForceCheckSuccessRequest";
|
|
@@ -4924,6 +4963,14 @@ export declare class AuditLog extends Message<AuditLog> {
|
|
|
4924
4963
|
* @generated from field: string createdAt = 9;
|
|
4925
4964
|
*/
|
|
4926
4965
|
createdAt: string;
|
|
4966
|
+
/**
|
|
4967
|
+
* @generated from field: string targetNamespaceId = 10;
|
|
4968
|
+
*/
|
|
4969
|
+
targetNamespaceId: string;
|
|
4970
|
+
/**
|
|
4971
|
+
* @generated from field: string targetNamespaceDisplayName = 11;
|
|
4972
|
+
*/
|
|
4973
|
+
targetNamespaceDisplayName: string;
|
|
4927
4974
|
constructor(data?: PartialMessage<AuditLog>);
|
|
4928
4975
|
static readonly runtime: typeof proto3;
|
|
4929
4976
|
static readonly typeName = "wg.cosmo.platform.v1.AuditLog";
|
|
@@ -5087,6 +5134,10 @@ export declare class GraphCompositionSubgraph extends Message<GraphCompositionSu
|
|
|
5087
5134
|
* @generated from field: string name = 3;
|
|
5088
5135
|
*/
|
|
5089
5136
|
name: string;
|
|
5137
|
+
/**
|
|
5138
|
+
* @generated from field: string target_id = 4;
|
|
5139
|
+
*/
|
|
5140
|
+
targetId: string;
|
|
5090
5141
|
constructor(data?: PartialMessage<GraphCompositionSubgraph>);
|
|
5091
5142
|
static readonly runtime: typeof proto3;
|
|
5092
5143
|
static readonly typeName = "wg.cosmo.platform.v1.GraphCompositionSubgraph";
|
|
@@ -5120,6 +5171,10 @@ export declare class GetCompositionsRequest extends Message<GetCompositionsReque
|
|
|
5120
5171
|
* @generated from field: string endDate = 5;
|
|
5121
5172
|
*/
|
|
5122
5173
|
endDate: string;
|
|
5174
|
+
/**
|
|
5175
|
+
* @generated from field: string namespace = 6;
|
|
5176
|
+
*/
|
|
5177
|
+
namespace: string;
|
|
5123
5178
|
constructor(data?: PartialMessage<GetCompositionsRequest>);
|
|
5124
5179
|
static readonly runtime: typeof proto3;
|
|
5125
5180
|
static readonly typeName = "wg.cosmo.platform.v1.GetCompositionsRequest";
|
|
@@ -5205,9 +5260,9 @@ export declare class GetSdlBySchemaVersionRequest extends Message<GetSdlBySchema
|
|
|
5205
5260
|
*/
|
|
5206
5261
|
schemaVersionId: string;
|
|
5207
5262
|
/**
|
|
5208
|
-
* @generated from field: string
|
|
5263
|
+
* @generated from field: string target_id = 2;
|
|
5209
5264
|
*/
|
|
5210
|
-
|
|
5265
|
+
targetId: string;
|
|
5211
5266
|
constructor(data?: PartialMessage<GetSdlBySchemaVersionRequest>);
|
|
5212
5267
|
static readonly runtime: typeof proto3;
|
|
5213
5268
|
static readonly typeName = "wg.cosmo.platform.v1.GetSdlBySchemaVersionRequest";
|
|
@@ -5326,6 +5381,10 @@ export declare class GetUserAccessibleResourcesResponse_Graph extends Message<Ge
|
|
|
5326
5381
|
* @generated from field: string name = 2;
|
|
5327
5382
|
*/
|
|
5328
5383
|
name: string;
|
|
5384
|
+
/**
|
|
5385
|
+
* @generated from field: string namespace = 3;
|
|
5386
|
+
*/
|
|
5387
|
+
namespace: string;
|
|
5329
5388
|
constructor(data?: PartialMessage<GetUserAccessibleResourcesResponse_Graph>);
|
|
5330
5389
|
static readonly runtime: typeof proto3;
|
|
5331
5390
|
static readonly typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph";
|
|
@@ -5415,6 +5474,10 @@ export declare class AddSubgraphMemberRequest extends Message<AddSubgraphMemberR
|
|
|
5415
5474
|
* @generated from field: string userEmail = 2;
|
|
5416
5475
|
*/
|
|
5417
5476
|
userEmail: string;
|
|
5477
|
+
/**
|
|
5478
|
+
* @generated from field: string namespace = 3;
|
|
5479
|
+
*/
|
|
5480
|
+
namespace: string;
|
|
5418
5481
|
constructor(data?: PartialMessage<AddSubgraphMemberRequest>);
|
|
5419
5482
|
static readonly runtime: typeof proto3;
|
|
5420
5483
|
static readonly typeName = "wg.cosmo.platform.v1.AddSubgraphMemberRequest";
|
|
@@ -5453,6 +5516,10 @@ export declare class RemoveSubgraphMemberRequest extends Message<RemoveSubgraphM
|
|
|
5453
5516
|
* @generated from field: string subgraphMemberId = 2;
|
|
5454
5517
|
*/
|
|
5455
5518
|
subgraphMemberId: string;
|
|
5519
|
+
/**
|
|
5520
|
+
* @generated from field: string namespace = 3;
|
|
5521
|
+
*/
|
|
5522
|
+
namespace: string;
|
|
5456
5523
|
constructor(data?: PartialMessage<RemoveSubgraphMemberRequest>);
|
|
5457
5524
|
static readonly runtime: typeof proto3;
|
|
5458
5525
|
static readonly typeName = "wg.cosmo.platform.v1.RemoveSubgraphMemberRequest";
|
|
@@ -5487,6 +5554,10 @@ export declare class GetSubgraphMembersRequest extends Message<GetSubgraphMember
|
|
|
5487
5554
|
* @generated from field: string subgraphName = 1;
|
|
5488
5555
|
*/
|
|
5489
5556
|
subgraphName: string;
|
|
5557
|
+
/**
|
|
5558
|
+
* @generated from field: string namespace = 2;
|
|
5559
|
+
*/
|
|
5560
|
+
namespace: string;
|
|
5490
5561
|
constructor(data?: PartialMessage<GetSubgraphMembersRequest>);
|
|
5491
5562
|
static readonly runtime: typeof proto3;
|
|
5492
5563
|
static readonly typeName = "wg.cosmo.platform.v1.GetSubgraphMembersRequest";
|
|
@@ -5554,6 +5625,10 @@ export declare class AddReadmeRequest extends Message<AddReadmeRequest> {
|
|
|
5554
5625
|
* @generated from field: string readme = 2;
|
|
5555
5626
|
*/
|
|
5556
5627
|
readme: string;
|
|
5628
|
+
/**
|
|
5629
|
+
* @generated from field: string namespace = 3;
|
|
5630
|
+
*/
|
|
5631
|
+
namespace: string;
|
|
5557
5632
|
constructor(data?: PartialMessage<AddReadmeRequest>);
|
|
5558
5633
|
static readonly runtime: typeof proto3;
|
|
5559
5634
|
static readonly typeName = "wg.cosmo.platform.v1.AddReadmeRequest";
|
|
@@ -5625,6 +5700,10 @@ export declare class GetClientsRequest extends Message<GetClientsRequest> {
|
|
|
5625
5700
|
* @generated from field: string fedGraphName = 1;
|
|
5626
5701
|
*/
|
|
5627
5702
|
fedGraphName: string;
|
|
5703
|
+
/**
|
|
5704
|
+
* @generated from field: string namespace = 2;
|
|
5705
|
+
*/
|
|
5706
|
+
namespace: string;
|
|
5628
5707
|
constructor(data?: PartialMessage<GetClientsRequest>);
|
|
5629
5708
|
static readonly runtime: typeof proto3;
|
|
5630
5709
|
static readonly typeName = "wg.cosmo.platform.v1.GetClientsRequest";
|
|
@@ -5683,6 +5762,10 @@ export declare class GetFieldUsageRequest extends Message<GetFieldUsageRequest>
|
|
|
5683
5762
|
* @generated from field: wg.cosmo.platform.v1.DateRange dateRange = 6;
|
|
5684
5763
|
*/
|
|
5685
5764
|
dateRange?: DateRange;
|
|
5765
|
+
/**
|
|
5766
|
+
* @generated from field: string namespace = 7;
|
|
5767
|
+
*/
|
|
5768
|
+
namespace: string;
|
|
5686
5769
|
constructor(data?: PartialMessage<GetFieldUsageRequest>);
|
|
5687
5770
|
static readonly runtime: typeof proto3;
|
|
5688
5771
|
static readonly typeName = "wg.cosmo.platform.v1.GetFieldUsageRequest";
|
|
@@ -6227,3 +6310,231 @@ export declare class SetDiscussionResolutionResponse extends Message<SetDiscussi
|
|
|
6227
6310
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetDiscussionResolutionResponse;
|
|
6228
6311
|
static equals(a: SetDiscussionResolutionResponse | PlainMessage<SetDiscussionResolutionResponse> | undefined, b: SetDiscussionResolutionResponse | PlainMessage<SetDiscussionResolutionResponse> | undefined): boolean;
|
|
6229
6312
|
}
|
|
6313
|
+
/**
|
|
6314
|
+
* @generated from message wg.cosmo.platform.v1.GetConfigRequest
|
|
6315
|
+
*/
|
|
6316
|
+
export declare class GetConfigRequest extends Message<GetConfigRequest> {
|
|
6317
|
+
/**
|
|
6318
|
+
* @generated from field: string graph_name = 1;
|
|
6319
|
+
*/
|
|
6320
|
+
graphName: string;
|
|
6321
|
+
/**
|
|
6322
|
+
* @generated from field: string namespace = 2;
|
|
6323
|
+
*/
|
|
6324
|
+
namespace: string;
|
|
6325
|
+
constructor(data?: PartialMessage<GetConfigRequest>);
|
|
6326
|
+
static readonly runtime: typeof proto3;
|
|
6327
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetConfigRequest";
|
|
6328
|
+
static readonly fields: FieldList;
|
|
6329
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetConfigRequest;
|
|
6330
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetConfigRequest;
|
|
6331
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetConfigRequest;
|
|
6332
|
+
static equals(a: GetConfigRequest | PlainMessage<GetConfigRequest> | undefined, b: GetConfigRequest | PlainMessage<GetConfigRequest> | undefined): boolean;
|
|
6333
|
+
}
|
|
6334
|
+
/**
|
|
6335
|
+
* @generated from message wg.cosmo.platform.v1.CreateNamespaceRequest
|
|
6336
|
+
*/
|
|
6337
|
+
export declare class CreateNamespaceRequest extends Message<CreateNamespaceRequest> {
|
|
6338
|
+
/**
|
|
6339
|
+
* @generated from field: string name = 1;
|
|
6340
|
+
*/
|
|
6341
|
+
name: string;
|
|
6342
|
+
constructor(data?: PartialMessage<CreateNamespaceRequest>);
|
|
6343
|
+
static readonly runtime: typeof proto3;
|
|
6344
|
+
static readonly typeName = "wg.cosmo.platform.v1.CreateNamespaceRequest";
|
|
6345
|
+
static readonly fields: FieldList;
|
|
6346
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateNamespaceRequest;
|
|
6347
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateNamespaceRequest;
|
|
6348
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateNamespaceRequest;
|
|
6349
|
+
static equals(a: CreateNamespaceRequest | PlainMessage<CreateNamespaceRequest> | undefined, b: CreateNamespaceRequest | PlainMessage<CreateNamespaceRequest> | undefined): boolean;
|
|
6350
|
+
}
|
|
6351
|
+
/**
|
|
6352
|
+
* @generated from message wg.cosmo.platform.v1.CreateNamespaceResponse
|
|
6353
|
+
*/
|
|
6354
|
+
export declare class CreateNamespaceResponse extends Message<CreateNamespaceResponse> {
|
|
6355
|
+
/**
|
|
6356
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
6357
|
+
*/
|
|
6358
|
+
response?: Response;
|
|
6359
|
+
constructor(data?: PartialMessage<CreateNamespaceResponse>);
|
|
6360
|
+
static readonly runtime: typeof proto3;
|
|
6361
|
+
static readonly typeName = "wg.cosmo.platform.v1.CreateNamespaceResponse";
|
|
6362
|
+
static readonly fields: FieldList;
|
|
6363
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateNamespaceResponse;
|
|
6364
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateNamespaceResponse;
|
|
6365
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateNamespaceResponse;
|
|
6366
|
+
static equals(a: CreateNamespaceResponse | PlainMessage<CreateNamespaceResponse> | undefined, b: CreateNamespaceResponse | PlainMessage<CreateNamespaceResponse> | undefined): boolean;
|
|
6367
|
+
}
|
|
6368
|
+
/**
|
|
6369
|
+
* @generated from message wg.cosmo.platform.v1.DeleteNamespaceRequest
|
|
6370
|
+
*/
|
|
6371
|
+
export declare class DeleteNamespaceRequest extends Message<DeleteNamespaceRequest> {
|
|
6372
|
+
/**
|
|
6373
|
+
* @generated from field: string name = 1;
|
|
6374
|
+
*/
|
|
6375
|
+
name: string;
|
|
6376
|
+
constructor(data?: PartialMessage<DeleteNamespaceRequest>);
|
|
6377
|
+
static readonly runtime: typeof proto3;
|
|
6378
|
+
static readonly typeName = "wg.cosmo.platform.v1.DeleteNamespaceRequest";
|
|
6379
|
+
static readonly fields: FieldList;
|
|
6380
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteNamespaceRequest;
|
|
6381
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteNamespaceRequest;
|
|
6382
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteNamespaceRequest;
|
|
6383
|
+
static equals(a: DeleteNamespaceRequest | PlainMessage<DeleteNamespaceRequest> | undefined, b: DeleteNamespaceRequest | PlainMessage<DeleteNamespaceRequest> | undefined): boolean;
|
|
6384
|
+
}
|
|
6385
|
+
/**
|
|
6386
|
+
* @generated from message wg.cosmo.platform.v1.DeleteNamespaceResponse
|
|
6387
|
+
*/
|
|
6388
|
+
export declare class DeleteNamespaceResponse extends Message<DeleteNamespaceResponse> {
|
|
6389
|
+
/**
|
|
6390
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
6391
|
+
*/
|
|
6392
|
+
response?: Response;
|
|
6393
|
+
constructor(data?: PartialMessage<DeleteNamespaceResponse>);
|
|
6394
|
+
static readonly runtime: typeof proto3;
|
|
6395
|
+
static readonly typeName = "wg.cosmo.platform.v1.DeleteNamespaceResponse";
|
|
6396
|
+
static readonly fields: FieldList;
|
|
6397
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteNamespaceResponse;
|
|
6398
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteNamespaceResponse;
|
|
6399
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteNamespaceResponse;
|
|
6400
|
+
static equals(a: DeleteNamespaceResponse | PlainMessage<DeleteNamespaceResponse> | undefined, b: DeleteNamespaceResponse | PlainMessage<DeleteNamespaceResponse> | undefined): boolean;
|
|
6401
|
+
}
|
|
6402
|
+
/**
|
|
6403
|
+
* @generated from message wg.cosmo.platform.v1.RenameNamespaceRequest
|
|
6404
|
+
*/
|
|
6405
|
+
export declare class RenameNamespaceRequest extends Message<RenameNamespaceRequest> {
|
|
6406
|
+
/**
|
|
6407
|
+
* @generated from field: string name = 1;
|
|
6408
|
+
*/
|
|
6409
|
+
name: string;
|
|
6410
|
+
/**
|
|
6411
|
+
* @generated from field: string new_name = 2;
|
|
6412
|
+
*/
|
|
6413
|
+
newName: string;
|
|
6414
|
+
constructor(data?: PartialMessage<RenameNamespaceRequest>);
|
|
6415
|
+
static readonly runtime: typeof proto3;
|
|
6416
|
+
static readonly typeName = "wg.cosmo.platform.v1.RenameNamespaceRequest";
|
|
6417
|
+
static readonly fields: FieldList;
|
|
6418
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RenameNamespaceRequest;
|
|
6419
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RenameNamespaceRequest;
|
|
6420
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RenameNamespaceRequest;
|
|
6421
|
+
static equals(a: RenameNamespaceRequest | PlainMessage<RenameNamespaceRequest> | undefined, b: RenameNamespaceRequest | PlainMessage<RenameNamespaceRequest> | undefined): boolean;
|
|
6422
|
+
}
|
|
6423
|
+
/**
|
|
6424
|
+
* @generated from message wg.cosmo.platform.v1.RenameNamespaceResponse
|
|
6425
|
+
*/
|
|
6426
|
+
export declare class RenameNamespaceResponse extends Message<RenameNamespaceResponse> {
|
|
6427
|
+
/**
|
|
6428
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
6429
|
+
*/
|
|
6430
|
+
response?: Response;
|
|
6431
|
+
constructor(data?: PartialMessage<RenameNamespaceResponse>);
|
|
6432
|
+
static readonly runtime: typeof proto3;
|
|
6433
|
+
static readonly typeName = "wg.cosmo.platform.v1.RenameNamespaceResponse";
|
|
6434
|
+
static readonly fields: FieldList;
|
|
6435
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RenameNamespaceResponse;
|
|
6436
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RenameNamespaceResponse;
|
|
6437
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RenameNamespaceResponse;
|
|
6438
|
+
static equals(a: RenameNamespaceResponse | PlainMessage<RenameNamespaceResponse> | undefined, b: RenameNamespaceResponse | PlainMessage<RenameNamespaceResponse> | undefined): boolean;
|
|
6439
|
+
}
|
|
6440
|
+
/**
|
|
6441
|
+
* @generated from message wg.cosmo.platform.v1.Namespace
|
|
6442
|
+
*/
|
|
6443
|
+
export declare class Namespace extends Message<Namespace> {
|
|
6444
|
+
/**
|
|
6445
|
+
* @generated from field: string id = 1;
|
|
6446
|
+
*/
|
|
6447
|
+
id: string;
|
|
6448
|
+
/**
|
|
6449
|
+
* @generated from field: string name = 2;
|
|
6450
|
+
*/
|
|
6451
|
+
name: string;
|
|
6452
|
+
constructor(data?: PartialMessage<Namespace>);
|
|
6453
|
+
static readonly runtime: typeof proto3;
|
|
6454
|
+
static readonly typeName = "wg.cosmo.platform.v1.Namespace";
|
|
6455
|
+
static readonly fields: FieldList;
|
|
6456
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Namespace;
|
|
6457
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Namespace;
|
|
6458
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Namespace;
|
|
6459
|
+
static equals(a: Namespace | PlainMessage<Namespace> | undefined, b: Namespace | PlainMessage<Namespace> | undefined): boolean;
|
|
6460
|
+
}
|
|
6461
|
+
/**
|
|
6462
|
+
* @generated from message wg.cosmo.platform.v1.GetNamespacesRequest
|
|
6463
|
+
*/
|
|
6464
|
+
export declare class GetNamespacesRequest extends Message<GetNamespacesRequest> {
|
|
6465
|
+
constructor(data?: PartialMessage<GetNamespacesRequest>);
|
|
6466
|
+
static readonly runtime: typeof proto3;
|
|
6467
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetNamespacesRequest";
|
|
6468
|
+
static readonly fields: FieldList;
|
|
6469
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetNamespacesRequest;
|
|
6470
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetNamespacesRequest;
|
|
6471
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetNamespacesRequest;
|
|
6472
|
+
static equals(a: GetNamespacesRequest | PlainMessage<GetNamespacesRequest> | undefined, b: GetNamespacesRequest | PlainMessage<GetNamespacesRequest> | undefined): boolean;
|
|
6473
|
+
}
|
|
6474
|
+
/**
|
|
6475
|
+
* @generated from message wg.cosmo.platform.v1.GetNamespacesResponse
|
|
6476
|
+
*/
|
|
6477
|
+
export declare class GetNamespacesResponse extends Message<GetNamespacesResponse> {
|
|
6478
|
+
/**
|
|
6479
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
6480
|
+
*/
|
|
6481
|
+
response?: Response;
|
|
6482
|
+
/**
|
|
6483
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Namespace namespaces = 2;
|
|
6484
|
+
*/
|
|
6485
|
+
namespaces: Namespace[];
|
|
6486
|
+
constructor(data?: PartialMessage<GetNamespacesResponse>);
|
|
6487
|
+
static readonly runtime: typeof proto3;
|
|
6488
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetNamespacesResponse";
|
|
6489
|
+
static readonly fields: FieldList;
|
|
6490
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetNamespacesResponse;
|
|
6491
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetNamespacesResponse;
|
|
6492
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetNamespacesResponse;
|
|
6493
|
+
static equals(a: GetNamespacesResponse | PlainMessage<GetNamespacesResponse> | undefined, b: GetNamespacesResponse | PlainMessage<GetNamespacesResponse> | undefined): boolean;
|
|
6494
|
+
}
|
|
6495
|
+
/**
|
|
6496
|
+
* @generated from message wg.cosmo.platform.v1.MoveGraphRequest
|
|
6497
|
+
*/
|
|
6498
|
+
export declare class MoveGraphRequest extends Message<MoveGraphRequest> {
|
|
6499
|
+
/**
|
|
6500
|
+
* @generated from field: string name = 1;
|
|
6501
|
+
*/
|
|
6502
|
+
name: string;
|
|
6503
|
+
/**
|
|
6504
|
+
* @generated from field: string namespace = 2;
|
|
6505
|
+
*/
|
|
6506
|
+
namespace: string;
|
|
6507
|
+
/**
|
|
6508
|
+
* @generated from field: string new_namespace = 3;
|
|
6509
|
+
*/
|
|
6510
|
+
newNamespace: string;
|
|
6511
|
+
constructor(data?: PartialMessage<MoveGraphRequest>);
|
|
6512
|
+
static readonly runtime: typeof proto3;
|
|
6513
|
+
static readonly typeName = "wg.cosmo.platform.v1.MoveGraphRequest";
|
|
6514
|
+
static readonly fields: FieldList;
|
|
6515
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MoveGraphRequest;
|
|
6516
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MoveGraphRequest;
|
|
6517
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MoveGraphRequest;
|
|
6518
|
+
static equals(a: MoveGraphRequest | PlainMessage<MoveGraphRequest> | undefined, b: MoveGraphRequest | PlainMessage<MoveGraphRequest> | undefined): boolean;
|
|
6519
|
+
}
|
|
6520
|
+
/**
|
|
6521
|
+
* @generated from message wg.cosmo.platform.v1.MoveGraphResponse
|
|
6522
|
+
*/
|
|
6523
|
+
export declare class MoveGraphResponse extends Message<MoveGraphResponse> {
|
|
6524
|
+
/**
|
|
6525
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
6526
|
+
*/
|
|
6527
|
+
response?: Response;
|
|
6528
|
+
/**
|
|
6529
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionError compositionErrors = 2;
|
|
6530
|
+
*/
|
|
6531
|
+
compositionErrors: CompositionError[];
|
|
6532
|
+
constructor(data?: PartialMessage<MoveGraphResponse>);
|
|
6533
|
+
static readonly runtime: typeof proto3;
|
|
6534
|
+
static readonly typeName = "wg.cosmo.platform.v1.MoveGraphResponse";
|
|
6535
|
+
static readonly fields: FieldList;
|
|
6536
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MoveGraphResponse;
|
|
6537
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MoveGraphResponse;
|
|
6538
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MoveGraphResponse;
|
|
6539
|
+
static equals(a: MoveGraphResponse | PlainMessage<MoveGraphResponse> | undefined, b: MoveGraphResponse | PlainMessage<MoveGraphResponse> | undefined): boolean;
|
|
6540
|
+
}
|