@wundergraph/cosmo-connect 0.62.0 → 0.64.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/notifications/events_pb.d.ts +21 -11
- package/dist/notifications/events_pb.js +14 -8
- package/dist/notifications/events_pb.js.map +1 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +108 -10
- package/dist/platform/v1/platform-PlatformService_connectquery.js +108 -10
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +71 -7
- package/dist/platform/v1/platform_connect.js +71 -7
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +255 -13
- package/dist/platform/v1/platform_pb.js +407 -16
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -255,6 +255,56 @@ export declare class ResponseStatus extends Message<ResponseStatus> {
|
|
|
255
255
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ResponseStatus;
|
|
256
256
|
static equals(a: ResponseStatus | PlainMessage<ResponseStatus> | undefined, b: ResponseStatus | PlainMessage<ResponseStatus> | undefined): boolean;
|
|
257
257
|
}
|
|
258
|
+
/**
|
|
259
|
+
* @generated from message wg.cosmo.platform.v1.PublishMonographRequest
|
|
260
|
+
*/
|
|
261
|
+
export declare class PublishMonographRequest extends Message<PublishMonographRequest> {
|
|
262
|
+
/**
|
|
263
|
+
* @generated from field: string name = 1;
|
|
264
|
+
*/
|
|
265
|
+
name: string;
|
|
266
|
+
/**
|
|
267
|
+
* @generated from field: string namespace = 2;
|
|
268
|
+
*/
|
|
269
|
+
namespace: string;
|
|
270
|
+
/**
|
|
271
|
+
* @generated from field: string schema = 3;
|
|
272
|
+
*/
|
|
273
|
+
schema: string;
|
|
274
|
+
constructor(data?: PartialMessage<PublishMonographRequest>);
|
|
275
|
+
static readonly runtime: typeof proto3;
|
|
276
|
+
static readonly typeName = "wg.cosmo.platform.v1.PublishMonographRequest";
|
|
277
|
+
static readonly fields: FieldList;
|
|
278
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PublishMonographRequest;
|
|
279
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PublishMonographRequest;
|
|
280
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishMonographRequest;
|
|
281
|
+
static equals(a: PublishMonographRequest | PlainMessage<PublishMonographRequest> | undefined, b: PublishMonographRequest | PlainMessage<PublishMonographRequest> | undefined): boolean;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* @generated from message wg.cosmo.platform.v1.PublishMonographResponse
|
|
285
|
+
*/
|
|
286
|
+
export declare class PublishMonographResponse extends Message<PublishMonographResponse> {
|
|
287
|
+
/**
|
|
288
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
289
|
+
*/
|
|
290
|
+
response?: Response;
|
|
291
|
+
/**
|
|
292
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionError compositionErrors = 2;
|
|
293
|
+
*/
|
|
294
|
+
compositionErrors: CompositionError[];
|
|
295
|
+
/**
|
|
296
|
+
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
297
|
+
*/
|
|
298
|
+
deploymentErrors: DeploymentError[];
|
|
299
|
+
constructor(data?: PartialMessage<PublishMonographResponse>);
|
|
300
|
+
static readonly runtime: typeof proto3;
|
|
301
|
+
static readonly typeName = "wg.cosmo.platform.v1.PublishMonographResponse";
|
|
302
|
+
static readonly fields: FieldList;
|
|
303
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PublishMonographResponse;
|
|
304
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PublishMonographResponse;
|
|
305
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishMonographResponse;
|
|
306
|
+
static equals(a: PublishMonographResponse | PlainMessage<PublishMonographResponse> | undefined, b: PublishMonographResponse | PlainMessage<PublishMonographResponse> | undefined): boolean;
|
|
307
|
+
}
|
|
258
308
|
/**
|
|
259
309
|
* @generated from message wg.cosmo.platform.v1.PublishFederatedSubgraphRequest
|
|
260
310
|
*/
|
|
@@ -283,12 +333,6 @@ export declare class PublishFederatedSubgraphRequest extends Message<PublishFede
|
|
|
283
333
|
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 4;
|
|
284
334
|
*/
|
|
285
335
|
labels: Label[];
|
|
286
|
-
/**
|
|
287
|
-
* The headers are the headers which will be used to route the requests to the subgraph.
|
|
288
|
-
*
|
|
289
|
-
* @generated from field: repeated string headers = 5;
|
|
290
|
-
*/
|
|
291
|
-
headers: string[];
|
|
292
336
|
/**
|
|
293
337
|
* The subscription protocol to use when subscribing to this subgraph
|
|
294
338
|
*
|
|
@@ -444,6 +488,68 @@ export declare class FixSubgraphSchemaRequest extends Message<FixSubgraphSchemaR
|
|
|
444
488
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FixSubgraphSchemaRequest;
|
|
445
489
|
static equals(a: FixSubgraphSchemaRequest | PlainMessage<FixSubgraphSchemaRequest> | undefined, b: FixSubgraphSchemaRequest | PlainMessage<FixSubgraphSchemaRequest> | undefined): boolean;
|
|
446
490
|
}
|
|
491
|
+
/**
|
|
492
|
+
* @generated from message wg.cosmo.platform.v1.CreateMonographRequest
|
|
493
|
+
*/
|
|
494
|
+
export declare class CreateMonographRequest extends Message<CreateMonographRequest> {
|
|
495
|
+
/**
|
|
496
|
+
* @generated from field: string name = 1;
|
|
497
|
+
*/
|
|
498
|
+
name: string;
|
|
499
|
+
/**
|
|
500
|
+
* @generated from field: string namespace = 2;
|
|
501
|
+
*/
|
|
502
|
+
namespace: string;
|
|
503
|
+
/**
|
|
504
|
+
* @generated from field: string routing_url = 3;
|
|
505
|
+
*/
|
|
506
|
+
routingUrl: string;
|
|
507
|
+
/**
|
|
508
|
+
* @generated from field: string graph_url = 4;
|
|
509
|
+
*/
|
|
510
|
+
graphUrl: string;
|
|
511
|
+
/**
|
|
512
|
+
* @generated from field: optional string subscription_url = 5;
|
|
513
|
+
*/
|
|
514
|
+
subscriptionUrl?: string;
|
|
515
|
+
/**
|
|
516
|
+
* @generated from field: optional wg.cosmo.common.GraphQLSubscriptionProtocol subscription_protocol = 6;
|
|
517
|
+
*/
|
|
518
|
+
subscriptionProtocol?: GraphQLSubscriptionProtocol;
|
|
519
|
+
/**
|
|
520
|
+
* @generated from field: optional string readme = 7;
|
|
521
|
+
*/
|
|
522
|
+
readme?: string;
|
|
523
|
+
/**
|
|
524
|
+
* @generated from field: string admissionWebhookURL = 8;
|
|
525
|
+
*/
|
|
526
|
+
admissionWebhookURL: string;
|
|
527
|
+
constructor(data?: PartialMessage<CreateMonographRequest>);
|
|
528
|
+
static readonly runtime: typeof proto3;
|
|
529
|
+
static readonly typeName = "wg.cosmo.platform.v1.CreateMonographRequest";
|
|
530
|
+
static readonly fields: FieldList;
|
|
531
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateMonographRequest;
|
|
532
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateMonographRequest;
|
|
533
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateMonographRequest;
|
|
534
|
+
static equals(a: CreateMonographRequest | PlainMessage<CreateMonographRequest> | undefined, b: CreateMonographRequest | PlainMessage<CreateMonographRequest> | undefined): boolean;
|
|
535
|
+
}
|
|
536
|
+
/**
|
|
537
|
+
* @generated from message wg.cosmo.platform.v1.CreateMonographResponse
|
|
538
|
+
*/
|
|
539
|
+
export declare class CreateMonographResponse extends Message<CreateMonographResponse> {
|
|
540
|
+
/**
|
|
541
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
542
|
+
*/
|
|
543
|
+
response?: Response;
|
|
544
|
+
constructor(data?: PartialMessage<CreateMonographResponse>);
|
|
545
|
+
static readonly runtime: typeof proto3;
|
|
546
|
+
static readonly typeName = "wg.cosmo.platform.v1.CreateMonographResponse";
|
|
547
|
+
static readonly fields: FieldList;
|
|
548
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateMonographResponse;
|
|
549
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateMonographResponse;
|
|
550
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateMonographResponse;
|
|
551
|
+
static equals(a: CreateMonographResponse | PlainMessage<CreateMonographResponse> | undefined, b: CreateMonographResponse | PlainMessage<CreateMonographResponse> | undefined): boolean;
|
|
552
|
+
}
|
|
447
553
|
/**
|
|
448
554
|
* @generated from message wg.cosmo.platform.v1.CreateFederatedGraphRequest
|
|
449
555
|
*/
|
|
@@ -511,12 +617,6 @@ export declare class CreateFederatedSubgraphRequest extends Message<CreateFedera
|
|
|
511
617
|
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 3;
|
|
512
618
|
*/
|
|
513
619
|
labels: Label[];
|
|
514
|
-
/**
|
|
515
|
-
* headers are the headers which will be used to route the requests to the subgraph.
|
|
516
|
-
*
|
|
517
|
-
* @generated from field: repeated string headers = 4;
|
|
518
|
-
*/
|
|
519
|
-
headers: string[];
|
|
520
620
|
/**
|
|
521
621
|
* subscription protocol to use when subscribing to this subgraph
|
|
522
622
|
*
|
|
@@ -569,6 +669,44 @@ export declare class DeleteFederatedGraphRequest extends Message<DeleteFederated
|
|
|
569
669
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteFederatedGraphRequest;
|
|
570
670
|
static equals(a: DeleteFederatedGraphRequest | PlainMessage<DeleteFederatedGraphRequest> | undefined, b: DeleteFederatedGraphRequest | PlainMessage<DeleteFederatedGraphRequest> | undefined): boolean;
|
|
571
671
|
}
|
|
672
|
+
/**
|
|
673
|
+
* @generated from message wg.cosmo.platform.v1.DeleteMonographRequest
|
|
674
|
+
*/
|
|
675
|
+
export declare class DeleteMonographRequest extends Message<DeleteMonographRequest> {
|
|
676
|
+
/**
|
|
677
|
+
* @generated from field: string name = 1;
|
|
678
|
+
*/
|
|
679
|
+
name: string;
|
|
680
|
+
/**
|
|
681
|
+
* @generated from field: string namespace = 2;
|
|
682
|
+
*/
|
|
683
|
+
namespace: string;
|
|
684
|
+
constructor(data?: PartialMessage<DeleteMonographRequest>);
|
|
685
|
+
static readonly runtime: typeof proto3;
|
|
686
|
+
static readonly typeName = "wg.cosmo.platform.v1.DeleteMonographRequest";
|
|
687
|
+
static readonly fields: FieldList;
|
|
688
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteMonographRequest;
|
|
689
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteMonographRequest;
|
|
690
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteMonographRequest;
|
|
691
|
+
static equals(a: DeleteMonographRequest | PlainMessage<DeleteMonographRequest> | undefined, b: DeleteMonographRequest | PlainMessage<DeleteMonographRequest> | undefined): boolean;
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
* @generated from message wg.cosmo.platform.v1.DeleteMonographResponse
|
|
695
|
+
*/
|
|
696
|
+
export declare class DeleteMonographResponse extends Message<DeleteMonographResponse> {
|
|
697
|
+
/**
|
|
698
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
699
|
+
*/
|
|
700
|
+
response?: Response;
|
|
701
|
+
constructor(data?: PartialMessage<DeleteMonographResponse>);
|
|
702
|
+
static readonly runtime: typeof proto3;
|
|
703
|
+
static readonly typeName = "wg.cosmo.platform.v1.DeleteMonographResponse";
|
|
704
|
+
static readonly fields: FieldList;
|
|
705
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteMonographResponse;
|
|
706
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteMonographResponse;
|
|
707
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteMonographResponse;
|
|
708
|
+
static equals(a: DeleteMonographResponse | PlainMessage<DeleteMonographResponse> | undefined, b: DeleteMonographResponse | PlainMessage<DeleteMonographResponse> | undefined): boolean;
|
|
709
|
+
}
|
|
572
710
|
/**
|
|
573
711
|
* @generated from message wg.cosmo.platform.v1.DeleteFederatedSubgraphRequest
|
|
574
712
|
*/
|
|
@@ -972,6 +1110,10 @@ export declare class GetFederatedGraphsRequest extends Message<GetFederatedGraph
|
|
|
972
1110
|
* @generated from field: string namespace = 4;
|
|
973
1111
|
*/
|
|
974
1112
|
namespace: string;
|
|
1113
|
+
/**
|
|
1114
|
+
* @generated from field: optional bool supports_federation = 5;
|
|
1115
|
+
*/
|
|
1116
|
+
supportsFederation?: boolean;
|
|
975
1117
|
constructor(data?: PartialMessage<GetFederatedGraphsRequest>);
|
|
976
1118
|
static readonly runtime: typeof proto3;
|
|
977
1119
|
static readonly typeName = "wg.cosmo.platform.v1.GetFederatedGraphsRequest";
|
|
@@ -1034,7 +1176,11 @@ export declare class FederatedGraph extends Message<FederatedGraph> {
|
|
|
1034
1176
|
*/
|
|
1035
1177
|
namespace: string;
|
|
1036
1178
|
/**
|
|
1037
|
-
* @generated from field:
|
|
1179
|
+
* @generated from field: bool supports_federation = 13;
|
|
1180
|
+
*/
|
|
1181
|
+
supportsFederation: boolean;
|
|
1182
|
+
/**
|
|
1183
|
+
* @generated from field: optional string compositionId = 14;
|
|
1038
1184
|
*/
|
|
1039
1185
|
compositionId?: string;
|
|
1040
1186
|
constructor(data?: PartialMessage<FederatedGraph>);
|
|
@@ -2128,6 +2274,64 @@ export declare class UpdateFederatedGraphResponse extends Message<UpdateFederate
|
|
|
2128
2274
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateFederatedGraphResponse;
|
|
2129
2275
|
static equals(a: UpdateFederatedGraphResponse | PlainMessage<UpdateFederatedGraphResponse> | undefined, b: UpdateFederatedGraphResponse | PlainMessage<UpdateFederatedGraphResponse> | undefined): boolean;
|
|
2130
2276
|
}
|
|
2277
|
+
/**
|
|
2278
|
+
* @generated from message wg.cosmo.platform.v1.UpdateMonographRequest
|
|
2279
|
+
*/
|
|
2280
|
+
export declare class UpdateMonographRequest extends Message<UpdateMonographRequest> {
|
|
2281
|
+
/**
|
|
2282
|
+
* @generated from field: string name = 1;
|
|
2283
|
+
*/
|
|
2284
|
+
name: string;
|
|
2285
|
+
/**
|
|
2286
|
+
* @generated from field: string namespace = 2;
|
|
2287
|
+
*/
|
|
2288
|
+
namespace: string;
|
|
2289
|
+
/**
|
|
2290
|
+
* @generated from field: string routing_url = 3;
|
|
2291
|
+
*/
|
|
2292
|
+
routingUrl: string;
|
|
2293
|
+
/**
|
|
2294
|
+
* @generated from field: string graph_url = 4;
|
|
2295
|
+
*/
|
|
2296
|
+
graphUrl: string;
|
|
2297
|
+
/**
|
|
2298
|
+
* @generated from field: optional wg.cosmo.common.GraphQLSubscriptionProtocol subscription_protocol = 5;
|
|
2299
|
+
*/
|
|
2300
|
+
subscriptionProtocol?: GraphQLSubscriptionProtocol;
|
|
2301
|
+
/**
|
|
2302
|
+
* @generated from field: optional string subscription_url = 6;
|
|
2303
|
+
*/
|
|
2304
|
+
subscriptionUrl?: string;
|
|
2305
|
+
/**
|
|
2306
|
+
* @generated from field: optional string readme = 7;
|
|
2307
|
+
*/
|
|
2308
|
+
readme?: string;
|
|
2309
|
+
constructor(data?: PartialMessage<UpdateMonographRequest>);
|
|
2310
|
+
static readonly runtime: typeof proto3;
|
|
2311
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateMonographRequest";
|
|
2312
|
+
static readonly fields: FieldList;
|
|
2313
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateMonographRequest;
|
|
2314
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateMonographRequest;
|
|
2315
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateMonographRequest;
|
|
2316
|
+
static equals(a: UpdateMonographRequest | PlainMessage<UpdateMonographRequest> | undefined, b: UpdateMonographRequest | PlainMessage<UpdateMonographRequest> | undefined): boolean;
|
|
2317
|
+
}
|
|
2318
|
+
/**
|
|
2319
|
+
* @generated from message wg.cosmo.platform.v1.UpdateMonographResponse
|
|
2320
|
+
*/
|
|
2321
|
+
export declare class UpdateMonographResponse extends Message<UpdateMonographResponse> {
|
|
2322
|
+
/**
|
|
2323
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
2324
|
+
*/
|
|
2325
|
+
response?: Response;
|
|
2326
|
+
constructor(data?: PartialMessage<UpdateMonographResponse>);
|
|
2327
|
+
static readonly runtime: typeof proto3;
|
|
2328
|
+
static readonly typeName = "wg.cosmo.platform.v1.UpdateMonographResponse";
|
|
2329
|
+
static readonly fields: FieldList;
|
|
2330
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateMonographResponse;
|
|
2331
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateMonographResponse;
|
|
2332
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateMonographResponse;
|
|
2333
|
+
static equals(a: UpdateMonographResponse | PlainMessage<UpdateMonographResponse> | undefined, b: UpdateMonographResponse | PlainMessage<UpdateMonographResponse> | undefined): boolean;
|
|
2334
|
+
}
|
|
2131
2335
|
/**
|
|
2132
2336
|
* @generated from message wg.cosmo.platform.v1.CheckFederatedGraphRequest
|
|
2133
2337
|
*/
|
|
@@ -7534,3 +7738,41 @@ export declare class ConfigureNamespaceLintConfigResponse extends Message<Config
|
|
|
7534
7738
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ConfigureNamespaceLintConfigResponse;
|
|
7535
7739
|
static equals(a: ConfigureNamespaceLintConfigResponse | PlainMessage<ConfigureNamespaceLintConfigResponse> | undefined, b: ConfigureNamespaceLintConfigResponse | PlainMessage<ConfigureNamespaceLintConfigResponse> | undefined): boolean;
|
|
7536
7740
|
}
|
|
7741
|
+
/**
|
|
7742
|
+
* @generated from message wg.cosmo.platform.v1.MigrateMonographRequest
|
|
7743
|
+
*/
|
|
7744
|
+
export declare class MigrateMonographRequest extends Message<MigrateMonographRequest> {
|
|
7745
|
+
/**
|
|
7746
|
+
* @generated from field: string name = 1;
|
|
7747
|
+
*/
|
|
7748
|
+
name: string;
|
|
7749
|
+
/**
|
|
7750
|
+
* @generated from field: string namespace = 2;
|
|
7751
|
+
*/
|
|
7752
|
+
namespace: string;
|
|
7753
|
+
constructor(data?: PartialMessage<MigrateMonographRequest>);
|
|
7754
|
+
static readonly runtime: typeof proto3;
|
|
7755
|
+
static readonly typeName = "wg.cosmo.platform.v1.MigrateMonographRequest";
|
|
7756
|
+
static readonly fields: FieldList;
|
|
7757
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MigrateMonographRequest;
|
|
7758
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MigrateMonographRequest;
|
|
7759
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MigrateMonographRequest;
|
|
7760
|
+
static equals(a: MigrateMonographRequest | PlainMessage<MigrateMonographRequest> | undefined, b: MigrateMonographRequest | PlainMessage<MigrateMonographRequest> | undefined): boolean;
|
|
7761
|
+
}
|
|
7762
|
+
/**
|
|
7763
|
+
* @generated from message wg.cosmo.platform.v1.MigrateMonographResponse
|
|
7764
|
+
*/
|
|
7765
|
+
export declare class MigrateMonographResponse extends Message<MigrateMonographResponse> {
|
|
7766
|
+
/**
|
|
7767
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7768
|
+
*/
|
|
7769
|
+
response?: Response;
|
|
7770
|
+
constructor(data?: PartialMessage<MigrateMonographResponse>);
|
|
7771
|
+
static readonly runtime: typeof proto3;
|
|
7772
|
+
static readonly typeName = "wg.cosmo.platform.v1.MigrateMonographResponse";
|
|
7773
|
+
static readonly fields: FieldList;
|
|
7774
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): MigrateMonographResponse;
|
|
7775
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): MigrateMonographResponse;
|
|
7776
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): MigrateMonographResponse;
|
|
7777
|
+
static equals(a: MigrateMonographResponse | PlainMessage<MigrateMonographResponse> | undefined, b: MigrateMonographResponse | PlainMessage<MigrateMonographResponse> | undefined): boolean;
|
|
7778
|
+
}
|