@wundergraph/cosmo-connect 0.85.0 → 0.86.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.
|
@@ -451,6 +451,10 @@ export class PublishMonographResponse extends Message {
|
|
|
451
451
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
452
452
|
*/
|
|
453
453
|
deploymentErrors = [];
|
|
454
|
+
/**
|
|
455
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
456
|
+
*/
|
|
457
|
+
compositionWarnings = [];
|
|
454
458
|
constructor(data) {
|
|
455
459
|
super();
|
|
456
460
|
proto3.util.initPartial(data, this);
|
|
@@ -461,6 +465,7 @@ export class PublishMonographResponse extends Message {
|
|
|
461
465
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
462
466
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
463
467
|
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
468
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
464
469
|
]);
|
|
465
470
|
static fromBinary(bytes, options) {
|
|
466
471
|
return new PublishMonographResponse().fromBinary(bytes, options);
|
|
@@ -586,6 +591,10 @@ export class PublishFederatedSubgraphResponse extends Message {
|
|
|
586
591
|
* @generated from field: optional bool hasChanged = 4;
|
|
587
592
|
*/
|
|
588
593
|
hasChanged;
|
|
594
|
+
/**
|
|
595
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 5;
|
|
596
|
+
*/
|
|
597
|
+
compositionWarnings = [];
|
|
589
598
|
constructor(data) {
|
|
590
599
|
super();
|
|
591
600
|
proto3.util.initPartial(data, this);
|
|
@@ -597,6 +606,7 @@ export class PublishFederatedSubgraphResponse extends Message {
|
|
|
597
606
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
598
607
|
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
599
608
|
{ no: 4, name: "hasChanged", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
609
|
+
{ no: 5, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
600
610
|
]);
|
|
601
611
|
static fromBinary(bytes, options) {
|
|
602
612
|
return new PublishFederatedSubgraphResponse().fromBinary(bytes, options);
|
|
@@ -1305,6 +1315,51 @@ export class CompositionError extends Message {
|
|
|
1305
1315
|
return proto3.util.equals(CompositionError, a, b);
|
|
1306
1316
|
}
|
|
1307
1317
|
}
|
|
1318
|
+
/**
|
|
1319
|
+
* @generated from message wg.cosmo.platform.v1.CompositionWarning
|
|
1320
|
+
*/
|
|
1321
|
+
export class CompositionWarning extends Message {
|
|
1322
|
+
/**
|
|
1323
|
+
* @generated from field: string message = 1;
|
|
1324
|
+
*/
|
|
1325
|
+
message = "";
|
|
1326
|
+
/**
|
|
1327
|
+
* @generated from field: string federatedGraphName = 2;
|
|
1328
|
+
*/
|
|
1329
|
+
federatedGraphName = "";
|
|
1330
|
+
/**
|
|
1331
|
+
* @generated from field: string namespace = 3;
|
|
1332
|
+
*/
|
|
1333
|
+
namespace = "";
|
|
1334
|
+
/**
|
|
1335
|
+
* @generated from field: string featureFlag = 4;
|
|
1336
|
+
*/
|
|
1337
|
+
featureFlag = "";
|
|
1338
|
+
constructor(data) {
|
|
1339
|
+
super();
|
|
1340
|
+
proto3.util.initPartial(data, this);
|
|
1341
|
+
}
|
|
1342
|
+
static runtime = proto3;
|
|
1343
|
+
static typeName = "wg.cosmo.platform.v1.CompositionWarning";
|
|
1344
|
+
static fields = proto3.util.newFieldList(() => [
|
|
1345
|
+
{ no: 1, name: "message", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1346
|
+
{ no: 2, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1347
|
+
{ no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1348
|
+
{ no: 4, name: "featureFlag", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1349
|
+
]);
|
|
1350
|
+
static fromBinary(bytes, options) {
|
|
1351
|
+
return new CompositionWarning().fromBinary(bytes, options);
|
|
1352
|
+
}
|
|
1353
|
+
static fromJson(jsonValue, options) {
|
|
1354
|
+
return new CompositionWarning().fromJson(jsonValue, options);
|
|
1355
|
+
}
|
|
1356
|
+
static fromJsonString(jsonString, options) {
|
|
1357
|
+
return new CompositionWarning().fromJsonString(jsonString, options);
|
|
1358
|
+
}
|
|
1359
|
+
static equals(a, b) {
|
|
1360
|
+
return proto3.util.equals(CompositionWarning, a, b);
|
|
1361
|
+
}
|
|
1362
|
+
}
|
|
1308
1363
|
/**
|
|
1309
1364
|
* @generated from message wg.cosmo.platform.v1.DeploymentError
|
|
1310
1365
|
*/
|
|
@@ -1634,6 +1689,10 @@ export class CheckSubgraphSchemaResponse extends Message {
|
|
|
1634
1689
|
* @generated from field: optional bool client_traffic_check_skipped = 12;
|
|
1635
1690
|
*/
|
|
1636
1691
|
clientTrafficCheckSkipped;
|
|
1692
|
+
/**
|
|
1693
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 13;
|
|
1694
|
+
*/
|
|
1695
|
+
compositionWarnings = [];
|
|
1637
1696
|
constructor(data) {
|
|
1638
1697
|
super();
|
|
1639
1698
|
proto3.util.initPartial(data, this);
|
|
@@ -1653,6 +1712,7 @@ export class CheckSubgraphSchemaResponse extends Message {
|
|
|
1653
1712
|
{ no: 10, name: "graphPruneWarnings", kind: "message", T: GraphPruningIssue, repeated: true },
|
|
1654
1713
|
{ no: 11, name: "graphPruneErrors", kind: "message", T: GraphPruningIssue, repeated: true },
|
|
1655
1714
|
{ no: 12, name: "client_traffic_check_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1715
|
+
{ no: 13, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
1656
1716
|
]);
|
|
1657
1717
|
static fromBinary(bytes, options) {
|
|
1658
1718
|
return new CheckSubgraphSchemaResponse().fromBinary(bytes, options);
|
|
@@ -1723,6 +1783,10 @@ export class CreateFederatedGraphResponse extends Message {
|
|
|
1723
1783
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
1724
1784
|
*/
|
|
1725
1785
|
deploymentErrors = [];
|
|
1786
|
+
/**
|
|
1787
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
1788
|
+
*/
|
|
1789
|
+
compositionWarnings = [];
|
|
1726
1790
|
constructor(data) {
|
|
1727
1791
|
super();
|
|
1728
1792
|
proto3.util.initPartial(data, this);
|
|
@@ -1733,6 +1797,7 @@ export class CreateFederatedGraphResponse extends Message {
|
|
|
1733
1797
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
1734
1798
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
1735
1799
|
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
1800
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
1736
1801
|
]);
|
|
1737
1802
|
static fromBinary(bytes, options) {
|
|
1738
1803
|
return new CreateFederatedGraphResponse().fromBinary(bytes, options);
|
|
@@ -1793,6 +1858,10 @@ export class DeleteFederatedSubgraphResponse extends Message {
|
|
|
1793
1858
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
1794
1859
|
*/
|
|
1795
1860
|
deploymentErrors = [];
|
|
1861
|
+
/**
|
|
1862
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
1863
|
+
*/
|
|
1864
|
+
compositionWarnings = [];
|
|
1796
1865
|
constructor(data) {
|
|
1797
1866
|
super();
|
|
1798
1867
|
proto3.util.initPartial(data, this);
|
|
@@ -1803,6 +1872,7 @@ export class DeleteFederatedSubgraphResponse extends Message {
|
|
|
1803
1872
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
1804
1873
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
1805
1874
|
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
1875
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
1806
1876
|
]);
|
|
1807
1877
|
static fromBinary(bytes, options) {
|
|
1808
1878
|
return new DeleteFederatedSubgraphResponse().fromBinary(bytes, options);
|
|
@@ -1913,6 +1983,10 @@ export class Contract extends Message {
|
|
|
1913
1983
|
* @generated from field: repeated string exclude_tags = 3;
|
|
1914
1984
|
*/
|
|
1915
1985
|
excludeTags = [];
|
|
1986
|
+
/**
|
|
1987
|
+
* @generated from field: repeated string include_tags = 4;
|
|
1988
|
+
*/
|
|
1989
|
+
includeTags = [];
|
|
1916
1990
|
constructor(data) {
|
|
1917
1991
|
super();
|
|
1918
1992
|
proto3.util.initPartial(data, this);
|
|
@@ -1923,6 +1997,7 @@ export class Contract extends Message {
|
|
|
1923
1997
|
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1924
1998
|
{ no: 2, name: "source_federated_graph_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1925
1999
|
{ no: 3, name: "exclude_tags", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
2000
|
+
{ no: 4, name: "include_tags", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
1926
2001
|
]);
|
|
1927
2002
|
static fromBinary(bytes, options) {
|
|
1928
2003
|
return new Contract().fromBinary(bytes, options);
|
|
@@ -3120,6 +3195,10 @@ export class GetCheckSummaryResponse extends Message {
|
|
|
3120
3195
|
* @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruningIssues = 10;
|
|
3121
3196
|
*/
|
|
3122
3197
|
graphPruningIssues = [];
|
|
3198
|
+
/**
|
|
3199
|
+
* @generated from field: repeated string compositionWarnings = 11;
|
|
3200
|
+
*/
|
|
3201
|
+
compositionWarnings = [];
|
|
3123
3202
|
constructor(data) {
|
|
3124
3203
|
super();
|
|
3125
3204
|
proto3.util.initPartial(data, this);
|
|
@@ -3136,6 +3215,7 @@ export class GetCheckSummaryResponse extends Message {
|
|
|
3136
3215
|
{ no: 8, name: "traffic_check_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3137
3216
|
{ no: 9, name: "lintIssues", kind: "message", T: LintIssue, repeated: true },
|
|
3138
3217
|
{ no: 10, name: "graphPruningIssues", kind: "message", T: GraphPruningIssue, repeated: true },
|
|
3218
|
+
{ no: 11, name: "compositionWarnings", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
3139
3219
|
]);
|
|
3140
3220
|
static fromBinary(bytes, options) {
|
|
3141
3221
|
return new GetCheckSummaryResponse().fromBinary(bytes, options);
|
|
@@ -3715,6 +3795,10 @@ export class UpdateSubgraphResponse extends Message {
|
|
|
3715
3795
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
3716
3796
|
*/
|
|
3717
3797
|
deploymentErrors = [];
|
|
3798
|
+
/**
|
|
3799
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
3800
|
+
*/
|
|
3801
|
+
compositionWarnings = [];
|
|
3718
3802
|
constructor(data) {
|
|
3719
3803
|
super();
|
|
3720
3804
|
proto3.util.initPartial(data, this);
|
|
@@ -3725,6 +3809,7 @@ export class UpdateSubgraphResponse extends Message {
|
|
|
3725
3809
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
3726
3810
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
3727
3811
|
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
3812
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
3728
3813
|
]);
|
|
3729
3814
|
static fromBinary(bytes, options) {
|
|
3730
3815
|
return new UpdateSubgraphResponse().fromBinary(bytes, options);
|
|
@@ -3820,6 +3905,10 @@ export class UpdateFederatedGraphResponse extends Message {
|
|
|
3820
3905
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
3821
3906
|
*/
|
|
3822
3907
|
deploymentErrors = [];
|
|
3908
|
+
/**
|
|
3909
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
3910
|
+
*/
|
|
3911
|
+
compositionWarnings = [];
|
|
3823
3912
|
constructor(data) {
|
|
3824
3913
|
super();
|
|
3825
3914
|
proto3.util.initPartial(data, this);
|
|
@@ -3830,6 +3919,7 @@ export class UpdateFederatedGraphResponse extends Message {
|
|
|
3830
3919
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
3831
3920
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
3832
3921
|
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
3922
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
3833
3923
|
]);
|
|
3834
3924
|
static fromBinary(bytes, options) {
|
|
3835
3925
|
return new UpdateFederatedGraphResponse().fromBinary(bytes, options);
|
|
@@ -4005,6 +4095,10 @@ export class CheckFederatedGraphResponse extends Message {
|
|
|
4005
4095
|
* @generated from field: repeated wg.cosmo.platform.v1.Subgraph subgraphs = 3;
|
|
4006
4096
|
*/
|
|
4007
4097
|
subgraphs = [];
|
|
4098
|
+
/**
|
|
4099
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
4100
|
+
*/
|
|
4101
|
+
compositionWarnings = [];
|
|
4008
4102
|
constructor(data) {
|
|
4009
4103
|
super();
|
|
4010
4104
|
proto3.util.initPartial(data, this);
|
|
@@ -4015,6 +4109,7 @@ export class CheckFederatedGraphResponse extends Message {
|
|
|
4015
4109
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
4016
4110
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
4017
4111
|
{ no: 3, name: "subgraphs", kind: "message", T: Subgraph, repeated: true },
|
|
4112
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
4018
4113
|
]);
|
|
4019
4114
|
static fromBinary(bytes, options) {
|
|
4020
4115
|
return new CheckFederatedGraphResponse().fromBinary(bytes, options);
|
|
@@ -10196,6 +10291,10 @@ export class GraphComposition extends Message {
|
|
|
10196
10291
|
* @generated from field: optional string triggeredBySubgraphName = 12;
|
|
10197
10292
|
*/
|
|
10198
10293
|
triggeredBySubgraphName;
|
|
10294
|
+
/**
|
|
10295
|
+
* @generated from field: optional string compositionWarnings = 13;
|
|
10296
|
+
*/
|
|
10297
|
+
compositionWarnings;
|
|
10199
10298
|
constructor(data) {
|
|
10200
10299
|
super();
|
|
10201
10300
|
proto3.util.initPartial(data, this);
|
|
@@ -10215,6 +10314,7 @@ export class GraphComposition extends Message {
|
|
|
10215
10314
|
{ no: 10, name: "deploymentError", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
10216
10315
|
{ no: 11, name: "hasMultipleChangedSubgraphs", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
10217
10316
|
{ no: 12, name: "triggeredBySubgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
10317
|
+
{ no: 13, name: "compositionWarnings", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
10218
10318
|
]);
|
|
10219
10319
|
static fromBinary(bytes, options) {
|
|
10220
10320
|
return new GraphComposition().fromBinary(bytes, options);
|
|
@@ -10463,6 +10563,10 @@ export class FeatureFlagComposition extends Message {
|
|
|
10463
10563
|
* @generated from field: string featureFlagName = 10;
|
|
10464
10564
|
*/
|
|
10465
10565
|
featureFlagName = "";
|
|
10566
|
+
/**
|
|
10567
|
+
* @generated from field: optional string compositionWarnings = 11;
|
|
10568
|
+
*/
|
|
10569
|
+
compositionWarnings;
|
|
10466
10570
|
constructor(data) {
|
|
10467
10571
|
super();
|
|
10468
10572
|
proto3.util.initPartial(data, this);
|
|
@@ -10480,6 +10584,7 @@ export class FeatureFlagComposition extends Message {
|
|
|
10480
10584
|
{ no: 8, name: "admissionError", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
10481
10585
|
{ no: 9, name: "deploymentError", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
10482
10586
|
{ no: 10, name: "featureFlagName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
10587
|
+
{ no: 11, name: "compositionWarnings", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
10483
10588
|
]);
|
|
10484
10589
|
static fromBinary(bytes, options) {
|
|
10485
10590
|
return new FeatureFlagComposition().fromBinary(bytes, options);
|
|
@@ -12733,6 +12838,10 @@ export class MoveGraphResponse extends Message {
|
|
|
12733
12838
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
12734
12839
|
*/
|
|
12735
12840
|
deploymentErrors = [];
|
|
12841
|
+
/**
|
|
12842
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
12843
|
+
*/
|
|
12844
|
+
compositionWarnings = [];
|
|
12736
12845
|
constructor(data) {
|
|
12737
12846
|
super();
|
|
12738
12847
|
proto3.util.initPartial(data, this);
|
|
@@ -12743,6 +12852,7 @@ export class MoveGraphResponse extends Message {
|
|
|
12743
12852
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
12744
12853
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
12745
12854
|
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
12855
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
12746
12856
|
]);
|
|
12747
12857
|
static fromBinary(bytes, options) {
|
|
12748
12858
|
return new MoveGraphResponse().fromBinary(bytes, options);
|
|
@@ -13432,6 +13542,10 @@ export class CreateContractRequest extends Message {
|
|
|
13432
13542
|
* @generated from field: optional string admission_webhook_secret = 8;
|
|
13433
13543
|
*/
|
|
13434
13544
|
admissionWebhookSecret;
|
|
13545
|
+
/**
|
|
13546
|
+
* @generated from field: repeated string include_tags = 9;
|
|
13547
|
+
*/
|
|
13548
|
+
includeTags = [];
|
|
13435
13549
|
constructor(data) {
|
|
13436
13550
|
super();
|
|
13437
13551
|
proto3.util.initPartial(data, this);
|
|
@@ -13447,6 +13561,7 @@ export class CreateContractRequest extends Message {
|
|
|
13447
13561
|
{ no: 6, name: "exclude_tags", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
13448
13562
|
{ no: 7, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
13449
13563
|
{ no: 8, name: "admission_webhook_secret", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
13564
|
+
{ no: 9, name: "include_tags", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
13450
13565
|
]);
|
|
13451
13566
|
static fromBinary(bytes, options) {
|
|
13452
13567
|
return new CreateContractRequest().fromBinary(bytes, options);
|
|
@@ -13477,6 +13592,10 @@ export class CreateContractResponse extends Message {
|
|
|
13477
13592
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
13478
13593
|
*/
|
|
13479
13594
|
deploymentErrors = [];
|
|
13595
|
+
/**
|
|
13596
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
13597
|
+
*/
|
|
13598
|
+
compositionWarnings = [];
|
|
13480
13599
|
constructor(data) {
|
|
13481
13600
|
super();
|
|
13482
13601
|
proto3.util.initPartial(data, this);
|
|
@@ -13487,6 +13606,7 @@ export class CreateContractResponse extends Message {
|
|
|
13487
13606
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
13488
13607
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
13489
13608
|
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
13609
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
13490
13610
|
]);
|
|
13491
13611
|
static fromBinary(bytes, options) {
|
|
13492
13612
|
return new CreateContractResponse().fromBinary(bytes, options);
|
|
@@ -13517,6 +13637,10 @@ export class UpdateContractRequest extends Message {
|
|
|
13517
13637
|
* @generated from field: repeated string exclude_tags = 3;
|
|
13518
13638
|
*/
|
|
13519
13639
|
excludeTags = [];
|
|
13640
|
+
/**
|
|
13641
|
+
* @generated from field: repeated string include_tags = 4;
|
|
13642
|
+
*/
|
|
13643
|
+
includeTags = [];
|
|
13520
13644
|
constructor(data) {
|
|
13521
13645
|
super();
|
|
13522
13646
|
proto3.util.initPartial(data, this);
|
|
@@ -13527,6 +13651,7 @@ export class UpdateContractRequest extends Message {
|
|
|
13527
13651
|
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
13528
13652
|
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
13529
13653
|
{ no: 3, name: "exclude_tags", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
13654
|
+
{ no: 4, name: "include_tags", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
13530
13655
|
]);
|
|
13531
13656
|
static fromBinary(bytes, options) {
|
|
13532
13657
|
return new UpdateContractRequest().fromBinary(bytes, options);
|
|
@@ -13557,6 +13682,10 @@ export class UpdateContractResponse extends Message {
|
|
|
13557
13682
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
|
|
13558
13683
|
*/
|
|
13559
13684
|
deploymentErrors = [];
|
|
13685
|
+
/**
|
|
13686
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
13687
|
+
*/
|
|
13688
|
+
compositionWarnings = [];
|
|
13560
13689
|
constructor(data) {
|
|
13561
13690
|
super();
|
|
13562
13691
|
proto3.util.initPartial(data, this);
|
|
@@ -13567,6 +13696,7 @@ export class UpdateContractResponse extends Message {
|
|
|
13567
13696
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
13568
13697
|
{ no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
|
|
13569
13698
|
{ no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
|
|
13699
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
13570
13700
|
]);
|
|
13571
13701
|
static fromBinary(bytes, options) {
|
|
13572
13702
|
return new UpdateContractResponse().fromBinary(bytes, options);
|
|
@@ -13765,6 +13895,10 @@ export class CreateFeatureFlagResponse extends Message {
|
|
|
13765
13895
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deployment_errors = 3;
|
|
13766
13896
|
*/
|
|
13767
13897
|
deploymentErrors = [];
|
|
13898
|
+
/**
|
|
13899
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
13900
|
+
*/
|
|
13901
|
+
compositionWarnings = [];
|
|
13768
13902
|
constructor(data) {
|
|
13769
13903
|
super();
|
|
13770
13904
|
proto3.util.initPartial(data, this);
|
|
@@ -13775,6 +13909,7 @@ export class CreateFeatureFlagResponse extends Message {
|
|
|
13775
13909
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
13776
13910
|
{ no: 2, name: "composition_errors", kind: "message", T: CompositionError, repeated: true },
|
|
13777
13911
|
{ no: 3, name: "deployment_errors", kind: "message", T: DeploymentError, repeated: true },
|
|
13912
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
13778
13913
|
]);
|
|
13779
13914
|
static fromBinary(bytes, options) {
|
|
13780
13915
|
return new CreateFeatureFlagResponse().fromBinary(bytes, options);
|
|
@@ -13855,6 +13990,10 @@ export class UpdateFeatureFlagResponse extends Message {
|
|
|
13855
13990
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deployment_errors = 3;
|
|
13856
13991
|
*/
|
|
13857
13992
|
deploymentErrors = [];
|
|
13993
|
+
/**
|
|
13994
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
13995
|
+
*/
|
|
13996
|
+
compositionWarnings = [];
|
|
13858
13997
|
constructor(data) {
|
|
13859
13998
|
super();
|
|
13860
13999
|
proto3.util.initPartial(data, this);
|
|
@@ -13865,6 +14004,7 @@ export class UpdateFeatureFlagResponse extends Message {
|
|
|
13865
14004
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
13866
14005
|
{ no: 2, name: "composition_errors", kind: "message", T: CompositionError, repeated: true },
|
|
13867
14006
|
{ no: 3, name: "deployment_errors", kind: "message", T: DeploymentError, repeated: true },
|
|
14007
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
13868
14008
|
]);
|
|
13869
14009
|
static fromBinary(bytes, options) {
|
|
13870
14010
|
return new UpdateFeatureFlagResponse().fromBinary(bytes, options);
|
|
@@ -13939,6 +14079,10 @@ export class EnableFeatureFlagResponse extends Message {
|
|
|
13939
14079
|
* @generated from field: optional bool has_changed = 4;
|
|
13940
14080
|
*/
|
|
13941
14081
|
hasChanged;
|
|
14082
|
+
/**
|
|
14083
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 5;
|
|
14084
|
+
*/
|
|
14085
|
+
compositionWarnings = [];
|
|
13942
14086
|
constructor(data) {
|
|
13943
14087
|
super();
|
|
13944
14088
|
proto3.util.initPartial(data, this);
|
|
@@ -13950,6 +14094,7 @@ export class EnableFeatureFlagResponse extends Message {
|
|
|
13950
14094
|
{ no: 2, name: "composition_errors", kind: "message", T: CompositionError, repeated: true },
|
|
13951
14095
|
{ no: 3, name: "deployment_errors", kind: "message", T: DeploymentError, repeated: true },
|
|
13952
14096
|
{ no: 4, name: "has_changed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
14097
|
+
{ no: 5, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
13953
14098
|
]);
|
|
13954
14099
|
static fromBinary(bytes, options) {
|
|
13955
14100
|
return new EnableFeatureFlagResponse().fromBinary(bytes, options);
|
|
@@ -14015,6 +14160,10 @@ export class DeleteFeatureFlagResponse extends Message {
|
|
|
14015
14160
|
* @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deployment_errors = 3;
|
|
14016
14161
|
*/
|
|
14017
14162
|
deploymentErrors = [];
|
|
14163
|
+
/**
|
|
14164
|
+
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
14165
|
+
*/
|
|
14166
|
+
compositionWarnings = [];
|
|
14018
14167
|
constructor(data) {
|
|
14019
14168
|
super();
|
|
14020
14169
|
proto3.util.initPartial(data, this);
|
|
@@ -14025,6 +14174,7 @@ export class DeleteFeatureFlagResponse extends Message {
|
|
|
14025
14174
|
{ no: 1, name: "response", kind: "message", T: Response },
|
|
14026
14175
|
{ no: 2, name: "composition_errors", kind: "message", T: CompositionError, repeated: true },
|
|
14027
14176
|
{ no: 3, name: "deployment_errors", kind: "message", T: DeploymentError, repeated: true },
|
|
14177
|
+
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
14028
14178
|
]);
|
|
14029
14179
|
static fromBinary(bytes, options) {
|
|
14030
14180
|
return new DeleteFeatureFlagResponse().fromBinary(bytes, options);
|