@wundergraph/cosmo-connect 0.100.0 → 0.102.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/common/common_pb.d.ts +5 -1
- package/dist/common/common_pb.js +5 -0
- package/dist/common/common_pb.js.map +1 -1
- package/dist/notifications/events_pb.d.ts +28 -1
- package/dist/notifications/events_pb.js +36 -0
- package/dist/notifications/events_pb.js.map +1 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +135 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js +135 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +99 -1
- package/dist/platform/v1/platform_connect.js +99 -1
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +803 -4
- package/dist/platform/v1/platform_pb.js +1196 -6
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -427,6 +427,10 @@ export declare class PublishFederatedSubgraphResponse extends Message<PublishFed
|
|
|
427
427
|
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 5;
|
|
428
428
|
*/
|
|
429
429
|
compositionWarnings: CompositionWarning[];
|
|
430
|
+
/**
|
|
431
|
+
* @generated from field: optional string proposalMatchMessage = 6;
|
|
432
|
+
*/
|
|
433
|
+
proposalMatchMessage?: string;
|
|
430
434
|
constructor(data?: PartialMessage<PublishFederatedSubgraphResponse>);
|
|
431
435
|
static readonly runtime: typeof proto3;
|
|
432
436
|
static readonly typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphResponse";
|
|
@@ -862,6 +866,10 @@ export declare class SchemaChange extends Message<SchemaChange> {
|
|
|
862
866
|
* @generated from field: optional bool hasOverride = 5;
|
|
863
867
|
*/
|
|
864
868
|
hasOverride?: boolean;
|
|
869
|
+
/**
|
|
870
|
+
* @generated from field: optional string subgraphName = 6;
|
|
871
|
+
*/
|
|
872
|
+
subgraphName?: string;
|
|
865
873
|
constructor(data?: PartialMessage<SchemaChange>);
|
|
866
874
|
static readonly runtime: typeof proto3;
|
|
867
875
|
static readonly typeName = "wg.cosmo.platform.v1.SchemaChange";
|
|
@@ -1061,6 +1069,10 @@ export declare class LintIssue extends Message<LintIssue> {
|
|
|
1061
1069
|
* @generated from field: wg.cosmo.platform.v1.LintLocation issueLocation = 4;
|
|
1062
1070
|
*/
|
|
1063
1071
|
issueLocation?: LintLocation;
|
|
1072
|
+
/**
|
|
1073
|
+
* @generated from field: optional string subgraphName = 5;
|
|
1074
|
+
*/
|
|
1075
|
+
subgraphName?: string;
|
|
1064
1076
|
constructor(data?: PartialMessage<LintIssue>);
|
|
1065
1077
|
static readonly runtime: typeof proto3;
|
|
1066
1078
|
static readonly typeName = "wg.cosmo.platform.v1.LintIssue";
|
|
@@ -1098,6 +1110,10 @@ export declare class GraphPruningIssue extends Message<GraphPruningIssue> {
|
|
|
1098
1110
|
* @generated from field: string federatedGraphName = 6;
|
|
1099
1111
|
*/
|
|
1100
1112
|
federatedGraphName: string;
|
|
1113
|
+
/**
|
|
1114
|
+
* @generated from field: optional string subgraphName = 7;
|
|
1115
|
+
*/
|
|
1116
|
+
subgraphName?: string;
|
|
1101
1117
|
constructor(data?: PartialMessage<GraphPruningIssue>);
|
|
1102
1118
|
static readonly runtime: typeof proto3;
|
|
1103
1119
|
static readonly typeName = "wg.cosmo.platform.v1.GraphPruningIssue";
|
|
@@ -1165,6 +1181,10 @@ export declare class CheckSubgraphSchemaResponse extends Message<CheckSubgraphSc
|
|
|
1165
1181
|
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 13;
|
|
1166
1182
|
*/
|
|
1167
1183
|
compositionWarnings: CompositionWarning[];
|
|
1184
|
+
/**
|
|
1185
|
+
* @generated from field: optional string proposalMatchMessage = 14;
|
|
1186
|
+
*/
|
|
1187
|
+
proposalMatchMessage?: string;
|
|
1168
1188
|
constructor(data?: PartialMessage<CheckSubgraphSchemaResponse>);
|
|
1169
1189
|
static readonly runtime: typeof proto3;
|
|
1170
1190
|
static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaResponse";
|
|
@@ -1265,6 +1285,10 @@ export declare class DeleteFederatedSubgraphResponse extends Message<DeleteFeder
|
|
|
1265
1285
|
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
1266
1286
|
*/
|
|
1267
1287
|
compositionWarnings: CompositionWarning[];
|
|
1288
|
+
/**
|
|
1289
|
+
* @generated from field: optional string proposalMatchMessage = 5;
|
|
1290
|
+
*/
|
|
1291
|
+
proposalMatchMessage?: string;
|
|
1268
1292
|
constructor(data?: PartialMessage<DeleteFederatedSubgraphResponse>);
|
|
1269
1293
|
static readonly runtime: typeof proto3;
|
|
1270
1294
|
static readonly typeName = "wg.cosmo.platform.v1.DeleteFederatedSubgraphResponse";
|
|
@@ -1964,13 +1988,13 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
|
|
|
1964
1988
|
*/
|
|
1965
1989
|
id: string;
|
|
1966
1990
|
/**
|
|
1967
|
-
* @generated from field: string targetID = 2;
|
|
1991
|
+
* @generated from field: optional string targetID = 2;
|
|
1968
1992
|
*/
|
|
1969
|
-
targetID
|
|
1993
|
+
targetID?: string;
|
|
1970
1994
|
/**
|
|
1971
|
-
* @generated from field: string subgraphName = 3;
|
|
1995
|
+
* @generated from field: optional string subgraphName = 3;
|
|
1972
1996
|
*/
|
|
1973
|
-
subgraphName
|
|
1997
|
+
subgraphName?: string;
|
|
1974
1998
|
/**
|
|
1975
1999
|
* @generated from field: string timestamp = 4;
|
|
1976
2000
|
*/
|
|
@@ -2023,6 +2047,26 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
|
|
|
2023
2047
|
* @generated from field: optional wg.cosmo.platform.v1.VCSContext vcsContext = 16;
|
|
2024
2048
|
*/
|
|
2025
2049
|
vcsContext?: VCSContext;
|
|
2050
|
+
/**
|
|
2051
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SchemaCheck.CheckedSubgraph checkedSubgraphs = 17;
|
|
2052
|
+
*/
|
|
2053
|
+
checkedSubgraphs: SchemaCheck_CheckedSubgraph[];
|
|
2054
|
+
/**
|
|
2055
|
+
* @generated from field: optional string proposalMatch = 18;
|
|
2056
|
+
*/
|
|
2057
|
+
proposalMatch?: string;
|
|
2058
|
+
/**
|
|
2059
|
+
* @generated from field: bool composition_skipped = 19;
|
|
2060
|
+
*/
|
|
2061
|
+
compositionSkipped: boolean;
|
|
2062
|
+
/**
|
|
2063
|
+
* @generated from field: bool breaking_changes_skipped = 20;
|
|
2064
|
+
*/
|
|
2065
|
+
breakingChangesSkipped: boolean;
|
|
2066
|
+
/**
|
|
2067
|
+
* @generated from field: optional string errorMessage = 21;
|
|
2068
|
+
*/
|
|
2069
|
+
errorMessage?: string;
|
|
2026
2070
|
constructor(data?: PartialMessage<SchemaCheck>);
|
|
2027
2071
|
static readonly runtime: typeof proto3;
|
|
2028
2072
|
static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck";
|
|
@@ -2057,6 +2101,43 @@ export declare class SchemaCheck_GhDetails extends Message<SchemaCheck_GhDetails
|
|
|
2057
2101
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SchemaCheck_GhDetails;
|
|
2058
2102
|
static equals(a: SchemaCheck_GhDetails | PlainMessage<SchemaCheck_GhDetails> | undefined, b: SchemaCheck_GhDetails | PlainMessage<SchemaCheck_GhDetails> | undefined): boolean;
|
|
2059
2103
|
}
|
|
2104
|
+
/**
|
|
2105
|
+
* @generated from message wg.cosmo.platform.v1.SchemaCheck.CheckedSubgraph
|
|
2106
|
+
*/
|
|
2107
|
+
export declare class SchemaCheck_CheckedSubgraph extends Message<SchemaCheck_CheckedSubgraph> {
|
|
2108
|
+
/**
|
|
2109
|
+
* its the check subgraph id
|
|
2110
|
+
*
|
|
2111
|
+
* @generated from field: string id = 1;
|
|
2112
|
+
*/
|
|
2113
|
+
id: string;
|
|
2114
|
+
/**
|
|
2115
|
+
* @generated from field: string subgraphName = 2;
|
|
2116
|
+
*/
|
|
2117
|
+
subgraphName: string;
|
|
2118
|
+
/**
|
|
2119
|
+
* its optional because the subgraph can be deleted
|
|
2120
|
+
*
|
|
2121
|
+
* @generated from field: optional string subgraphId = 3;
|
|
2122
|
+
*/
|
|
2123
|
+
subgraphId?: string;
|
|
2124
|
+
/**
|
|
2125
|
+
* @generated from field: bool isDeleted = 4;
|
|
2126
|
+
*/
|
|
2127
|
+
isDeleted: boolean;
|
|
2128
|
+
/**
|
|
2129
|
+
* @generated from field: bool isNew = 5;
|
|
2130
|
+
*/
|
|
2131
|
+
isNew: boolean;
|
|
2132
|
+
constructor(data?: PartialMessage<SchemaCheck_CheckedSubgraph>);
|
|
2133
|
+
static readonly runtime: typeof proto3;
|
|
2134
|
+
static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck.CheckedSubgraph";
|
|
2135
|
+
static readonly fields: FieldList;
|
|
2136
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SchemaCheck_CheckedSubgraph;
|
|
2137
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SchemaCheck_CheckedSubgraph;
|
|
2138
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SchemaCheck_CheckedSubgraph;
|
|
2139
|
+
static equals(a: SchemaCheck_CheckedSubgraph | PlainMessage<SchemaCheck_CheckedSubgraph> | undefined, b: SchemaCheck_CheckedSubgraph | PlainMessage<SchemaCheck_CheckedSubgraph> | undefined): boolean;
|
|
2140
|
+
}
|
|
2060
2141
|
/**
|
|
2061
2142
|
* @generated from message wg.cosmo.platform.v1.GetChecksByFederatedGraphNameResponse
|
|
2062
2143
|
*/
|
|
@@ -2176,6 +2257,22 @@ export declare class GetCheckSummaryResponse extends Message<GetCheckSummaryResp
|
|
|
2176
2257
|
* @generated from field: repeated string compositionWarnings = 11;
|
|
2177
2258
|
*/
|
|
2178
2259
|
compositionWarnings: string[];
|
|
2260
|
+
/**
|
|
2261
|
+
* @generated from field: optional string proposalId = 12;
|
|
2262
|
+
*/
|
|
2263
|
+
proposalId?: string;
|
|
2264
|
+
/**
|
|
2265
|
+
* @generated from field: optional string proposalName = 13;
|
|
2266
|
+
*/
|
|
2267
|
+
proposalName?: string;
|
|
2268
|
+
/**
|
|
2269
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GetCheckSummaryResponse.ProposalSchemaMatch proposalMatches = 14;
|
|
2270
|
+
*/
|
|
2271
|
+
proposalMatches: GetCheckSummaryResponse_ProposalSchemaMatch[];
|
|
2272
|
+
/**
|
|
2273
|
+
* @generated from field: bool isProposalsEnabled = 15;
|
|
2274
|
+
*/
|
|
2275
|
+
isProposalsEnabled: boolean;
|
|
2179
2276
|
constructor(data?: PartialMessage<GetCheckSummaryResponse>);
|
|
2180
2277
|
static readonly runtime: typeof proto3;
|
|
2181
2278
|
static readonly typeName = "wg.cosmo.platform.v1.GetCheckSummaryResponse";
|
|
@@ -2197,6 +2294,14 @@ export declare class GetCheckSummaryResponse_AffectedGraph extends Message<GetCh
|
|
|
2197
2294
|
* @generated from field: int32 traffic_check_days = 2;
|
|
2198
2295
|
*/
|
|
2199
2296
|
trafficCheckDays: number;
|
|
2297
|
+
/**
|
|
2298
|
+
* @generated from field: string name = 3;
|
|
2299
|
+
*/
|
|
2300
|
+
name: string;
|
|
2301
|
+
/**
|
|
2302
|
+
* @generated from field: bool isCheckSuccessful = 4;
|
|
2303
|
+
*/
|
|
2304
|
+
isCheckSuccessful: boolean;
|
|
2200
2305
|
constructor(data?: PartialMessage<GetCheckSummaryResponse_AffectedGraph>);
|
|
2201
2306
|
static readonly runtime: typeof proto3;
|
|
2202
2307
|
static readonly typeName = "wg.cosmo.platform.v1.GetCheckSummaryResponse.AffectedGraph";
|
|
@@ -2206,6 +2311,31 @@ export declare class GetCheckSummaryResponse_AffectedGraph extends Message<GetCh
|
|
|
2206
2311
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCheckSummaryResponse_AffectedGraph;
|
|
2207
2312
|
static equals(a: GetCheckSummaryResponse_AffectedGraph | PlainMessage<GetCheckSummaryResponse_AffectedGraph> | undefined, b: GetCheckSummaryResponse_AffectedGraph | PlainMessage<GetCheckSummaryResponse_AffectedGraph> | undefined): boolean;
|
|
2208
2313
|
}
|
|
2314
|
+
/**
|
|
2315
|
+
* @generated from message wg.cosmo.platform.v1.GetCheckSummaryResponse.ProposalSchemaMatch
|
|
2316
|
+
*/
|
|
2317
|
+
export declare class GetCheckSummaryResponse_ProposalSchemaMatch extends Message<GetCheckSummaryResponse_ProposalSchemaMatch> {
|
|
2318
|
+
/**
|
|
2319
|
+
* @generated from field: string proposalId = 1;
|
|
2320
|
+
*/
|
|
2321
|
+
proposalId: string;
|
|
2322
|
+
/**
|
|
2323
|
+
* @generated from field: string proposalName = 2;
|
|
2324
|
+
*/
|
|
2325
|
+
proposalName: string;
|
|
2326
|
+
/**
|
|
2327
|
+
* @generated from field: bool proposalMatch = 3;
|
|
2328
|
+
*/
|
|
2329
|
+
proposalMatch: boolean;
|
|
2330
|
+
constructor(data?: PartialMessage<GetCheckSummaryResponse_ProposalSchemaMatch>);
|
|
2331
|
+
static readonly runtime: typeof proto3;
|
|
2332
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetCheckSummaryResponse.ProposalSchemaMatch";
|
|
2333
|
+
static readonly fields: FieldList;
|
|
2334
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCheckSummaryResponse_ProposalSchemaMatch;
|
|
2335
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCheckSummaryResponse_ProposalSchemaMatch;
|
|
2336
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCheckSummaryResponse_ProposalSchemaMatch;
|
|
2337
|
+
static equals(a: GetCheckSummaryResponse_ProposalSchemaMatch | PlainMessage<GetCheckSummaryResponse_ProposalSchemaMatch> | undefined, b: GetCheckSummaryResponse_ProposalSchemaMatch | PlainMessage<GetCheckSummaryResponse_ProposalSchemaMatch> | undefined): boolean;
|
|
2338
|
+
}
|
|
2209
2339
|
/**
|
|
2210
2340
|
* @generated from message wg.cosmo.platform.v1.GetCheckOperationsRequest
|
|
2211
2341
|
*/
|
|
@@ -10097,3 +10227,672 @@ export declare class SetGraphRouterCompatibilityVersionResponse extends Message<
|
|
|
10097
10227
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetGraphRouterCompatibilityVersionResponse;
|
|
10098
10228
|
static equals(a: SetGraphRouterCompatibilityVersionResponse | PlainMessage<SetGraphRouterCompatibilityVersionResponse> | undefined, b: SetGraphRouterCompatibilityVersionResponse | PlainMessage<SetGraphRouterCompatibilityVersionResponse> | undefined): boolean;
|
|
10099
10229
|
}
|
|
10230
|
+
/**
|
|
10231
|
+
* @generated from message wg.cosmo.platform.v1.GetProposedSchemaOfCheckedSubgraphRequest
|
|
10232
|
+
*/
|
|
10233
|
+
export declare class GetProposedSchemaOfCheckedSubgraphRequest extends Message<GetProposedSchemaOfCheckedSubgraphRequest> {
|
|
10234
|
+
/**
|
|
10235
|
+
* @generated from field: string checkId = 1;
|
|
10236
|
+
*/
|
|
10237
|
+
checkId: string;
|
|
10238
|
+
/**
|
|
10239
|
+
* @generated from field: string checkedSubgraphId = 2;
|
|
10240
|
+
*/
|
|
10241
|
+
checkedSubgraphId: string;
|
|
10242
|
+
constructor(data?: PartialMessage<GetProposedSchemaOfCheckedSubgraphRequest>);
|
|
10243
|
+
static readonly runtime: typeof proto3;
|
|
10244
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposedSchemaOfCheckedSubgraphRequest";
|
|
10245
|
+
static readonly fields: FieldList;
|
|
10246
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposedSchemaOfCheckedSubgraphRequest;
|
|
10247
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposedSchemaOfCheckedSubgraphRequest;
|
|
10248
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposedSchemaOfCheckedSubgraphRequest;
|
|
10249
|
+
static equals(a: GetProposedSchemaOfCheckedSubgraphRequest | PlainMessage<GetProposedSchemaOfCheckedSubgraphRequest> | undefined, b: GetProposedSchemaOfCheckedSubgraphRequest | PlainMessage<GetProposedSchemaOfCheckedSubgraphRequest> | undefined): boolean;
|
|
10250
|
+
}
|
|
10251
|
+
/**
|
|
10252
|
+
* @generated from message wg.cosmo.platform.v1.GetProposedSchemaOfCheckedSubgraphResponse
|
|
10253
|
+
*/
|
|
10254
|
+
export declare class GetProposedSchemaOfCheckedSubgraphResponse extends Message<GetProposedSchemaOfCheckedSubgraphResponse> {
|
|
10255
|
+
/**
|
|
10256
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10257
|
+
*/
|
|
10258
|
+
response?: Response;
|
|
10259
|
+
/**
|
|
10260
|
+
* @generated from field: string proposedSchema = 2;
|
|
10261
|
+
*/
|
|
10262
|
+
proposedSchema: string;
|
|
10263
|
+
constructor(data?: PartialMessage<GetProposedSchemaOfCheckedSubgraphResponse>);
|
|
10264
|
+
static readonly runtime: typeof proto3;
|
|
10265
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposedSchemaOfCheckedSubgraphResponse";
|
|
10266
|
+
static readonly fields: FieldList;
|
|
10267
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposedSchemaOfCheckedSubgraphResponse;
|
|
10268
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposedSchemaOfCheckedSubgraphResponse;
|
|
10269
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposedSchemaOfCheckedSubgraphResponse;
|
|
10270
|
+
static equals(a: GetProposedSchemaOfCheckedSubgraphResponse | PlainMessage<GetProposedSchemaOfCheckedSubgraphResponse> | undefined, b: GetProposedSchemaOfCheckedSubgraphResponse | PlainMessage<GetProposedSchemaOfCheckedSubgraphResponse> | undefined): boolean;
|
|
10271
|
+
}
|
|
10272
|
+
/**
|
|
10273
|
+
* @generated from message wg.cosmo.platform.v1.Proposal
|
|
10274
|
+
*/
|
|
10275
|
+
export declare class Proposal extends Message<Proposal> {
|
|
10276
|
+
/**
|
|
10277
|
+
* @generated from field: string id = 1;
|
|
10278
|
+
*/
|
|
10279
|
+
id: string;
|
|
10280
|
+
/**
|
|
10281
|
+
* @generated from field: string name = 2;
|
|
10282
|
+
*/
|
|
10283
|
+
name: string;
|
|
10284
|
+
/**
|
|
10285
|
+
* @generated from field: string createdAt = 3;
|
|
10286
|
+
*/
|
|
10287
|
+
createdAt: string;
|
|
10288
|
+
/**
|
|
10289
|
+
* @generated from field: string createdByEmail = 4;
|
|
10290
|
+
*/
|
|
10291
|
+
createdByEmail: string;
|
|
10292
|
+
/**
|
|
10293
|
+
* @generated from field: string state = 5;
|
|
10294
|
+
*/
|
|
10295
|
+
state: string;
|
|
10296
|
+
/**
|
|
10297
|
+
* @generated from field: string federatedGraphId = 6;
|
|
10298
|
+
*/
|
|
10299
|
+
federatedGraphId: string;
|
|
10300
|
+
/**
|
|
10301
|
+
* @generated from field: string federatedGraphName = 7;
|
|
10302
|
+
*/
|
|
10303
|
+
federatedGraphName: string;
|
|
10304
|
+
/**
|
|
10305
|
+
* @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 8;
|
|
10306
|
+
*/
|
|
10307
|
+
subgraphs: ProposalSubgraph[];
|
|
10308
|
+
/**
|
|
10309
|
+
* @generated from field: bool latestCheckSuccess = 9;
|
|
10310
|
+
*/
|
|
10311
|
+
latestCheckSuccess: boolean;
|
|
10312
|
+
/**
|
|
10313
|
+
* @generated from field: string latestCheckId = 10;
|
|
10314
|
+
*/
|
|
10315
|
+
latestCheckId: string;
|
|
10316
|
+
constructor(data?: PartialMessage<Proposal>);
|
|
10317
|
+
static readonly runtime: typeof proto3;
|
|
10318
|
+
static readonly typeName = "wg.cosmo.platform.v1.Proposal";
|
|
10319
|
+
static readonly fields: FieldList;
|
|
10320
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Proposal;
|
|
10321
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Proposal;
|
|
10322
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Proposal;
|
|
10323
|
+
static equals(a: Proposal | PlainMessage<Proposal> | undefined, b: Proposal | PlainMessage<Proposal> | undefined): boolean;
|
|
10324
|
+
}
|
|
10325
|
+
/**
|
|
10326
|
+
* @generated from message wg.cosmo.platform.v1.ProposalSubgraph
|
|
10327
|
+
*/
|
|
10328
|
+
export declare class ProposalSubgraph extends Message<ProposalSubgraph> {
|
|
10329
|
+
/**
|
|
10330
|
+
* @generated from field: string name = 1;
|
|
10331
|
+
*/
|
|
10332
|
+
name: string;
|
|
10333
|
+
/**
|
|
10334
|
+
* @generated from field: string schemaSDL = 2;
|
|
10335
|
+
*/
|
|
10336
|
+
schemaSDL: string;
|
|
10337
|
+
/**
|
|
10338
|
+
* @generated from field: bool isDeleted = 3;
|
|
10339
|
+
*/
|
|
10340
|
+
isDeleted: boolean;
|
|
10341
|
+
/**
|
|
10342
|
+
* @generated from field: bool isNew = 4;
|
|
10343
|
+
*/
|
|
10344
|
+
isNew: boolean;
|
|
10345
|
+
/**
|
|
10346
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 5;
|
|
10347
|
+
*/
|
|
10348
|
+
labels: Label[];
|
|
10349
|
+
constructor(data?: PartialMessage<ProposalSubgraph>);
|
|
10350
|
+
static readonly runtime: typeof proto3;
|
|
10351
|
+
static readonly typeName = "wg.cosmo.platform.v1.ProposalSubgraph";
|
|
10352
|
+
static readonly fields: FieldList;
|
|
10353
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProposalSubgraph;
|
|
10354
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProposalSubgraph;
|
|
10355
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProposalSubgraph;
|
|
10356
|
+
static equals(a: ProposalSubgraph | PlainMessage<ProposalSubgraph> | undefined, b: ProposalSubgraph | PlainMessage<ProposalSubgraph> | undefined): boolean;
|
|
10357
|
+
}
|
|
10358
|
+
/**
|
|
10359
|
+
* @generated from message wg.cosmo.platform.v1.CreateProposalRequest
|
|
10360
|
+
*/
|
|
10361
|
+
export declare class CreateProposalRequest extends Message<CreateProposalRequest> {
|
|
10362
|
+
/**
|
|
10363
|
+
* @generated from field: string federatedGraphName = 1;
|
|
10364
|
+
*/
|
|
10365
|
+
federatedGraphName: string;
|
|
10366
|
+
/**
|
|
10367
|
+
* @generated from field: string namespace = 2;
|
|
10368
|
+
*/
|
|
10369
|
+
namespace: string;
|
|
10370
|
+
/**
|
|
10371
|
+
* @generated from field: string name = 3;
|
|
10372
|
+
*/
|
|
10373
|
+
name: string;
|
|
10374
|
+
/**
|
|
10375
|
+
* @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 4;
|
|
10376
|
+
*/
|
|
10377
|
+
subgraphs: ProposalSubgraph[];
|
|
10378
|
+
constructor(data?: PartialMessage<CreateProposalRequest>);
|
|
10379
|
+
static readonly runtime: typeof proto3;
|
|
10380
|
+
static readonly typeName = "wg.cosmo.platform.v1.CreateProposalRequest";
|
|
10381
|
+
static readonly fields: FieldList;
|
|
10382
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateProposalRequest;
|
|
10383
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateProposalRequest;
|
|
10384
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateProposalRequest;
|
|
10385
|
+
static equals(a: CreateProposalRequest | PlainMessage<CreateProposalRequest> | undefined, b: CreateProposalRequest | PlainMessage<CreateProposalRequest> | undefined): boolean;
|
|
10386
|
+
}
|
|
10387
|
+
/**
|
|
10388
|
+
* @generated from message wg.cosmo.platform.v1.CreateProposalResponse
|
|
10389
|
+
*/
|
|
10390
|
+
export declare class CreateProposalResponse extends Message<CreateProposalResponse> {
|
|
10391
|
+
/**
|
|
10392
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10393
|
+
*/
|
|
10394
|
+
response?: Response;
|
|
10395
|
+
/**
|
|
10396
|
+
* @generated from field: string proposalId = 2;
|
|
10397
|
+
*/
|
|
10398
|
+
proposalId: string;
|
|
10399
|
+
/**
|
|
10400
|
+
* @generated from field: string checkId = 3;
|
|
10401
|
+
*/
|
|
10402
|
+
checkId: string;
|
|
10403
|
+
/**
|
|
10404
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SchemaChange breakingChanges = 4;
|
|
10405
|
+
*/
|
|
10406
|
+
breakingChanges: SchemaChange[];
|
|
10407
|
+
/**
|
|
10408
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SchemaChange nonBreakingChanges = 5;
|
|
10409
|
+
*/
|
|
10410
|
+
nonBreakingChanges: SchemaChange[];
|
|
10411
|
+
/**
|
|
10412
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionError compositionErrors = 6;
|
|
10413
|
+
*/
|
|
10414
|
+
compositionErrors: CompositionError[];
|
|
10415
|
+
/**
|
|
10416
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 7;
|
|
10417
|
+
*/
|
|
10418
|
+
compositionWarnings: CompositionWarning[];
|
|
10419
|
+
/**
|
|
10420
|
+
* @generated from field: repeated wg.cosmo.platform.v1.LintIssue lintErrors = 8;
|
|
10421
|
+
*/
|
|
10422
|
+
lintErrors: LintIssue[];
|
|
10423
|
+
/**
|
|
10424
|
+
* @generated from field: repeated wg.cosmo.platform.v1.LintIssue lintWarnings = 9;
|
|
10425
|
+
*/
|
|
10426
|
+
lintWarnings: LintIssue[];
|
|
10427
|
+
/**
|
|
10428
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneErrors = 10;
|
|
10429
|
+
*/
|
|
10430
|
+
graphPruneErrors: GraphPruningIssue[];
|
|
10431
|
+
/**
|
|
10432
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneWarnings = 11;
|
|
10433
|
+
*/
|
|
10434
|
+
graphPruneWarnings: GraphPruningIssue[];
|
|
10435
|
+
/**
|
|
10436
|
+
* @generated from field: wg.cosmo.platform.v1.CheckOperationUsageStats operationUsageStats = 12;
|
|
10437
|
+
*/
|
|
10438
|
+
operationUsageStats?: CheckOperationUsageStats;
|
|
10439
|
+
/**
|
|
10440
|
+
* @generated from field: bool lintingSkipped = 13;
|
|
10441
|
+
*/
|
|
10442
|
+
lintingSkipped: boolean;
|
|
10443
|
+
/**
|
|
10444
|
+
* @generated from field: bool graphPruningSkipped = 14;
|
|
10445
|
+
*/
|
|
10446
|
+
graphPruningSkipped: boolean;
|
|
10447
|
+
/**
|
|
10448
|
+
* @generated from field: string checkUrl = 15;
|
|
10449
|
+
*/
|
|
10450
|
+
checkUrl: string;
|
|
10451
|
+
constructor(data?: PartialMessage<CreateProposalResponse>);
|
|
10452
|
+
static readonly runtime: typeof proto3;
|
|
10453
|
+
static readonly typeName = "wg.cosmo.platform.v1.CreateProposalResponse";
|
|
10454
|
+
static readonly fields: FieldList;
|
|
10455
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateProposalResponse;
|
|
10456
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateProposalResponse;
|
|
10457
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateProposalResponse;
|
|
10458
|
+
static equals(a: CreateProposalResponse | PlainMessage<CreateProposalResponse> | undefined, b: CreateProposalResponse | PlainMessage<CreateProposalResponse> | undefined): boolean;
|
|
10459
|
+
}
|
|
10460
|
+
/**
|
|
10461
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalRequest
|
|
10462
|
+
*/
|
|
10463
|
+
export declare class GetProposalRequest extends Message<GetProposalRequest> {
|
|
10464
|
+
/**
|
|
10465
|
+
* @generated from field: string proposalId = 1;
|
|
10466
|
+
*/
|
|
10467
|
+
proposalId: string;
|
|
10468
|
+
constructor(data?: PartialMessage<GetProposalRequest>);
|
|
10469
|
+
static readonly runtime: typeof proto3;
|
|
10470
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalRequest";
|
|
10471
|
+
static readonly fields: FieldList;
|
|
10472
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalRequest;
|
|
10473
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalRequest;
|
|
10474
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalRequest;
|
|
10475
|
+
static equals(a: GetProposalRequest | PlainMessage<GetProposalRequest> | undefined, b: GetProposalRequest | PlainMessage<GetProposalRequest> | undefined): boolean;
|
|
10476
|
+
}
|
|
10477
|
+
/**
|
|
10478
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalResponse
|
|
10479
|
+
*/
|
|
10480
|
+
export declare class GetProposalResponse extends Message<GetProposalResponse> {
|
|
10481
|
+
/**
|
|
10482
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10483
|
+
*/
|
|
10484
|
+
response?: Response;
|
|
10485
|
+
/**
|
|
10486
|
+
* @generated from field: wg.cosmo.platform.v1.Proposal proposal = 2;
|
|
10487
|
+
*/
|
|
10488
|
+
proposal?: Proposal;
|
|
10489
|
+
/**
|
|
10490
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GetProposalResponse.CurrentSubgraph currentSubgraphs = 3;
|
|
10491
|
+
*/
|
|
10492
|
+
currentSubgraphs: GetProposalResponse_CurrentSubgraph[];
|
|
10493
|
+
constructor(data?: PartialMessage<GetProposalResponse>);
|
|
10494
|
+
static readonly runtime: typeof proto3;
|
|
10495
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalResponse";
|
|
10496
|
+
static readonly fields: FieldList;
|
|
10497
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalResponse;
|
|
10498
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalResponse;
|
|
10499
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalResponse;
|
|
10500
|
+
static equals(a: GetProposalResponse | PlainMessage<GetProposalResponse> | undefined, b: GetProposalResponse | PlainMessage<GetProposalResponse> | undefined): boolean;
|
|
10501
|
+
}
|
|
10502
|
+
/**
|
|
10503
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalResponse.CurrentSubgraph
|
|
10504
|
+
*/
|
|
10505
|
+
export declare class GetProposalResponse_CurrentSubgraph extends Message<GetProposalResponse_CurrentSubgraph> {
|
|
10506
|
+
/**
|
|
10507
|
+
* @generated from field: string name = 1;
|
|
10508
|
+
*/
|
|
10509
|
+
name: string;
|
|
10510
|
+
/**
|
|
10511
|
+
* @generated from field: string schemaSDL = 2;
|
|
10512
|
+
*/
|
|
10513
|
+
schemaSDL: string;
|
|
10514
|
+
constructor(data?: PartialMessage<GetProposalResponse_CurrentSubgraph>);
|
|
10515
|
+
static readonly runtime: typeof proto3;
|
|
10516
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalResponse.CurrentSubgraph";
|
|
10517
|
+
static readonly fields: FieldList;
|
|
10518
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalResponse_CurrentSubgraph;
|
|
10519
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalResponse_CurrentSubgraph;
|
|
10520
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalResponse_CurrentSubgraph;
|
|
10521
|
+
static equals(a: GetProposalResponse_CurrentSubgraph | PlainMessage<GetProposalResponse_CurrentSubgraph> | undefined, b: GetProposalResponse_CurrentSubgraph | PlainMessage<GetProposalResponse_CurrentSubgraph> | undefined): boolean;
|
|
10522
|
+
}
|
|
10523
|
+
/**
|
|
10524
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalsByFederatedGraphRequest
|
|
10525
|
+
*/
|
|
10526
|
+
export declare class GetProposalsByFederatedGraphRequest extends Message<GetProposalsByFederatedGraphRequest> {
|
|
10527
|
+
/**
|
|
10528
|
+
* @generated from field: string federatedGraphName = 1;
|
|
10529
|
+
*/
|
|
10530
|
+
federatedGraphName: string;
|
|
10531
|
+
/**
|
|
10532
|
+
* @generated from field: string namespace = 2;
|
|
10533
|
+
*/
|
|
10534
|
+
namespace: string;
|
|
10535
|
+
/**
|
|
10536
|
+
* @generated from field: string startDate = 3;
|
|
10537
|
+
*/
|
|
10538
|
+
startDate: string;
|
|
10539
|
+
/**
|
|
10540
|
+
* @generated from field: string endDate = 4;
|
|
10541
|
+
*/
|
|
10542
|
+
endDate: string;
|
|
10543
|
+
/**
|
|
10544
|
+
* @generated from field: int32 limit = 5;
|
|
10545
|
+
*/
|
|
10546
|
+
limit: number;
|
|
10547
|
+
/**
|
|
10548
|
+
* @generated from field: int32 offset = 6;
|
|
10549
|
+
*/
|
|
10550
|
+
offset: number;
|
|
10551
|
+
constructor(data?: PartialMessage<GetProposalsByFederatedGraphRequest>);
|
|
10552
|
+
static readonly runtime: typeof proto3;
|
|
10553
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalsByFederatedGraphRequest";
|
|
10554
|
+
static readonly fields: FieldList;
|
|
10555
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalsByFederatedGraphRequest;
|
|
10556
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalsByFederatedGraphRequest;
|
|
10557
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalsByFederatedGraphRequest;
|
|
10558
|
+
static equals(a: GetProposalsByFederatedGraphRequest | PlainMessage<GetProposalsByFederatedGraphRequest> | undefined, b: GetProposalsByFederatedGraphRequest | PlainMessage<GetProposalsByFederatedGraphRequest> | undefined): boolean;
|
|
10559
|
+
}
|
|
10560
|
+
/**
|
|
10561
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalsByFederatedGraphResponse
|
|
10562
|
+
*/
|
|
10563
|
+
export declare class GetProposalsByFederatedGraphResponse extends Message<GetProposalsByFederatedGraphResponse> {
|
|
10564
|
+
/**
|
|
10565
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10566
|
+
*/
|
|
10567
|
+
response?: Response;
|
|
10568
|
+
/**
|
|
10569
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Proposal proposals = 2;
|
|
10570
|
+
*/
|
|
10571
|
+
proposals: Proposal[];
|
|
10572
|
+
/**
|
|
10573
|
+
* @generated from field: bool isProposalsEnabled = 3;
|
|
10574
|
+
*/
|
|
10575
|
+
isProposalsEnabled: boolean;
|
|
10576
|
+
constructor(data?: PartialMessage<GetProposalsByFederatedGraphResponse>);
|
|
10577
|
+
static readonly runtime: typeof proto3;
|
|
10578
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalsByFederatedGraphResponse";
|
|
10579
|
+
static readonly fields: FieldList;
|
|
10580
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalsByFederatedGraphResponse;
|
|
10581
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalsByFederatedGraphResponse;
|
|
10582
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalsByFederatedGraphResponse;
|
|
10583
|
+
static equals(a: GetProposalsByFederatedGraphResponse | PlainMessage<GetProposalsByFederatedGraphResponse> | undefined, b: GetProposalsByFederatedGraphResponse | PlainMessage<GetProposalsByFederatedGraphResponse> | undefined): boolean;
|
|
10584
|
+
}
|
|
10585
|
+
/**
|
|
10586
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalChecksRequest
|
|
10587
|
+
*/
|
|
10588
|
+
export declare class GetProposalChecksRequest extends Message<GetProposalChecksRequest> {
|
|
10589
|
+
/**
|
|
10590
|
+
* @generated from field: string proposalId = 1;
|
|
10591
|
+
*/
|
|
10592
|
+
proposalId: string;
|
|
10593
|
+
/**
|
|
10594
|
+
* @generated from field: int32 limit = 2;
|
|
10595
|
+
*/
|
|
10596
|
+
limit: number;
|
|
10597
|
+
/**
|
|
10598
|
+
* @generated from field: int32 offset = 3;
|
|
10599
|
+
*/
|
|
10600
|
+
offset: number;
|
|
10601
|
+
/**
|
|
10602
|
+
* @generated from field: string startDate = 4;
|
|
10603
|
+
*/
|
|
10604
|
+
startDate: string;
|
|
10605
|
+
/**
|
|
10606
|
+
* @generated from field: string endDate = 5;
|
|
10607
|
+
*/
|
|
10608
|
+
endDate: string;
|
|
10609
|
+
constructor(data?: PartialMessage<GetProposalChecksRequest>);
|
|
10610
|
+
static readonly runtime: typeof proto3;
|
|
10611
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalChecksRequest";
|
|
10612
|
+
static readonly fields: FieldList;
|
|
10613
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalChecksRequest;
|
|
10614
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalChecksRequest;
|
|
10615
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalChecksRequest;
|
|
10616
|
+
static equals(a: GetProposalChecksRequest | PlainMessage<GetProposalChecksRequest> | undefined, b: GetProposalChecksRequest | PlainMessage<GetProposalChecksRequest> | undefined): boolean;
|
|
10617
|
+
}
|
|
10618
|
+
/**
|
|
10619
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalChecksResponse
|
|
10620
|
+
*/
|
|
10621
|
+
export declare class GetProposalChecksResponse extends Message<GetProposalChecksResponse> {
|
|
10622
|
+
/**
|
|
10623
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10624
|
+
*/
|
|
10625
|
+
response?: Response;
|
|
10626
|
+
/**
|
|
10627
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SchemaCheck checks = 2;
|
|
10628
|
+
*/
|
|
10629
|
+
checks: SchemaCheck[];
|
|
10630
|
+
/**
|
|
10631
|
+
* @generated from field: int32 totalChecksCount = 3;
|
|
10632
|
+
*/
|
|
10633
|
+
totalChecksCount: number;
|
|
10634
|
+
constructor(data?: PartialMessage<GetProposalChecksResponse>);
|
|
10635
|
+
static readonly runtime: typeof proto3;
|
|
10636
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalChecksResponse";
|
|
10637
|
+
static readonly fields: FieldList;
|
|
10638
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalChecksResponse;
|
|
10639
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalChecksResponse;
|
|
10640
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalChecksResponse;
|
|
10641
|
+
static equals(a: GetProposalChecksResponse | PlainMessage<GetProposalChecksResponse> | undefined, b: GetProposalChecksResponse | PlainMessage<GetProposalChecksResponse> | undefined): boolean;
|
|
10642
|
+
}
|
|
10643
|
+
/**
|
|
10644
|
+
* @generated from message wg.cosmo.platform.v1.UpdateProposalRequest
|
|
10645
|
+
*/
|
|
10646
|
+
export declare class UpdateProposalRequest extends Message<UpdateProposalRequest> {
|
|
10647
|
+
/**
|
|
10648
|
+
* @generated from field: string proposalName = 1;
|
|
10649
|
+
*/
|
|
10650
|
+
proposalName: string;
|
|
10651
|
+
/**
|
|
10652
|
+
* @generated from field: string federatedGraphName = 2;
|
|
10653
|
+
*/
|
|
10654
|
+
federatedGraphName: string;
|
|
10655
|
+
/**
|
|
10656
|
+
* @generated from oneof wg.cosmo.platform.v1.UpdateProposalRequest.update_action
|
|
10657
|
+
*/
|
|
10658
|
+
updateAction: {
|
|
10659
|
+
/**
|
|
10660
|
+
* @generated from field: string state = 3;
|
|
10661
|
+
*/
|
|
10662
|
+
value: string;
|
|
10663
|
+
case: "state";
|
|
10664
|
+
} | {
|
|
10665
|
+
/**
|
|
10666
|
+
* @generated from field: wg.cosmo.platform.v1.UpdateProposalRequest.UpdateProposalSubgraphs updatedSubgraphs = 4;
|
|
10667
|
+
*/
|
|
10668
|
+
value: UpdateProposalRequest_UpdateProposalSubgraphs;
|
|
10669
|
+
case: "updatedSubgraphs";
|
|
10670
|
+
} | {
|
|
10671
|
+
case: undefined;
|
|
10672
|
+
value?: undefined;
|
|
10673
|
+
};
|
|
10674
|
+
/**
|
|
10675
|
+
* @generated from field: string namespace = 5;
|
|
10676
|
+
*/
|
|
10677
|
+
namespace: string;
|
|
10678
|
+
constructor(data?: PartialMessage<UpdateProposalRequest>);
|
|
10679
|
+
static readonly runtime: typeof proto3;
|
|
10680
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateProposalRequest";
|
|
10681
|
+
static readonly fields: FieldList;
|
|
10682
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateProposalRequest;
|
|
10683
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateProposalRequest;
|
|
10684
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateProposalRequest;
|
|
10685
|
+
static equals(a: UpdateProposalRequest | PlainMessage<UpdateProposalRequest> | undefined, b: UpdateProposalRequest | PlainMessage<UpdateProposalRequest> | undefined): boolean;
|
|
10686
|
+
}
|
|
10687
|
+
/**
|
|
10688
|
+
* @generated from message wg.cosmo.platform.v1.UpdateProposalRequest.UpdateProposalSubgraphs
|
|
10689
|
+
*/
|
|
10690
|
+
export declare class UpdateProposalRequest_UpdateProposalSubgraphs extends Message<UpdateProposalRequest_UpdateProposalSubgraphs> {
|
|
10691
|
+
/**
|
|
10692
|
+
* @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 1;
|
|
10693
|
+
*/
|
|
10694
|
+
subgraphs: ProposalSubgraph[];
|
|
10695
|
+
constructor(data?: PartialMessage<UpdateProposalRequest_UpdateProposalSubgraphs>);
|
|
10696
|
+
static readonly runtime: typeof proto3;
|
|
10697
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateProposalRequest.UpdateProposalSubgraphs";
|
|
10698
|
+
static readonly fields: FieldList;
|
|
10699
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateProposalRequest_UpdateProposalSubgraphs;
|
|
10700
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateProposalRequest_UpdateProposalSubgraphs;
|
|
10701
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateProposalRequest_UpdateProposalSubgraphs;
|
|
10702
|
+
static equals(a: UpdateProposalRequest_UpdateProposalSubgraphs | PlainMessage<UpdateProposalRequest_UpdateProposalSubgraphs> | undefined, b: UpdateProposalRequest_UpdateProposalSubgraphs | PlainMessage<UpdateProposalRequest_UpdateProposalSubgraphs> | undefined): boolean;
|
|
10703
|
+
}
|
|
10704
|
+
/**
|
|
10705
|
+
* @generated from message wg.cosmo.platform.v1.UpdateProposalResponse
|
|
10706
|
+
*/
|
|
10707
|
+
export declare class UpdateProposalResponse extends Message<UpdateProposalResponse> {
|
|
10708
|
+
/**
|
|
10709
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10710
|
+
*/
|
|
10711
|
+
response?: Response;
|
|
10712
|
+
/**
|
|
10713
|
+
* @generated from field: string checkId = 2;
|
|
10714
|
+
*/
|
|
10715
|
+
checkId: string;
|
|
10716
|
+
/**
|
|
10717
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SchemaChange breakingChanges = 3;
|
|
10718
|
+
*/
|
|
10719
|
+
breakingChanges: SchemaChange[];
|
|
10720
|
+
/**
|
|
10721
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SchemaChange nonBreakingChanges = 4;
|
|
10722
|
+
*/
|
|
10723
|
+
nonBreakingChanges: SchemaChange[];
|
|
10724
|
+
/**
|
|
10725
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionError compositionErrors = 5;
|
|
10726
|
+
*/
|
|
10727
|
+
compositionErrors: CompositionError[];
|
|
10728
|
+
/**
|
|
10729
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 6;
|
|
10730
|
+
*/
|
|
10731
|
+
compositionWarnings: CompositionWarning[];
|
|
10732
|
+
/**
|
|
10733
|
+
* @generated from field: repeated wg.cosmo.platform.v1.LintIssue lintErrors = 7;
|
|
10734
|
+
*/
|
|
10735
|
+
lintErrors: LintIssue[];
|
|
10736
|
+
/**
|
|
10737
|
+
* @generated from field: repeated wg.cosmo.platform.v1.LintIssue lintWarnings = 8;
|
|
10738
|
+
*/
|
|
10739
|
+
lintWarnings: LintIssue[];
|
|
10740
|
+
/**
|
|
10741
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneErrors = 9;
|
|
10742
|
+
*/
|
|
10743
|
+
graphPruneErrors: GraphPruningIssue[];
|
|
10744
|
+
/**
|
|
10745
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneWarnings = 10;
|
|
10746
|
+
*/
|
|
10747
|
+
graphPruneWarnings: GraphPruningIssue[];
|
|
10748
|
+
/**
|
|
10749
|
+
* @generated from field: wg.cosmo.platform.v1.CheckOperationUsageStats operationUsageStats = 11;
|
|
10750
|
+
*/
|
|
10751
|
+
operationUsageStats?: CheckOperationUsageStats;
|
|
10752
|
+
/**
|
|
10753
|
+
* @generated from field: bool lintingSkipped = 12;
|
|
10754
|
+
*/
|
|
10755
|
+
lintingSkipped: boolean;
|
|
10756
|
+
/**
|
|
10757
|
+
* @generated from field: bool graphPruningSkipped = 13;
|
|
10758
|
+
*/
|
|
10759
|
+
graphPruningSkipped: boolean;
|
|
10760
|
+
/**
|
|
10761
|
+
* @generated from field: string checkUrl = 14;
|
|
10762
|
+
*/
|
|
10763
|
+
checkUrl: string;
|
|
10764
|
+
constructor(data?: PartialMessage<UpdateProposalResponse>);
|
|
10765
|
+
static readonly runtime: typeof proto3;
|
|
10766
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateProposalResponse";
|
|
10767
|
+
static readonly fields: FieldList;
|
|
10768
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateProposalResponse;
|
|
10769
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateProposalResponse;
|
|
10770
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateProposalResponse;
|
|
10771
|
+
static equals(a: UpdateProposalResponse | PlainMessage<UpdateProposalResponse> | undefined, b: UpdateProposalResponse | PlainMessage<UpdateProposalResponse> | undefined): boolean;
|
|
10772
|
+
}
|
|
10773
|
+
/**
|
|
10774
|
+
* @generated from message wg.cosmo.platform.v1.EnableProposalsForNamespaceRequest
|
|
10775
|
+
*/
|
|
10776
|
+
export declare class EnableProposalsForNamespaceRequest extends Message<EnableProposalsForNamespaceRequest> {
|
|
10777
|
+
/**
|
|
10778
|
+
* @generated from field: string namespace = 1;
|
|
10779
|
+
*/
|
|
10780
|
+
namespace: string;
|
|
10781
|
+
/**
|
|
10782
|
+
* @generated from field: bool enableProposals = 2;
|
|
10783
|
+
*/
|
|
10784
|
+
enableProposals: boolean;
|
|
10785
|
+
constructor(data?: PartialMessage<EnableProposalsForNamespaceRequest>);
|
|
10786
|
+
static readonly runtime: typeof proto3;
|
|
10787
|
+
static readonly typeName = "wg.cosmo.platform.v1.EnableProposalsForNamespaceRequest";
|
|
10788
|
+
static readonly fields: FieldList;
|
|
10789
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnableProposalsForNamespaceRequest;
|
|
10790
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnableProposalsForNamespaceRequest;
|
|
10791
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnableProposalsForNamespaceRequest;
|
|
10792
|
+
static equals(a: EnableProposalsForNamespaceRequest | PlainMessage<EnableProposalsForNamespaceRequest> | undefined, b: EnableProposalsForNamespaceRequest | PlainMessage<EnableProposalsForNamespaceRequest> | undefined): boolean;
|
|
10793
|
+
}
|
|
10794
|
+
/**
|
|
10795
|
+
* @generated from message wg.cosmo.platform.v1.EnableProposalsForNamespaceResponse
|
|
10796
|
+
*/
|
|
10797
|
+
export declare class EnableProposalsForNamespaceResponse extends Message<EnableProposalsForNamespaceResponse> {
|
|
10798
|
+
/**
|
|
10799
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10800
|
+
*/
|
|
10801
|
+
response?: Response;
|
|
10802
|
+
constructor(data?: PartialMessage<EnableProposalsForNamespaceResponse>);
|
|
10803
|
+
static readonly runtime: typeof proto3;
|
|
10804
|
+
static readonly typeName = "wg.cosmo.platform.v1.EnableProposalsForNamespaceResponse";
|
|
10805
|
+
static readonly fields: FieldList;
|
|
10806
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnableProposalsForNamespaceResponse;
|
|
10807
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnableProposalsForNamespaceResponse;
|
|
10808
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnableProposalsForNamespaceResponse;
|
|
10809
|
+
static equals(a: EnableProposalsForNamespaceResponse | PlainMessage<EnableProposalsForNamespaceResponse> | undefined, b: EnableProposalsForNamespaceResponse | PlainMessage<EnableProposalsForNamespaceResponse> | undefined): boolean;
|
|
10810
|
+
}
|
|
10811
|
+
/**
|
|
10812
|
+
* @generated from message wg.cosmo.platform.v1.ConfigureNamespaceProposalConfigRequest
|
|
10813
|
+
*/
|
|
10814
|
+
export declare class ConfigureNamespaceProposalConfigRequest extends Message<ConfigureNamespaceProposalConfigRequest> {
|
|
10815
|
+
/**
|
|
10816
|
+
* @generated from field: string namespace = 1;
|
|
10817
|
+
*/
|
|
10818
|
+
namespace: string;
|
|
10819
|
+
/**
|
|
10820
|
+
* @generated from field: wg.cosmo.platform.v1.LintSeverity checkSeverityLevel = 2;
|
|
10821
|
+
*/
|
|
10822
|
+
checkSeverityLevel: LintSeverity;
|
|
10823
|
+
/**
|
|
10824
|
+
* @generated from field: wg.cosmo.platform.v1.LintSeverity publishSeverityLevel = 3;
|
|
10825
|
+
*/
|
|
10826
|
+
publishSeverityLevel: LintSeverity;
|
|
10827
|
+
constructor(data?: PartialMessage<ConfigureNamespaceProposalConfigRequest>);
|
|
10828
|
+
static readonly runtime: typeof proto3;
|
|
10829
|
+
static readonly typeName = "wg.cosmo.platform.v1.ConfigureNamespaceProposalConfigRequest";
|
|
10830
|
+
static readonly fields: FieldList;
|
|
10831
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfigureNamespaceProposalConfigRequest;
|
|
10832
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfigureNamespaceProposalConfigRequest;
|
|
10833
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ConfigureNamespaceProposalConfigRequest;
|
|
10834
|
+
static equals(a: ConfigureNamespaceProposalConfigRequest | PlainMessage<ConfigureNamespaceProposalConfigRequest> | undefined, b: ConfigureNamespaceProposalConfigRequest | PlainMessage<ConfigureNamespaceProposalConfigRequest> | undefined): boolean;
|
|
10835
|
+
}
|
|
10836
|
+
/**
|
|
10837
|
+
* @generated from message wg.cosmo.platform.v1.ConfigureNamespaceProposalConfigResponse
|
|
10838
|
+
*/
|
|
10839
|
+
export declare class ConfigureNamespaceProposalConfigResponse extends Message<ConfigureNamespaceProposalConfigResponse> {
|
|
10840
|
+
/**
|
|
10841
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10842
|
+
*/
|
|
10843
|
+
response?: Response;
|
|
10844
|
+
constructor(data?: PartialMessage<ConfigureNamespaceProposalConfigResponse>);
|
|
10845
|
+
static readonly runtime: typeof proto3;
|
|
10846
|
+
static readonly typeName = "wg.cosmo.platform.v1.ConfigureNamespaceProposalConfigResponse";
|
|
10847
|
+
static readonly fields: FieldList;
|
|
10848
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfigureNamespaceProposalConfigResponse;
|
|
10849
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfigureNamespaceProposalConfigResponse;
|
|
10850
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ConfigureNamespaceProposalConfigResponse;
|
|
10851
|
+
static equals(a: ConfigureNamespaceProposalConfigResponse | PlainMessage<ConfigureNamespaceProposalConfigResponse> | undefined, b: ConfigureNamespaceProposalConfigResponse | PlainMessage<ConfigureNamespaceProposalConfigResponse> | undefined): boolean;
|
|
10852
|
+
}
|
|
10853
|
+
/**
|
|
10854
|
+
* @generated from message wg.cosmo.platform.v1.GetNamespaceProposalConfigRequest
|
|
10855
|
+
*/
|
|
10856
|
+
export declare class GetNamespaceProposalConfigRequest extends Message<GetNamespaceProposalConfigRequest> {
|
|
10857
|
+
/**
|
|
10858
|
+
* @generated from field: string namespace = 1;
|
|
10859
|
+
*/
|
|
10860
|
+
namespace: string;
|
|
10861
|
+
constructor(data?: PartialMessage<GetNamespaceProposalConfigRequest>);
|
|
10862
|
+
static readonly runtime: typeof proto3;
|
|
10863
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetNamespaceProposalConfigRequest";
|
|
10864
|
+
static readonly fields: FieldList;
|
|
10865
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetNamespaceProposalConfigRequest;
|
|
10866
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetNamespaceProposalConfigRequest;
|
|
10867
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetNamespaceProposalConfigRequest;
|
|
10868
|
+
static equals(a: GetNamespaceProposalConfigRequest | PlainMessage<GetNamespaceProposalConfigRequest> | undefined, b: GetNamespaceProposalConfigRequest | PlainMessage<GetNamespaceProposalConfigRequest> | undefined): boolean;
|
|
10869
|
+
}
|
|
10870
|
+
/**
|
|
10871
|
+
* @generated from message wg.cosmo.platform.v1.GetNamespaceProposalConfigResponse
|
|
10872
|
+
*/
|
|
10873
|
+
export declare class GetNamespaceProposalConfigResponse extends Message<GetNamespaceProposalConfigResponse> {
|
|
10874
|
+
/**
|
|
10875
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10876
|
+
*/
|
|
10877
|
+
response?: Response;
|
|
10878
|
+
/**
|
|
10879
|
+
* @generated from field: bool enabled = 2;
|
|
10880
|
+
*/
|
|
10881
|
+
enabled: boolean;
|
|
10882
|
+
/**
|
|
10883
|
+
* @generated from field: wg.cosmo.platform.v1.LintSeverity checkSeverityLevel = 3;
|
|
10884
|
+
*/
|
|
10885
|
+
checkSeverityLevel: LintSeverity;
|
|
10886
|
+
/**
|
|
10887
|
+
* @generated from field: wg.cosmo.platform.v1.LintSeverity publishSeverityLevel = 4;
|
|
10888
|
+
*/
|
|
10889
|
+
publishSeverityLevel: LintSeverity;
|
|
10890
|
+
constructor(data?: PartialMessage<GetNamespaceProposalConfigResponse>);
|
|
10891
|
+
static readonly runtime: typeof proto3;
|
|
10892
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetNamespaceProposalConfigResponse";
|
|
10893
|
+
static readonly fields: FieldList;
|
|
10894
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetNamespaceProposalConfigResponse;
|
|
10895
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetNamespaceProposalConfigResponse;
|
|
10896
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetNamespaceProposalConfigResponse;
|
|
10897
|
+
static equals(a: GetNamespaceProposalConfigResponse | PlainMessage<GetNamespaceProposalConfigResponse> | undefined, b: GetNamespaceProposalConfigResponse | PlainMessage<GetNamespaceProposalConfigResponse> | undefined): boolean;
|
|
10898
|
+
}
|