@wundergraph/cosmo-connect 0.27.0 → 0.28.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.
|
@@ -1933,6 +1933,10 @@ export declare class AnalyticsViewResultFilter extends Message<AnalyticsViewResu
|
|
|
1933
1933
|
* @generated from field: repeated wg.cosmo.platform.v1.AnalyticsViewResultFilterOption options = 3;
|
|
1934
1934
|
*/
|
|
1935
1935
|
options: AnalyticsViewResultFilterOption[];
|
|
1936
|
+
/**
|
|
1937
|
+
* @generated from field: optional bool custom_options = 4;
|
|
1938
|
+
*/
|
|
1939
|
+
customOptions?: boolean;
|
|
1936
1940
|
constructor(data?: PartialMessage<AnalyticsViewResultFilter>);
|
|
1937
1941
|
static readonly runtime: typeof proto3;
|
|
1938
1942
|
static readonly typeName = "wg.cosmo.platform.v1.AnalyticsViewResultFilter";
|
|
@@ -2100,11 +2104,15 @@ export declare class RequestSeriesItem extends Message<RequestSeriesItem> {
|
|
|
2100
2104
|
*/
|
|
2101
2105
|
export declare class OperationRequestCount extends Message<OperationRequestCount> {
|
|
2102
2106
|
/**
|
|
2103
|
-
* @generated from field: string
|
|
2107
|
+
* @generated from field: string operationHash = 1;
|
|
2108
|
+
*/
|
|
2109
|
+
operationHash: string;
|
|
2110
|
+
/**
|
|
2111
|
+
* @generated from field: string operationName = 2;
|
|
2104
2112
|
*/
|
|
2105
2113
|
operationName: string;
|
|
2106
2114
|
/**
|
|
2107
|
-
* @generated from field: int32 totalRequests =
|
|
2115
|
+
* @generated from field: int32 totalRequests = 3;
|
|
2108
2116
|
*/
|
|
2109
2117
|
totalRequests: number;
|
|
2110
2118
|
constructor(data?: PartialMessage<OperationRequestCount>);
|
|
@@ -3561,11 +3569,15 @@ export declare class MetricsDashboardMetric extends Message<MetricsDashboardMetr
|
|
|
3561
3569
|
*/
|
|
3562
3570
|
export declare class MetricsTopItem extends Message<MetricsTopItem> {
|
|
3563
3571
|
/**
|
|
3564
|
-
* @generated from field: string
|
|
3572
|
+
* @generated from field: string hash = 1;
|
|
3573
|
+
*/
|
|
3574
|
+
hash: string;
|
|
3575
|
+
/**
|
|
3576
|
+
* @generated from field: string name = 2;
|
|
3565
3577
|
*/
|
|
3566
3578
|
name: string;
|
|
3567
3579
|
/**
|
|
3568
|
-
* @generated from field: string value =
|
|
3580
|
+
* @generated from field: string value = 3;
|
|
3569
3581
|
*/
|
|
3570
3582
|
value: string;
|
|
3571
3583
|
constructor(data?: PartialMessage<MetricsTopItem>);
|
|
@@ -3910,6 +3922,14 @@ export declare class GetOIDCProviderResponse extends Message<GetOIDCProviderResp
|
|
|
3910
3922
|
* @generated from field: string loginURL = 4;
|
|
3911
3923
|
*/
|
|
3912
3924
|
loginURL: string;
|
|
3925
|
+
/**
|
|
3926
|
+
* @generated from field: string signInRedirectURL = 5;
|
|
3927
|
+
*/
|
|
3928
|
+
signInRedirectURL: string;
|
|
3929
|
+
/**
|
|
3930
|
+
* @generated from field: string signOutRedirectURL = 6;
|
|
3931
|
+
*/
|
|
3932
|
+
signOutRedirectURL: string;
|
|
3913
3933
|
constructor(data?: PartialMessage<GetOIDCProviderResponse>);
|
|
3914
3934
|
static readonly runtime: typeof proto3;
|
|
3915
3935
|
static readonly typeName = "wg.cosmo.platform.v1.GetOIDCProviderResponse";
|
|
@@ -4016,9 +4036,9 @@ export declare class ClientWithOperations extends Message<ClientWithOperations>
|
|
|
4016
4036
|
*/
|
|
4017
4037
|
export declare class ClientWithOperations_Operation extends Message<ClientWithOperations_Operation> {
|
|
4018
4038
|
/**
|
|
4019
|
-
* @generated from field: string
|
|
4039
|
+
* @generated from field: string hash = 1;
|
|
4020
4040
|
*/
|
|
4021
|
-
|
|
4041
|
+
hash: string;
|
|
4022
4042
|
/**
|
|
4023
4043
|
* @generated from field: string name = 2;
|
|
4024
4044
|
*/
|
|
@@ -3006,6 +3006,10 @@ export class AnalyticsViewResultFilter extends Message {
|
|
|
3006
3006
|
* @generated from field: repeated wg.cosmo.platform.v1.AnalyticsViewResultFilterOption options = 3;
|
|
3007
3007
|
*/
|
|
3008
3008
|
options = [];
|
|
3009
|
+
/**
|
|
3010
|
+
* @generated from field: optional bool custom_options = 4;
|
|
3011
|
+
*/
|
|
3012
|
+
customOptions;
|
|
3009
3013
|
constructor(data) {
|
|
3010
3014
|
super();
|
|
3011
3015
|
proto3.util.initPartial(data, this);
|
|
@@ -3016,6 +3020,7 @@ export class AnalyticsViewResultFilter extends Message {
|
|
|
3016
3020
|
{ no: 1, name: "columnName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3017
3021
|
{ no: 2, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3018
3022
|
{ no: 3, name: "options", kind: "message", T: AnalyticsViewResultFilterOption, repeated: true },
|
|
3023
|
+
{ no: 4, name: "custom_options", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
3019
3024
|
]);
|
|
3020
3025
|
static fromBinary(bytes, options) {
|
|
3021
3026
|
return new AnalyticsViewResultFilter().fromBinary(bytes, options);
|
|
@@ -3244,11 +3249,15 @@ export class RequestSeriesItem extends Message {
|
|
|
3244
3249
|
*/
|
|
3245
3250
|
export class OperationRequestCount extends Message {
|
|
3246
3251
|
/**
|
|
3247
|
-
* @generated from field: string
|
|
3252
|
+
* @generated from field: string operationHash = 1;
|
|
3253
|
+
*/
|
|
3254
|
+
operationHash = "";
|
|
3255
|
+
/**
|
|
3256
|
+
* @generated from field: string operationName = 2;
|
|
3248
3257
|
*/
|
|
3249
3258
|
operationName = "";
|
|
3250
3259
|
/**
|
|
3251
|
-
* @generated from field: int32 totalRequests =
|
|
3260
|
+
* @generated from field: int32 totalRequests = 3;
|
|
3252
3261
|
*/
|
|
3253
3262
|
totalRequests = 0;
|
|
3254
3263
|
constructor(data) {
|
|
@@ -3258,8 +3267,9 @@ export class OperationRequestCount extends Message {
|
|
|
3258
3267
|
static runtime = proto3;
|
|
3259
3268
|
static typeName = "wg.cosmo.platform.v1.OperationRequestCount";
|
|
3260
3269
|
static fields = proto3.util.newFieldList(() => [
|
|
3261
|
-
{ no: 1, name: "
|
|
3262
|
-
{ no: 2, name: "
|
|
3270
|
+
{ no: 1, name: "operationHash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3271
|
+
{ no: 2, name: "operationName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3272
|
+
{ no: 3, name: "totalRequests", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3263
3273
|
]);
|
|
3264
3274
|
static fromBinary(bytes, options) {
|
|
3265
3275
|
return new OperationRequestCount().fromBinary(bytes, options);
|
|
@@ -5622,11 +5632,15 @@ export class MetricsDashboardMetric extends Message {
|
|
|
5622
5632
|
*/
|
|
5623
5633
|
export class MetricsTopItem extends Message {
|
|
5624
5634
|
/**
|
|
5625
|
-
* @generated from field: string
|
|
5635
|
+
* @generated from field: string hash = 1;
|
|
5636
|
+
*/
|
|
5637
|
+
hash = "";
|
|
5638
|
+
/**
|
|
5639
|
+
* @generated from field: string name = 2;
|
|
5626
5640
|
*/
|
|
5627
5641
|
name = "";
|
|
5628
5642
|
/**
|
|
5629
|
-
* @generated from field: string value =
|
|
5643
|
+
* @generated from field: string value = 3;
|
|
5630
5644
|
*/
|
|
5631
5645
|
value = "";
|
|
5632
5646
|
constructor(data) {
|
|
@@ -5636,8 +5650,9 @@ export class MetricsTopItem extends Message {
|
|
|
5636
5650
|
static runtime = proto3;
|
|
5637
5651
|
static typeName = "wg.cosmo.platform.v1.MetricsTopItem";
|
|
5638
5652
|
static fields = proto3.util.newFieldList(() => [
|
|
5639
|
-
{ no: 1, name: "
|
|
5640
|
-
{ no: 2, name: "
|
|
5653
|
+
{ no: 1, name: "hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5654
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5655
|
+
{ no: 3, name: "value", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5641
5656
|
]);
|
|
5642
5657
|
static fromBinary(bytes, options) {
|
|
5643
5658
|
return new MetricsTopItem().fromBinary(bytes, options);
|
|
@@ -6176,6 +6191,14 @@ export class GetOIDCProviderResponse extends Message {
|
|
|
6176
6191
|
* @generated from field: string loginURL = 4;
|
|
6177
6192
|
*/
|
|
6178
6193
|
loginURL = "";
|
|
6194
|
+
/**
|
|
6195
|
+
* @generated from field: string signInRedirectURL = 5;
|
|
6196
|
+
*/
|
|
6197
|
+
signInRedirectURL = "";
|
|
6198
|
+
/**
|
|
6199
|
+
* @generated from field: string signOutRedirectURL = 6;
|
|
6200
|
+
*/
|
|
6201
|
+
signOutRedirectURL = "";
|
|
6179
6202
|
constructor(data) {
|
|
6180
6203
|
super();
|
|
6181
6204
|
proto3.util.initPartial(data, this);
|
|
@@ -6187,6 +6210,8 @@ export class GetOIDCProviderResponse extends Message {
|
|
|
6187
6210
|
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6188
6211
|
{ no: 3, name: "endpoint", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6189
6212
|
{ no: 4, name: "loginURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6213
|
+
{ no: 5, name: "signInRedirectURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6214
|
+
{ no: 6, name: "signOutRedirectURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6190
6215
|
]);
|
|
6191
6216
|
static fromBinary(bytes, options) {
|
|
6192
6217
|
return new GetOIDCProviderResponse().fromBinary(bytes, options);
|
|
@@ -6355,9 +6380,9 @@ export class ClientWithOperations extends Message {
|
|
|
6355
6380
|
*/
|
|
6356
6381
|
export class ClientWithOperations_Operation extends Message {
|
|
6357
6382
|
/**
|
|
6358
|
-
* @generated from field: string
|
|
6383
|
+
* @generated from field: string hash = 1;
|
|
6359
6384
|
*/
|
|
6360
|
-
|
|
6385
|
+
hash = "";
|
|
6361
6386
|
/**
|
|
6362
6387
|
* @generated from field: string name = 2;
|
|
6363
6388
|
*/
|
|
@@ -6373,7 +6398,7 @@ export class ClientWithOperations_Operation extends Message {
|
|
|
6373
6398
|
static runtime = proto3;
|
|
6374
6399
|
static typeName = "wg.cosmo.platform.v1.ClientWithOperations.Operation";
|
|
6375
6400
|
static fields = proto3.util.newFieldList(() => [
|
|
6376
|
-
{ no: 1, name: "
|
|
6401
|
+
{ no: 1, name: "hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6377
6402
|
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
6378
6403
|
{ no: 3, name: "count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
6379
6404
|
]);
|