@kurrent/kurrentdb-client 1.1.0 → 1.1.2
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/dist/events/binaryEvent.d.ts +1 -5
- package/dist/streams/appendToStream/appendRecords.d.ts +3 -0
- package/dist/streams/appendToStream/appendRecords.js +132 -0
- package/dist/streams/appendToStream/appendRecords.js.map +1 -0
- package/dist/utils/CommandError.js +8 -0
- package/dist/utils/CommandError.js.map +1 -1
- package/dist/utils/convertBridgeError.d.ts +2 -1
- package/dist/utils/convertBridgeError.js +14 -24
- package/dist/utils/convertBridgeError.js.map +1 -1
- package/generated/kurrentdb/protocols/v2/core_pb.d.ts +188 -188
- package/generated/kurrentdb/protocols/v2/core_pb.js +1301 -1301
- package/generated/kurrentdb/protocols/v2/features/service_grpc_pb.d.ts +43 -43
- package/generated/kurrentdb/protocols/v2/features/service_grpc_pb.js +50 -50
- package/generated/kurrentdb/protocols/v2/features/service_pb.d.ts +227 -227
- package/generated/kurrentdb/protocols/v2/features/service_pb.js +1753 -1753
- package/generated/kurrentdb/protocols/v2/streams/shared_pb.d.ts +218 -218
- package/generated/kurrentdb/protocols/v2/streams/shared_pb.js +1561 -1561
- package/package.json +66 -66
|
@@ -1,188 +1,188 @@
|
|
|
1
|
-
// package: kurrentdb.protocol
|
|
2
|
-
// file: kurrentdb/protocols/v2/core.proto
|
|
3
|
-
|
|
4
|
-
/* tslint:disable */
|
|
5
|
-
/* eslint-disable */
|
|
6
|
-
|
|
7
|
-
import * as jspb from "google-protobuf";
|
|
8
|
-
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
9
|
-
import * as google_protobuf_duration_pb from "google-protobuf/google/protobuf/duration_pb";
|
|
10
|
-
import * as google_protobuf_struct_pb from "google-protobuf/google/protobuf/struct_pb";
|
|
11
|
-
import * as google_protobuf_descriptor_pb from "google-protobuf/google/protobuf/descriptor_pb";
|
|
12
|
-
|
|
13
|
-
export class ErrorAnnotations extends jspb.Message {
|
|
14
|
-
getCode(): string;
|
|
15
|
-
setCode(value: string): ErrorAnnotations;
|
|
16
|
-
getSeverity(): ErrorAnnotations.Severity;
|
|
17
|
-
setSeverity(value: ErrorAnnotations.Severity): ErrorAnnotations;
|
|
18
|
-
|
|
19
|
-
hasMessage(): boolean;
|
|
20
|
-
clearMessage(): void;
|
|
21
|
-
getMessage(): string | undefined;
|
|
22
|
-
setMessage(value: string): ErrorAnnotations;
|
|
23
|
-
|
|
24
|
-
serializeBinary(): Uint8Array;
|
|
25
|
-
toObject(includeInstance?: boolean): ErrorAnnotations.AsObject;
|
|
26
|
-
static toObject(includeInstance: boolean, msg: ErrorAnnotations): ErrorAnnotations.AsObject;
|
|
27
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
28
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
29
|
-
static serializeBinaryToWriter(message: ErrorAnnotations, writer: jspb.BinaryWriter): void;
|
|
30
|
-
static deserializeBinary(bytes: Uint8Array): ErrorAnnotations;
|
|
31
|
-
static deserializeBinaryFromReader(message: ErrorAnnotations, reader: jspb.BinaryReader): ErrorAnnotations;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export namespace ErrorAnnotations {
|
|
35
|
-
export type AsObject = {
|
|
36
|
-
code: string,
|
|
37
|
-
severity: ErrorAnnotations.Severity,
|
|
38
|
-
message?: string,
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export enum Severity {
|
|
42
|
-
RECOVERABLE = 0,
|
|
43
|
-
FATAL = 1,
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
export class DynamicValueList extends jspb.Message {
|
|
49
|
-
clearValuesList(): void;
|
|
50
|
-
getValuesList(): Array<DynamicValue>;
|
|
51
|
-
setValuesList(value: Array<DynamicValue>): DynamicValueList;
|
|
52
|
-
addValues(value?: DynamicValue, index?: number): DynamicValue;
|
|
53
|
-
|
|
54
|
-
serializeBinary(): Uint8Array;
|
|
55
|
-
toObject(includeInstance?: boolean): DynamicValueList.AsObject;
|
|
56
|
-
static toObject(includeInstance: boolean, msg: DynamicValueList): DynamicValueList.AsObject;
|
|
57
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
58
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
59
|
-
static serializeBinaryToWriter(message: DynamicValueList, writer: jspb.BinaryWriter): void;
|
|
60
|
-
static deserializeBinary(bytes: Uint8Array): DynamicValueList;
|
|
61
|
-
static deserializeBinaryFromReader(message: DynamicValueList, reader: jspb.BinaryReader): DynamicValueList;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export namespace DynamicValueList {
|
|
65
|
-
export type AsObject = {
|
|
66
|
-
valuesList: Array<DynamicValue.AsObject>,
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export class DynamicValueMap extends jspb.Message {
|
|
71
|
-
|
|
72
|
-
getValuesMap(): jspb.Map<string, DynamicValue>;
|
|
73
|
-
clearValuesMap(): void;
|
|
74
|
-
|
|
75
|
-
serializeBinary(): Uint8Array;
|
|
76
|
-
toObject(includeInstance?: boolean): DynamicValueMap.AsObject;
|
|
77
|
-
static toObject(includeInstance: boolean, msg: DynamicValueMap): DynamicValueMap.AsObject;
|
|
78
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
79
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
80
|
-
static serializeBinaryToWriter(message: DynamicValueMap, writer: jspb.BinaryWriter): void;
|
|
81
|
-
static deserializeBinary(bytes: Uint8Array): DynamicValueMap;
|
|
82
|
-
static deserializeBinaryFromReader(message: DynamicValueMap, reader: jspb.BinaryReader): DynamicValueMap;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export namespace DynamicValueMap {
|
|
86
|
-
export type AsObject = {
|
|
87
|
-
|
|
88
|
-
valuesMap: Array<[string, DynamicValue.AsObject]>,
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
export class DynamicValue extends jspb.Message {
|
|
93
|
-
|
|
94
|
-
hasNullValue(): boolean;
|
|
95
|
-
clearNullValue(): void;
|
|
96
|
-
getNullValue(): google_protobuf_struct_pb.NullValue;
|
|
97
|
-
setNullValue(value: google_protobuf_struct_pb.NullValue): DynamicValue;
|
|
98
|
-
|
|
99
|
-
hasInt32Value(): boolean;
|
|
100
|
-
clearInt32Value(): void;
|
|
101
|
-
getInt32Value(): number;
|
|
102
|
-
setInt32Value(value: number): DynamicValue;
|
|
103
|
-
|
|
104
|
-
hasInt64Value(): boolean;
|
|
105
|
-
clearInt64Value(): void;
|
|
106
|
-
getInt64Value(): number;
|
|
107
|
-
setInt64Value(value: number): DynamicValue;
|
|
108
|
-
|
|
109
|
-
hasBytesValue(): boolean;
|
|
110
|
-
clearBytesValue(): void;
|
|
111
|
-
getBytesValue(): Uint8Array | string;
|
|
112
|
-
getBytesValue_asU8(): Uint8Array;
|
|
113
|
-
getBytesValue_asB64(): string;
|
|
114
|
-
setBytesValue(value: Uint8Array | string): DynamicValue;
|
|
115
|
-
|
|
116
|
-
hasDoubleValue(): boolean;
|
|
117
|
-
clearDoubleValue(): void;
|
|
118
|
-
getDoubleValue(): number;
|
|
119
|
-
setDoubleValue(value: number): DynamicValue;
|
|
120
|
-
|
|
121
|
-
hasFloatValue(): boolean;
|
|
122
|
-
clearFloatValue(): void;
|
|
123
|
-
getFloatValue(): number;
|
|
124
|
-
setFloatValue(value: number): DynamicValue;
|
|
125
|
-
|
|
126
|
-
hasStringValue(): boolean;
|
|
127
|
-
clearStringValue(): void;
|
|
128
|
-
getStringValue(): string;
|
|
129
|
-
setStringValue(value: string): DynamicValue;
|
|
130
|
-
|
|
131
|
-
hasBooleanValue(): boolean;
|
|
132
|
-
clearBooleanValue(): void;
|
|
133
|
-
getBooleanValue(): boolean;
|
|
134
|
-
setBooleanValue(value: boolean): DynamicValue;
|
|
135
|
-
|
|
136
|
-
hasTimestampValue(): boolean;
|
|
137
|
-
clearTimestampValue(): void;
|
|
138
|
-
getTimestampValue(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
139
|
-
setTimestampValue(value?: google_protobuf_timestamp_pb.Timestamp): DynamicValue;
|
|
140
|
-
|
|
141
|
-
hasDurationValue(): boolean;
|
|
142
|
-
clearDurationValue(): void;
|
|
143
|
-
getDurationValue(): google_protobuf_duration_pb.Duration | undefined;
|
|
144
|
-
setDurationValue(value?: google_protobuf_duration_pb.Duration): DynamicValue;
|
|
145
|
-
|
|
146
|
-
getKindCase(): DynamicValue.KindCase;
|
|
147
|
-
|
|
148
|
-
serializeBinary(): Uint8Array;
|
|
149
|
-
toObject(includeInstance?: boolean): DynamicValue.AsObject;
|
|
150
|
-
static toObject(includeInstance: boolean, msg: DynamicValue): DynamicValue.AsObject;
|
|
151
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
152
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
153
|
-
static serializeBinaryToWriter(message: DynamicValue, writer: jspb.BinaryWriter): void;
|
|
154
|
-
static deserializeBinary(bytes: Uint8Array): DynamicValue;
|
|
155
|
-
static deserializeBinaryFromReader(message: DynamicValue, reader: jspb.BinaryReader): DynamicValue;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
export namespace DynamicValue {
|
|
159
|
-
export type AsObject = {
|
|
160
|
-
nullValue: google_protobuf_struct_pb.NullValue,
|
|
161
|
-
int32Value: number,
|
|
162
|
-
int64Value: number,
|
|
163
|
-
bytesValue: Uint8Array | string,
|
|
164
|
-
doubleValue: number,
|
|
165
|
-
floatValue: number,
|
|
166
|
-
stringValue: string,
|
|
167
|
-
booleanValue: boolean,
|
|
168
|
-
timestampValue?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
169
|
-
durationValue?: google_protobuf_duration_pb.Duration.AsObject,
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
export enum KindCase {
|
|
173
|
-
KIND_NOT_SET = 0,
|
|
174
|
-
NULL_VALUE = 1,
|
|
175
|
-
INT32_VALUE = 2,
|
|
176
|
-
INT64_VALUE = 3,
|
|
177
|
-
BYTES_VALUE = 4,
|
|
178
|
-
DOUBLE_VALUE = 5,
|
|
179
|
-
FLOAT_VALUE = 6,
|
|
180
|
-
STRING_VALUE = 7,
|
|
181
|
-
BOOLEAN_VALUE = 8,
|
|
182
|
-
TIMESTAMP_VALUE = 9,
|
|
183
|
-
DURATION_VALUE = 10,
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
export const errorInfo: jspb.ExtensionFieldInfo<ErrorAnnotations>;
|
|
1
|
+
// package: kurrentdb.protocol
|
|
2
|
+
// file: kurrentdb/protocols/v2/core.proto
|
|
3
|
+
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
|
|
7
|
+
import * as jspb from "google-protobuf";
|
|
8
|
+
import * as google_protobuf_timestamp_pb from "google-protobuf/google/protobuf/timestamp_pb";
|
|
9
|
+
import * as google_protobuf_duration_pb from "google-protobuf/google/protobuf/duration_pb";
|
|
10
|
+
import * as google_protobuf_struct_pb from "google-protobuf/google/protobuf/struct_pb";
|
|
11
|
+
import * as google_protobuf_descriptor_pb from "google-protobuf/google/protobuf/descriptor_pb";
|
|
12
|
+
|
|
13
|
+
export class ErrorAnnotations extends jspb.Message {
|
|
14
|
+
getCode(): string;
|
|
15
|
+
setCode(value: string): ErrorAnnotations;
|
|
16
|
+
getSeverity(): ErrorAnnotations.Severity;
|
|
17
|
+
setSeverity(value: ErrorAnnotations.Severity): ErrorAnnotations;
|
|
18
|
+
|
|
19
|
+
hasMessage(): boolean;
|
|
20
|
+
clearMessage(): void;
|
|
21
|
+
getMessage(): string | undefined;
|
|
22
|
+
setMessage(value: string): ErrorAnnotations;
|
|
23
|
+
|
|
24
|
+
serializeBinary(): Uint8Array;
|
|
25
|
+
toObject(includeInstance?: boolean): ErrorAnnotations.AsObject;
|
|
26
|
+
static toObject(includeInstance: boolean, msg: ErrorAnnotations): ErrorAnnotations.AsObject;
|
|
27
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
28
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
29
|
+
static serializeBinaryToWriter(message: ErrorAnnotations, writer: jspb.BinaryWriter): void;
|
|
30
|
+
static deserializeBinary(bytes: Uint8Array): ErrorAnnotations;
|
|
31
|
+
static deserializeBinaryFromReader(message: ErrorAnnotations, reader: jspb.BinaryReader): ErrorAnnotations;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export namespace ErrorAnnotations {
|
|
35
|
+
export type AsObject = {
|
|
36
|
+
code: string,
|
|
37
|
+
severity: ErrorAnnotations.Severity,
|
|
38
|
+
message?: string,
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export enum Severity {
|
|
42
|
+
RECOVERABLE = 0,
|
|
43
|
+
FATAL = 1,
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export class DynamicValueList extends jspb.Message {
|
|
49
|
+
clearValuesList(): void;
|
|
50
|
+
getValuesList(): Array<DynamicValue>;
|
|
51
|
+
setValuesList(value: Array<DynamicValue>): DynamicValueList;
|
|
52
|
+
addValues(value?: DynamicValue, index?: number): DynamicValue;
|
|
53
|
+
|
|
54
|
+
serializeBinary(): Uint8Array;
|
|
55
|
+
toObject(includeInstance?: boolean): DynamicValueList.AsObject;
|
|
56
|
+
static toObject(includeInstance: boolean, msg: DynamicValueList): DynamicValueList.AsObject;
|
|
57
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
58
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
59
|
+
static serializeBinaryToWriter(message: DynamicValueList, writer: jspb.BinaryWriter): void;
|
|
60
|
+
static deserializeBinary(bytes: Uint8Array): DynamicValueList;
|
|
61
|
+
static deserializeBinaryFromReader(message: DynamicValueList, reader: jspb.BinaryReader): DynamicValueList;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export namespace DynamicValueList {
|
|
65
|
+
export type AsObject = {
|
|
66
|
+
valuesList: Array<DynamicValue.AsObject>,
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export class DynamicValueMap extends jspb.Message {
|
|
71
|
+
|
|
72
|
+
getValuesMap(): jspb.Map<string, DynamicValue>;
|
|
73
|
+
clearValuesMap(): void;
|
|
74
|
+
|
|
75
|
+
serializeBinary(): Uint8Array;
|
|
76
|
+
toObject(includeInstance?: boolean): DynamicValueMap.AsObject;
|
|
77
|
+
static toObject(includeInstance: boolean, msg: DynamicValueMap): DynamicValueMap.AsObject;
|
|
78
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
79
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
80
|
+
static serializeBinaryToWriter(message: DynamicValueMap, writer: jspb.BinaryWriter): void;
|
|
81
|
+
static deserializeBinary(bytes: Uint8Array): DynamicValueMap;
|
|
82
|
+
static deserializeBinaryFromReader(message: DynamicValueMap, reader: jspb.BinaryReader): DynamicValueMap;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export namespace DynamicValueMap {
|
|
86
|
+
export type AsObject = {
|
|
87
|
+
|
|
88
|
+
valuesMap: Array<[string, DynamicValue.AsObject]>,
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export class DynamicValue extends jspb.Message {
|
|
93
|
+
|
|
94
|
+
hasNullValue(): boolean;
|
|
95
|
+
clearNullValue(): void;
|
|
96
|
+
getNullValue(): google_protobuf_struct_pb.NullValue;
|
|
97
|
+
setNullValue(value: google_protobuf_struct_pb.NullValue): DynamicValue;
|
|
98
|
+
|
|
99
|
+
hasInt32Value(): boolean;
|
|
100
|
+
clearInt32Value(): void;
|
|
101
|
+
getInt32Value(): number;
|
|
102
|
+
setInt32Value(value: number): DynamicValue;
|
|
103
|
+
|
|
104
|
+
hasInt64Value(): boolean;
|
|
105
|
+
clearInt64Value(): void;
|
|
106
|
+
getInt64Value(): number;
|
|
107
|
+
setInt64Value(value: number): DynamicValue;
|
|
108
|
+
|
|
109
|
+
hasBytesValue(): boolean;
|
|
110
|
+
clearBytesValue(): void;
|
|
111
|
+
getBytesValue(): Uint8Array | string;
|
|
112
|
+
getBytesValue_asU8(): Uint8Array;
|
|
113
|
+
getBytesValue_asB64(): string;
|
|
114
|
+
setBytesValue(value: Uint8Array | string): DynamicValue;
|
|
115
|
+
|
|
116
|
+
hasDoubleValue(): boolean;
|
|
117
|
+
clearDoubleValue(): void;
|
|
118
|
+
getDoubleValue(): number;
|
|
119
|
+
setDoubleValue(value: number): DynamicValue;
|
|
120
|
+
|
|
121
|
+
hasFloatValue(): boolean;
|
|
122
|
+
clearFloatValue(): void;
|
|
123
|
+
getFloatValue(): number;
|
|
124
|
+
setFloatValue(value: number): DynamicValue;
|
|
125
|
+
|
|
126
|
+
hasStringValue(): boolean;
|
|
127
|
+
clearStringValue(): void;
|
|
128
|
+
getStringValue(): string;
|
|
129
|
+
setStringValue(value: string): DynamicValue;
|
|
130
|
+
|
|
131
|
+
hasBooleanValue(): boolean;
|
|
132
|
+
clearBooleanValue(): void;
|
|
133
|
+
getBooleanValue(): boolean;
|
|
134
|
+
setBooleanValue(value: boolean): DynamicValue;
|
|
135
|
+
|
|
136
|
+
hasTimestampValue(): boolean;
|
|
137
|
+
clearTimestampValue(): void;
|
|
138
|
+
getTimestampValue(): google_protobuf_timestamp_pb.Timestamp | undefined;
|
|
139
|
+
setTimestampValue(value?: google_protobuf_timestamp_pb.Timestamp): DynamicValue;
|
|
140
|
+
|
|
141
|
+
hasDurationValue(): boolean;
|
|
142
|
+
clearDurationValue(): void;
|
|
143
|
+
getDurationValue(): google_protobuf_duration_pb.Duration | undefined;
|
|
144
|
+
setDurationValue(value?: google_protobuf_duration_pb.Duration): DynamicValue;
|
|
145
|
+
|
|
146
|
+
getKindCase(): DynamicValue.KindCase;
|
|
147
|
+
|
|
148
|
+
serializeBinary(): Uint8Array;
|
|
149
|
+
toObject(includeInstance?: boolean): DynamicValue.AsObject;
|
|
150
|
+
static toObject(includeInstance: boolean, msg: DynamicValue): DynamicValue.AsObject;
|
|
151
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
152
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
153
|
+
static serializeBinaryToWriter(message: DynamicValue, writer: jspb.BinaryWriter): void;
|
|
154
|
+
static deserializeBinary(bytes: Uint8Array): DynamicValue;
|
|
155
|
+
static deserializeBinaryFromReader(message: DynamicValue, reader: jspb.BinaryReader): DynamicValue;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export namespace DynamicValue {
|
|
159
|
+
export type AsObject = {
|
|
160
|
+
nullValue: google_protobuf_struct_pb.NullValue,
|
|
161
|
+
int32Value: number,
|
|
162
|
+
int64Value: number,
|
|
163
|
+
bytesValue: Uint8Array | string,
|
|
164
|
+
doubleValue: number,
|
|
165
|
+
floatValue: number,
|
|
166
|
+
stringValue: string,
|
|
167
|
+
booleanValue: boolean,
|
|
168
|
+
timestampValue?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
169
|
+
durationValue?: google_protobuf_duration_pb.Duration.AsObject,
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export enum KindCase {
|
|
173
|
+
KIND_NOT_SET = 0,
|
|
174
|
+
NULL_VALUE = 1,
|
|
175
|
+
INT32_VALUE = 2,
|
|
176
|
+
INT64_VALUE = 3,
|
|
177
|
+
BYTES_VALUE = 4,
|
|
178
|
+
DOUBLE_VALUE = 5,
|
|
179
|
+
FLOAT_VALUE = 6,
|
|
180
|
+
STRING_VALUE = 7,
|
|
181
|
+
BOOLEAN_VALUE = 8,
|
|
182
|
+
TIMESTAMP_VALUE = 9,
|
|
183
|
+
DURATION_VALUE = 10,
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
export const errorInfo: jspb.ExtensionFieldInfo<ErrorAnnotations>;
|