@wundergraph/cosmo-connect 0.101.0 → 0.102.1
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 +122 -14
- package/dist/platform/v1/platform-PlatformService_connectquery.js +122 -14
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +90 -10
- package/dist/platform/v1/platform_connect.js +90 -10
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +623 -75
- package/dist/platform/v1/platform_pb.js +924 -108
- 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";
|
|
@@ -1177,6 +1181,10 @@ export declare class CheckSubgraphSchemaResponse extends Message<CheckSubgraphSc
|
|
|
1177
1181
|
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 13;
|
|
1178
1182
|
*/
|
|
1179
1183
|
compositionWarnings: CompositionWarning[];
|
|
1184
|
+
/**
|
|
1185
|
+
* @generated from field: optional string proposalMatchMessage = 14;
|
|
1186
|
+
*/
|
|
1187
|
+
proposalMatchMessage?: string;
|
|
1180
1188
|
constructor(data?: PartialMessage<CheckSubgraphSchemaResponse>);
|
|
1181
1189
|
static readonly runtime: typeof proto3;
|
|
1182
1190
|
static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaResponse";
|
|
@@ -1277,6 +1285,10 @@ export declare class DeleteFederatedSubgraphResponse extends Message<DeleteFeder
|
|
|
1277
1285
|
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
1278
1286
|
*/
|
|
1279
1287
|
compositionWarnings: CompositionWarning[];
|
|
1288
|
+
/**
|
|
1289
|
+
* @generated from field: optional string proposalMatchMessage = 5;
|
|
1290
|
+
*/
|
|
1291
|
+
proposalMatchMessage?: string;
|
|
1280
1292
|
constructor(data?: PartialMessage<DeleteFederatedSubgraphResponse>);
|
|
1281
1293
|
static readonly runtime: typeof proto3;
|
|
1282
1294
|
static readonly typeName = "wg.cosmo.platform.v1.DeleteFederatedSubgraphResponse";
|
|
@@ -2039,6 +2051,22 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
|
|
|
2039
2051
|
* @generated from field: repeated wg.cosmo.platform.v1.SchemaCheck.CheckedSubgraph checkedSubgraphs = 17;
|
|
2040
2052
|
*/
|
|
2041
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;
|
|
2042
2070
|
constructor(data?: PartialMessage<SchemaCheck>);
|
|
2043
2071
|
static readonly runtime: typeof proto3;
|
|
2044
2072
|
static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck";
|
|
@@ -2126,10 +2154,6 @@ export declare class GetChecksByFederatedGraphNameResponse extends Message<GetCh
|
|
|
2126
2154
|
* @generated from field: int32 checksCountBasedOnDateRange = 3;
|
|
2127
2155
|
*/
|
|
2128
2156
|
checksCountBasedOnDateRange: number;
|
|
2129
|
-
/**
|
|
2130
|
-
* @generated from field: int32 totalChecksCount = 4;
|
|
2131
|
-
*/
|
|
2132
|
-
totalChecksCount: number;
|
|
2133
2157
|
constructor(data?: PartialMessage<GetChecksByFederatedGraphNameResponse>);
|
|
2134
2158
|
static readonly runtime: typeof proto3;
|
|
2135
2159
|
static readonly typeName = "wg.cosmo.platform.v1.GetChecksByFederatedGraphNameResponse";
|
|
@@ -2229,6 +2253,22 @@ export declare class GetCheckSummaryResponse extends Message<GetCheckSummaryResp
|
|
|
2229
2253
|
* @generated from field: repeated string compositionWarnings = 11;
|
|
2230
2254
|
*/
|
|
2231
2255
|
compositionWarnings: string[];
|
|
2256
|
+
/**
|
|
2257
|
+
* @generated from field: optional string proposalId = 12;
|
|
2258
|
+
*/
|
|
2259
|
+
proposalId?: string;
|
|
2260
|
+
/**
|
|
2261
|
+
* @generated from field: optional string proposalName = 13;
|
|
2262
|
+
*/
|
|
2263
|
+
proposalName?: string;
|
|
2264
|
+
/**
|
|
2265
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GetCheckSummaryResponse.ProposalSchemaMatch proposalMatches = 14;
|
|
2266
|
+
*/
|
|
2267
|
+
proposalMatches: GetCheckSummaryResponse_ProposalSchemaMatch[];
|
|
2268
|
+
/**
|
|
2269
|
+
* @generated from field: bool isProposalsEnabled = 15;
|
|
2270
|
+
*/
|
|
2271
|
+
isProposalsEnabled: boolean;
|
|
2232
2272
|
constructor(data?: PartialMessage<GetCheckSummaryResponse>);
|
|
2233
2273
|
static readonly runtime: typeof proto3;
|
|
2234
2274
|
static readonly typeName = "wg.cosmo.platform.v1.GetCheckSummaryResponse";
|
|
@@ -2267,6 +2307,31 @@ export declare class GetCheckSummaryResponse_AffectedGraph extends Message<GetCh
|
|
|
2267
2307
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCheckSummaryResponse_AffectedGraph;
|
|
2268
2308
|
static equals(a: GetCheckSummaryResponse_AffectedGraph | PlainMessage<GetCheckSummaryResponse_AffectedGraph> | undefined, b: GetCheckSummaryResponse_AffectedGraph | PlainMessage<GetCheckSummaryResponse_AffectedGraph> | undefined): boolean;
|
|
2269
2309
|
}
|
|
2310
|
+
/**
|
|
2311
|
+
* @generated from message wg.cosmo.platform.v1.GetCheckSummaryResponse.ProposalSchemaMatch
|
|
2312
|
+
*/
|
|
2313
|
+
export declare class GetCheckSummaryResponse_ProposalSchemaMatch extends Message<GetCheckSummaryResponse_ProposalSchemaMatch> {
|
|
2314
|
+
/**
|
|
2315
|
+
* @generated from field: string proposalId = 1;
|
|
2316
|
+
*/
|
|
2317
|
+
proposalId: string;
|
|
2318
|
+
/**
|
|
2319
|
+
* @generated from field: string proposalName = 2;
|
|
2320
|
+
*/
|
|
2321
|
+
proposalName: string;
|
|
2322
|
+
/**
|
|
2323
|
+
* @generated from field: bool proposalMatch = 3;
|
|
2324
|
+
*/
|
|
2325
|
+
proposalMatch: boolean;
|
|
2326
|
+
constructor(data?: PartialMessage<GetCheckSummaryResponse_ProposalSchemaMatch>);
|
|
2327
|
+
static readonly runtime: typeof proto3;
|
|
2328
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetCheckSummaryResponse.ProposalSchemaMatch";
|
|
2329
|
+
static readonly fields: FieldList;
|
|
2330
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCheckSummaryResponse_ProposalSchemaMatch;
|
|
2331
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCheckSummaryResponse_ProposalSchemaMatch;
|
|
2332
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCheckSummaryResponse_ProposalSchemaMatch;
|
|
2333
|
+
static equals(a: GetCheckSummaryResponse_ProposalSchemaMatch | PlainMessage<GetCheckSummaryResponse_ProposalSchemaMatch> | undefined, b: GetCheckSummaryResponse_ProposalSchemaMatch | PlainMessage<GetCheckSummaryResponse_ProposalSchemaMatch> | undefined): boolean;
|
|
2334
|
+
}
|
|
2270
2335
|
/**
|
|
2271
2336
|
* @generated from message wg.cosmo.platform.v1.GetCheckOperationsRequest
|
|
2272
2337
|
*/
|
|
@@ -10159,84 +10224,483 @@ export declare class SetGraphRouterCompatibilityVersionResponse extends Message<
|
|
|
10159
10224
|
static equals(a: SetGraphRouterCompatibilityVersionResponse | PlainMessage<SetGraphRouterCompatibilityVersionResponse> | undefined, b: SetGraphRouterCompatibilityVersionResponse | PlainMessage<SetGraphRouterCompatibilityVersionResponse> | undefined): boolean;
|
|
10160
10225
|
}
|
|
10161
10226
|
/**
|
|
10162
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
10227
|
+
* @generated from message wg.cosmo.platform.v1.GetProposedSchemaOfCheckedSubgraphRequest
|
|
10163
10228
|
*/
|
|
10164
|
-
export declare class
|
|
10229
|
+
export declare class GetProposedSchemaOfCheckedSubgraphRequest extends Message<GetProposedSchemaOfCheckedSubgraphRequest> {
|
|
10165
10230
|
/**
|
|
10166
|
-
* @generated from field: string
|
|
10231
|
+
* @generated from field: string checkId = 1;
|
|
10167
10232
|
*/
|
|
10168
|
-
|
|
10233
|
+
checkId: string;
|
|
10169
10234
|
/**
|
|
10170
|
-
* @generated from field:
|
|
10235
|
+
* @generated from field: string checkedSubgraphId = 2;
|
|
10171
10236
|
*/
|
|
10172
|
-
|
|
10237
|
+
checkedSubgraphId: string;
|
|
10238
|
+
constructor(data?: PartialMessage<GetProposedSchemaOfCheckedSubgraphRequest>);
|
|
10239
|
+
static readonly runtime: typeof proto3;
|
|
10240
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposedSchemaOfCheckedSubgraphRequest";
|
|
10241
|
+
static readonly fields: FieldList;
|
|
10242
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposedSchemaOfCheckedSubgraphRequest;
|
|
10243
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposedSchemaOfCheckedSubgraphRequest;
|
|
10244
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposedSchemaOfCheckedSubgraphRequest;
|
|
10245
|
+
static equals(a: GetProposedSchemaOfCheckedSubgraphRequest | PlainMessage<GetProposedSchemaOfCheckedSubgraphRequest> | undefined, b: GetProposedSchemaOfCheckedSubgraphRequest | PlainMessage<GetProposedSchemaOfCheckedSubgraphRequest> | undefined): boolean;
|
|
10246
|
+
}
|
|
10247
|
+
/**
|
|
10248
|
+
* @generated from message wg.cosmo.platform.v1.GetProposedSchemaOfCheckedSubgraphResponse
|
|
10249
|
+
*/
|
|
10250
|
+
export declare class GetProposedSchemaOfCheckedSubgraphResponse extends Message<GetProposedSchemaOfCheckedSubgraphResponse> {
|
|
10173
10251
|
/**
|
|
10174
|
-
* @generated from field: wg.cosmo.platform.v1.
|
|
10252
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10175
10253
|
*/
|
|
10176
|
-
|
|
10254
|
+
response?: Response;
|
|
10177
10255
|
/**
|
|
10178
|
-
* @generated from field:
|
|
10256
|
+
* @generated from field: string proposedSchema = 2;
|
|
10179
10257
|
*/
|
|
10180
|
-
|
|
10181
|
-
constructor(data?: PartialMessage<
|
|
10258
|
+
proposedSchema: string;
|
|
10259
|
+
constructor(data?: PartialMessage<GetProposedSchemaOfCheckedSubgraphResponse>);
|
|
10182
10260
|
static readonly runtime: typeof proto3;
|
|
10183
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
10261
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposedSchemaOfCheckedSubgraphResponse";
|
|
10184
10262
|
static readonly fields: FieldList;
|
|
10185
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10186
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10187
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10188
|
-
static equals(a:
|
|
10263
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposedSchemaOfCheckedSubgraphResponse;
|
|
10264
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposedSchemaOfCheckedSubgraphResponse;
|
|
10265
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposedSchemaOfCheckedSubgraphResponse;
|
|
10266
|
+
static equals(a: GetProposedSchemaOfCheckedSubgraphResponse | PlainMessage<GetProposedSchemaOfCheckedSubgraphResponse> | undefined, b: GetProposedSchemaOfCheckedSubgraphResponse | PlainMessage<GetProposedSchemaOfCheckedSubgraphResponse> | undefined): boolean;
|
|
10189
10267
|
}
|
|
10190
10268
|
/**
|
|
10191
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
10269
|
+
* @generated from message wg.cosmo.platform.v1.Proposal
|
|
10192
10270
|
*/
|
|
10193
|
-
export declare class
|
|
10271
|
+
export declare class Proposal extends Message<Proposal> {
|
|
10272
|
+
/**
|
|
10273
|
+
* @generated from field: string id = 1;
|
|
10274
|
+
*/
|
|
10275
|
+
id: string;
|
|
10276
|
+
/**
|
|
10277
|
+
* @generated from field: string name = 2;
|
|
10278
|
+
*/
|
|
10279
|
+
name: string;
|
|
10280
|
+
/**
|
|
10281
|
+
* @generated from field: string createdAt = 3;
|
|
10282
|
+
*/
|
|
10283
|
+
createdAt: string;
|
|
10284
|
+
/**
|
|
10285
|
+
* @generated from field: string createdByEmail = 4;
|
|
10286
|
+
*/
|
|
10287
|
+
createdByEmail: string;
|
|
10288
|
+
/**
|
|
10289
|
+
* @generated from field: string state = 5;
|
|
10290
|
+
*/
|
|
10291
|
+
state: string;
|
|
10292
|
+
/**
|
|
10293
|
+
* @generated from field: string federatedGraphId = 6;
|
|
10294
|
+
*/
|
|
10295
|
+
federatedGraphId: string;
|
|
10296
|
+
/**
|
|
10297
|
+
* @generated from field: string federatedGraphName = 7;
|
|
10298
|
+
*/
|
|
10299
|
+
federatedGraphName: string;
|
|
10300
|
+
/**
|
|
10301
|
+
* @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 8;
|
|
10302
|
+
*/
|
|
10303
|
+
subgraphs: ProposalSubgraph[];
|
|
10304
|
+
/**
|
|
10305
|
+
* @generated from field: bool latestCheckSuccess = 9;
|
|
10306
|
+
*/
|
|
10307
|
+
latestCheckSuccess: boolean;
|
|
10308
|
+
/**
|
|
10309
|
+
* @generated from field: string latestCheckId = 10;
|
|
10310
|
+
*/
|
|
10311
|
+
latestCheckId: string;
|
|
10312
|
+
constructor(data?: PartialMessage<Proposal>);
|
|
10313
|
+
static readonly runtime: typeof proto3;
|
|
10314
|
+
static readonly typeName = "wg.cosmo.platform.v1.Proposal";
|
|
10315
|
+
static readonly fields: FieldList;
|
|
10316
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Proposal;
|
|
10317
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Proposal;
|
|
10318
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Proposal;
|
|
10319
|
+
static equals(a: Proposal | PlainMessage<Proposal> | undefined, b: Proposal | PlainMessage<Proposal> | undefined): boolean;
|
|
10320
|
+
}
|
|
10321
|
+
/**
|
|
10322
|
+
* @generated from message wg.cosmo.platform.v1.ProposalSubgraph
|
|
10323
|
+
*/
|
|
10324
|
+
export declare class ProposalSubgraph extends Message<ProposalSubgraph> {
|
|
10194
10325
|
/**
|
|
10195
10326
|
* @generated from field: string name = 1;
|
|
10196
10327
|
*/
|
|
10197
10328
|
name: string;
|
|
10198
10329
|
/**
|
|
10199
|
-
* @generated from field: string
|
|
10330
|
+
* @generated from field: string schemaSDL = 2;
|
|
10200
10331
|
*/
|
|
10201
|
-
|
|
10332
|
+
schemaSDL: string;
|
|
10202
10333
|
/**
|
|
10203
|
-
* @generated from field:
|
|
10334
|
+
* @generated from field: bool isDeleted = 3;
|
|
10204
10335
|
*/
|
|
10205
|
-
|
|
10206
|
-
|
|
10336
|
+
isDeleted: boolean;
|
|
10337
|
+
/**
|
|
10338
|
+
* @generated from field: bool isNew = 4;
|
|
10339
|
+
*/
|
|
10340
|
+
isNew: boolean;
|
|
10341
|
+
/**
|
|
10342
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 5;
|
|
10343
|
+
*/
|
|
10344
|
+
labels: Label[];
|
|
10345
|
+
constructor(data?: PartialMessage<ProposalSubgraph>);
|
|
10207
10346
|
static readonly runtime: typeof proto3;
|
|
10208
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
10347
|
+
static readonly typeName = "wg.cosmo.platform.v1.ProposalSubgraph";
|
|
10209
10348
|
static readonly fields: FieldList;
|
|
10210
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10211
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10212
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10213
|
-
static equals(a:
|
|
10349
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProposalSubgraph;
|
|
10350
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProposalSubgraph;
|
|
10351
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProposalSubgraph;
|
|
10352
|
+
static equals(a: ProposalSubgraph | PlainMessage<ProposalSubgraph> | undefined, b: ProposalSubgraph | PlainMessage<ProposalSubgraph> | undefined): boolean;
|
|
10214
10353
|
}
|
|
10215
10354
|
/**
|
|
10216
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
10355
|
+
* @generated from message wg.cosmo.platform.v1.CreateProposalRequest
|
|
10217
10356
|
*/
|
|
10218
|
-
export declare class
|
|
10357
|
+
export declare class CreateProposalRequest extends Message<CreateProposalRequest> {
|
|
10358
|
+
/**
|
|
10359
|
+
* @generated from field: string federatedGraphName = 1;
|
|
10360
|
+
*/
|
|
10361
|
+
federatedGraphName: string;
|
|
10219
10362
|
/**
|
|
10220
|
-
* @generated from field:
|
|
10363
|
+
* @generated from field: string namespace = 2;
|
|
10364
|
+
*/
|
|
10365
|
+
namespace: string;
|
|
10366
|
+
/**
|
|
10367
|
+
* @generated from field: string name = 3;
|
|
10368
|
+
*/
|
|
10369
|
+
name: string;
|
|
10370
|
+
/**
|
|
10371
|
+
* @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 4;
|
|
10372
|
+
*/
|
|
10373
|
+
subgraphs: ProposalSubgraph[];
|
|
10374
|
+
constructor(data?: PartialMessage<CreateProposalRequest>);
|
|
10375
|
+
static readonly runtime: typeof proto3;
|
|
10376
|
+
static readonly typeName = "wg.cosmo.platform.v1.CreateProposalRequest";
|
|
10377
|
+
static readonly fields: FieldList;
|
|
10378
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateProposalRequest;
|
|
10379
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateProposalRequest;
|
|
10380
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateProposalRequest;
|
|
10381
|
+
static equals(a: CreateProposalRequest | PlainMessage<CreateProposalRequest> | undefined, b: CreateProposalRequest | PlainMessage<CreateProposalRequest> | undefined): boolean;
|
|
10382
|
+
}
|
|
10383
|
+
/**
|
|
10384
|
+
* @generated from message wg.cosmo.platform.v1.CreateProposalResponse
|
|
10385
|
+
*/
|
|
10386
|
+
export declare class CreateProposalResponse extends Message<CreateProposalResponse> {
|
|
10387
|
+
/**
|
|
10388
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10389
|
+
*/
|
|
10390
|
+
response?: Response;
|
|
10391
|
+
/**
|
|
10392
|
+
* @generated from field: string proposalId = 2;
|
|
10393
|
+
*/
|
|
10394
|
+
proposalId: string;
|
|
10395
|
+
/**
|
|
10396
|
+
* @generated from field: string checkId = 3;
|
|
10397
|
+
*/
|
|
10398
|
+
checkId: string;
|
|
10399
|
+
/**
|
|
10400
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SchemaChange breakingChanges = 4;
|
|
10401
|
+
*/
|
|
10402
|
+
breakingChanges: SchemaChange[];
|
|
10403
|
+
/**
|
|
10404
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SchemaChange nonBreakingChanges = 5;
|
|
10405
|
+
*/
|
|
10406
|
+
nonBreakingChanges: SchemaChange[];
|
|
10407
|
+
/**
|
|
10408
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionError compositionErrors = 6;
|
|
10409
|
+
*/
|
|
10410
|
+
compositionErrors: CompositionError[];
|
|
10411
|
+
/**
|
|
10412
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 7;
|
|
10413
|
+
*/
|
|
10414
|
+
compositionWarnings: CompositionWarning[];
|
|
10415
|
+
/**
|
|
10416
|
+
* @generated from field: repeated wg.cosmo.platform.v1.LintIssue lintErrors = 8;
|
|
10417
|
+
*/
|
|
10418
|
+
lintErrors: LintIssue[];
|
|
10419
|
+
/**
|
|
10420
|
+
* @generated from field: repeated wg.cosmo.platform.v1.LintIssue lintWarnings = 9;
|
|
10421
|
+
*/
|
|
10422
|
+
lintWarnings: LintIssue[];
|
|
10423
|
+
/**
|
|
10424
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneErrors = 10;
|
|
10425
|
+
*/
|
|
10426
|
+
graphPruneErrors: GraphPruningIssue[];
|
|
10427
|
+
/**
|
|
10428
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneWarnings = 11;
|
|
10429
|
+
*/
|
|
10430
|
+
graphPruneWarnings: GraphPruningIssue[];
|
|
10431
|
+
/**
|
|
10432
|
+
* @generated from field: wg.cosmo.platform.v1.CheckOperationUsageStats operationUsageStats = 12;
|
|
10221
10433
|
*/
|
|
10222
10434
|
operationUsageStats?: CheckOperationUsageStats;
|
|
10223
10435
|
/**
|
|
10224
|
-
* @generated from field:
|
|
10436
|
+
* @generated from field: bool lintingSkipped = 13;
|
|
10225
10437
|
*/
|
|
10226
|
-
|
|
10227
|
-
|
|
10438
|
+
lintingSkipped: boolean;
|
|
10439
|
+
/**
|
|
10440
|
+
* @generated from field: bool graphPruningSkipped = 14;
|
|
10441
|
+
*/
|
|
10442
|
+
graphPruningSkipped: boolean;
|
|
10443
|
+
/**
|
|
10444
|
+
* @generated from field: string checkUrl = 15;
|
|
10445
|
+
*/
|
|
10446
|
+
checkUrl: string;
|
|
10447
|
+
constructor(data?: PartialMessage<CreateProposalResponse>);
|
|
10448
|
+
static readonly runtime: typeof proto3;
|
|
10449
|
+
static readonly typeName = "wg.cosmo.platform.v1.CreateProposalResponse";
|
|
10450
|
+
static readonly fields: FieldList;
|
|
10451
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateProposalResponse;
|
|
10452
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateProposalResponse;
|
|
10453
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateProposalResponse;
|
|
10454
|
+
static equals(a: CreateProposalResponse | PlainMessage<CreateProposalResponse> | undefined, b: CreateProposalResponse | PlainMessage<CreateProposalResponse> | undefined): boolean;
|
|
10455
|
+
}
|
|
10456
|
+
/**
|
|
10457
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalRequest
|
|
10458
|
+
*/
|
|
10459
|
+
export declare class GetProposalRequest extends Message<GetProposalRequest> {
|
|
10460
|
+
/**
|
|
10461
|
+
* @generated from field: string proposalId = 1;
|
|
10462
|
+
*/
|
|
10463
|
+
proposalId: string;
|
|
10464
|
+
constructor(data?: PartialMessage<GetProposalRequest>);
|
|
10465
|
+
static readonly runtime: typeof proto3;
|
|
10466
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalRequest";
|
|
10467
|
+
static readonly fields: FieldList;
|
|
10468
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalRequest;
|
|
10469
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalRequest;
|
|
10470
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalRequest;
|
|
10471
|
+
static equals(a: GetProposalRequest | PlainMessage<GetProposalRequest> | undefined, b: GetProposalRequest | PlainMessage<GetProposalRequest> | undefined): boolean;
|
|
10472
|
+
}
|
|
10473
|
+
/**
|
|
10474
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalResponse
|
|
10475
|
+
*/
|
|
10476
|
+
export declare class GetProposalResponse extends Message<GetProposalResponse> {
|
|
10477
|
+
/**
|
|
10478
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10479
|
+
*/
|
|
10480
|
+
response?: Response;
|
|
10481
|
+
/**
|
|
10482
|
+
* @generated from field: wg.cosmo.platform.v1.Proposal proposal = 2;
|
|
10483
|
+
*/
|
|
10484
|
+
proposal?: Proposal;
|
|
10485
|
+
/**
|
|
10486
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GetProposalResponse.CurrentSubgraph currentSubgraphs = 3;
|
|
10487
|
+
*/
|
|
10488
|
+
currentSubgraphs: GetProposalResponse_CurrentSubgraph[];
|
|
10489
|
+
constructor(data?: PartialMessage<GetProposalResponse>);
|
|
10490
|
+
static readonly runtime: typeof proto3;
|
|
10491
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalResponse";
|
|
10492
|
+
static readonly fields: FieldList;
|
|
10493
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalResponse;
|
|
10494
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalResponse;
|
|
10495
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalResponse;
|
|
10496
|
+
static equals(a: GetProposalResponse | PlainMessage<GetProposalResponse> | undefined, b: GetProposalResponse | PlainMessage<GetProposalResponse> | undefined): boolean;
|
|
10497
|
+
}
|
|
10498
|
+
/**
|
|
10499
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalResponse.CurrentSubgraph
|
|
10500
|
+
*/
|
|
10501
|
+
export declare class GetProposalResponse_CurrentSubgraph extends Message<GetProposalResponse_CurrentSubgraph> {
|
|
10502
|
+
/**
|
|
10503
|
+
* @generated from field: string name = 1;
|
|
10504
|
+
*/
|
|
10505
|
+
name: string;
|
|
10506
|
+
/**
|
|
10507
|
+
* @generated from field: string schemaSDL = 2;
|
|
10508
|
+
*/
|
|
10509
|
+
schemaSDL: string;
|
|
10510
|
+
constructor(data?: PartialMessage<GetProposalResponse_CurrentSubgraph>);
|
|
10511
|
+
static readonly runtime: typeof proto3;
|
|
10512
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalResponse.CurrentSubgraph";
|
|
10513
|
+
static readonly fields: FieldList;
|
|
10514
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalResponse_CurrentSubgraph;
|
|
10515
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalResponse_CurrentSubgraph;
|
|
10516
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalResponse_CurrentSubgraph;
|
|
10517
|
+
static equals(a: GetProposalResponse_CurrentSubgraph | PlainMessage<GetProposalResponse_CurrentSubgraph> | undefined, b: GetProposalResponse_CurrentSubgraph | PlainMessage<GetProposalResponse_CurrentSubgraph> | undefined): boolean;
|
|
10518
|
+
}
|
|
10519
|
+
/**
|
|
10520
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalsByFederatedGraphRequest
|
|
10521
|
+
*/
|
|
10522
|
+
export declare class GetProposalsByFederatedGraphRequest extends Message<GetProposalsByFederatedGraphRequest> {
|
|
10523
|
+
/**
|
|
10524
|
+
* @generated from field: string federatedGraphName = 1;
|
|
10525
|
+
*/
|
|
10526
|
+
federatedGraphName: string;
|
|
10527
|
+
/**
|
|
10528
|
+
* @generated from field: string namespace = 2;
|
|
10529
|
+
*/
|
|
10530
|
+
namespace: string;
|
|
10531
|
+
/**
|
|
10532
|
+
* @generated from field: string startDate = 3;
|
|
10533
|
+
*/
|
|
10534
|
+
startDate: string;
|
|
10535
|
+
/**
|
|
10536
|
+
* @generated from field: string endDate = 4;
|
|
10537
|
+
*/
|
|
10538
|
+
endDate: string;
|
|
10539
|
+
/**
|
|
10540
|
+
* @generated from field: int32 limit = 5;
|
|
10541
|
+
*/
|
|
10542
|
+
limit: number;
|
|
10543
|
+
/**
|
|
10544
|
+
* @generated from field: int32 offset = 6;
|
|
10545
|
+
*/
|
|
10546
|
+
offset: number;
|
|
10547
|
+
constructor(data?: PartialMessage<GetProposalsByFederatedGraphRequest>);
|
|
10548
|
+
static readonly runtime: typeof proto3;
|
|
10549
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalsByFederatedGraphRequest";
|
|
10550
|
+
static readonly fields: FieldList;
|
|
10551
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalsByFederatedGraphRequest;
|
|
10552
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalsByFederatedGraphRequest;
|
|
10553
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalsByFederatedGraphRequest;
|
|
10554
|
+
static equals(a: GetProposalsByFederatedGraphRequest | PlainMessage<GetProposalsByFederatedGraphRequest> | undefined, b: GetProposalsByFederatedGraphRequest | PlainMessage<GetProposalsByFederatedGraphRequest> | undefined): boolean;
|
|
10555
|
+
}
|
|
10556
|
+
/**
|
|
10557
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalsByFederatedGraphResponse
|
|
10558
|
+
*/
|
|
10559
|
+
export declare class GetProposalsByFederatedGraphResponse extends Message<GetProposalsByFederatedGraphResponse> {
|
|
10560
|
+
/**
|
|
10561
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10562
|
+
*/
|
|
10563
|
+
response?: Response;
|
|
10564
|
+
/**
|
|
10565
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Proposal proposals = 2;
|
|
10566
|
+
*/
|
|
10567
|
+
proposals: Proposal[];
|
|
10568
|
+
/**
|
|
10569
|
+
* @generated from field: bool isProposalsEnabled = 3;
|
|
10570
|
+
*/
|
|
10571
|
+
isProposalsEnabled: boolean;
|
|
10572
|
+
constructor(data?: PartialMessage<GetProposalsByFederatedGraphResponse>);
|
|
10228
10573
|
static readonly runtime: typeof proto3;
|
|
10229
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
10574
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalsByFederatedGraphResponse";
|
|
10230
10575
|
static readonly fields: FieldList;
|
|
10231
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10232
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10233
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10234
|
-
static equals(a:
|
|
10576
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalsByFederatedGraphResponse;
|
|
10577
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalsByFederatedGraphResponse;
|
|
10578
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalsByFederatedGraphResponse;
|
|
10579
|
+
static equals(a: GetProposalsByFederatedGraphResponse | PlainMessage<GetProposalsByFederatedGraphResponse> | undefined, b: GetProposalsByFederatedGraphResponse | PlainMessage<GetProposalsByFederatedGraphResponse> | undefined): boolean;
|
|
10235
10580
|
}
|
|
10236
10581
|
/**
|
|
10237
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
10582
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalChecksRequest
|
|
10238
10583
|
*/
|
|
10239
|
-
export declare class
|
|
10584
|
+
export declare class GetProposalChecksRequest extends Message<GetProposalChecksRequest> {
|
|
10585
|
+
/**
|
|
10586
|
+
* @generated from field: string proposalId = 1;
|
|
10587
|
+
*/
|
|
10588
|
+
proposalId: string;
|
|
10589
|
+
/**
|
|
10590
|
+
* @generated from field: int32 limit = 2;
|
|
10591
|
+
*/
|
|
10592
|
+
limit: number;
|
|
10593
|
+
/**
|
|
10594
|
+
* @generated from field: int32 offset = 3;
|
|
10595
|
+
*/
|
|
10596
|
+
offset: number;
|
|
10597
|
+
/**
|
|
10598
|
+
* @generated from field: string startDate = 4;
|
|
10599
|
+
*/
|
|
10600
|
+
startDate: string;
|
|
10601
|
+
/**
|
|
10602
|
+
* @generated from field: string endDate = 5;
|
|
10603
|
+
*/
|
|
10604
|
+
endDate: string;
|
|
10605
|
+
constructor(data?: PartialMessage<GetProposalChecksRequest>);
|
|
10606
|
+
static readonly runtime: typeof proto3;
|
|
10607
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalChecksRequest";
|
|
10608
|
+
static readonly fields: FieldList;
|
|
10609
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalChecksRequest;
|
|
10610
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalChecksRequest;
|
|
10611
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalChecksRequest;
|
|
10612
|
+
static equals(a: GetProposalChecksRequest | PlainMessage<GetProposalChecksRequest> | undefined, b: GetProposalChecksRequest | PlainMessage<GetProposalChecksRequest> | undefined): boolean;
|
|
10613
|
+
}
|
|
10614
|
+
/**
|
|
10615
|
+
* @generated from message wg.cosmo.platform.v1.GetProposalChecksResponse
|
|
10616
|
+
*/
|
|
10617
|
+
export declare class GetProposalChecksResponse extends Message<GetProposalChecksResponse> {
|
|
10618
|
+
/**
|
|
10619
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10620
|
+
*/
|
|
10621
|
+
response?: Response;
|
|
10622
|
+
/**
|
|
10623
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SchemaCheck checks = 2;
|
|
10624
|
+
*/
|
|
10625
|
+
checks: SchemaCheck[];
|
|
10626
|
+
/**
|
|
10627
|
+
* @generated from field: int32 totalChecksCount = 3;
|
|
10628
|
+
*/
|
|
10629
|
+
totalChecksCount: number;
|
|
10630
|
+
constructor(data?: PartialMessage<GetProposalChecksResponse>);
|
|
10631
|
+
static readonly runtime: typeof proto3;
|
|
10632
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetProposalChecksResponse";
|
|
10633
|
+
static readonly fields: FieldList;
|
|
10634
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetProposalChecksResponse;
|
|
10635
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetProposalChecksResponse;
|
|
10636
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetProposalChecksResponse;
|
|
10637
|
+
static equals(a: GetProposalChecksResponse | PlainMessage<GetProposalChecksResponse> | undefined, b: GetProposalChecksResponse | PlainMessage<GetProposalChecksResponse> | undefined): boolean;
|
|
10638
|
+
}
|
|
10639
|
+
/**
|
|
10640
|
+
* @generated from message wg.cosmo.platform.v1.UpdateProposalRequest
|
|
10641
|
+
*/
|
|
10642
|
+
export declare class UpdateProposalRequest extends Message<UpdateProposalRequest> {
|
|
10643
|
+
/**
|
|
10644
|
+
* @generated from field: string proposalName = 1;
|
|
10645
|
+
*/
|
|
10646
|
+
proposalName: string;
|
|
10647
|
+
/**
|
|
10648
|
+
* @generated from field: string federatedGraphName = 2;
|
|
10649
|
+
*/
|
|
10650
|
+
federatedGraphName: string;
|
|
10651
|
+
/**
|
|
10652
|
+
* @generated from oneof wg.cosmo.platform.v1.UpdateProposalRequest.update_action
|
|
10653
|
+
*/
|
|
10654
|
+
updateAction: {
|
|
10655
|
+
/**
|
|
10656
|
+
* @generated from field: string state = 3;
|
|
10657
|
+
*/
|
|
10658
|
+
value: string;
|
|
10659
|
+
case: "state";
|
|
10660
|
+
} | {
|
|
10661
|
+
/**
|
|
10662
|
+
* @generated from field: wg.cosmo.platform.v1.UpdateProposalRequest.UpdateProposalSubgraphs updatedSubgraphs = 4;
|
|
10663
|
+
*/
|
|
10664
|
+
value: UpdateProposalRequest_UpdateProposalSubgraphs;
|
|
10665
|
+
case: "updatedSubgraphs";
|
|
10666
|
+
} | {
|
|
10667
|
+
case: undefined;
|
|
10668
|
+
value?: undefined;
|
|
10669
|
+
};
|
|
10670
|
+
/**
|
|
10671
|
+
* @generated from field: string namespace = 5;
|
|
10672
|
+
*/
|
|
10673
|
+
namespace: string;
|
|
10674
|
+
constructor(data?: PartialMessage<UpdateProposalRequest>);
|
|
10675
|
+
static readonly runtime: typeof proto3;
|
|
10676
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateProposalRequest";
|
|
10677
|
+
static readonly fields: FieldList;
|
|
10678
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateProposalRequest;
|
|
10679
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateProposalRequest;
|
|
10680
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateProposalRequest;
|
|
10681
|
+
static equals(a: UpdateProposalRequest | PlainMessage<UpdateProposalRequest> | undefined, b: UpdateProposalRequest | PlainMessage<UpdateProposalRequest> | undefined): boolean;
|
|
10682
|
+
}
|
|
10683
|
+
/**
|
|
10684
|
+
* @generated from message wg.cosmo.platform.v1.UpdateProposalRequest.UpdateProposalSubgraphs
|
|
10685
|
+
*/
|
|
10686
|
+
export declare class UpdateProposalRequest_UpdateProposalSubgraphs extends Message<UpdateProposalRequest_UpdateProposalSubgraphs> {
|
|
10687
|
+
/**
|
|
10688
|
+
* @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 1;
|
|
10689
|
+
*/
|
|
10690
|
+
subgraphs: ProposalSubgraph[];
|
|
10691
|
+
constructor(data?: PartialMessage<UpdateProposalRequest_UpdateProposalSubgraphs>);
|
|
10692
|
+
static readonly runtime: typeof proto3;
|
|
10693
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateProposalRequest.UpdateProposalSubgraphs";
|
|
10694
|
+
static readonly fields: FieldList;
|
|
10695
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateProposalRequest_UpdateProposalSubgraphs;
|
|
10696
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateProposalRequest_UpdateProposalSubgraphs;
|
|
10697
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateProposalRequest_UpdateProposalSubgraphs;
|
|
10698
|
+
static equals(a: UpdateProposalRequest_UpdateProposalSubgraphs | PlainMessage<UpdateProposalRequest_UpdateProposalSubgraphs> | undefined, b: UpdateProposalRequest_UpdateProposalSubgraphs | PlainMessage<UpdateProposalRequest_UpdateProposalSubgraphs> | undefined): boolean;
|
|
10699
|
+
}
|
|
10700
|
+
/**
|
|
10701
|
+
* @generated from message wg.cosmo.platform.v1.UpdateProposalResponse
|
|
10702
|
+
*/
|
|
10703
|
+
export declare class UpdateProposalResponse extends Message<UpdateProposalResponse> {
|
|
10240
10704
|
/**
|
|
10241
10705
|
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10242
10706
|
*/
|
|
@@ -10278,9 +10742,9 @@ export declare class CheckSubgraphSchemasResponse extends Message<CheckSubgraphS
|
|
|
10278
10742
|
*/
|
|
10279
10743
|
graphPruneWarnings: GraphPruningIssue[];
|
|
10280
10744
|
/**
|
|
10281
|
-
* @generated from field:
|
|
10745
|
+
* @generated from field: wg.cosmo.platform.v1.CheckOperationUsageStats operationUsageStats = 11;
|
|
10282
10746
|
*/
|
|
10283
|
-
operationUsageStats
|
|
10747
|
+
operationUsageStats?: CheckOperationUsageStats;
|
|
10284
10748
|
/**
|
|
10285
10749
|
* @generated from field: bool lintingSkipped = 12;
|
|
10286
10750
|
*/
|
|
@@ -10293,54 +10757,138 @@ export declare class CheckSubgraphSchemasResponse extends Message<CheckSubgraphS
|
|
|
10293
10757
|
* @generated from field: string checkUrl = 14;
|
|
10294
10758
|
*/
|
|
10295
10759
|
checkUrl: string;
|
|
10296
|
-
constructor(data?: PartialMessage<
|
|
10760
|
+
constructor(data?: PartialMessage<UpdateProposalResponse>);
|
|
10297
10761
|
static readonly runtime: typeof proto3;
|
|
10298
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
10762
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateProposalResponse";
|
|
10299
10763
|
static readonly fields: FieldList;
|
|
10300
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10301
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10302
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10303
|
-
static equals(a:
|
|
10764
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateProposalResponse;
|
|
10765
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateProposalResponse;
|
|
10766
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateProposalResponse;
|
|
10767
|
+
static equals(a: UpdateProposalResponse | PlainMessage<UpdateProposalResponse> | undefined, b: UpdateProposalResponse | PlainMessage<UpdateProposalResponse> | undefined): boolean;
|
|
10304
10768
|
}
|
|
10305
10769
|
/**
|
|
10306
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
10770
|
+
* @generated from message wg.cosmo.platform.v1.EnableProposalsForNamespaceRequest
|
|
10307
10771
|
*/
|
|
10308
|
-
export declare class
|
|
10772
|
+
export declare class EnableProposalsForNamespaceRequest extends Message<EnableProposalsForNamespaceRequest> {
|
|
10309
10773
|
/**
|
|
10310
|
-
* @generated from field: string
|
|
10774
|
+
* @generated from field: string namespace = 1;
|
|
10311
10775
|
*/
|
|
10312
|
-
|
|
10776
|
+
namespace: string;
|
|
10313
10777
|
/**
|
|
10314
|
-
* @generated from field:
|
|
10778
|
+
* @generated from field: bool enableProposals = 2;
|
|
10315
10779
|
*/
|
|
10316
|
-
|
|
10317
|
-
constructor(data?: PartialMessage<
|
|
10780
|
+
enableProposals: boolean;
|
|
10781
|
+
constructor(data?: PartialMessage<EnableProposalsForNamespaceRequest>);
|
|
10318
10782
|
static readonly runtime: typeof proto3;
|
|
10319
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
10783
|
+
static readonly typeName = "wg.cosmo.platform.v1.EnableProposalsForNamespaceRequest";
|
|
10320
10784
|
static readonly fields: FieldList;
|
|
10321
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10322
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10323
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10324
|
-
static equals(a:
|
|
10785
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnableProposalsForNamespaceRequest;
|
|
10786
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnableProposalsForNamespaceRequest;
|
|
10787
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnableProposalsForNamespaceRequest;
|
|
10788
|
+
static equals(a: EnableProposalsForNamespaceRequest | PlainMessage<EnableProposalsForNamespaceRequest> | undefined, b: EnableProposalsForNamespaceRequest | PlainMessage<EnableProposalsForNamespaceRequest> | undefined): boolean;
|
|
10325
10789
|
}
|
|
10326
10790
|
/**
|
|
10327
|
-
* @generated from message wg.cosmo.platform.v1.
|
|
10791
|
+
* @generated from message wg.cosmo.platform.v1.EnableProposalsForNamespaceResponse
|
|
10328
10792
|
*/
|
|
10329
|
-
export declare class
|
|
10793
|
+
export declare class EnableProposalsForNamespaceResponse extends Message<EnableProposalsForNamespaceResponse> {
|
|
10330
10794
|
/**
|
|
10331
10795
|
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10332
10796
|
*/
|
|
10333
10797
|
response?: Response;
|
|
10798
|
+
constructor(data?: PartialMessage<EnableProposalsForNamespaceResponse>);
|
|
10799
|
+
static readonly runtime: typeof proto3;
|
|
10800
|
+
static readonly typeName = "wg.cosmo.platform.v1.EnableProposalsForNamespaceResponse";
|
|
10801
|
+
static readonly fields: FieldList;
|
|
10802
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EnableProposalsForNamespaceResponse;
|
|
10803
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EnableProposalsForNamespaceResponse;
|
|
10804
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EnableProposalsForNamespaceResponse;
|
|
10805
|
+
static equals(a: EnableProposalsForNamespaceResponse | PlainMessage<EnableProposalsForNamespaceResponse> | undefined, b: EnableProposalsForNamespaceResponse | PlainMessage<EnableProposalsForNamespaceResponse> | undefined): boolean;
|
|
10806
|
+
}
|
|
10807
|
+
/**
|
|
10808
|
+
* @generated from message wg.cosmo.platform.v1.ConfigureNamespaceProposalConfigRequest
|
|
10809
|
+
*/
|
|
10810
|
+
export declare class ConfigureNamespaceProposalConfigRequest extends Message<ConfigureNamespaceProposalConfigRequest> {
|
|
10334
10811
|
/**
|
|
10335
|
-
* @generated from field: string
|
|
10812
|
+
* @generated from field: string namespace = 1;
|
|
10336
10813
|
*/
|
|
10337
|
-
|
|
10338
|
-
|
|
10814
|
+
namespace: string;
|
|
10815
|
+
/**
|
|
10816
|
+
* @generated from field: wg.cosmo.platform.v1.LintSeverity checkSeverityLevel = 2;
|
|
10817
|
+
*/
|
|
10818
|
+
checkSeverityLevel: LintSeverity;
|
|
10819
|
+
/**
|
|
10820
|
+
* @generated from field: wg.cosmo.platform.v1.LintSeverity publishSeverityLevel = 3;
|
|
10821
|
+
*/
|
|
10822
|
+
publishSeverityLevel: LintSeverity;
|
|
10823
|
+
constructor(data?: PartialMessage<ConfigureNamespaceProposalConfigRequest>);
|
|
10339
10824
|
static readonly runtime: typeof proto3;
|
|
10340
|
-
static readonly typeName = "wg.cosmo.platform.v1.
|
|
10825
|
+
static readonly typeName = "wg.cosmo.platform.v1.ConfigureNamespaceProposalConfigRequest";
|
|
10341
10826
|
static readonly fields: FieldList;
|
|
10342
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
10343
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
10344
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
10345
|
-
static equals(a:
|
|
10827
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfigureNamespaceProposalConfigRequest;
|
|
10828
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfigureNamespaceProposalConfigRequest;
|
|
10829
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ConfigureNamespaceProposalConfigRequest;
|
|
10830
|
+
static equals(a: ConfigureNamespaceProposalConfigRequest | PlainMessage<ConfigureNamespaceProposalConfigRequest> | undefined, b: ConfigureNamespaceProposalConfigRequest | PlainMessage<ConfigureNamespaceProposalConfigRequest> | undefined): boolean;
|
|
10831
|
+
}
|
|
10832
|
+
/**
|
|
10833
|
+
* @generated from message wg.cosmo.platform.v1.ConfigureNamespaceProposalConfigResponse
|
|
10834
|
+
*/
|
|
10835
|
+
export declare class ConfigureNamespaceProposalConfigResponse extends Message<ConfigureNamespaceProposalConfigResponse> {
|
|
10836
|
+
/**
|
|
10837
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10838
|
+
*/
|
|
10839
|
+
response?: Response;
|
|
10840
|
+
constructor(data?: PartialMessage<ConfigureNamespaceProposalConfigResponse>);
|
|
10841
|
+
static readonly runtime: typeof proto3;
|
|
10842
|
+
static readonly typeName = "wg.cosmo.platform.v1.ConfigureNamespaceProposalConfigResponse";
|
|
10843
|
+
static readonly fields: FieldList;
|
|
10844
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfigureNamespaceProposalConfigResponse;
|
|
10845
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfigureNamespaceProposalConfigResponse;
|
|
10846
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ConfigureNamespaceProposalConfigResponse;
|
|
10847
|
+
static equals(a: ConfigureNamespaceProposalConfigResponse | PlainMessage<ConfigureNamespaceProposalConfigResponse> | undefined, b: ConfigureNamespaceProposalConfigResponse | PlainMessage<ConfigureNamespaceProposalConfigResponse> | undefined): boolean;
|
|
10848
|
+
}
|
|
10849
|
+
/**
|
|
10850
|
+
* @generated from message wg.cosmo.platform.v1.GetNamespaceProposalConfigRequest
|
|
10851
|
+
*/
|
|
10852
|
+
export declare class GetNamespaceProposalConfigRequest extends Message<GetNamespaceProposalConfigRequest> {
|
|
10853
|
+
/**
|
|
10854
|
+
* @generated from field: string namespace = 1;
|
|
10855
|
+
*/
|
|
10856
|
+
namespace: string;
|
|
10857
|
+
constructor(data?: PartialMessage<GetNamespaceProposalConfigRequest>);
|
|
10858
|
+
static readonly runtime: typeof proto3;
|
|
10859
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetNamespaceProposalConfigRequest";
|
|
10860
|
+
static readonly fields: FieldList;
|
|
10861
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetNamespaceProposalConfigRequest;
|
|
10862
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetNamespaceProposalConfigRequest;
|
|
10863
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetNamespaceProposalConfigRequest;
|
|
10864
|
+
static equals(a: GetNamespaceProposalConfigRequest | PlainMessage<GetNamespaceProposalConfigRequest> | undefined, b: GetNamespaceProposalConfigRequest | PlainMessage<GetNamespaceProposalConfigRequest> | undefined): boolean;
|
|
10865
|
+
}
|
|
10866
|
+
/**
|
|
10867
|
+
* @generated from message wg.cosmo.platform.v1.GetNamespaceProposalConfigResponse
|
|
10868
|
+
*/
|
|
10869
|
+
export declare class GetNamespaceProposalConfigResponse extends Message<GetNamespaceProposalConfigResponse> {
|
|
10870
|
+
/**
|
|
10871
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
10872
|
+
*/
|
|
10873
|
+
response?: Response;
|
|
10874
|
+
/**
|
|
10875
|
+
* @generated from field: bool enabled = 2;
|
|
10876
|
+
*/
|
|
10877
|
+
enabled: boolean;
|
|
10878
|
+
/**
|
|
10879
|
+
* @generated from field: wg.cosmo.platform.v1.LintSeverity checkSeverityLevel = 3;
|
|
10880
|
+
*/
|
|
10881
|
+
checkSeverityLevel: LintSeverity;
|
|
10882
|
+
/**
|
|
10883
|
+
* @generated from field: wg.cosmo.platform.v1.LintSeverity publishSeverityLevel = 4;
|
|
10884
|
+
*/
|
|
10885
|
+
publishSeverityLevel: LintSeverity;
|
|
10886
|
+
constructor(data?: PartialMessage<GetNamespaceProposalConfigResponse>);
|
|
10887
|
+
static readonly runtime: typeof proto3;
|
|
10888
|
+
static readonly typeName = "wg.cosmo.platform.v1.GetNamespaceProposalConfigResponse";
|
|
10889
|
+
static readonly fields: FieldList;
|
|
10890
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetNamespaceProposalConfigResponse;
|
|
10891
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetNamespaceProposalConfigResponse;
|
|
10892
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetNamespaceProposalConfigResponse;
|
|
10893
|
+
static equals(a: GetNamespaceProposalConfigResponse | PlainMessage<GetNamespaceProposalConfigResponse> | undefined, b: GetNamespaceProposalConfigResponse | PlainMessage<GetNamespaceProposalConfigResponse> | undefined): boolean;
|
|
10346
10894
|
}
|