@wundergraph/cosmo-connect 0.85.1 → 0.87.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);
@@ -3125,6 +3195,10 @@ export class GetCheckSummaryResponse extends Message {
3125
3195
  * @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruningIssues = 10;
3126
3196
  */
3127
3197
  graphPruningIssues = [];
3198
+ /**
3199
+ * @generated from field: repeated string compositionWarnings = 11;
3200
+ */
3201
+ compositionWarnings = [];
3128
3202
  constructor(data) {
3129
3203
  super();
3130
3204
  proto3.util.initPartial(data, this);
@@ -3141,6 +3215,7 @@ export class GetCheckSummaryResponse extends Message {
3141
3215
  { no: 8, name: "traffic_check_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3142
3216
  { no: 9, name: "lintIssues", kind: "message", T: LintIssue, repeated: true },
3143
3217
  { no: 10, name: "graphPruningIssues", kind: "message", T: GraphPruningIssue, repeated: true },
3218
+ { no: 11, name: "compositionWarnings", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
3144
3219
  ]);
3145
3220
  static fromBinary(bytes, options) {
3146
3221
  return new GetCheckSummaryResponse().fromBinary(bytes, options);
@@ -3720,6 +3795,10 @@ export class UpdateSubgraphResponse extends Message {
3720
3795
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
3721
3796
  */
3722
3797
  deploymentErrors = [];
3798
+ /**
3799
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
3800
+ */
3801
+ compositionWarnings = [];
3723
3802
  constructor(data) {
3724
3803
  super();
3725
3804
  proto3.util.initPartial(data, this);
@@ -3730,6 +3809,7 @@ export class UpdateSubgraphResponse extends Message {
3730
3809
  { no: 1, name: "response", kind: "message", T: Response },
3731
3810
  { no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
3732
3811
  { no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
3812
+ { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
3733
3813
  ]);
3734
3814
  static fromBinary(bytes, options) {
3735
3815
  return new UpdateSubgraphResponse().fromBinary(bytes, options);
@@ -3825,6 +3905,10 @@ export class UpdateFederatedGraphResponse extends Message {
3825
3905
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
3826
3906
  */
3827
3907
  deploymentErrors = [];
3908
+ /**
3909
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
3910
+ */
3911
+ compositionWarnings = [];
3828
3912
  constructor(data) {
3829
3913
  super();
3830
3914
  proto3.util.initPartial(data, this);
@@ -3835,6 +3919,7 @@ export class UpdateFederatedGraphResponse extends Message {
3835
3919
  { no: 1, name: "response", kind: "message", T: Response },
3836
3920
  { no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
3837
3921
  { no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
3922
+ { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
3838
3923
  ]);
3839
3924
  static fromBinary(bytes, options) {
3840
3925
  return new UpdateFederatedGraphResponse().fromBinary(bytes, options);
@@ -4010,6 +4095,10 @@ export class CheckFederatedGraphResponse extends Message {
4010
4095
  * @generated from field: repeated wg.cosmo.platform.v1.Subgraph subgraphs = 3;
4011
4096
  */
4012
4097
  subgraphs = [];
4098
+ /**
4099
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
4100
+ */
4101
+ compositionWarnings = [];
4013
4102
  constructor(data) {
4014
4103
  super();
4015
4104
  proto3.util.initPartial(data, this);
@@ -4020,6 +4109,7 @@ export class CheckFederatedGraphResponse extends Message {
4020
4109
  { no: 1, name: "response", kind: "message", T: Response },
4021
4110
  { no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
4022
4111
  { no: 3, name: "subgraphs", kind: "message", T: Subgraph, repeated: true },
4112
+ { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
4023
4113
  ]);
4024
4114
  static fromBinary(bytes, options) {
4025
4115
  return new CheckFederatedGraphResponse().fromBinary(bytes, options);
@@ -10201,6 +10291,10 @@ export class GraphComposition extends Message {
10201
10291
  * @generated from field: optional string triggeredBySubgraphName = 12;
10202
10292
  */
10203
10293
  triggeredBySubgraphName;
10294
+ /**
10295
+ * @generated from field: optional string compositionWarnings = 13;
10296
+ */
10297
+ compositionWarnings;
10204
10298
  constructor(data) {
10205
10299
  super();
10206
10300
  proto3.util.initPartial(data, this);
@@ -10220,6 +10314,7 @@ export class GraphComposition extends Message {
10220
10314
  { no: 10, name: "deploymentError", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
10221
10315
  { no: 11, name: "hasMultipleChangedSubgraphs", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
10222
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 },
10223
10318
  ]);
10224
10319
  static fromBinary(bytes, options) {
10225
10320
  return new GraphComposition().fromBinary(bytes, options);
@@ -10468,6 +10563,10 @@ export class FeatureFlagComposition extends Message {
10468
10563
  * @generated from field: string featureFlagName = 10;
10469
10564
  */
10470
10565
  featureFlagName = "";
10566
+ /**
10567
+ * @generated from field: optional string compositionWarnings = 11;
10568
+ */
10569
+ compositionWarnings;
10471
10570
  constructor(data) {
10472
10571
  super();
10473
10572
  proto3.util.initPartial(data, this);
@@ -10485,6 +10584,7 @@ export class FeatureFlagComposition extends Message {
10485
10584
  { no: 8, name: "admissionError", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
10486
10585
  { no: 9, name: "deploymentError", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
10487
10586
  { no: 10, name: "featureFlagName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
10587
+ { no: 11, name: "compositionWarnings", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
10488
10588
  ]);
10489
10589
  static fromBinary(bytes, options) {
10490
10590
  return new FeatureFlagComposition().fromBinary(bytes, options);
@@ -12738,6 +12838,10 @@ export class MoveGraphResponse extends Message {
12738
12838
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
12739
12839
  */
12740
12840
  deploymentErrors = [];
12841
+ /**
12842
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
12843
+ */
12844
+ compositionWarnings = [];
12741
12845
  constructor(data) {
12742
12846
  super();
12743
12847
  proto3.util.initPartial(data, this);
@@ -12748,6 +12852,7 @@ export class MoveGraphResponse extends Message {
12748
12852
  { no: 1, name: "response", kind: "message", T: Response },
12749
12853
  { no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
12750
12854
  { no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
12855
+ { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
12751
12856
  ]);
12752
12857
  static fromBinary(bytes, options) {
12753
12858
  return new MoveGraphResponse().fromBinary(bytes, options);
@@ -13487,6 +13592,10 @@ export class CreateContractResponse extends Message {
13487
13592
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
13488
13593
  */
13489
13594
  deploymentErrors = [];
13595
+ /**
13596
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
13597
+ */
13598
+ compositionWarnings = [];
13490
13599
  constructor(data) {
13491
13600
  super();
13492
13601
  proto3.util.initPartial(data, this);
@@ -13497,6 +13606,7 @@ export class CreateContractResponse extends Message {
13497
13606
  { no: 1, name: "response", kind: "message", T: Response },
13498
13607
  { no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
13499
13608
  { no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
13609
+ { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
13500
13610
  ]);
13501
13611
  static fromBinary(bytes, options) {
13502
13612
  return new CreateContractResponse().fromBinary(bytes, options);
@@ -13572,6 +13682,10 @@ export class UpdateContractResponse extends Message {
13572
13682
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
13573
13683
  */
13574
13684
  deploymentErrors = [];
13685
+ /**
13686
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
13687
+ */
13688
+ compositionWarnings = [];
13575
13689
  constructor(data) {
13576
13690
  super();
13577
13691
  proto3.util.initPartial(data, this);
@@ -13582,6 +13696,7 @@ export class UpdateContractResponse extends Message {
13582
13696
  { no: 1, name: "response", kind: "message", T: Response },
13583
13697
  { no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
13584
13698
  { no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
13699
+ { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
13585
13700
  ]);
13586
13701
  static fromBinary(bytes, options) {
13587
13702
  return new UpdateContractResponse().fromBinary(bytes, options);
@@ -13780,6 +13895,10 @@ export class CreateFeatureFlagResponse extends Message {
13780
13895
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deployment_errors = 3;
13781
13896
  */
13782
13897
  deploymentErrors = [];
13898
+ /**
13899
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
13900
+ */
13901
+ compositionWarnings = [];
13783
13902
  constructor(data) {
13784
13903
  super();
13785
13904
  proto3.util.initPartial(data, this);
@@ -13790,6 +13909,7 @@ export class CreateFeatureFlagResponse extends Message {
13790
13909
  { no: 1, name: "response", kind: "message", T: Response },
13791
13910
  { no: 2, name: "composition_errors", kind: "message", T: CompositionError, repeated: true },
13792
13911
  { no: 3, name: "deployment_errors", kind: "message", T: DeploymentError, repeated: true },
13912
+ { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
13793
13913
  ]);
13794
13914
  static fromBinary(bytes, options) {
13795
13915
  return new CreateFeatureFlagResponse().fromBinary(bytes, options);
@@ -13870,6 +13990,10 @@ export class UpdateFeatureFlagResponse extends Message {
13870
13990
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deployment_errors = 3;
13871
13991
  */
13872
13992
  deploymentErrors = [];
13993
+ /**
13994
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
13995
+ */
13996
+ compositionWarnings = [];
13873
13997
  constructor(data) {
13874
13998
  super();
13875
13999
  proto3.util.initPartial(data, this);
@@ -13880,6 +14004,7 @@ export class UpdateFeatureFlagResponse extends Message {
13880
14004
  { no: 1, name: "response", kind: "message", T: Response },
13881
14005
  { no: 2, name: "composition_errors", kind: "message", T: CompositionError, repeated: true },
13882
14006
  { no: 3, name: "deployment_errors", kind: "message", T: DeploymentError, repeated: true },
14007
+ { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
13883
14008
  ]);
13884
14009
  static fromBinary(bytes, options) {
13885
14010
  return new UpdateFeatureFlagResponse().fromBinary(bytes, options);
@@ -13954,6 +14079,10 @@ export class EnableFeatureFlagResponse extends Message {
13954
14079
  * @generated from field: optional bool has_changed = 4;
13955
14080
  */
13956
14081
  hasChanged;
14082
+ /**
14083
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 5;
14084
+ */
14085
+ compositionWarnings = [];
13957
14086
  constructor(data) {
13958
14087
  super();
13959
14088
  proto3.util.initPartial(data, this);
@@ -13965,6 +14094,7 @@ export class EnableFeatureFlagResponse extends Message {
13965
14094
  { no: 2, name: "composition_errors", kind: "message", T: CompositionError, repeated: true },
13966
14095
  { no: 3, name: "deployment_errors", kind: "message", T: DeploymentError, repeated: true },
13967
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 },
13968
14098
  ]);
13969
14099
  static fromBinary(bytes, options) {
13970
14100
  return new EnableFeatureFlagResponse().fromBinary(bytes, options);
@@ -14030,6 +14160,10 @@ export class DeleteFeatureFlagResponse extends Message {
14030
14160
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deployment_errors = 3;
14031
14161
  */
14032
14162
  deploymentErrors = [];
14163
+ /**
14164
+ * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
14165
+ */
14166
+ compositionWarnings = [];
14033
14167
  constructor(data) {
14034
14168
  super();
14035
14169
  proto3.util.initPartial(data, this);
@@ -14040,6 +14174,7 @@ export class DeleteFeatureFlagResponse extends Message {
14040
14174
  { no: 1, name: "response", kind: "message", T: Response },
14041
14175
  { no: 2, name: "composition_errors", kind: "message", T: CompositionError, repeated: true },
14042
14176
  { no: 3, name: "deployment_errors", kind: "message", T: DeploymentError, repeated: true },
14177
+ { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
14043
14178
  ]);
14044
14179
  static fromBinary(bytes, options) {
14045
14180
  return new DeleteFeatureFlagResponse().fromBinary(bytes, options);
@@ -14874,4 +15009,314 @@ export class GetWebhookDeliveryDetailsResponse extends Message {
14874
15009
  return proto3.util.equals(GetWebhookDeliveryDetailsResponse, a, b);
14875
15010
  }
14876
15011
  }
15012
+ /**
15013
+ * @generated from message wg.cosmo.platform.v1.CreatePlaygroundScriptRequest
15014
+ */
15015
+ export class CreatePlaygroundScriptRequest extends Message {
15016
+ /**
15017
+ * @generated from field: string title = 1;
15018
+ */
15019
+ title = "";
15020
+ /**
15021
+ * @generated from field: string type = 2;
15022
+ */
15023
+ type = "";
15024
+ /**
15025
+ * @generated from field: string content = 3;
15026
+ */
15027
+ content = "";
15028
+ constructor(data) {
15029
+ super();
15030
+ proto3.util.initPartial(data, this);
15031
+ }
15032
+ static runtime = proto3;
15033
+ static typeName = "wg.cosmo.platform.v1.CreatePlaygroundScriptRequest";
15034
+ static fields = proto3.util.newFieldList(() => [
15035
+ { no: 1, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15036
+ { no: 2, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15037
+ { no: 3, name: "content", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15038
+ ]);
15039
+ static fromBinary(bytes, options) {
15040
+ return new CreatePlaygroundScriptRequest().fromBinary(bytes, options);
15041
+ }
15042
+ static fromJson(jsonValue, options) {
15043
+ return new CreatePlaygroundScriptRequest().fromJson(jsonValue, options);
15044
+ }
15045
+ static fromJsonString(jsonString, options) {
15046
+ return new CreatePlaygroundScriptRequest().fromJsonString(jsonString, options);
15047
+ }
15048
+ static equals(a, b) {
15049
+ return proto3.util.equals(CreatePlaygroundScriptRequest, a, b);
15050
+ }
15051
+ }
15052
+ /**
15053
+ * @generated from message wg.cosmo.platform.v1.CreatePlaygroundScriptResponse
15054
+ */
15055
+ export class CreatePlaygroundScriptResponse extends Message {
15056
+ /**
15057
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
15058
+ */
15059
+ response;
15060
+ constructor(data) {
15061
+ super();
15062
+ proto3.util.initPartial(data, this);
15063
+ }
15064
+ static runtime = proto3;
15065
+ static typeName = "wg.cosmo.platform.v1.CreatePlaygroundScriptResponse";
15066
+ static fields = proto3.util.newFieldList(() => [
15067
+ { no: 1, name: "response", kind: "message", T: Response },
15068
+ ]);
15069
+ static fromBinary(bytes, options) {
15070
+ return new CreatePlaygroundScriptResponse().fromBinary(bytes, options);
15071
+ }
15072
+ static fromJson(jsonValue, options) {
15073
+ return new CreatePlaygroundScriptResponse().fromJson(jsonValue, options);
15074
+ }
15075
+ static fromJsonString(jsonString, options) {
15076
+ return new CreatePlaygroundScriptResponse().fromJsonString(jsonString, options);
15077
+ }
15078
+ static equals(a, b) {
15079
+ return proto3.util.equals(CreatePlaygroundScriptResponse, a, b);
15080
+ }
15081
+ }
15082
+ /**
15083
+ * @generated from message wg.cosmo.platform.v1.DeletePlaygroundScriptRequest
15084
+ */
15085
+ export class DeletePlaygroundScriptRequest extends Message {
15086
+ /**
15087
+ * @generated from field: string id = 1;
15088
+ */
15089
+ id = "";
15090
+ constructor(data) {
15091
+ super();
15092
+ proto3.util.initPartial(data, this);
15093
+ }
15094
+ static runtime = proto3;
15095
+ static typeName = "wg.cosmo.platform.v1.DeletePlaygroundScriptRequest";
15096
+ static fields = proto3.util.newFieldList(() => [
15097
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15098
+ ]);
15099
+ static fromBinary(bytes, options) {
15100
+ return new DeletePlaygroundScriptRequest().fromBinary(bytes, options);
15101
+ }
15102
+ static fromJson(jsonValue, options) {
15103
+ return new DeletePlaygroundScriptRequest().fromJson(jsonValue, options);
15104
+ }
15105
+ static fromJsonString(jsonString, options) {
15106
+ return new DeletePlaygroundScriptRequest().fromJsonString(jsonString, options);
15107
+ }
15108
+ static equals(a, b) {
15109
+ return proto3.util.equals(DeletePlaygroundScriptRequest, a, b);
15110
+ }
15111
+ }
15112
+ /**
15113
+ * @generated from message wg.cosmo.platform.v1.DeletePlaygroundScriptResponse
15114
+ */
15115
+ export class DeletePlaygroundScriptResponse extends Message {
15116
+ /**
15117
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
15118
+ */
15119
+ response;
15120
+ constructor(data) {
15121
+ super();
15122
+ proto3.util.initPartial(data, this);
15123
+ }
15124
+ static runtime = proto3;
15125
+ static typeName = "wg.cosmo.platform.v1.DeletePlaygroundScriptResponse";
15126
+ static fields = proto3.util.newFieldList(() => [
15127
+ { no: 1, name: "response", kind: "message", T: Response },
15128
+ ]);
15129
+ static fromBinary(bytes, options) {
15130
+ return new DeletePlaygroundScriptResponse().fromBinary(bytes, options);
15131
+ }
15132
+ static fromJson(jsonValue, options) {
15133
+ return new DeletePlaygroundScriptResponse().fromJson(jsonValue, options);
15134
+ }
15135
+ static fromJsonString(jsonString, options) {
15136
+ return new DeletePlaygroundScriptResponse().fromJsonString(jsonString, options);
15137
+ }
15138
+ static equals(a, b) {
15139
+ return proto3.util.equals(DeletePlaygroundScriptResponse, a, b);
15140
+ }
15141
+ }
15142
+ /**
15143
+ * @generated from message wg.cosmo.platform.v1.UpdatePlaygroundScriptRequest
15144
+ */
15145
+ export class UpdatePlaygroundScriptRequest extends Message {
15146
+ /**
15147
+ * @generated from field: string id = 1;
15148
+ */
15149
+ id = "";
15150
+ /**
15151
+ * @generated from field: string title = 2;
15152
+ */
15153
+ title = "";
15154
+ /**
15155
+ * @generated from field: string content = 3;
15156
+ */
15157
+ content = "";
15158
+ constructor(data) {
15159
+ super();
15160
+ proto3.util.initPartial(data, this);
15161
+ }
15162
+ static runtime = proto3;
15163
+ static typeName = "wg.cosmo.platform.v1.UpdatePlaygroundScriptRequest";
15164
+ static fields = proto3.util.newFieldList(() => [
15165
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15166
+ { no: 2, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15167
+ { no: 3, name: "content", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15168
+ ]);
15169
+ static fromBinary(bytes, options) {
15170
+ return new UpdatePlaygroundScriptRequest().fromBinary(bytes, options);
15171
+ }
15172
+ static fromJson(jsonValue, options) {
15173
+ return new UpdatePlaygroundScriptRequest().fromJson(jsonValue, options);
15174
+ }
15175
+ static fromJsonString(jsonString, options) {
15176
+ return new UpdatePlaygroundScriptRequest().fromJsonString(jsonString, options);
15177
+ }
15178
+ static equals(a, b) {
15179
+ return proto3.util.equals(UpdatePlaygroundScriptRequest, a, b);
15180
+ }
15181
+ }
15182
+ /**
15183
+ * @generated from message wg.cosmo.platform.v1.UpdatePlaygroundScriptResponse
15184
+ */
15185
+ export class UpdatePlaygroundScriptResponse extends Message {
15186
+ /**
15187
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
15188
+ */
15189
+ response;
15190
+ constructor(data) {
15191
+ super();
15192
+ proto3.util.initPartial(data, this);
15193
+ }
15194
+ static runtime = proto3;
15195
+ static typeName = "wg.cosmo.platform.v1.UpdatePlaygroundScriptResponse";
15196
+ static fields = proto3.util.newFieldList(() => [
15197
+ { no: 1, name: "response", kind: "message", T: Response },
15198
+ ]);
15199
+ static fromBinary(bytes, options) {
15200
+ return new UpdatePlaygroundScriptResponse().fromBinary(bytes, options);
15201
+ }
15202
+ static fromJson(jsonValue, options) {
15203
+ return new UpdatePlaygroundScriptResponse().fromJson(jsonValue, options);
15204
+ }
15205
+ static fromJsonString(jsonString, options) {
15206
+ return new UpdatePlaygroundScriptResponse().fromJsonString(jsonString, options);
15207
+ }
15208
+ static equals(a, b) {
15209
+ return proto3.util.equals(UpdatePlaygroundScriptResponse, a, b);
15210
+ }
15211
+ }
15212
+ /**
15213
+ * @generated from message wg.cosmo.platform.v1.GetPlaygroundScriptsRequest
15214
+ */
15215
+ export class GetPlaygroundScriptsRequest extends Message {
15216
+ /**
15217
+ * @generated from field: string type = 1;
15218
+ */
15219
+ type = "";
15220
+ constructor(data) {
15221
+ super();
15222
+ proto3.util.initPartial(data, this);
15223
+ }
15224
+ static runtime = proto3;
15225
+ static typeName = "wg.cosmo.platform.v1.GetPlaygroundScriptsRequest";
15226
+ static fields = proto3.util.newFieldList(() => [
15227
+ { no: 1, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15228
+ ]);
15229
+ static fromBinary(bytes, options) {
15230
+ return new GetPlaygroundScriptsRequest().fromBinary(bytes, options);
15231
+ }
15232
+ static fromJson(jsonValue, options) {
15233
+ return new GetPlaygroundScriptsRequest().fromJson(jsonValue, options);
15234
+ }
15235
+ static fromJsonString(jsonString, options) {
15236
+ return new GetPlaygroundScriptsRequest().fromJsonString(jsonString, options);
15237
+ }
15238
+ static equals(a, b) {
15239
+ return proto3.util.equals(GetPlaygroundScriptsRequest, a, b);
15240
+ }
15241
+ }
15242
+ /**
15243
+ * @generated from message wg.cosmo.platform.v1.PlaygroundScript
15244
+ */
15245
+ export class PlaygroundScript extends Message {
15246
+ /**
15247
+ * @generated from field: string id = 1;
15248
+ */
15249
+ id = "";
15250
+ /**
15251
+ * @generated from field: string type = 2;
15252
+ */
15253
+ type = "";
15254
+ /**
15255
+ * @generated from field: string title = 3;
15256
+ */
15257
+ title = "";
15258
+ /**
15259
+ * @generated from field: string content = 4;
15260
+ */
15261
+ content = "";
15262
+ constructor(data) {
15263
+ super();
15264
+ proto3.util.initPartial(data, this);
15265
+ }
15266
+ static runtime = proto3;
15267
+ static typeName = "wg.cosmo.platform.v1.PlaygroundScript";
15268
+ static fields = proto3.util.newFieldList(() => [
15269
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15270
+ { no: 2, name: "type", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15271
+ { no: 3, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15272
+ { no: 4, name: "content", kind: "scalar", T: 9 /* ScalarType.STRING */ },
15273
+ ]);
15274
+ static fromBinary(bytes, options) {
15275
+ return new PlaygroundScript().fromBinary(bytes, options);
15276
+ }
15277
+ static fromJson(jsonValue, options) {
15278
+ return new PlaygroundScript().fromJson(jsonValue, options);
15279
+ }
15280
+ static fromJsonString(jsonString, options) {
15281
+ return new PlaygroundScript().fromJsonString(jsonString, options);
15282
+ }
15283
+ static equals(a, b) {
15284
+ return proto3.util.equals(PlaygroundScript, a, b);
15285
+ }
15286
+ }
15287
+ /**
15288
+ * @generated from message wg.cosmo.platform.v1.GetPlaygroundScriptsResponse
15289
+ */
15290
+ export class GetPlaygroundScriptsResponse extends Message {
15291
+ /**
15292
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
15293
+ */
15294
+ response;
15295
+ /**
15296
+ * @generated from field: repeated wg.cosmo.platform.v1.PlaygroundScript scripts = 2;
15297
+ */
15298
+ scripts = [];
15299
+ constructor(data) {
15300
+ super();
15301
+ proto3.util.initPartial(data, this);
15302
+ }
15303
+ static runtime = proto3;
15304
+ static typeName = "wg.cosmo.platform.v1.GetPlaygroundScriptsResponse";
15305
+ static fields = proto3.util.newFieldList(() => [
15306
+ { no: 1, name: "response", kind: "message", T: Response },
15307
+ { no: 2, name: "scripts", kind: "message", T: PlaygroundScript, repeated: true },
15308
+ ]);
15309
+ static fromBinary(bytes, options) {
15310
+ return new GetPlaygroundScriptsResponse().fromBinary(bytes, options);
15311
+ }
15312
+ static fromJson(jsonValue, options) {
15313
+ return new GetPlaygroundScriptsResponse().fromJson(jsonValue, options);
15314
+ }
15315
+ static fromJsonString(jsonString, options) {
15316
+ return new GetPlaygroundScriptsResponse().fromJsonString(jsonString, options);
15317
+ }
15318
+ static equals(a, b) {
15319
+ return proto3.util.equals(GetPlaygroundScriptsResponse, a, b);
15320
+ }
15321
+ }
14877
15322
  //# sourceMappingURL=platform_pb.js.map