@wundergraph/cosmo-connect 0.27.0 → 0.29.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.
@@ -337,6 +337,12 @@ export declare class CheckSubgraphSchemaRequest extends Message<CheckSubgraphSch
337
337
  * @generated from field: wg.cosmo.platform.v1.GitInfo gitInfo = 3;
338
338
  */
339
339
  gitInfo?: GitInfo;
340
+ /**
341
+ * Check breaking changes and composition when this subgraph is deleted
342
+ *
343
+ * @generated from field: optional bool delete = 4;
344
+ */
345
+ delete?: boolean;
340
346
  constructor(data?: PartialMessage<CheckSubgraphSchemaRequest>);
341
347
  static readonly runtime: typeof proto3;
342
348
  static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaRequest";
@@ -1099,6 +1105,10 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
1099
1105
  * @generated from field: bool isForcedSuccess = 8;
1100
1106
  */
1101
1107
  isForcedSuccess: boolean;
1108
+ /**
1109
+ * @generated from field: bool isDeleted = 9;
1110
+ */
1111
+ isDeleted: boolean;
1102
1112
  constructor(data?: PartialMessage<SchemaCheck>);
1103
1113
  static readonly runtime: typeof proto3;
1104
1114
  static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck";
@@ -1933,6 +1943,10 @@ export declare class AnalyticsViewResultFilter extends Message<AnalyticsViewResu
1933
1943
  * @generated from field: repeated wg.cosmo.platform.v1.AnalyticsViewResultFilterOption options = 3;
1934
1944
  */
1935
1945
  options: AnalyticsViewResultFilterOption[];
1946
+ /**
1947
+ * @generated from field: optional bool custom_options = 4;
1948
+ */
1949
+ customOptions?: boolean;
1936
1950
  constructor(data?: PartialMessage<AnalyticsViewResultFilter>);
1937
1951
  static readonly runtime: typeof proto3;
1938
1952
  static readonly typeName = "wg.cosmo.platform.v1.AnalyticsViewResultFilter";
@@ -2100,11 +2114,15 @@ export declare class RequestSeriesItem extends Message<RequestSeriesItem> {
2100
2114
  */
2101
2115
  export declare class OperationRequestCount extends Message<OperationRequestCount> {
2102
2116
  /**
2103
- * @generated from field: string operationName = 1;
2117
+ * @generated from field: string operationHash = 1;
2118
+ */
2119
+ operationHash: string;
2120
+ /**
2121
+ * @generated from field: string operationName = 2;
2104
2122
  */
2105
2123
  operationName: string;
2106
2124
  /**
2107
- * @generated from field: int32 totalRequests = 2;
2125
+ * @generated from field: int32 totalRequests = 3;
2108
2126
  */
2109
2127
  totalRequests: number;
2110
2128
  constructor(data?: PartialMessage<OperationRequestCount>);
@@ -3561,11 +3579,15 @@ export declare class MetricsDashboardMetric extends Message<MetricsDashboardMetr
3561
3579
  */
3562
3580
  export declare class MetricsTopItem extends Message<MetricsTopItem> {
3563
3581
  /**
3564
- * @generated from field: string name = 1;
3582
+ * @generated from field: string hash = 1;
3583
+ */
3584
+ hash: string;
3585
+ /**
3586
+ * @generated from field: string name = 2;
3565
3587
  */
3566
3588
  name: string;
3567
3589
  /**
3568
- * @generated from field: string value = 2;
3590
+ * @generated from field: string value = 3;
3569
3591
  */
3570
3592
  value: string;
3571
3593
  constructor(data?: PartialMessage<MetricsTopItem>);
@@ -3910,6 +3932,14 @@ export declare class GetOIDCProviderResponse extends Message<GetOIDCProviderResp
3910
3932
  * @generated from field: string loginURL = 4;
3911
3933
  */
3912
3934
  loginURL: string;
3935
+ /**
3936
+ * @generated from field: string signInRedirectURL = 5;
3937
+ */
3938
+ signInRedirectURL: string;
3939
+ /**
3940
+ * @generated from field: string signOutRedirectURL = 6;
3941
+ */
3942
+ signOutRedirectURL: string;
3913
3943
  constructor(data?: PartialMessage<GetOIDCProviderResponse>);
3914
3944
  static readonly runtime: typeof proto3;
3915
3945
  static readonly typeName = "wg.cosmo.platform.v1.GetOIDCProviderResponse";
@@ -4016,9 +4046,9 @@ export declare class ClientWithOperations extends Message<ClientWithOperations>
4016
4046
  */
4017
4047
  export declare class ClientWithOperations_Operation extends Message<ClientWithOperations_Operation> {
4018
4048
  /**
4019
- * @generated from field: string latest_hash = 1;
4049
+ * @generated from field: string hash = 1;
4020
4050
  */
4021
- latestHash: string;
4051
+ hash: string;
4022
4052
  /**
4023
4053
  * @generated from field: string name = 2;
4024
4054
  */
@@ -478,6 +478,12 @@ export class CheckSubgraphSchemaRequest extends Message {
478
478
  * @generated from field: wg.cosmo.platform.v1.GitInfo gitInfo = 3;
479
479
  */
480
480
  gitInfo;
481
+ /**
482
+ * Check breaking changes and composition when this subgraph is deleted
483
+ *
484
+ * @generated from field: optional bool delete = 4;
485
+ */
486
+ delete;
481
487
  constructor(data) {
482
488
  super();
483
489
  proto3.util.initPartial(data, this);
@@ -488,6 +494,7 @@ export class CheckSubgraphSchemaRequest extends Message {
488
494
  { no: 1, name: "subgraph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
489
495
  { no: 2, name: "schema", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
490
496
  { no: 3, name: "gitInfo", kind: "message", T: GitInfo },
497
+ { no: 4, name: "delete", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
491
498
  ]);
492
499
  static fromBinary(bytes, options) {
493
500
  return new CheckSubgraphSchemaRequest().fromBinary(bytes, options);
@@ -1682,6 +1689,10 @@ export class SchemaCheck extends Message {
1682
1689
  * @generated from field: bool isForcedSuccess = 8;
1683
1690
  */
1684
1691
  isForcedSuccess = false;
1692
+ /**
1693
+ * @generated from field: bool isDeleted = 9;
1694
+ */
1695
+ isDeleted = false;
1685
1696
  constructor(data) {
1686
1697
  super();
1687
1698
  proto3.util.initPartial(data, this);
@@ -1697,6 +1708,7 @@ export class SchemaCheck extends Message {
1697
1708
  { no: 6, name: "isBreaking", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1698
1709
  { no: 7, name: "hasClientTraffic", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1699
1710
  { no: 8, name: "isForcedSuccess", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1711
+ { no: 9, name: "isDeleted", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1700
1712
  ]);
1701
1713
  static fromBinary(bytes, options) {
1702
1714
  return new SchemaCheck().fromBinary(bytes, options);
@@ -3006,6 +3018,10 @@ export class AnalyticsViewResultFilter extends Message {
3006
3018
  * @generated from field: repeated wg.cosmo.platform.v1.AnalyticsViewResultFilterOption options = 3;
3007
3019
  */
3008
3020
  options = [];
3021
+ /**
3022
+ * @generated from field: optional bool custom_options = 4;
3023
+ */
3024
+ customOptions;
3009
3025
  constructor(data) {
3010
3026
  super();
3011
3027
  proto3.util.initPartial(data, this);
@@ -3016,6 +3032,7 @@ export class AnalyticsViewResultFilter extends Message {
3016
3032
  { no: 1, name: "columnName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3017
3033
  { no: 2, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3018
3034
  { no: 3, name: "options", kind: "message", T: AnalyticsViewResultFilterOption, repeated: true },
3035
+ { no: 4, name: "custom_options", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
3019
3036
  ]);
3020
3037
  static fromBinary(bytes, options) {
3021
3038
  return new AnalyticsViewResultFilter().fromBinary(bytes, options);
@@ -3244,11 +3261,15 @@ export class RequestSeriesItem extends Message {
3244
3261
  */
3245
3262
  export class OperationRequestCount extends Message {
3246
3263
  /**
3247
- * @generated from field: string operationName = 1;
3264
+ * @generated from field: string operationHash = 1;
3265
+ */
3266
+ operationHash = "";
3267
+ /**
3268
+ * @generated from field: string operationName = 2;
3248
3269
  */
3249
3270
  operationName = "";
3250
3271
  /**
3251
- * @generated from field: int32 totalRequests = 2;
3272
+ * @generated from field: int32 totalRequests = 3;
3252
3273
  */
3253
3274
  totalRequests = 0;
3254
3275
  constructor(data) {
@@ -3258,8 +3279,9 @@ export class OperationRequestCount extends Message {
3258
3279
  static runtime = proto3;
3259
3280
  static typeName = "wg.cosmo.platform.v1.OperationRequestCount";
3260
3281
  static fields = proto3.util.newFieldList(() => [
3261
- { no: 1, name: "operationName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3262
- { no: 2, name: "totalRequests", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3282
+ { no: 1, name: "operationHash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3283
+ { no: 2, name: "operationName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3284
+ { no: 3, name: "totalRequests", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3263
3285
  ]);
3264
3286
  static fromBinary(bytes, options) {
3265
3287
  return new OperationRequestCount().fromBinary(bytes, options);
@@ -5622,11 +5644,15 @@ export class MetricsDashboardMetric extends Message {
5622
5644
  */
5623
5645
  export class MetricsTopItem extends Message {
5624
5646
  /**
5625
- * @generated from field: string name = 1;
5647
+ * @generated from field: string hash = 1;
5648
+ */
5649
+ hash = "";
5650
+ /**
5651
+ * @generated from field: string name = 2;
5626
5652
  */
5627
5653
  name = "";
5628
5654
  /**
5629
- * @generated from field: string value = 2;
5655
+ * @generated from field: string value = 3;
5630
5656
  */
5631
5657
  value = "";
5632
5658
  constructor(data) {
@@ -5636,8 +5662,9 @@ export class MetricsTopItem extends Message {
5636
5662
  static runtime = proto3;
5637
5663
  static typeName = "wg.cosmo.platform.v1.MetricsTopItem";
5638
5664
  static fields = proto3.util.newFieldList(() => [
5639
- { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5640
- { no: 2, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5665
+ { no: 1, name: "hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5666
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5667
+ { no: 3, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5641
5668
  ]);
5642
5669
  static fromBinary(bytes, options) {
5643
5670
  return new MetricsTopItem().fromBinary(bytes, options);
@@ -6176,6 +6203,14 @@ export class GetOIDCProviderResponse extends Message {
6176
6203
  * @generated from field: string loginURL = 4;
6177
6204
  */
6178
6205
  loginURL = "";
6206
+ /**
6207
+ * @generated from field: string signInRedirectURL = 5;
6208
+ */
6209
+ signInRedirectURL = "";
6210
+ /**
6211
+ * @generated from field: string signOutRedirectURL = 6;
6212
+ */
6213
+ signOutRedirectURL = "";
6179
6214
  constructor(data) {
6180
6215
  super();
6181
6216
  proto3.util.initPartial(data, this);
@@ -6187,6 +6222,8 @@ export class GetOIDCProviderResponse extends Message {
6187
6222
  { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6188
6223
  { no: 3, name: "endpoint", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6189
6224
  { no: 4, name: "loginURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6225
+ { no: 5, name: "signInRedirectURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6226
+ { no: 6, name: "signOutRedirectURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6190
6227
  ]);
6191
6228
  static fromBinary(bytes, options) {
6192
6229
  return new GetOIDCProviderResponse().fromBinary(bytes, options);
@@ -6355,9 +6392,9 @@ export class ClientWithOperations extends Message {
6355
6392
  */
6356
6393
  export class ClientWithOperations_Operation extends Message {
6357
6394
  /**
6358
- * @generated from field: string latest_hash = 1;
6395
+ * @generated from field: string hash = 1;
6359
6396
  */
6360
- latestHash = "";
6397
+ hash = "";
6361
6398
  /**
6362
6399
  * @generated from field: string name = 2;
6363
6400
  */
@@ -6373,7 +6410,7 @@ export class ClientWithOperations_Operation extends Message {
6373
6410
  static runtime = proto3;
6374
6411
  static typeName = "wg.cosmo.platform.v1.ClientWithOperations.Operation";
6375
6412
  static fields = proto3.util.newFieldList(() => [
6376
- { no: 1, name: "latest_hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6413
+ { no: 1, name: "hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6377
6414
  { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6378
6415
  { no: 3, name: "count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
6379
6416
  ]);