@wundergraph/cosmo-connect 0.115.2 → 0.117.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/node/v1/node_pb.d.ts +33 -0
- package/dist/node/v1/node_pb.js +49 -0
- package/dist/node/v1/node_pb.js.map +1 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +16 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js +16 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +12 -1
- package/dist/platform/v1/platform_connect.js +12 -1
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +149 -0
- package/dist/platform/v1/platform_pb.js +224 -0
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -15,6 +15,23 @@ export declare enum LintSeverity {
|
|
|
15
15
|
*/
|
|
16
16
|
error = 1
|
|
17
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @generated from enum wg.cosmo.platform.v1.SubgraphType
|
|
20
|
+
*/
|
|
21
|
+
export declare enum SubgraphType {
|
|
22
|
+
/**
|
|
23
|
+
* @generated from enum value: STANDARD = 0;
|
|
24
|
+
*/
|
|
25
|
+
STANDARD = 0,
|
|
26
|
+
/**
|
|
27
|
+
* @generated from enum value: GRPC_PLUGIN = 1;
|
|
28
|
+
*/
|
|
29
|
+
GRPC_PLUGIN = 1,
|
|
30
|
+
/**
|
|
31
|
+
* @generated from enum value: GRPC_SERVICE = 2;
|
|
32
|
+
*/
|
|
33
|
+
GRPC_SERVICE = 2
|
|
34
|
+
}
|
|
18
35
|
/**
|
|
19
36
|
* @generated from enum wg.cosmo.platform.v1.AnalyticsViewGroupName
|
|
20
37
|
*/
|
|
@@ -347,6 +364,39 @@ export declare class PublishMonographResponse extends Message<PublishMonographRe
|
|
|
347
364
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PublishMonographResponse;
|
|
348
365
|
static equals(a: PublishMonographResponse | PlainMessage<PublishMonographResponse> | undefined, b: PublishMonographResponse | PlainMessage<PublishMonographResponse> | undefined): boolean;
|
|
349
366
|
}
|
|
367
|
+
/**
|
|
368
|
+
* @generated from message wg.cosmo.platform.v1.ProtoInput
|
|
369
|
+
*/
|
|
370
|
+
export declare class ProtoInput extends Message<ProtoInput> {
|
|
371
|
+
/**
|
|
372
|
+
* @generated from field: string schema = 1;
|
|
373
|
+
*/
|
|
374
|
+
schema: string;
|
|
375
|
+
/**
|
|
376
|
+
* @generated from field: string mappings = 2;
|
|
377
|
+
*/
|
|
378
|
+
mappings: string;
|
|
379
|
+
/**
|
|
380
|
+
* @generated from field: string lock = 3;
|
|
381
|
+
*/
|
|
382
|
+
lock: string;
|
|
383
|
+
/**
|
|
384
|
+
* @generated from field: repeated string platforms = 4;
|
|
385
|
+
*/
|
|
386
|
+
platforms: string[];
|
|
387
|
+
/**
|
|
388
|
+
* @generated from field: string version = 5;
|
|
389
|
+
*/
|
|
390
|
+
version: string;
|
|
391
|
+
constructor(data?: PartialMessage<ProtoInput>);
|
|
392
|
+
static readonly runtime: typeof proto3;
|
|
393
|
+
static readonly typeName = "wg.cosmo.platform.v1.ProtoInput";
|
|
394
|
+
static readonly fields: FieldList;
|
|
395
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ProtoInput;
|
|
396
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ProtoInput;
|
|
397
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ProtoInput;
|
|
398
|
+
static equals(a: ProtoInput | PlainMessage<ProtoInput> | undefined, b: ProtoInput | PlainMessage<ProtoInput> | undefined): boolean;
|
|
399
|
+
}
|
|
350
400
|
/**
|
|
351
401
|
* @generated from message wg.cosmo.platform.v1.PublishFederatedSubgraphRequest
|
|
352
402
|
*/
|
|
@@ -411,6 +461,14 @@ export declare class PublishFederatedSubgraphRequest extends Message<PublishFede
|
|
|
411
461
|
* @generated from field: optional bool disable_resolvability_validation = 12;
|
|
412
462
|
*/
|
|
413
463
|
disableResolvabilityValidation?: boolean;
|
|
464
|
+
/**
|
|
465
|
+
* @generated from field: optional wg.cosmo.platform.v1.SubgraphType type = 13;
|
|
466
|
+
*/
|
|
467
|
+
type?: SubgraphType;
|
|
468
|
+
/**
|
|
469
|
+
* @generated from field: optional wg.cosmo.platform.v1.ProtoInput proto = 14;
|
|
470
|
+
*/
|
|
471
|
+
proto?: ProtoInput;
|
|
414
472
|
constructor(data?: PartialMessage<PublishFederatedSubgraphRequest>);
|
|
415
473
|
static readonly runtime: typeof proto3;
|
|
416
474
|
static readonly typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphRequest";
|
|
@@ -784,6 +842,10 @@ export declare class CreateFederatedSubgraphRequest extends Message<CreateFedera
|
|
|
784
842
|
* @generated from field: optional string base_subgraph_name = 12;
|
|
785
843
|
*/
|
|
786
844
|
baseSubgraphName?: string;
|
|
845
|
+
/**
|
|
846
|
+
* @generated from field: wg.cosmo.platform.v1.SubgraphType type = 13;
|
|
847
|
+
*/
|
|
848
|
+
type: SubgraphType;
|
|
787
849
|
constructor(data?: PartialMessage<CreateFederatedSubgraphRequest>);
|
|
788
850
|
static readonly runtime: typeof proto3;
|
|
789
851
|
static readonly typeName = "wg.cosmo.platform.v1.CreateFederatedSubgraphRequest";
|
|
@@ -1663,6 +1725,14 @@ export declare class Subgraph extends Message<Subgraph> {
|
|
|
1663
1725
|
* @generated from field: optional string baseSubgraphId = 17;
|
|
1664
1726
|
*/
|
|
1665
1727
|
baseSubgraphId?: string;
|
|
1728
|
+
/**
|
|
1729
|
+
* @generated from field: wg.cosmo.platform.v1.SubgraphType type = 18;
|
|
1730
|
+
*/
|
|
1731
|
+
type: SubgraphType;
|
|
1732
|
+
/**
|
|
1733
|
+
* @generated from field: optional wg.cosmo.platform.v1.Subgraph.PluginData pluginData = 19;
|
|
1734
|
+
*/
|
|
1735
|
+
pluginData?: Subgraph_PluginData;
|
|
1666
1736
|
constructor(data?: PartialMessage<Subgraph>);
|
|
1667
1737
|
static readonly runtime: typeof proto3;
|
|
1668
1738
|
static readonly typeName = "wg.cosmo.platform.v1.Subgraph";
|
|
@@ -1672,6 +1742,27 @@ export declare class Subgraph extends Message<Subgraph> {
|
|
|
1672
1742
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Subgraph;
|
|
1673
1743
|
static equals(a: Subgraph | PlainMessage<Subgraph> | undefined, b: Subgraph | PlainMessage<Subgraph> | undefined): boolean;
|
|
1674
1744
|
}
|
|
1745
|
+
/**
|
|
1746
|
+
* @generated from message wg.cosmo.platform.v1.Subgraph.PluginData
|
|
1747
|
+
*/
|
|
1748
|
+
export declare class Subgraph_PluginData extends Message<Subgraph_PluginData> {
|
|
1749
|
+
/**
|
|
1750
|
+
* @generated from field: string version = 1;
|
|
1751
|
+
*/
|
|
1752
|
+
version: string;
|
|
1753
|
+
/**
|
|
1754
|
+
* @generated from field: repeated string platforms = 2;
|
|
1755
|
+
*/
|
|
1756
|
+
platforms: string[];
|
|
1757
|
+
constructor(data?: PartialMessage<Subgraph_PluginData>);
|
|
1758
|
+
static readonly runtime: typeof proto3;
|
|
1759
|
+
static readonly typeName = "wg.cosmo.platform.v1.Subgraph.PluginData";
|
|
1760
|
+
static readonly fields: FieldList;
|
|
1761
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Subgraph_PluginData;
|
|
1762
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): Subgraph_PluginData;
|
|
1763
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): Subgraph_PluginData;
|
|
1764
|
+
static equals(a: Subgraph_PluginData | PlainMessage<Subgraph_PluginData> | undefined, b: Subgraph_PluginData | PlainMessage<Subgraph_PluginData> | undefined): boolean;
|
|
1765
|
+
}
|
|
1675
1766
|
/**
|
|
1676
1767
|
* @generated from message wg.cosmo.platform.v1.GetSubgraphsResponse
|
|
1677
1768
|
*/
|
|
@@ -7416,6 +7507,10 @@ export declare class GraphCompositionSubgraph extends Message<GraphCompositionSu
|
|
|
7416
7507
|
* @generated from field: string changeType = 6;
|
|
7417
7508
|
*/
|
|
7418
7509
|
changeType: string;
|
|
7510
|
+
/**
|
|
7511
|
+
* @generated from field: wg.cosmo.platform.v1.SubgraphType subgraphType = 7;
|
|
7512
|
+
*/
|
|
7513
|
+
subgraphType: SubgraphType;
|
|
7419
7514
|
constructor(data?: PartialMessage<GraphCompositionSubgraph>);
|
|
7420
7515
|
static readonly runtime: typeof proto3;
|
|
7421
7516
|
static readonly typeName = "wg.cosmo.platform.v1.GraphCompositionSubgraph";
|
|
@@ -11565,3 +11660,57 @@ export declare class GetClientsFromAnalyticsResponse_Client extends Message<GetC
|
|
|
11565
11660
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetClientsFromAnalyticsResponse_Client;
|
|
11566
11661
|
static equals(a: GetClientsFromAnalyticsResponse_Client | PlainMessage<GetClientsFromAnalyticsResponse_Client> | undefined, b: GetClientsFromAnalyticsResponse_Client | PlainMessage<GetClientsFromAnalyticsResponse_Client> | undefined): boolean;
|
|
11567
11662
|
}
|
|
11663
|
+
/**
|
|
11664
|
+
* @generated from message wg.cosmo.platform.v1.ValidateAndFetchPluginDataRequest
|
|
11665
|
+
*/
|
|
11666
|
+
export declare class ValidateAndFetchPluginDataRequest extends Message<ValidateAndFetchPluginDataRequest> {
|
|
11667
|
+
/**
|
|
11668
|
+
* @generated from field: string name = 1;
|
|
11669
|
+
*/
|
|
11670
|
+
name: string;
|
|
11671
|
+
/**
|
|
11672
|
+
* @generated from field: string namespace = 2;
|
|
11673
|
+
*/
|
|
11674
|
+
namespace: string;
|
|
11675
|
+
/**
|
|
11676
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 3;
|
|
11677
|
+
*/
|
|
11678
|
+
labels: Label[];
|
|
11679
|
+
constructor(data?: PartialMessage<ValidateAndFetchPluginDataRequest>);
|
|
11680
|
+
static readonly runtime: typeof proto3;
|
|
11681
|
+
static readonly typeName = "wg.cosmo.platform.v1.ValidateAndFetchPluginDataRequest";
|
|
11682
|
+
static readonly fields: FieldList;
|
|
11683
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ValidateAndFetchPluginDataRequest;
|
|
11684
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ValidateAndFetchPluginDataRequest;
|
|
11685
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ValidateAndFetchPluginDataRequest;
|
|
11686
|
+
static equals(a: ValidateAndFetchPluginDataRequest | PlainMessage<ValidateAndFetchPluginDataRequest> | undefined, b: ValidateAndFetchPluginDataRequest | PlainMessage<ValidateAndFetchPluginDataRequest> | undefined): boolean;
|
|
11687
|
+
}
|
|
11688
|
+
/**
|
|
11689
|
+
* @generated from message wg.cosmo.platform.v1.ValidateAndFetchPluginDataResponse
|
|
11690
|
+
*/
|
|
11691
|
+
export declare class ValidateAndFetchPluginDataResponse extends Message<ValidateAndFetchPluginDataResponse> {
|
|
11692
|
+
/**
|
|
11693
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
11694
|
+
*/
|
|
11695
|
+
response?: Response;
|
|
11696
|
+
/**
|
|
11697
|
+
* @generated from field: string newVersion = 2;
|
|
11698
|
+
*/
|
|
11699
|
+
newVersion: string;
|
|
11700
|
+
/**
|
|
11701
|
+
* @generated from field: string pushToken = 3;
|
|
11702
|
+
*/
|
|
11703
|
+
pushToken: string;
|
|
11704
|
+
/**
|
|
11705
|
+
* @generated from field: string reference = 4;
|
|
11706
|
+
*/
|
|
11707
|
+
reference: string;
|
|
11708
|
+
constructor(data?: PartialMessage<ValidateAndFetchPluginDataResponse>);
|
|
11709
|
+
static readonly runtime: typeof proto3;
|
|
11710
|
+
static readonly typeName = "wg.cosmo.platform.v1.ValidateAndFetchPluginDataResponse";
|
|
11711
|
+
static readonly fields: FieldList;
|
|
11712
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ValidateAndFetchPluginDataResponse;
|
|
11713
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ValidateAndFetchPluginDataResponse;
|
|
11714
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ValidateAndFetchPluginDataResponse;
|
|
11715
|
+
static equals(a: ValidateAndFetchPluginDataResponse | PlainMessage<ValidateAndFetchPluginDataResponse> | undefined, b: ValidateAndFetchPluginDataResponse | PlainMessage<ValidateAndFetchPluginDataResponse> | undefined): boolean;
|
|
11716
|
+
}
|
|
@@ -21,6 +21,30 @@ proto3.util.setEnumType(LintSeverity, "wg.cosmo.platform.v1.LintSeverity", [
|
|
|
21
21
|
{ no: 0, name: "warn" },
|
|
22
22
|
{ no: 1, name: "error" },
|
|
23
23
|
]);
|
|
24
|
+
/**
|
|
25
|
+
* @generated from enum wg.cosmo.platform.v1.SubgraphType
|
|
26
|
+
*/
|
|
27
|
+
export var SubgraphType;
|
|
28
|
+
(function (SubgraphType) {
|
|
29
|
+
/**
|
|
30
|
+
* @generated from enum value: STANDARD = 0;
|
|
31
|
+
*/
|
|
32
|
+
SubgraphType[SubgraphType["STANDARD"] = 0] = "STANDARD";
|
|
33
|
+
/**
|
|
34
|
+
* @generated from enum value: GRPC_PLUGIN = 1;
|
|
35
|
+
*/
|
|
36
|
+
SubgraphType[SubgraphType["GRPC_PLUGIN"] = 1] = "GRPC_PLUGIN";
|
|
37
|
+
/**
|
|
38
|
+
* @generated from enum value: GRPC_SERVICE = 2;
|
|
39
|
+
*/
|
|
40
|
+
SubgraphType[SubgraphType["GRPC_SERVICE"] = 2] = "GRPC_SERVICE";
|
|
41
|
+
})(SubgraphType || (SubgraphType = {}));
|
|
42
|
+
// Retrieve enum metadata with: proto3.getEnumType(SubgraphType)
|
|
43
|
+
proto3.util.setEnumType(SubgraphType, "wg.cosmo.platform.v1.SubgraphType", [
|
|
44
|
+
{ no: 0, name: "STANDARD" },
|
|
45
|
+
{ no: 1, name: "GRPC_PLUGIN" },
|
|
46
|
+
{ no: 2, name: "GRPC_SERVICE" },
|
|
47
|
+
]);
|
|
24
48
|
/**
|
|
25
49
|
* @generated from enum wg.cosmo.platform.v1.AnalyticsViewGroupName
|
|
26
50
|
*/
|
|
@@ -504,6 +528,56 @@ export class PublishMonographResponse extends Message {
|
|
|
504
528
|
return proto3.util.equals(PublishMonographResponse, a, b);
|
|
505
529
|
}
|
|
506
530
|
}
|
|
531
|
+
/**
|
|
532
|
+
* @generated from message wg.cosmo.platform.v1.ProtoInput
|
|
533
|
+
*/
|
|
534
|
+
export class ProtoInput extends Message {
|
|
535
|
+
/**
|
|
536
|
+
* @generated from field: string schema = 1;
|
|
537
|
+
*/
|
|
538
|
+
schema = "";
|
|
539
|
+
/**
|
|
540
|
+
* @generated from field: string mappings = 2;
|
|
541
|
+
*/
|
|
542
|
+
mappings = "";
|
|
543
|
+
/**
|
|
544
|
+
* @generated from field: string lock = 3;
|
|
545
|
+
*/
|
|
546
|
+
lock = "";
|
|
547
|
+
/**
|
|
548
|
+
* @generated from field: repeated string platforms = 4;
|
|
549
|
+
*/
|
|
550
|
+
platforms = [];
|
|
551
|
+
/**
|
|
552
|
+
* @generated from field: string version = 5;
|
|
553
|
+
*/
|
|
554
|
+
version = "";
|
|
555
|
+
constructor(data) {
|
|
556
|
+
super();
|
|
557
|
+
proto3.util.initPartial(data, this);
|
|
558
|
+
}
|
|
559
|
+
static runtime = proto3;
|
|
560
|
+
static typeName = "wg.cosmo.platform.v1.ProtoInput";
|
|
561
|
+
static fields = proto3.util.newFieldList(() => [
|
|
562
|
+
{ no: 1, name: "schema", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
563
|
+
{ no: 2, name: "mappings", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
564
|
+
{ no: 3, name: "lock", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
565
|
+
{ no: 4, name: "platforms", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
566
|
+
{ no: 5, name: "version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
567
|
+
]);
|
|
568
|
+
static fromBinary(bytes, options) {
|
|
569
|
+
return new ProtoInput().fromBinary(bytes, options);
|
|
570
|
+
}
|
|
571
|
+
static fromJson(jsonValue, options) {
|
|
572
|
+
return new ProtoInput().fromJson(jsonValue, options);
|
|
573
|
+
}
|
|
574
|
+
static fromJsonString(jsonString, options) {
|
|
575
|
+
return new ProtoInput().fromJsonString(jsonString, options);
|
|
576
|
+
}
|
|
577
|
+
static equals(a, b) {
|
|
578
|
+
return proto3.util.equals(ProtoInput, a, b);
|
|
579
|
+
}
|
|
580
|
+
}
|
|
507
581
|
/**
|
|
508
582
|
* @generated from message wg.cosmo.platform.v1.PublishFederatedSubgraphRequest
|
|
509
583
|
*/
|
|
@@ -568,6 +642,14 @@ export class PublishFederatedSubgraphRequest extends Message {
|
|
|
568
642
|
* @generated from field: optional bool disable_resolvability_validation = 12;
|
|
569
643
|
*/
|
|
570
644
|
disableResolvabilityValidation;
|
|
645
|
+
/**
|
|
646
|
+
* @generated from field: optional wg.cosmo.platform.v1.SubgraphType type = 13;
|
|
647
|
+
*/
|
|
648
|
+
type;
|
|
649
|
+
/**
|
|
650
|
+
* @generated from field: optional wg.cosmo.platform.v1.ProtoInput proto = 14;
|
|
651
|
+
*/
|
|
652
|
+
proto;
|
|
571
653
|
constructor(data) {
|
|
572
654
|
super();
|
|
573
655
|
proto3.util.initPartial(data, this);
|
|
@@ -586,6 +668,8 @@ export class PublishFederatedSubgraphRequest extends Message {
|
|
|
586
668
|
{ no: 10, name: "is_feature_subgraph", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
587
669
|
{ no: 11, name: "base_subgraph_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
588
670
|
{ no: 12, name: "disable_resolvability_validation", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
671
|
+
{ no: 13, name: "type", kind: "enum", T: proto3.getEnumType(SubgraphType), opt: true },
|
|
672
|
+
{ no: 14, name: "proto", kind: "message", T: ProtoInput, opt: true },
|
|
589
673
|
]);
|
|
590
674
|
static fromBinary(bytes, options) {
|
|
591
675
|
return new PublishFederatedSubgraphRequest().fromBinary(bytes, options);
|
|
@@ -1105,6 +1189,10 @@ export class CreateFederatedSubgraphRequest extends Message {
|
|
|
1105
1189
|
* @generated from field: optional string base_subgraph_name = 12;
|
|
1106
1190
|
*/
|
|
1107
1191
|
baseSubgraphName;
|
|
1192
|
+
/**
|
|
1193
|
+
* @generated from field: wg.cosmo.platform.v1.SubgraphType type = 13;
|
|
1194
|
+
*/
|
|
1195
|
+
type = SubgraphType.STANDARD;
|
|
1108
1196
|
constructor(data) {
|
|
1109
1197
|
super();
|
|
1110
1198
|
proto3.util.initPartial(data, this);
|
|
@@ -1123,6 +1211,7 @@ export class CreateFederatedSubgraphRequest extends Message {
|
|
|
1123
1211
|
{ no: 10, name: "is_event_driven_graph", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1124
1212
|
{ no: 11, name: "is_feature_subgraph", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1125
1213
|
{ no: 12, name: "base_subgraph_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1214
|
+
{ no: 13, name: "type", kind: "enum", T: proto3.getEnumType(SubgraphType) },
|
|
1126
1215
|
]);
|
|
1127
1216
|
static fromBinary(bytes, options) {
|
|
1128
1217
|
return new CreateFederatedSubgraphRequest().fromBinary(bytes, options);
|
|
@@ -2433,6 +2522,14 @@ export class Subgraph extends Message {
|
|
|
2433
2522
|
* @generated from field: optional string baseSubgraphId = 17;
|
|
2434
2523
|
*/
|
|
2435
2524
|
baseSubgraphId;
|
|
2525
|
+
/**
|
|
2526
|
+
* @generated from field: wg.cosmo.platform.v1.SubgraphType type = 18;
|
|
2527
|
+
*/
|
|
2528
|
+
type = SubgraphType.STANDARD;
|
|
2529
|
+
/**
|
|
2530
|
+
* @generated from field: optional wg.cosmo.platform.v1.Subgraph.PluginData pluginData = 19;
|
|
2531
|
+
*/
|
|
2532
|
+
pluginData;
|
|
2436
2533
|
constructor(data) {
|
|
2437
2534
|
super();
|
|
2438
2535
|
proto3.util.initPartial(data, this);
|
|
@@ -2457,6 +2554,8 @@ export class Subgraph extends Message {
|
|
|
2457
2554
|
{ no: 15, name: "isFeatureSubgraph", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2458
2555
|
{ no: 16, name: "baseSubgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2459
2556
|
{ no: 17, name: "baseSubgraphId", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2557
|
+
{ no: 18, name: "type", kind: "enum", T: proto3.getEnumType(SubgraphType) },
|
|
2558
|
+
{ no: 19, name: "pluginData", kind: "message", T: Subgraph_PluginData, opt: true },
|
|
2460
2559
|
]);
|
|
2461
2560
|
static fromBinary(bytes, options) {
|
|
2462
2561
|
return new Subgraph().fromBinary(bytes, options);
|
|
@@ -2471,6 +2570,41 @@ export class Subgraph extends Message {
|
|
|
2471
2570
|
return proto3.util.equals(Subgraph, a, b);
|
|
2472
2571
|
}
|
|
2473
2572
|
}
|
|
2573
|
+
/**
|
|
2574
|
+
* @generated from message wg.cosmo.platform.v1.Subgraph.PluginData
|
|
2575
|
+
*/
|
|
2576
|
+
export class Subgraph_PluginData extends Message {
|
|
2577
|
+
/**
|
|
2578
|
+
* @generated from field: string version = 1;
|
|
2579
|
+
*/
|
|
2580
|
+
version = "";
|
|
2581
|
+
/**
|
|
2582
|
+
* @generated from field: repeated string platforms = 2;
|
|
2583
|
+
*/
|
|
2584
|
+
platforms = [];
|
|
2585
|
+
constructor(data) {
|
|
2586
|
+
super();
|
|
2587
|
+
proto3.util.initPartial(data, this);
|
|
2588
|
+
}
|
|
2589
|
+
static runtime = proto3;
|
|
2590
|
+
static typeName = "wg.cosmo.platform.v1.Subgraph.PluginData";
|
|
2591
|
+
static fields = proto3.util.newFieldList(() => [
|
|
2592
|
+
{ no: 1, name: "version", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2593
|
+
{ no: 2, name: "platforms", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
2594
|
+
]);
|
|
2595
|
+
static fromBinary(bytes, options) {
|
|
2596
|
+
return new Subgraph_PluginData().fromBinary(bytes, options);
|
|
2597
|
+
}
|
|
2598
|
+
static fromJson(jsonValue, options) {
|
|
2599
|
+
return new Subgraph_PluginData().fromJson(jsonValue, options);
|
|
2600
|
+
}
|
|
2601
|
+
static fromJsonString(jsonString, options) {
|
|
2602
|
+
return new Subgraph_PluginData().fromJsonString(jsonString, options);
|
|
2603
|
+
}
|
|
2604
|
+
static equals(a, b) {
|
|
2605
|
+
return proto3.util.equals(Subgraph_PluginData, a, b);
|
|
2606
|
+
}
|
|
2607
|
+
}
|
|
2474
2608
|
/**
|
|
2475
2609
|
* @generated from message wg.cosmo.platform.v1.GetSubgraphsResponse
|
|
2476
2610
|
*/
|
|
@@ -11527,6 +11661,10 @@ export class GraphCompositionSubgraph extends Message {
|
|
|
11527
11661
|
* @generated from field: string changeType = 6;
|
|
11528
11662
|
*/
|
|
11529
11663
|
changeType = "";
|
|
11664
|
+
/**
|
|
11665
|
+
* @generated from field: wg.cosmo.platform.v1.SubgraphType subgraphType = 7;
|
|
11666
|
+
*/
|
|
11667
|
+
subgraphType = SubgraphType.STANDARD;
|
|
11530
11668
|
constructor(data) {
|
|
11531
11669
|
super();
|
|
11532
11670
|
proto3.util.initPartial(data, this);
|
|
@@ -11540,6 +11678,7 @@ export class GraphCompositionSubgraph extends Message {
|
|
|
11540
11678
|
{ no: 4, name: "target_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
11541
11679
|
{ no: 5, name: "isFeatureSubgraph", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
11542
11680
|
{ no: 6, name: "changeType", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
11681
|
+
{ no: 7, name: "subgraphType", kind: "enum", T: proto3.getEnumType(SubgraphType) },
|
|
11543
11682
|
]);
|
|
11544
11683
|
static fromBinary(bytes, options) {
|
|
11545
11684
|
return new GraphCompositionSubgraph().fromBinary(bytes, options);
|
|
@@ -18116,4 +18255,89 @@ export class GetClientsFromAnalyticsResponse_Client extends Message {
|
|
|
18116
18255
|
return proto3.util.equals(GetClientsFromAnalyticsResponse_Client, a, b);
|
|
18117
18256
|
}
|
|
18118
18257
|
}
|
|
18258
|
+
/**
|
|
18259
|
+
* @generated from message wg.cosmo.platform.v1.ValidateAndFetchPluginDataRequest
|
|
18260
|
+
*/
|
|
18261
|
+
export class ValidateAndFetchPluginDataRequest extends Message {
|
|
18262
|
+
/**
|
|
18263
|
+
* @generated from field: string name = 1;
|
|
18264
|
+
*/
|
|
18265
|
+
name = "";
|
|
18266
|
+
/**
|
|
18267
|
+
* @generated from field: string namespace = 2;
|
|
18268
|
+
*/
|
|
18269
|
+
namespace = "";
|
|
18270
|
+
/**
|
|
18271
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 3;
|
|
18272
|
+
*/
|
|
18273
|
+
labels = [];
|
|
18274
|
+
constructor(data) {
|
|
18275
|
+
super();
|
|
18276
|
+
proto3.util.initPartial(data, this);
|
|
18277
|
+
}
|
|
18278
|
+
static runtime = proto3;
|
|
18279
|
+
static typeName = "wg.cosmo.platform.v1.ValidateAndFetchPluginDataRequest";
|
|
18280
|
+
static fields = proto3.util.newFieldList(() => [
|
|
18281
|
+
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
18282
|
+
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
18283
|
+
{ no: 3, name: "labels", kind: "message", T: Label, repeated: true },
|
|
18284
|
+
]);
|
|
18285
|
+
static fromBinary(bytes, options) {
|
|
18286
|
+
return new ValidateAndFetchPluginDataRequest().fromBinary(bytes, options);
|
|
18287
|
+
}
|
|
18288
|
+
static fromJson(jsonValue, options) {
|
|
18289
|
+
return new ValidateAndFetchPluginDataRequest().fromJson(jsonValue, options);
|
|
18290
|
+
}
|
|
18291
|
+
static fromJsonString(jsonString, options) {
|
|
18292
|
+
return new ValidateAndFetchPluginDataRequest().fromJsonString(jsonString, options);
|
|
18293
|
+
}
|
|
18294
|
+
static equals(a, b) {
|
|
18295
|
+
return proto3.util.equals(ValidateAndFetchPluginDataRequest, a, b);
|
|
18296
|
+
}
|
|
18297
|
+
}
|
|
18298
|
+
/**
|
|
18299
|
+
* @generated from message wg.cosmo.platform.v1.ValidateAndFetchPluginDataResponse
|
|
18300
|
+
*/
|
|
18301
|
+
export class ValidateAndFetchPluginDataResponse extends Message {
|
|
18302
|
+
/**
|
|
18303
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
18304
|
+
*/
|
|
18305
|
+
response;
|
|
18306
|
+
/**
|
|
18307
|
+
* @generated from field: string newVersion = 2;
|
|
18308
|
+
*/
|
|
18309
|
+
newVersion = "";
|
|
18310
|
+
/**
|
|
18311
|
+
* @generated from field: string pushToken = 3;
|
|
18312
|
+
*/
|
|
18313
|
+
pushToken = "";
|
|
18314
|
+
/**
|
|
18315
|
+
* @generated from field: string reference = 4;
|
|
18316
|
+
*/
|
|
18317
|
+
reference = "";
|
|
18318
|
+
constructor(data) {
|
|
18319
|
+
super();
|
|
18320
|
+
proto3.util.initPartial(data, this);
|
|
18321
|
+
}
|
|
18322
|
+
static runtime = proto3;
|
|
18323
|
+
static typeName = "wg.cosmo.platform.v1.ValidateAndFetchPluginDataResponse";
|
|
18324
|
+
static fields = proto3.util.newFieldList(() => [
|
|
18325
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
18326
|
+
{ no: 2, name: "newVersion", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
18327
|
+
{ no: 3, name: "pushToken", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
18328
|
+
{ no: 4, name: "reference", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
18329
|
+
]);
|
|
18330
|
+
static fromBinary(bytes, options) {
|
|
18331
|
+
return new ValidateAndFetchPluginDataResponse().fromBinary(bytes, options);
|
|
18332
|
+
}
|
|
18333
|
+
static fromJson(jsonValue, options) {
|
|
18334
|
+
return new ValidateAndFetchPluginDataResponse().fromJson(jsonValue, options);
|
|
18335
|
+
}
|
|
18336
|
+
static fromJsonString(jsonString, options) {
|
|
18337
|
+
return new ValidateAndFetchPluginDataResponse().fromJsonString(jsonString, options);
|
|
18338
|
+
}
|
|
18339
|
+
static equals(a, b) {
|
|
18340
|
+
return proto3.util.equals(ValidateAndFetchPluginDataResponse, a, b);
|
|
18341
|
+
}
|
|
18342
|
+
}
|
|
18119
18343
|
//# sourceMappingURL=platform_pb.js.map
|