@sentio/protos 3.9.0-rc.11 → 3.9.0-rc.13
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/lib/google/protobuf/empty.d.ts +10 -9
- package/lib/google/protobuf/empty.d.ts.map +1 -1
- package/lib/google/protobuf/empty.js +10 -5
- package/lib/google/protobuf/empty.js.map +1 -1
- package/lib/google/protobuf/struct.d.ts +23 -37
- package/lib/google/protobuf/struct.d.ts.map +1 -1
- package/lib/google/protobuf/struct.js +83 -44
- package/lib/google/protobuf/struct.js.map +1 -1
- package/lib/google/protobuf/timestamp.d.ts +10 -9
- package/lib/google/protobuf/timestamp.d.ts.map +1 -1
- package/lib/google/protobuf/timestamp.js +21 -22
- package/lib/google/protobuf/timestamp.js.map +1 -1
- package/lib/google/type/money.d.ts +10 -9
- package/lib/google/type/money.d.ts.map +1 -1
- package/lib/google/type/money.js +28 -24
- package/lib/google/type/money.js.map +1 -1
- package/lib/processor/protos/processor.d.ts +146 -1097
- package/lib/processor/protos/processor.d.ts.map +1 -1
- package/lib/processor/protos/processor.js +2688 -1467
- package/lib/processor/protos/processor.js.map +1 -1
- package/lib/service/common/protos/common.d.ts +127 -909
- package/lib/service/common/protos/common.d.ts.map +1 -1
- package/lib/service/common/protos/common.js +2822 -1537
- package/lib/service/common/protos/common.js.map +1 -1
- package/package.json +5 -6
- package/src/google/protobuf/empty.ts +22 -7
- package/src/google/protobuf/struct.ts +123 -56
- package/src/google/protobuf/timestamp.ts +33 -26
- package/src/google/type/money.ts +40 -28
- package/src/processor/protos/processor.ts +2941 -1686
- package/src/service/common/protos/common.ts +3272 -1904
- package/lib/chainquery/protos/chainquery.d.ts +0 -607
- package/lib/chainquery/protos/chainquery.d.ts.map +0 -1
- package/lib/chainquery/protos/chainquery.js +0 -1701
- package/lib/chainquery/protos/chainquery.js.map +0 -1
- package/src/chainquery/protos/chainquery.ts +0 -2126
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
2
2
|
import { Money } from "../../../google/type/money.js";
|
|
3
3
|
export declare enum Tier {
|
|
4
4
|
FREE = 0,
|
|
@@ -345,7 +345,7 @@ export interface Formula {
|
|
|
345
345
|
alias: string;
|
|
346
346
|
id: string;
|
|
347
347
|
disabled: boolean;
|
|
348
|
-
functions:
|
|
348
|
+
functions: FunctionMessage[];
|
|
349
349
|
color: string;
|
|
350
350
|
}
|
|
351
351
|
export interface Argument {
|
|
@@ -355,7 +355,7 @@ export interface Argument {
|
|
|
355
355
|
boolValue?: boolean | undefined;
|
|
356
356
|
durationValue?: Duration | undefined;
|
|
357
357
|
}
|
|
358
|
-
export interface
|
|
358
|
+
export interface FunctionMessage {
|
|
359
359
|
name: string;
|
|
360
360
|
arguments: Argument[];
|
|
361
361
|
}
|
|
@@ -367,7 +367,7 @@ export interface Query {
|
|
|
367
367
|
[key: string]: string;
|
|
368
368
|
};
|
|
369
369
|
aggregate: Aggregate | undefined;
|
|
370
|
-
functions:
|
|
370
|
+
functions: FunctionMessage[];
|
|
371
371
|
color: string;
|
|
372
372
|
disabled: boolean;
|
|
373
373
|
}
|
|
@@ -441,7 +441,7 @@ export interface SegmentationQuery {
|
|
|
441
441
|
selectorExpr: SegmentationQuery_SelectorExpr | undefined;
|
|
442
442
|
groupBy: string[];
|
|
443
443
|
limit: number;
|
|
444
|
-
functions:
|
|
444
|
+
functions: FunctionMessage[];
|
|
445
445
|
color: string;
|
|
446
446
|
disabled: boolean;
|
|
447
447
|
}
|
|
@@ -458,6 +458,7 @@ export interface SegmentationQuery_Resource {
|
|
|
458
458
|
type: SegmentationQuery_ResourceType;
|
|
459
459
|
cohortsId?: string | undefined;
|
|
460
460
|
cohortsQuery?: CohortsQuery | undefined;
|
|
461
|
+
multipleNames: string[];
|
|
461
462
|
}
|
|
462
463
|
export interface SegmentationQuery_Aggregation {
|
|
463
464
|
total?: SegmentationQuery_Aggregation_Total | undefined;
|
|
@@ -1001,913 +1002,130 @@ export interface ProjectOwnerAndSlug {
|
|
|
1001
1002
|
ownerName: string;
|
|
1002
1003
|
slug: string;
|
|
1003
1004
|
}
|
|
1004
|
-
export declare const UsageTracker:
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
export declare const
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
export declare const
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
export declare const
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
export declare const
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
export declare const
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
export declare const
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
export declare const
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
export declare const
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
export declare const
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
export declare const
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
export declare const
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
export declare const
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
export declare const
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
export declare const
|
|
1117
|
-
encode(message: ProjectInfo, writer?: _m0.Writer): _m0.Writer;
|
|
1118
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ProjectInfo;
|
|
1119
|
-
fromJSON(object: any): ProjectInfo;
|
|
1120
|
-
toJSON(message: ProjectInfo): unknown;
|
|
1121
|
-
create(base?: DeepPartial<ProjectInfo>): ProjectInfo;
|
|
1122
|
-
fromPartial(object: DeepPartial<ProjectInfo>): ProjectInfo;
|
|
1123
|
-
};
|
|
1124
|
-
export declare const EventLogColumn: {
|
|
1125
|
-
encode(message: EventLogColumn, writer?: _m0.Writer): _m0.Writer;
|
|
1126
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): EventLogColumn;
|
|
1127
|
-
fromJSON(object: any): EventLogColumn;
|
|
1128
|
-
toJSON(message: EventLogColumn): unknown;
|
|
1129
|
-
create(base?: DeepPartial<EventLogColumn>): EventLogColumn;
|
|
1130
|
-
fromPartial(object: DeepPartial<EventLogColumn>): EventLogColumn;
|
|
1131
|
-
};
|
|
1132
|
-
export declare const ColumnState: {
|
|
1133
|
-
encode(message: ColumnState, writer?: _m0.Writer): _m0.Writer;
|
|
1134
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ColumnState;
|
|
1135
|
-
fromJSON(object: any): ColumnState;
|
|
1136
|
-
toJSON(message: ColumnState): unknown;
|
|
1137
|
-
create(base?: DeepPartial<ColumnState>): ColumnState;
|
|
1138
|
-
fromPartial(object: DeepPartial<ColumnState>): ColumnState;
|
|
1139
|
-
};
|
|
1140
|
-
export declare const ColumnState_ColumnSizingEntry: {
|
|
1141
|
-
encode(message: ColumnState_ColumnSizingEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1142
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ColumnState_ColumnSizingEntry;
|
|
1143
|
-
fromJSON(object: any): ColumnState_ColumnSizingEntry;
|
|
1144
|
-
toJSON(message: ColumnState_ColumnSizingEntry): unknown;
|
|
1145
|
-
create(base?: DeepPartial<ColumnState_ColumnSizingEntry>): ColumnState_ColumnSizingEntry;
|
|
1146
|
-
fromPartial(object: DeepPartial<ColumnState_ColumnSizingEntry>): ColumnState_ColumnSizingEntry;
|
|
1147
|
-
};
|
|
1148
|
-
export declare const ColumnState_ColumnVisibilityEntry: {
|
|
1149
|
-
encode(message: ColumnState_ColumnVisibilityEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1150
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ColumnState_ColumnVisibilityEntry;
|
|
1151
|
-
fromJSON(object: any): ColumnState_ColumnVisibilityEntry;
|
|
1152
|
-
toJSON(message: ColumnState_ColumnVisibilityEntry): unknown;
|
|
1153
|
-
create(base?: DeepPartial<ColumnState_ColumnVisibilityEntry>): ColumnState_ColumnVisibilityEntry;
|
|
1154
|
-
fromPartial(object: DeepPartial<ColumnState_ColumnVisibilityEntry>): ColumnState_ColumnVisibilityEntry;
|
|
1155
|
-
};
|
|
1156
|
-
export declare const ColumnState_Sort: {
|
|
1157
|
-
encode(message: ColumnState_Sort, writer?: _m0.Writer): _m0.Writer;
|
|
1158
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ColumnState_Sort;
|
|
1159
|
-
fromJSON(object: any): ColumnState_Sort;
|
|
1160
|
-
toJSON(message: ColumnState_Sort): unknown;
|
|
1161
|
-
create(base?: DeepPartial<ColumnState_Sort>): ColumnState_Sort;
|
|
1162
|
-
fromPartial(object: DeepPartial<ColumnState_Sort>): ColumnState_Sort;
|
|
1163
|
-
};
|
|
1164
|
-
export declare const EventLogConfig: {
|
|
1165
|
-
encode(message: EventLogConfig, writer?: _m0.Writer): _m0.Writer;
|
|
1166
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): EventLogConfig;
|
|
1167
|
-
fromJSON(object: any): EventLogConfig;
|
|
1168
|
-
toJSON(message: EventLogConfig): unknown;
|
|
1169
|
-
create(base?: DeepPartial<EventLogConfig>): EventLogConfig;
|
|
1170
|
-
fromPartial(object: DeepPartial<EventLogConfig>): EventLogConfig;
|
|
1171
|
-
};
|
|
1172
|
-
export declare const ProjectView: {
|
|
1173
|
-
encode(message: ProjectView, writer?: _m0.Writer): _m0.Writer;
|
|
1174
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ProjectView;
|
|
1175
|
-
fromJSON(object: any): ProjectView;
|
|
1176
|
-
toJSON(message: ProjectView): unknown;
|
|
1177
|
-
create(base?: DeepPartial<ProjectView>): ProjectView;
|
|
1178
|
-
fromPartial(object: DeepPartial<ProjectView>): ProjectView;
|
|
1179
|
-
};
|
|
1180
|
-
export declare const ProjectView_ProjectViewConfig: {
|
|
1181
|
-
encode(message: ProjectView_ProjectViewConfig, writer?: _m0.Writer): _m0.Writer;
|
|
1182
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ProjectView_ProjectViewConfig;
|
|
1183
|
-
fromJSON(object: any): ProjectView_ProjectViewConfig;
|
|
1184
|
-
toJSON(message: ProjectView_ProjectViewConfig): unknown;
|
|
1185
|
-
create(base?: DeepPartial<ProjectView_ProjectViewConfig>): ProjectView_ProjectViewConfig;
|
|
1186
|
-
fromPartial(object: DeepPartial<ProjectView_ProjectViewConfig>): ProjectView_ProjectViewConfig;
|
|
1187
|
-
};
|
|
1188
|
-
export declare const Organization: {
|
|
1189
|
-
encode(message: Organization, writer?: _m0.Writer): _m0.Writer;
|
|
1190
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Organization;
|
|
1191
|
-
fromJSON(object: any): Organization;
|
|
1192
|
-
toJSON(message: Organization): unknown;
|
|
1193
|
-
create(base?: DeepPartial<Organization>): Organization;
|
|
1194
|
-
fromPartial(object: DeepPartial<Organization>): Organization;
|
|
1195
|
-
};
|
|
1196
|
-
export declare const Organization_Member: {
|
|
1197
|
-
encode(message: Organization_Member, writer?: _m0.Writer): _m0.Writer;
|
|
1198
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Organization_Member;
|
|
1199
|
-
fromJSON(object: any): Organization_Member;
|
|
1200
|
-
toJSON(message: Organization_Member): unknown;
|
|
1201
|
-
create(base?: DeepPartial<Organization_Member>): Organization_Member;
|
|
1202
|
-
fromPartial(object: DeepPartial<Organization_Member>): Organization_Member;
|
|
1203
|
-
};
|
|
1204
|
-
export declare const ApiKey: {
|
|
1205
|
-
encode(message: ApiKey, writer?: _m0.Writer): _m0.Writer;
|
|
1206
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ApiKey;
|
|
1207
|
-
fromJSON(object: any): ApiKey;
|
|
1208
|
-
toJSON(message: ApiKey): unknown;
|
|
1209
|
-
create(base?: DeepPartial<ApiKey>): ApiKey;
|
|
1210
|
-
fromPartial(object: DeepPartial<ApiKey>): ApiKey;
|
|
1211
|
-
};
|
|
1212
|
-
export declare const ApiKey_ScopeProjectsEntry: {
|
|
1213
|
-
encode(message: ApiKey_ScopeProjectsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1214
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ApiKey_ScopeProjectsEntry;
|
|
1215
|
-
fromJSON(object: any): ApiKey_ScopeProjectsEntry;
|
|
1216
|
-
toJSON(message: ApiKey_ScopeProjectsEntry): unknown;
|
|
1217
|
-
create(base?: DeepPartial<ApiKey_ScopeProjectsEntry>): ApiKey_ScopeProjectsEntry;
|
|
1218
|
-
fromPartial(object: DeepPartial<ApiKey_ScopeProjectsEntry>): ApiKey_ScopeProjectsEntry;
|
|
1219
|
-
};
|
|
1220
|
-
export declare const TimeRangeLite: {
|
|
1221
|
-
encode(message: TimeRangeLite, writer?: _m0.Writer): _m0.Writer;
|
|
1222
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): TimeRangeLite;
|
|
1223
|
-
fromJSON(object: any): TimeRangeLite;
|
|
1224
|
-
toJSON(message: TimeRangeLite): unknown;
|
|
1225
|
-
create(base?: DeepPartial<TimeRangeLite>): TimeRangeLite;
|
|
1226
|
-
fromPartial(object: DeepPartial<TimeRangeLite>): TimeRangeLite;
|
|
1227
|
-
};
|
|
1228
|
-
export declare const TimeRange: {
|
|
1229
|
-
encode(message: TimeRange, writer?: _m0.Writer): _m0.Writer;
|
|
1230
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): TimeRange;
|
|
1231
|
-
fromJSON(object: any): TimeRange;
|
|
1232
|
-
toJSON(message: TimeRange): unknown;
|
|
1233
|
-
create(base?: DeepPartial<TimeRange>): TimeRange;
|
|
1234
|
-
fromPartial(object: DeepPartial<TimeRange>): TimeRange;
|
|
1235
|
-
};
|
|
1236
|
-
export declare const TimeRange_TimeLike: {
|
|
1237
|
-
encode(message: TimeRange_TimeLike, writer?: _m0.Writer): _m0.Writer;
|
|
1238
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): TimeRange_TimeLike;
|
|
1239
|
-
fromJSON(object: any): TimeRange_TimeLike;
|
|
1240
|
-
toJSON(message: TimeRange_TimeLike): unknown;
|
|
1241
|
-
create(base?: DeepPartial<TimeRange_TimeLike>): TimeRange_TimeLike;
|
|
1242
|
-
fromPartial(object: DeepPartial<TimeRange_TimeLike>): TimeRange_TimeLike;
|
|
1243
|
-
};
|
|
1244
|
-
export declare const TimeRange_RelativeTime: {
|
|
1245
|
-
encode(message: TimeRange_RelativeTime, writer?: _m0.Writer): _m0.Writer;
|
|
1246
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): TimeRange_RelativeTime;
|
|
1247
|
-
fromJSON(object: any): TimeRange_RelativeTime;
|
|
1248
|
-
toJSON(message: TimeRange_RelativeTime): unknown;
|
|
1249
|
-
create(base?: DeepPartial<TimeRange_RelativeTime>): TimeRange_RelativeTime;
|
|
1250
|
-
fromPartial(object: DeepPartial<TimeRange_RelativeTime>): TimeRange_RelativeTime;
|
|
1251
|
-
};
|
|
1252
|
-
export declare const Duration: {
|
|
1253
|
-
encode(message: Duration, writer?: _m0.Writer): _m0.Writer;
|
|
1254
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Duration;
|
|
1255
|
-
fromJSON(object: any): Duration;
|
|
1256
|
-
toJSON(message: Duration): unknown;
|
|
1257
|
-
create(base?: DeepPartial<Duration>): Duration;
|
|
1258
|
-
fromPartial(object: DeepPartial<Duration>): Duration;
|
|
1259
|
-
};
|
|
1260
|
-
export declare const Formula: {
|
|
1261
|
-
encode(message: Formula, writer?: _m0.Writer): _m0.Writer;
|
|
1262
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Formula;
|
|
1263
|
-
fromJSON(object: any): Formula;
|
|
1264
|
-
toJSON(message: Formula): unknown;
|
|
1265
|
-
create(base?: DeepPartial<Formula>): Formula;
|
|
1266
|
-
fromPartial(object: DeepPartial<Formula>): Formula;
|
|
1267
|
-
};
|
|
1268
|
-
export declare const Argument: {
|
|
1269
|
-
encode(message: Argument, writer?: _m0.Writer): _m0.Writer;
|
|
1270
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Argument;
|
|
1271
|
-
fromJSON(object: any): Argument;
|
|
1272
|
-
toJSON(message: Argument): unknown;
|
|
1273
|
-
create(base?: DeepPartial<Argument>): Argument;
|
|
1274
|
-
fromPartial(object: DeepPartial<Argument>): Argument;
|
|
1275
|
-
};
|
|
1276
|
-
export declare const Function: {
|
|
1277
|
-
encode(message: Function, writer?: _m0.Writer): _m0.Writer;
|
|
1278
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Function;
|
|
1279
|
-
fromJSON(object: any): Function;
|
|
1280
|
-
toJSON(message: Function): unknown;
|
|
1281
|
-
create(base?: DeepPartial<Function>): Function;
|
|
1282
|
-
fromPartial(object: DeepPartial<Function>): Function;
|
|
1283
|
-
};
|
|
1284
|
-
export declare const Query: {
|
|
1285
|
-
encode(message: Query, writer?: _m0.Writer): _m0.Writer;
|
|
1286
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Query;
|
|
1287
|
-
fromJSON(object: any): Query;
|
|
1288
|
-
toJSON(message: Query): unknown;
|
|
1289
|
-
create(base?: DeepPartial<Query>): Query;
|
|
1290
|
-
fromPartial(object: DeepPartial<Query>): Query;
|
|
1291
|
-
};
|
|
1292
|
-
export declare const Query_LabelSelectorEntry: {
|
|
1293
|
-
encode(message: Query_LabelSelectorEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1294
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Query_LabelSelectorEntry;
|
|
1295
|
-
fromJSON(object: any): Query_LabelSelectorEntry;
|
|
1296
|
-
toJSON(message: Query_LabelSelectorEntry): unknown;
|
|
1297
|
-
create(base?: DeepPartial<Query_LabelSelectorEntry>): Query_LabelSelectorEntry;
|
|
1298
|
-
fromPartial(object: DeepPartial<Query_LabelSelectorEntry>): Query_LabelSelectorEntry;
|
|
1299
|
-
};
|
|
1300
|
-
export declare const Aggregate: {
|
|
1301
|
-
encode(message: Aggregate, writer?: _m0.Writer): _m0.Writer;
|
|
1302
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Aggregate;
|
|
1303
|
-
fromJSON(object: any): Aggregate;
|
|
1304
|
-
toJSON(message: Aggregate): unknown;
|
|
1305
|
-
create(base?: DeepPartial<Aggregate>): Aggregate;
|
|
1306
|
-
fromPartial(object: DeepPartial<Aggregate>): Aggregate;
|
|
1307
|
-
};
|
|
1308
|
-
export declare const Selector: {
|
|
1309
|
-
encode(message: Selector, writer?: _m0.Writer): _m0.Writer;
|
|
1310
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Selector;
|
|
1311
|
-
fromJSON(object: any): Selector;
|
|
1312
|
-
toJSON(message: Selector): unknown;
|
|
1313
|
-
create(base?: DeepPartial<Selector>): Selector;
|
|
1314
|
-
fromPartial(object: DeepPartial<Selector>): Selector;
|
|
1315
|
-
};
|
|
1316
|
-
export declare const SelectorExpr: {
|
|
1317
|
-
encode(message: SelectorExpr, writer?: _m0.Writer): _m0.Writer;
|
|
1318
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SelectorExpr;
|
|
1319
|
-
fromJSON(object: any): SelectorExpr;
|
|
1320
|
-
toJSON(message: SelectorExpr): unknown;
|
|
1321
|
-
create(base?: DeepPartial<SelectorExpr>): SelectorExpr;
|
|
1322
|
-
fromPartial(object: DeepPartial<SelectorExpr>): SelectorExpr;
|
|
1323
|
-
};
|
|
1324
|
-
export declare const SelectorExpr_LogicExpr: {
|
|
1325
|
-
encode(message: SelectorExpr_LogicExpr, writer?: _m0.Writer): _m0.Writer;
|
|
1326
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SelectorExpr_LogicExpr;
|
|
1327
|
-
fromJSON(object: any): SelectorExpr_LogicExpr;
|
|
1328
|
-
toJSON(message: SelectorExpr_LogicExpr): unknown;
|
|
1329
|
-
create(base?: DeepPartial<SelectorExpr_LogicExpr>): SelectorExpr_LogicExpr;
|
|
1330
|
-
fromPartial(object: DeepPartial<SelectorExpr_LogicExpr>): SelectorExpr_LogicExpr;
|
|
1331
|
-
};
|
|
1332
|
-
export declare const CohortsGroup: {
|
|
1333
|
-
encode(message: CohortsGroup, writer?: _m0.Writer): _m0.Writer;
|
|
1334
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): CohortsGroup;
|
|
1335
|
-
fromJSON(object: any): CohortsGroup;
|
|
1336
|
-
toJSON(message: CohortsGroup): unknown;
|
|
1337
|
-
create(base?: DeepPartial<CohortsGroup>): CohortsGroup;
|
|
1338
|
-
fromPartial(object: DeepPartial<CohortsGroup>): CohortsGroup;
|
|
1339
|
-
};
|
|
1340
|
-
export declare const CohortsQuery: {
|
|
1341
|
-
encode(message: CohortsQuery, writer?: _m0.Writer): _m0.Writer;
|
|
1342
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): CohortsQuery;
|
|
1343
|
-
fromJSON(object: any): CohortsQuery;
|
|
1344
|
-
toJSON(message: CohortsQuery): unknown;
|
|
1345
|
-
create(base?: DeepPartial<CohortsQuery>): CohortsQuery;
|
|
1346
|
-
fromPartial(object: DeepPartial<CohortsQuery>): CohortsQuery;
|
|
1347
|
-
};
|
|
1348
|
-
export declare const SegmentationQuery: {
|
|
1349
|
-
encode(message: SegmentationQuery, writer?: _m0.Writer): _m0.Writer;
|
|
1350
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentationQuery;
|
|
1351
|
-
fromJSON(object: any): SegmentationQuery;
|
|
1352
|
-
toJSON(message: SegmentationQuery): unknown;
|
|
1353
|
-
create(base?: DeepPartial<SegmentationQuery>): SegmentationQuery;
|
|
1354
|
-
fromPartial(object: DeepPartial<SegmentationQuery>): SegmentationQuery;
|
|
1355
|
-
};
|
|
1356
|
-
export declare const SegmentationQuery_Resource: {
|
|
1357
|
-
encode(message: SegmentationQuery_Resource, writer?: _m0.Writer): _m0.Writer;
|
|
1358
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentationQuery_Resource;
|
|
1359
|
-
fromJSON(object: any): SegmentationQuery_Resource;
|
|
1360
|
-
toJSON(message: SegmentationQuery_Resource): unknown;
|
|
1361
|
-
create(base?: DeepPartial<SegmentationQuery_Resource>): SegmentationQuery_Resource;
|
|
1362
|
-
fromPartial(object: DeepPartial<SegmentationQuery_Resource>): SegmentationQuery_Resource;
|
|
1363
|
-
};
|
|
1364
|
-
export declare const SegmentationQuery_Aggregation: {
|
|
1365
|
-
encode(message: SegmentationQuery_Aggregation, writer?: _m0.Writer): _m0.Writer;
|
|
1366
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentationQuery_Aggregation;
|
|
1367
|
-
fromJSON(object: any): SegmentationQuery_Aggregation;
|
|
1368
|
-
toJSON(message: SegmentationQuery_Aggregation): unknown;
|
|
1369
|
-
create(base?: DeepPartial<SegmentationQuery_Aggregation>): SegmentationQuery_Aggregation;
|
|
1370
|
-
fromPartial(object: DeepPartial<SegmentationQuery_Aggregation>): SegmentationQuery_Aggregation;
|
|
1371
|
-
};
|
|
1372
|
-
export declare const SegmentationQuery_Aggregation_Total: {
|
|
1373
|
-
encode(_: SegmentationQuery_Aggregation_Total, writer?: _m0.Writer): _m0.Writer;
|
|
1374
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentationQuery_Aggregation_Total;
|
|
1375
|
-
fromJSON(_: any): SegmentationQuery_Aggregation_Total;
|
|
1376
|
-
toJSON(_: SegmentationQuery_Aggregation_Total): unknown;
|
|
1377
|
-
create(base?: DeepPartial<SegmentationQuery_Aggregation_Total>): SegmentationQuery_Aggregation_Total;
|
|
1378
|
-
fromPartial(_: DeepPartial<SegmentationQuery_Aggregation_Total>): SegmentationQuery_Aggregation_Total;
|
|
1379
|
-
};
|
|
1380
|
-
export declare const SegmentationQuery_Aggregation_Unique: {
|
|
1381
|
-
encode(_: SegmentationQuery_Aggregation_Unique, writer?: _m0.Writer): _m0.Writer;
|
|
1382
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentationQuery_Aggregation_Unique;
|
|
1383
|
-
fromJSON(_: any): SegmentationQuery_Aggregation_Unique;
|
|
1384
|
-
toJSON(_: SegmentationQuery_Aggregation_Unique): unknown;
|
|
1385
|
-
create(base?: DeepPartial<SegmentationQuery_Aggregation_Unique>): SegmentationQuery_Aggregation_Unique;
|
|
1386
|
-
fromPartial(_: DeepPartial<SegmentationQuery_Aggregation_Unique>): SegmentationQuery_Aggregation_Unique;
|
|
1387
|
-
};
|
|
1388
|
-
export declare const SegmentationQuery_Aggregation_CountUnique: {
|
|
1389
|
-
encode(message: SegmentationQuery_Aggregation_CountUnique, writer?: _m0.Writer): _m0.Writer;
|
|
1390
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentationQuery_Aggregation_CountUnique;
|
|
1391
|
-
fromJSON(object: any): SegmentationQuery_Aggregation_CountUnique;
|
|
1392
|
-
toJSON(message: SegmentationQuery_Aggregation_CountUnique): unknown;
|
|
1393
|
-
create(base?: DeepPartial<SegmentationQuery_Aggregation_CountUnique>): SegmentationQuery_Aggregation_CountUnique;
|
|
1394
|
-
fromPartial(object: DeepPartial<SegmentationQuery_Aggregation_CountUnique>): SegmentationQuery_Aggregation_CountUnique;
|
|
1395
|
-
};
|
|
1396
|
-
export declare const SegmentationQuery_Aggregation_AggregateProperties: {
|
|
1397
|
-
encode(message: SegmentationQuery_Aggregation_AggregateProperties, writer?: _m0.Writer): _m0.Writer;
|
|
1398
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentationQuery_Aggregation_AggregateProperties;
|
|
1399
|
-
fromJSON(object: any): SegmentationQuery_Aggregation_AggregateProperties;
|
|
1400
|
-
toJSON(message: SegmentationQuery_Aggregation_AggregateProperties): unknown;
|
|
1401
|
-
create(base?: DeepPartial<SegmentationQuery_Aggregation_AggregateProperties>): SegmentationQuery_Aggregation_AggregateProperties;
|
|
1402
|
-
fromPartial(object: DeepPartial<SegmentationQuery_Aggregation_AggregateProperties>): SegmentationQuery_Aggregation_AggregateProperties;
|
|
1403
|
-
};
|
|
1404
|
-
export declare const SegmentationQuery_SelectorExpr: {
|
|
1405
|
-
encode(message: SegmentationQuery_SelectorExpr, writer?: _m0.Writer): _m0.Writer;
|
|
1406
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentationQuery_SelectorExpr;
|
|
1407
|
-
fromJSON(object: any): SegmentationQuery_SelectorExpr;
|
|
1408
|
-
toJSON(message: SegmentationQuery_SelectorExpr): unknown;
|
|
1409
|
-
create(base?: DeepPartial<SegmentationQuery_SelectorExpr>): SegmentationQuery_SelectorExpr;
|
|
1410
|
-
fromPartial(object: DeepPartial<SegmentationQuery_SelectorExpr>): SegmentationQuery_SelectorExpr;
|
|
1411
|
-
};
|
|
1412
|
-
export declare const SegmentationQuery_SelectorExpr_LogicExpr: {
|
|
1413
|
-
encode(message: SegmentationQuery_SelectorExpr_LogicExpr, writer?: _m0.Writer): _m0.Writer;
|
|
1414
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentationQuery_SelectorExpr_LogicExpr;
|
|
1415
|
-
fromJSON(object: any): SegmentationQuery_SelectorExpr_LogicExpr;
|
|
1416
|
-
toJSON(message: SegmentationQuery_SelectorExpr_LogicExpr): unknown;
|
|
1417
|
-
create(base?: DeepPartial<SegmentationQuery_SelectorExpr_LogicExpr>): SegmentationQuery_SelectorExpr_LogicExpr;
|
|
1418
|
-
fromPartial(object: DeepPartial<SegmentationQuery_SelectorExpr_LogicExpr>): SegmentationQuery_SelectorExpr_LogicExpr;
|
|
1419
|
-
};
|
|
1420
|
-
export declare const CohortsFilter: {
|
|
1421
|
-
encode(message: CohortsFilter, writer?: _m0.Writer): _m0.Writer;
|
|
1422
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): CohortsFilter;
|
|
1423
|
-
fromJSON(object: any): CohortsFilter;
|
|
1424
|
-
toJSON(message: CohortsFilter): unknown;
|
|
1425
|
-
create(base?: DeepPartial<CohortsFilter>): CohortsFilter;
|
|
1426
|
-
fromPartial(object: DeepPartial<CohortsFilter>): CohortsFilter;
|
|
1427
|
-
};
|
|
1428
|
-
export declare const CohortsFilter_Aggregation: {
|
|
1429
|
-
encode(message: CohortsFilter_Aggregation, writer?: _m0.Writer): _m0.Writer;
|
|
1430
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): CohortsFilter_Aggregation;
|
|
1431
|
-
fromJSON(object: any): CohortsFilter_Aggregation;
|
|
1432
|
-
toJSON(message: CohortsFilter_Aggregation): unknown;
|
|
1433
|
-
create(base?: DeepPartial<CohortsFilter_Aggregation>): CohortsFilter_Aggregation;
|
|
1434
|
-
fromPartial(object: DeepPartial<CohortsFilter_Aggregation>): CohortsFilter_Aggregation;
|
|
1435
|
-
};
|
|
1436
|
-
export declare const CohortsFilter_Aggregation_Total: {
|
|
1437
|
-
encode(_: CohortsFilter_Aggregation_Total, writer?: _m0.Writer): _m0.Writer;
|
|
1438
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): CohortsFilter_Aggregation_Total;
|
|
1439
|
-
fromJSON(_: any): CohortsFilter_Aggregation_Total;
|
|
1440
|
-
toJSON(_: CohortsFilter_Aggregation_Total): unknown;
|
|
1441
|
-
create(base?: DeepPartial<CohortsFilter_Aggregation_Total>): CohortsFilter_Aggregation_Total;
|
|
1442
|
-
fromPartial(_: DeepPartial<CohortsFilter_Aggregation_Total>): CohortsFilter_Aggregation_Total;
|
|
1443
|
-
};
|
|
1444
|
-
export declare const CohortsFilter_Aggregation_AggregateProperties: {
|
|
1445
|
-
encode(message: CohortsFilter_Aggregation_AggregateProperties, writer?: _m0.Writer): _m0.Writer;
|
|
1446
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): CohortsFilter_Aggregation_AggregateProperties;
|
|
1447
|
-
fromJSON(object: any): CohortsFilter_Aggregation_AggregateProperties;
|
|
1448
|
-
toJSON(message: CohortsFilter_Aggregation_AggregateProperties): unknown;
|
|
1449
|
-
create(base?: DeepPartial<CohortsFilter_Aggregation_AggregateProperties>): CohortsFilter_Aggregation_AggregateProperties;
|
|
1450
|
-
fromPartial(object: DeepPartial<CohortsFilter_Aggregation_AggregateProperties>): CohortsFilter_Aggregation_AggregateProperties;
|
|
1451
|
-
};
|
|
1452
|
-
export declare const Contract: {
|
|
1453
|
-
encode(message: Contract, writer?: _m0.Writer): _m0.Writer;
|
|
1454
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Contract;
|
|
1455
|
-
fromJSON(object: any): Contract;
|
|
1456
|
-
toJSON(message: Contract): unknown;
|
|
1457
|
-
create(base?: DeepPartial<Contract>): Contract;
|
|
1458
|
-
fromPartial(object: DeepPartial<Contract>): Contract;
|
|
1459
|
-
};
|
|
1460
|
-
export declare const ErrorRecord: {
|
|
1461
|
-
encode(message: ErrorRecord, writer?: _m0.Writer): _m0.Writer;
|
|
1462
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ErrorRecord;
|
|
1463
|
-
fromJSON(object: any): ErrorRecord;
|
|
1464
|
-
toJSON(message: ErrorRecord): unknown;
|
|
1465
|
-
create(base?: DeepPartial<ErrorRecord>): ErrorRecord;
|
|
1466
|
-
fromPartial(object: DeepPartial<ErrorRecord>): ErrorRecord;
|
|
1467
|
-
};
|
|
1468
|
-
export declare const StringList: {
|
|
1469
|
-
encode(message: StringList, writer?: _m0.Writer): _m0.Writer;
|
|
1470
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): StringList;
|
|
1471
|
-
fromJSON(object: any): StringList;
|
|
1472
|
-
toJSON(message: StringList): unknown;
|
|
1473
|
-
create(base?: DeepPartial<StringList>): StringList;
|
|
1474
|
-
fromPartial(object: DeepPartial<StringList>): StringList;
|
|
1475
|
-
};
|
|
1476
|
-
export declare const Any: {
|
|
1477
|
-
encode(message: Any, writer?: _m0.Writer): _m0.Writer;
|
|
1478
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Any;
|
|
1479
|
-
fromJSON(object: any): Any;
|
|
1480
|
-
toJSON(message: Any): unknown;
|
|
1481
|
-
create(base?: DeepPartial<Any>): Any;
|
|
1482
|
-
fromPartial(object: DeepPartial<Any>): Any;
|
|
1483
|
-
};
|
|
1484
|
-
export declare const Channel: {
|
|
1485
|
-
encode(message: Channel, writer?: _m0.Writer): _m0.Writer;
|
|
1486
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Channel;
|
|
1487
|
-
fromJSON(object: any): Channel;
|
|
1488
|
-
toJSON(message: Channel): unknown;
|
|
1489
|
-
create(base?: DeepPartial<Channel>): Channel;
|
|
1490
|
-
fromPartial(object: DeepPartial<Channel>): Channel;
|
|
1491
|
-
};
|
|
1492
|
-
export declare const Channel_CustomHeadersEntry: {
|
|
1493
|
-
encode(message: Channel_CustomHeadersEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1494
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Channel_CustomHeadersEntry;
|
|
1495
|
-
fromJSON(object: any): Channel_CustomHeadersEntry;
|
|
1496
|
-
toJSON(message: Channel_CustomHeadersEntry): unknown;
|
|
1497
|
-
create(base?: DeepPartial<Channel_CustomHeadersEntry>): Channel_CustomHeadersEntry;
|
|
1498
|
-
fromPartial(object: DeepPartial<Channel_CustomHeadersEntry>): Channel_CustomHeadersEntry;
|
|
1499
|
-
};
|
|
1500
|
-
export declare const EventLogEntry: {
|
|
1501
|
-
encode(message: EventLogEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1502
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): EventLogEntry;
|
|
1503
|
-
fromJSON(object: any): EventLogEntry;
|
|
1504
|
-
toJSON(message: EventLogEntry): unknown;
|
|
1505
|
-
create(base?: DeepPartial<EventLogEntry>): EventLogEntry;
|
|
1506
|
-
fromPartial(object: DeepPartial<EventLogEntry>): EventLogEntry;
|
|
1507
|
-
};
|
|
1508
|
-
export declare const Matrix: {
|
|
1509
|
-
encode(message: Matrix, writer?: _m0.Writer): _m0.Writer;
|
|
1510
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Matrix;
|
|
1511
|
-
fromJSON(object: any): Matrix;
|
|
1512
|
-
toJSON(message: Matrix): unknown;
|
|
1513
|
-
create(base?: DeepPartial<Matrix>): Matrix;
|
|
1514
|
-
fromPartial(object: DeepPartial<Matrix>): Matrix;
|
|
1515
|
-
};
|
|
1516
|
-
export declare const Matrix_Sample: {
|
|
1517
|
-
encode(message: Matrix_Sample, writer?: _m0.Writer): _m0.Writer;
|
|
1518
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Matrix_Sample;
|
|
1519
|
-
fromJSON(object: any): Matrix_Sample;
|
|
1520
|
-
toJSON(message: Matrix_Sample): unknown;
|
|
1521
|
-
create(base?: DeepPartial<Matrix_Sample>): Matrix_Sample;
|
|
1522
|
-
fromPartial(object: DeepPartial<Matrix_Sample>): Matrix_Sample;
|
|
1523
|
-
};
|
|
1524
|
-
export declare const Matrix_Metric: {
|
|
1525
|
-
encode(message: Matrix_Metric, writer?: _m0.Writer): _m0.Writer;
|
|
1526
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Matrix_Metric;
|
|
1527
|
-
fromJSON(object: any): Matrix_Metric;
|
|
1528
|
-
toJSON(message: Matrix_Metric): unknown;
|
|
1529
|
-
create(base?: DeepPartial<Matrix_Metric>): Matrix_Metric;
|
|
1530
|
-
fromPartial(object: DeepPartial<Matrix_Metric>): Matrix_Metric;
|
|
1531
|
-
};
|
|
1532
|
-
export declare const Matrix_Metric_LabelsEntry: {
|
|
1533
|
-
encode(message: Matrix_Metric_LabelsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1534
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Matrix_Metric_LabelsEntry;
|
|
1535
|
-
fromJSON(object: any): Matrix_Metric_LabelsEntry;
|
|
1536
|
-
toJSON(message: Matrix_Metric_LabelsEntry): unknown;
|
|
1537
|
-
create(base?: DeepPartial<Matrix_Metric_LabelsEntry>): Matrix_Metric_LabelsEntry;
|
|
1538
|
-
fromPartial(object: DeepPartial<Matrix_Metric_LabelsEntry>): Matrix_Metric_LabelsEntry;
|
|
1539
|
-
};
|
|
1540
|
-
export declare const Matrix_Value: {
|
|
1541
|
-
encode(message: Matrix_Value, writer?: _m0.Writer): _m0.Writer;
|
|
1542
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Matrix_Value;
|
|
1543
|
-
fromJSON(object: any): Matrix_Value;
|
|
1544
|
-
toJSON(message: Matrix_Value): unknown;
|
|
1545
|
-
create(base?: DeepPartial<Matrix_Value>): Matrix_Value;
|
|
1546
|
-
fromPartial(object: DeepPartial<Matrix_Value>): Matrix_Value;
|
|
1547
|
-
};
|
|
1548
|
-
export declare const DashboardSharingRequest: {
|
|
1549
|
-
encode(message: DashboardSharingRequest, writer?: _m0.Writer): _m0.Writer;
|
|
1550
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): DashboardSharingRequest;
|
|
1551
|
-
fromJSON(object: any): DashboardSharingRequest;
|
|
1552
|
-
toJSON(message: DashboardSharingRequest): unknown;
|
|
1553
|
-
create(base?: DeepPartial<DashboardSharingRequest>): DashboardSharingRequest;
|
|
1554
|
-
fromPartial(object: DeepPartial<DashboardSharingRequest>): DashboardSharingRequest;
|
|
1555
|
-
};
|
|
1556
|
-
export declare const UserUsage: {
|
|
1557
|
-
encode(message: UserUsage, writer?: _m0.Writer): _m0.Writer;
|
|
1558
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): UserUsage;
|
|
1559
|
-
fromJSON(object: any): UserUsage;
|
|
1560
|
-
toJSON(message: UserUsage): unknown;
|
|
1561
|
-
create(base?: DeepPartial<UserUsage>): UserUsage;
|
|
1562
|
-
fromPartial(object: DeepPartial<UserUsage>): UserUsage;
|
|
1563
|
-
};
|
|
1564
|
-
export declare const UserUsage_ProjectUsage: {
|
|
1565
|
-
encode(message: UserUsage_ProjectUsage, writer?: _m0.Writer): _m0.Writer;
|
|
1566
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): UserUsage_ProjectUsage;
|
|
1567
|
-
fromJSON(object: any): UserUsage_ProjectUsage;
|
|
1568
|
-
toJSON(message: UserUsage_ProjectUsage): unknown;
|
|
1569
|
-
create(base?: DeepPartial<UserUsage_ProjectUsage>): UserUsage_ProjectUsage;
|
|
1570
|
-
fromPartial(object: DeepPartial<UserUsage_ProjectUsage>): UserUsage_ProjectUsage;
|
|
1571
|
-
};
|
|
1572
|
-
export declare const UserUsage_UsageByProjectsEntry: {
|
|
1573
|
-
encode(message: UserUsage_UsageByProjectsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1574
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): UserUsage_UsageByProjectsEntry;
|
|
1575
|
-
fromJSON(object: any): UserUsage_UsageByProjectsEntry;
|
|
1576
|
-
toJSON(message: UserUsage_UsageByProjectsEntry): unknown;
|
|
1577
|
-
create(base?: DeepPartial<UserUsage_UsageByProjectsEntry>): UserUsage_UsageByProjectsEntry;
|
|
1578
|
-
fromPartial(object: DeepPartial<UserUsage_UsageByProjectsEntry>): UserUsage_UsageByProjectsEntry;
|
|
1579
|
-
};
|
|
1580
|
-
export declare const CoinID: {
|
|
1581
|
-
encode(message: CoinID, writer?: _m0.Writer): _m0.Writer;
|
|
1582
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): CoinID;
|
|
1583
|
-
fromJSON(object: any): CoinID;
|
|
1584
|
-
toJSON(message: CoinID): unknown;
|
|
1585
|
-
create(base?: DeepPartial<CoinID>): CoinID;
|
|
1586
|
-
fromPartial(object: DeepPartial<CoinID>): CoinID;
|
|
1587
|
-
};
|
|
1588
|
-
export declare const CoinID_AddressIdentifier: {
|
|
1589
|
-
encode(message: CoinID_AddressIdentifier, writer?: _m0.Writer): _m0.Writer;
|
|
1590
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): CoinID_AddressIdentifier;
|
|
1591
|
-
fromJSON(object: any): CoinID_AddressIdentifier;
|
|
1592
|
-
toJSON(message: CoinID_AddressIdentifier): unknown;
|
|
1593
|
-
create(base?: DeepPartial<CoinID_AddressIdentifier>): CoinID_AddressIdentifier;
|
|
1594
|
-
fromPartial(object: DeepPartial<CoinID_AddressIdentifier>): CoinID_AddressIdentifier;
|
|
1595
|
-
};
|
|
1596
|
-
export declare const PriceSegmentationQuery: {
|
|
1597
|
-
encode(message: PriceSegmentationQuery, writer?: _m0.Writer): _m0.Writer;
|
|
1598
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): PriceSegmentationQuery;
|
|
1599
|
-
fromJSON(object: any): PriceSegmentationQuery;
|
|
1600
|
-
toJSON(message: PriceSegmentationQuery): unknown;
|
|
1601
|
-
create(base?: DeepPartial<PriceSegmentationQuery>): PriceSegmentationQuery;
|
|
1602
|
-
fromPartial(object: DeepPartial<PriceSegmentationQuery>): PriceSegmentationQuery;
|
|
1603
|
-
};
|
|
1604
|
-
export declare const TabularData: {
|
|
1605
|
-
encode(message: TabularData, writer?: _m0.Writer): _m0.Writer;
|
|
1606
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): TabularData;
|
|
1607
|
-
fromJSON(object: any): TabularData;
|
|
1608
|
-
toJSON(message: TabularData): unknown;
|
|
1609
|
-
create(base?: DeepPartial<TabularData>): TabularData;
|
|
1610
|
-
fromPartial(object: DeepPartial<TabularData>): TabularData;
|
|
1611
|
-
};
|
|
1612
|
-
export declare const TabularData_ColumnTypesEntry: {
|
|
1613
|
-
encode(message: TabularData_ColumnTypesEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1614
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): TabularData_ColumnTypesEntry;
|
|
1615
|
-
fromJSON(object: any): TabularData_ColumnTypesEntry;
|
|
1616
|
-
toJSON(message: TabularData_ColumnTypesEntry): unknown;
|
|
1617
|
-
create(base?: DeepPartial<TabularData_ColumnTypesEntry>): TabularData_ColumnTypesEntry;
|
|
1618
|
-
fromPartial(object: DeepPartial<TabularData_ColumnTypesEntry>): TabularData_ColumnTypesEntry;
|
|
1619
|
-
};
|
|
1620
|
-
export declare const Account: {
|
|
1621
|
-
encode(message: Account, writer?: _m0.Writer): _m0.Writer;
|
|
1622
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Account;
|
|
1623
|
-
fromJSON(object: any): Account;
|
|
1624
|
-
toJSON(message: Account): unknown;
|
|
1625
|
-
create(base?: DeepPartial<Account>): Account;
|
|
1626
|
-
fromPartial(object: DeepPartial<Account>): Account;
|
|
1627
|
-
};
|
|
1628
|
-
export declare const ImportedProject: {
|
|
1629
|
-
encode(message: ImportedProject, writer?: _m0.Writer): _m0.Writer;
|
|
1630
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ImportedProject;
|
|
1631
|
-
fromJSON(object: any): ImportedProject;
|
|
1632
|
-
toJSON(message: ImportedProject): unknown;
|
|
1633
|
-
create(base?: DeepPartial<ImportedProject>): ImportedProject;
|
|
1634
|
-
fromPartial(object: DeepPartial<ImportedProject>): ImportedProject;
|
|
1635
|
-
};
|
|
1636
|
-
export declare const ProjectSuperset: {
|
|
1637
|
-
encode(message: ProjectSuperset, writer?: _m0.Writer): _m0.Writer;
|
|
1638
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ProjectSuperset;
|
|
1639
|
-
fromJSON(object: any): ProjectSuperset;
|
|
1640
|
-
toJSON(message: ProjectSuperset): unknown;
|
|
1641
|
-
create(base?: DeepPartial<ProjectSuperset>): ProjectSuperset;
|
|
1642
|
-
fromPartial(object: DeepPartial<ProjectSuperset>): ProjectSuperset;
|
|
1643
|
-
};
|
|
1644
|
-
export declare const SegmentParameter: {
|
|
1645
|
-
encode(message: SegmentParameter, writer?: _m0.Writer): _m0.Writer;
|
|
1646
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): SegmentParameter;
|
|
1647
|
-
fromJSON(object: any): SegmentParameter;
|
|
1648
|
-
toJSON(message: SegmentParameter): unknown;
|
|
1649
|
-
create(base?: DeepPartial<SegmentParameter>): SegmentParameter;
|
|
1650
|
-
fromPartial(object: DeepPartial<SegmentParameter>): SegmentParameter;
|
|
1651
|
-
};
|
|
1652
|
-
export declare const RetentionQuery: {
|
|
1653
|
-
encode(message: RetentionQuery, writer?: _m0.Writer): _m0.Writer;
|
|
1654
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RetentionQuery;
|
|
1655
|
-
fromJSON(object: any): RetentionQuery;
|
|
1656
|
-
toJSON(message: RetentionQuery): unknown;
|
|
1657
|
-
create(base?: DeepPartial<RetentionQuery>): RetentionQuery;
|
|
1658
|
-
fromPartial(object: DeepPartial<RetentionQuery>): RetentionQuery;
|
|
1659
|
-
};
|
|
1660
|
-
export declare const RetentionQuery_Filter: {
|
|
1661
|
-
encode(message: RetentionQuery_Filter, writer?: _m0.Writer): _m0.Writer;
|
|
1662
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RetentionQuery_Filter;
|
|
1663
|
-
fromJSON(object: any): RetentionQuery_Filter;
|
|
1664
|
-
toJSON(message: RetentionQuery_Filter): unknown;
|
|
1665
|
-
create(base?: DeepPartial<RetentionQuery_Filter>): RetentionQuery_Filter;
|
|
1666
|
-
fromPartial(object: DeepPartial<RetentionQuery_Filter>): RetentionQuery_Filter;
|
|
1667
|
-
};
|
|
1668
|
-
export declare const RetentionQuery_Filter_TimeFilter: {
|
|
1669
|
-
encode(message: RetentionQuery_Filter_TimeFilter, writer?: _m0.Writer): _m0.Writer;
|
|
1670
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RetentionQuery_Filter_TimeFilter;
|
|
1671
|
-
fromJSON(object: any): RetentionQuery_Filter_TimeFilter;
|
|
1672
|
-
toJSON(message: RetentionQuery_Filter_TimeFilter): unknown;
|
|
1673
|
-
create(base?: DeepPartial<RetentionQuery_Filter_TimeFilter>): RetentionQuery_Filter_TimeFilter;
|
|
1674
|
-
fromPartial(object: DeepPartial<RetentionQuery_Filter_TimeFilter>): RetentionQuery_Filter_TimeFilter;
|
|
1675
|
-
};
|
|
1676
|
-
export declare const RetentionQuery_Resource: {
|
|
1677
|
-
encode(message: RetentionQuery_Resource, writer?: _m0.Writer): _m0.Writer;
|
|
1678
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RetentionQuery_Resource;
|
|
1679
|
-
fromJSON(object: any): RetentionQuery_Resource;
|
|
1680
|
-
toJSON(message: RetentionQuery_Resource): unknown;
|
|
1681
|
-
create(base?: DeepPartial<RetentionQuery_Resource>): RetentionQuery_Resource;
|
|
1682
|
-
fromPartial(object: DeepPartial<RetentionQuery_Resource>): RetentionQuery_Resource;
|
|
1683
|
-
};
|
|
1684
|
-
export declare const RetentionQuery_Interval: {
|
|
1685
|
-
encode(message: RetentionQuery_Interval, writer?: _m0.Writer): _m0.Writer;
|
|
1686
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RetentionQuery_Interval;
|
|
1687
|
-
fromJSON(object: any): RetentionQuery_Interval;
|
|
1688
|
-
toJSON(message: RetentionQuery_Interval): unknown;
|
|
1689
|
-
create(base?: DeepPartial<RetentionQuery_Interval>): RetentionQuery_Interval;
|
|
1690
|
-
fromPartial(object: DeepPartial<RetentionQuery_Interval>): RetentionQuery_Interval;
|
|
1691
|
-
};
|
|
1692
|
-
export declare const RetentionMatrix: {
|
|
1693
|
-
encode(message: RetentionMatrix, writer?: _m0.Writer): _m0.Writer;
|
|
1694
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RetentionMatrix;
|
|
1695
|
-
fromJSON(object: any): RetentionMatrix;
|
|
1696
|
-
toJSON(message: RetentionMatrix): unknown;
|
|
1697
|
-
create(base?: DeepPartial<RetentionMatrix>): RetentionMatrix;
|
|
1698
|
-
fromPartial(object: DeepPartial<RetentionMatrix>): RetentionMatrix;
|
|
1699
|
-
};
|
|
1700
|
-
export declare const RetentionMatrix_Sample: {
|
|
1701
|
-
encode(message: RetentionMatrix_Sample, writer?: _m0.Writer): _m0.Writer;
|
|
1702
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RetentionMatrix_Sample;
|
|
1703
|
-
fromJSON(object: any): RetentionMatrix_Sample;
|
|
1704
|
-
toJSON(message: RetentionMatrix_Sample): unknown;
|
|
1705
|
-
create(base?: DeepPartial<RetentionMatrix_Sample>): RetentionMatrix_Sample;
|
|
1706
|
-
fromPartial(object: DeepPartial<RetentionMatrix_Sample>): RetentionMatrix_Sample;
|
|
1707
|
-
};
|
|
1708
|
-
export declare const RetentionMatrix_Sample_LabelsEntry: {
|
|
1709
|
-
encode(message: RetentionMatrix_Sample_LabelsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1710
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RetentionMatrix_Sample_LabelsEntry;
|
|
1711
|
-
fromJSON(object: any): RetentionMatrix_Sample_LabelsEntry;
|
|
1712
|
-
toJSON(message: RetentionMatrix_Sample_LabelsEntry): unknown;
|
|
1713
|
-
create(base?: DeepPartial<RetentionMatrix_Sample_LabelsEntry>): RetentionMatrix_Sample_LabelsEntry;
|
|
1714
|
-
fromPartial(object: DeepPartial<RetentionMatrix_Sample_LabelsEntry>): RetentionMatrix_Sample_LabelsEntry;
|
|
1715
|
-
};
|
|
1716
|
-
export declare const ComputeStats: {
|
|
1717
|
-
encode(message: ComputeStats, writer?: _m0.Writer): _m0.Writer;
|
|
1718
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ComputeStats;
|
|
1719
|
-
fromJSON(object: any): ComputeStats;
|
|
1720
|
-
toJSON(message: ComputeStats): unknown;
|
|
1721
|
-
create(base?: DeepPartial<ComputeStats>): ComputeStats;
|
|
1722
|
-
fromPartial(object: DeepPartial<ComputeStats>): ComputeStats;
|
|
1723
|
-
};
|
|
1724
|
-
export declare const ComputeStats_ClickhouseStats: {
|
|
1725
|
-
encode(message: ComputeStats_ClickhouseStats, writer?: _m0.Writer): _m0.Writer;
|
|
1726
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ComputeStats_ClickhouseStats;
|
|
1727
|
-
fromJSON(object: any): ComputeStats_ClickhouseStats;
|
|
1728
|
-
toJSON(message: ComputeStats_ClickhouseStats): unknown;
|
|
1729
|
-
create(base?: DeepPartial<ComputeStats_ClickhouseStats>): ComputeStats_ClickhouseStats;
|
|
1730
|
-
fromPartial(object: DeepPartial<ComputeStats_ClickhouseStats>): ComputeStats_ClickhouseStats;
|
|
1731
|
-
};
|
|
1732
|
-
export declare const ClickhouseStatus: {
|
|
1733
|
-
encode(message: ClickhouseStatus, writer?: _m0.Writer): _m0.Writer;
|
|
1734
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ClickhouseStatus;
|
|
1735
|
-
fromJSON(object: any): ClickhouseStatus;
|
|
1736
|
-
toJSON(message: ClickhouseStatus): unknown;
|
|
1737
|
-
create(base?: DeepPartial<ClickhouseStatus>): ClickhouseStatus;
|
|
1738
|
-
fromPartial(object: DeepPartial<ClickhouseStatus>): ClickhouseStatus;
|
|
1739
|
-
};
|
|
1740
|
-
export declare const ClickhouseStatus_Mutation: {
|
|
1741
|
-
encode(message: ClickhouseStatus_Mutation, writer?: _m0.Writer): _m0.Writer;
|
|
1742
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ClickhouseStatus_Mutation;
|
|
1743
|
-
fromJSON(object: any): ClickhouseStatus_Mutation;
|
|
1744
|
-
toJSON(message: ClickhouseStatus_Mutation): unknown;
|
|
1745
|
-
create(base?: DeepPartial<ClickhouseStatus_Mutation>): ClickhouseStatus_Mutation;
|
|
1746
|
-
fromPartial(object: DeepPartial<ClickhouseStatus_Mutation>): ClickhouseStatus_Mutation;
|
|
1747
|
-
};
|
|
1748
|
-
export declare const ClickhouseStatus_Process: {
|
|
1749
|
-
encode(message: ClickhouseStatus_Process, writer?: _m0.Writer): _m0.Writer;
|
|
1750
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ClickhouseStatus_Process;
|
|
1751
|
-
fromJSON(object: any): ClickhouseStatus_Process;
|
|
1752
|
-
toJSON(message: ClickhouseStatus_Process): unknown;
|
|
1753
|
-
create(base?: DeepPartial<ClickhouseStatus_Process>): ClickhouseStatus_Process;
|
|
1754
|
-
fromPartial(object: DeepPartial<ClickhouseStatus_Process>): ClickhouseStatus_Process;
|
|
1755
|
-
};
|
|
1756
|
-
export declare const ClickhouseStatus_Processes: {
|
|
1757
|
-
encode(message: ClickhouseStatus_Processes, writer?: _m0.Writer): _m0.Writer;
|
|
1758
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ClickhouseStatus_Processes;
|
|
1759
|
-
fromJSON(object: any): ClickhouseStatus_Processes;
|
|
1760
|
-
toJSON(message: ClickhouseStatus_Processes): unknown;
|
|
1761
|
-
create(base?: DeepPartial<ClickhouseStatus_Processes>): ClickhouseStatus_Processes;
|
|
1762
|
-
fromPartial(object: DeepPartial<ClickhouseStatus_Processes>): ClickhouseStatus_Processes;
|
|
1763
|
-
};
|
|
1764
|
-
export declare const ClickhouseStatus_MutationsEntry: {
|
|
1765
|
-
encode(message: ClickhouseStatus_MutationsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1766
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ClickhouseStatus_MutationsEntry;
|
|
1767
|
-
fromJSON(object: any): ClickhouseStatus_MutationsEntry;
|
|
1768
|
-
toJSON(message: ClickhouseStatus_MutationsEntry): unknown;
|
|
1769
|
-
create(base?: DeepPartial<ClickhouseStatus_MutationsEntry>): ClickhouseStatus_MutationsEntry;
|
|
1770
|
-
fromPartial(object: DeepPartial<ClickhouseStatus_MutationsEntry>): ClickhouseStatus_MutationsEntry;
|
|
1771
|
-
};
|
|
1772
|
-
export declare const ClickhouseStatus_ProcessesEntry: {
|
|
1773
|
-
encode(message: ClickhouseStatus_ProcessesEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1774
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ClickhouseStatus_ProcessesEntry;
|
|
1775
|
-
fromJSON(object: any): ClickhouseStatus_ProcessesEntry;
|
|
1776
|
-
toJSON(message: ClickhouseStatus_ProcessesEntry): unknown;
|
|
1777
|
-
create(base?: DeepPartial<ClickhouseStatus_ProcessesEntry>): ClickhouseStatus_ProcessesEntry;
|
|
1778
|
-
fromPartial(object: DeepPartial<ClickhouseStatus_ProcessesEntry>): ClickhouseStatus_ProcessesEntry;
|
|
1779
|
-
};
|
|
1780
|
-
export declare const ProjectVariables: {
|
|
1781
|
-
encode(message: ProjectVariables, writer?: _m0.Writer): _m0.Writer;
|
|
1782
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ProjectVariables;
|
|
1783
|
-
fromJSON(object: any): ProjectVariables;
|
|
1784
|
-
toJSON(message: ProjectVariables): unknown;
|
|
1785
|
-
create(base?: DeepPartial<ProjectVariables>): ProjectVariables;
|
|
1786
|
-
fromPartial(object: DeepPartial<ProjectVariables>): ProjectVariables;
|
|
1787
|
-
};
|
|
1788
|
-
export declare const ProjectVariables_Variable: {
|
|
1789
|
-
encode(message: ProjectVariables_Variable, writer?: _m0.Writer): _m0.Writer;
|
|
1790
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ProjectVariables_Variable;
|
|
1791
|
-
fromJSON(object: any): ProjectVariables_Variable;
|
|
1792
|
-
toJSON(message: ProjectVariables_Variable): unknown;
|
|
1793
|
-
create(base?: DeepPartial<ProjectVariables_Variable>): ProjectVariables_Variable;
|
|
1794
|
-
fromPartial(object: DeepPartial<ProjectVariables_Variable>): ProjectVariables_Variable;
|
|
1795
|
-
};
|
|
1796
|
-
export declare const CachePolicy: {
|
|
1797
|
-
encode(message: CachePolicy, writer?: _m0.Writer): _m0.Writer;
|
|
1798
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): CachePolicy;
|
|
1799
|
-
fromJSON(object: any): CachePolicy;
|
|
1800
|
-
toJSON(message: CachePolicy): unknown;
|
|
1801
|
-
create(base?: DeepPartial<CachePolicy>): CachePolicy;
|
|
1802
|
-
fromPartial(object: DeepPartial<CachePolicy>): CachePolicy;
|
|
1803
|
-
};
|
|
1804
|
-
export declare const Notification: {
|
|
1805
|
-
encode(message: Notification, writer?: _m0.Writer): _m0.Writer;
|
|
1806
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Notification;
|
|
1807
|
-
fromJSON(object: any): Notification;
|
|
1808
|
-
toJSON(message: Notification): unknown;
|
|
1809
|
-
create(base?: DeepPartial<Notification>): Notification;
|
|
1810
|
-
fromPartial(object: DeepPartial<Notification>): Notification;
|
|
1811
|
-
};
|
|
1812
|
-
export declare const Notification_AttributesEntry: {
|
|
1813
|
-
encode(message: Notification_AttributesEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1814
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): Notification_AttributesEntry;
|
|
1815
|
-
fromJSON(object: any): Notification_AttributesEntry;
|
|
1816
|
-
toJSON(message: Notification_AttributesEntry): unknown;
|
|
1817
|
-
create(base?: DeepPartial<Notification_AttributesEntry>): Notification_AttributesEntry;
|
|
1818
|
-
fromPartial(object: DeepPartial<Notification_AttributesEntry>): Notification_AttributesEntry;
|
|
1819
|
-
};
|
|
1820
|
-
export declare const RichValue: {
|
|
1821
|
-
encode(message: RichValue, writer?: _m0.Writer): _m0.Writer;
|
|
1822
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RichValue;
|
|
1823
|
-
fromJSON(object: any): RichValue;
|
|
1824
|
-
toJSON(message: RichValue): unknown;
|
|
1825
|
-
create(base?: DeepPartial<RichValue>): RichValue;
|
|
1826
|
-
fromPartial(object: DeepPartial<RichValue>): RichValue;
|
|
1827
|
-
};
|
|
1828
|
-
export declare const RichStruct: {
|
|
1829
|
-
encode(message: RichStruct, writer?: _m0.Writer): _m0.Writer;
|
|
1830
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RichStruct;
|
|
1831
|
-
fromJSON(object: any): RichStruct;
|
|
1832
|
-
toJSON(message: RichStruct): unknown;
|
|
1833
|
-
create(base?: DeepPartial<RichStruct>): RichStruct;
|
|
1834
|
-
fromPartial(object: DeepPartial<RichStruct>): RichStruct;
|
|
1835
|
-
};
|
|
1836
|
-
export declare const RichStruct_FieldsEntry: {
|
|
1837
|
-
encode(message: RichStruct_FieldsEntry, writer?: _m0.Writer): _m0.Writer;
|
|
1838
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RichStruct_FieldsEntry;
|
|
1839
|
-
fromJSON(object: any): RichStruct_FieldsEntry;
|
|
1840
|
-
toJSON(message: RichStruct_FieldsEntry): unknown;
|
|
1841
|
-
create(base?: DeepPartial<RichStruct_FieldsEntry>): RichStruct_FieldsEntry;
|
|
1842
|
-
fromPartial(object: DeepPartial<RichStruct_FieldsEntry>): RichStruct_FieldsEntry;
|
|
1843
|
-
};
|
|
1844
|
-
export declare const RichValueList: {
|
|
1845
|
-
encode(message: RichValueList, writer?: _m0.Writer): _m0.Writer;
|
|
1846
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RichValueList;
|
|
1847
|
-
fromJSON(object: any): RichValueList;
|
|
1848
|
-
toJSON(message: RichValueList): unknown;
|
|
1849
|
-
create(base?: DeepPartial<RichValueList>): RichValueList;
|
|
1850
|
-
fromPartial(object: DeepPartial<RichValueList>): RichValueList;
|
|
1851
|
-
};
|
|
1852
|
-
export declare const RichStructList: {
|
|
1853
|
-
encode(message: RichStructList, writer?: _m0.Writer): _m0.Writer;
|
|
1854
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RichStructList;
|
|
1855
|
-
fromJSON(object: any): RichStructList;
|
|
1856
|
-
toJSON(message: RichStructList): unknown;
|
|
1857
|
-
create(base?: DeepPartial<RichStructList>): RichStructList;
|
|
1858
|
-
fromPartial(object: DeepPartial<RichStructList>): RichStructList;
|
|
1859
|
-
};
|
|
1860
|
-
export declare const BigDecimal: {
|
|
1861
|
-
encode(message: BigDecimal, writer?: _m0.Writer): _m0.Writer;
|
|
1862
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): BigDecimal;
|
|
1863
|
-
fromJSON(object: any): BigDecimal;
|
|
1864
|
-
toJSON(message: BigDecimal): unknown;
|
|
1865
|
-
create(base?: DeepPartial<BigDecimal>): BigDecimal;
|
|
1866
|
-
fromPartial(object: DeepPartial<BigDecimal>): BigDecimal;
|
|
1867
|
-
};
|
|
1868
|
-
export declare const BigInteger: {
|
|
1869
|
-
encode(message: BigInteger, writer?: _m0.Writer): _m0.Writer;
|
|
1870
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): BigInteger;
|
|
1871
|
-
fromJSON(object: any): BigInteger;
|
|
1872
|
-
toJSON(message: BigInteger): unknown;
|
|
1873
|
-
create(base?: DeepPartial<BigInteger>): BigInteger;
|
|
1874
|
-
fromPartial(object: DeepPartial<BigInteger>): BigInteger;
|
|
1875
|
-
};
|
|
1876
|
-
export declare const TokenAmount: {
|
|
1877
|
-
encode(message: TokenAmount, writer?: _m0.Writer): _m0.Writer;
|
|
1878
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): TokenAmount;
|
|
1879
|
-
fromJSON(object: any): TokenAmount;
|
|
1880
|
-
toJSON(message: TokenAmount): unknown;
|
|
1881
|
-
create(base?: DeepPartial<TokenAmount>): TokenAmount;
|
|
1882
|
-
fromPartial(object: DeepPartial<TokenAmount>): TokenAmount;
|
|
1883
|
-
};
|
|
1884
|
-
export declare const RequestLog: {
|
|
1885
|
-
encode(message: RequestLog, writer?: _m0.Writer): _m0.Writer;
|
|
1886
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): RequestLog;
|
|
1887
|
-
fromJSON(object: any): RequestLog;
|
|
1888
|
-
toJSON(message: RequestLog): unknown;
|
|
1889
|
-
create(base?: DeepPartial<RequestLog>): RequestLog;
|
|
1890
|
-
fromPartial(object: DeepPartial<RequestLog>): RequestLog;
|
|
1891
|
-
};
|
|
1892
|
-
export declare const HistoryChat: {
|
|
1893
|
-
encode(message: HistoryChat, writer?: _m0.Writer): _m0.Writer;
|
|
1894
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): HistoryChat;
|
|
1895
|
-
fromJSON(object: any): HistoryChat;
|
|
1896
|
-
toJSON(message: HistoryChat): unknown;
|
|
1897
|
-
create(base?: DeepPartial<HistoryChat>): HistoryChat;
|
|
1898
|
-
fromPartial(object: DeepPartial<HistoryChat>): HistoryChat;
|
|
1899
|
-
};
|
|
1900
|
-
export declare const ProjectOwnerAndSlug: {
|
|
1901
|
-
encode(message: ProjectOwnerAndSlug, writer?: _m0.Writer): _m0.Writer;
|
|
1902
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): ProjectOwnerAndSlug;
|
|
1903
|
-
fromJSON(object: any): ProjectOwnerAndSlug;
|
|
1904
|
-
toJSON(message: ProjectOwnerAndSlug): unknown;
|
|
1905
|
-
create(base?: DeepPartial<ProjectOwnerAndSlug>): ProjectOwnerAndSlug;
|
|
1906
|
-
fromPartial(object: DeepPartial<ProjectOwnerAndSlug>): ProjectOwnerAndSlug;
|
|
1907
|
-
};
|
|
1005
|
+
export declare const UsageTracker: MessageFns<UsageTracker>;
|
|
1006
|
+
export declare const UsageTracker_SkuWithFieldValue: MessageFns<UsageTracker_SkuWithFieldValue>;
|
|
1007
|
+
export declare const UsageTracker_SkusByField: MessageFns<UsageTracker_SkusByField>;
|
|
1008
|
+
export declare const UsageTracker_CustomSkus: MessageFns<UsageTracker_CustomSkus>;
|
|
1009
|
+
export declare const Auth: MessageFns<Auth>;
|
|
1010
|
+
export declare const Auth_MetadataEntry: MessageFns<Auth_MetadataEntry>;
|
|
1011
|
+
export declare const AccessMeta: MessageFns<AccessMeta>;
|
|
1012
|
+
export declare const User: MessageFns<User>;
|
|
1013
|
+
export declare const UserInfo: MessageFns<UserInfo>;
|
|
1014
|
+
export declare const Owner: MessageFns<Owner>;
|
|
1015
|
+
export declare const Project: MessageFns<Project>;
|
|
1016
|
+
export declare const Project_ProjectMember: MessageFns<Project_ProjectMember>;
|
|
1017
|
+
export declare const CommunityProject: MessageFns<CommunityProject>;
|
|
1018
|
+
export declare const CommunityProject_ChainEntry: MessageFns<CommunityProject_ChainEntry>;
|
|
1019
|
+
export declare const ProjectInfo: MessageFns<ProjectInfo>;
|
|
1020
|
+
export declare const EventLogColumn: MessageFns<EventLogColumn>;
|
|
1021
|
+
export declare const ColumnState: MessageFns<ColumnState>;
|
|
1022
|
+
export declare const ColumnState_ColumnSizingEntry: MessageFns<ColumnState_ColumnSizingEntry>;
|
|
1023
|
+
export declare const ColumnState_ColumnVisibilityEntry: MessageFns<ColumnState_ColumnVisibilityEntry>;
|
|
1024
|
+
export declare const ColumnState_Sort: MessageFns<ColumnState_Sort>;
|
|
1025
|
+
export declare const EventLogConfig: MessageFns<EventLogConfig>;
|
|
1026
|
+
export declare const ProjectView: MessageFns<ProjectView>;
|
|
1027
|
+
export declare const ProjectView_ProjectViewConfig: MessageFns<ProjectView_ProjectViewConfig>;
|
|
1028
|
+
export declare const Organization: MessageFns<Organization>;
|
|
1029
|
+
export declare const Organization_Member: MessageFns<Organization_Member>;
|
|
1030
|
+
export declare const ApiKey: MessageFns<ApiKey>;
|
|
1031
|
+
export declare const ApiKey_ScopeProjectsEntry: MessageFns<ApiKey_ScopeProjectsEntry>;
|
|
1032
|
+
export declare const TimeRangeLite: MessageFns<TimeRangeLite>;
|
|
1033
|
+
export declare const TimeRange: MessageFns<TimeRange>;
|
|
1034
|
+
export declare const TimeRange_TimeLike: MessageFns<TimeRange_TimeLike>;
|
|
1035
|
+
export declare const TimeRange_RelativeTime: MessageFns<TimeRange_RelativeTime>;
|
|
1036
|
+
export declare const Duration: MessageFns<Duration>;
|
|
1037
|
+
export declare const Formula: MessageFns<Formula>;
|
|
1038
|
+
export declare const Argument: MessageFns<Argument>;
|
|
1039
|
+
export declare const FunctionMessage: MessageFns<FunctionMessage>;
|
|
1040
|
+
export declare const Query: MessageFns<Query>;
|
|
1041
|
+
export declare const Query_LabelSelectorEntry: MessageFns<Query_LabelSelectorEntry>;
|
|
1042
|
+
export declare const Aggregate: MessageFns<Aggregate>;
|
|
1043
|
+
export declare const Selector: MessageFns<Selector>;
|
|
1044
|
+
export declare const SelectorExpr: MessageFns<SelectorExpr>;
|
|
1045
|
+
export declare const SelectorExpr_LogicExpr: MessageFns<SelectorExpr_LogicExpr>;
|
|
1046
|
+
export declare const CohortsGroup: MessageFns<CohortsGroup>;
|
|
1047
|
+
export declare const CohortsQuery: MessageFns<CohortsQuery>;
|
|
1048
|
+
export declare const SegmentationQuery: MessageFns<SegmentationQuery>;
|
|
1049
|
+
export declare const SegmentationQuery_Resource: MessageFns<SegmentationQuery_Resource>;
|
|
1050
|
+
export declare const SegmentationQuery_Aggregation: MessageFns<SegmentationQuery_Aggregation>;
|
|
1051
|
+
export declare const SegmentationQuery_Aggregation_Total: MessageFns<SegmentationQuery_Aggregation_Total>;
|
|
1052
|
+
export declare const SegmentationQuery_Aggregation_Unique: MessageFns<SegmentationQuery_Aggregation_Unique>;
|
|
1053
|
+
export declare const SegmentationQuery_Aggregation_CountUnique: MessageFns<SegmentationQuery_Aggregation_CountUnique>;
|
|
1054
|
+
export declare const SegmentationQuery_Aggregation_AggregateProperties: MessageFns<SegmentationQuery_Aggregation_AggregateProperties>;
|
|
1055
|
+
export declare const SegmentationQuery_SelectorExpr: MessageFns<SegmentationQuery_SelectorExpr>;
|
|
1056
|
+
export declare const SegmentationQuery_SelectorExpr_LogicExpr: MessageFns<SegmentationQuery_SelectorExpr_LogicExpr>;
|
|
1057
|
+
export declare const CohortsFilter: MessageFns<CohortsFilter>;
|
|
1058
|
+
export declare const CohortsFilter_Aggregation: MessageFns<CohortsFilter_Aggregation>;
|
|
1059
|
+
export declare const CohortsFilter_Aggregation_Total: MessageFns<CohortsFilter_Aggregation_Total>;
|
|
1060
|
+
export declare const CohortsFilter_Aggregation_AggregateProperties: MessageFns<CohortsFilter_Aggregation_AggregateProperties>;
|
|
1061
|
+
export declare const Contract: MessageFns<Contract>;
|
|
1062
|
+
export declare const ErrorRecord: MessageFns<ErrorRecord>;
|
|
1063
|
+
export declare const StringList: MessageFns<StringList>;
|
|
1064
|
+
export declare const Any: MessageFns<Any>;
|
|
1065
|
+
export declare const Channel: MessageFns<Channel>;
|
|
1066
|
+
export declare const Channel_CustomHeadersEntry: MessageFns<Channel_CustomHeadersEntry>;
|
|
1067
|
+
export declare const EventLogEntry: MessageFns<EventLogEntry>;
|
|
1068
|
+
export declare const Matrix: MessageFns<Matrix>;
|
|
1069
|
+
export declare const Matrix_Sample: MessageFns<Matrix_Sample>;
|
|
1070
|
+
export declare const Matrix_Metric: MessageFns<Matrix_Metric>;
|
|
1071
|
+
export declare const Matrix_Metric_LabelsEntry: MessageFns<Matrix_Metric_LabelsEntry>;
|
|
1072
|
+
export declare const Matrix_Value: MessageFns<Matrix_Value>;
|
|
1073
|
+
export declare const DashboardSharingRequest: MessageFns<DashboardSharingRequest>;
|
|
1074
|
+
export declare const UserUsage: MessageFns<UserUsage>;
|
|
1075
|
+
export declare const UserUsage_ProjectUsage: MessageFns<UserUsage_ProjectUsage>;
|
|
1076
|
+
export declare const UserUsage_UsageByProjectsEntry: MessageFns<UserUsage_UsageByProjectsEntry>;
|
|
1077
|
+
export declare const CoinID: MessageFns<CoinID>;
|
|
1078
|
+
export declare const CoinID_AddressIdentifier: MessageFns<CoinID_AddressIdentifier>;
|
|
1079
|
+
export declare const PriceSegmentationQuery: MessageFns<PriceSegmentationQuery>;
|
|
1080
|
+
export declare const TabularData: MessageFns<TabularData>;
|
|
1081
|
+
export declare const TabularData_ColumnTypesEntry: MessageFns<TabularData_ColumnTypesEntry>;
|
|
1082
|
+
export declare const Account: MessageFns<Account>;
|
|
1083
|
+
export declare const ImportedProject: MessageFns<ImportedProject>;
|
|
1084
|
+
export declare const ProjectSuperset: MessageFns<ProjectSuperset>;
|
|
1085
|
+
export declare const SegmentParameter: MessageFns<SegmentParameter>;
|
|
1086
|
+
export declare const RetentionQuery: MessageFns<RetentionQuery>;
|
|
1087
|
+
export declare const RetentionQuery_Filter: MessageFns<RetentionQuery_Filter>;
|
|
1088
|
+
export declare const RetentionQuery_Filter_TimeFilter: MessageFns<RetentionQuery_Filter_TimeFilter>;
|
|
1089
|
+
export declare const RetentionQuery_Resource: MessageFns<RetentionQuery_Resource>;
|
|
1090
|
+
export declare const RetentionQuery_Interval: MessageFns<RetentionQuery_Interval>;
|
|
1091
|
+
export declare const RetentionMatrix: MessageFns<RetentionMatrix>;
|
|
1092
|
+
export declare const RetentionMatrix_Sample: MessageFns<RetentionMatrix_Sample>;
|
|
1093
|
+
export declare const RetentionMatrix_Sample_LabelsEntry: MessageFns<RetentionMatrix_Sample_LabelsEntry>;
|
|
1094
|
+
export declare const ComputeStats: MessageFns<ComputeStats>;
|
|
1095
|
+
export declare const ComputeStats_ClickhouseStats: MessageFns<ComputeStats_ClickhouseStats>;
|
|
1096
|
+
export declare const ClickhouseStatus: MessageFns<ClickhouseStatus>;
|
|
1097
|
+
export declare const ClickhouseStatus_Mutation: MessageFns<ClickhouseStatus_Mutation>;
|
|
1098
|
+
export declare const ClickhouseStatus_Process: MessageFns<ClickhouseStatus_Process>;
|
|
1099
|
+
export declare const ClickhouseStatus_Processes: MessageFns<ClickhouseStatus_Processes>;
|
|
1100
|
+
export declare const ClickhouseStatus_MutationsEntry: MessageFns<ClickhouseStatus_MutationsEntry>;
|
|
1101
|
+
export declare const ClickhouseStatus_ProcessesEntry: MessageFns<ClickhouseStatus_ProcessesEntry>;
|
|
1102
|
+
export declare const ProjectVariables: MessageFns<ProjectVariables>;
|
|
1103
|
+
export declare const ProjectVariables_Variable: MessageFns<ProjectVariables_Variable>;
|
|
1104
|
+
export declare const CachePolicy: MessageFns<CachePolicy>;
|
|
1105
|
+
export declare const Notification: MessageFns<Notification>;
|
|
1106
|
+
export declare const Notification_AttributesEntry: MessageFns<Notification_AttributesEntry>;
|
|
1107
|
+
export declare const RichValue: MessageFns<RichValue>;
|
|
1108
|
+
export declare const RichStruct: MessageFns<RichStruct>;
|
|
1109
|
+
export declare const RichStruct_FieldsEntry: MessageFns<RichStruct_FieldsEntry>;
|
|
1110
|
+
export declare const RichValueList: MessageFns<RichValueList>;
|
|
1111
|
+
export declare const RichStructList: MessageFns<RichStructList>;
|
|
1112
|
+
export declare const BigDecimal: MessageFns<BigDecimal>;
|
|
1113
|
+
export declare const BigInteger: MessageFns<BigInteger>;
|
|
1114
|
+
export declare const TokenAmount: MessageFns<TokenAmount>;
|
|
1115
|
+
export declare const RequestLog: MessageFns<RequestLog>;
|
|
1116
|
+
export declare const HistoryChat: MessageFns<HistoryChat>;
|
|
1117
|
+
export declare const ProjectOwnerAndSlug: MessageFns<ProjectOwnerAndSlug>;
|
|
1908
1118
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined;
|
|
1909
1119
|
type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
1910
1120
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
1911
1121
|
} : Partial<T>;
|
|
1122
|
+
interface MessageFns<T> {
|
|
1123
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
1124
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
1125
|
+
fromJSON(object: any): T;
|
|
1126
|
+
toJSON(message: T): unknown;
|
|
1127
|
+
create(base?: DeepPartial<T>): T;
|
|
1128
|
+
fromPartial(object: DeepPartial<T>): T;
|
|
1129
|
+
}
|
|
1912
1130
|
export {};
|
|
1913
1131
|
//# sourceMappingURL=common.d.ts.map
|